Commit 8ce4d157 by GGbong

移动开发基础环境

0 parents
Showing with 3564 additions and 0 deletions
[android]
target = Google Inc.:Google APIs:23
[maven_repositories]
central = https://repo1.maven.org/maven2
module.exports = {
root: true,
extends: '@react-native-community',
};
[ignore]
; We fork some components by platform
.*/*[.]android.js
; Ignore "BUCK" generated dirs
<PROJECT_ROOT>/\.buckd/
; Ignore polyfills
node_modules/react-native/Libraries/polyfills/.*
; These should not be required directly
; require from fbjs/lib instead: require('fbjs/lib/warning')
node_modules/warning/.*
; Flow doesn't support platforms
.*/Libraries/Utilities/LoadingView.js
[untyped]
.*/node_modules/@react-native-community/cli/.*/.*
[include]
[libs]
node_modules/react-native/interface.js
node_modules/react-native/flow/
[options]
emoji=true
esproposal.optional_chaining=enable
esproposal.nullish_coalescing=enable
module.file_ext=.js
module.file_ext=.json
module.file_ext=.ios.js
munge_underscores=true
module.name_mapper='^react-native/\(.*\)$' -> '<PROJECT_ROOT>/node_modules/react-native/\1'
module.name_mapper='^@?[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '<PROJECT_ROOT>/node_modules/react-native/Libraries/Image/RelativeImageStub'
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FlowFixMeProps
suppress_type=$FlowFixMeState
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
[lints]
sketchy-null-number=warn
sketchy-null-mixed=warn
sketchy-number=warn
untyped-type-import=warn
nonstrict-import=warn
deprecated-type=warn
unsafe-getters-setters=warn
inexact-spread=warn
unnecessary-invariant=warn
signature-verification-failure=warn
deprecated-utility=error
[strict]
deprecated-type
nonstrict-import
sketchy-null
unclear-type
unsafe-getters-setters
untyped-import
untyped-type-import
[version]
^0.113.0
*.pbxproj -text
# OSX
#
.DS_Store
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
# node.js
#
node_modules/
npm-debug.log
yarn-error.log
# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/
*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots
# Bundle artifact
*.jsbundle
# CocoaPods
/ios/Pods/
module.exports = {
bracketSpacing: false,
jsxBracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
};
{}
\ No newline at end of file
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React from 'react'
import { StatusBar } from 'react-native'
import { SafeAreaProvider } from 'react-native-safe-area-context'
import { RouterView } from './src/router'
import { Provider } from 'react-redux'
import store from './src/store'
const App: () => React$Node = () => {
return (
<Provider store={store}>
<SafeAreaProvider>
<StatusBar translucent={true} backgroundColor="rgba(0,0,0,0)" barStyle="dark-content" />
<RouterView />
</SafeAreaProvider>
</Provider>
);
};
export default App;
/**
* @format
*/
import 'react-native';
import React from 'react';
import App from '../App';
// Note: test renderer must be required after react-native.
import renderer from 'react-test-renderer';
it('renders correctly', () => {
renderer.create(<App />);
});
# To learn about Buck see [Docs](https://buckbuild.com/).
# To run your application with Buck:
# - install Buck
# - `npm start` - to start the packager
# - `cd android`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `buck install -r android/app` - compile, install and run application
#
load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
lib_deps = []
create_aar_targets(glob(["libs/*.aar"]))
create_jar_targets(glob(["libs/*.jar"]))
android_library(
name = "all-libs",
exported_deps = lib_deps,
)
android_library(
name = "app-code",
srcs = glob([
"src/main/java/**/*.java",
]),
deps = [
":all-libs",
":build_config",
":res",
],
)
android_build_config(
name = "build_config",
package = "com.rn_basis",
)
android_resource(
name = "res",
package = "com.rn_basis",
res = "src/main/res",
)
android_binary(
name = "app",
keystore = "//android/keystores:debug",
manifest = "src/main/AndroidManifest.xml",
package_type = "debug",
deps = [
":app-code",
],
)
apply plugin: "com.android.application"
import com.android.build.OutputFile
/**
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
* and bundleReleaseJsAndAssets).
* These basically call `react-native bundle` with the correct arguments during the Android build
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* bundle directly from the development server. Below you can see all the possible configurations
* and their defaults. If you decide to add a configuration block, make sure to add it before the
* `apply from: "../../node_modules/react-native/react.gradle"` line.
*
* project.ext.react = [
* // the name of the generated asset file containing your JS bundle
* bundleAssetName: "index.android.bundle",
*
* // the entry file for bundle generation. If none specified and
* // "index.android.js" exists, it will be used. Otherwise "index.js" is
* // default. Can be overridden with ENTRY_FILE environment variable.
* entryFile: "index.android.js",
*
* // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format
* bundleCommand: "ram-bundle",
*
* // whether to bundle JS and assets in debug mode
* bundleInDebug: false,
*
* // whether to bundle JS and assets in release mode
* bundleInRelease: true,
*
* // whether to bundle JS and assets in another build variant (if configured).
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
* // The configuration property can be in the following formats
* // 'bundleIn${productFlavor}${buildType}'
* // 'bundleIn${buildType}'
* // bundleInFreeDebug: true,
* // bundleInPaidRelease: true,
* // bundleInBeta: true,
*
* // whether to disable dev mode in custom build variants (by default only disabled in release)
* // for example: to disable dev mode in the staging build type (if configured)
* devDisabledInStaging: true,
* // The configuration property can be in the following formats
* // 'devDisabledIn${productFlavor}${buildType}'
* // 'devDisabledIn${buildType}'
*
* // the root of your project, i.e. where "package.json" lives
* root: "../../",
*
* // where to put the JS bundle asset in debug mode
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
*
* // where to put the JS bundle asset in release mode
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in debug mode
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in release mode
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
*
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
* // for example, you might want to remove it from here.
* inputExcludes: ["android/**", "ios/**"],
*
* // override which node gets called and with what additional arguments
* nodeExecutableAndArgs: ["node"],
*
* // supply additional arguments to the packager
* extraPackagerArgs: []
* ]
*/
project.ext.react = [
enableHermes: false, // clean and rebuild if changing
]
apply from: "../../node_modules/react-native/react.gradle"
/**
* Set this to true to create two separate APKs instead of one:
* - An APK that only works on ARM devices
* - An APK that only works on x86 devices
* The advantage is the size of the APK is reduced by about 4MB.
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device.
*/
def enableSeparateBuildPerCPUArchitecture = false
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
/**
* The preferred build flavor of JavaScriptCore.
*
* For example, to use the international variant, you can use:
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
*
* The international variant includes ICU i18n library and necessary data
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
* give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default.
*/
def jscFlavor = 'org.webkit:android-jsc:+'
/**
* Whether to enable the Hermes VM.
*
* This should be set on project.ext.react and mirrored here. If it is not set
* on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
* and the benefits of using Hermes will therefore be sharply reduced.
*/
def enableHermes = project.ext.react.get("enableHermes", false);
android {
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.rn_basis"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
// Caution! In production, you need to generate your own keystore file.
// see https://facebook.github.io/react-native/docs/signed-apk-android.
signingConfig signingConfigs.debug
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
packagingOptions {
pickFirst "lib/armeabi-v7a/libc++_shared.so"
pickFirst "lib/arm64-v8a/libc++_shared.so"
pickFirst "lib/x86/libc++_shared.so"
pickFirst "lib/x86_64/libc++_shared.so"
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// https://developer.android.com/studio/build/configure-apk-splits.html
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+" // From node_modules
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
exclude group:'com.facebook.fbjni'
}
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
}
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
}
if (enableHermes) {
def hermesPath = "../../node_modules/hermes-engine/android/";
debugImplementation files(hermesPath + "hermes-debug.aar")
releaseImplementation files(hermesPath + "hermes-release.aar")
} else {
implementation jscFlavor
}
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
project.ext.vectoricons = [
iconFontNames: [] //要复制的字体文件的名称
]
"""Helper definitions to glob .aar and .jar targets"""
def create_aar_targets(aarfiles):
for aarfile in aarfiles:
name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")]
lib_deps.append(":" + name)
android_prebuilt_aar(
name = name,
aar = aarfile,
)
def create_jar_targets(jarfiles):
for jarfile in jarfiles:
name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")]
lib_deps.append(":" + name)
prebuilt_jar(
name = name,
binary_jar = jarfile,
)
No preview for this file type
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" />
</manifest>
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.rn_basis;
import android.content.Context;
import com.facebook.flipper.android.AndroidFlipperClient;
import com.facebook.flipper.android.utils.FlipperUtils;
import com.facebook.flipper.core.FlipperClient;
import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
import com.facebook.flipper.plugins.inspector.DescriptorMapping;
import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.bridge.ReactContext;
import com.facebook.react.modules.network.NetworkingModule;
import okhttp3.OkHttpClient;
public class ReactNativeFlipper {
public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
if (FlipperUtils.shouldEnableFlipper(context)) {
final FlipperClient client = AndroidFlipperClient.getInstance(context);
client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
client.addPlugin(new ReactFlipperPlugin());
client.addPlugin(new DatabasesFlipperPlugin(context));
client.addPlugin(new SharedPreferencesFlipperPlugin(context));
client.addPlugin(CrashReporterPlugin.getInstance());
NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
NetworkingModule.setCustomClientBuilder(
new NetworkingModule.CustomClientBuilder() {
@Override
public void apply(OkHttpClient.Builder builder) {
builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
}
});
client.addPlugin(networkFlipperPlugin);
client.start();
// Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
// Hence we run if after all native modules have been initialized
ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
if (reactContext == null) {
reactInstanceManager.addReactInstanceEventListener(
new ReactInstanceManager.ReactInstanceEventListener() {
@Override
public void onReactContextInitialized(ReactContext reactContext) {
reactInstanceManager.removeReactInstanceEventListener(this);
reactContext.runOnNativeModulesQueueThread(
new Runnable() {
@Override
public void run() {
client.addPlugin(new FrescoFlipperPlugin());
}
});
}
});
} else {
client.addPlugin(new FrescoFlipperPlugin());
}
}
}
}
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rn_basis">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>
No preview for this file type
<?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 xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="xbd" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="896" descent="-128" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="0" d="" />
<glyph unicode="&#xe601;" glyph-name="btn_end_dis" d="M711.111 99.556c-31.419 0-56.889 25.47-56.889 56.889v0 455.111c0 31.419 25.47 56.889 56.889 56.889s56.889-25.47 56.889-56.889v0-455.111c0-31.419-25.47-56.889-56.889-56.889v0zM269.198 184.604c-8.206 9.787-13.192 22.515-13.198 36.407v325.974c0.012 31.41 25.478 56.868 56.889 56.868 13.891 0 26.62-4.979 36.498-13.249l-0.089 0.073 195.584-162.987c12.538-10.508 20.454-26.175 20.454-43.691s-7.916-33.183-20.366-43.619l-0.088-0.072-195.584-162.987c-9.789-8.197-22.516-13.175-36.407-13.175-17.517 0-33.185 7.917-43.621 20.368l-0.072 0.089z" />
<glyph unicode="&#xe602;" glyph-name="btn_home_dis" d="M312.889 668.444c31.419 0 56.889-25.47 56.889-56.889v0-455.111c0-31.419-25.47-56.889-56.889-56.889s-56.889 25.47-56.889 56.889v0 455.111c0 31.419 25.47 56.889 56.889 56.889v0zM754.802 583.396c8.206-9.787 13.192-22.515 13.198-36.407v-325.974c-0.012-31.41-25.478-56.868-56.889-56.868-13.891 0-26.62 4.979-36.498 13.249l0.089-0.073-195.584 162.987c-12.538 10.508-20.454 26.175-20.454 43.691s7.916 33.183 20.366 43.619l0.088 0.072 195.584 162.987c9.789 8.197 22.516 13.175 36.407 13.175 17.517 0 33.185-7.917 43.621-20.368l0.072-0.089z" />
<glyph unicode="&#xe603;" glyph-name="Excelchanggui" d="M796.444 896l227.556-227.556v-739.556c0-31.419-25.47-56.889-56.889-56.889v0h-739.556c-31.419 0-56.889 25.47-56.889 56.889v0 170.667h56.889v-142.222c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h682.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v654.222h-170.667c-31.419 0-56.889 25.47-56.889 56.889v0 170.667h-483.556c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-142.222h-56.889v170.667c0 31.419 25.47 56.889 56.889 56.889v0h568.889zM568.889 440.889v-341.333c0-31.419-25.47-56.889-56.889-56.889v0h-227.556v56.889h199.111c15.709 0 28.444 12.735 28.444 28.444v0 312.889h56.889zM881.778 99.556c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-227.556c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h227.556zM398.222 611.556c31.419 0 56.889-25.47 56.889-56.889v0-341.333c0-31.419-25.47-56.889-56.889-56.889h-341.333c-31.419 0-56.889 25.47-56.889 56.889v0 341.333c0 31.419 25.47 56.889 56.889 56.889v0h341.333zM155.989 554.667h-94.72l119.182-168.903-123.563-172.43h91.989l78.393 117.191 80.043-117.191h90.908l-123.051 172.43 123.051 168.903h-93.639l-77.312-112.583-71.282 112.583zM881.778 270.222c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-227.556c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h227.556zM881.778 440.889c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-227.556c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h227.556zM597.333 782.222c15.709 0 28.444-12.735 28.444-28.444v0-56.889c0-15.709-12.735-28.444-28.444-28.444h-227.556c-15.709 0-28.444 12.735-28.444 28.444v56.889c0 15.709 12.735 28.444 28.444 28.444h227.556z" />
<glyph unicode="&#xe604;" glyph-name="eyebukejian" d="M512 412.444c-24.235-24.462-134.030 37.433-134.030 0 0-74.866 59.961-135.566 134.030-135.566s134.030 60.7 134.030 135.566c0 64.74-43.236 135.566-134.030 135.566-36.978 0 24.235-111.047 0-135.566zM512 782.222c-234.496 0-434.517-153.828-512-369.778 77.483-215.95 277.504-369.778 512-369.778s434.517 153.828 512 369.778c-77.483 215.95-277.504 369.778-512 369.778zM512 178.233c-127.886 0-231.652 104.789-231.652 234.212s103.765 234.212 231.652 234.212 231.652-104.903 231.652-234.212c0-129.308-103.765-234.212-231.652-234.212z" />
<glyph unicode="&#xe605;" glyph-name="norblack" d="M466.489 217.145l-227.556 303.388c-7.103 9.389-11.378 21.262-11.378 34.133 0 31.419 25.47 56.889 56.889 56.889h455.111c31.419 0 56.889-25.47 56.889-56.889 0-12.871-4.275-24.744-11.481-34.276l0.104 0.143-227.556-303.388c-10.489-13.879-26.963-22.756-45.511-22.756s-35.022 8.876-45.407 22.612l-0.104 0.143z" />
<glyph unicode="&#xe606;" glyph-name="eye" d="M1024 373.419c-77.483 212.651-277.504 364.316-512 364.316-0.168 0-0.366 0-0.564 0-85.598 0-166.481-20.189-238.147-56.065l3.077 1.395-156.615 156.046-68.892-68.722 140.117-139.662c-86.104-64.92-152.090-152.277-189.713-253.431l-1.263-3.877c77.483-212.764 277.504-364.316 512-364.316 0.102 0 0.222 0 0.343 0 88.862 0 172.66 21.686 246.388 60.055l-2.962-1.403 139.321-138.866 68.892 68.722-124.018 123.563c82.72 64.387 146.203 149.839 182.775 248.367l1.261 3.878zM512 142.62c-127.886 0-231.652 103.31-231.652 230.684 0 47.73 14.507 92.046 39.424 128.853l127.317-126.919c-34.645 8.647-69.234 18.773-69.234-1.934 0.065-73.848 59.945-133.689 133.803-133.689 0.080 0 0.16 0 0.24 0h-0.012c20.821 0 40.448 4.722 57.97 13.141l71.168-70.94c-36.074-24.584-80.616-39.254-128.584-39.254-0.155 0-0.309 0-0.464 0h0.024zM708.892 251.847l-72.306 72.135c6.030 15.246 9.444 31.972 9.444 49.436 0 63.772-43.236 133.632-134.030 133.632-17.465 0-13.028-24.462-6.030-52.736l-115.826 115.257c34.569 21.71 76.594 34.589 121.627 34.589 0.080 0 0.161 0 0.241 0h-0.013c127.886 0 231.652-103.31 231.652-230.684 0-44.658-12.686-86.244-34.702-121.572z" />
<glyph unicode="&#xe607;" glyph-name="norblack2" d="M345.145 429.511l303.388 227.556c9.389 7.103 21.262 11.378 34.133 11.378 31.419 0 56.889-25.47 56.889-56.889v-455.111c0-31.419-25.47-56.889-56.889-56.889-12.871 0-24.744 4.275-34.276 11.481l0.143-0.104-303.388 227.556c-13.879 10.489-22.756 26.963-22.756 45.511s8.876 35.022 22.612 45.407l0.143 0.104z" />
<glyph unicode="&#xe608;" glyph-name="norblack3" d="M678.855 338.489l-303.388-227.556c-9.389-7.103-21.262-11.378-34.133-11.378-31.419 0-56.889 25.47-56.889 56.889v0 455.111c0 31.419 25.47 56.889 56.889 56.889 12.871 0 24.744-4.275 34.276-11.481l-0.143 0.104 303.388-227.556c13.879-10.489 22.756-26.963 22.756-45.511s-8.876-35.022-22.612-45.407l-0.143-0.104z" />
<glyph unicode="&#xe609;" glyph-name="norblack4" d="M557.511 550.855l227.556-303.388c7.103-9.389 11.378-21.262 11.378-34.133 0-31.419-25.47-56.889-56.889-56.889h-455.111c-31.419 0-56.889 25.47-56.889 56.889 0 12.871 4.275 24.744 11.481 34.276l-0.104-0.143 227.556 303.388c10.489 13.879 26.963 22.756 45.511 22.756s35.022-8.876 45.407-22.612l0.104-0.143z" />
<glyph unicode="&#xe60a;" glyph-name="caiwu" d="M796.444 782.222c0.011 0 0.023 0 0.036 0 59.835 0 108.882-46.187 113.433-104.854l0.024-0.39 0.284-8.533v-568.889c0-0.011 0-0.023 0-0.036 0-59.835-46.187-108.882-104.854-113.433l-0.39-0.024-8.533-0.284h-512c-0.011 0-0.023 0-0.036 0-59.835 0-108.882 46.187-113.433 104.854l-0.024 0.39-0.284 8.533v56.889c-31.419 0-56.889 25.47-56.889 56.889v0 56.889c0.004 29.070 21.812 53.046 49.96 56.464l0.273 0.027 6.656 0.398v113.778c-31.419 0-56.889 25.47-56.889 56.889v0 56.889c0.004 29.070 21.812 53.046 49.96 56.464l0.273 0.027 6.656 0.398v56.889c0 0.011 0 0.023 0 0.036 0 59.835 46.187 108.882 104.854 113.433l0.39 0.024 8.533 0.284h512zM796.444 725.333h-512c-31.419 0-56.889-25.47-56.889-56.889v0-568.889c0-31.419 25.47-56.889 56.889-56.889h512c31.419 0 56.889 25.47 56.889 56.889v0 568.889c0 31.419-25.47 56.889-56.889 56.889v0zM704.91 649.842c6.694-5.156 10.965-13.173 10.965-22.189 0-6.404-2.155-12.305-5.78-17.017l0.049 0.066-1.65-1.934-106.439-115.769h108.601c15.976 0 28.928-12.952 28.928-28.928s-12.952-28.928-28.928-28.928v0h-139.492v-86.471h137.614c0.002 0 0.003 0 0.005 0 15.961 0 28.9-12.939 28.9-28.9s-12.939-28.9-28.9-28.9c-0.002 0-0.004 0-0.006 0h-137.614v-148.252c-0.739-16.913-14.63-30.345-31.659-30.345s-30.919 13.432-31.656 30.278l-0.002 0.067v148.196h-137.557c-15.43 0.706-27.673 13.387-27.673 28.928s12.243 28.222 27.61 28.926l0.063 0.002h137.557v86.528h-135.794c-0.383-0.018-0.832-0.028-1.283-0.028-15.992 0-28.956 12.964-28.956 28.956s12.964 28.956 28.956 28.956c0.451 0 0.9-0.010 1.346-0.031l-0.063 0.002h103.538l-106.553 115.655c-4.565 4.956-7.364 11.601-7.364 18.898 0 9.008 4.264 17.019 10.883 22.127l0.065 0.048c5.568 4.293 12.643 6.881 20.322 6.881 9.728 0 18.487-4.153 24.599-10.783l0.021-0.023 121.23-131.755 121.173 131.755c6.135 6.673 14.907 10.839 24.651 10.839 7.666 0 14.729-2.578 20.37-6.915l-0.079 0.058z" />
<glyph unicode="&#xe60b;" glyph-name="dayinchanggui2" d="M711.111 384c15.709 0 28.444-12.735 28.444-28.444v0-398.222c0-15.709-12.735-28.444-28.444-28.444h-398.222c-15.709 0-28.444 12.735-28.444 28.444v398.222c0 15.709 12.735 28.444 28.444 28.444h398.222zM853.333 668.444c62.838 0 113.778-50.94 113.778-113.778v0-284.444c0-31.419-25.47-56.889-56.889-56.889h-113.778v170.667c-0.004 29.070-21.812 53.046-49.96 56.464l-0.273 0.027-6.656 0.398h-455.111c-29.070-0.004-53.046-21.812-56.464-49.96l-0.027-0.273-0.398-6.656v-170.667h-113.778c-31.419 0-56.889 25.47-56.889 56.889v0 284.444c0 62.838 50.94 113.778 113.778 113.778v0h682.667zM768 554.667h-113.778c-0.016 0-0.034 0-0.052 0-15.709 0-28.444-12.735-28.444-28.444 0-13.918 9.996-25.501 23.201-27.962l0.176-0.027 5.12-0.455h113.778c15.709 0 28.444 12.735 28.444 28.444s-12.735 28.444-28.444 28.444v0zM256 554.667c-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444v0c15.709 0 28.444 12.735 28.444 28.444s-12.735 28.444-28.444 28.444v0zM369.778 554.667c-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444v0c15.709 0 28.444 12.735 28.444 28.444s-12.735 28.444-28.444 28.444v0zM739.556 839.111c31.419 0 56.889-25.47 56.889-56.889v0-56.889h-568.889v56.889c0 31.419 25.47 56.889 56.889 56.889h455.111z" />
<glyph unicode="&#xe60c;" glyph-name="dingwei" d="M512 896c251.335 0 455.111-182.67 455.111-407.893 0-346.738-455.111-616.107-455.111-616.107l-13.653 7.509c-75.662 43.008-441.458 268.629-441.458 608.54 0 225.337 203.719 407.95 455.111 407.95zM510.293-61.611l25.771 17.522 13.767 9.785c51.2 36.807 102.4 78.791 149.959 125.156 132.38 128.626 210.432 263.964 210.432 397.141 0 192.455-177.038 351.118-398.222 351.118-221.298 0-398.222-158.663-398.222-351.004 0-147.57 77.767-285.184 209.579-408.747 55.216-51.609 116.416-98.167 182.050-138.171l4.944-2.8zM398.222 497.778c0-62.838 50.94-113.778 113.778-113.778s113.778 50.94 113.778 113.778v0c0 62.838-50.94 113.778-113.778 113.778s-113.778-50.94-113.778-113.778v0z" />
<glyph unicode="&#xe60d;" glyph-name="fenlei" d="M398.222 327.111c31.419 0 56.889-25.47 56.889-56.889v0-227.556c0-31.419-25.47-56.889-56.889-56.889h-227.556c-31.419 0-56.889 25.47-56.889 56.889v0 227.556c0 31.419 25.47 56.889 56.889 56.889v0h227.556zM853.333 327.111c31.419 0 56.889-25.47 56.889-56.889v0-227.556c0-31.419-25.47-56.889-56.889-56.889h-227.556c-31.419 0-56.889 25.47-56.889 56.889v0 227.556c0 31.419 25.47 56.889 56.889 56.889v0h227.556zM369.778 270.222h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-170.667c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h170.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v170.667c0 15.709-12.735 28.444-28.444 28.444v0zM824.889 270.222h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-170.667c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h170.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v170.667c0 15.709-12.735 28.444-28.444 28.444v0zM398.222 782.222c31.419 0 56.889-25.47 56.889-56.889v0-227.556c0-31.419-25.47-56.889-56.889-56.889v0h-227.556c-31.419 0-56.889 25.47-56.889 56.889v0 227.556c0 31.419 25.47 56.889 56.889 56.889v0h227.556zM739.556 782.222c94.251-0.007 170.654-76.415 170.654-170.667s-76.403-170.659-170.653-170.667h-170.667v170.667c0 94.257 76.41 170.667 170.667 170.667v0zM369.778 725.333h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-170.667c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h170.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v170.667c0 15.709-12.735 28.444-28.444 28.444v0zM739.556 725.333c-0.011 0-0.023 0-0.036 0-59.835 0-108.882-46.187-113.433-104.854l-0.024-0.39-0.284-8.533v-113.778h113.778c0.003 0 0.007 0 0.011 0 62.838 0 113.778 50.94 113.778 113.778s-50.94 113.778-113.778 113.778c-0.004 0-0.007 0-0.011 0v0z" />
<glyph unicode="&#xe60e;" glyph-name="dingwei2" d="M512 896c251.335 0 455.111-182.67 455.111-407.893 0-346.738-455.111-616.107-455.111-616.107s-455.111 236.942-455.111 616.107c0 225.166 203.719 407.893 455.111 407.893zM682.667 497.778c0 94.257-76.41 170.667-170.667 170.667s-170.667-76.41-170.667-170.667v0c0-94.257 76.41-170.667 170.667-170.667s170.667 76.41 170.667 170.667v0z" />
<glyph unicode="&#xe60f;" glyph-name="dayinchanggui" d="M739.556 839.111c31.419 0 56.889-25.47 56.889-56.889v0-113.778h56.889c62.838 0 113.778-50.94 113.778-113.778v0-284.444c0-31.419-25.47-56.889-56.889-56.889v0h-113.778v-227.556c0-31.419-25.47-56.889-56.889-56.889h-455.111c-31.419 0-56.889 25.47-56.889 56.889v227.556h-113.778c-31.419 0-56.889 25.47-56.889 56.889v0 284.444c0 62.838 50.94 113.778 113.778 113.778v0h56.889v113.778c0 31.419 25.47 56.889 56.889 56.889h455.111zM711.111 384h-398.222c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-341.333c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h398.222c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v341.333c0 15.709-12.735 28.444-28.444 28.444v0zM853.333 611.556h-682.667c-29.070-0.004-53.046-21.812-56.464-49.96l-0.027-0.273-0.398-6.656v-256c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h85.333v113.778c0 31.419 25.47 56.889 56.889 56.889h455.111c31.419 0 56.889-25.47 56.889-56.889v-113.778h85.333c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v256c0 31.419-25.47 56.889-56.889 56.889v0zM768 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778zM256 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0zM369.778 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0zM711.111 782.222h-398.222c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-85.333h455.111v85.333c0 0.003 0 0.006 0 0.009 0 13.899-9.969 25.47-23.148 27.952l-0.177 0.028-5.12 0.455z" />
<glyph unicode="&#xe610;" glyph-name="guanbi2" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM652.8 565.020l40.22-40.22-140.8-140.8 140.8-140.8-40.22-40.22-140.8 140.8-140.8-140.8-40.22 40.22 140.8 140.8-140.8 140.8 40.22 40.22 140.8-140.8 140.8 140.8z" />
<glyph unicode="&#xe611;" glyph-name="fenxiangchanggui" d="M540.444 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-28.444c-219.929-0.004-398.216-178.292-398.216-398.222 0-219.932 178.29-398.222 398.222-398.222 215.13 0 390.417 170.59 397.969 383.878l0.019 0.691 0.228 13.653v28.444c0 15.709 12.735 28.444 28.444 28.444s28.444-12.735 28.444-28.444v-28.444c0-251.351-203.76-455.111-455.111-455.111s-455.111 203.76-455.111 455.111c0 251.351 203.76 455.111 455.111 455.111h28.444zM910.222 839.111c31.419 0 56.889-25.47 56.889-56.889v0-199.111c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 152.86l-508.587-508.587c-5.214-5.644-12.653-9.167-20.915-9.167-15.709 0-28.444 12.735-28.444 28.444 0 8.276 3.534 15.727 9.176 20.924l0.020 0.018 514.503 514.617h-164.864c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h199.111z" />
<glyph unicode="&#xe612;" glyph-name="guanbi" d="M512 426.667l298.667 298.667 42.667-42.667-298.667-298.667 298.667-298.667-42.667-42.667-298.667 298.667-298.667-298.667-42.667 42.667 298.667 298.667-298.667 298.667 42.667 42.667z" />
<glyph unicode="&#xe613;" glyph-name="fenbo" d="M232.164 388.949l175.275-104.505v-199.111l-2.844-4.949-178.062-99.556-175.332 104.505v199.111l2.844 4.949 172.43 99.556h5.689zM801.052 388.949l175.275-104.505v-199.111l-2.844-4.949-178.062-99.556-175.332 104.505v199.111l2.844 4.949 172.43 99.556h5.689zM459.662 74.98l55.922-32.313 52.224 30.208 49.266-28.444-101.49-58.652-105.244 60.757 49.323 28.444zM798.208 320.569l-117.532-67.868-2.788-133.973 117.476-71.111 120.377 69.461 2.844 133.973-120.377 69.518zM229.319 320.569l-117.532-67.868-2.788-133.973 120.32-69.518 117.532 67.868 2.844 133.973-120.377 69.518zM758.329 642.105l102.116-58.994v-167.14l-49.266 28.444v110.251l-52.85 30.549v56.889zM265.614 637.952v-56.832l-45.625-26.453v-106.098l-49.323-28.444v162.987l94.948 54.841zM516.608 844.060l175.275-104.505v-199.111l-2.844-4.949-178.062-99.556-175.332 104.505v199.111l2.844 4.949 172.43 99.556h5.689zM513.707 775.68l-117.419-64.569-2.844-137.273 117.476-71.111 120.377 69.461 2.844 133.973-120.434 69.518z" />
<glyph unicode="&#xe614;" glyph-name="gouwu" d="M859.307 896c0.001 0 0.003 0 0.004 0 29.214 0 53.285-22.021 56.519-50.37l0.024-0.262 101.148-910.222c0.22-1.878 0.345-4.053 0.345-6.258 0-31.419-25.47-56.889-56.889-56.889-0.001 0-0.003 0-0.004 0h-896.91c-0.001 0-0.003 0-0.004 0-31.419 0-56.889 25.47-56.889 56.889 0 2.205 0.125 4.38 0.369 6.519l-0.024-0.262 101.148 910.222c3.259 28.61 27.329 50.631 56.544 50.631 0.001 0 0.003 0 0.004 0h694.613zM838.656 839.111h-649.956c-12.871 0-23.746-8.549-27.255-20.279l-0.052-0.201-0.91-4.665-99.897-853.333c-0.123-0.992-0.193-2.14-0.193-3.305 0-13.907 9.981-25.483 23.17-27.956l0.176-0.027 5.12-0.455h846.393c0.020 0 0.043 0 0.066 0 15.029 0 27.335 11.655 28.374 26.42l0.005 0.090-0.171 5.12-96.597 853.333c-1.656 14.279-13.679 25.259-28.265 25.259-0.003 0-0.006 0-0.009 0v0zM419.385 182.215v-152.917c0-3.413 1.195-6.372 3.584-8.761 2.17-2.214 5.192-3.586 8.534-3.586 0.080 0 0.16 0.001 0.239 0.002h23.085l-15.132-34.247h-31.858c-0.173-0.003-0.376-0.004-0.581-0.004-11.801 0-22.461 4.882-30.072 12.736l-0.011 0.011c-7.865 7.621-12.747 18.282-12.747 30.083 0 0.204 0.001 0.408 0.004 0.611v-0.031 117.077h-23.097v39.026h78.052zM689.778 270.222v-38.628h-63.317v-203.093c0.001-0.090 0.001-0.197 0.001-0.305 0-6.091-1.32-11.874-3.69-17.077l0.105 0.258c-4.766-10.498-12.997-18.729-23.204-23.376l-0.291-0.119c-4.945-2.265-10.728-3.585-16.819-3.585-0.107 0-0.214 0-0.321 0.001h-65.292l17.522 39.822h23.495c0.068-0.001 0.147-0.002 0.227-0.002 3.342 0 6.364 1.372 8.532 3.584l0.002 0.002c2.22 2.24 3.591 5.324 3.591 8.728 0 0.152-0.003 0.302-0.008 0.453l0.001-0.022v194.731h-100.352v38.628h219.819zM406.244 269.028l28.672-64.114h-64.512l-28.672 63.317 64.512 0.796zM711.111 782.222c31.418-0.001 56.886-25.471 56.886-56.889 0-20.945-11.319-39.246-28.174-49.12l-0.268-0.145v-64.512c0-125.675-101.88-227.556-227.556-227.556s-227.556 101.88-227.556 227.556v0 64.512c-17.124 10.019-28.444 28.321-28.444 49.267 0 31.419 25.47 56.889 56.889 56.889s56.889-25.47 56.889-56.889c0-20.946-11.32-39.248-28.176-49.122l-0.268-0.145v-64.512c0-0.003 0-0.006 0-0.010 0-90.734 70.806-164.931 160.177-170.35l0.477-0.023 10.012-0.284c0.003 0 0.006 0 0.010 0 90.734 0 164.931 70.806 170.35 160.177l0.023 0.477 0.284 10.012v64.512c-17.123 10.020-28.442 28.321-28.442 49.266 0 31.418 25.469 56.887 56.886 56.889v0z" />
<glyph unicode="&#xe615;" glyph-name="gouwuche" d="M312.889 99.556c47.128 0 85.333-38.205 85.333-85.333s-38.205-85.333-85.333-85.333v0c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333v0zM824.889 99.556c47.128 0 85.333-38.205 85.333-85.333s-38.205-85.333-85.333-85.333v0c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333v0zM312.889 42.667c-0.388 0.019-0.843 0.030-1.3 0.030-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444c0.437 0 0.872 0.010 1.304 0.029l-0.061-0.002c15.165 0.684 27.201 13.145 27.201 28.417 0 15.252-12.005 27.701-27.081 28.412l-0.064 0.002zM824.889 42.667c-0.388 0.019-0.843 0.030-1.3 0.030-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444c0.437 0 0.872 0.010 1.304 0.029l-0.061-0.002c15.165 0.684 27.201 13.145 27.201 28.417 0 15.252-12.005 27.701-27.081 28.412l-0.064 0.002zM20.48 831.147c0.027 0 0.058 0 0.090 0 2.287 0 4.486-0.375 6.54-1.066l-0.144 0.042 104.789-34.93c22.801-7.761 38.912-28.986 38.912-53.974 0-0.005 0-0.010 0-0.014v0.001-19.342l789.618-50.745c35.726-1.252 63.716-27.989 63.716-60.928v-326.997c0-38.571-34.133-69.86-75.89-69.86l-752.924 1.991c-8.76 0.064-17.189 1.369-25.157 3.747l0.637-0.163v-5.575c0-31.419 25.47-56.889 56.889-56.889v0h711.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-768c-31.419 0-56.889 25.47-56.889 56.889v0 546.816c0 0.004 0 0.009 0 0.014 0 24.988-16.111 46.213-38.512 53.855l-0.401 0.119-47.9 15.929c-15.803 5.398-26.965 20.118-26.965 37.445 0 0.016 0 0.032 0 0.048v-0.002c0 11.311 9.169 20.48 20.48 20.48v0zM172.373 668.444l-1.707-360.676c0-9.5 4.153-18.432 11.662-25.259 7.297-6.501 16.971-10.473 27.572-10.473 0.247 0 0.493 0.002 0.739 0.006l-0.037-0.001 721.692-1.82c19.172 0 34.816 13.767 34.816 30.549v298.439c0 12.117-10.923 22.073-24.69 22.414h-0.74l-769.308 46.82zM827.904 440.889c13.995 0 25.429-12.8 25.429-28.444s-11.435-28.444-25.429-28.444h-518.030c-14.052 0-25.429 12.8-25.429 28.444s11.435 28.444 25.429 28.444h518.030zM827.904 554.667c13.995 0 25.429-12.8 25.429-28.444s-11.435-28.444-25.429-28.444h-518.030c-14.052 0-25.429 12.8-25.429 28.444s11.435 28.444 25.429 28.444h518.030z" />
<glyph unicode="&#xe616;" glyph-name="guanbi3" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM670.379 587.662l-158.379-158.436-158.379 158.436-45.284-45.284 158.436-158.379-158.436-158.379 45.284-45.284 158.379 158.436 158.379-158.436 45.284 45.284-158.436 158.379 158.436 158.379-45.284 45.284z" />
<glyph unicode="&#xe617;" glyph-name="jianshao" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM768 415.972v-63.943h-512v63.943h512z" />
<glyph unicode="&#xe618;" glyph-name="jinggao" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM512 270.222c31.419 0 56.889-25.47 56.889-56.889s-25.47-56.889-56.889-56.889v0c-31.419 0-56.889 25.47-56.889 56.889s25.47 56.889 56.889 56.889v0zM512 611.556c28.421-0.017 51.455-23.061 51.455-51.484 0-1.803-0.093-3.585-0.274-5.34l0.018 0.22-19.911-199.509c-1.42-16.155-14.886-28.732-31.289-28.732s-29.869 12.576-31.28 28.613l-0.008 0.119-19.911 199.509c-0.163 1.535-0.255 3.317-0.255 5.12 0 28.424 23.034 51.468 51.454 51.484h0.002z" />
<glyph unicode="&#xe619;" glyph-name="jianshao2" d="M512 839.111c251.351 0 455.111-203.76 455.111-455.111s-203.76-455.111-455.111-455.111v0c-251.351 0-455.111 203.76-455.111 455.111s203.76 455.111 455.111 455.111v0zM739.556 412.444h-455.111v-56.889h455.111v56.889z" />
<glyph unicode="&#xe61a;" glyph-name="kucunguanliputong" d="M548.068 809.529l454.599-373.020c5.064-4.184 8.267-10.464 8.267-17.493s-3.203-13.31-8.229-17.463l-0.038-0.031c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046-49.835 40.846 0.057-456.59c0-31.419-25.47-56.889-56.889-56.889h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 456.59l-49.778-40.846c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046c-5.064 4.184-8.267 10.464-8.267 17.493s3.203 13.31 8.229 17.463l0.038 0.031 454.542 373.020c9.743 8.055 22.363 12.942 36.124 12.942s26.382-4.886 36.22-13.018l-0.096 0.077zM512 769.138l-341.333-280.178v-503.182h682.667v503.239l-341.333 280.121zM398.222 156.444v-113.778h-113.778v113.778h113.778zM568.889 156.444v-113.778h-113.778v113.778h113.778zM739.556 156.444v-113.778h-113.778v113.778h113.778zM398.222 327.111v-113.778h-113.778v113.778h113.778zM568.889 327.111v-113.778h-113.778v113.778h113.778zM398.222 497.778v-113.778h-113.778v113.778h113.778z" />
<glyph unicode="&#xe61b;" glyph-name="hezuo" horiz-adv-x="1025" d="M1007.673 532.252l-221.81 232.903c-10.059 10.542-24.218 17.097-39.908 17.097s-29.848-6.555-39.887-17.075l-0.021-0.022-30.948-32.484c-10.080-10.997-16.256-25.716-16.256-41.877 0-14.81 5.187-28.408 13.844-39.078l-0.091 0.115c-22.136-19.824-51.532-31.944-83.758-31.944-5.569 0-11.054 0.362-16.431 1.064l0.634-0.068c-6.003 0.793-12.944 1.246-19.992 1.246-28.071 0-54.463-7.184-77.44-19.814l0.834 0.42h-1.308l-76.060 10.24c-8.91 1.211-16.67 5.406-22.395 11.527l-25.279 26.531c8.795 10.625 14.131 24.392 14.131 39.405 0 16.143-6.169 30.845-16.277 41.878l0.042-0.046-31.004 32.484c-10.059 10.542-24.218 17.097-39.908 17.097s-29.848-6.555-39.887-17.075l-0.021-0.022-222.151-232.505c-10.104-10.995-16.297-25.724-16.297-41.899s6.193-30.903 16.337-41.943l-0.041 0.045 30.948-32.54c21.276-21.788 54.955-22.756 77.369-2.162l48.64-50.916c7.396-7.964 12.8-17.749 15.588-28.501 10.466-40.341 30.298-75.135 57.091-103.232l-0.088 0.093c-16.327-32.313-4.665-72.42 26.055-89.657 9.102-5.12 19.342-7.737 29.639-7.737-0.171-36.466 27.819-66.219 62.578-66.446h0.74c0.171-17.692 6.997-34.645 19.001-47.104 19.627-20.651 49.892-25.259 74.297-11.378l3.413-3.584c11.151-12.007 27.024-19.495 44.646-19.495 17.458 0 33.2 7.35 44.299 19.123l0.028 0.030c6.43 6.726 11.478 14.833 14.648 23.826l0.143 0.466 7.851-8.192c11.173-12.037 27.081-19.546 44.743-19.546s33.571 7.508 44.708 19.507l0.035 0.039c6.258 6.827 11.036 14.962 13.881 23.95l9.33-9.785c24.69-25.941 64.796-25.941 89.543 0 11.482 12.267 18.534 28.805 18.534 46.99s-7.052 34.723-18.57 47.029l0.036-0.038-9.33 9.785c8.533 3.186 16.27 8.363 22.585 15.189 12.117 12.288 18.944 29.184 19.058 46.876-0.057 10.524-2.56 20.821-7.225 30.151l3.584 3.982c24.69 25.6 41.472 58.539 48.071 94.379 5.234 28.331 18.489 54.329 38.059 74.581l9.671 10.24c9.814-9.185 23.043-14.825 37.59-14.825 15.629 0 29.737 6.511 39.76 16.968l0.019 0.019 30.948 32.54c9.762 10.91 15.729 25.394 15.729 41.271 0 16.176-6.194 30.905-16.339 41.945l0.041-0.045zM73.557 444.075l-31.004 31.744c-3.419 3.674-5.518 8.618-5.518 14.052s2.099 10.377 5.529 14.064l-0.012-0.013 222.379 233.643c3.383 3.814 8.296 6.205 13.767 6.205s10.384-2.391 13.751-6.186l0.017-0.019 29.468-32.54c3.647-3.721 5.898-8.823 5.898-14.45s-2.251-10.729-5.901-14.453l0.003 0.003-220.843-232.107c-3.384-3.833-8.309-6.237-13.796-6.237s-10.411 2.405-13.778 6.217l-0.017 0.020zM283.932 180.281c-4.995 5.162-8.074 12.206-8.074 19.968s3.079 14.806 8.081 19.976l-0.008-0.008c4.663 4.901 11.234 7.949 18.517 7.949s13.854-3.048 18.507-7.938l0.010-0.011c4.979-5.176 8.046-12.222 8.046-19.985 0-7.5-2.862-14.331-7.554-19.461l0.020 0.022c-4.712-5.186-11.483-8.428-19.012-8.428-7.282 0-13.856 3.034-18.526 7.907l-0.009 0.009zM347.193 113.835c-4.822 5.094-7.786 11.989-7.786 19.576 0 7.499 2.896 14.322 7.631 19.411l-0.016-0.017c4.686 5.014 11.338 8.139 18.721 8.139 0.158 0 0.316-0.001 0.474-0.004h-0.024c0.203 0.006 0.442 0.009 0.681 0.009 7.226 0 13.737-3.062 18.306-7.959l0.014-0.015c4.957-5.179 8.008-12.217 8.008-19.968s-3.051-14.789-8.018-19.979l0.010 0.011c-4.75-5.184-11.55-8.422-19.107-8.422-7.929 0-15.026 3.565-19.774 9.18l-0.031 0.038h0.91zM410.51 47.388c-5.048 5.139-8.164 12.189-8.164 19.968s3.116 14.829 8.168 19.972l-0.004-0.004c4.763 4.915 11.425 7.965 18.8 7.965 0.071 0 0.141 0 0.212-0.001h-0.011c14.33-0.704 25.682-12.494 25.682-26.935 0-0.411-0.009-0.82-0.027-1.226l0.002 0.058c0-0.034 0-0.074 0-0.114 0-14.79-11.957-26.787-26.732-26.851h-0.006c-7.065 0.183-13.391 3.201-17.91 7.954l-0.010 0.011v-0.796zM763.62 180.907c-4.794-5.010-11.534-8.124-19.001-8.124s-14.207 3.114-18.992 8.114l-0.009 0.010-192.853 203.321c-3.255 5.571-9.206 9.255-16.018 9.255-3.826 0-7.381-1.162-10.33-3.153l0.066 0.042c-5.337-3.761-8.781-9.898-8.781-16.839s3.444-13.078 8.716-16.796l0.065-0.043 242.745-255.602c4.828-5.087 7.797-11.979 7.797-19.564 0-0.142-0.001-0.284-0.003-0.425v0.021c0.004-0.17 0.006-0.371 0.006-0.572 0-7.514-2.973-14.334-7.808-19.348l0.008 0.008c-4.665-4.919-11.248-7.979-18.546-7.979s-13.88 3.060-18.535 7.967l-0.011 0.011-242.688 255.772c-2.879 1.939-6.425 3.095-10.241 3.095-6.828 0-12.792-3.702-15.994-9.208l-0.047-0.088c-1.847-3.047-2.94-6.729-2.94-10.667s1.093-7.62 2.992-10.76l-0.052 0.093 192.967-202.354c4.866-5.208 7.853-12.225 7.853-19.94s-2.987-14.731-7.869-19.956l0.016 0.017c-4.76-5.103-11.523-8.284-19.029-8.284s-14.27 3.181-19.015 8.269l-0.014 0.015-191.886 203.321c-2.87 1.922-6.401 3.068-10.2 3.068-6.817 0-12.773-3.69-15.979-9.181l-0.047-0.088c-1.847-3.047-2.94-6.729-2.94-10.667s1.093-7.62 2.992-10.76l-0.052 0.093 144.498-151.666c4.866-5.208 7.853-12.225 7.853-19.94s-2.987-14.731-7.869-19.956l0.016 0.017c-4.762-5.121-11.537-8.315-19.058-8.315s-14.296 3.194-19.043 8.299l-0.015 0.016-3.413 3.584c16.498 31.972 5.177 71.908-25.259 89.202-8.607 5.009-18.943 7.966-29.969 7.966-0.144 0-0.288-0.001-0.431-0.002h0.022c0.398 35.897-26.965 65.422-61.212 65.82h-2.105c0.853 36.466-26.624 66.788-61.326 67.698-0.414 0.010-0.902 0.016-1.392 0.016-10.971 0-21.261-2.919-30.134-8.023l0.294 0.156c-22.072 23.514-38.374 52.704-46.481 85.139l-0.282 1.332c-4.516 17.959-13.326 33.451-25.29 45.885l-48.438 50.599 174.080 182.784 25.088-26.283c11.947-12.402 27.307-20.309 43.918-22.585l39.14-5.177-93.525-98.19c-14.026-14.022-22.701-33.396-22.701-54.795 0-19.554 7.243-37.416 19.193-51.050l-0.076 0.089c12.704-14.651 31.346-23.862 52.139-23.862s39.434 9.212 52.066 23.777l0.073 0.086 62.919 66.048c11.378 11.776 27.307 17.408 43.179 15.36l216.292-226.987c5.006-5.348 7.737-12.516 7.566-20.025-0.055-7.393-2.922-14.107-7.583-19.133l0.017 0.018h0.91zM816.128 336.498c-5.558-29.196-19.045-54.6-38.117-74.643l0.058 0.061-1.308-1.422-146.944 153.828c18.66-5.063 37.774-7.851 57.060-8.363 0.314-0.020 0.682-0.031 1.052-0.031 9.928 0 17.977 8.049 17.977 17.977 0 0.351-0.010 0.7-0.030 1.046l0.002-0.048c0 11.036-8.533 19.911-19.001 19.911-38.072 1.166-73.379 12.006-103.849 30.13l0.994-0.547c-12.719 7.66-28.074 12.191-44.487 12.191-24.88 0-47.329-10.412-63.226-27.117l-0.034-0.036-62.919-66.048c-6.075-8.6-15.976-14.148-27.172-14.148-7.898 0-15.152 2.761-20.848 7.37l0.062-0.049c-8.215 6.852-13.405 17.092-13.405 28.543 0 11.658 5.378 22.060 13.789 28.86l0.070 0.055 94.948 99.84c28.501 29.582 68.38 43.804 108.146 38.457 6.049-0.803 13.044-1.261 20.145-1.261 42.196 0 80.614 16.176 109.391 42.666l-0.114-0.104 174.706-182.727-9.444-9.785c-23.893-25.376-40.757-57.622-47.329-93.467l-0.173-1.139zM982.016 476.217l-31.516-32.142c-3.384-3.833-8.309-6.237-13.796-6.237s-10.411 2.405-13.778 6.217l-0.017 0.020-220.843 232.050c-3.647 3.721-5.898 8.823-5.898 14.45s2.251 10.729 5.901 14.453l-0.003-0.003 31.004 32.54c3.383 3.814 8.296 6.205 13.767 6.205s10.384-2.391 13.751-6.186l0.017-0.019 220.843-233.643c7.396-7.794 7.396-20.366 0-28.103l0.569 0.398z" />
<glyph unicode="&#xe61c;" glyph-name="peisongqianshouputong" d="M756.338 782.222c20.172-0.002 37.892-10.504 47.991-26.338l0.137-0.23 162.645-257.877v-455.111c0-31.419-25.47-56.889-56.889-56.889h-796.444c-31.419 0-56.889 25.47-56.889 56.889v0 455.111l162.759 257.934c10.243 16.033 27.947 26.51 48.099 26.51 0.010 0 0.021 0 0.031 0h488.56zM910.222 462.279h-312.946l0.057-0.455v-77.824h-170.667v78.279h-312.889v-391.168c0-15.709 12.735-28.444 28.444-28.444h739.556c15.709 0 28.444 12.735 28.444 28.444v0 391.168zM813.056 384l40.277-38.343-258.276-246.101-0.171 0.114-0.114-0.114-139.662 133.063 40.277 38.343 99.556-94.834 218.055 207.872zM341.333 213.333v-56.889h-170.667v56.889h170.667zM455.111 327.111v-56.889h-284.444v56.889h284.444zM478.492 753.778h-189.042c0 0-0.001 0-0.001 0-10.634 0-19.905-5.835-24.786-14.478l-0.074-0.142-122.368-219.989h294.514l41.756 234.61zM739.214 753.778h-193.707l41.643-234.61h294.628l-117.476 219.591c-4.894 9.007-14.283 15.019-25.077 15.019-0.004 0-0.008 0-0.012 0h0.001z" />
<glyph unicode="&#xe61d;" glyph-name="lianxiren" d="M966.997 60.644v6.542-58.823l0.057-26.112v-10.809l0.057-42.553h-910.222v46.82l0.057 26.055v58.88c0 78.677 84.935 142.45 228.181 210.887 33.166 15.986 99.1 41.415 98.873 41.301 1.365 5.632-1.422 11.093-7.396 19.058-4.975 6.542-9.726 12.249-14.706 17.745l0.199-0.223-3.527 3.982c-1.576 1.799-3.994 4.631-6.392 7.48l-1.003 1.224c-6.346 7.386-12.659 15.524-18.563 23.97l-0.665 1.004c-42.098 61.554-55.068 126.578-55.068 200.135 0 97.337 35.897 167.14 97.166 209.749 41.358 28.786 90.965 42.155 127.431 42.155h21.049c36.466 0 86.073-13.369 127.431-42.098 61.269-42.667 97.166-112.469 97.166-209.806 0-73.614-12.914-138.581-55.068-200.192-6.565-9.448-12.879-17.586-19.575-25.387l0.346 0.413-7.396-8.59-3.527-4.039-3.356-3.868c-3.532-4.020-7.183-8.465-10.689-13.028l-0.461-0.625c-5.973-7.964-8.761-13.426-9.557-17.977 1.991-0.967 67.755-26.34 100.921-42.382 143.36-68.437 228.238-132.21 228.238-210.887zM895.204 19.456v41.188c0 36.523-73.444 91.648-187.449 146.091-29.81 14.393-95.46 39.765-98.645 41.244-28.274 13.483-43.349 32.825-43.349 63.26 0 23.211 8.533 42.837 24.178 63.772 3.982 5.348 8.249 10.524 14.165 17.408l13.767 15.929c6.087 7.282 10.809 13.312 14.905 19.342 32.085 46.876 42.496 99.1 42.496 159.516 0 73.956-24.519 121.685-66.332 150.756-28.444 19.797-63.716 29.298-86.471 29.298h-20.935c-22.756 0-58.027-9.5-86.471-29.298-41.813-29.070-66.332-76.8-66.332-150.756 0-60.359 10.411-112.64 42.496-159.573 4.096-5.973 8.818-12.004 14.905-19.228 3.072-3.698 14.848-17.237 13.767-15.986 5.916-6.827 10.183-12.060 14.222-17.408 15.644-20.878 24.121-40.562 24.121-63.772 0-30.436-15.076-49.778-43.349-63.26-3.129-1.479-68.836-26.852-98.645-41.244-114.005-54.443-187.392-109.568-187.392-146.091v-58.937c0-0.171 255.431-0.569 766.293-0.967v18.716z" />
<glyph unicode="&#xe61e;" glyph-name="jichuxinxiguanliputong" d="M938.667 199.111c5.235-2.682 8.755-8.041 8.755-14.222s-3.521-11.54-8.666-14.18l-0.090-0.042-401.237-200.59c-7.409-3.783-16.16-6-25.429-6s-18.020 2.217-25.753 6.149l0.323-0.149-401.237 200.59c-5.235 2.682-8.755 8.041-8.755 14.222s3.521 11.54 8.666 14.18l0.090 0.042c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167 357.035-178.517c3.712-1.9 8.097-3.014 12.743-3.014s9.031 1.114 12.904 3.089l-0.161-0.075 357.035 178.517c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167zM938.667 369.778c5.235-2.682 8.755-8.041 8.755-14.222s-3.521-11.54-8.666-14.18l-0.090-0.042-401.237-200.59c-7.409-3.783-16.16-6-25.429-6s-18.020 2.217-25.753 6.149l0.323-0.149-401.237 200.59c-5.235 2.682-8.755 8.041-8.755 14.222s3.521 11.54 8.666 14.18l0.090 0.042c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167 357.035-178.517c3.712-1.9 8.097-3.014 12.743-3.014s9.031 1.114 12.904 3.089l-0.161-0.075 357.035 178.517c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167zM537.429 769.479l378.823-189.383c9.384-4.778 15.699-14.366 15.699-25.429s-6.316-20.651-15.538-25.355l-0.161-0.075-378.823-189.44c-7.409-3.783-16.16-6-25.429-6s-18.020 2.217-25.753 6.149l0.323-0.149-378.823 189.44c-9.384 4.778-15.699 14.366-15.699 25.429s6.316 20.651 15.538 25.355l0.161 0.075 378.823 189.44c7.409 3.783 16.16 6 25.429 6s18.020-2.217 25.753-6.149l-0.323 0.149zM512 718.62l-327.908-163.954 327.908-163.954 327.908 163.954-327.908 163.954z" />
<glyph unicode="&#xe61f;" glyph-name="ladipeisongchanggui" d="M586.24 839.111c31.858 0 57.97-26.965 57.97-59.733v-64.967h200.476c21.042-0.019 39.407-11.459 49.233-28.455l0.146-0.274 129.934-227.897-0.569-290.304c0-66.56-52.736-121.173-117.305-121.173h-45.682l0.114-3.982c0-62.692-49.209-113.436-110.023-113.436-60.757 0-110.023 50.745-110.023 113.436 0 1.365 0 2.674 0.114 3.982h-210.091l0.114-3.982c0-62.692-49.209-113.436-109.966-113.436-60.814 0-110.023 50.745-110.023 113.436l0.114 3.982h-36.523c-64.569 0.057-117.362 54.556-117.362 121.116v159.687h55.182l0.228-2.844c2.49-16.187 16.177-28.483 32.794-28.785h405.933c18.204 0 33.28 15.474 33.28 34.304v418.361c0.001 0.103 0.002 0.226 0.002 0.348 0 18.518-14.82 33.574-33.246 33.955l-0.036 0.001h-405.902c-18.462-0.382-33.282-15.438-33.282-33.956 0-0.122 0.001-0.245 0.002-0.367v0.019-22.812h-54.443l0.057 54.044c0 32.768 26.169 59.733 57.97 59.733h470.812zM750.421 113.152c-10.866 0-21.163-2.674-30.322-7.225-21.618-11.036-36.807-33.451-38.229-59.563-0.114-1.365-0.114-2.674-0.114-3.982 0-39.14 30.777-70.827 68.665-70.827s68.665 31.687 68.665 70.77l-0.114 3.982c-1.283 25.905-16.255 48.040-37.786 59.433l-0.386 0.186c-8.764 4.554-19.137 7.225-30.133 7.225-0.086 0-0.173 0-0.259 0h0.013zM320.569 113.152c-10.923 0-21.163-2.674-30.379-7.225-21.618-11.036-36.807-33.451-38.172-59.563-0.114-1.365-0.114-2.674-0.114-3.982 0-39.14 30.663-70.827 68.665-70.827 37.888 0 68.665 31.687 68.665 70.77 0 1.365 0 2.674-0.114 3.982-1.295 25.916-16.289 48.053-37.842 59.433l-0.387 0.186c-8.764 4.554-19.137 7.225-30.132 7.225-0.067 0-0.133 0-0.2 0h0.010zM811.52 648.192h-167.31v-348.444c0-32.882-26.169-59.79-58.027-59.79h-470.812c-1.138 0-2.389 0-3.527 0.114v-55.125c0.057-43.406 34.532-79.076 76.743-79.076h40.903c19.646 30.070 53.078 49.709 91.108 49.891h0.028c37.888 0 71.339-19.797 91.079-49.835h247.694c19.647 30.032 53.052 49.645 91.050 49.835h0.029c37.888 0 71.396-19.797 91.136-49.835h48.697c42.098 0 76.629 35.499 76.629 79.019v248.946l-105.984 185.628c-9.989 17.252-28.36 28.672-49.398 28.672-0.014 0-0.027 0-0.041 0h0.002zM824.889 327.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778zM802.702 611.556c0.019 0 0.042 0 0.065 0 10.427 0 19.543-5.61 24.495-13.977l0.072-0.132 79.019-135.623c2.432-4.103 3.868-9.045 3.868-14.322 0-0.005 0-0.010 0-0.015v0.001-35.044c0-15.709-12.735-28.444-28.444-28.444v0h-170.667c-15.709 0-28.444 12.735-28.444 28.444v0 170.667c0 15.709 12.735 28.444 28.444 28.444v0h91.591zM199.111 440.889c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-56.889c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h56.889zM199.111 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778zM199.111 668.444c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-170.667c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h170.667z" />
<glyph unicode="&#xe620;" glyph-name="qiye" d="M56.889-71.111v56.889h56.889v796.444c0 31.419 25.47 56.889 56.889 56.889v0h398.222c31.419 0 56.889-25.47 56.889-56.889v0-227.556h227.556c31.419 0 56.889-25.47 56.889-56.889v0-512h56.889v-56.889h-910.222zM568.889 753.778c0 15.709-12.735 28.444-28.444 28.444h-341.333c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-768h398.222v768zM824.889 497.778h-199.111v-512h227.556v483.556c0 15.709-12.735 28.444-28.444 28.444v0zM796.444 99.556v-56.889h-113.778v56.889h113.778zM512 156.444v-56.889h-284.444v56.889h284.444zM796.444 270.222v-56.889h-113.778v56.889h113.778zM512 327.111v-56.889h-284.444v56.889h284.444zM796.444 440.889v-56.889h-113.778v56.889h113.778zM512 497.778v-56.889h-284.444v56.889h284.444zM512 668.444v-56.889h-284.444v56.889h284.444zM853.333 725.333v-56.889h-170.667v56.889h170.667zM910.222 839.111v-56.889h-227.556v56.889h227.556z" />
<glyph unicode="&#xe621;" glyph-name="qianbaochanggui" d="M713.728 782.222c76.596-0.065 138.679-62.108 138.809-138.683v-29.368l2.105-1.536c34.816-26.169 55.58-68.494 55.58-113.209v-374.955c0-76.516-58.596-138.695-130.446-138.695h-535.552c-71.964 0-130.446 62.18-130.446 138.695v519.054c0 76.516 62.578 138.695 139.378 138.695h460.572zM708.153 725.333h-447.829c-0.068 0-0.148 0-0.229 0-49.231 0-89.17-39.78-89.428-88.95v-504.743c0-49.038 36.352-88.974 80.953-88.974h520.704c44.658 0 81.010 39.879 81.010 88.974v364.658c0 48.981-36.352 88.917-81.010 88.917h-456.533c-12.678 0-22.955 10.277-22.955 22.955s10.277 22.955 22.955 22.955h456.533c6.372 0 12.459-1.024 18.887-2.105l5.916-0.91 0.171 5.973v2.276c-0.097 49.16-39.971 88.974-89.145 88.974 0 0 0 0 0 0v0zM597.675 481.621c6.017-5.36 9.788-13.13 9.788-21.78 0-6.969-2.448-13.367-6.53-18.38l0.042 0.053-42.041-51.769h41.927c13.761 0 24.917-11.156 24.917-24.917s-11.156-24.917-24.917-24.917h-65.422v-21.163h64c13.777 0 24.946-11.169 24.946-24.946s-11.169-24.946-24.946-24.946v0h-64v-88.292c0-13.337-10.812-24.149-24.149-24.149s-24.149 10.812-24.149 24.149v0 88.235h-63.886c-13.793 0-24.974 11.181-24.974 24.974s11.181 24.974 24.974 24.974h63.943v21.049h-62.578c-13.793 0-24.974 11.181-24.974 24.974s11.181 24.974 24.974 24.974h37.945l-40.846 50.29c-4.055 4.965-6.512 11.374-6.512 18.357 0 7.446 2.794 14.24 7.391 19.389l-0.025-0.029c3.874 4.357 9.495 7.088 15.753 7.088 6.573 0 12.443-3.013 16.303-7.733l0.030-0.038 56.149-69.063 57.287 70.542c3.89 4.772 9.768 7.795 16.352 7.795 5.056 0 9.695-1.782 13.324-4.753l-0.037 0.030z" />
<glyph unicode="&#xe622;" glyph-name="fahuochanggui" d="M796.444 327.111c0.004 0 0.010 0 0.015 0 125.675 0 227.556-101.88 227.556-227.556s-101.88-227.556-227.556-227.556c-0.005 0-0.011 0-0.016 0h0.001c-125.669 0.009-227.54 101.885-227.54 227.556s101.871 227.547 227.54 227.556h0.001zM756.338 839.111c20.172-0.002 37.892-10.504 47.991-26.338l0.137-0.23 162.645-257.877 0.057-227.556c-16.468 12.504-35.171 23.615-55.084 32.503l-1.805 0.72-0.057 158.834h-284.501l0.057-0.455v-134.713l-56.32 29.753-43.804-29.753-64 56.889-63.431-56.889v135.168h-284.444v-504.946c0-15.709 12.735-28.444 28.444-28.444v0h393.444c8.875-20.366 20.082-39.424 33.28-56.946l-455.168 0.057c-31.419 0-56.889 25.47-56.889 56.889v0 568.889l162.759 257.934c10.243 16.033 27.947 26.51 48.099 26.51 0.010 0 0.021 0 0.031 0h488.56zM796.444 270.222c-0.004 0-0.008 0-0.013 0-94.257 0-170.667-76.41-170.667-170.667s76.41-170.667 170.667-170.667c0.005 0 0.009 0 0.014 0h-0.001c94.251 0.007 170.654 76.415 170.654 170.667s-76.403 170.659-170.653 170.667h-0.001zM803.328 213.333l120.718-120.661-40.22-40.22-52.053 51.996v-97.109h-56.889v97.109l-51.996-51.996-40.22 40.22 120.661 120.661zM398.222 99.556v-56.889h-227.556v56.889h227.556zM398.222 213.333v-56.889h-227.556v56.889h227.556zM512 327.111v-56.889h-341.333v56.889h341.333zM450.048 810.667h-160.597c0 0-0.001 0-0.001 0-10.634 0-19.905-5.835-24.786-14.478l-0.074-0.142-122.368-219.989h266.069l41.756 234.61zM739.214 810.667h-165.262l41.643-234.61h266.183l-117.476 219.591c-4.894 9.007-14.283 15.019-25.077 15.019-0.004 0-0.008 0-0.012 0h0.001z" />
<glyph unicode="&#xe623;" glyph-name="quanxianchanggui" d="M887.353 373.76c-49.324-49.38-117.494-79.927-192.799-79.927-39.23 0-76.524 8.29-110.225 23.213l1.74-0.688-56.263-56.206v-97.849c0-11.378-9.216-20.651-20.594-20.651h-85.845v-85.788c0-11.378-9.216-20.594-20.594-20.594h-85.902v-85.788c0 0 0 0 0 0 0-11.334-9.155-20.529-20.474-20.593h-0.006l-219.193 0.228c-11.068 0.123-20.026 8.982-20.309 19.998l-0.001 0.026v0.626l0.228 112.811c0 5.461 2.162 10.638 6.030 14.507l381.156 380.985c-14.261 31.961-22.566 69.258-22.566 108.496 0 75.301 30.588 143.458 80.017 192.724l0.007 0.007c49.079 49.305 117.002 79.816 192.051 79.816 0.242 0 0.484 0 0.726-0.001h-0.037c72.818 0 141.312-28.331 192.853-79.815 49.28-49.358 79.754-117.504 79.754-192.768s-30.475-143.41-79.758-192.772l0.004 0.004zM858.226 730.169c-41.661 41.855-99.318 67.756-163.024 67.756-0.227 0-0.453 0-0.68-0.001h0.035c-0.192 0.001-0.418 0.001-0.645 0.001-63.707 0-121.364-25.901-163.016-67.747l-0.009-0.009c-41.972-41.826-67.942-99.686-67.942-163.612 0-37.771 9.066-73.424 25.142-104.902l-0.606 1.307c3.982-7.964 2.446-17.522-3.868-23.78l-385.308-385.195-0.114-54.443 98.133 98.076c3.727 3.727 8.876 6.032 14.564 6.032 11.375 0 20.596-9.221 20.596-20.596 0-5.687-2.305-10.836-6.032-14.564l-98.304-98.247 148.594-0.171v85.788c0 11.378 9.216 20.594 20.594 20.594h85.845v85.788c0 11.378 9.216 20.594 20.594 20.594h85.845v85.845c0 5.461 2.162 10.695 6.030 14.564l72.476 72.476c3.724 3.71 8.861 6.004 14.534 6.004 3.371 0 6.553-0.81 9.362-2.246l-0.116 0.054c30.2-15.478 65.886-24.55 103.691-24.55 63.942 0 121.822 25.951 163.684 67.896l0.004 0.004c41.82 41.629 67.699 99.241 67.699 162.897 0 0.271 0 0.543-0.001 0.814v-0.042c0.001 0.212 0.001 0.464 0.001 0.715 0 63.656-25.879 121.268-67.69 162.889l-0.008 0.008zM750.137 525.369c-0.041 0-0.089 0-0.137 0-53.506 0-96.882 43.375-96.882 96.882s43.375 96.882 96.882 96.882c26.815 0 51.086-10.894 68.628-28.498l0.003-0.003c17.39-17.508 28.138-41.632 28.138-68.267 0-53.399-43.201-96.707-96.559-96.881h-0.017zM789.504 661.447c-10.229 11.373-24.994 18.493-41.422 18.493-30.728 0-55.637-24.91-55.637-55.637 0-16.456 7.144-31.244 18.501-41.43l0.052-0.046c9.797-8.788 22.813-14.161 37.084-14.161 30.728 0 55.637 24.91 55.637 55.637 0 14.3-5.395 27.34-14.26 37.195l0.045-0.051zM283.705 126.692c-3.729-3.722-8.878-6.024-14.564-6.024-11.386 0-20.616 9.23-20.616 20.616 0 5.7 2.313 10.86 6.052 14.592v0l247.125 247.068c3.727 3.727 8.876 6.032 14.564 6.032 11.375 0 20.596-9.221 20.596-20.596 0-5.687-2.305-10.836-6.032-14.564l-247.125-247.068z" />
<glyph unicode="&#xe624;" glyph-name="rili" d="M227.556 696.889v-56.889h-85.333c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-568.889c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h739.556c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v568.889c0 15.709-12.735 28.444-28.444 28.444v0h-85.333v56.889h113.778c31.419 0 56.889-25.47 56.889-56.889v0-625.778c0-31.419-25.47-56.889-56.889-56.889v0h-796.444c-31.419 0-56.889 25.47-56.889 56.889v0 625.778c0 31.419 25.47 56.889 56.889 56.889v0h113.778zM284.444 184.889c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM455.111 184.889c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v56.889c0 15.709 12.735 28.444 28.444 28.444v0h56.889zM625.778 184.889c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444v0h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM284.444 355.556c15.709 0 28.444-12.735 28.444-28.444v0-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM455.111 355.556c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444v0h56.889zM625.778 355.556c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444v0h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM796.444 355.556c15.709 0 28.444-12.735 28.444-28.444v0-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM824.889 526.222c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-625.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h625.778zM312.889 753.778c15.709 0 28.444-12.735 28.444-28.444v-113.778c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 113.778c0 15.709 12.735 28.444 28.444 28.444v0zM711.111 753.778c15.709 0 28.444-12.735 28.444-28.444v0-113.778c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 113.778c0 15.709 12.735 28.444 28.444 28.444v0zM625.778 696.889v-56.889h-227.556v56.889h227.556z" />
<glyph unicode="&#xe625;" glyph-name="qudaoshangguanli" d="M445.554 872.164c35.783 0 83.911-13.653 124.132-42.837 58.937-42.951 93.298-112.754 93.298-209.806 0-73.045-12.288-137.671-52.452-199.054-6.345-9.566-12.407-17.725-18.851-25.556l0.419 0.525-18.261-22.3-5.461-7.225c-3.188-4.011-5.839-8.64-7.733-13.641l-0.118-0.354 28.615-11.776c17.067-7.339 38.514-16.555 55.068-24.462l8.476-4.153c12.999-6.667 21.74-19.977 21.74-35.328 0-21.856-17.718-39.575-39.575-39.575-6.505 0-12.643 1.569-18.057 4.35l0.223-0.104c-7.623 3.812-17.806 8.533-28.729 13.312l-19.797 8.59-44.373 18.66c-28.103 14.108-43.406 34.475-43.406 65.764 0 23.495 8.249 43.52 23.438 64.74 3.812 5.291 7.851 10.524 13.54 17.351l17.010 20.821c3.812 4.892 6.94 9.273 9.842 13.54 29.867 45.625 39.595 96.711 39.595 155.762 0 72.135-22.585 118.101-60.814 145.863-13.449 9.778-29.137 17.513-46.055 22.329l-1.049 0.255c-9.005 2.812-19.415 4.651-30.181 5.111l-0.254 0.009h-19.797c-29.307-1.933-55.932-12.005-78.039-27.951l0.442 0.303c-38.229-27.819-60.814-73.785-60.814-145.92 0-59.051 9.728-110.137 39.652-155.762 3.698-5.746 8.078-11.548 13.767-18.603l16.213-19.684 5.518-6.997 4.779-6.428c15.189-21.22 23.381-41.244 23.381-64.74 0-31.289-15.303-51.655-43.52-65.764-3.413-1.65-65.308-26.624-93.127-40.676l-8.533-4.267c-101.262-51.541-165.717-103.083-165.717-136.42v-67.698c99.442-37.205 224.427-55.922 375.751-55.922 65.877-1.764 124.928 0.91 177.266 8.078 1.010 0.092 2.185 0.144 3.371 0.144 21.836 0 39.538-17.702 39.538-39.538 0-19.307-13.839-35.382-32.138-38.847l-0.246-0.039c-56.718-7.737-120.036-10.638-188.985-8.818-162.759 0-299.179 21.049-409.6 63.716-26.075 10.492-44.147 35.574-44.147 64.878 0 0.151 0 0.302 0.001 0.454v-0.023 73.671c0 72.135 66.788 131.3 181.476 192.683l17.92 9.5 18.261 9.273c14.791 7.509 36.523 17.067 55.182 25.031l17.351 7.282 19.797 8.078c-2.053 5.374-4.721 10.019-7.993 14.164l0.086-0.112-1.593 2.162-3.868 5.006-23.495 28.843c-4.084 5.181-8.425 11.169-12.537 17.323l-0.662 1.052c-40.164 61.383-52.452 126.009-52.452 199.054 0 97.052 34.304 166.855 93.298 209.806 40.277 29.355 88.462 42.894 124.245 42.894zM837.86 279.324c18.261 0 32.996-14.791 32.996-32.996v-18.887c12.971-3.812 25.088-9.5 36.238-16.782l14.677 14.734c5.885 5.563 13.846 8.982 22.606 8.982 18.192 0 32.939-14.747 32.939-32.939 0-8.774-3.431-16.747-9.024-22.651l0.014 0.015-16.327-16.327c6.030-10.752 10.695-22.3 13.653-34.588h23.78c0.002 0 0.004 0 0.006 0 18.223 0 32.996-14.773 32.996-32.996s-14.773-32.996-32.996-32.996c-0.002 0-0.004 0-0.006 0h-23.722c-3.015-12.288-7.68-23.893-13.653-34.645l16.384-16.327c5.347-5.836 8.623-13.645 8.623-22.219 0-18.192-14.747-32.939-32.939-32.939-8.574 0-16.384 3.276-22.244 8.645l0.025-0.022-14.677 14.677c-11.15-7.282-23.324-13.084-36.238-16.896v-18.887c0-0.002 0-0.004 0-0.006 0-18.223-14.773-32.996-32.996-32.996s-32.996 14.773-32.996 32.996c0 0.002 0 0.004 0 0.006v0 15.758c-15.526 3.022-29.346 8.253-41.914 15.428l0.67-0.352-9.728-9.728c-5.836-5.347-13.645-8.623-22.219-8.623-18.192 0-32.939 14.747-32.939 32.939 0 8.574 3.276 16.384 8.645 22.244l-0.022-0.025 8.078 8.135c-8.154 12.288-14.57 26.576-18.453 41.875l-0.207 0.962h-10.524c-0.002 0-0.004 0-0.006 0-18.223 0-32.996 14.773-32.996 32.996s14.773 32.996 32.996 32.996c0.002 0 0.004 0 0.006 0h10.524c3.868 15.531 10.24 29.867 18.66 42.837l-8.078 8.078c-5.579 5.888-9.010 13.861-9.010 22.636 0 18.192 14.747 32.939 32.939 32.939 8.76 0 16.722-3.42 22.622-8.997l-0.016 0.015 9.614-9.842c12.629 7.054 26.51 12.231 41.188 15.019v15.758c0 18.318 14.848 32.996 32.996 32.996zM831.26 167.367c-0.017 0-0.037 0-0.057 0-40.012 0-72.448-32.436-72.448-72.448 0-39.992 32.404-72.416 72.388-72.448h0.003c0.017 0 0.037 0 0.057 0 40.012 0 72.448 32.436 72.448 72.448 0 39.992-32.404 72.416-72.388 72.448h-0.003z" />
<glyph unicode="&#xe626;" glyph-name="rukuguanliputong" d="M548.068 866.418l454.599-373.020c5.064-4.184 8.267-10.464 8.267-17.493s-3.203-13.31-8.229-17.463l-0.038-0.031c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046-49.835 40.846 0.057-570.368c0-31.419-25.47-56.889-56.889-56.889h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 170.667h56.889v-170.667h682.667v617.017l-341.333 280.121-341.333-280.121v-105.017h-56.889v58.368l-49.778-40.846c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046c-5.064 4.184-8.267 10.464-8.267 17.493s3.203 13.31 8.229 17.463l0.038 0.031 454.542 373.020c9.743 8.055 22.363 12.942 36.124 12.942s26.382-4.886 36.22-13.018l-0.096 0.077zM398.222 99.556v-113.778h-113.778v113.778h113.778zM568.889 99.556v-113.778h-113.778v113.778h113.778zM739.556 99.556v-113.778h-113.778v113.778h113.778zM252.416 391.509l90.738-90.681c7.686-7.926 12.424-18.749 12.424-30.678 0-8.099-2.184-15.688-5.994-22.21l0.113 0.209-4.665-6.542-92.615-92.729c-4.078-4.14-9.746-6.706-16.013-6.706-7.147 0-13.514 3.336-17.63 8.536l-0.036 0.047c-3.383 4.21-5.429 9.62-5.429 15.507 0 6.792 2.724 12.948 7.139 17.435l58.024 58.081h-193.138c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h193.195l-58.084 58.084c-4.399 4.481-7.114 10.629-7.114 17.41 0 4.267 1.075 8.283 2.969 11.792l-0.065-0.132 2.503 3.868 3.527 3.47c3.828 3.143 8.777 5.048 14.17 5.048 6.255 0 11.912-2.562 15.978-6.695l0.003-0.003zM568.889 270.222v-113.778h-113.778v113.778h113.778zM739.556 270.222v-113.778h-113.778v113.778h113.778zM739.556 440.889v-113.778h-113.778v113.778h113.778z" />
<glyph unicode="&#xe627;" glyph-name="shang" d="M140.516 183.41c6.835-6.883 16.303-11.144 26.766-11.144s19.931 4.261 26.764 11.141l297.759 299.977c5.156 5.197 12.3 8.414 20.196 8.414s15.040-3.217 20.194-8.412l0.002-0.002 297.756-299.975c6.832-6.866 16.289-11.115 26.738-11.115s19.906 4.249 26.736 11.113l0.002 0.002c6.865 6.918 11.107 16.446 11.107 26.965s-4.242 20.048-11.109 26.968l0.002-0.002-331.036 333.54c-10.308 10.376-24.585 16.799-40.363 16.799s-30.054-6.423-40.36-16.796l-331.096-333.543c-6.865-6.918-11.107-16.446-11.107-26.965s4.242-20.048 11.109-26.968l-0.002 0.002z" />
<glyph unicode="&#xe628;" glyph-name="shanghudianpuguanli" d="M858.055 270.222l12.8-51.2c9.102-2.844 17.806-6.428 26.112-10.809l45.227 27.136 46.933-46.933-27.136-45.227c4.38-8.306 7.964-17.067 10.809-26.112l51.2-12.8v-66.332l-51.2-12.8c-2.844-9.102-6.428-17.806-10.809-26.112l27.136-45.227-46.933-46.933-45.227 27.136c-8.306-4.38-17.067-7.964-26.112-10.809l-12.8-51.2h-66.332l-12.8 51.2c-10.093 3.159-18.737 6.825-26.938 11.212l0.826-0.403-45.227-27.136-46.933 46.933 27.136 45.227c-3.984 7.375-7.65 16.019-10.51 25.022l-0.299 1.090-51.2 12.8v66.332l51.2 12.8c2.844 9.102 6.428 17.806 10.809 26.112l-27.136 45.227 46.933 46.933 45.227-27.136c8.306 4.38 17.067 7.964 26.112 10.809l12.8 51.2h66.332zM512 497.778c30.72-29.867 74.297-48.583 122.539-48.583 44.373 0 84.708 15.758 114.916 41.529 30.151-25.771 70.428-41.529 114.802-41.529 11.947 0 23.609 1.138 34.873 3.3l11.093 2.617v-142.507c-17.297 6.331-37.426 11.009-58.303 13.164l-1.089 0.091v69.234c-37.42 1.955-72.062 12.129-102.709 28.735l1.276-0.632c-34.361-18.432-73.785-28.444-114.916-28.444-44.146 0-86.471 11.662-122.482 32.825-34.91-20.669-76.942-32.883-121.827-32.883-0.25 0-0.5 0-0.75 0.001h0.038c-0.234-0.001-0.51-0.001-0.787-0.001-41.775 0-81.086 10.553-115.411 29.138l1.283-0.635c-29.354-15.966-63.975-26.139-100.778-28.078l-0.598-0.025v-411.705l168.164 0.114v286.72c0 31.419 25.47 56.889 56.889 56.889v0h227.556c0.007 0 0.015 0 0.023 0 26.9 0 49.44-18.671 55.366-43.76l0.077-0.386c-20.935-14.165-39.595-31.346-55.467-50.916v9.728c0 0.003 0 0.006 0 0.009 0 13.899-9.969 25.47-23.148 27.952l-0.177 0.028-5.12 0.455h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-258.332l186.084-0.057c7.054-19.342 16.384-37.604 27.648-54.5l-438.784 0.057c-30.492 0-55.58 21.049-58.994 48.128l-0.398 6.315v471.609c14.62-3.812 30.037-5.803 45.966-5.803 44.373 0 84.708 15.758 114.859 41.529 30.151-25.771 70.485-41.529 114.916-41.529 48.185 0 91.705 18.716 122.482 48.583zM824.889 156.444c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333v0zM866.133 839.111c0.012 0 0.025 0 0.039 0 23.079 0 42.947-13.742 51.87-33.491l0.145-0.358 2.332-6.315 36.409-118.329c2.503-5.575 4.551-11.378 6.144-17.294l1.991-9.102 1.82-5.916h-0.683c0.569-4.836 0.91-9.728 0.91-14.677 0-64.853-53.476-117.419-119.353-117.419-0.149-0.001-0.324-0.001-0.5-0.001-50.511 0-93.701 31.348-111.176 75.65l-0.282 0.81c-17.72-45.108-60.888-76.46-111.379-76.46-0.183 0-0.366 0-0.549 0.001h0.028c-0.132-0.001-0.287-0.001-0.443-0.001-50.511 0-93.701 31.348-111.175 75.65l-0.282 0.81c-17.72-45.108-60.888-76.46-111.379-76.46-0.183 0-0.366 0-0.549 0.001h0.028c-0.132-0.001-0.287-0.001-0.443-0.001-50.511 0-93.701 31.348-111.175 75.65l-0.282 0.81c-17.72-45.108-60.888-76.46-111.379-76.46-0.203 0-0.406 0.001-0.609 0.002h0.031c-65.877 0-119.353 52.508-119.353 117.419l0.228 7.396 0.683 7.282h-0.91l1.82 5.973c1.309 6.922 2.962 12.917 5.044 18.708l-0.265-0.845 3.413 8.533 36.352 118.272c6.696 21.296 25.015 36.984 47.34 39.738l0.276 0.028 6.77 0.398h708.494zM866.133 782.222h-708.494l-36.409-118.329-4.836-12.971-1.934-7.908-0.569-5.632-0.114-3.755c0-33.223 27.762-60.53 62.464-60.53 24.178 0 45.511 13.369 55.979 33.564l5.746 12.857c20.992 40.107 79.531 40.050 100.466 0l5.689-12.914c10.411-20.082 31.858-33.508 55.979-33.508s45.511 13.369 55.922 33.564l5.803 12.857c20.935 40.107 79.474 40.050 100.409 0l5.746-12.914c10.354-20.082 31.858-33.508 55.922-33.508 24.178 0 45.511 13.369 55.922 33.564l5.803 12.857c20.992 40.107 79.531 40.050 100.466 0l5.689-12.914c10.411-20.082 31.858-33.508 55.979-33.508 34.702 0 62.464 27.307 62.464 60.53 0 2.389-0.171 5.006-0.569 7.964l-2.219 9.33-4.892 12.971-36.409 118.329z" />
<glyph unicode="&#xe629;" glyph-name="shangchuanchanggui" d="M490.915 532.651c9.599 7.643 21.902 12.264 35.283 12.264 15.7 0 29.915-6.36 40.209-16.644v0l181.020-181.020c5.159-5.152 8.35-12.273 8.35-20.139 0-15.718-12.742-28.46-28.46-28.46-7.852 0-14.961 3.18-20.111 8.322v0l-152.633 152.69v-502.329c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 502.272l-152.519-152.633c-5.145-5.134-12.248-8.309-20.091-8.309-6.062 0-11.68 1.896-16.295 5.127l0.092-0.061-3.982 3.243c-5.163 5.15-8.357 12.271-8.357 20.139s3.194 14.989 8.356 20.138l181.078 181.021zM512.362 839.111c159.352-0.012 295.167-100.774 347.219-242.057l0.827-2.565c96.69-38.057 163.878-130.627 163.878-238.89 0-131.328-98.867-239.564-226.232-254.338l-1.191-0.112-85.902-0.284c-0.019 0-0.042 0-0.065 0-13.605 0-24.934 9.747-27.384 22.639l-0.027 0.174-0.455 5.006v0.114c0 15.417 12.516 27.932 27.989 27.932h68.267c105.202 5.911 188.274 92.662 188.274 198.816 0 93.462-64.395 171.884-151.237 193.318l-1.367 0.285c-36.603 135.192-158.182 233.011-302.609 233.011-123.457 0-230.219-71.475-281.164-175.303l-0.817-1.843c-100.097-25.388-172.971-114.684-172.971-221.001 0-111.655 80.376-204.537 186.424-223.943l1.395-0.212 11.15-3.413h56.946c13.938 0 25.543-9.956 27.876-23.211l0.512-5.12c0 0 0 0 0 0 0-15.689-12.703-28.412-28.384-28.444h-0.003l-28.501-0.114c-0.1 0-0.217 0-0.335 0-157.094 0-284.444 127.35-284.444 284.444 0 123.649 78.897 228.871 189.095 268.070l1.988 0.617c64.906 112.169 184.324 186.425 321.086 186.425 0.058 0 0.116 0 0.174 0h-0.009z" />
<glyph unicode="&#xe62a;" glyph-name="shoucangchanggui" d="M542.72 777.444c6.911-4.471 12.632-10.174 16.99-16.848l0.134-0.218 125.269-195.015 224.142-58.88c24.609-6.627 42.424-28.743 42.424-55.019 0-13.706-4.847-26.28-12.921-36.102l0.079 0.099-146.773-179.371 5.234-92.16-58.88 34.020-4.38 77.028 132.722 162.247c3.997 4.861 6.421 11.148 6.421 18.001 0 13.138-8.908 24.196-21.013 27.464l-0.199 0.046-202.752 53.248-113.266 176.356c-5.137 7.928-13.939 13.099-23.95 13.099s-18.814-5.171-23.883-12.989l-0.067-0.111-113.209-176.356-202.809-53.248c-12.305-3.313-21.212-14.371-21.212-27.51 0-6.853 2.424-13.14 6.46-18.051l-0.039 0.049 132.722-162.247-11.947-209.237c-0.030-0.49-0.047-1.064-0.047-1.641 0-15.709 12.735-28.444 28.444-28.444 3.701 0 7.237 0.707 10.48 1.993l-0.192-0.067 195.3 76.117 195.3-76.117c3.051-1.219 6.586-1.925 10.287-1.925 15.709 0 28.444 12.735 28.444 28.444 0 0.577-0.017 1.151-0.051 1.719l0.004-0.078-3.698 64.284 58.937-34.020 4.153-71.225c0.062-0.994 0.097-2.157 0.097-3.327 0-31.419-25.47-56.889-56.889-56.889-7.446 0-14.557 1.43-21.075 4.031l0.384-0.135-215.893 84.252-215.893-84.196c-6.134-2.466-13.245-3.896-20.691-3.896-31.419 0-56.889 25.47-56.889 56.889 0 1.171 0.035 2.333 0.105 3.486l-0.008-0.159 13.312 231.31-146.773 179.371c-7.995 9.723-12.842 22.297-12.842 36.003 0 26.277 17.815 48.392 42.026 54.928l0.398 0.092 224.142 58.88 125.326 194.901c10.28 15.814 27.862 26.125 47.853 26.125 11.406 0 22.028-3.357 30.932-9.136l-0.221 0.135zM843.776 708.722c0.54-0.854 0.861-1.894 0.861-3.009 0-0.102-0.003-0.204-0.008-0.305l0.001 0.014-1.479-38.4 29.582-24.633c1.252-1.051 2.042-2.616 2.042-4.366 0-2.593-1.734-4.78-4.106-5.466l-0.040-0.010-36.978-10.468-14.336-35.726c-0.866-2.106-2.901-3.562-5.276-3.562-1.968 0-3.702 0.999-4.723 2.517l-0.013 0.020-21.39 31.915-38.343 2.56c-2.984 0.194-5.33 2.662-5.33 5.678 0 1.343 0.465 2.577 1.243 3.55l-0.009-0.011 23.78 30.208-9.444 37.319c-0.105 0.409-0.165 0.878-0.165 1.361 0 3.142 2.547 5.689 5.689 5.689 0.692 0 1.355-0.124 1.968-0.35l-0.039 0.013 36.124-13.255 32.54 20.48c0.862 0.554 1.915 0.883 3.044 0.883 2.013 0 3.782-1.046 4.793-2.624l0.014-0.023zM826.766 684.544l-17.863-11.207-7.452-0.796-19.797 7.282 5.12-20.48-1.536-7.396-13.084-16.498 21.049-1.422 6.542-3.755 11.776-17.522 7.794 19.57 5.632 5.006 20.252 5.746-16.156 13.54-3.072 6.827 0.796 21.106zM126.805 818.233c0.126 0.005 0.274 0.008 0.422 0.008 2.225 0 4.3-0.638 6.053-1.742l-0.047 0.028 49.152-30.72 52.338 17.010c1.067 0.366 2.297 0.577 3.576 0.577 6.284 0 11.378-5.094 11.378-11.378 0-0.788-0.080-1.557-0.233-2.3l0.013 0.073-10.866-56.092 34.816-47.559c1.382-1.861 2.212-4.204 2.212-6.741 0-6.001-4.646-10.917-10.538-11.347l-0.037-0.002-55.41-3.982-31.118-45.966c-2.074-3.038-5.52-5.006-9.426-5.006-4.638 0-8.627 2.775-10.399 6.754l-0.029 0.072-23.78 53.931-54.044 18.66c-4.47 1.602-7.611 5.802-7.611 10.736 0 3.341 1.44 6.345 3.733 8.427l0.009 0.008 40.846 36.864-1.991 57.97c-0.005 0.121-0.007 0.263-0.007 0.405 0 6.146 4.874 11.154 10.967 11.371l0.020 0.001zM835.186 625.948l-5.575-5.006 3.982 1.138 1.593 3.868zM145.351 775.452l1.365-39.14-29.241-26.396 38.457-13.255 16.327-37.092 21.618 31.858 38.343 2.788-23.893 32.711 7.68 39.879-37.433-12.117-33.223 20.764z" />
<glyph unicode="&#xe62b;" glyph-name="shouye" d="M949.362 421.888l-114.119 112.299c2.56 2.617 2.56 7.851 2.56 10.468v198.485c0 15.644-10.126 26.112-25.372 26.112h-197.746c-0.163 0.004-0.356 0.007-0.549 0.007-6.857 0-13.005-3.033-17.177-7.83l-0.024-0.028-65.934 67.925c-5.744 6.040-13.839 9.796-22.812 9.796s-17.069-3.757-22.8-9.783l-0.012-0.013-418.361-407.438c-6.277-6.654-10.135-15.649-10.135-25.545 0-4.893 0.943-9.565 2.657-13.845l-0.089 0.251c5.063-13.084 17.749-20.878 32.939-20.878h78.62v-334.279c0-23.552 17.749-41.813 40.562-41.813h197.746c22.422 0.056 40.578 18.245 40.578 40.675 0 0.4-0.006 0.799-0.017 1.196l0.001-0.058v206.222h126.748v-206.279c0-23.552 17.749-41.813 40.619-41.813h197.746c22.422 0.056 40.578 18.245 40.578 40.675 0 0.4-0.006 0.799-0.017 1.196l0.001-0.058v334.279h78.62c15.189 0 25.316 7.794 32.939 20.878-2.56 13.084-5.12 28.729-17.749 39.14zM789.618 717.028v-135.794l-141.995 135.794h141.995zM825.116 414.094c-15.189 0-25.372-10.468-25.372-26.169v-349.867h-177.493v208.839c0.009 0.322 0.014 0.701 0.014 1.081 0 22.41-18.122 40.586-40.511 40.675h-147.123c-22.422-0.057-40.576-18.246-40.576-40.675 0-0.38 0.005-0.759 0.016-1.137l-0.001 0.056v-206.336h-177.493v350.037c0 15.644-10.126 26.112-25.372 26.112h-60.871l377.799 362.951 377.742-365.568h-60.814z" />
<glyph unicode="&#xe62c;" glyph-name="shuaxin" d="M94.492 255.090c-0.006 0-0.014 0-0.021 0-13.42 0-24.674 9.275-27.7 21.764l-0.040 0.195c-7.954 32.151-12.516 69.061-12.516 107.037 0 43.404 5.961 85.417 17.108 125.263l-0.78-3.265c50.964 181.303 205.311 315.697 393.876 336.483l2.071 0.185c14.524 1.614 31.364 2.535 48.419 2.535 91.164 0 176.182-26.311 247.876-71.753l-1.895 1.122c8.065-5.145 13.337-14.046 13.337-24.178 0-15.786-12.797-28.583-28.583-28.583-5.654 0-10.925 1.642-15.361 4.474l0.115-0.069c-60.994 39.283-135.48 62.626-215.419 62.626-111.581 0-212.539-45.482-285.346-118.918l-0.028-0.028c-73.248-72.826-118.581-173.66-118.581-285.083 0-33.574 4.116-66.186 11.871-97.36l-0.582 2.766c0.508-2.016 0.8-4.33 0.8-6.713 0-15.772-12.786-28.558-28.558-28.558-0.021 0-0.043 0-0.064 0h0.003zM516.039-77.028c-0.087 0-0.189 0-0.291 0-91.125 0-176.092 26.366-247.688 71.886l1.878-1.116c-8.065 5.145-13.337 14.046-13.337 24.178 0 15.786 12.797 28.583 28.583 28.583 5.654 0 10.925-1.642 15.361-4.474l-0.115 0.069c61.002-39.354 135.521-62.742 215.502-62.742 111.537 0 212.451 45.485 285.204 118.918l0.030 0.031c73.235 72.816 118.56 173.634 118.56 285.039 0 33.199-4.025 65.457-11.614 96.314l0.573-2.758c-0.215 1.319-0.338 2.839-0.338 4.388 0 15.835 12.837 28.672 28.672 28.672 12.707 0 23.484-8.267 27.245-19.716l0.058-0.203c7.816-31.892 12.3-68.505 12.3-106.166 0-43.514-5.986-85.629-17.178-125.569l0.782 3.269c-51.111-181.097-205.387-315.287-393.821-336.028l-2.069-0.185c-14.477-1.522-31.277-2.389-48.279-2.389-0.027 0-0.054 0-0.081 0h0.005zM671.744 656.839c-0.058 0-0.127-0.001-0.196-0.001-15.741 0-28.501 12.76-28.501 28.501 0 13.202 8.977 24.308 21.16 27.547l0.199 0.045 104.505 27.989-27.989 104.448c-0.618 2.218-0.974 4.765-0.974 7.396 0 15.776 12.789 28.565 28.565 28.565 13.146 0 24.218-8.88 27.544-20.969l0.047-0.201 35.442-132.039c0.625-2.227 0.985-4.785 0.985-7.427 0-13.158-8.917-24.234-21.037-27.514l-0.2-0.046-131.982-35.442c-2.261-0.545-4.866-0.874-7.542-0.91h-0.024zM259.072-107.179c-13.933 0.038-25.525 10.008-28.074 23.201l-0.029 0.18-24.804 134.428c-0.313 1.58-0.492 3.397-0.492 5.256 0 6.035 1.887 11.63 5.104 16.225l-0.061-0.091c4.284 6.112 10.754 10.441 18.253 11.862l0.179 0.028 134.372 24.747c1.158 0.166 2.496 0.261 3.855 0.261 15.772 0 28.558-12.786 28.558-28.558 0-13.447-9.293-24.723-21.807-27.756l-0.195-0.040-106.268-19.627 19.627-106.325c0.308-1.574 0.484-3.383 0.484-5.234 0-15.772-12.786-28.558-28.558-28.558-0.050 0-0.1 0-0.15 0h0.008z" />
<glyph unicode="&#xe62d;" glyph-name="sousuochanggui" d="M512 839.111c0.020 0 0.043 0 0.066 0 251.351 0 455.111-203.76 455.111-455.111 0-122.764-48.607-234.176-127.626-316.038l0.129 0.134 134.315-134.315c5.358-5.18 8.684-12.431 8.684-20.46 0-15.709-12.735-28.444-28.444-28.444-8.029 0-15.28 3.326-20.452 8.676l-0.008 0.008-136.192 136.021c-77.356-62.718-176.997-100.693-285.507-100.693-251.351 0-455.111 203.76-455.111 455.111 0 251.324 203.717 455.068 455.032 455.111h0.004zM512 782.222c-219.932 0-398.222-178.29-398.222-398.222s178.29-398.222 398.222-398.222v0c219.932 0 398.222 178.29 398.222 398.222s-178.29 398.222-398.222 398.222v0z" />
<glyph unicode="&#xe62e;" glyph-name="tixian" horiz-adv-x="1026" d="M511.876 896c282.732-0.251 511.835-229.508 511.835-512.274 0-40.187-4.627-79.293-13.379-116.814l0.68 3.462-75.36-0.057c9.783 36.286 14.958 74.506 14.958 113.807 0 242.004-196.788 438.735-438.735 438.735-242.004 0-438.735-196.788-438.735-438.735 0-242.004 196.788-438.735 438.735-438.735 39.358 0 77.521 5.176 113.807 14.958v-75.36c-34.077-8.079-73.202-12.711-113.409-12.711-282.771 0-512.031 229.11-512.274 511.825v0.023c0 282.385 229.491 511.876 511.876 511.876zM866.265 230.788l159.535-159.478-159.535-159.478-34.694 34.694 100.328 100.271h-283.807v49.026h283.807l-100.271 100.271 34.694 34.694zM618.29 620.952l55.965-44.533-97.825-110.452h106.072v-69.331h-134.055v-46.126h134.055v-69.274h-134.055v-115.4h-73.141v115.457h-134.055v69.274h134.055v46.069h-134.055v69.388h108.518l-97.882 110.338 56.022 44.476 105.105-118.585 105.219 118.642z" />
<glyph unicode="&#xe62f;" glyph-name="tianjia" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM540.444 611.556v-199.111h199.111v-56.889h-199.111v-199.111h-56.889v199.111h-199.111v56.889h199.111v199.111h56.889z" />
<glyph unicode="&#xe630;" glyph-name="tianjia2" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM544.028 640h-64.057v-223.972h-223.972v-64.057l223.972 0.057v-224.028h64.057l-0.057 224.028h224.028v63.943l-224.028 0.057v223.972z" />
<glyph unicode="&#xe631;" glyph-name="tianjia3" d="M551.822 782.222v-358.343l358.4-0.057v-79.644h-358.4v-358.4h-79.644l-0.057 358.4h-358.343v79.644l358.343 0.057 0.057 358.343h79.644z" />
<glyph unicode="&#xe632;" glyph-name="xia" d="M883.484 584.59c-6.835 6.883-16.303 11.144-26.766 11.144s-19.931-4.261-26.764-11.141l-297.759-299.977c-5.156-5.197-12.3-8.414-20.196-8.414s-15.040 3.217-20.194 8.412l-0.002 0.002-297.756 299.975c-6.832 6.866-16.289 11.115-26.738 11.115s-19.906-4.249-26.736-11.113l-0.002-0.002c-6.865-6.918-11.107-16.446-11.107-26.965s4.242-20.048 11.109-26.968l-0.002 0.002 331.093-333.54c10.308-10.376 24.585-16.799 40.363-16.799s30.054 6.423 40.36 16.796l331.096 333.543c6.865 6.918 11.107 16.446 11.107 26.965s-4.242 20.048-11.109 26.968l0.002-0.002z" />
<glyph unicode="&#xe633;" glyph-name="xiazaichanggui" d="M512 440.889c15.709 0 28.444-12.735 28.444-28.444v-445.326l152.576 152.576c5.149 5.142 12.258 8.322 20.11 8.322 15.718 0 28.46-12.742 28.46-28.46 0-7.866-3.191-14.987-8.35-20.138v0l-181.020-181.020c-10.293-10.284-24.508-16.644-40.208-16.644-13.382 0-25.684 4.62-35.399 12.353l0.116-0.089-4.949 4.38-181.020 181.020c-5.159 5.152-8.35 12.273-8.35 20.139 0 15.718 12.742 28.46 28.46 28.46 7.852 0 14.961-3.18 20.111-8.322v0l152.576-152.576v445.326c0 15.709 12.735 28.444 28.444 28.444v0zM512 896c0.008 0 0.018 0 0.028 0 149.010 0 275.73-95.436 322.37-228.518l0.731-2.394c108.069-18.993 189.134-112.15 189.134-224.24 0-121.755-95.646-221.17-215.901-227.208l-0.54-0.022-68.267-0.284c-0.017 0-0.037 0-0.057 0-15.658 0-28.355 12.677-28.387 28.328v0.117c0 15.709 12.735 28.444 28.444 28.444h56.889c0.049 0 0.107 0 0.164 0 94.257 0 170.667 76.41 170.667 170.667 0 90.792-70.896 165.026-160.349 170.36l-0.47 0.022-10.012 0.284-5.689-0.171c-27.418 130.795-141.804 227.607-278.801 227.607-111.503 0-208.027-64.132-254.698-157.523l-0.745-1.646-5.291-11.435 4.779 0.057c-0.085 0-0.186 0-0.287 0-109.966 0-199.111-89.145-199.111-199.111 0-106.225 83.183-193.022 187.963-198.804l0.513-0.023 39.367-0.171c14.978-0.976 26.757-13.363 26.757-28.501s-11.779-27.526-26.672-28.497l-0.085-0.004h-28.444c-141.375 0.013-255.978 114.623-255.978 256 0 126.67 91.999 231.853 212.825 252.375l1.51 0.212c59.649 104.659 170.491 174.080 297.548 174.080 0.033 0 0.067 0 0.1 0h-0.005z" />
<glyph unicode="&#xe634;" glyph-name="xiaoxichanggui" d="M113.778 564.167v-360.277c0-15.709 12.735-28.444 28.444-28.444v0h151.723l220.444-157.525c4.584-3.297 10.31-5.273 16.498-5.273 15.703 0 28.434 12.725 28.444 28.426v685.853c-0.010 15.702-12.741 28.427-28.444 28.427-6.188 0-11.914-1.976-16.583-5.331l0.085 0.058-220.444-157.468h-151.723c-15.709 0-28.444-12.735-28.444-28.444v0zM502.5 96.256l-190.407 135.964h-141.426v303.559h141.483l190.35 135.964v-575.431zM724.196 688.014l-25.998-50.631c92.803-48.024 155.136-143.305 155.136-253.144 0-0.084 0-0.168 0-0.252v0.013c0-0.009 0-0.019 0-0.030 0-110.18-62.657-205.725-154.282-252.948l-1.593-0.746 25.828-50.802c111.82 57.627 186.965 172.289 186.965 304.502 0 131.854-74.737 246.252-184.16 303.142l-1.894 0.896zM786.944 384c0 0.004 0 0.008 0 0.012 0 89.426-53.804 166.286-130.806 199.974l-1.404 0.547-22.357-52.281c57.933-25.302 97.687-82.096 97.687-148.176 0-66.319-40.042-123.285-97.269-148.040l-1.044-0.402 22.187-52.338c78.82 33.916 133.006 110.91 133.006 200.559 0 0.051 0 0.102 0 0.153v-0.008z" />
<glyph unicode="&#xe635;" glyph-name="xinzengchanggui" d="M796.444 725.333c94.257 0 170.667-76.41 170.667-170.667v0-455.111c0-94.257-76.41-170.667-170.667-170.667v0h-455.111c-94.257 0-170.667 76.41-170.667 170.667v0 455.111c0 94.257 76.41 170.667 170.667 170.667h455.111zM796.444 668.444h-455.111c-0.011 0-0.023 0-0.036 0-59.835 0-108.882-46.187-113.433-104.854l-0.024-0.39-0.284-8.533v-455.111c0-0.011 0-0.023 0-0.036 0-59.835 46.187-108.882 104.854-113.433l0.39-0.024 8.533-0.284h455.111c0.011 0 0.023 0 0.036 0 59.835 0 108.882 46.187 113.433 104.854l0.024 0.39 0.284 8.533v455.111c0 62.838-50.94 113.778-113.778 113.778v0zM711.111 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-483.556c-62.838 0-113.778-50.94-113.778-113.778v0-483.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 483.556c0 94.257 76.41 170.667 170.667 170.667h483.556zM568.889 497.778c15.709 0 28.444-12.735 28.444-28.444v-113.778h113.778c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778v-113.778c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v113.778h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778v113.778c0 15.709 12.735 28.444 28.444 28.444v0z" />
<glyph unicode="&#xe636;" glyph-name="yichuchanggui" d="M938.667 725.333c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-85.333v-682.667c0-31.419-25.47-56.889-56.889-56.889v0h-568.889c-31.419 0-56.889 25.47-56.889 56.889v0 682.667h-85.333c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h853.333zM796.444 668.444h-568.889v-682.667h568.889v682.667zM426.667 554.667c15.709 0 28.444-12.735 28.444-28.444v-398.222c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 398.222c0 15.709 12.735 28.444 28.444 28.444v0zM597.333 554.667c15.709 0 28.444-12.735 28.444-28.444v-398.222c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v398.222c0 15.709 12.735 28.444 28.444 28.444v0zM654.222 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-284.444c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h284.444z" />
<glyph unicode="&#xe637;" glyph-name="yichuchanggui2" d="M938.667 725.333c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-85.333v-682.667c0-31.419-25.47-56.889-56.889-56.889v0h-568.889c-31.419 0-56.889 25.47-56.889 56.889v0 682.667h-85.333c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h853.333zM369.778 554.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-398.222c0-0.016 0-0.034 0-0.052 0-15.709 12.735-28.444 28.444-28.444 13.918 0 25.501 9.996 27.962 23.201l0.027 0.176 0.455 5.12v398.222c0 15.709-12.735 28.444-28.444 28.444v0zM654.222 554.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-398.222c0-0.016 0-0.034 0-0.052 0-15.709 12.735-28.444 28.444-28.444 13.918 0 25.501 9.996 27.962 23.201l0.027 0.176 0.455 5.12v398.222c0 15.709-12.735 28.444-28.444 28.444v0zM654.222 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-284.444c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h284.444z" />
<glyph unicode="&#xe638;" glyph-name="yingyeshujuguanliputong" d="M910.222 668.444v-625.778c0-31.419-25.47-56.889-56.889-56.889h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 388.722l178.802-94.777 170.667 127.716 73.159-64.114 373.817 268.231zM853.333 544.825l-316.928-227.385-73.159 64.057-170.667-127.716-121.913 64.683v-247.353c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h625.778c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v473.714zM899.3 782.222c6.030 0 10.923-4.892 10.923-10.923 0-6.827-3.413-13.198-9.045-17.010l-364.715-247.637-73.216 65.82-170.667-131.186-178.802 97.564v71.282l178.802-103.481 170.667 131.413 73.159-65.991 198.997 131.755-37.49 26.795c-7.254 5.222-11.922 13.643-11.922 23.154 0 15.701 12.721 28.43 28.419 28.444h184.89z" />
<glyph unicode="&#xe639;" glyph-name="yonghuzhongxinputong" d="M939.236 1.707v58.88c0 78.677-82.261 142.45-221.298 210.944-32.085 16.043-95.972 41.415-97.849 42.325 0.796 4.494 3.527 9.956 9.273 17.92 3.816 5.202 7.36 9.648 11.062 13.954l-0.253-0.301 3.243 3.755c1.65 2.048 1.65 2.048 3.413 4.039l7.111 8.647c6.138 7.343 12.272 15.502 17.984 23.968l0.676 1.063c40.96 61.668 53.476 126.635 53.476 200.192 0 97.451-34.873 167.14-94.208 209.806-40.164 28.843-88.178 42.212-123.563 42.212h-20.48c-35.328 0-83.456-13.369-123.506-42.212-59.449-42.667-94.151-112.356-94.151-209.806 0-73.557 12.516-138.638 53.419-200.192 5.461-8.192 11.321-16.043 18.603-24.917l7.225-8.647 3.356-3.982 3.243-3.868c4.779-5.689 8.078-9.899 10.809-13.653 5.746-7.964 8.476-13.483 7.168-19.115 0.228 0.114-63.716-25.372-95.801-41.301-138.98-68.324-221.298-132.039-221.298-210.716v-131.698h69.689v131.812c0 36.466 71.168 91.705 181.646 146.148 29.013 14.393 92.558 39.765 95.687 41.188 27.42 13.483 42.041 32.882 42.041 63.204 0 23.268-8.306 42.894-23.438 63.886-4.827 6.597-9.303 12.229-13.98 17.684l-13.099 15.653c-4.753 5.673-9.52 11.976-13.973 18.512l-0.534 0.831c-31.118 46.876-41.244 99.214-41.244 159.63 0 73.956 23.723 121.685 64.341 150.756 27.534 19.74 61.838 29.298 83.797 29.298h20.366c22.016 0 56.32-9.557 83.854-29.298 40.448-29.070 64.284-76.8 64.284-150.756 0-60.416-10.012-112.754-41.244-159.63-3.982-5.973-8.476-12.060-14.45-19.342l-13.426-16.043c-5.632-6.827-9.785-12.004-13.653-17.294-15.303-20.878-23.438-40.619-23.438-63.886 0-30.436 14.564-49.721 42.041-63.147 3.015-1.479 66.731-26.852 95.687-41.244 110.478-54.443 181.646-109.682 181.646-146.204v-131.868h69.689v35.897c0.114 2.162 0.114 2.162 0.114 10.923v26.055zM788.366 628.907h178.745v-71.851h-178.802v71.794zM792.974 485.092h174.137v-71.851h-174.194v71.794zM862.663 341.39h104.448v-71.851h-104.505v71.794z" />
<glyph unicode="&#xe63a;" glyph-name="you" d="M311.41 755.484c-6.883-6.835-11.144-16.303-11.144-26.766s4.261-19.931 11.141-26.764l299.977-297.759c5.197-5.156 8.414-12.3 8.414-20.196s-3.217-15.040-8.412-20.194l-0.002-0.002-299.975-297.756c-6.866-6.832-11.115-16.289-11.115-26.738s4.249-19.906 11.113-26.736l0.002-0.002c14.905-14.848 39.026-14.791 53.931 0l333.54 331.093c10.376 10.308 16.799 24.585 16.799 40.363s-6.423 30.054-16.796 40.36l-333.543 331.096c-6.918 6.865-16.446 11.107-26.965 11.107s-20.048-4.242-26.968-11.109l0.002 0.002z" />
<glyph unicode="&#xe63b;" glyph-name="xiaoxitixing2" d="M625.721-13.769l-0.284-8.529c-4.316-59.259-53.454-105.701-113.438-105.701-62.806 0-113.721 50.915-113.721 113.721 0 0.179 0 0.358 0.001 0.536v-0.028h227.442zM512 725.418c188.419 0 341.163-152.744 341.163-341.163v0-113.721l37.414-18.764c45.587-23.15 76.285-69.681 76.307-123.384v-0.003c0-47.105-38.186-85.291-85.291-85.291h-739.187c-47.105 0-85.291 38.186-85.291 85.291v0c0 52.312 29.567 100.075 76.307 123.387l37.414 18.764v113.721c0 188.419 152.744 341.163 341.163 341.163v0zM220.078 808.321c3.563 1.728 7.75 2.738 12.173 2.738 15.702 0 28.43-12.729 28.43-28.43 0-11.893-7.303-22.081-17.669-26.323l-0.19-0.069c-76.819-33.605-118.839-86.997-137.432-175.927-2.794-13.003-14.192-22.609-27.833-22.609-15.705 0-28.437 12.732-28.437 28.437 0 2.064 0.22 4.076 0.637 6.015l-0.034-0.187c22.289 106.557 76.307 175.244 170.354 216.354zM807.675 808.321c84.267-36.846 140.559-113.38 170.013-214.251 0.723-2.385 1.139-5.127 1.139-7.965 0-15.702-12.729-28.43-28.43-28.43-12.867 0-23.737 8.547-27.243 20.273l-0.052 0.201c-25.076 86.030-71.303 148.861-138.171 178.087-10.556 4.311-17.859 14.498-17.859 26.392 0 15.702 12.729 28.43 28.43 28.43 4.423 0 8.61-1.010 12.343-2.812l-0.17 0.074zM512 896c62.806 0 113.721-50.915 113.721-113.721v0-19.446c-33.78 12.321-72.778 19.446-113.44 19.446-0.099 0-0.198 0-0.297 0h0.016c-0.131 0-0.287 0-0.442 0-40.602 0-79.544-7.104-115.652-20.138l2.373 0.748v19.389c0 62.806 50.915 113.721 113.721 113.721v0z" />
<glyph unicode="&#xe63c;" glyph-name="yundanguanliputong" d="M227.556 839.111v-56.889h-28.444c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-739.556c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h625.778c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v739.556c0 15.709-12.735 28.444-28.444 28.444v0h-28.444v56.889h56.889c31.419 0 56.889-25.47 56.889-56.889v0-796.444c0-31.419-25.47-56.889-56.889-56.889v0h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 796.444c0 31.419 25.47 56.889 56.889 56.889v0h56.889zM739.556 213.333v-56.889h-455.111v56.889h455.111zM485.262 551.31l80.213-80.27-184.32-184.491-96.711-16.327 16.327 96.654 184.434 184.377zM739.556 327.111v-56.889h-227.556v56.889h227.556zM545.451 611.556l80.327-80.327-40.164-40.164-80.327 80.327 40.164 40.164zM739.556 839.111v-56.889c0-31.419-25.47-56.889-56.889-56.889v0h-341.333c-31.419 0-56.889 25.47-56.889 56.889v0 56.889h455.111z" />
<glyph unicode="&#xe63d;" glyph-name="zhankai" d="M824.889 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v739.556c0 15.709 12.735 28.444 28.444 28.444v0zM493.796 190.748c4.894 4.098 11.258 6.588 18.203 6.588 8.759 0 16.592-3.959 21.81-10.184l0.036-0.044 128.91-154.681c4.099-4.895 6.588-11.259 6.588-18.204 0-15.706-12.729-28.438-28.433-28.444h-257.821c-15.705 0.006-28.434 12.739-28.434 28.444 0 6.946 2.489 13.31 6.625 18.249l-0.036-0.045 128.91 154.738c1.115 1.31 2.306 2.483 3.593 3.545l0.048 0.039zM199.111 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 739.556c0 15.709 12.735 28.444 28.444 28.444v0zM512 782.222c15.709 0 28.444-12.735 28.444-28.444v0-455.111c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 455.111c0 15.709 12.735 28.444 28.444 28.444v0z" />
<glyph unicode="&#xe63e;" glyph-name="zhedie" d="M824.889 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v739.556c0 15.709 12.735 28.444 28.444 28.444v0zM512 497.778c15.709 0 28.444-12.735 28.444-28.444v-455.111c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 455.111c0 15.709 12.735 28.444 28.444 28.444v0zM199.111 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 739.556c0 15.709 12.735 28.444 28.444 28.444v0zM530.204 759.637c1.333-1.116 2.525-2.308 3.605-3.597l0.036-0.044 128.91-154.681c4.099-4.895 6.588-11.259 6.588-18.204 0-15.706-12.729-28.438-28.433-28.444h-257.821c-15.705 0.006-28.434 12.739-28.434 28.444 0 6.946 2.489 13.31 6.625 18.249l-0.036-0.045 128.91 154.738c5.253 6.25 13.075 10.195 21.818 10.195 6.958 0 13.332-2.498 18.275-6.647l-0.044 0.036z" />
<glyph unicode="&#xe63f;" glyph-name="zhengque" d="M391.964 165.604l-201.216 201.159c-5.358 5.18-8.684 12.431-8.684 20.46 0 15.709 12.735 28.444 28.444 28.444 8.029 0 15.28-3.326 20.452-8.676l181.028-181.028 422.343 422.343c5.11 4.94 12.080 7.985 19.761 7.985 15.709 0 28.444-12.735 28.444-28.444 0-7.681-3.044-14.651-7.992-19.769l-442.474-442.474c-5.147-5.146-12.257-8.328-20.11-8.328s-14.963 3.183-20.11 8.328v0z" />
<glyph unicode="&#xe640;" glyph-name="zhanghuxinxi" d="M853.333 839.111c62.838 0 113.778-50.94 113.778-113.778v0-682.667c0-62.838-50.94-113.778-113.778-113.778v0h-682.667c-62.838 0-113.778 50.94-113.778 113.778v0 682.667c0 62.838 50.94 113.778 113.778 113.778v0zM853.333 782.222h-682.667c-31.419 0-56.889-25.47-56.889-56.889v0-682.667c0-31.419 25.47-56.889 56.889-56.889v0h682.667c31.419 0 56.889 25.47 56.889 56.889v0 682.667c0 31.419-25.47 56.889-56.889 56.889v0zM455.111 156.444v-56.889h-284.444v56.889h284.444zM853.333 270.222v-56.889h-682.667v56.889h682.667zM853.333 384v-56.889h-284.444v56.889h284.444zM345.145 668.444c15.644 0 34.475-5.916 49.38-16.27 24.519-17.067 37.66-44.601 37.66-80.668 0-30.379-6.087-53.988-20.992-75.719l-4.551-6.201-12.004-14.336 16.213-6.599 11.662-5.12 14.791-7.168c50.916-25.657 74.695-48.356 74.695-75.947l0.057-47.787-5.518-5.518h-330.354l-5.518 5.518v47.787c0 29.582 27.307 53.476 85.902 81.522l4.153 1.82 12.402 4.949c3.527 1.365 11.776 4.494 15.019 4.779l1.308-0.171-1.707 2.276-16.27 20.196c-14.905 21.732-20.992 45.34-20.992 75.719 0 36.068 13.084 63.602 37.66 80.668 14.905 10.354 33.735 16.27 49.38 16.27h7.623zM345.145 631.353h-7.623c-10.617-0.602-20.303-4.133-28.394-9.789l0.178 0.118c-14.336-9.899-21.732-26.055-21.732-50.176 0-22.756 4.267-39.879 14.45-54.784l2.276-3.015 13.141-15.929c6.656-8.818 9.899-17.067 9.899-26.396 0-11.093-4.722-19.342-13.881-25.202l-5.916-3.072-13.028-5.291-18.375-7.737-12.459-6.030c-31.915-16.156-52.338-31.744-55.467-41.188l-0.398-2.446v-15.872l267.093-0.341v16.213c0 9.102-21.106 25.998-55.922 43.634l-8.988 4.437-12.686 5.575-22.187 9.045-5.86 3.072c-8.404 4.962-13.953 13.974-13.953 24.281 0 0.324 0.005 0.646 0.016 0.968l-0.001-0.047c0 7.452 2.048 14.222 6.258 21.163l3.641 5.291 13.141 15.815 2.276 3.072c10.183 14.905 14.45 31.972 14.45 54.784 0 24.121-7.396 40.277-21.732 50.233-6.531 4.469-14.281 7.685-22.64 9.111l-0.343 0.048-5.234 0.455zM853.333 554.667v-113.778h-113.778v113.778h113.778zM682.667 554.667v-113.778h-113.778v113.778h113.778z" />
<glyph unicode="&#xe641;" glyph-name="zhengque2" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM747.065 539.42c5.146-5.147 8.328-12.257 8.328-20.11s-3.183-14.963-8.328-20.11l-281.6-281.6c-5.147-5.146-12.257-8.328-20.11-8.328s-14.963 3.183-20.11 8.328l-120.661 120.718c-5.358 5.18-8.684 12.431-8.684 20.46 0 15.709 12.735 28.444 28.444 28.444 8.029 0 15.28-3.326 20.452-8.676l100.531-100.588 261.518 261.461c5.147 5.146 12.257 8.328 20.11 8.328s14.963-3.183 20.11-8.328v0z" />
<glyph unicode="&#xe642;" glyph-name="zhengque3" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM776.42 558.876c-5.786 5.789-13.782 9.37-22.613 9.37s-16.827-3.581-22.613-9.37l-294.173-294.173-113.152 113.152c-5.789 5.782-13.784 9.358-22.613 9.358-17.673 0-32-14.327-32-32 0-8.844 3.587-16.849 9.387-22.641v0l138.24-138.24c5.15-5.163 12.271-8.357 20.139-8.357s14.989 3.194 20.138 8.356l319.261 319.261c5.793 5.795 9.375 13.8 9.375 22.642s-3.583 16.846-9.375 22.642v0z" />
<glyph unicode="&#xe643;" glyph-name="zuo" d="M712.59 12.516c6.883 6.835 11.144 16.303 11.144 26.766s-4.261 19.931-11.141 26.764l-299.977 297.759c-5.197 5.156-8.414 12.3-8.414 20.196s3.217 15.040 8.412 20.194l0.002 0.002 299.975 297.756c6.866 6.832 11.115 16.289 11.115 26.738s-4.249 19.906-11.113 26.736l-0.002 0.002c-6.918 6.865-16.446 11.107-26.965 11.107s-20.048-4.242-26.968-11.109l0.002 0.002-333.54-331.036c-10.376-10.308-16.799-24.585-16.799-40.363s6.423-30.054 16.796-40.36l333.543-331.096c14.905-14.791 39.026-14.791 53.931 0z" />
<glyph unicode="&#xe644;" glyph-name="date_norshijian" d="M512 839.111c-251.221 0-455.111-203.89-455.111-455.111s203.89-455.111 455.111-455.111 455.111 203.89 455.111 455.111-203.89 455.111-455.111 455.111zM512-14.222c-219.534 0-398.222 178.688-398.222 398.222s178.688 398.222 398.222 398.222 398.222-178.688 398.222-398.222-178.688-398.222-398.222-398.222zM529.636 601.316l-4.21-193.252c-0.008-0.349-0.012-0.76-0.012-1.172 0-15.605 6.283-29.743 16.458-40.021l-0.005 0.005 127.488-129.138c5.604-5.669 9.066-13.467 9.066-22.073 0-8.663-3.508-16.506-9.18-22.187v0c-5.642-5.642-13.436-9.131-22.044-9.131s-16.403 3.49-22.044 9.131l-135.168 135.168c-10.296 10.293-16.665 24.512-16.668 40.22v232.449c0 15.709 12.735 28.444 28.444 28.444v0c0.002 0 0.004 0 0.006 0 15.395 0 27.876-12.48 27.876-27.876 0-0.2-0.002-0.4-0.006-0.599v0.030z" />
<glyph unicode="&#xe645;" glyph-name="Positioning_norbeifen" d="M113.778-71.111h354.19v411.079h-411.079v-354.19c0-31.419 25.47-56.889 56.889-56.889v0zM151.495 199.908l41.529 41.529 67.47-67.47 67.413 67.47 41.529-41.529-67.47-67.413 67.47-67.47-41.529-41.529-67.356 67.527-67.47-67.47-41.529 41.529 67.47 67.47-67.47 67.413zM556.032 839.111v-411.079h411.079v354.19c0 31.419-25.47 56.889-56.889 56.889h-354.19zM879.047 604.217h-234.951v58.709h234.951v-58.709zM56.889 428.032h411.079v411.079h-354.19c-31.419 0-56.889-25.47-56.889-56.889v0-354.19zM144.953 662.983h88.121v88.007h58.709v-88.121h88.064v-58.709h-88.007v-88.064h-58.766v88.064h-88.121v58.766zM556.032-71.111h354.19c31.419 0 56.889 25.47 56.889 56.889v0 354.19h-411.079v-411.079zM761.572 2.276c-24.35 0-44.089 19.739-44.089 44.089s19.739 44.089 44.089 44.089v0c24.35 0 44.089-19.739 44.089-44.089s-19.739-44.089-44.089-44.089v0zM761.572 266.524c24.318 0 44.032-19.714 44.032-44.032s-19.714-44.032-44.032-44.032v0c-24.318 0-44.032 19.714-44.032 44.032s19.714 44.032 44.032 44.032v0zM644.153 163.783h234.894v-58.709h-234.951v58.709z" />
<glyph unicode="&#xe646;" glyph-name="shezhibeifen" d="M617.131 896l34.873-119.865c12.914-4.722 25.6-9.956 38.059-15.929l109.568 60.132 148.708-148.708-60.245-109.682c5.973-12.345 11.207-25.031 15.815-37.831l120.092-34.987v-210.261l-120.092-34.987c-5.699-15.67-10.993-28.060-16.831-40.138l1.129 2.592 60.132-110.080-148.708-148.708-109.227 60.302c-9.782-4.872-22.344-10.226-35.208-14.955l-2.851-0.917-35.214-119.979h-210.261l-34.645 119.865c-15.61 5.55-28.174 10.887-40.384 16.838l2.326-1.023-109.909-60.018-148.708 148.708 60.473 109.454c-4.676 9.453-10.008 21.936-14.784 34.69l-1.031 3.141-120.206 35.271v210.318l120.036 34.532c4.665 12.914 9.899 25.6 15.872 38.059l-60.302 109.796 148.821 148.708 109.511-60.132c12.345 5.973 25.145 11.207 38.116 15.929l34.759 119.865h210.261zM512 668.444c-76.004 0-147.399-29.582-201.159-83.285-51.448-51.195-83.286-122.055-83.286-200.352 0-0.284 0-0.568 0.001-0.851v0.044c0-76.004 29.582-147.399 83.285-201.159 51.195-51.448 122.055-83.286 200.352-83.286 0.284 0 0.568 0 0.851 0.001h-0.044c76.004 0 147.399 29.582 201.159 83.285 51.448 51.195 83.286 122.055 83.286 200.352 0 0.284 0 0.568-0.001 0.851v-0.044c0 76.004-29.582 147.399-83.285 201.159-51.195 51.448-122.055 83.286-200.352 83.286-0.284 0-0.568 0-0.851-0.001h0.044zM512 554.667c94.094 0 170.667-76.572 170.667-170.61-0.162-94.169-76.489-170.456-170.658-170.553h-0.009c-94.094 0-170.667 76.516-170.667 170.553 0.129 94.193 76.469 170.513 170.657 170.61h0.009z" />
</font></defs></svg>
\ No newline at end of file
No preview for this file type
No preview for this file type
package com.rn_basis;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript. This is used to schedule
* rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "rn_basis";
}
}
package com.rn_basis;
import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
import com.th3rdwave.safeareacontext.SafeAreaContextPackage;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.soloader.SoLoader;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost =
new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
@SuppressWarnings("UnnecessaryLocalVariable")
List<ReactPackage> packages = new PackageList(this).getPackages();
// Packages that cannot be autolinked yet can be added manually here, for example:
// packages.add(new MyReactNativePackage());
return packages;
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
}
/**
* Loads Flipper in React Native templates. Call this in the onCreate method with something like
* initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
*
* @param context
* @param reactInstanceManager
*/
private static void initializeFlipper(
Context context, ReactInstanceManager reactInstanceManager) {
if (BuildConfig.DEBUG) {
try {
/*
We use reflection here to pick up the class that initializes Flipper,
since Flipper library is not available in release mode
*/
Class<?> aClass = Class.forName("com.rn_basis.ReactNativeFlipper");
aClass
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
.invoke(null, context, reactInstanceManager);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}
<resources>
<string name="app_name">rn_project</string>
</resources>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowLightStatusBar">true</item>
</style>
</resources>
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
}
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.5.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
}
}
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.33.1
No preview for this file type
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=$(save "$@")
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi
exec "$JAVACMD" "$@"
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
rootProject.name = 'rn_basis'
include ':react-native-safe-area-context'
project(':react-native-safe-area-context').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-safe-area-context/android')
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
{
"name": "rn_basis",
"displayName": "信巴迪-RN基础环境"
}
\ No newline at end of file
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
};
/**
* @format
*/
import { AppRegistry } from 'react-native'
import App from './App'
import {name as appName} from './app.json'
import 'react-native-gesture-handler'
AppRegistry.registerComponent(appName, () => App)
platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
def add_flipper_pods!(versions = {})
versions['Flipper'] ||= '~> 0.33.1'
versions['DoubleConversion'] ||= '1.1.7'
versions['Flipper-Folly'] ||= '~> 2.1'
versions['Flipper-Glog'] ||= '0.3.6'
versions['Flipper-PeerTalk'] ||= '~> 0.0.4'
versions['Flipper-RSocket'] ||= '~> 1.0'
pod 'FlipperKit', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutPlugin', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/SKIOSNetworkPlugin', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitUserDefaultsPlugin', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitReactPlugin', versions['Flipper'], :configuration => 'Debug'
# List all transitive dependencies for FlipperKit pods
# to avoid them being linked in Release builds
pod 'Flipper', versions['Flipper'], :configuration => 'Debug'
pod 'Flipper-DoubleConversion', versions['DoubleConversion'], :configuration => 'Debug'
pod 'Flipper-Folly', versions['Flipper-Folly'], :configuration => 'Debug'
pod 'Flipper-Glog', versions['Flipper-Glog'], :configuration => 'Debug'
pod 'Flipper-PeerTalk', versions['Flipper-PeerTalk'], :configuration => 'Debug'
pod 'Flipper-RSocket', versions['Flipper-RSocket'], :configuration => 'Debug'
pod 'FlipperKit/Core', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/CppBridge', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FBCxxFollyDynamicConvert', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FBDefines', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FKPortForwarding', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitHighlightOverlay', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutTextSearchable', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitNetworkPlugin', versions['Flipper'], :configuration => 'Debug'
end
# Post Install processing for Flipper
def flipper_post_install(installer)
installer.pods_project.targets.each do |target|
if target.name == 'YogaKit'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.1'
end
end
end
end
target 'rn_basis' do
# Pods for rn_basis
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
pod 'React', :path => '../node_modules/react-native/'
pod 'React-Core', :path => '../node_modules/react-native/'
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"
pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga', :modular_headers => true
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'react-native-safe-area-context', :path => '../node_modules/react-native-safe-area-context'
target 'rn_basisTests' do
inherit! :complete
# Pods for testing
end
use_native_modules!
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
add_flipper_pods!
post_install do |installer|
flipper_post_install(installer)
end
end
target 'rn_basis-tvOS' do
# Pods for rn_basis-tvOS
target 'rn_basis-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00E356F31AD99517003FC87E /* rn_basisTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* rn_basisTests.m */; };
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2DCD954D1E0B4F2C00145EB5 /* rn_basisTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* rn_basisTests.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
remoteInfo = rn_basis;
};
2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
remoteInfo = "rn_basis-tvOS";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
00E356EE1AD99517003FC87E /* rn_basisTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = rn_basisTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
00E356F21AD99517003FC87E /* rn_basisTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = rn_basisTests.m; sourceTree = "<group>"; };
13B07F961A680F5B00A75B9A /* rn_basis.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = rn_basis.app; sourceTree = BUILT_PRODUCTS_DIR; };
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = rn_basis/AppDelegate.h; sourceTree = "<group>"; };
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = rn_basis/AppDelegate.m; sourceTree = "<group>"; };
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = rn_basis/Images.xcassets; sourceTree = "<group>"; };
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = rn_basis/Info.plist; sourceTree = "<group>"; };
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = rn_basis/main.m; sourceTree = "<group>"; };
2D02E47B1E0B4A5D006451C7 /* rn_basis-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "rn_basis-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
2D02E4901E0B4A5D006451C7 /* rn_basis-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "rn_basis-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
00E356EB1AD99517003FC87E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
00E356EF1AD99517003FC87E /* rn_basisTests */ = {
isa = PBXGroup;
children = (
00E356F21AD99517003FC87E /* rn_basisTests.m */,
00E356F01AD99517003FC87E /* Supporting Files */,
);
path = rn_basisTests;
sourceTree = "<group>";
};
00E356F01AD99517003FC87E /* Supporting Files */ = {
isa = PBXGroup;
children = (
00E356F11AD99517003FC87E /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
13B07FAE1A68108700A75B9A /* rn_basis */ = {
isa = PBXGroup;
children = (
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
13B07FB01A68108700A75B9A /* AppDelegate.m */,
13B07FB51A68108700A75B9A /* Images.xcassets */,
13B07FB61A68108700A75B9A /* Info.plist */,
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
13B07FB71A68108700A75B9A /* main.m */,
);
name = rn_basis;
sourceTree = "<group>";
};
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
isa = PBXGroup;
children = (
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
isa = PBXGroup;
children = (
);
name = Libraries;
sourceTree = "<group>";
};
83CBB9F61A601CBA00E9B192 = {
isa = PBXGroup;
children = (
13B07FAE1A68108700A75B9A /* rn_basis */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
00E356EF1AD99517003FC87E /* rn_basisTests */,
83CBBA001A601CBA00E9B192 /* Products */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
);
indentWidth = 2;
sourceTree = "<group>";
tabWidth = 2;
usesTabs = 0;
};
83CBBA001A601CBA00E9B192 /* Products */ = {
isa = PBXGroup;
children = (
13B07F961A680F5B00A75B9A /* rn_basis.app */,
00E356EE1AD99517003FC87E /* rn_basisTests.xctest */,
2D02E47B1E0B4A5D006451C7 /* rn_basis-tvOS.app */,
2D02E4901E0B4A5D006451C7 /* rn_basis-tvOSTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
00E356ED1AD99517003FC87E /* rn_basisTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "rn_basisTests" */;
buildPhases = (
00E356EA1AD99517003FC87E /* Sources */,
00E356EB1AD99517003FC87E /* Frameworks */,
00E356EC1AD99517003FC87E /* Resources */,
);
buildRules = (
);
dependencies = (
00E356F51AD99517003FC87E /* PBXTargetDependency */,
);
name = rn_basisTests;
productName = rn_basisTests;
productReference = 00E356EE1AD99517003FC87E /* rn_basisTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
13B07F861A680F5B00A75B9A /* rn_basis */ = {
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "rn_basis" */;
buildPhases = (
FD10A7F022414F080027D42C /* Start Packager */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = rn_basis;
productName = rn_basis;
productReference = 13B07F961A680F5B00A75B9A /* rn_basis.app */;
productType = "com.apple.product-type.application";
};
2D02E47A1E0B4A5D006451C7 /* rn_basis-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn_basis-tvOS" */;
buildPhases = (
FD10A7F122414F3F0027D42C /* Start Packager */,
2D02E4771E0B4A5D006451C7 /* Sources */,
2D02E4781E0B4A5D006451C7 /* Frameworks */,
2D02E4791E0B4A5D006451C7 /* Resources */,
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
);
buildRules = (
);
dependencies = (
);
name = "rn_basis-tvOS";
productName = "rn_basis-tvOS";
productReference = 2D02E47B1E0B4A5D006451C7 /* rn_basis-tvOS.app */;
productType = "com.apple.product-type.application";
};
2D02E48F1E0B4A5D006451C7 /* rn_basis-tvOSTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn_basis-tvOSTests" */;
buildPhases = (
2D02E48C1E0B4A5D006451C7 /* Sources */,
2D02E48D1E0B4A5D006451C7 /* Frameworks */,
2D02E48E1E0B4A5D006451C7 /* Resources */,
);
buildRules = (
);
dependencies = (
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
);
name = "rn_basis-tvOSTests";
productName = "rn_basis-tvOSTests";
productReference = 2D02E4901E0B4A5D006451C7 /* rn_basis-tvOSTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
83CBB9F71A601CBA00E9B192 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1130;
TargetAttributes = {
00E356ED1AD99517003FC87E = {
CreatedOnToolsVersion = 6.2;
TestTargetID = 13B07F861A680F5B00A75B9A;
};
13B07F861A680F5B00A75B9A = {
LastSwiftMigration = 1120;
};
2D02E47A1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
ProvisioningStyle = Automatic;
};
2D02E48F1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
ProvisioningStyle = Automatic;
TestTargetID = 2D02E47A1E0B4A5D006451C7;
};
};
};
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "rn_basis" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 83CBB9F61A601CBA00E9B192;
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
13B07F861A680F5B00A75B9A /* rn_basis */,
00E356ED1AD99517003FC87E /* rn_basisTests */,
2D02E47A1E0B4A5D006451C7 /* rn_basis-tvOS */,
2D02E48F1E0B4A5D006451C7 /* rn_basis-tvOSTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
00E356EC1AD99517003FC87E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8E1A680F5B00A75B9A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4791E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48E1E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
};
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native Code And Images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
};
FD10A7F022414F080027D42C /* Start Packager */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
name = "Start Packager";
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
showEnvVarsInLog = 0;
};
FD10A7F122414F3F0027D42C /* Start Packager */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
name = "Start Packager";
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
00E356EA1AD99517003FC87E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
00E356F31AD99517003FC87E /* rn_basisTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F871A680F5B00A75B9A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
13B07FC11A68108700A75B9A /* main.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4771E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48C1E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2DCD954D1E0B4F2C00145EB5 /* rn_basisTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 13B07F861A680F5B00A75B9A /* rn_basis */;
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
};
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 2D02E47A1E0B4A5D006451C7 /* rn_basis-tvOS */;
targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
13B07FB21A68108700A75B9A /* Base */,
);
name = LaunchScreen.xib;
path = rn_basis;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
00E356F61AD99517003FC87E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = rn_basisTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
"$(inherited)",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn_basis.app/rn_basis";
};
name = Debug;
};
00E356F71AD99517003FC87E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
COPY_PHASE_STRIP = NO;
INFOPLIST_FILE = rn_basisTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
"$(inherited)",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn_basis.app/rn_basis";
};
name = Release;
};
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1;
ENABLE_BITCODE = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
"FB_SONARKIT_ENABLED=1",
);
INFOPLIST_FILE = rn_basis/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = rn_basis;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = rn_basis/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = rn_basis;
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
2D02E4971E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "rn_basis-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.rn_basis-tvOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Debug;
};
2D02E4981E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "rn_basis-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.rn_basis-tvOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Release;
};
2D02E4991E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "rn_basis-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.rn_basis-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn_basis-tvOS.app/rn_basis-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Debug;
};
2D02E49A1E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "rn_basis-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.rn_basis-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn_basis-tvOS.app/rn_basis-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Release;
};
83CBBA201A601CBA00E9B192 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
LIBRARY_SEARCH_PATHS = (
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
name = Debug;
};
83CBBA211A601CBA00E9B192 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
LIBRARY_SEARCH_PATHS = (
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "rn_basisTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
00E356F61AD99517003FC87E /* Debug */,
00E356F71AD99517003FC87E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "rn_basis" */ = {
isa = XCConfigurationList;
buildConfigurations = (
13B07F941A680F5B00A75B9A /* Debug */,
13B07F951A680F5B00A75B9A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn_basis-tvOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4971E0B4A5E006451C7 /* Debug */,
2D02E4981E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn_basis-tvOSTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4991E0B4A5E006451C7 /* Debug */,
2D02E49A1E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "rn_basis" */ = {
isa = XCConfigurationList;
buildConfigurations = (
83CBBA201A601CBA00E9B192 /* Debug */,
83CBBA211A601CBA00E9B192 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
}
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1130"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "rn_basis-tvOS.app"
BlueprintName = "rn_basis-tvOS"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E48F1E0B4A5D006451C7"
BuildableName = "rn_basis-tvOSTests.xctest"
BlueprintName = "rn_basis-tvOSTests"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "rn_basis-tvOS.app"
BlueprintName = "rn_basis-tvOS"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "rn_basis-tvOS.app"
BlueprintName = "rn_basis-tvOS"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1130"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "rn_basis.app"
BlueprintName = "rn_basis"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
BuildableName = "rn_basisTests.xctest"
BlueprintName = "rn_basisTests"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "rn_basis.app"
BlueprintName = "rn_basis"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "rn_basis.app"
BlueprintName = "rn_basis"
ReferencedContainer = "container:rn_basis.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate>
@property (nonatomic, strong) UIWindow *window;
@end
#import "AppDelegate.h"
#import <React/RCTBridge.h>
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>
#if DEBUG
#import <FlipperKit/FlipperClient.h>
#import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
#import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
#import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>
static void InitializeFlipper(UIApplication *application) {
FlipperClient *client = [FlipperClient sharedClient];
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
[client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
[client addPlugin:[FlipperKitReactPlugin new]];
[client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
[client start];
}
#endif
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
#if DEBUG
InitializeFlipper(application);
#endif
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:@"rn_basis"
initialProperties:nil];
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
UIViewController *rootViewController = [UIViewController new];
rootViewController.view = rootView;
self.window.rootViewController = rootViewController;
[self.window makeKeyAndVisible];
return YES;
}
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
#if DEBUG
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
#else
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
#endif
}
@end
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14D136" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB">
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
<rect key="frame" x="20" y="439" width="441" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="rn_basis" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
<rect key="frame" x="20" y="140" width="441" height="43"/>
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
<constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
<constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
<constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
<constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
<constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
</constraints>
<nil key="simulatedStatusBarMetrics"/>
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
<point key="canvasLocation" x="548" y="455"/>
</view>
</objects>
</document>
{
"images" : [
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
\ No newline at end of file
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>rn_basis</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import <React/RCTLog.h>
#import <React/RCTRootView.h>
#define TIMEOUT_SECONDS 600
#define TEXT_TO_LOOK_FOR @"Welcome to React"
@interface rn_basisTests : XCTestCase
@end
@implementation rn_basisTests
- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
{
if (test(view)) {
return YES;
}
for (UIView *subview in [view subviews]) {
if ([self findSubviewInView:subview matching:test]) {
return YES;
}
}
return NO;
}
- (void)testRendersWelcomeScreen
{
UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
BOOL foundElement = NO;
__block NSString *redboxError = nil;
#ifdef DEBUG
RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
if (level >= RCTLogLevelError) {
redboxError = message;
}
});
#endif
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
return YES;
}
return NO;
}];
}
#ifdef DEBUG
RCTSetLogFunction(RCTDefaultLogFunction);
#endif
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
}
@end
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/
module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
};
This diff could not be displayed because it is too large.
{
"name": "xbd-app",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.4.4",
"@react-navigation/native": "^5.3.2",
"@react-navigation/stack": "^5.3.5",
"@rematch/core": "^1.4.0",
"axios": "^0.19.2",
"js-sha256": "^0.9.0",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-device-info": "^5.5.8",
"react-native-gesture-handler": "^1.6.1",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^1.0.0",
"react-native-screens": "^2.7.0",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^7.2.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.58.0",
"mockjs": "^1.1.0",
"react-test-renderer": "16.11.0"
},
"jest": {
"preset": "react-native"
}
}
import { FETCH } from '../libs/fetch'
export const shoppingList = () => {
return FETCH.request({
url: 'mall/goodsInfo/getPageList',
method: 'get'
})
}
\ No newline at end of file
import { FETCH } from '../libs/fetch'
import sha256 from 'js-sha256'
/**
* 登陆
* @param {*} loginAccount
* @param {*} loginPassword
* @param {*} operationChannel
*/
export const login = (loginAccount, loginPassword, operationChannel = 0, applyPlatform = [0], applyCarrier = [0]) => {
loginPassword = sha256(loginPassword)
return FETCH.request({
url: '/user/sysLogin/login',
method: 'POST',
data: { loginAccount, loginPassword, operationChannel, applyPlatform, applyCarrier }
})
}
\ No newline at end of file
No preview for this file type
<?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 xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="xbd" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="896" descent="-128" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="0" d="" />
<glyph unicode="&#xe601;" glyph-name="btn_end_dis" d="M711.111 99.556c-31.419 0-56.889 25.47-56.889 56.889v0 455.111c0 31.419 25.47 56.889 56.889 56.889s56.889-25.47 56.889-56.889v0-455.111c0-31.419-25.47-56.889-56.889-56.889v0zM269.198 184.604c-8.206 9.787-13.192 22.515-13.198 36.407v325.974c0.012 31.41 25.478 56.868 56.889 56.868 13.891 0 26.62-4.979 36.498-13.249l-0.089 0.073 195.584-162.987c12.538-10.508 20.454-26.175 20.454-43.691s-7.916-33.183-20.366-43.619l-0.088-0.072-195.584-162.987c-9.789-8.197-22.516-13.175-36.407-13.175-17.517 0-33.185 7.917-43.621 20.368l-0.072 0.089z" />
<glyph unicode="&#xe602;" glyph-name="btn_home_dis" d="M312.889 668.444c31.419 0 56.889-25.47 56.889-56.889v0-455.111c0-31.419-25.47-56.889-56.889-56.889s-56.889 25.47-56.889 56.889v0 455.111c0 31.419 25.47 56.889 56.889 56.889v0zM754.802 583.396c8.206-9.787 13.192-22.515 13.198-36.407v-325.974c-0.012-31.41-25.478-56.868-56.889-56.868-13.891 0-26.62 4.979-36.498 13.249l0.089-0.073-195.584 162.987c-12.538 10.508-20.454 26.175-20.454 43.691s7.916 33.183 20.366 43.619l0.088 0.072 195.584 162.987c9.789 8.197 22.516 13.175 36.407 13.175 17.517 0 33.185-7.917 43.621-20.368l0.072-0.089z" />
<glyph unicode="&#xe603;" glyph-name="Excelchanggui" d="M796.444 896l227.556-227.556v-739.556c0-31.419-25.47-56.889-56.889-56.889v0h-739.556c-31.419 0-56.889 25.47-56.889 56.889v0 170.667h56.889v-142.222c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h682.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v654.222h-170.667c-31.419 0-56.889 25.47-56.889 56.889v0 170.667h-483.556c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-142.222h-56.889v170.667c0 31.419 25.47 56.889 56.889 56.889v0h568.889zM568.889 440.889v-341.333c0-31.419-25.47-56.889-56.889-56.889v0h-227.556v56.889h199.111c15.709 0 28.444 12.735 28.444 28.444v0 312.889h56.889zM881.778 99.556c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-227.556c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h227.556zM398.222 611.556c31.419 0 56.889-25.47 56.889-56.889v0-341.333c0-31.419-25.47-56.889-56.889-56.889h-341.333c-31.419 0-56.889 25.47-56.889 56.889v0 341.333c0 31.419 25.47 56.889 56.889 56.889v0h341.333zM155.989 554.667h-94.72l119.182-168.903-123.563-172.43h91.989l78.393 117.191 80.043-117.191h90.908l-123.051 172.43 123.051 168.903h-93.639l-77.312-112.583-71.282 112.583zM881.778 270.222c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-227.556c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h227.556zM881.778 440.889c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-227.556c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h227.556zM597.333 782.222c15.709 0 28.444-12.735 28.444-28.444v0-56.889c0-15.709-12.735-28.444-28.444-28.444h-227.556c-15.709 0-28.444 12.735-28.444 28.444v56.889c0 15.709 12.735 28.444 28.444 28.444h227.556z" />
<glyph unicode="&#xe604;" glyph-name="eyebukejian" d="M512 412.444c-24.235-24.462-134.030 37.433-134.030 0 0-74.866 59.961-135.566 134.030-135.566s134.030 60.7 134.030 135.566c0 64.74-43.236 135.566-134.030 135.566-36.978 0 24.235-111.047 0-135.566zM512 782.222c-234.496 0-434.517-153.828-512-369.778 77.483-215.95 277.504-369.778 512-369.778s434.517 153.828 512 369.778c-77.483 215.95-277.504 369.778-512 369.778zM512 178.233c-127.886 0-231.652 104.789-231.652 234.212s103.765 234.212 231.652 234.212 231.652-104.903 231.652-234.212c0-129.308-103.765-234.212-231.652-234.212z" />
<glyph unicode="&#xe605;" glyph-name="norblack" d="M466.489 217.145l-227.556 303.388c-7.103 9.389-11.378 21.262-11.378 34.133 0 31.419 25.47 56.889 56.889 56.889h455.111c31.419 0 56.889-25.47 56.889-56.889 0-12.871-4.275-24.744-11.481-34.276l0.104 0.143-227.556-303.388c-10.489-13.879-26.963-22.756-45.511-22.756s-35.022 8.876-45.407 22.612l-0.104 0.143z" />
<glyph unicode="&#xe606;" glyph-name="eye" d="M1024 373.419c-77.483 212.651-277.504 364.316-512 364.316-0.168 0-0.366 0-0.564 0-85.598 0-166.481-20.189-238.147-56.065l3.077 1.395-156.615 156.046-68.892-68.722 140.117-139.662c-86.104-64.92-152.090-152.277-189.713-253.431l-1.263-3.877c77.483-212.764 277.504-364.316 512-364.316 0.102 0 0.222 0 0.343 0 88.862 0 172.66 21.686 246.388 60.055l-2.962-1.403 139.321-138.866 68.892 68.722-124.018 123.563c82.72 64.387 146.203 149.839 182.775 248.367l1.261 3.878zM512 142.62c-127.886 0-231.652 103.31-231.652 230.684 0 47.73 14.507 92.046 39.424 128.853l127.317-126.919c-34.645 8.647-69.234 18.773-69.234-1.934 0.065-73.848 59.945-133.689 133.803-133.689 0.080 0 0.16 0 0.24 0h-0.012c20.821 0 40.448 4.722 57.97 13.141l71.168-70.94c-36.074-24.584-80.616-39.254-128.584-39.254-0.155 0-0.309 0-0.464 0h0.024zM708.892 251.847l-72.306 72.135c6.030 15.246 9.444 31.972 9.444 49.436 0 63.772-43.236 133.632-134.030 133.632-17.465 0-13.028-24.462-6.030-52.736l-115.826 115.257c34.569 21.71 76.594 34.589 121.627 34.589 0.080 0 0.161 0 0.241 0h-0.013c127.886 0 231.652-103.31 231.652-230.684 0-44.658-12.686-86.244-34.702-121.572z" />
<glyph unicode="&#xe607;" glyph-name="norblack2" d="M345.145 429.511l303.388 227.556c9.389 7.103 21.262 11.378 34.133 11.378 31.419 0 56.889-25.47 56.889-56.889v-455.111c0-31.419-25.47-56.889-56.889-56.889-12.871 0-24.744 4.275-34.276 11.481l0.143-0.104-303.388 227.556c-13.879 10.489-22.756 26.963-22.756 45.511s8.876 35.022 22.612 45.407l0.143 0.104z" />
<glyph unicode="&#xe608;" glyph-name="norblack3" d="M678.855 338.489l-303.388-227.556c-9.389-7.103-21.262-11.378-34.133-11.378-31.419 0-56.889 25.47-56.889 56.889v0 455.111c0 31.419 25.47 56.889 56.889 56.889 12.871 0 24.744-4.275 34.276-11.481l-0.143 0.104 303.388-227.556c13.879-10.489 22.756-26.963 22.756-45.511s-8.876-35.022-22.612-45.407l-0.143-0.104z" />
<glyph unicode="&#xe609;" glyph-name="norblack4" d="M557.511 550.855l227.556-303.388c7.103-9.389 11.378-21.262 11.378-34.133 0-31.419-25.47-56.889-56.889-56.889h-455.111c-31.419 0-56.889 25.47-56.889 56.889 0 12.871 4.275 24.744 11.481 34.276l-0.104-0.143 227.556 303.388c10.489 13.879 26.963 22.756 45.511 22.756s35.022-8.876 45.407-22.612l0.104-0.143z" />
<glyph unicode="&#xe60a;" glyph-name="caiwu" d="M796.444 782.222c0.011 0 0.023 0 0.036 0 59.835 0 108.882-46.187 113.433-104.854l0.024-0.39 0.284-8.533v-568.889c0-0.011 0-0.023 0-0.036 0-59.835-46.187-108.882-104.854-113.433l-0.39-0.024-8.533-0.284h-512c-0.011 0-0.023 0-0.036 0-59.835 0-108.882 46.187-113.433 104.854l-0.024 0.39-0.284 8.533v56.889c-31.419 0-56.889 25.47-56.889 56.889v0 56.889c0.004 29.070 21.812 53.046 49.96 56.464l0.273 0.027 6.656 0.398v113.778c-31.419 0-56.889 25.47-56.889 56.889v0 56.889c0.004 29.070 21.812 53.046 49.96 56.464l0.273 0.027 6.656 0.398v56.889c0 0.011 0 0.023 0 0.036 0 59.835 46.187 108.882 104.854 113.433l0.39 0.024 8.533 0.284h512zM796.444 725.333h-512c-31.419 0-56.889-25.47-56.889-56.889v0-568.889c0-31.419 25.47-56.889 56.889-56.889h512c31.419 0 56.889 25.47 56.889 56.889v0 568.889c0 31.419-25.47 56.889-56.889 56.889v0zM704.91 649.842c6.694-5.156 10.965-13.173 10.965-22.189 0-6.404-2.155-12.305-5.78-17.017l0.049 0.066-1.65-1.934-106.439-115.769h108.601c15.976 0 28.928-12.952 28.928-28.928s-12.952-28.928-28.928-28.928v0h-139.492v-86.471h137.614c0.002 0 0.003 0 0.005 0 15.961 0 28.9-12.939 28.9-28.9s-12.939-28.9-28.9-28.9c-0.002 0-0.004 0-0.006 0h-137.614v-148.252c-0.739-16.913-14.63-30.345-31.659-30.345s-30.919 13.432-31.656 30.278l-0.002 0.067v148.196h-137.557c-15.43 0.706-27.673 13.387-27.673 28.928s12.243 28.222 27.61 28.926l0.063 0.002h137.557v86.528h-135.794c-0.383-0.018-0.832-0.028-1.283-0.028-15.992 0-28.956 12.964-28.956 28.956s12.964 28.956 28.956 28.956c0.451 0 0.9-0.010 1.346-0.031l-0.063 0.002h103.538l-106.553 115.655c-4.565 4.956-7.364 11.601-7.364 18.898 0 9.008 4.264 17.019 10.883 22.127l0.065 0.048c5.568 4.293 12.643 6.881 20.322 6.881 9.728 0 18.487-4.153 24.599-10.783l0.021-0.023 121.23-131.755 121.173 131.755c6.135 6.673 14.907 10.839 24.651 10.839 7.666 0 14.729-2.578 20.37-6.915l-0.079 0.058z" />
<glyph unicode="&#xe60b;" glyph-name="dayinchanggui2" d="M711.111 384c15.709 0 28.444-12.735 28.444-28.444v0-398.222c0-15.709-12.735-28.444-28.444-28.444h-398.222c-15.709 0-28.444 12.735-28.444 28.444v398.222c0 15.709 12.735 28.444 28.444 28.444h398.222zM853.333 668.444c62.838 0 113.778-50.94 113.778-113.778v0-284.444c0-31.419-25.47-56.889-56.889-56.889h-113.778v170.667c-0.004 29.070-21.812 53.046-49.96 56.464l-0.273 0.027-6.656 0.398h-455.111c-29.070-0.004-53.046-21.812-56.464-49.96l-0.027-0.273-0.398-6.656v-170.667h-113.778c-31.419 0-56.889 25.47-56.889 56.889v0 284.444c0 62.838 50.94 113.778 113.778 113.778v0h682.667zM768 554.667h-113.778c-0.016 0-0.034 0-0.052 0-15.709 0-28.444-12.735-28.444-28.444 0-13.918 9.996-25.501 23.201-27.962l0.176-0.027 5.12-0.455h113.778c15.709 0 28.444 12.735 28.444 28.444s-12.735 28.444-28.444 28.444v0zM256 554.667c-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444v0c15.709 0 28.444 12.735 28.444 28.444s-12.735 28.444-28.444 28.444v0zM369.778 554.667c-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444v0c15.709 0 28.444 12.735 28.444 28.444s-12.735 28.444-28.444 28.444v0zM739.556 839.111c31.419 0 56.889-25.47 56.889-56.889v0-56.889h-568.889v56.889c0 31.419 25.47 56.889 56.889 56.889h455.111z" />
<glyph unicode="&#xe60c;" glyph-name="dingwei" d="M512 896c251.335 0 455.111-182.67 455.111-407.893 0-346.738-455.111-616.107-455.111-616.107l-13.653 7.509c-75.662 43.008-441.458 268.629-441.458 608.54 0 225.337 203.719 407.95 455.111 407.95zM510.293-61.611l25.771 17.522 13.767 9.785c51.2 36.807 102.4 78.791 149.959 125.156 132.38 128.626 210.432 263.964 210.432 397.141 0 192.455-177.038 351.118-398.222 351.118-221.298 0-398.222-158.663-398.222-351.004 0-147.57 77.767-285.184 209.579-408.747 55.216-51.609 116.416-98.167 182.050-138.171l4.944-2.8zM398.222 497.778c0-62.838 50.94-113.778 113.778-113.778s113.778 50.94 113.778 113.778v0c0 62.838-50.94 113.778-113.778 113.778s-113.778-50.94-113.778-113.778v0z" />
<glyph unicode="&#xe60d;" glyph-name="fenlei" d="M398.222 327.111c31.419 0 56.889-25.47 56.889-56.889v0-227.556c0-31.419-25.47-56.889-56.889-56.889h-227.556c-31.419 0-56.889 25.47-56.889 56.889v0 227.556c0 31.419 25.47 56.889 56.889 56.889v0h227.556zM853.333 327.111c31.419 0 56.889-25.47 56.889-56.889v0-227.556c0-31.419-25.47-56.889-56.889-56.889h-227.556c-31.419 0-56.889 25.47-56.889 56.889v0 227.556c0 31.419 25.47 56.889 56.889 56.889v0h227.556zM369.778 270.222h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-170.667c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h170.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v170.667c0 15.709-12.735 28.444-28.444 28.444v0zM824.889 270.222h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-170.667c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h170.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v170.667c0 15.709-12.735 28.444-28.444 28.444v0zM398.222 782.222c31.419 0 56.889-25.47 56.889-56.889v0-227.556c0-31.419-25.47-56.889-56.889-56.889v0h-227.556c-31.419 0-56.889 25.47-56.889 56.889v0 227.556c0 31.419 25.47 56.889 56.889 56.889v0h227.556zM739.556 782.222c94.251-0.007 170.654-76.415 170.654-170.667s-76.403-170.659-170.653-170.667h-170.667v170.667c0 94.257 76.41 170.667 170.667 170.667v0zM369.778 725.333h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-170.667c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h170.667c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v170.667c0 15.709-12.735 28.444-28.444 28.444v0zM739.556 725.333c-0.011 0-0.023 0-0.036 0-59.835 0-108.882-46.187-113.433-104.854l-0.024-0.39-0.284-8.533v-113.778h113.778c0.003 0 0.007 0 0.011 0 62.838 0 113.778 50.94 113.778 113.778s-50.94 113.778-113.778 113.778c-0.004 0-0.007 0-0.011 0v0z" />
<glyph unicode="&#xe60e;" glyph-name="dingwei2" d="M512 896c251.335 0 455.111-182.67 455.111-407.893 0-346.738-455.111-616.107-455.111-616.107s-455.111 236.942-455.111 616.107c0 225.166 203.719 407.893 455.111 407.893zM682.667 497.778c0 94.257-76.41 170.667-170.667 170.667s-170.667-76.41-170.667-170.667v0c0-94.257 76.41-170.667 170.667-170.667s170.667 76.41 170.667 170.667v0z" />
<glyph unicode="&#xe60f;" glyph-name="dayinchanggui" d="M739.556 839.111c31.419 0 56.889-25.47 56.889-56.889v0-113.778h56.889c62.838 0 113.778-50.94 113.778-113.778v0-284.444c0-31.419-25.47-56.889-56.889-56.889v0h-113.778v-227.556c0-31.419-25.47-56.889-56.889-56.889h-455.111c-31.419 0-56.889 25.47-56.889 56.889v227.556h-113.778c-31.419 0-56.889 25.47-56.889 56.889v0 284.444c0 62.838 50.94 113.778 113.778 113.778v0h56.889v113.778c0 31.419 25.47 56.889 56.889 56.889h455.111zM711.111 384h-398.222c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-341.333c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h398.222c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v341.333c0 15.709-12.735 28.444-28.444 28.444v0zM853.333 611.556h-682.667c-29.070-0.004-53.046-21.812-56.464-49.96l-0.027-0.273-0.398-6.656v-256c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h85.333v113.778c0 31.419 25.47 56.889 56.889 56.889h455.111c31.419 0 56.889-25.47 56.889-56.889v-113.778h85.333c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v256c0 31.419-25.47 56.889-56.889 56.889v0zM768 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778zM256 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0zM369.778 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0zM711.111 782.222h-398.222c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-85.333h455.111v85.333c0 0.003 0 0.006 0 0.009 0 13.899-9.969 25.47-23.148 27.952l-0.177 0.028-5.12 0.455z" />
<glyph unicode="&#xe610;" glyph-name="guanbi2" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM652.8 565.020l40.22-40.22-140.8-140.8 140.8-140.8-40.22-40.22-140.8 140.8-140.8-140.8-40.22 40.22 140.8 140.8-140.8 140.8 40.22 40.22 140.8-140.8 140.8 140.8z" />
<glyph unicode="&#xe611;" glyph-name="fenxiangchanggui" d="M540.444 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-28.444c-219.929-0.004-398.216-178.292-398.216-398.222 0-219.932 178.29-398.222 398.222-398.222 215.13 0 390.417 170.59 397.969 383.878l0.019 0.691 0.228 13.653v28.444c0 15.709 12.735 28.444 28.444 28.444s28.444-12.735 28.444-28.444v-28.444c0-251.351-203.76-455.111-455.111-455.111s-455.111 203.76-455.111 455.111c0 251.351 203.76 455.111 455.111 455.111h28.444zM910.222 839.111c31.419 0 56.889-25.47 56.889-56.889v0-199.111c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 152.86l-508.587-508.587c-5.214-5.644-12.653-9.167-20.915-9.167-15.709 0-28.444 12.735-28.444 28.444 0 8.276 3.534 15.727 9.176 20.924l0.020 0.018 514.503 514.617h-164.864c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h199.111z" />
<glyph unicode="&#xe612;" glyph-name="guanbi" d="M512 426.667l298.667 298.667 42.667-42.667-298.667-298.667 298.667-298.667-42.667-42.667-298.667 298.667-298.667-298.667-42.667 42.667 298.667 298.667-298.667 298.667 42.667 42.667z" />
<glyph unicode="&#xe613;" glyph-name="fenbo" d="M232.164 388.949l175.275-104.505v-199.111l-2.844-4.949-178.062-99.556-175.332 104.505v199.111l2.844 4.949 172.43 99.556h5.689zM801.052 388.949l175.275-104.505v-199.111l-2.844-4.949-178.062-99.556-175.332 104.505v199.111l2.844 4.949 172.43 99.556h5.689zM459.662 74.98l55.922-32.313 52.224 30.208 49.266-28.444-101.49-58.652-105.244 60.757 49.323 28.444zM798.208 320.569l-117.532-67.868-2.788-133.973 117.476-71.111 120.377 69.461 2.844 133.973-120.377 69.518zM229.319 320.569l-117.532-67.868-2.788-133.973 120.32-69.518 117.532 67.868 2.844 133.973-120.377 69.518zM758.329 642.105l102.116-58.994v-167.14l-49.266 28.444v110.251l-52.85 30.549v56.889zM265.614 637.952v-56.832l-45.625-26.453v-106.098l-49.323-28.444v162.987l94.948 54.841zM516.608 844.060l175.275-104.505v-199.111l-2.844-4.949-178.062-99.556-175.332 104.505v199.111l2.844 4.949 172.43 99.556h5.689zM513.707 775.68l-117.419-64.569-2.844-137.273 117.476-71.111 120.377 69.461 2.844 133.973-120.434 69.518z" />
<glyph unicode="&#xe614;" glyph-name="gouwu" d="M859.307 896c0.001 0 0.003 0 0.004 0 29.214 0 53.285-22.021 56.519-50.37l0.024-0.262 101.148-910.222c0.22-1.878 0.345-4.053 0.345-6.258 0-31.419-25.47-56.889-56.889-56.889-0.001 0-0.003 0-0.004 0h-896.91c-0.001 0-0.003 0-0.004 0-31.419 0-56.889 25.47-56.889 56.889 0 2.205 0.125 4.38 0.369 6.519l-0.024-0.262 101.148 910.222c3.259 28.61 27.329 50.631 56.544 50.631 0.001 0 0.003 0 0.004 0h694.613zM838.656 839.111h-649.956c-12.871 0-23.746-8.549-27.255-20.279l-0.052-0.201-0.91-4.665-99.897-853.333c-0.123-0.992-0.193-2.14-0.193-3.305 0-13.907 9.981-25.483 23.17-27.956l0.176-0.027 5.12-0.455h846.393c0.020 0 0.043 0 0.066 0 15.029 0 27.335 11.655 28.374 26.42l0.005 0.090-0.171 5.12-96.597 853.333c-1.656 14.279-13.679 25.259-28.265 25.259-0.003 0-0.006 0-0.009 0v0zM419.385 182.215v-152.917c0-3.413 1.195-6.372 3.584-8.761 2.17-2.214 5.192-3.586 8.534-3.586 0.080 0 0.16 0.001 0.239 0.002h23.085l-15.132-34.247h-31.858c-0.173-0.003-0.376-0.004-0.581-0.004-11.801 0-22.461 4.882-30.072 12.736l-0.011 0.011c-7.865 7.621-12.747 18.282-12.747 30.083 0 0.204 0.001 0.408 0.004 0.611v-0.031 117.077h-23.097v39.026h78.052zM689.778 270.222v-38.628h-63.317v-203.093c0.001-0.090 0.001-0.197 0.001-0.305 0-6.091-1.32-11.874-3.69-17.077l0.105 0.258c-4.766-10.498-12.997-18.729-23.204-23.376l-0.291-0.119c-4.945-2.265-10.728-3.585-16.819-3.585-0.107 0-0.214 0-0.321 0.001h-65.292l17.522 39.822h23.495c0.068-0.001 0.147-0.002 0.227-0.002 3.342 0 6.364 1.372 8.532 3.584l0.002 0.002c2.22 2.24 3.591 5.324 3.591 8.728 0 0.152-0.003 0.302-0.008 0.453l0.001-0.022v194.731h-100.352v38.628h219.819zM406.244 269.028l28.672-64.114h-64.512l-28.672 63.317 64.512 0.796zM711.111 782.222c31.418-0.001 56.886-25.471 56.886-56.889 0-20.945-11.319-39.246-28.174-49.12l-0.268-0.145v-64.512c0-125.675-101.88-227.556-227.556-227.556s-227.556 101.88-227.556 227.556v0 64.512c-17.124 10.019-28.444 28.321-28.444 49.267 0 31.419 25.47 56.889 56.889 56.889s56.889-25.47 56.889-56.889c0-20.946-11.32-39.248-28.176-49.122l-0.268-0.145v-64.512c0-0.003 0-0.006 0-0.010 0-90.734 70.806-164.931 160.177-170.35l0.477-0.023 10.012-0.284c0.003 0 0.006 0 0.010 0 90.734 0 164.931 70.806 170.35 160.177l0.023 0.477 0.284 10.012v64.512c-17.123 10.020-28.442 28.321-28.442 49.266 0 31.418 25.469 56.887 56.886 56.889v0z" />
<glyph unicode="&#xe615;" glyph-name="gouwuche" d="M312.889 99.556c47.128 0 85.333-38.205 85.333-85.333s-38.205-85.333-85.333-85.333v0c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333v0zM824.889 99.556c47.128 0 85.333-38.205 85.333-85.333s-38.205-85.333-85.333-85.333v0c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333v0zM312.889 42.667c-0.388 0.019-0.843 0.030-1.3 0.030-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444c0.437 0 0.872 0.010 1.304 0.029l-0.061-0.002c15.165 0.684 27.201 13.145 27.201 28.417 0 15.252-12.005 27.701-27.081 28.412l-0.064 0.002zM824.889 42.667c-0.388 0.019-0.843 0.030-1.3 0.030-15.709 0-28.444-12.735-28.444-28.444s12.735-28.444 28.444-28.444c0.437 0 0.872 0.010 1.304 0.029l-0.061-0.002c15.165 0.684 27.201 13.145 27.201 28.417 0 15.252-12.005 27.701-27.081 28.412l-0.064 0.002zM20.48 831.147c0.027 0 0.058 0 0.090 0 2.287 0 4.486-0.375 6.54-1.066l-0.144 0.042 104.789-34.93c22.801-7.761 38.912-28.986 38.912-53.974 0-0.005 0-0.010 0-0.014v0.001-19.342l789.618-50.745c35.726-1.252 63.716-27.989 63.716-60.928v-326.997c0-38.571-34.133-69.86-75.89-69.86l-752.924 1.991c-8.76 0.064-17.189 1.369-25.157 3.747l0.637-0.163v-5.575c0-31.419 25.47-56.889 56.889-56.889v0h711.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-768c-31.419 0-56.889 25.47-56.889 56.889v0 546.816c0 0.004 0 0.009 0 0.014 0 24.988-16.111 46.213-38.512 53.855l-0.401 0.119-47.9 15.929c-15.803 5.398-26.965 20.118-26.965 37.445 0 0.016 0 0.032 0 0.048v-0.002c0 11.311 9.169 20.48 20.48 20.48v0zM172.373 668.444l-1.707-360.676c0-9.5 4.153-18.432 11.662-25.259 7.297-6.501 16.971-10.473 27.572-10.473 0.247 0 0.493 0.002 0.739 0.006l-0.037-0.001 721.692-1.82c19.172 0 34.816 13.767 34.816 30.549v298.439c0 12.117-10.923 22.073-24.69 22.414h-0.74l-769.308 46.82zM827.904 440.889c13.995 0 25.429-12.8 25.429-28.444s-11.435-28.444-25.429-28.444h-518.030c-14.052 0-25.429 12.8-25.429 28.444s11.435 28.444 25.429 28.444h518.030zM827.904 554.667c13.995 0 25.429-12.8 25.429-28.444s-11.435-28.444-25.429-28.444h-518.030c-14.052 0-25.429 12.8-25.429 28.444s11.435 28.444 25.429 28.444h518.030z" />
<glyph unicode="&#xe616;" glyph-name="guanbi3" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM670.379 587.662l-158.379-158.436-158.379 158.436-45.284-45.284 158.436-158.379-158.436-158.379 45.284-45.284 158.379 158.436 158.379-158.436 45.284 45.284-158.436 158.379 158.436 158.379-45.284 45.284z" />
<glyph unicode="&#xe617;" glyph-name="jianshao" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM768 415.972v-63.943h-512v63.943h512z" />
<glyph unicode="&#xe618;" glyph-name="jinggao" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM512 270.222c31.419 0 56.889-25.47 56.889-56.889s-25.47-56.889-56.889-56.889v0c-31.419 0-56.889 25.47-56.889 56.889s25.47 56.889 56.889 56.889v0zM512 611.556c28.421-0.017 51.455-23.061 51.455-51.484 0-1.803-0.093-3.585-0.274-5.34l0.018 0.22-19.911-199.509c-1.42-16.155-14.886-28.732-31.289-28.732s-29.869 12.576-31.28 28.613l-0.008 0.119-19.911 199.509c-0.163 1.535-0.255 3.317-0.255 5.12 0 28.424 23.034 51.468 51.454 51.484h0.002z" />
<glyph unicode="&#xe619;" glyph-name="jianshao2" d="M512 839.111c251.351 0 455.111-203.76 455.111-455.111s-203.76-455.111-455.111-455.111v0c-251.351 0-455.111 203.76-455.111 455.111s203.76 455.111 455.111 455.111v0zM739.556 412.444h-455.111v-56.889h455.111v56.889z" />
<glyph unicode="&#xe61a;" glyph-name="kucunguanliputong" d="M548.068 809.529l454.599-373.020c5.064-4.184 8.267-10.464 8.267-17.493s-3.203-13.31-8.229-17.463l-0.038-0.031c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046-49.835 40.846 0.057-456.59c0-31.419-25.47-56.889-56.889-56.889h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 456.59l-49.778-40.846c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046c-5.064 4.184-8.267 10.464-8.267 17.493s3.203 13.31 8.229 17.463l0.038 0.031 454.542 373.020c9.743 8.055 22.363 12.942 36.124 12.942s26.382-4.886 36.22-13.018l-0.096 0.077zM512 769.138l-341.333-280.178v-503.182h682.667v503.239l-341.333 280.121zM398.222 156.444v-113.778h-113.778v113.778h113.778zM568.889 156.444v-113.778h-113.778v113.778h113.778zM739.556 156.444v-113.778h-113.778v113.778h113.778zM398.222 327.111v-113.778h-113.778v113.778h113.778zM568.889 327.111v-113.778h-113.778v113.778h113.778zM398.222 497.778v-113.778h-113.778v113.778h113.778z" />
<glyph unicode="&#xe61b;" glyph-name="hezuo" horiz-adv-x="1025" d="M1007.673 532.252l-221.81 232.903c-10.059 10.542-24.218 17.097-39.908 17.097s-29.848-6.555-39.887-17.075l-0.021-0.022-30.948-32.484c-10.080-10.997-16.256-25.716-16.256-41.877 0-14.81 5.187-28.408 13.844-39.078l-0.091 0.115c-22.136-19.824-51.532-31.944-83.758-31.944-5.569 0-11.054 0.362-16.431 1.064l0.634-0.068c-6.003 0.793-12.944 1.246-19.992 1.246-28.071 0-54.463-7.184-77.44-19.814l0.834 0.42h-1.308l-76.060 10.24c-8.91 1.211-16.67 5.406-22.395 11.527l-25.279 26.531c8.795 10.625 14.131 24.392 14.131 39.405 0 16.143-6.169 30.845-16.277 41.878l0.042-0.046-31.004 32.484c-10.059 10.542-24.218 17.097-39.908 17.097s-29.848-6.555-39.887-17.075l-0.021-0.022-222.151-232.505c-10.104-10.995-16.297-25.724-16.297-41.899s6.193-30.903 16.337-41.943l-0.041 0.045 30.948-32.54c21.276-21.788 54.955-22.756 77.369-2.162l48.64-50.916c7.396-7.964 12.8-17.749 15.588-28.501 10.466-40.341 30.298-75.135 57.091-103.232l-0.088 0.093c-16.327-32.313-4.665-72.42 26.055-89.657 9.102-5.12 19.342-7.737 29.639-7.737-0.171-36.466 27.819-66.219 62.578-66.446h0.74c0.171-17.692 6.997-34.645 19.001-47.104 19.627-20.651 49.892-25.259 74.297-11.378l3.413-3.584c11.151-12.007 27.024-19.495 44.646-19.495 17.458 0 33.2 7.35 44.299 19.123l0.028 0.030c6.43 6.726 11.478 14.833 14.648 23.826l0.143 0.466 7.851-8.192c11.173-12.037 27.081-19.546 44.743-19.546s33.571 7.508 44.708 19.507l0.035 0.039c6.258 6.827 11.036 14.962 13.881 23.95l9.33-9.785c24.69-25.941 64.796-25.941 89.543 0 11.482 12.267 18.534 28.805 18.534 46.99s-7.052 34.723-18.57 47.029l0.036-0.038-9.33 9.785c8.533 3.186 16.27 8.363 22.585 15.189 12.117 12.288 18.944 29.184 19.058 46.876-0.057 10.524-2.56 20.821-7.225 30.151l3.584 3.982c24.69 25.6 41.472 58.539 48.071 94.379 5.234 28.331 18.489 54.329 38.059 74.581l9.671 10.24c9.814-9.185 23.043-14.825 37.59-14.825 15.629 0 29.737 6.511 39.76 16.968l0.019 0.019 30.948 32.54c9.762 10.91 15.729 25.394 15.729 41.271 0 16.176-6.194 30.905-16.339 41.945l0.041-0.045zM73.557 444.075l-31.004 31.744c-3.419 3.674-5.518 8.618-5.518 14.052s2.099 10.377 5.529 14.064l-0.012-0.013 222.379 233.643c3.383 3.814 8.296 6.205 13.767 6.205s10.384-2.391 13.751-6.186l0.017-0.019 29.468-32.54c3.647-3.721 5.898-8.823 5.898-14.45s-2.251-10.729-5.901-14.453l0.003 0.003-220.843-232.107c-3.384-3.833-8.309-6.237-13.796-6.237s-10.411 2.405-13.778 6.217l-0.017 0.020zM283.932 180.281c-4.995 5.162-8.074 12.206-8.074 19.968s3.079 14.806 8.081 19.976l-0.008-0.008c4.663 4.901 11.234 7.949 18.517 7.949s13.854-3.048 18.507-7.938l0.010-0.011c4.979-5.176 8.046-12.222 8.046-19.985 0-7.5-2.862-14.331-7.554-19.461l0.020 0.022c-4.712-5.186-11.483-8.428-19.012-8.428-7.282 0-13.856 3.034-18.526 7.907l-0.009 0.009zM347.193 113.835c-4.822 5.094-7.786 11.989-7.786 19.576 0 7.499 2.896 14.322 7.631 19.411l-0.016-0.017c4.686 5.014 11.338 8.139 18.721 8.139 0.158 0 0.316-0.001 0.474-0.004h-0.024c0.203 0.006 0.442 0.009 0.681 0.009 7.226 0 13.737-3.062 18.306-7.959l0.014-0.015c4.957-5.179 8.008-12.217 8.008-19.968s-3.051-14.789-8.018-19.979l0.010 0.011c-4.75-5.184-11.55-8.422-19.107-8.422-7.929 0-15.026 3.565-19.774 9.18l-0.031 0.038h0.91zM410.51 47.388c-5.048 5.139-8.164 12.189-8.164 19.968s3.116 14.829 8.168 19.972l-0.004-0.004c4.763 4.915 11.425 7.965 18.8 7.965 0.071 0 0.141 0 0.212-0.001h-0.011c14.33-0.704 25.682-12.494 25.682-26.935 0-0.411-0.009-0.82-0.027-1.226l0.002 0.058c0-0.034 0-0.074 0-0.114 0-14.79-11.957-26.787-26.732-26.851h-0.006c-7.065 0.183-13.391 3.201-17.91 7.954l-0.010 0.011v-0.796zM763.62 180.907c-4.794-5.010-11.534-8.124-19.001-8.124s-14.207 3.114-18.992 8.114l-0.009 0.010-192.853 203.321c-3.255 5.571-9.206 9.255-16.018 9.255-3.826 0-7.381-1.162-10.33-3.153l0.066 0.042c-5.337-3.761-8.781-9.898-8.781-16.839s3.444-13.078 8.716-16.796l0.065-0.043 242.745-255.602c4.828-5.087 7.797-11.979 7.797-19.564 0-0.142-0.001-0.284-0.003-0.425v0.021c0.004-0.17 0.006-0.371 0.006-0.572 0-7.514-2.973-14.334-7.808-19.348l0.008 0.008c-4.665-4.919-11.248-7.979-18.546-7.979s-13.88 3.060-18.535 7.967l-0.011 0.011-242.688 255.772c-2.879 1.939-6.425 3.095-10.241 3.095-6.828 0-12.792-3.702-15.994-9.208l-0.047-0.088c-1.847-3.047-2.94-6.729-2.94-10.667s1.093-7.62 2.992-10.76l-0.052 0.093 192.967-202.354c4.866-5.208 7.853-12.225 7.853-19.94s-2.987-14.731-7.869-19.956l0.016 0.017c-4.76-5.103-11.523-8.284-19.029-8.284s-14.27 3.181-19.015 8.269l-0.014 0.015-191.886 203.321c-2.87 1.922-6.401 3.068-10.2 3.068-6.817 0-12.773-3.69-15.979-9.181l-0.047-0.088c-1.847-3.047-2.94-6.729-2.94-10.667s1.093-7.62 2.992-10.76l-0.052 0.093 144.498-151.666c4.866-5.208 7.853-12.225 7.853-19.94s-2.987-14.731-7.869-19.956l0.016 0.017c-4.762-5.121-11.537-8.315-19.058-8.315s-14.296 3.194-19.043 8.299l-0.015 0.016-3.413 3.584c16.498 31.972 5.177 71.908-25.259 89.202-8.607 5.009-18.943 7.966-29.969 7.966-0.144 0-0.288-0.001-0.431-0.002h0.022c0.398 35.897-26.965 65.422-61.212 65.82h-2.105c0.853 36.466-26.624 66.788-61.326 67.698-0.414 0.010-0.902 0.016-1.392 0.016-10.971 0-21.261-2.919-30.134-8.023l0.294 0.156c-22.072 23.514-38.374 52.704-46.481 85.139l-0.282 1.332c-4.516 17.959-13.326 33.451-25.29 45.885l-48.438 50.599 174.080 182.784 25.088-26.283c11.947-12.402 27.307-20.309 43.918-22.585l39.14-5.177-93.525-98.19c-14.026-14.022-22.701-33.396-22.701-54.795 0-19.554 7.243-37.416 19.193-51.050l-0.076 0.089c12.704-14.651 31.346-23.862 52.139-23.862s39.434 9.212 52.066 23.777l0.073 0.086 62.919 66.048c11.378 11.776 27.307 17.408 43.179 15.36l216.292-226.987c5.006-5.348 7.737-12.516 7.566-20.025-0.055-7.393-2.922-14.107-7.583-19.133l0.017 0.018h0.91zM816.128 336.498c-5.558-29.196-19.045-54.6-38.117-74.643l0.058 0.061-1.308-1.422-146.944 153.828c18.66-5.063 37.774-7.851 57.060-8.363 0.314-0.020 0.682-0.031 1.052-0.031 9.928 0 17.977 8.049 17.977 17.977 0 0.351-0.010 0.7-0.030 1.046l0.002-0.048c0 11.036-8.533 19.911-19.001 19.911-38.072 1.166-73.379 12.006-103.849 30.13l0.994-0.547c-12.719 7.66-28.074 12.191-44.487 12.191-24.88 0-47.329-10.412-63.226-27.117l-0.034-0.036-62.919-66.048c-6.075-8.6-15.976-14.148-27.172-14.148-7.898 0-15.152 2.761-20.848 7.37l0.062-0.049c-8.215 6.852-13.405 17.092-13.405 28.543 0 11.658 5.378 22.060 13.789 28.86l0.070 0.055 94.948 99.84c28.501 29.582 68.38 43.804 108.146 38.457 6.049-0.803 13.044-1.261 20.145-1.261 42.196 0 80.614 16.176 109.391 42.666l-0.114-0.104 174.706-182.727-9.444-9.785c-23.893-25.376-40.757-57.622-47.329-93.467l-0.173-1.139zM982.016 476.217l-31.516-32.142c-3.384-3.833-8.309-6.237-13.796-6.237s-10.411 2.405-13.778 6.217l-0.017 0.020-220.843 232.050c-3.647 3.721-5.898 8.823-5.898 14.45s2.251 10.729 5.901 14.453l-0.003-0.003 31.004 32.54c3.383 3.814 8.296 6.205 13.767 6.205s10.384-2.391 13.751-6.186l0.017-0.019 220.843-233.643c7.396-7.794 7.396-20.366 0-28.103l0.569 0.398z" />
<glyph unicode="&#xe61c;" glyph-name="peisongqianshouputong" d="M756.338 782.222c20.172-0.002 37.892-10.504 47.991-26.338l0.137-0.23 162.645-257.877v-455.111c0-31.419-25.47-56.889-56.889-56.889h-796.444c-31.419 0-56.889 25.47-56.889 56.889v0 455.111l162.759 257.934c10.243 16.033 27.947 26.51 48.099 26.51 0.010 0 0.021 0 0.031 0h488.56zM910.222 462.279h-312.946l0.057-0.455v-77.824h-170.667v78.279h-312.889v-391.168c0-15.709 12.735-28.444 28.444-28.444h739.556c15.709 0 28.444 12.735 28.444 28.444v0 391.168zM813.056 384l40.277-38.343-258.276-246.101-0.171 0.114-0.114-0.114-139.662 133.063 40.277 38.343 99.556-94.834 218.055 207.872zM341.333 213.333v-56.889h-170.667v56.889h170.667zM455.111 327.111v-56.889h-284.444v56.889h284.444zM478.492 753.778h-189.042c0 0-0.001 0-0.001 0-10.634 0-19.905-5.835-24.786-14.478l-0.074-0.142-122.368-219.989h294.514l41.756 234.61zM739.214 753.778h-193.707l41.643-234.61h294.628l-117.476 219.591c-4.894 9.007-14.283 15.019-25.077 15.019-0.004 0-0.008 0-0.012 0h0.001z" />
<glyph unicode="&#xe61d;" glyph-name="lianxiren" d="M966.997 60.644v6.542-58.823l0.057-26.112v-10.809l0.057-42.553h-910.222v46.82l0.057 26.055v58.88c0 78.677 84.935 142.45 228.181 210.887 33.166 15.986 99.1 41.415 98.873 41.301 1.365 5.632-1.422 11.093-7.396 19.058-4.975 6.542-9.726 12.249-14.706 17.745l0.199-0.223-3.527 3.982c-1.576 1.799-3.994 4.631-6.392 7.48l-1.003 1.224c-6.346 7.386-12.659 15.524-18.563 23.97l-0.665 1.004c-42.098 61.554-55.068 126.578-55.068 200.135 0 97.337 35.897 167.14 97.166 209.749 41.358 28.786 90.965 42.155 127.431 42.155h21.049c36.466 0 86.073-13.369 127.431-42.098 61.269-42.667 97.166-112.469 97.166-209.806 0-73.614-12.914-138.581-55.068-200.192-6.565-9.448-12.879-17.586-19.575-25.387l0.346 0.413-7.396-8.59-3.527-4.039-3.356-3.868c-3.532-4.020-7.183-8.465-10.689-13.028l-0.461-0.625c-5.973-7.964-8.761-13.426-9.557-17.977 1.991-0.967 67.755-26.34 100.921-42.382 143.36-68.437 228.238-132.21 228.238-210.887zM895.204 19.456v41.188c0 36.523-73.444 91.648-187.449 146.091-29.81 14.393-95.46 39.765-98.645 41.244-28.274 13.483-43.349 32.825-43.349 63.26 0 23.211 8.533 42.837 24.178 63.772 3.982 5.348 8.249 10.524 14.165 17.408l13.767 15.929c6.087 7.282 10.809 13.312 14.905 19.342 32.085 46.876 42.496 99.1 42.496 159.516 0 73.956-24.519 121.685-66.332 150.756-28.444 19.797-63.716 29.298-86.471 29.298h-20.935c-22.756 0-58.027-9.5-86.471-29.298-41.813-29.070-66.332-76.8-66.332-150.756 0-60.359 10.411-112.64 42.496-159.573 4.096-5.973 8.818-12.004 14.905-19.228 3.072-3.698 14.848-17.237 13.767-15.986 5.916-6.827 10.183-12.060 14.222-17.408 15.644-20.878 24.121-40.562 24.121-63.772 0-30.436-15.076-49.778-43.349-63.26-3.129-1.479-68.836-26.852-98.645-41.244-114.005-54.443-187.392-109.568-187.392-146.091v-58.937c0-0.171 255.431-0.569 766.293-0.967v18.716z" />
<glyph unicode="&#xe61e;" glyph-name="jichuxinxiguanliputong" d="M938.667 199.111c5.235-2.682 8.755-8.041 8.755-14.222s-3.521-11.54-8.666-14.18l-0.090-0.042-401.237-200.59c-7.409-3.783-16.16-6-25.429-6s-18.020 2.217-25.753 6.149l0.323-0.149-401.237 200.59c-5.235 2.682-8.755 8.041-8.755 14.222s3.521 11.54 8.666 14.18l0.090 0.042c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167 357.035-178.517c3.712-1.9 8.097-3.014 12.743-3.014s9.031 1.114 12.904 3.089l-0.161-0.075 357.035 178.517c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167zM938.667 369.778c5.235-2.682 8.755-8.041 8.755-14.222s-3.521-11.54-8.666-14.18l-0.090-0.042-401.237-200.59c-7.409-3.783-16.16-6-25.429-6s-18.020 2.217-25.753 6.149l0.323-0.149-401.237 200.59c-5.235 2.682-8.755 8.041-8.755 14.222s3.521 11.54 8.666 14.18l0.090 0.042c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167 357.035-178.517c3.712-1.9 8.097-3.014 12.743-3.014s9.031 1.114 12.904 3.089l-0.161-0.075 357.035 178.517c8.287 4.234 18.076 6.715 28.444 6.715s20.157-2.481 28.806-6.882l-0.361 0.167zM537.429 769.479l378.823-189.383c9.384-4.778 15.699-14.366 15.699-25.429s-6.316-20.651-15.538-25.355l-0.161-0.075-378.823-189.44c-7.409-3.783-16.16-6-25.429-6s-18.020 2.217-25.753 6.149l0.323-0.149-378.823 189.44c-9.384 4.778-15.699 14.366-15.699 25.429s6.316 20.651 15.538 25.355l0.161 0.075 378.823 189.44c7.409 3.783 16.16 6 25.429 6s18.020-2.217 25.753-6.149l-0.323 0.149zM512 718.62l-327.908-163.954 327.908-163.954 327.908 163.954-327.908 163.954z" />
<glyph unicode="&#xe61f;" glyph-name="ladipeisongchanggui" d="M586.24 839.111c31.858 0 57.97-26.965 57.97-59.733v-64.967h200.476c21.042-0.019 39.407-11.459 49.233-28.455l0.146-0.274 129.934-227.897-0.569-290.304c0-66.56-52.736-121.173-117.305-121.173h-45.682l0.114-3.982c0-62.692-49.209-113.436-110.023-113.436-60.757 0-110.023 50.745-110.023 113.436 0 1.365 0 2.674 0.114 3.982h-210.091l0.114-3.982c0-62.692-49.209-113.436-109.966-113.436-60.814 0-110.023 50.745-110.023 113.436l0.114 3.982h-36.523c-64.569 0.057-117.362 54.556-117.362 121.116v159.687h55.182l0.228-2.844c2.49-16.187 16.177-28.483 32.794-28.785h405.933c18.204 0 33.28 15.474 33.28 34.304v418.361c0.001 0.103 0.002 0.226 0.002 0.348 0 18.518-14.82 33.574-33.246 33.955l-0.036 0.001h-405.902c-18.462-0.382-33.282-15.438-33.282-33.956 0-0.122 0.001-0.245 0.002-0.367v0.019-22.812h-54.443l0.057 54.044c0 32.768 26.169 59.733 57.97 59.733h470.812zM750.421 113.152c-10.866 0-21.163-2.674-30.322-7.225-21.618-11.036-36.807-33.451-38.229-59.563-0.114-1.365-0.114-2.674-0.114-3.982 0-39.14 30.777-70.827 68.665-70.827s68.665 31.687 68.665 70.77l-0.114 3.982c-1.283 25.905-16.255 48.040-37.786 59.433l-0.386 0.186c-8.764 4.554-19.137 7.225-30.133 7.225-0.086 0-0.173 0-0.259 0h0.013zM320.569 113.152c-10.923 0-21.163-2.674-30.379-7.225-21.618-11.036-36.807-33.451-38.172-59.563-0.114-1.365-0.114-2.674-0.114-3.982 0-39.14 30.663-70.827 68.665-70.827 37.888 0 68.665 31.687 68.665 70.77 0 1.365 0 2.674-0.114 3.982-1.295 25.916-16.289 48.053-37.842 59.433l-0.387 0.186c-8.764 4.554-19.137 7.225-30.132 7.225-0.067 0-0.133 0-0.2 0h0.010zM811.52 648.192h-167.31v-348.444c0-32.882-26.169-59.79-58.027-59.79h-470.812c-1.138 0-2.389 0-3.527 0.114v-55.125c0.057-43.406 34.532-79.076 76.743-79.076h40.903c19.646 30.070 53.078 49.709 91.108 49.891h0.028c37.888 0 71.339-19.797 91.079-49.835h247.694c19.647 30.032 53.052 49.645 91.050 49.835h0.029c37.888 0 71.396-19.797 91.136-49.835h48.697c42.098 0 76.629 35.499 76.629 79.019v248.946l-105.984 185.628c-9.989 17.252-28.36 28.672-49.398 28.672-0.014 0-0.027 0-0.041 0h0.002zM824.889 327.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778zM802.702 611.556c0.019 0 0.042 0 0.065 0 10.427 0 19.543-5.61 24.495-13.977l0.072-0.132 79.019-135.623c2.432-4.103 3.868-9.045 3.868-14.322 0-0.005 0-0.010 0-0.015v0.001-35.044c0-15.709-12.735-28.444-28.444-28.444v0h-170.667c-15.709 0-28.444 12.735-28.444 28.444v0 170.667c0 15.709 12.735 28.444 28.444 28.444v0h91.591zM199.111 440.889c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-56.889c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h56.889zM199.111 554.667c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778zM199.111 668.444c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-170.667c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h170.667z" />
<glyph unicode="&#xe620;" glyph-name="qiye" d="M56.889-71.111v56.889h56.889v796.444c0 31.419 25.47 56.889 56.889 56.889v0h398.222c31.419 0 56.889-25.47 56.889-56.889v0-227.556h227.556c31.419 0 56.889-25.47 56.889-56.889v0-512h56.889v-56.889h-910.222zM568.889 753.778c0 15.709-12.735 28.444-28.444 28.444h-341.333c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-768h398.222v768zM824.889 497.778h-199.111v-512h227.556v483.556c0 15.709-12.735 28.444-28.444 28.444v0zM796.444 99.556v-56.889h-113.778v56.889h113.778zM512 156.444v-56.889h-284.444v56.889h284.444zM796.444 270.222v-56.889h-113.778v56.889h113.778zM512 327.111v-56.889h-284.444v56.889h284.444zM796.444 440.889v-56.889h-113.778v56.889h113.778zM512 497.778v-56.889h-284.444v56.889h284.444zM512 668.444v-56.889h-284.444v56.889h284.444zM853.333 725.333v-56.889h-170.667v56.889h170.667zM910.222 839.111v-56.889h-227.556v56.889h227.556z" />
<glyph unicode="&#xe621;" glyph-name="qianbaochanggui" d="M713.728 782.222c76.596-0.065 138.679-62.108 138.809-138.683v-29.368l2.105-1.536c34.816-26.169 55.58-68.494 55.58-113.209v-374.955c0-76.516-58.596-138.695-130.446-138.695h-535.552c-71.964 0-130.446 62.18-130.446 138.695v519.054c0 76.516 62.578 138.695 139.378 138.695h460.572zM708.153 725.333h-447.829c-0.068 0-0.148 0-0.229 0-49.231 0-89.17-39.78-89.428-88.95v-504.743c0-49.038 36.352-88.974 80.953-88.974h520.704c44.658 0 81.010 39.879 81.010 88.974v364.658c0 48.981-36.352 88.917-81.010 88.917h-456.533c-12.678 0-22.955 10.277-22.955 22.955s10.277 22.955 22.955 22.955h456.533c6.372 0 12.459-1.024 18.887-2.105l5.916-0.91 0.171 5.973v2.276c-0.097 49.16-39.971 88.974-89.145 88.974 0 0 0 0 0 0v0zM597.675 481.621c6.017-5.36 9.788-13.13 9.788-21.78 0-6.969-2.448-13.367-6.53-18.38l0.042 0.053-42.041-51.769h41.927c13.761 0 24.917-11.156 24.917-24.917s-11.156-24.917-24.917-24.917h-65.422v-21.163h64c13.777 0 24.946-11.169 24.946-24.946s-11.169-24.946-24.946-24.946v0h-64v-88.292c0-13.337-10.812-24.149-24.149-24.149s-24.149 10.812-24.149 24.149v0 88.235h-63.886c-13.793 0-24.974 11.181-24.974 24.974s11.181 24.974 24.974 24.974h63.943v21.049h-62.578c-13.793 0-24.974 11.181-24.974 24.974s11.181 24.974 24.974 24.974h37.945l-40.846 50.29c-4.055 4.965-6.512 11.374-6.512 18.357 0 7.446 2.794 14.24 7.391 19.389l-0.025-0.029c3.874 4.357 9.495 7.088 15.753 7.088 6.573 0 12.443-3.013 16.303-7.733l0.030-0.038 56.149-69.063 57.287 70.542c3.89 4.772 9.768 7.795 16.352 7.795 5.056 0 9.695-1.782 13.324-4.753l-0.037 0.030z" />
<glyph unicode="&#xe622;" glyph-name="fahuochanggui" d="M796.444 327.111c0.004 0 0.010 0 0.015 0 125.675 0 227.556-101.88 227.556-227.556s-101.88-227.556-227.556-227.556c-0.005 0-0.011 0-0.016 0h0.001c-125.669 0.009-227.54 101.885-227.54 227.556s101.871 227.547 227.54 227.556h0.001zM756.338 839.111c20.172-0.002 37.892-10.504 47.991-26.338l0.137-0.23 162.645-257.877 0.057-227.556c-16.468 12.504-35.171 23.615-55.084 32.503l-1.805 0.72-0.057 158.834h-284.501l0.057-0.455v-134.713l-56.32 29.753-43.804-29.753-64 56.889-63.431-56.889v135.168h-284.444v-504.946c0-15.709 12.735-28.444 28.444-28.444v0h393.444c8.875-20.366 20.082-39.424 33.28-56.946l-455.168 0.057c-31.419 0-56.889 25.47-56.889 56.889v0 568.889l162.759 257.934c10.243 16.033 27.947 26.51 48.099 26.51 0.010 0 0.021 0 0.031 0h488.56zM796.444 270.222c-0.004 0-0.008 0-0.013 0-94.257 0-170.667-76.41-170.667-170.667s76.41-170.667 170.667-170.667c0.005 0 0.009 0 0.014 0h-0.001c94.251 0.007 170.654 76.415 170.654 170.667s-76.403 170.659-170.653 170.667h-0.001zM803.328 213.333l120.718-120.661-40.22-40.22-52.053 51.996v-97.109h-56.889v97.109l-51.996-51.996-40.22 40.22 120.661 120.661zM398.222 99.556v-56.889h-227.556v56.889h227.556zM398.222 213.333v-56.889h-227.556v56.889h227.556zM512 327.111v-56.889h-341.333v56.889h341.333zM450.048 810.667h-160.597c0 0-0.001 0-0.001 0-10.634 0-19.905-5.835-24.786-14.478l-0.074-0.142-122.368-219.989h266.069l41.756 234.61zM739.214 810.667h-165.262l41.643-234.61h266.183l-117.476 219.591c-4.894 9.007-14.283 15.019-25.077 15.019-0.004 0-0.008 0-0.012 0h0.001z" />
<glyph unicode="&#xe623;" glyph-name="quanxianchanggui" d="M887.353 373.76c-49.324-49.38-117.494-79.927-192.799-79.927-39.23 0-76.524 8.29-110.225 23.213l1.74-0.688-56.263-56.206v-97.849c0-11.378-9.216-20.651-20.594-20.651h-85.845v-85.788c0-11.378-9.216-20.594-20.594-20.594h-85.902v-85.788c0 0 0 0 0 0 0-11.334-9.155-20.529-20.474-20.593h-0.006l-219.193 0.228c-11.068 0.123-20.026 8.982-20.309 19.998l-0.001 0.026v0.626l0.228 112.811c0 5.461 2.162 10.638 6.030 14.507l381.156 380.985c-14.261 31.961-22.566 69.258-22.566 108.496 0 75.301 30.588 143.458 80.017 192.724l0.007 0.007c49.079 49.305 117.002 79.816 192.051 79.816 0.242 0 0.484 0 0.726-0.001h-0.037c72.818 0 141.312-28.331 192.853-79.815 49.28-49.358 79.754-117.504 79.754-192.768s-30.475-143.41-79.758-192.772l0.004 0.004zM858.226 730.169c-41.661 41.855-99.318 67.756-163.024 67.756-0.227 0-0.453 0-0.68-0.001h0.035c-0.192 0.001-0.418 0.001-0.645 0.001-63.707 0-121.364-25.901-163.016-67.747l-0.009-0.009c-41.972-41.826-67.942-99.686-67.942-163.612 0-37.771 9.066-73.424 25.142-104.902l-0.606 1.307c3.982-7.964 2.446-17.522-3.868-23.78l-385.308-385.195-0.114-54.443 98.133 98.076c3.727 3.727 8.876 6.032 14.564 6.032 11.375 0 20.596-9.221 20.596-20.596 0-5.687-2.305-10.836-6.032-14.564l-98.304-98.247 148.594-0.171v85.788c0 11.378 9.216 20.594 20.594 20.594h85.845v85.788c0 11.378 9.216 20.594 20.594 20.594h85.845v85.845c0 5.461 2.162 10.695 6.030 14.564l72.476 72.476c3.724 3.71 8.861 6.004 14.534 6.004 3.371 0 6.553-0.81 9.362-2.246l-0.116 0.054c30.2-15.478 65.886-24.55 103.691-24.55 63.942 0 121.822 25.951 163.684 67.896l0.004 0.004c41.82 41.629 67.699 99.241 67.699 162.897 0 0.271 0 0.543-0.001 0.814v-0.042c0.001 0.212 0.001 0.464 0.001 0.715 0 63.656-25.879 121.268-67.69 162.889l-0.008 0.008zM750.137 525.369c-0.041 0-0.089 0-0.137 0-53.506 0-96.882 43.375-96.882 96.882s43.375 96.882 96.882 96.882c26.815 0 51.086-10.894 68.628-28.498l0.003-0.003c17.39-17.508 28.138-41.632 28.138-68.267 0-53.399-43.201-96.707-96.559-96.881h-0.017zM789.504 661.447c-10.229 11.373-24.994 18.493-41.422 18.493-30.728 0-55.637-24.91-55.637-55.637 0-16.456 7.144-31.244 18.501-41.43l0.052-0.046c9.797-8.788 22.813-14.161 37.084-14.161 30.728 0 55.637 24.91 55.637 55.637 0 14.3-5.395 27.34-14.26 37.195l0.045-0.051zM283.705 126.692c-3.729-3.722-8.878-6.024-14.564-6.024-11.386 0-20.616 9.23-20.616 20.616 0 5.7 2.313 10.86 6.052 14.592v0l247.125 247.068c3.727 3.727 8.876 6.032 14.564 6.032 11.375 0 20.596-9.221 20.596-20.596 0-5.687-2.305-10.836-6.032-14.564l-247.125-247.068z" />
<glyph unicode="&#xe624;" glyph-name="rili" d="M227.556 696.889v-56.889h-85.333c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-568.889c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h739.556c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v568.889c0 15.709-12.735 28.444-28.444 28.444v0h-85.333v56.889h113.778c31.419 0 56.889-25.47 56.889-56.889v0-625.778c0-31.419-25.47-56.889-56.889-56.889v0h-796.444c-31.419 0-56.889 25.47-56.889 56.889v0 625.778c0 31.419 25.47 56.889 56.889 56.889v0h113.778zM284.444 184.889c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM455.111 184.889c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v56.889c0 15.709 12.735 28.444 28.444 28.444v0h56.889zM625.778 184.889c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444v0h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM284.444 355.556c15.709 0 28.444-12.735 28.444-28.444v0-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM455.111 355.556c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444v0h56.889zM625.778 355.556c15.709 0 28.444-12.735 28.444-28.444v-56.889c0-15.709-12.735-28.444-28.444-28.444v0h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM796.444 355.556c15.709 0 28.444-12.735 28.444-28.444v0-56.889c0-15.709-12.735-28.444-28.444-28.444h-56.889c-15.709 0-28.444 12.735-28.444 28.444v0 56.889c0 15.709 12.735 28.444 28.444 28.444h56.889zM824.889 526.222c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-625.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h625.778zM312.889 753.778c15.709 0 28.444-12.735 28.444-28.444v-113.778c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 113.778c0 15.709 12.735 28.444 28.444 28.444v0zM711.111 753.778c15.709 0 28.444-12.735 28.444-28.444v0-113.778c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 113.778c0 15.709 12.735 28.444 28.444 28.444v0zM625.778 696.889v-56.889h-227.556v56.889h227.556z" />
<glyph unicode="&#xe625;" glyph-name="qudaoshangguanli" d="M445.554 872.164c35.783 0 83.911-13.653 124.132-42.837 58.937-42.951 93.298-112.754 93.298-209.806 0-73.045-12.288-137.671-52.452-199.054-6.345-9.566-12.407-17.725-18.851-25.556l0.419 0.525-18.261-22.3-5.461-7.225c-3.188-4.011-5.839-8.64-7.733-13.641l-0.118-0.354 28.615-11.776c17.067-7.339 38.514-16.555 55.068-24.462l8.476-4.153c12.999-6.667 21.74-19.977 21.74-35.328 0-21.856-17.718-39.575-39.575-39.575-6.505 0-12.643 1.569-18.057 4.35l0.223-0.104c-7.623 3.812-17.806 8.533-28.729 13.312l-19.797 8.59-44.373 18.66c-28.103 14.108-43.406 34.475-43.406 65.764 0 23.495 8.249 43.52 23.438 64.74 3.812 5.291 7.851 10.524 13.54 17.351l17.010 20.821c3.812 4.892 6.94 9.273 9.842 13.54 29.867 45.625 39.595 96.711 39.595 155.762 0 72.135-22.585 118.101-60.814 145.863-13.449 9.778-29.137 17.513-46.055 22.329l-1.049 0.255c-9.005 2.812-19.415 4.651-30.181 5.111l-0.254 0.009h-19.797c-29.307-1.933-55.932-12.005-78.039-27.951l0.442 0.303c-38.229-27.819-60.814-73.785-60.814-145.92 0-59.051 9.728-110.137 39.652-155.762 3.698-5.746 8.078-11.548 13.767-18.603l16.213-19.684 5.518-6.997 4.779-6.428c15.189-21.22 23.381-41.244 23.381-64.74 0-31.289-15.303-51.655-43.52-65.764-3.413-1.65-65.308-26.624-93.127-40.676l-8.533-4.267c-101.262-51.541-165.717-103.083-165.717-136.42v-67.698c99.442-37.205 224.427-55.922 375.751-55.922 65.877-1.764 124.928 0.91 177.266 8.078 1.010 0.092 2.185 0.144 3.371 0.144 21.836 0 39.538-17.702 39.538-39.538 0-19.307-13.839-35.382-32.138-38.847l-0.246-0.039c-56.718-7.737-120.036-10.638-188.985-8.818-162.759 0-299.179 21.049-409.6 63.716-26.075 10.492-44.147 35.574-44.147 64.878 0 0.151 0 0.302 0.001 0.454v-0.023 73.671c0 72.135 66.788 131.3 181.476 192.683l17.92 9.5 18.261 9.273c14.791 7.509 36.523 17.067 55.182 25.031l17.351 7.282 19.797 8.078c-2.053 5.374-4.721 10.019-7.993 14.164l0.086-0.112-1.593 2.162-3.868 5.006-23.495 28.843c-4.084 5.181-8.425 11.169-12.537 17.323l-0.662 1.052c-40.164 61.383-52.452 126.009-52.452 199.054 0 97.052 34.304 166.855 93.298 209.806 40.277 29.355 88.462 42.894 124.245 42.894zM837.86 279.324c18.261 0 32.996-14.791 32.996-32.996v-18.887c12.971-3.812 25.088-9.5 36.238-16.782l14.677 14.734c5.885 5.563 13.846 8.982 22.606 8.982 18.192 0 32.939-14.747 32.939-32.939 0-8.774-3.431-16.747-9.024-22.651l0.014 0.015-16.327-16.327c6.030-10.752 10.695-22.3 13.653-34.588h23.78c0.002 0 0.004 0 0.006 0 18.223 0 32.996-14.773 32.996-32.996s-14.773-32.996-32.996-32.996c-0.002 0-0.004 0-0.006 0h-23.722c-3.015-12.288-7.68-23.893-13.653-34.645l16.384-16.327c5.347-5.836 8.623-13.645 8.623-22.219 0-18.192-14.747-32.939-32.939-32.939-8.574 0-16.384 3.276-22.244 8.645l0.025-0.022-14.677 14.677c-11.15-7.282-23.324-13.084-36.238-16.896v-18.887c0-0.002 0-0.004 0-0.006 0-18.223-14.773-32.996-32.996-32.996s-32.996 14.773-32.996 32.996c0 0.002 0 0.004 0 0.006v0 15.758c-15.526 3.022-29.346 8.253-41.914 15.428l0.67-0.352-9.728-9.728c-5.836-5.347-13.645-8.623-22.219-8.623-18.192 0-32.939 14.747-32.939 32.939 0 8.574 3.276 16.384 8.645 22.244l-0.022-0.025 8.078 8.135c-8.154 12.288-14.57 26.576-18.453 41.875l-0.207 0.962h-10.524c-0.002 0-0.004 0-0.006 0-18.223 0-32.996 14.773-32.996 32.996s14.773 32.996 32.996 32.996c0.002 0 0.004 0 0.006 0h10.524c3.868 15.531 10.24 29.867 18.66 42.837l-8.078 8.078c-5.579 5.888-9.010 13.861-9.010 22.636 0 18.192 14.747 32.939 32.939 32.939 8.76 0 16.722-3.42 22.622-8.997l-0.016 0.015 9.614-9.842c12.629 7.054 26.51 12.231 41.188 15.019v15.758c0 18.318 14.848 32.996 32.996 32.996zM831.26 167.367c-0.017 0-0.037 0-0.057 0-40.012 0-72.448-32.436-72.448-72.448 0-39.992 32.404-72.416 72.388-72.448h0.003c0.017 0 0.037 0 0.057 0 40.012 0 72.448 32.436 72.448 72.448 0 39.992-32.404 72.416-72.388 72.448h-0.003z" />
<glyph unicode="&#xe626;" glyph-name="rukuguanliputong" d="M548.068 866.418l454.599-373.020c5.064-4.184 8.267-10.464 8.267-17.493s-3.203-13.31-8.229-17.463l-0.038-0.031c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046-49.835 40.846 0.057-570.368c0-31.419-25.47-56.889-56.889-56.889h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 170.667h56.889v-170.667h682.667v617.017l-341.333 280.121-341.333-280.121v-105.017h-56.889v58.368l-49.778-40.846c-5.755-4.753-13.208-7.635-21.333-7.635s-15.578 2.883-21.39 7.681l0.057-0.046c-5.064 4.184-8.267 10.464-8.267 17.493s3.203 13.31 8.229 17.463l0.038 0.031 454.542 373.020c9.743 8.055 22.363 12.942 36.124 12.942s26.382-4.886 36.22-13.018l-0.096 0.077zM398.222 99.556v-113.778h-113.778v113.778h113.778zM568.889 99.556v-113.778h-113.778v113.778h113.778zM739.556 99.556v-113.778h-113.778v113.778h113.778zM252.416 391.509l90.738-90.681c7.686-7.926 12.424-18.749 12.424-30.678 0-8.099-2.184-15.688-5.994-22.21l0.113 0.209-4.665-6.542-92.615-92.729c-4.078-4.14-9.746-6.706-16.013-6.706-7.147 0-13.514 3.336-17.63 8.536l-0.036 0.047c-3.383 4.21-5.429 9.62-5.429 15.507 0 6.792 2.724 12.948 7.139 17.435l58.024 58.081h-193.138c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h193.195l-58.084 58.084c-4.399 4.481-7.114 10.629-7.114 17.41 0 4.267 1.075 8.283 2.969 11.792l-0.065-0.132 2.503 3.868 3.527 3.47c3.828 3.143 8.777 5.048 14.17 5.048 6.255 0 11.912-2.562 15.978-6.695l0.003-0.003zM568.889 270.222v-113.778h-113.778v113.778h113.778zM739.556 270.222v-113.778h-113.778v113.778h113.778zM739.556 440.889v-113.778h-113.778v113.778h113.778z" />
<glyph unicode="&#xe627;" glyph-name="shang" d="M140.516 183.41c6.835-6.883 16.303-11.144 26.766-11.144s19.931 4.261 26.764 11.141l297.759 299.977c5.156 5.197 12.3 8.414 20.196 8.414s15.040-3.217 20.194-8.412l0.002-0.002 297.756-299.975c6.832-6.866 16.289-11.115 26.738-11.115s19.906 4.249 26.736 11.113l0.002 0.002c6.865 6.918 11.107 16.446 11.107 26.965s-4.242 20.048-11.109 26.968l0.002-0.002-331.036 333.54c-10.308 10.376-24.585 16.799-40.363 16.799s-30.054-6.423-40.36-16.796l-331.096-333.543c-6.865-6.918-11.107-16.446-11.107-26.965s4.242-20.048 11.109-26.968l-0.002 0.002z" />
<glyph unicode="&#xe628;" glyph-name="shanghudianpuguanli" d="M858.055 270.222l12.8-51.2c9.102-2.844 17.806-6.428 26.112-10.809l45.227 27.136 46.933-46.933-27.136-45.227c4.38-8.306 7.964-17.067 10.809-26.112l51.2-12.8v-66.332l-51.2-12.8c-2.844-9.102-6.428-17.806-10.809-26.112l27.136-45.227-46.933-46.933-45.227 27.136c-8.306-4.38-17.067-7.964-26.112-10.809l-12.8-51.2h-66.332l-12.8 51.2c-10.093 3.159-18.737 6.825-26.938 11.212l0.826-0.403-45.227-27.136-46.933 46.933 27.136 45.227c-3.984 7.375-7.65 16.019-10.51 25.022l-0.299 1.090-51.2 12.8v66.332l51.2 12.8c2.844 9.102 6.428 17.806 10.809 26.112l-27.136 45.227 46.933 46.933 45.227-27.136c8.306 4.38 17.067 7.964 26.112 10.809l12.8 51.2h66.332zM512 497.778c30.72-29.867 74.297-48.583 122.539-48.583 44.373 0 84.708 15.758 114.916 41.529 30.151-25.771 70.428-41.529 114.802-41.529 11.947 0 23.609 1.138 34.873 3.3l11.093 2.617v-142.507c-17.297 6.331-37.426 11.009-58.303 13.164l-1.089 0.091v69.234c-37.42 1.955-72.062 12.129-102.709 28.735l1.276-0.632c-34.361-18.432-73.785-28.444-114.916-28.444-44.146 0-86.471 11.662-122.482 32.825-34.91-20.669-76.942-32.883-121.827-32.883-0.25 0-0.5 0-0.75 0.001h0.038c-0.234-0.001-0.51-0.001-0.787-0.001-41.775 0-81.086 10.553-115.411 29.138l1.283-0.635c-29.354-15.966-63.975-26.139-100.778-28.078l-0.598-0.025v-411.705l168.164 0.114v286.72c0 31.419 25.47 56.889 56.889 56.889v0h227.556c0.007 0 0.015 0 0.023 0 26.9 0 49.44-18.671 55.366-43.76l0.077-0.386c-20.935-14.165-39.595-31.346-55.467-50.916v9.728c0 0.003 0 0.006 0 0.009 0 13.899-9.969 25.47-23.148 27.952l-0.177 0.028-5.12 0.455h-170.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-258.332l186.084-0.057c7.054-19.342 16.384-37.604 27.648-54.5l-438.784 0.057c-30.492 0-55.58 21.049-58.994 48.128l-0.398 6.315v471.609c14.62-3.812 30.037-5.803 45.966-5.803 44.373 0 84.708 15.758 114.859 41.529 30.151-25.771 70.485-41.529 114.916-41.529 48.185 0 91.705 18.716 122.482 48.583zM824.889 156.444c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333v0zM866.133 839.111c0.012 0 0.025 0 0.039 0 23.079 0 42.947-13.742 51.87-33.491l0.145-0.358 2.332-6.315 36.409-118.329c2.503-5.575 4.551-11.378 6.144-17.294l1.991-9.102 1.82-5.916h-0.683c0.569-4.836 0.91-9.728 0.91-14.677 0-64.853-53.476-117.419-119.353-117.419-0.149-0.001-0.324-0.001-0.5-0.001-50.511 0-93.701 31.348-111.176 75.65l-0.282 0.81c-17.72-45.108-60.888-76.46-111.379-76.46-0.183 0-0.366 0-0.549 0.001h0.028c-0.132-0.001-0.287-0.001-0.443-0.001-50.511 0-93.701 31.348-111.175 75.65l-0.282 0.81c-17.72-45.108-60.888-76.46-111.379-76.46-0.183 0-0.366 0-0.549 0.001h0.028c-0.132-0.001-0.287-0.001-0.443-0.001-50.511 0-93.701 31.348-111.175 75.65l-0.282 0.81c-17.72-45.108-60.888-76.46-111.379-76.46-0.203 0-0.406 0.001-0.609 0.002h0.031c-65.877 0-119.353 52.508-119.353 117.419l0.228 7.396 0.683 7.282h-0.91l1.82 5.973c1.309 6.922 2.962 12.917 5.044 18.708l-0.265-0.845 3.413 8.533 36.352 118.272c6.696 21.296 25.015 36.984 47.34 39.738l0.276 0.028 6.77 0.398h708.494zM866.133 782.222h-708.494l-36.409-118.329-4.836-12.971-1.934-7.908-0.569-5.632-0.114-3.755c0-33.223 27.762-60.53 62.464-60.53 24.178 0 45.511 13.369 55.979 33.564l5.746 12.857c20.992 40.107 79.531 40.050 100.466 0l5.689-12.914c10.411-20.082 31.858-33.508 55.979-33.508s45.511 13.369 55.922 33.564l5.803 12.857c20.935 40.107 79.474 40.050 100.409 0l5.746-12.914c10.354-20.082 31.858-33.508 55.922-33.508 24.178 0 45.511 13.369 55.922 33.564l5.803 12.857c20.992 40.107 79.531 40.050 100.466 0l5.689-12.914c10.411-20.082 31.858-33.508 55.979-33.508 34.702 0 62.464 27.307 62.464 60.53 0 2.389-0.171 5.006-0.569 7.964l-2.219 9.33-4.892 12.971-36.409 118.329z" />
<glyph unicode="&#xe629;" glyph-name="shangchuanchanggui" d="M490.915 532.651c9.599 7.643 21.902 12.264 35.283 12.264 15.7 0 29.915-6.36 40.209-16.644v0l181.020-181.020c5.159-5.152 8.35-12.273 8.35-20.139 0-15.718-12.742-28.46-28.46-28.46-7.852 0-14.961 3.18-20.111 8.322v0l-152.633 152.69v-502.329c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 502.272l-152.519-152.633c-5.145-5.134-12.248-8.309-20.091-8.309-6.062 0-11.68 1.896-16.295 5.127l0.092-0.061-3.982 3.243c-5.163 5.15-8.357 12.271-8.357 20.139s3.194 14.989 8.356 20.138l181.078 181.021zM512.362 839.111c159.352-0.012 295.167-100.774 347.219-242.057l0.827-2.565c96.69-38.057 163.878-130.627 163.878-238.89 0-131.328-98.867-239.564-226.232-254.338l-1.191-0.112-85.902-0.284c-0.019 0-0.042 0-0.065 0-13.605 0-24.934 9.747-27.384 22.639l-0.027 0.174-0.455 5.006v0.114c0 15.417 12.516 27.932 27.989 27.932h68.267c105.202 5.911 188.274 92.662 188.274 198.816 0 93.462-64.395 171.884-151.237 193.318l-1.367 0.285c-36.603 135.192-158.182 233.011-302.609 233.011-123.457 0-230.219-71.475-281.164-175.303l-0.817-1.843c-100.097-25.388-172.971-114.684-172.971-221.001 0-111.655 80.376-204.537 186.424-223.943l1.395-0.212 11.15-3.413h56.946c13.938 0 25.543-9.956 27.876-23.211l0.512-5.12c0 0 0 0 0 0 0-15.689-12.703-28.412-28.384-28.444h-0.003l-28.501-0.114c-0.1 0-0.217 0-0.335 0-157.094 0-284.444 127.35-284.444 284.444 0 123.649 78.897 228.871 189.095 268.070l1.988 0.617c64.906 112.169 184.324 186.425 321.086 186.425 0.058 0 0.116 0 0.174 0h-0.009z" />
<glyph unicode="&#xe62a;" glyph-name="shoucangchanggui" d="M542.72 777.444c6.911-4.471 12.632-10.174 16.99-16.848l0.134-0.218 125.269-195.015 224.142-58.88c24.609-6.627 42.424-28.743 42.424-55.019 0-13.706-4.847-26.28-12.921-36.102l0.079 0.099-146.773-179.371 5.234-92.16-58.88 34.020-4.38 77.028 132.722 162.247c3.997 4.861 6.421 11.148 6.421 18.001 0 13.138-8.908 24.196-21.013 27.464l-0.199 0.046-202.752 53.248-113.266 176.356c-5.137 7.928-13.939 13.099-23.95 13.099s-18.814-5.171-23.883-12.989l-0.067-0.111-113.209-176.356-202.809-53.248c-12.305-3.313-21.212-14.371-21.212-27.51 0-6.853 2.424-13.14 6.46-18.051l-0.039 0.049 132.722-162.247-11.947-209.237c-0.030-0.49-0.047-1.064-0.047-1.641 0-15.709 12.735-28.444 28.444-28.444 3.701 0 7.237 0.707 10.48 1.993l-0.192-0.067 195.3 76.117 195.3-76.117c3.051-1.219 6.586-1.925 10.287-1.925 15.709 0 28.444 12.735 28.444 28.444 0 0.577-0.017 1.151-0.051 1.719l0.004-0.078-3.698 64.284 58.937-34.020 4.153-71.225c0.062-0.994 0.097-2.157 0.097-3.327 0-31.419-25.47-56.889-56.889-56.889-7.446 0-14.557 1.43-21.075 4.031l0.384-0.135-215.893 84.252-215.893-84.196c-6.134-2.466-13.245-3.896-20.691-3.896-31.419 0-56.889 25.47-56.889 56.889 0 1.171 0.035 2.333 0.105 3.486l-0.008-0.159 13.312 231.31-146.773 179.371c-7.995 9.723-12.842 22.297-12.842 36.003 0 26.277 17.815 48.392 42.026 54.928l0.398 0.092 224.142 58.88 125.326 194.901c10.28 15.814 27.862 26.125 47.853 26.125 11.406 0 22.028-3.357 30.932-9.136l-0.221 0.135zM843.776 708.722c0.54-0.854 0.861-1.894 0.861-3.009 0-0.102-0.003-0.204-0.008-0.305l0.001 0.014-1.479-38.4 29.582-24.633c1.252-1.051 2.042-2.616 2.042-4.366 0-2.593-1.734-4.78-4.106-5.466l-0.040-0.010-36.978-10.468-14.336-35.726c-0.866-2.106-2.901-3.562-5.276-3.562-1.968 0-3.702 0.999-4.723 2.517l-0.013 0.020-21.39 31.915-38.343 2.56c-2.984 0.194-5.33 2.662-5.33 5.678 0 1.343 0.465 2.577 1.243 3.55l-0.009-0.011 23.78 30.208-9.444 37.319c-0.105 0.409-0.165 0.878-0.165 1.361 0 3.142 2.547 5.689 5.689 5.689 0.692 0 1.355-0.124 1.968-0.35l-0.039 0.013 36.124-13.255 32.54 20.48c0.862 0.554 1.915 0.883 3.044 0.883 2.013 0 3.782-1.046 4.793-2.624l0.014-0.023zM826.766 684.544l-17.863-11.207-7.452-0.796-19.797 7.282 5.12-20.48-1.536-7.396-13.084-16.498 21.049-1.422 6.542-3.755 11.776-17.522 7.794 19.57 5.632 5.006 20.252 5.746-16.156 13.54-3.072 6.827 0.796 21.106zM126.805 818.233c0.126 0.005 0.274 0.008 0.422 0.008 2.225 0 4.3-0.638 6.053-1.742l-0.047 0.028 49.152-30.72 52.338 17.010c1.067 0.366 2.297 0.577 3.576 0.577 6.284 0 11.378-5.094 11.378-11.378 0-0.788-0.080-1.557-0.233-2.3l0.013 0.073-10.866-56.092 34.816-47.559c1.382-1.861 2.212-4.204 2.212-6.741 0-6.001-4.646-10.917-10.538-11.347l-0.037-0.002-55.41-3.982-31.118-45.966c-2.074-3.038-5.52-5.006-9.426-5.006-4.638 0-8.627 2.775-10.399 6.754l-0.029 0.072-23.78 53.931-54.044 18.66c-4.47 1.602-7.611 5.802-7.611 10.736 0 3.341 1.44 6.345 3.733 8.427l0.009 0.008 40.846 36.864-1.991 57.97c-0.005 0.121-0.007 0.263-0.007 0.405 0 6.146 4.874 11.154 10.967 11.371l0.020 0.001zM835.186 625.948l-5.575-5.006 3.982 1.138 1.593 3.868zM145.351 775.452l1.365-39.14-29.241-26.396 38.457-13.255 16.327-37.092 21.618 31.858 38.343 2.788-23.893 32.711 7.68 39.879-37.433-12.117-33.223 20.764z" />
<glyph unicode="&#xe62b;" glyph-name="shouye" d="M949.362 421.888l-114.119 112.299c2.56 2.617 2.56 7.851 2.56 10.468v198.485c0 15.644-10.126 26.112-25.372 26.112h-197.746c-0.163 0.004-0.356 0.007-0.549 0.007-6.857 0-13.005-3.033-17.177-7.83l-0.024-0.028-65.934 67.925c-5.744 6.040-13.839 9.796-22.812 9.796s-17.069-3.757-22.8-9.783l-0.012-0.013-418.361-407.438c-6.277-6.654-10.135-15.649-10.135-25.545 0-4.893 0.943-9.565 2.657-13.845l-0.089 0.251c5.063-13.084 17.749-20.878 32.939-20.878h78.62v-334.279c0-23.552 17.749-41.813 40.562-41.813h197.746c22.422 0.056 40.578 18.245 40.578 40.675 0 0.4-0.006 0.799-0.017 1.196l0.001-0.058v206.222h126.748v-206.279c0-23.552 17.749-41.813 40.619-41.813h197.746c22.422 0.056 40.578 18.245 40.578 40.675 0 0.4-0.006 0.799-0.017 1.196l0.001-0.058v334.279h78.62c15.189 0 25.316 7.794 32.939 20.878-2.56 13.084-5.12 28.729-17.749 39.14zM789.618 717.028v-135.794l-141.995 135.794h141.995zM825.116 414.094c-15.189 0-25.372-10.468-25.372-26.169v-349.867h-177.493v208.839c0.009 0.322 0.014 0.701 0.014 1.081 0 22.41-18.122 40.586-40.511 40.675h-147.123c-22.422-0.057-40.576-18.246-40.576-40.675 0-0.38 0.005-0.759 0.016-1.137l-0.001 0.056v-206.336h-177.493v350.037c0 15.644-10.126 26.112-25.372 26.112h-60.871l377.799 362.951 377.742-365.568h-60.814z" />
<glyph unicode="&#xe62c;" glyph-name="shuaxin" d="M94.492 255.090c-0.006 0-0.014 0-0.021 0-13.42 0-24.674 9.275-27.7 21.764l-0.040 0.195c-7.954 32.151-12.516 69.061-12.516 107.037 0 43.404 5.961 85.417 17.108 125.263l-0.78-3.265c50.964 181.303 205.311 315.697 393.876 336.483l2.071 0.185c14.524 1.614 31.364 2.535 48.419 2.535 91.164 0 176.182-26.311 247.876-71.753l-1.895 1.122c8.065-5.145 13.337-14.046 13.337-24.178 0-15.786-12.797-28.583-28.583-28.583-5.654 0-10.925 1.642-15.361 4.474l0.115-0.069c-60.994 39.283-135.48 62.626-215.419 62.626-111.581 0-212.539-45.482-285.346-118.918l-0.028-0.028c-73.248-72.826-118.581-173.66-118.581-285.083 0-33.574 4.116-66.186 11.871-97.36l-0.582 2.766c0.508-2.016 0.8-4.33 0.8-6.713 0-15.772-12.786-28.558-28.558-28.558-0.021 0-0.043 0-0.064 0h0.003zM516.039-77.028c-0.087 0-0.189 0-0.291 0-91.125 0-176.092 26.366-247.688 71.886l1.878-1.116c-8.065 5.145-13.337 14.046-13.337 24.178 0 15.786 12.797 28.583 28.583 28.583 5.654 0 10.925-1.642 15.361-4.474l-0.115 0.069c61.002-39.354 135.521-62.742 215.502-62.742 111.537 0 212.451 45.485 285.204 118.918l0.030 0.031c73.235 72.816 118.56 173.634 118.56 285.039 0 33.199-4.025 65.457-11.614 96.314l0.573-2.758c-0.215 1.319-0.338 2.839-0.338 4.388 0 15.835 12.837 28.672 28.672 28.672 12.707 0 23.484-8.267 27.245-19.716l0.058-0.203c7.816-31.892 12.3-68.505 12.3-106.166 0-43.514-5.986-85.629-17.178-125.569l0.782 3.269c-51.111-181.097-205.387-315.287-393.821-336.028l-2.069-0.185c-14.477-1.522-31.277-2.389-48.279-2.389-0.027 0-0.054 0-0.081 0h0.005zM671.744 656.839c-0.058 0-0.127-0.001-0.196-0.001-15.741 0-28.501 12.76-28.501 28.501 0 13.202 8.977 24.308 21.16 27.547l0.199 0.045 104.505 27.989-27.989 104.448c-0.618 2.218-0.974 4.765-0.974 7.396 0 15.776 12.789 28.565 28.565 28.565 13.146 0 24.218-8.88 27.544-20.969l0.047-0.201 35.442-132.039c0.625-2.227 0.985-4.785 0.985-7.427 0-13.158-8.917-24.234-21.037-27.514l-0.2-0.046-131.982-35.442c-2.261-0.545-4.866-0.874-7.542-0.91h-0.024zM259.072-107.179c-13.933 0.038-25.525 10.008-28.074 23.201l-0.029 0.18-24.804 134.428c-0.313 1.58-0.492 3.397-0.492 5.256 0 6.035 1.887 11.63 5.104 16.225l-0.061-0.091c4.284 6.112 10.754 10.441 18.253 11.862l0.179 0.028 134.372 24.747c1.158 0.166 2.496 0.261 3.855 0.261 15.772 0 28.558-12.786 28.558-28.558 0-13.447-9.293-24.723-21.807-27.756l-0.195-0.040-106.268-19.627 19.627-106.325c0.308-1.574 0.484-3.383 0.484-5.234 0-15.772-12.786-28.558-28.558-28.558-0.050 0-0.1 0-0.15 0h0.008z" />
<glyph unicode="&#xe62d;" glyph-name="sousuochanggui" d="M512 839.111c0.020 0 0.043 0 0.066 0 251.351 0 455.111-203.76 455.111-455.111 0-122.764-48.607-234.176-127.626-316.038l0.129 0.134 134.315-134.315c5.358-5.18 8.684-12.431 8.684-20.46 0-15.709-12.735-28.444-28.444-28.444-8.029 0-15.28 3.326-20.452 8.676l-0.008 0.008-136.192 136.021c-77.356-62.718-176.997-100.693-285.507-100.693-251.351 0-455.111 203.76-455.111 455.111 0 251.324 203.717 455.068 455.032 455.111h0.004zM512 782.222c-219.932 0-398.222-178.29-398.222-398.222s178.29-398.222 398.222-398.222v0c219.932 0 398.222 178.29 398.222 398.222s-178.29 398.222-398.222 398.222v0z" />
<glyph unicode="&#xe62e;" glyph-name="tixian" horiz-adv-x="1026" d="M511.876 896c282.732-0.251 511.835-229.508 511.835-512.274 0-40.187-4.627-79.293-13.379-116.814l0.68 3.462-75.36-0.057c9.783 36.286 14.958 74.506 14.958 113.807 0 242.004-196.788 438.735-438.735 438.735-242.004 0-438.735-196.788-438.735-438.735 0-242.004 196.788-438.735 438.735-438.735 39.358 0 77.521 5.176 113.807 14.958v-75.36c-34.077-8.079-73.202-12.711-113.409-12.711-282.771 0-512.031 229.11-512.274 511.825v0.023c0 282.385 229.491 511.876 511.876 511.876zM866.265 230.788l159.535-159.478-159.535-159.478-34.694 34.694 100.328 100.271h-283.807v49.026h283.807l-100.271 100.271 34.694 34.694zM618.29 620.952l55.965-44.533-97.825-110.452h106.072v-69.331h-134.055v-46.126h134.055v-69.274h-134.055v-115.4h-73.141v115.457h-134.055v69.274h134.055v46.069h-134.055v69.388h108.518l-97.882 110.338 56.022 44.476 105.105-118.585 105.219 118.642z" />
<glyph unicode="&#xe62f;" glyph-name="tianjia" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM540.444 611.556v-199.111h199.111v-56.889h-199.111v-199.111h-56.889v199.111h-199.111v56.889h199.111v199.111h56.889z" />
<glyph unicode="&#xe630;" glyph-name="tianjia2" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM544.028 640h-64.057v-223.972h-223.972v-64.057l223.972 0.057v-224.028h64.057l-0.057 224.028h224.028v63.943l-224.028 0.057v223.972z" />
<glyph unicode="&#xe631;" glyph-name="tianjia3" d="M551.822 782.222v-358.343l358.4-0.057v-79.644h-358.4v-358.4h-79.644l-0.057 358.4h-358.343v79.644l358.343 0.057 0.057 358.343h79.644z" />
<glyph unicode="&#xe632;" glyph-name="xia" d="M883.484 584.59c-6.835 6.883-16.303 11.144-26.766 11.144s-19.931-4.261-26.764-11.141l-297.759-299.977c-5.156-5.197-12.3-8.414-20.196-8.414s-15.040 3.217-20.194 8.412l-0.002 0.002-297.756 299.975c-6.832 6.866-16.289 11.115-26.738 11.115s-19.906-4.249-26.736-11.113l-0.002-0.002c-6.865-6.918-11.107-16.446-11.107-26.965s4.242-20.048 11.109-26.968l-0.002 0.002 331.093-333.54c10.308-10.376 24.585-16.799 40.363-16.799s30.054 6.423 40.36 16.796l331.096 333.543c6.865 6.918 11.107 16.446 11.107 26.965s-4.242 20.048-11.109 26.968l0.002-0.002z" />
<glyph unicode="&#xe633;" glyph-name="xiazaichanggui" d="M512 440.889c15.709 0 28.444-12.735 28.444-28.444v-445.326l152.576 152.576c5.149 5.142 12.258 8.322 20.11 8.322 15.718 0 28.46-12.742 28.46-28.46 0-7.866-3.191-14.987-8.35-20.138v0l-181.020-181.020c-10.293-10.284-24.508-16.644-40.208-16.644-13.382 0-25.684 4.62-35.399 12.353l0.116-0.089-4.949 4.38-181.020 181.020c-5.159 5.152-8.35 12.273-8.35 20.139 0 15.718 12.742 28.46 28.46 28.46 7.852 0 14.961-3.18 20.111-8.322v0l152.576-152.576v445.326c0 15.709 12.735 28.444 28.444 28.444v0zM512 896c0.008 0 0.018 0 0.028 0 149.010 0 275.73-95.436 322.37-228.518l0.731-2.394c108.069-18.993 189.134-112.15 189.134-224.24 0-121.755-95.646-221.17-215.901-227.208l-0.54-0.022-68.267-0.284c-0.017 0-0.037 0-0.057 0-15.658 0-28.355 12.677-28.387 28.328v0.117c0 15.709 12.735 28.444 28.444 28.444h56.889c0.049 0 0.107 0 0.164 0 94.257 0 170.667 76.41 170.667 170.667 0 90.792-70.896 165.026-160.349 170.36l-0.47 0.022-10.012 0.284-5.689-0.171c-27.418 130.795-141.804 227.607-278.801 227.607-111.503 0-208.027-64.132-254.698-157.523l-0.745-1.646-5.291-11.435 4.779 0.057c-0.085 0-0.186 0-0.287 0-109.966 0-199.111-89.145-199.111-199.111 0-106.225 83.183-193.022 187.963-198.804l0.513-0.023 39.367-0.171c14.978-0.976 26.757-13.363 26.757-28.501s-11.779-27.526-26.672-28.497l-0.085-0.004h-28.444c-141.375 0.013-255.978 114.623-255.978 256 0 126.67 91.999 231.853 212.825 252.375l1.51 0.212c59.649 104.659 170.491 174.080 297.548 174.080 0.033 0 0.067 0 0.1 0h-0.005z" />
<glyph unicode="&#xe634;" glyph-name="xiaoxichanggui" d="M113.778 564.167v-360.277c0-15.709 12.735-28.444 28.444-28.444v0h151.723l220.444-157.525c4.584-3.297 10.31-5.273 16.498-5.273 15.703 0 28.434 12.725 28.444 28.426v685.853c-0.010 15.702-12.741 28.427-28.444 28.427-6.188 0-11.914-1.976-16.583-5.331l0.085 0.058-220.444-157.468h-151.723c-15.709 0-28.444-12.735-28.444-28.444v0zM502.5 96.256l-190.407 135.964h-141.426v303.559h141.483l190.35 135.964v-575.431zM724.196 688.014l-25.998-50.631c92.803-48.024 155.136-143.305 155.136-253.144 0-0.084 0-0.168 0-0.252v0.013c0-0.009 0-0.019 0-0.030 0-110.18-62.657-205.725-154.282-252.948l-1.593-0.746 25.828-50.802c111.82 57.627 186.965 172.289 186.965 304.502 0 131.854-74.737 246.252-184.16 303.142l-1.894 0.896zM786.944 384c0 0.004 0 0.008 0 0.012 0 89.426-53.804 166.286-130.806 199.974l-1.404 0.547-22.357-52.281c57.933-25.302 97.687-82.096 97.687-148.176 0-66.319-40.042-123.285-97.269-148.040l-1.044-0.402 22.187-52.338c78.82 33.916 133.006 110.91 133.006 200.559 0 0.051 0 0.102 0 0.153v-0.008z" />
<glyph unicode="&#xe635;" glyph-name="xinzengchanggui" d="M796.444 725.333c94.257 0 170.667-76.41 170.667-170.667v0-455.111c0-94.257-76.41-170.667-170.667-170.667v0h-455.111c-94.257 0-170.667 76.41-170.667 170.667v0 455.111c0 94.257 76.41 170.667 170.667 170.667h455.111zM796.444 668.444h-455.111c-0.011 0-0.023 0-0.036 0-59.835 0-108.882-46.187-113.433-104.854l-0.024-0.39-0.284-8.533v-455.111c0-0.011 0-0.023 0-0.036 0-59.835 46.187-108.882 104.854-113.433l0.39-0.024 8.533-0.284h455.111c0.011 0 0.023 0 0.036 0 59.835 0 108.882 46.187 113.433 104.854l0.024 0.39 0.284 8.533v455.111c0 62.838-50.94 113.778-113.778 113.778v0zM711.111 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-483.556c-62.838 0-113.778-50.94-113.778-113.778v0-483.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 483.556c0 94.257 76.41 170.667 170.667 170.667h483.556zM568.889 497.778c15.709 0 28.444-12.735 28.444-28.444v-113.778h113.778c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444v0h-113.778v-113.778c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v113.778h-113.778c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444v0h113.778v113.778c0 15.709 12.735 28.444 28.444 28.444v0z" />
<glyph unicode="&#xe636;" glyph-name="yichuchanggui" d="M938.667 725.333c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-85.333v-682.667c0-31.419-25.47-56.889-56.889-56.889v0h-568.889c-31.419 0-56.889 25.47-56.889 56.889v0 682.667h-85.333c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h853.333zM796.444 668.444h-568.889v-682.667h568.889v682.667zM426.667 554.667c15.709 0 28.444-12.735 28.444-28.444v-398.222c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 398.222c0 15.709 12.735 28.444 28.444 28.444v0zM597.333 554.667c15.709 0 28.444-12.735 28.444-28.444v-398.222c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v398.222c0 15.709 12.735 28.444 28.444 28.444v0zM654.222 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-284.444c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h284.444z" />
<glyph unicode="&#xe637;" glyph-name="yichuchanggui2" d="M938.667 725.333c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-85.333v-682.667c0-31.419-25.47-56.889-56.889-56.889v0h-568.889c-31.419 0-56.889 25.47-56.889 56.889v0 682.667h-85.333c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h853.333zM369.778 554.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-398.222c0-0.016 0-0.034 0-0.052 0-15.709 12.735-28.444 28.444-28.444 13.918 0 25.501 9.996 27.962 23.201l0.027 0.176 0.455 5.12v398.222c0 15.709-12.735 28.444-28.444 28.444v0zM654.222 554.667c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-398.222c0-0.016 0-0.034 0-0.052 0-15.709 12.735-28.444 28.444-28.444 13.918 0 25.501 9.996 27.962 23.201l0.027 0.176 0.455 5.12v398.222c0 15.709-12.735 28.444-28.444 28.444v0zM654.222 839.111c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-284.444c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h284.444z" />
<glyph unicode="&#xe638;" glyph-name="yingyeshujuguanliputong" d="M910.222 668.444v-625.778c0-31.419-25.47-56.889-56.889-56.889h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 388.722l178.802-94.777 170.667 127.716 73.159-64.114 373.817 268.231zM853.333 544.825l-316.928-227.385-73.159 64.057-170.667-127.716-121.913 64.683v-247.353c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h625.778c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v473.714zM899.3 782.222c6.030 0 10.923-4.892 10.923-10.923 0-6.827-3.413-13.198-9.045-17.010l-364.715-247.637-73.216 65.82-170.667-131.186-178.802 97.564v71.282l178.802-103.481 170.667 131.413 73.159-65.991 198.997 131.755-37.49 26.795c-7.254 5.222-11.922 13.643-11.922 23.154 0 15.701 12.721 28.43 28.419 28.444h184.89z" />
<glyph unicode="&#xe639;" glyph-name="yonghuzhongxinputong" d="M939.236 1.707v58.88c0 78.677-82.261 142.45-221.298 210.944-32.085 16.043-95.972 41.415-97.849 42.325 0.796 4.494 3.527 9.956 9.273 17.92 3.816 5.202 7.36 9.648 11.062 13.954l-0.253-0.301 3.243 3.755c1.65 2.048 1.65 2.048 3.413 4.039l7.111 8.647c6.138 7.343 12.272 15.502 17.984 23.968l0.676 1.063c40.96 61.668 53.476 126.635 53.476 200.192 0 97.451-34.873 167.14-94.208 209.806-40.164 28.843-88.178 42.212-123.563 42.212h-20.48c-35.328 0-83.456-13.369-123.506-42.212-59.449-42.667-94.151-112.356-94.151-209.806 0-73.557 12.516-138.638 53.419-200.192 5.461-8.192 11.321-16.043 18.603-24.917l7.225-8.647 3.356-3.982 3.243-3.868c4.779-5.689 8.078-9.899 10.809-13.653 5.746-7.964 8.476-13.483 7.168-19.115 0.228 0.114-63.716-25.372-95.801-41.301-138.98-68.324-221.298-132.039-221.298-210.716v-131.698h69.689v131.812c0 36.466 71.168 91.705 181.646 146.148 29.013 14.393 92.558 39.765 95.687 41.188 27.42 13.483 42.041 32.882 42.041 63.204 0 23.268-8.306 42.894-23.438 63.886-4.827 6.597-9.303 12.229-13.98 17.684l-13.099 15.653c-4.753 5.673-9.52 11.976-13.973 18.512l-0.534 0.831c-31.118 46.876-41.244 99.214-41.244 159.63 0 73.956 23.723 121.685 64.341 150.756 27.534 19.74 61.838 29.298 83.797 29.298h20.366c22.016 0 56.32-9.557 83.854-29.298 40.448-29.070 64.284-76.8 64.284-150.756 0-60.416-10.012-112.754-41.244-159.63-3.982-5.973-8.476-12.060-14.45-19.342l-13.426-16.043c-5.632-6.827-9.785-12.004-13.653-17.294-15.303-20.878-23.438-40.619-23.438-63.886 0-30.436 14.564-49.721 42.041-63.147 3.015-1.479 66.731-26.852 95.687-41.244 110.478-54.443 181.646-109.682 181.646-146.204v-131.868h69.689v35.897c0.114 2.162 0.114 2.162 0.114 10.923v26.055zM788.366 628.907h178.745v-71.851h-178.802v71.794zM792.974 485.092h174.137v-71.851h-174.194v71.794zM862.663 341.39h104.448v-71.851h-104.505v71.794z" />
<glyph unicode="&#xe63a;" glyph-name="you" d="M311.41 755.484c-6.883-6.835-11.144-16.303-11.144-26.766s4.261-19.931 11.141-26.764l299.977-297.759c5.197-5.156 8.414-12.3 8.414-20.196s-3.217-15.040-8.412-20.194l-0.002-0.002-299.975-297.756c-6.866-6.832-11.115-16.289-11.115-26.738s4.249-19.906 11.113-26.736l0.002-0.002c14.905-14.848 39.026-14.791 53.931 0l333.54 331.093c10.376 10.308 16.799 24.585 16.799 40.363s-6.423 30.054-16.796 40.36l-333.543 331.096c-6.918 6.865-16.446 11.107-26.965 11.107s-20.048-4.242-26.968-11.109l0.002 0.002z" />
<glyph unicode="&#xe63b;" glyph-name="xiaoxitixing2" d="M625.721-13.769l-0.284-8.529c-4.316-59.259-53.454-105.701-113.438-105.701-62.806 0-113.721 50.915-113.721 113.721 0 0.179 0 0.358 0.001 0.536v-0.028h227.442zM512 725.418c188.419 0 341.163-152.744 341.163-341.163v0-113.721l37.414-18.764c45.587-23.15 76.285-69.681 76.307-123.384v-0.003c0-47.105-38.186-85.291-85.291-85.291h-739.187c-47.105 0-85.291 38.186-85.291 85.291v0c0 52.312 29.567 100.075 76.307 123.387l37.414 18.764v113.721c0 188.419 152.744 341.163 341.163 341.163v0zM220.078 808.321c3.563 1.728 7.75 2.738 12.173 2.738 15.702 0 28.43-12.729 28.43-28.43 0-11.893-7.303-22.081-17.669-26.323l-0.19-0.069c-76.819-33.605-118.839-86.997-137.432-175.927-2.794-13.003-14.192-22.609-27.833-22.609-15.705 0-28.437 12.732-28.437 28.437 0 2.064 0.22 4.076 0.637 6.015l-0.034-0.187c22.289 106.557 76.307 175.244 170.354 216.354zM807.675 808.321c84.267-36.846 140.559-113.38 170.013-214.251 0.723-2.385 1.139-5.127 1.139-7.965 0-15.702-12.729-28.43-28.43-28.43-12.867 0-23.737 8.547-27.243 20.273l-0.052 0.201c-25.076 86.030-71.303 148.861-138.171 178.087-10.556 4.311-17.859 14.498-17.859 26.392 0 15.702 12.729 28.43 28.43 28.43 4.423 0 8.61-1.010 12.343-2.812l-0.17 0.074zM512 896c62.806 0 113.721-50.915 113.721-113.721v0-19.446c-33.78 12.321-72.778 19.446-113.44 19.446-0.099 0-0.198 0-0.297 0h0.016c-0.131 0-0.287 0-0.442 0-40.602 0-79.544-7.104-115.652-20.138l2.373 0.748v19.389c0 62.806 50.915 113.721 113.721 113.721v0z" />
<glyph unicode="&#xe63c;" glyph-name="yundanguanliputong" d="M227.556 839.111v-56.889h-28.444c-0.003 0-0.006 0-0.009 0-13.899 0-25.47-9.969-27.952-23.148l-0.028-0.177-0.455-5.12v-739.556c0-0.003 0-0.006 0-0.009 0-13.899 9.969-25.47 23.148-27.952l0.177-0.028 5.12-0.455h625.778c0.003 0 0.006 0 0.009 0 13.899 0 25.47 9.969 27.952 23.148l0.028 0.177 0.455 5.12v739.556c0 15.709-12.735 28.444-28.444 28.444v0h-28.444v56.889h56.889c31.419 0 56.889-25.47 56.889-56.889v0-796.444c0-31.419-25.47-56.889-56.889-56.889v0h-682.667c-31.419 0-56.889 25.47-56.889 56.889v0 796.444c0 31.419 25.47 56.889 56.889 56.889v0h56.889zM739.556 213.333v-56.889h-455.111v56.889h455.111zM485.262 551.31l80.213-80.27-184.32-184.491-96.711-16.327 16.327 96.654 184.434 184.377zM739.556 327.111v-56.889h-227.556v56.889h227.556zM545.451 611.556l80.327-80.327-40.164-40.164-80.327 80.327 40.164 40.164zM739.556 839.111v-56.889c0-31.419-25.47-56.889-56.889-56.889v0h-341.333c-31.419 0-56.889 25.47-56.889 56.889v0 56.889h455.111z" />
<glyph unicode="&#xe63d;" glyph-name="zhankai" d="M824.889 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v739.556c0 15.709 12.735 28.444 28.444 28.444v0zM493.796 190.748c4.894 4.098 11.258 6.588 18.203 6.588 8.759 0 16.592-3.959 21.81-10.184l0.036-0.044 128.91-154.681c4.099-4.895 6.588-11.259 6.588-18.204 0-15.706-12.729-28.438-28.433-28.444h-257.821c-15.705 0.006-28.434 12.739-28.434 28.444 0 6.946 2.489 13.31 6.625 18.249l-0.036-0.045 128.91 154.738c1.115 1.31 2.306 2.483 3.593 3.545l0.048 0.039zM199.111 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 739.556c0 15.709 12.735 28.444 28.444 28.444v0zM512 782.222c15.709 0 28.444-12.735 28.444-28.444v0-455.111c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 455.111c0 15.709 12.735 28.444 28.444 28.444v0z" />
<glyph unicode="&#xe63e;" glyph-name="zhedie" d="M824.889 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v739.556c0 15.709 12.735 28.444 28.444 28.444v0zM512 497.778c15.709 0 28.444-12.735 28.444-28.444v-455.111c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 455.111c0 15.709 12.735 28.444 28.444 28.444v0zM199.111 782.222c15.709 0 28.444-12.735 28.444-28.444v0-739.556c0-15.709-12.735-28.444-28.444-28.444s-28.444 12.735-28.444 28.444v0 739.556c0 15.709 12.735 28.444 28.444 28.444v0zM530.204 759.637c1.333-1.116 2.525-2.308 3.605-3.597l0.036-0.044 128.91-154.681c4.099-4.895 6.588-11.259 6.588-18.204 0-15.706-12.729-28.438-28.433-28.444h-257.821c-15.705 0.006-28.434 12.739-28.434 28.444 0 6.946 2.489 13.31 6.625 18.249l-0.036-0.045 128.91 154.738c5.253 6.25 13.075 10.195 21.818 10.195 6.958 0 13.332-2.498 18.275-6.647l-0.044 0.036z" />
<glyph unicode="&#xe63f;" glyph-name="zhengque" d="M391.964 165.604l-201.216 201.159c-5.358 5.18-8.684 12.431-8.684 20.46 0 15.709 12.735 28.444 28.444 28.444 8.029 0 15.28-3.326 20.452-8.676l181.028-181.028 422.343 422.343c5.11 4.94 12.080 7.985 19.761 7.985 15.709 0 28.444-12.735 28.444-28.444 0-7.681-3.044-14.651-7.992-19.769l-442.474-442.474c-5.147-5.146-12.257-8.328-20.11-8.328s-14.963 3.183-20.11 8.328v0z" />
<glyph unicode="&#xe640;" glyph-name="zhanghuxinxi" d="M853.333 839.111c62.838 0 113.778-50.94 113.778-113.778v0-682.667c0-62.838-50.94-113.778-113.778-113.778v0h-682.667c-62.838 0-113.778 50.94-113.778 113.778v0 682.667c0 62.838 50.94 113.778 113.778 113.778v0zM853.333 782.222h-682.667c-31.419 0-56.889-25.47-56.889-56.889v0-682.667c0-31.419 25.47-56.889 56.889-56.889v0h682.667c31.419 0 56.889 25.47 56.889 56.889v0 682.667c0 31.419-25.47 56.889-56.889 56.889v0zM455.111 156.444v-56.889h-284.444v56.889h284.444zM853.333 270.222v-56.889h-682.667v56.889h682.667zM853.333 384v-56.889h-284.444v56.889h284.444zM345.145 668.444c15.644 0 34.475-5.916 49.38-16.27 24.519-17.067 37.66-44.601 37.66-80.668 0-30.379-6.087-53.988-20.992-75.719l-4.551-6.201-12.004-14.336 16.213-6.599 11.662-5.12 14.791-7.168c50.916-25.657 74.695-48.356 74.695-75.947l0.057-47.787-5.518-5.518h-330.354l-5.518 5.518v47.787c0 29.582 27.307 53.476 85.902 81.522l4.153 1.82 12.402 4.949c3.527 1.365 11.776 4.494 15.019 4.779l1.308-0.171-1.707 2.276-16.27 20.196c-14.905 21.732-20.992 45.34-20.992 75.719 0 36.068 13.084 63.602 37.66 80.668 14.905 10.354 33.735 16.27 49.38 16.27h7.623zM345.145 631.353h-7.623c-10.617-0.602-20.303-4.133-28.394-9.789l0.178 0.118c-14.336-9.899-21.732-26.055-21.732-50.176 0-22.756 4.267-39.879 14.45-54.784l2.276-3.015 13.141-15.929c6.656-8.818 9.899-17.067 9.899-26.396 0-11.093-4.722-19.342-13.881-25.202l-5.916-3.072-13.028-5.291-18.375-7.737-12.459-6.030c-31.915-16.156-52.338-31.744-55.467-41.188l-0.398-2.446v-15.872l267.093-0.341v16.213c0 9.102-21.106 25.998-55.922 43.634l-8.988 4.437-12.686 5.575-22.187 9.045-5.86 3.072c-8.404 4.962-13.953 13.974-13.953 24.281 0 0.324 0.005 0.646 0.016 0.968l-0.001-0.047c0 7.452 2.048 14.222 6.258 21.163l3.641 5.291 13.141 15.815 2.276 3.072c10.183 14.905 14.45 31.972 14.45 54.784 0 24.121-7.396 40.277-21.732 50.233-6.531 4.469-14.281 7.685-22.64 9.111l-0.343 0.048-5.234 0.455zM853.333 554.667v-113.778h-113.778v113.778h113.778zM682.667 554.667v-113.778h-113.778v113.778h113.778z" />
<glyph unicode="&#xe641;" glyph-name="zhengque2" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448v0c247.424 0 448 200.576 448 448s-200.576 448-448 448v0zM747.065 539.42c5.146-5.147 8.328-12.257 8.328-20.11s-3.183-14.963-8.328-20.11l-281.6-281.6c-5.147-5.146-12.257-8.328-20.11-8.328s-14.963 3.183-20.11 8.328l-120.661 120.718c-5.358 5.18-8.684 12.431-8.684 20.46 0 15.709 12.735 28.444 28.444 28.444 8.029 0 15.28-3.326 20.452-8.676l100.531-100.588 261.518 261.461c5.147 5.146 12.257 8.328 20.11 8.328s14.963-3.183 20.11-8.328v0z" />
<glyph unicode="&#xe642;" glyph-name="zhengque3" d="M512 896c282.77 0 512-229.23 512-512s-229.23-512-512-512v0c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM776.42 558.876c-5.786 5.789-13.782 9.37-22.613 9.37s-16.827-3.581-22.613-9.37l-294.173-294.173-113.152 113.152c-5.789 5.782-13.784 9.358-22.613 9.358-17.673 0-32-14.327-32-32 0-8.844 3.587-16.849 9.387-22.641v0l138.24-138.24c5.15-5.163 12.271-8.357 20.139-8.357s14.989 3.194 20.138 8.356l319.261 319.261c5.793 5.795 9.375 13.8 9.375 22.642s-3.583 16.846-9.375 22.642v0z" />
<glyph unicode="&#xe643;" glyph-name="zuo" d="M712.59 12.516c6.883 6.835 11.144 16.303 11.144 26.766s-4.261 19.931-11.141 26.764l-299.977 297.759c-5.197 5.156-8.414 12.3-8.414 20.196s3.217 15.040 8.412 20.194l0.002 0.002 299.975 297.756c6.866 6.832 11.115 16.289 11.115 26.738s-4.249 19.906-11.113 26.736l-0.002 0.002c-6.918 6.865-16.446 11.107-26.965 11.107s-20.048-4.242-26.968-11.109l0.002 0.002-333.54-331.036c-10.376-10.308-16.799-24.585-16.799-40.363s6.423-30.054 16.796-40.36l333.543-331.096c14.905-14.791 39.026-14.791 53.931 0z" />
<glyph unicode="&#xe644;" glyph-name="date_norshijian" d="M512 839.111c-251.221 0-455.111-203.89-455.111-455.111s203.89-455.111 455.111-455.111 455.111 203.89 455.111 455.111-203.89 455.111-455.111 455.111zM512-14.222c-219.534 0-398.222 178.688-398.222 398.222s178.688 398.222 398.222 398.222 398.222-178.688 398.222-398.222-178.688-398.222-398.222-398.222zM529.636 601.316l-4.21-193.252c-0.008-0.349-0.012-0.76-0.012-1.172 0-15.605 6.283-29.743 16.458-40.021l-0.005 0.005 127.488-129.138c5.604-5.669 9.066-13.467 9.066-22.073 0-8.663-3.508-16.506-9.18-22.187v0c-5.642-5.642-13.436-9.131-22.044-9.131s-16.403 3.49-22.044 9.131l-135.168 135.168c-10.296 10.293-16.665 24.512-16.668 40.22v232.449c0 15.709 12.735 28.444 28.444 28.444v0c0.002 0 0.004 0 0.006 0 15.395 0 27.876-12.48 27.876-27.876 0-0.2-0.002-0.4-0.006-0.599v0.030z" />
<glyph unicode="&#xe645;" glyph-name="Positioning_norbeifen" d="M113.778-71.111h354.19v411.079h-411.079v-354.19c0-31.419 25.47-56.889 56.889-56.889v0zM151.495 199.908l41.529 41.529 67.47-67.47 67.413 67.47 41.529-41.529-67.47-67.413 67.47-67.47-41.529-41.529-67.356 67.527-67.47-67.47-41.529 41.529 67.47 67.47-67.47 67.413zM556.032 839.111v-411.079h411.079v354.19c0 31.419-25.47 56.889-56.889 56.889h-354.19zM879.047 604.217h-234.951v58.709h234.951v-58.709zM56.889 428.032h411.079v411.079h-354.19c-31.419 0-56.889-25.47-56.889-56.889v0-354.19zM144.953 662.983h88.121v88.007h58.709v-88.121h88.064v-58.709h-88.007v-88.064h-58.766v88.064h-88.121v58.766zM556.032-71.111h354.19c31.419 0 56.889 25.47 56.889 56.889v0 354.19h-411.079v-411.079zM761.572 2.276c-24.35 0-44.089 19.739-44.089 44.089s19.739 44.089 44.089 44.089v0c24.35 0 44.089-19.739 44.089-44.089s-19.739-44.089-44.089-44.089v0zM761.572 266.524c24.318 0 44.032-19.714 44.032-44.032s-19.714-44.032-44.032-44.032v0c-24.318 0-44.032 19.714-44.032 44.032s19.714 44.032 44.032 44.032v0zM644.153 163.783h234.894v-58.709h-234.951v58.709z" />
<glyph unicode="&#xe646;" glyph-name="shezhibeifen" d="M617.131 896l34.873-119.865c12.914-4.722 25.6-9.956 38.059-15.929l109.568 60.132 148.708-148.708-60.245-109.682c5.973-12.345 11.207-25.031 15.815-37.831l120.092-34.987v-210.261l-120.092-34.987c-5.699-15.67-10.993-28.060-16.831-40.138l1.129 2.592 60.132-110.080-148.708-148.708-109.227 60.302c-9.782-4.872-22.344-10.226-35.208-14.955l-2.851-0.917-35.214-119.979h-210.261l-34.645 119.865c-15.61 5.55-28.174 10.887-40.384 16.838l2.326-1.023-109.909-60.018-148.708 148.708 60.473 109.454c-4.676 9.453-10.008 21.936-14.784 34.69l-1.031 3.141-120.206 35.271v210.318l120.036 34.532c4.665 12.914 9.899 25.6 15.872 38.059l-60.302 109.796 148.821 148.708 109.511-60.132c12.345 5.973 25.145 11.207 38.116 15.929l34.759 119.865h210.261zM512 668.444c-76.004 0-147.399-29.582-201.159-83.285-51.448-51.195-83.286-122.055-83.286-200.352 0-0.284 0-0.568 0.001-0.851v0.044c0-76.004 29.582-147.399 83.285-201.159 51.195-51.448 122.055-83.286 200.352-83.286 0.284 0 0.568 0 0.851 0.001h-0.044c76.004 0 147.399 29.582 201.159 83.285 51.448 51.195 83.286 122.055 83.286 200.352 0 0.284 0 0.568-0.001 0.851v-0.044c0 76.004-29.582 147.399-83.285 201.159-51.195 51.448-122.055 83.286-200.352 83.286-0.284 0-0.568 0-0.851-0.001h0.044zM512 554.667c94.094 0 170.667-76.572 170.667-170.61-0.162-94.169-76.489-170.456-170.658-170.553h-0.009c-94.094 0-170.667 76.516-170.667 170.553 0.129 94.193 76.469 170.513 170.657 170.61h0.009z" />
</font></defs></svg>
\ No newline at end of file
No preview for this file type
No preview for this file type
import { createIconSetFromIcoMoon } from 'react-native-vector-icons'
import config from './selection.json'
const Icons = createIconSetFromIcoMoon(config)
export { Icons }
\ No newline at end of file
This diff could not be displayed because it is too large.
import React from 'react'
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { CardStyleInterpolators } from '@react-navigation/stack'
import { setUnit } from '../libs/utils'
import { Icons } from '../assets/icons'
const Style = StyleSheet.create({
headerStyle: {
backgroundColor: Colors.white
}
})
const headerStyle = {
headerTitleAlign: 'center',
headerStyle: Style.headerStyle, // 标题栏样式
headerTintColor: '#333333', // 标题栏字体颜色
headerTitleStyle: { fontSize: setUnit(38) },
headerBackImage: () => (<Icons name="zuo" size={30} color="#333" />), // 标题栏返回图标
cardStyleInterpolator: CardStyleInterpolators.forHorizontalIOS // 设置左右滑动
}
export { headerStyle }
\ No newline at end of file
export const APP = {
/** @description token存储的名称 */
tokenName: 'jwt',
/** @description token在存储的时长,单位 天 */
tokenExpires: 7,
/**@description 初始的HTTP请求的全局header头*/
header: { },
/**@description API基础请求地址*/
baseUrl: {
dev: 'http://gateway-dev.b2bwings.com/',
pro: 'https://gateway.b2bwings.com/'
},
/**@description 应用的登陆API的PATH*/
loginPath: '/user/sysLogin/login',
/**@description 401页面地址,用于提醒用户登陆状态失效*/
error404: '/404',
/**@description 静态资源目录,必须。用于菜单图标显示*/
STATIS_URL: 'https://b2bwings-system-image.oss-cn-shenzhen.aliyuncs.com/',
/**@description tab按钮颜色配置*/
tabConfig: {
activeTintColor: '#6E4DB3',
inactiveTintColor: 'gray'
}
}
\ No newline at end of file
export { APP } from './app'
export const UI_WIDTH = 750
\ No newline at end of file
import http from './http-request'
import { APP } from '../config'
const FETCH = new http(process.env.NODE_ENV === 'development' ?
APP.baseUrl.dev :
APP.baseUrl.pro
)
export { FETCH }
\ No newline at end of file
import { Alert } from 'react-native'
import axios, { CancelToken } from 'axios'
import { APP } from '../config'
class HttpRequest {
constructor (baseUrl, loginUrl = APP.loginPath) {
this.baseUrl = baseUrl
this.loginUrl = loginUrl
this.header = { ...APP.header }
this.instance = null
this.init()
}
/**初始化 */
init() {
let instance = axios.create({ baseURL: this.baseUrl, headers: this.header })
this.interceptors(instance)
this.instance = instance
}
/**绑定请求拦截器 */
interceptors (instance) {
// 请求
instance.interceptors.request.use(config => {
return config
}, error => {
if (process.env.NODE_ENV === 'development') console.error(error)
return Promise.reject(error)
})
// 响应
instance.interceptors.response.use(res => {
return this.handleRespone(res)
}, error => {
if (process.env.NODE_ENV === 'development') console.error(error)
return Promise.reject(error.response ? `发生错误,错误代码:${error.response.status};详情:${error.response.message}` : error.message + "")
})
}
/**请求 */
async request (options) {
return this.instance(options)
}
/**
* 可取消的请求,返回一个source对象对象。可通过 source.cancel(msg) 取消此请求
* @param {*} options
* @param {function} successCallback
* @param {function} errorCallback
*/
sourceRequest(options, successCallback, errorCallback) {
const source = CancelToken.source()
options = Object.assign(options, { cancelToken: source.token })
this.instance(options)
.then(successCallback)
.catch(errorCallback)
return source
}
/**
* 设置请求头
* @param {string} key
* @param {any} value
*/
setHeader(key, value) {
this.instance.defaults.headers.common[key] = value
}
/**
* 设置URL
* @param {string} url
*/
setBaseUrl(url) {
this.instance.defaults.baseURL = url
}
/**
* 处理响用体
* @param {response} res
*/
handleRespone(res) {
const { code, message, data } = res.data
switch(code) {
case 200:
if (res.config.url === this.loginUrl) this.saveLoginInfo(data.jwt, data.user.vid, res.config.data) //保存登陆数据
return data
case 401:
Alert.alert('登陆状态失效,请重新登陆')
break
case 403:
return Promise.reject(`发生错误,错误代码: ${code};详情:无权限使用此功能`)
default:
if (process.env.NODE_ENV === 'development') console.warn(JSON.stringify(res))
return Promise.reject(`发生错误,错误代码: ${code};详情:${message}`)
}
}
/**
* 保存登陆数据
* @param {*} jwt token
* @param {*} data 请求数据体
*/
saveLoginInfo(jwt, vid, data) {
data = JSON.parse(data)
const { applyCarrier, applyPlatform } = data
// store.commit('SYSTEM_LOGIN', { jwt , vid, applyCarrier, applyPlatform})
}
}
export default HttpRequest
import { Dimensions } from 'react-native'
import { UI_WIDTH } from '../config'
import DeviceInfo from 'react-native-device-info'
/** 窗口属性 */
const WINDOWS = Dimensions.get('window')
/** UI图缩放比例 */
const UI_SACEL = WINDOWS.width / UI_WIDTH
/**
* 设置px单位
* @param {*} num
*/
export const setUnit = num => {
return num * UI_SACEL
}
/** 获取版本号 */
export const getVersionCode = async () => await DeviceInfo.getBuildNumber()
/** 获取版本名称 */
export const getVersion = async () => await DeviceInfo.getVersion()
// 路由配置
import React, { createRef } from 'react'
import { NavigationContainer } from '@react-navigation/native'
import { Route } from './route'
const navigateRef = createRef()
/** 路由视图 */
const RouterView: () => React$Node = () => {
return (
<NavigationContainer ref={navigateRef}>
<Route />
</NavigationContainer>
)
}
/**
* 直接导航方式,用于无法访问导航道具场景下使用
* @param {*} name
* @param {*} params
*/
export const navigate = (name, params) => {
navigateRef.current?.navigate(name, params)
}
export { RouterView }
// 路由配置
import React from 'react'
import { createStackNavigator } from '@react-navigation/stack'
import { headerStyle } from '../../commo/theme'
import { TabRouter } from '../tab'
import { Error404 } from '../../views/error/404'
import Login from '../../views/login'
import Shopping from '../../views/shopping'
import Play from '../../views/play'
const Stack = createStackNavigator()
const Route: () => React$Node = () => {
return (
<Stack.Navigator initialRouteName="Index" screenOptions={{ ...headerStyle }} mode={ 'card' } >
<Stack.Screen options={{ headerShown: false }} name="Index" component={ TabRouter } />
<Stack.Screen name="Error_404" component={ Error404 } />
<Stack.Screen name="login" options={{ title: '登陆' }} component={ Login } />
<Stack.Screen name="shopping" options={{ title: '商品详情' }} component={ Shopping } />
<Stack.Screen name="play" options={{ title: '支付' }} component={ Play } />
</Stack.Navigator>
)
}
export { Route }
// 底部tab路由配置
import React from 'react'
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'
import { APP } from '../../config'
import { Icons } from '../../assets/icons'
import { Home } from '../../views/home'
import Me from '../../views/me'
const Tab = createBottomTabNavigator() // 创建tab栈堆
/** 选项配置函数 */
const tabScreen = props => {
const route = props.route
return {
tabBarIcon: ({color, size}) => {
switch (route.name) {
case 'home':
return <Icons name="shouye" color={ color } size={ size } />
case 'me':
return <Icons name="qudaoshangguanli" color={ color } size={ size } />
}
}
}
}
const TabRouter: () => React$Node = () => {
return (
<Tab.Navigator screenOptions={ tabScreen } tabBarOptions={ APP.tabConfig }>
<Tab.Screen name="home" component={ Home } />
<Tab.Screen name="me" component={ Me } />
</Tab.Navigator>
)
}
export { TabRouter }
\ No newline at end of file
import { init } from '@rematch/core'
import models from './modules'
const store = init({
models
})
export const { dispatch, getState } = store
export default store
\ No newline at end of file
import user from './user'
export default {
user
}
\ No newline at end of file
export default {
// 数据
state: {
userInfo: false,
user: {
name: '',
phone: ''
}
},
// 同步
reducers: {
loginSuccess(state, user) {
return {
userInfo: true,
user: user
}
}
},
// 异步
effects: {
}
}
\ No newline at end of file
import React from 'react'
import { SafeAreaView, View, Text } from 'react-native'
const Error404: () => React$Node = () => {
return (
<SafeAreaView style={{ backgroundColor: '#ffffff', flex: 1 }} >
<View>
<Text>错误,404</Text>
</View>
</SafeAreaView>
)
}
export { Error404 }
\ No newline at end of file
import Page from './view'
import { Platform } from 'react-native'
export const Home = Page
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
const styles = StyleSheet.create({
scrollView: {
flex: 1,
backgroundColor: "#6E4DB3"
},
body: {
flex: 1
},
h1: {
fontWeight: '400',
textAlign: 'center',
fontSize: 40,
// paddingTop: 20,
paddingBottom: 20,
color: Colors.white
},
button: {
marginBottom: 20,
marginTop: 20
}
})
export { styles }
\ No newline at end of file
import React, { useState, useEffect } from 'react';
import {
ScrollView,
View,
Text,
Button
} from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context'
import { styles } from './style'
const Page: () => React$Node = ({ navigation }) => {
const [ list, setList ] = useState([])
useEffect(() => {
setList( [ "荔枝-妃子笑 (演示路由跳转)", "荔枝-白糖婴 (演示路由跳转)" ])
}, []) // effect只执行一次
const go = params => navigation.navigate('shopping', params)
return(
<SafeAreaView style={styles.scrollView}>
<ScrollView
contentInsetAdjustmentBehavior="automatic"
style={{ flex: 1 }}>
<View>
<Text style={ styles.h1 }>信巴迪-基础环境</Text>
</View>
{list.map(e => (
<Button title={e} onPress={ () => go({ name: e }) } key={e} />
))}
</ScrollView>
</SafeAreaView>
)
}
export default Page
\ No newline at end of file
import Page from './view'
import { connect } from 'react-redux'
const mapState = state => ({})
const mapDispatch = dispatch => ({
loginSuccess: dispatch.user.loginSuccess
})
export default connect(mapState, mapDispatch)(Page)
\ No newline at end of file
import { StyleSheet } from 'react-native'
import { setUnit } from '../../libs/utils'
export const styles = StyleSheet.create({
body: {
flex: 1,
backgroundColor: 'rgba(245,246,247,1)',
alignItems: 'center'
},
input: {
width: '100%',
height: setUnit(100),
backgroundColor: 'rgb(255,255,255)',
borderTopColor: '#DDDDDD',
borderBottomColor: '#DDDDDD',
borderTopWidth: 1,
borderBottomWidth: 1,
fontSize: setUnit(29),
padding: setUnit(30),
color: 'rgb(0,0,0)'
},
button: {
width: setUnit(400),
height: setUnit(60),
paddingTop: setUnit(20)
},
loading: {
position: 'absolute',
top: 0,
left: 0,
zIndex: 5,
width: '100%',
height: '100%'
}
})
\ No newline at end of file
import React, { useState } from 'react'
import { View, TextInput, Button, Alert, ActivityIndicator } from 'react-native'
import { styles } from './style'
import { login } from '../../api/user'
const Page: () => React$Node = ({ navigation ,loginSuccess = () => {} }) => {
const [name, setName ] = useState('')
const [passwd, setPasswd] = useState('')
const [show, setShow ] = useState(false)
const go = () => {
setShow(true)
login(name, passwd)
.then(res => {
setShow(false)
loginSuccess(res.user)
navigation.goBack()
})
.catch(err => {
setShow(false)
Alert.alert(err)
})
}
return (
<View style={styles.body}>
{show && <ActivityIndicator size={40} style={styles.loading} /> }
<TextInput style={styles.input} value={ name } onChangeText={val => setName(val)} clearButtonMode="unless-editing" placeholder="输入账户" />
<TextInput style={styles.input} value={ passwd } onChangeText={val => setPasswd(val)} clearButtonMode="unless-editing" secureTextEntry={true} placeholder="输入密码"/>
<View style={styles.button}>
<Button title="登陆" onPress={ go } />
</View>
</View>
)
}
export default Page
\ No newline at end of file
import page from './view'
import { connect } from 'react-redux'
const mapState = state => ({
userInfo: state.user.userInfo,
user: state.user.user
})
const Me = connect(mapState)(page)
export default Me
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { setUnit } from '../../libs/utils'
const styles = StyleSheet.create({
body: {
backgroundColor: Colors.white,
flex: 1,
justifyContent: 'center',
alignItems: 'center'
},
headerImg: {
width: setUnit(200),
height: setUnit(200),
borderColor: 'rgba(0,0,0,.3)',
borderWidth: 1,
borderRadius: setUnit(100),
},
title: {
fontSize: setUnit(29),
paddingTop: setUnit(20),
paddingBottom: setUnit(20),
color: 'rgba(0,0,0,.9)'
},
tips: {
fontSize: setUnit(20),
color: 'rgba(0,0,0,.3)'
},
appVersion: {
paddingTop: setUnit(100)
},
appVersionTitle: {
fontSize: setUnit(16),
color: 'rgba(0,0,0,.2)'
}
})
export { styles }
\ No newline at end of file
import React, { useState } from 'react'
import { Text, Image, Button, View } from 'react-native'
import { SafeAreaView } from 'react-native-safe-area-context'
import { styles } from './style'
import { getVersionCode, getVersion } from '../../libs/utils'
const Page: () => React$Node = ({ navigation, userInfo, user }) => {
const [version, setVersion] = useState(null)
const [versionCode, setVersionCode] = useState(null)
const imageConfig = {
uri: userInfo ? "https://images.b2bwings.com/10170109-22af-467b-8b18-008ec4d09724.jpg" : null
}
const name = userInfo ? user.name : '未登录'
versionCode === null && getVersionCode().then(res => setVersionCode(res))
version === null && getVersion().then(res => setVersion(res))
return (
<SafeAreaView style={styles.body}>
<Image source={imageConfig} style={styles.headerImg} />
<Text style={styles.title}>{name}</Text>
{ userInfo && <Text style={styles.tips}>{user.phone}</Text> }
{ userInfo && <Text style={styles.tips}>职位:{user.position}</Text> }
{ userInfo ? <></> :<Button title="点击登陆" onPress={() => navigation.navigate('login')} />}
<View style={styles.appVersion}>
<Text style={styles.appVersionTitle} >APP版本:{version}</Text>
<Text style={styles.appVersionTitle} >APP版本号: {versionCode}</Text>
</View>
</SafeAreaView>
)
}
export default Page
import Page from './view'
export default Page
\ No newline at end of file
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { setUnit } from '../../libs/utils'
export const styles = StyleSheet.create({
body: {
flex: 1,
backgroundColor: 'rgba(0,0,0,.08)',
paddingLeft: setUnit(75),
paddingRight: setUnit(75),
paddingTop: setUnit(20)
},
passwdBox: {
width: setUnit(600),
marginTop: setUnit(20),
height: setUnit(100),
backgroundColor: Colors.white,
position: 'relative',
borderColor: 'rgba(0,0,0,.4)',
borderWidth: 3,
marginBottom: setUnit(100)
},
passwdItem: {
height: setUnit(90),
width: setUnit(97),
backgroundColor: Colors.white,
position: 'absolute',
top: 0,
borderRightWidth: 3,
borderRightColor: 'rgba(0,0,0,.4)',
zIndex: 1,
justifyContent: 'center',
alignItems: 'center'
},
itemIcon: {
width: setUnit(20),
height: setUnit(20),
backgroundColor: '#000000',
borderRadius: 20
},
passwd: {
height: setUnit(100),
width: setUnit(100),
borderLeftColor: 'rgba(0,0,0,0)',
borderLeftWidth: 3,
borderBottomColor: 'rgba(0,0,0,.4)',
borderBottomWidth: 3,
opacity: 0,
color: 'rgba(0,0,0,0)',
zIndex: 2
}
})
\ No newline at end of file
import React, { useState } from 'react'
import { TextInput, View, Text, Button, Alert } from 'react-native'
import { styles } from './styles'
import { setUnit } from '../../libs/utils'
const Page: () => React$Node = () => {
const [passwd, setPasswd] = useState('')
const change = text => {
setPasswd(text)
}
const list = [0,0,0,0,0,0]
const item = list.map((e, k) => {
return (
<View style={{ ...styles.passwdItem, left: setUnit(k * 100) }} key={k} >
{ passwd.length > k && <Text style={styles.itemIcon} />}
</View>
)
})
const submit = () => {
if (passwd.length >= 6) Alert.alert('支付密码不正确')
else Alert.alert('请输入6位数密码')
}
return (
<View style={styles.body}>
<View style={styles.passwdBox}>
{item}
<TextInput value={passwd} secureTextEntry={true} maxLength={6} onChangeText={change} keyboardType="numeric" style={styles.passwd} />
</View>
<Button title="购买" onPress={submit} />
</View>
)
}
export default Page
import Page from './view'
import { connect } from 'react-redux'
const mapState = state => ({
userInfo: state.user.userInfo
})
export default connect(mapState)(Page)
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { setUnit } from '../../libs/utils'
export const styles = StyleSheet.create({
body: {
backgroundColor: Colors.white,
flex: 1
},
title: {
fontSize: setUnit(40),
textAlign: 'center',
padding: setUnit(20),
paddingBottom: setUnit(80)
}
})
\ No newline at end of file
import React from 'react'
import { View, Text, Button } from 'react-native'
import { styles } from './styles'
const Page: () => React$Node = ({ route, userInfo = false, navigation }) => {
const goShop = () => userInfo ? navigation.navigate('play') : navigation.navigate('login')
return (
<View style={styles.body}>
<Text style={styles.title}>商品名称:{route.params.name}</Text>
<Button title="购买" onPress={goShop} />
</View>
)
}
export default Page
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!