From 77c50c239cf12e9d14b4eb1812f72125be4f615b Mon Sep 17 00:00:00 2001
From: hailu <962012470@qq.com>
Date: 星期三, 02 十一月 2022 18:26:20 +0800
Subject: [PATCH] pcwcb

---
 src/assets/images/logo1.png                              |    0 
 dist/index.html                                          |   19 
 build/webpack.dev.conf.js                                |   95 +
 dist/static/js/vendor.d749db12afddd9bb27c2.js            |   26 
 src/assets/images/b_yunying_2.png                        |    0 
 src/assets/js/basedata.js                                |   18 
 src/assets/images/b_yunying_3.png                        |    0 
 src/assets/js/options.js                                 |   83 +
 config/prod.env.js                                       |    4 
 build/check-versions.js                                  |   54 
 build/logo.png                                           |    0 
 .postcssrc.js                                            |   10 
 build/build.js                                           |   41 
 config/dev.env.js                                        |    7 
 dist/static/js/manifest.2ae2e69a05c33dfc65f8.js          |    1 
 dist/static/js/app.2c27c0c41c0e292a6afd.js               |    1 
 build/utils.js                                           |  101 +
 src/assets/images/b_yunying_1.png                        |    0 
 index.html                                               |   11 
 dist/static/img/b_yunying_4.e91f278.png                  |    0 
 src/pages/message.vue                                    |  255 ++++
 src/pages/search.vue                                     |  465 ++++++++
 dist/favicon.ico                                         |    0 
 src/assets/images/kong.png                               |    0 
 src/libs/util.js                                         |   14 
 .editorconfig                                            |    9 
 dist/static/css/app.44d8950816fadaba22aa2b55c4a843eb.css |    1 
 .babelrc                                                 |   12 
 src/assets/images/2.png                                  |    0 
 src/assets/style/home.less                               |  399 +++++++
 src/style/base.css                                       |   38 
 build/vue-loader.conf.js                                 |   22 
 config/index.js                                          |   81 +
 src/store/index.js                                       |    8 
 src/router/index.js                                      |   29 
 src/assets/js/kefu/kefu.js                               |   20 
 src/style/iconfont.css                                   |   36 
 src/assets/js/wxapi.js                                   |   60 +
 src/pages/home.vue                                       |  988 +++++++++++++++++
 src/assets/images/cost.png                               |    0 
 build/webpack.prod.conf.js                               |  145 ++
 src/assets/images/b_yunying_4.png                        |    0 
 src/main.js                                              |   43 
 build/webpack.base.conf.js                               |   84 +
 package.json                                             |   69 +
 static/.gitkeep                                          |    0 
 src/assets/js/rem.js                                     |   13 
 src/App.vue                                              |   23 
 48 files changed, 3,285 insertions(+), 0 deletions(-)

diff --git a/.babelrc b/.babelrc
new file mode 100644
index 0000000..3a280ba
--- /dev/null
+++ b/.babelrc
@@ -0,0 +1,12 @@
+{
+  "presets": [
+    ["env", {
+      "modules": false,
+      "targets": {
+        "browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
+      }
+    }],
+    "stage-2"
+  ],
+  "plugins": ["transform-vue-jsx", "transform-runtime"]
+}
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..e291365
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,9 @@
+root = true
+
+[*]
+charset = utf-8
+indent_style = space
+indent_size = 4
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
diff --git a/.postcssrc.js b/.postcssrc.js
new file mode 100644
index 0000000..eee3e92
--- /dev/null
+++ b/.postcssrc.js
@@ -0,0 +1,10 @@
+// https://github.com/michael-ciniawsky/postcss-load-config
+
+module.exports = {
+  "plugins": {
+    "postcss-import": {},
+    "postcss-url": {},
+    // to edit target browsers: use "browserslist" field in package.json
+    "autoprefixer": {}
+  }
+}
diff --git a/build/build.js b/build/build.js
new file mode 100644
index 0000000..8f2ad8a
--- /dev/null
+++ b/build/build.js
@@ -0,0 +1,41 @@
+'use strict'
+require('./check-versions')()
+
+process.env.NODE_ENV = 'production'
+
+const ora = require('ora')
+const rm = require('rimraf')
+const path = require('path')
+const chalk = require('chalk')
+const webpack = require('webpack')
+const config = require('../config')
+const webpackConfig = require('./webpack.prod.conf')
+
+const spinner = ora('building for production...')
+spinner.start()
+
+rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
+  if (err) throw err
+  webpack(webpackConfig, (err, stats) => {
+    spinner.stop()
+    if (err) throw err
+    process.stdout.write(stats.toString({
+      colors: true,
+      modules: false,
+      children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
+      chunks: false,
+      chunkModules: false
+    }) + '\n\n')
+
+    if (stats.hasErrors()) {
+      console.log(chalk.red('  Build failed with errors.\n'))
+      process.exit(1)
+    }
+
+    console.log(chalk.cyan('  Build complete.\n'))
+    console.log(chalk.yellow(
+      '  Tip: built files are meant to be served over an HTTP server.\n' +
+      '  Opening index.html over file:// won\'t work.\n'
+    ))
+  })
+})
diff --git a/build/check-versions.js b/build/check-versions.js
new file mode 100644
index 0000000..3ef972a
--- /dev/null
+++ b/build/check-versions.js
@@ -0,0 +1,54 @@
+'use strict'
+const chalk = require('chalk')
+const semver = require('semver')
+const packageConfig = require('../package.json')
+const shell = require('shelljs')
+
+function exec (cmd) {
+  return require('child_process').execSync(cmd).toString().trim()
+}
+
+const versionRequirements = [
+  {
+    name: 'node',
+    currentVersion: semver.clean(process.version),
+    versionRequirement: packageConfig.engines.node
+  }
+]
+
+if (shell.which('npm')) {
+  versionRequirements.push({
+    name: 'npm',
+    currentVersion: exec('npm --version'),
+    versionRequirement: packageConfig.engines.npm
+  })
+}
+
+module.exports = function () {
+  const warnings = []
+
+  for (let i = 0; i < versionRequirements.length; i++) {
+    const mod = versionRequirements[i]
+
+    if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
+      warnings.push(mod.name + ': ' +
+        chalk.red(mod.currentVersion) + ' should be ' +
+        chalk.green(mod.versionRequirement)
+      )
+    }
+  }
+
+  if (warnings.length) {
+    console.log('')
+    console.log(chalk.yellow('To use this template, you must update following to modules:'))
+    console.log()
+
+    for (let i = 0; i < warnings.length; i++) {
+      const warning = warnings[i]
+      console.log('  ' + warning)
+    }
+
+    console.log()
+    process.exit(1)
+  }
+}
diff --git a/build/logo.png b/build/logo.png
new file mode 100644
index 0000000..65843de
--- /dev/null
+++ b/build/logo.png
Binary files differ
diff --git a/build/utils.js b/build/utils.js
new file mode 100644
index 0000000..e534fb0
--- /dev/null
+++ b/build/utils.js
@@ -0,0 +1,101 @@
+'use strict'
+const path = require('path')
+const config = require('../config')
+const ExtractTextPlugin = require('extract-text-webpack-plugin')
+const packageConfig = require('../package.json')
+
+exports.assetsPath = function (_path) {
+  const assetsSubDirectory = process.env.NODE_ENV === 'production'
+    ? config.build.assetsSubDirectory
+    : config.dev.assetsSubDirectory
+
+  return path.posix.join(assetsSubDirectory, _path)
+}
+
+exports.cssLoaders = function (options) {
+  options = options || {}
+
+  const cssLoader = {
+    loader: 'css-loader',
+    options: {
+      sourceMap: options.sourceMap
+    }
+  }
+
+  const postcssLoader = {
+    loader: 'postcss-loader',
+    options: {
+      sourceMap: options.sourceMap
+    }
+  }
+
+  // generate loader string to be used with extract text plugin
+  function generateLoaders (loader, loaderOptions) {
+    const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
+
+    if (loader) {
+      loaders.push({
+        loader: loader + '-loader',
+        options: Object.assign({}, loaderOptions, {
+          sourceMap: options.sourceMap
+        })
+      })
+    }
+
+    // Extract CSS when that option is specified
+    // (which is the case during production build)
+    if (options.extract) {
+      return ExtractTextPlugin.extract({
+        use: loaders,
+        fallback: 'vue-style-loader'
+      })
+    } else {
+      return ['vue-style-loader'].concat(loaders)
+    }
+  }
+
+  // https://vue-loader.vuejs.org/en/configurations/extract-css.html
+  return {
+    css: generateLoaders(),
+    postcss: generateLoaders(),
+    less: generateLoaders('less'),
+    sass: generateLoaders('sass', { indentedSyntax: true }),
+    scss: generateLoaders('sass'),
+    stylus: generateLoaders('stylus'),
+    styl: generateLoaders('stylus')
+  }
+}
+
+// Generate loaders for standalone style files (outside of .vue)
+exports.styleLoaders = function (options) {
+  const output = []
+  const loaders = exports.cssLoaders(options)
+
+  for (const extension in loaders) {
+    const loader = loaders[extension]
+    output.push({
+      test: new RegExp('\\.' + extension + '$'),
+      use: loader
+    })
+  }
+
+  return output
+}
+
+exports.createNotifierCallback = () => {
+  const notifier = require('node-notifier')
+
+  return (severity, errors) => {
+    if (severity !== 'error') return
+
+    const error = errors[0]
+    const filename = error.file && error.file.split('!').pop()
+
+    notifier.notify({
+      title: packageConfig.name,
+      message: severity + ': ' + error.name,
+      subtitle: filename || '',
+      icon: path.join(__dirname, 'logo.png')
+    })
+  }
+}
diff --git a/build/vue-loader.conf.js b/build/vue-loader.conf.js
new file mode 100644
index 0000000..33ed58b
--- /dev/null
+++ b/build/vue-loader.conf.js
@@ -0,0 +1,22 @@
+'use strict'
+const utils = require('./utils')
+const config = require('../config')
+const isProduction = process.env.NODE_ENV === 'production'
+const sourceMapEnabled = isProduction
+  ? config.build.productionSourceMap
+  : config.dev.cssSourceMap
+
+module.exports = {
+  loaders: utils.cssLoaders({
+    sourceMap: sourceMapEnabled,
+    extract: isProduction
+  }),
+  cssSourceMap: sourceMapEnabled,
+  cacheBusting: config.dev.cacheBusting,
+  transformToRequire: {
+    video: ['src', 'poster'],
+    source: 'src',
+    img: 'src',
+    image: 'xlink:href'
+  }
+}
diff --git a/build/webpack.base.conf.js b/build/webpack.base.conf.js
new file mode 100644
index 0000000..2d25736
--- /dev/null
+++ b/build/webpack.base.conf.js
@@ -0,0 +1,84 @@
+'use strict'
+const path = require('path')
+const utils = require('./utils')
+const config = require('../config')
+const vueLoaderConfig = require('./vue-loader.conf')
+
+function resolve(dir) {
+    return path.join(__dirname, '..', dir)
+}
+
+
+
+module.exports = {
+    context: path.resolve(__dirname, '../'),
+    entry: {
+        app: './src/main.js'
+    },
+    output: {
+        path: config.build.assetsRoot,
+        filename: '[name].js',
+        publicPath: process.env.NODE_ENV === 'production' ?
+            config.build.assetsPublicPath : config.dev.assetsPublicPath
+    },
+    resolve: {
+        extensions: ['.js', '.vue', '.json'],
+        alias: {
+            'vue$': 'vue/dist/vue.esm.js',
+            '@': resolve('src'),
+        }
+    },
+    module: {
+        rules: [{
+                test: /\.vue$/,
+                loader: 'vue-loader',
+                options: vueLoaderConfig
+            },
+            {
+                test: /\.js$/,
+                loader: 'babel-loader',
+                include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
+            },
+            {
+                test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
+                loader: 'url-loader',
+                options: {
+                    limit: 10000,
+                    name: utils.assetsPath('img/[name].[hash:7].[ext]')
+                }
+            },
+            {
+                test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
+                loader: 'url-loader',
+                options: {
+                    limit: 10000,
+                    name: utils.assetsPath('media/[name].[hash:7].[ext]')
+                }
+            },
+            {
+                test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
+                loader: 'url-loader',
+                options: {
+                    limit: 10000,
+                    name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
+                }
+            },
+            {
+                test: /\.less$/,
+                loader: 'style-loader!css-loader!less-loader'
+            }
+        ]
+    },
+    node: {
+        // prevent webpack from injecting useless setImmediate polyfill because Vue
+        // source contains it (although only uses it if it's native).
+        setImmediate: false,
+        // prevent webpack from injecting mocks to Node native modules
+        // that does not make sense for the client
+        dgram: 'empty',
+        fs: 'empty',
+        net: 'empty',
+        tls: 'empty',
+        child_process: 'empty'
+    }
+}
diff --git a/build/webpack.dev.conf.js b/build/webpack.dev.conf.js
new file mode 100644
index 0000000..070ae22
--- /dev/null
+++ b/build/webpack.dev.conf.js
@@ -0,0 +1,95 @@
+'use strict'
+const utils = require('./utils')
+const webpack = require('webpack')
+const config = require('../config')
+const merge = require('webpack-merge')
+const path = require('path')
+const baseWebpackConfig = require('./webpack.base.conf')
+const CopyWebpackPlugin = require('copy-webpack-plugin')
+const HtmlWebpackPlugin = require('html-webpack-plugin')
+const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
+const portfinder = require('portfinder')
+
+const HOST = process.env.HOST
+const PORT = process.env.PORT && Number(process.env.PORT)
+
+const devWebpackConfig = merge(baseWebpackConfig, {
+  module: {
+    rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
+  },
+  // cheap-module-eval-source-map is faster for development
+  devtool: config.dev.devtool,
+
+  // these devServer options should be customized in /config/index.js
+  devServer: {
+    clientLogLevel: 'warning',
+    historyApiFallback: {
+      rewrites: [
+        { from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
+      ],
+    },
+    hot: true,
+    contentBase: false, // since we use CopyWebpackPlugin.
+    compress: true,
+    host: HOST || config.dev.host,
+    port: PORT || config.dev.port,
+    open: config.dev.autoOpenBrowser,
+    overlay: config.dev.errorOverlay
+      ? { warnings: false, errors: true }
+      : false,
+    publicPath: config.dev.assetsPublicPath,
+    proxy: config.dev.proxyTable,
+    quiet: true, // necessary for FriendlyErrorsPlugin
+    watchOptions: {
+      poll: config.dev.poll,
+    }
+  },
+  plugins: [
+    new webpack.DefinePlugin({
+      'process.env': require('../config/dev.env')
+    }),
+    new webpack.HotModuleReplacementPlugin(),
+    new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
+    new webpack.NoEmitOnErrorsPlugin(),
+    // https://github.com/ampedandwired/html-webpack-plugin
+    new HtmlWebpackPlugin({
+      filename: 'index.html',
+      template: 'index.html',
+      inject: true
+    }),
+    // copy custom static assets
+    new CopyWebpackPlugin([
+      {
+        from: path.resolve(__dirname, '../static'),
+        to: config.dev.assetsSubDirectory,
+        ignore: ['.*']
+      }
+    ])
+  ]
+})
+
+module.exports = new Promise((resolve, reject) => {
+  portfinder.basePort = process.env.PORT || config.dev.port
+  portfinder.getPort((err, port) => {
+    if (err) {
+      reject(err)
+    } else {
+      // publish the new Port, necessary for e2e tests
+      process.env.PORT = port
+      // add port to devServer config
+      devWebpackConfig.devServer.port = port
+
+      // Add FriendlyErrorsPlugin
+      devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
+        compilationSuccessInfo: {
+          messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
+        },
+        onErrors: config.dev.notifyOnErrors
+        ? utils.createNotifierCallback()
+        : undefined
+      }))
+
+      resolve(devWebpackConfig)
+    }
+  })
+})
diff --git a/build/webpack.prod.conf.js b/build/webpack.prod.conf.js
new file mode 100644
index 0000000..d9f99f6
--- /dev/null
+++ b/build/webpack.prod.conf.js
@@ -0,0 +1,145 @@
+'use strict'
+const path = require('path')
+const utils = require('./utils')
+const webpack = require('webpack')
+const config = require('../config')
+const merge = require('webpack-merge')
+const baseWebpackConfig = require('./webpack.base.conf')
+const CopyWebpackPlugin = require('copy-webpack-plugin')
+const HtmlWebpackPlugin = require('html-webpack-plugin')
+const ExtractTextPlugin = require('extract-text-webpack-plugin')
+const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
+const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
+
+const env = require('../config/prod.env')
+
+const webpackConfig = merge(baseWebpackConfig, {
+  module: {
+    rules: utils.styleLoaders({
+      sourceMap: config.build.productionSourceMap,
+      extract: true,
+      usePostCSS: true
+    })
+  },
+  devtool: config.build.productionSourceMap ? config.build.devtool : false,
+  output: {
+    path: config.build.assetsRoot,
+    filename: utils.assetsPath('js/[name].[chunkhash].js'),
+    chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
+  },
+  plugins: [
+    // http://vuejs.github.io/vue-loader/en/workflow/production.html
+    new webpack.DefinePlugin({
+      'process.env': env
+    }),
+    new UglifyJsPlugin({
+      uglifyOptions: {
+        compress: {
+          warnings: false
+        }
+      },
+      sourceMap: config.build.productionSourceMap,
+      parallel: true
+    }),
+    // extract css into its own file
+    new ExtractTextPlugin({
+      filename: utils.assetsPath('css/[name].[contenthash].css'),
+      // Setting the following option to `false` will not extract CSS from codesplit chunks.
+      // Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
+      // It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`, 
+      // increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
+      allChunks: true,
+    }),
+    // Compress extracted CSS. We are using this plugin so that possible
+    // duplicated CSS from different components can be deduped.
+    new OptimizeCSSPlugin({
+      cssProcessorOptions: config.build.productionSourceMap
+        ? { safe: true, map: { inline: false } }
+        : { safe: true }
+    }),
+    // generate dist index.html with correct asset hash for caching.
+    // you can customize output by editing /index.html
+    // see https://github.com/ampedandwired/html-webpack-plugin
+    new HtmlWebpackPlugin({
+      filename: config.build.index,
+      template: 'index.html',
+      inject: true,
+      minify: {
+        removeComments: true,
+        collapseWhitespace: true,
+        removeAttributeQuotes: true
+        // more options:
+        // https://github.com/kangax/html-minifier#options-quick-reference
+      },
+      // necessary to consistently work with multiple chunks via CommonsChunkPlugin
+      chunksSortMode: 'dependency'
+    }),
+    // keep module.id stable when vendor modules does not change
+    new webpack.HashedModuleIdsPlugin(),
+    // enable scope hoisting
+    new webpack.optimize.ModuleConcatenationPlugin(),
+    // split vendor js into its own file
+    new webpack.optimize.CommonsChunkPlugin({
+      name: 'vendor',
+      minChunks (module) {
+        // any required modules inside node_modules are extracted to vendor
+        return (
+          module.resource &&
+          /\.js$/.test(module.resource) &&
+          module.resource.indexOf(
+            path.join(__dirname, '../node_modules')
+          ) === 0
+        )
+      }
+    }),
+    // extract webpack runtime and module manifest to its own file in order to
+    // prevent vendor hash from being updated whenever app bundle is updated
+    new webpack.optimize.CommonsChunkPlugin({
+      name: 'manifest',
+      minChunks: Infinity
+    }),
+    // This instance extracts shared chunks from code splitted chunks and bundles them
+    // in a separate chunk, similar to the vendor chunk
+    // see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
+    new webpack.optimize.CommonsChunkPlugin({
+      name: 'app',
+      async: 'vendor-async',
+      children: true,
+      minChunks: 3
+    }),
+
+    // copy custom static assets
+    new CopyWebpackPlugin([
+      {
+        from: path.resolve(__dirname, '../static'),
+        to: config.build.assetsSubDirectory,
+        ignore: ['.*']
+      }
+    ])
+  ]
+})
+
+if (config.build.productionGzip) {
+  const CompressionWebpackPlugin = require('compression-webpack-plugin')
+
+  webpackConfig.plugins.push(
+    new CompressionWebpackPlugin({
+      asset: '[path].gz[query]',
+      algorithm: 'gzip',
+      test: new RegExp(
+        '\\.(' +
+        config.build.productionGzipExtensions.join('|') +
+        ')$'
+      ),
+      threshold: 10240,
+      minRatio: 0.8
+    })
+  )
+}
+
+if (config.build.bundleAnalyzerReport) {
+  const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
+  webpackConfig.plugins.push(new BundleAnalyzerPlugin())
+}
+
+module.exports = webpackConfig
diff --git a/config/dev.env.js b/config/dev.env.js
new file mode 100644
index 0000000..1e22973
--- /dev/null
+++ b/config/dev.env.js
@@ -0,0 +1,7 @@
+'use strict'
+const merge = require('webpack-merge')
+const prodEnv = require('./prod.env')
+
+module.exports = merge(prodEnv, {
+  NODE_ENV: '"development"'
+})
diff --git a/config/index.js b/config/index.js
new file mode 100644
index 0000000..dc7c0a6
--- /dev/null
+++ b/config/index.js
@@ -0,0 +1,81 @@
+'use strict'
+// Template version: 1.3.1
+// see http://vuejs-templates.github.io/webpack for documentation.
+
+const path = require('path')
+
+module.exports = {
+    dev: {
+
+        // Paths
+        assetsSubDirectory: 'static',
+        assetsPublicPath: '/',
+        proxyTable: {
+            '/api': {
+                // target: 'http://47.92.245.94:8090/', //婧愬湴鍧�
+                target: 'http://106.55.47.126:80/', //婧愬湴鍧�
+                changeOrigin: true, //鏀瑰彉婧�
+                pathRewrite: {
+                    '^/api': '' //璺緞閲嶅啓
+                },
+                source: false
+            }
+        },
+
+        // Various Dev Server settings
+        // host: '192.168.0.106', // 瀹堕噷鍦板潃
+        // host: '192.168.1.26', // 鍏徃鍦板潃
+        host: 'localhost', // 閫氱敤鍦板潃
+        port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
+        autoOpenBrowser: true,
+        errorOverlay: true,
+        notifyOnErrors: true,
+        poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
+
+
+        /**
+         * Source Maps
+         */
+
+        // https://webpack.js.org/configuration/devtool/#development
+        devtool: 'cheap-module-eval-source-map',
+
+        // If you have problems debugging vue-files in devtools,
+        // set this to false - it *may* help
+        // https://vue-loader.vuejs.org/en/options.html#cachebusting
+        cacheBusting: true,
+
+        cssSourceMap: true
+    },
+
+    build: {
+        // Template for index.html
+        index: path.resolve(__dirname, '../dist/index.html'),
+
+        // Paths
+        assetsRoot: path.resolve(__dirname, '../dist'),
+        assetsSubDirectory: 'static',
+        assetsPublicPath: '/',
+
+        /**
+         * Source Maps
+         */
+
+        productionSourceMap: false,
+        // https://webpack.js.org/configuration/devtool/#production
+        devtool: '#source-map',
+
+        // Gzip off by default as many popular static hosts such as
+        // Surge or Netlify already gzip all static assets for you.
+        // Before setting to `true`, make sure to:
+        // npm install --save-dev compression-webpack-plugin
+        productionGzip: false,
+        productionGzipExtensions: ['js', 'css'],
+
+        // Run the build command with an extra argument to
+        // View the bundle analyzer report after build finishes:
+        // `npm run build --report`
+        // Set to `true` or `false` to always turn it on or off
+        bundleAnalyzerReport: process.env.npm_config_report
+    }
+}
diff --git a/config/prod.env.js b/config/prod.env.js
new file mode 100644
index 0000000..a6f9976
--- /dev/null
+++ b/config/prod.env.js
@@ -0,0 +1,4 @@
+'use strict'
+module.exports = {
+  NODE_ENV: '"production"'
+}
diff --git a/dist/favicon.ico b/dist/favicon.ico
new file mode 100644
index 0000000..989165e
--- /dev/null
+++ b/dist/favicon.ico
Binary files differ
diff --git a/dist/index.html b/dist/index.html
new file mode 100644
index 0000000..c4581fc
--- /dev/null
+++ b/dist/index.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+    <meta charset=utf-8>
+    <meta name=viewport content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
+    <title>涓婂競鍏徃寰储鎶ュ厤璐圭増</title>
+    <link rel=icon href=favicon.ico>
+    <link href=/static/css/app.44d8950816fadaba22aa2b55c4a843eb.css rel=stylesheet>
+</head>
+
+<body>
+    <div id=app></div>
+    <script type=text/javascript src=/static/js/manifest.2ae2e69a05c33dfc65f8.js></script>
+    <script type=text/javascript src=/static/js/vendor.d749db12afddd9bb27c2.js></script>
+    <script type=text/javascript src=/static/js/app.2c27c0c41c0e292a6afd.js></script>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/dist/static/css/app.44d8950816fadaba22aa2b55c4a843eb.css b/dist/static/css/app.44d8950816fadaba22aa2b55c4a843eb.css
new file mode 100644
index 0000000..d8b6512
--- /dev/null
+++ b/dist/static/css/app.44d8950816fadaba22aa2b55c4a843eb.css
@@ -0,0 +1 @@
+#app{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;max-width:650px;margin:auto}.search[data-v-e0f8cb78]{background:-webkit-gradient(linear,left bottom,left top,from(#e40a0a),to(#e56e6e));background:linear-gradient(0deg,#e40a0a,#e56e6e);height:100vh;padding:150px 15px 0;position:relative}.search .logo[data-v-e0f8cb78]{height:.8rem}.search .logo img[data-v-e0f8cb78]{display:block;height:100%;margin:auto}.search .name[data-v-e0f8cb78]{font-size:36px;text-align:center;font-weight:bolder;color:#fff;margin:10px 0}.search .input[data-v-e0f8cb78]{height:40px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;background-color:#fff;border-radius:20px}.search .input .draw[data-v-e0f8cb78]{width:100px;height:100%;line-height:40px;text-align:center}.search .input .draw i.ionfont[data-v-e0f8cb78]{font-size:12px}.search .input .keyval[data-v-e0f8cb78]{width:calc(100% - 100px)}.search .input .keyval input[data-v-e0f8cb78]{display:block;width:100%;height:100%;background-color:transparent}.search .list[data-v-e0f8cb78]{padding:0 10px;width:80%;max-height:50%;overflow:auto;margin:0 auto;background-color:#fff;border-bottom-right-radius:6px;border-bottom-left-radius:6px;position:absolute;left:10%;z-index:99}.search .list li[data-v-e0f8cb78]:last-of-type{border-bottom:none}.search .list li[data-v-e0f8cb78]{height:40px;line-height:40px;width:100%;border-bottom:1px solid #ddd}.search .list li span[data-v-e0f8cb78]:first-child{font-size:14px;margin-right:10px}.search .list li span[data-v-e0f8cb78]:nth-child(2){color:#666}.search .pick[data-v-e0f8cb78]{max-width:650px;right:0;margin:auto}.search .to-message[data-v-e0f8cb78]{width:100%;text-align:center;padding:10px 0;position:fixed;bottom:10px;background-color:#e41616;z-index:9}.search .to-message u[data-v-e0f8cb78]{color:#fff;padding-bottom:2px;line-height:14px}.loadingbox[data-v-e0f8cb78]{position:absolute;width:100vw;height:15vh;overflow:auto;top:0;left:-15px;z-index:999999}.loadingbox .loading[data-v-e0f8cb78]{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:99999}.pointer[data-v-e0f8cb78]{cursor:pointer}.home .homebox[data-v-9d567316]{overflow:auto}.home .homebox .loading[data-v-9d567316]{margin-top:200px;height:120px;width:100%;text-align:center}.home[data-v-9d567316] .van-sticky--fixed{max-width:650px;margin:auto}.home[data-v-9d567316] .van-overlay{max-width:650px;right:0;margin:auto}.home[data-v-9d567316] .van-loading__spinner--spinner i{color:#b30808}.home .stick[data-v-9d567316]{height:40px;padding:7px 15px;background-color:#9b0707;color:#fff;line-height:26px;font-size:16px}.home .stick span[data-v-9d567316]{background:hsla(0,0%,100%,.2);display:inline-block;width:80px;height:26px;line-height:26px;text-align:center;border-radius:13px;font-size:14px;color:#fff}.home .head[data-v-9d567316]{height:3.6rem;background-image:url(data:image/png;base64,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);background-size:2.6rem;padding:1.2rem 15px 0;background-color:#b30808;background-position:15px .2rem;background-repeat:no-repeat;position:relative}.home .head .flag[data-v-9d567316]{display:inline-block;height:18px;line-height:18px;width:auto;padding:0 10px;background-color:#fff;letter-spacing:5px}.home .head .name[data-v-9d567316]{height:.8rem;line-height:.8rem;font-size:.5rem;color:#fff;font-weight:700}.home .head .times[data-v-9d567316]{height:1rem;line-height:1rem;font-size:.6rem;color:#fff;font-weight:700}.home .head .btn[data-v-9d567316]{display:inline-block;background:hsla(0,0%,100%,.2);width:80px;height:26px;line-height:26px;text-align:center;border-radius:13px;font-size:14px;color:#fff;position:absolute;right:15px;top:15px}.home .contentbox[data-v-9d567316]{padding:15px;background-color:#b30808}.home .contentbox .content[data-v-9d567316]{background-color:#f5f5f5;padding:15px}.home .section[data-v-9d567316]{margin-bottom:50px}.home .section[data-v-9d567316]:last-of-type{margin-bottom:0}.home .section .title[data-v-9d567316]{display:inline-block;height:30px;line-height:30px;text-align:center;width:auto;padding:0 20px;border-radius:15px}.home .section .title span[data-v-9d567316]{font-size:18px;font-weight:700;color:#fff}.home .section .title span[data-v-9d567316]:first-child{border-right:1px solid #fff;padding-right:10px}.home .section .title span[data-v-9d567316]:nth-child(2){padding-left:10px}.home .section .ball[data-v-9d567316]{margin-top:1rem;position:relative}.home .section .ball .ring[data-v-9d567316]{height:2rem;width:2rem;border-radius:50%;text-align:center;padding:.2rem 0}.home .section .ball .ring .iconfont[data-v-9d567316]{color:#fff;font-size:.3rem}.home .section .ball .ring p[data-v-9d567316]{color:#fff}.home .section .ball .ring p.icon[data-v-9d567316]{line-height:1}.home .section .ball .ring p.money[data-v-9d567316]{font-size:.4rem;line-height:1.8}.home .section .ball .ring p.text[data-v-9d567316]{font-size:.25rem;line-height:2}.home .section .ball .line[data-v-9d567316]{display:inline-block;position:absolute;left:2.3rem}.home .section .ball .line[data-v-9d567316]:before{content:"";display:block;position:absolute;left:0;height:1px;background-color:#d2d2d2;-webkit-transform-origin:0 0;transform-origin:0 0}.home .section .ball .line p[data-v-9d567316]:nth-child(2){font-size:16px}.home .section .ball .line.line1[data-v-9d567316]{top:-.4rem}.home .section .ball .line.line1[data-v-9d567316]:before{content:"";display:block;position:absolute;left:0;bottom:-.02rem;height:1px;width:.5rem;background-color:#d2d2d2;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.home .section .ball .line.line1[data-v-9d567316]:after{content:"";display:block;position:absolute;left:0;width:1.8rem;height:1px;background-color:#d2d2d2}.home .section .ball .line.line2[data-v-9d567316]{bottom:0}.home .section .ball .line.line2[data-v-9d567316]:before{width:.5rem;bottom:-.04rem;left:-.2rem;-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}.home .section .ball .line.line2[data-v-9d567316]:after{content:"";display:block;position:absolute;left:-.2rem;width:2rem;height:1px;background-color:#d2d2d2}.home .section .sub-title[data-v-9d567316]{text-align:center;padding:10px 0;font-size:16px}.home .section .ability[data-v-9d567316]{margin-top:20px}.home .section .ability .ability-item[data-v-9d567316]:last-of-type{margin-bottom:0}.home .section .ability .ability-item[data-v-9d567316]{width:100%;margin-bottom:20px;display:-webkit-box;display:-ms-flexbox;display:flex}.home .section .ability .ability-item .ability-title[data-v-9d567316]{width:30px;height:auto;padding:0 4px;-webkit-writing-mode:vertical-lr;-ms-writing-mode:tb-lr;writing-mode:vertical-lr;text-align:center;font-size:14px;color:#fff;letter-spacing:2px}.home .section .ability .ability-item .list.pay[data-v-9d567316]{width:100%}.home .section .ability .ability-item .list[data-v-9d567316]{width:calc(100% - 30px);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.home .section .ability .ability-item .list li:last-of-type .canvasbox[data-v-9d567316],.home .section .ability .ability-item .list li:nth-child(3n) .canvasbox[data-v-9d567316]{border-right:none}.home .section .ability .ability-item .list li[data-v-9d567316]{-webkit-box-flex:1;-ms-flex:auto;flex:auto;width:33.33%;height:2rem}.home .section .ability .ability-item .list li .text[data-v-9d567316]{line-height:.5rem;text-align:center;color:#999}.home .section .ability .canvasbox[data-v-9d567316]{height:1.5rem;width:100%;border-right:1px dashed #666}.home .section .ability .canvasbox .canvas[data-v-9d567316]{height:1.5rem;width:1.5rem;margin:auto;border-radius:50%;position:relative}.home .section .ability .canvasbox[data-v-9d567316] .van-circle__text{color:#9b0707}.home .section .ability .canvasbox .mask[data-v-9d567316]{height:1.5rem;width:1.5rem;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);position:absolute;left:-7px;top:-4px}.home .section .ability .cost[data-v-9d567316]{margin-bottom:20px}.home .section .ability .cost .costlist[data-v-9d567316]{display:-webkit-box;display:-ms-flexbox;display:flex}.home .section .ability .cost .costlist li[data-v-9d567316]:first-child,.home .section .ability .cost .costlist li[data-v-9d567316]:nth-child(3){-webkit-box-flex:1;-ms-flex:1;flex:1;padding-top:3px}.home .section .ability .cost .costlist li:first-child p[data-v-9d567316],.home .section .ability .cost .costlist li:nth-child(3) p[data-v-9d567316]{margin-bottom:14px;height:12px;overflow:hidden}.home .section .ability .cost .costlist li:first-child p span[data-v-9d567316],.home .section .ability .cost .costlist li:nth-child(3) p span[data-v-9d567316]{background-image:-webkit-gradient(linear,left top,right top,color-stop(70%,#9b0707),color-stop(30%,transparent));background-image:linear-gradient(90deg,#9b0707 70%,transparent 0);background-size:10px 10px;display:block;height:100%;background-position:50%}.home .section .ability .cost .costlist li:first-child p[data-v-9d567316]:last-of-type,.home .section .ability .cost .costlist li:nth-child(3) p[data-v-9d567316]:last-of-type{margin-bottom:0}.home .section .ability .cost .costlist li[data-v-9d567316]:nth-child(2){width:56%;border-right:1px dashed #ddd;border-left:1px dashed #ddd;padding:0 5px;margin:0 5px}.home .section .ability .cost .costlist li:nth-child(2) .percent[data-v-9d567316]{display:-webkit-box;display:-ms-flexbox;display:flex;padding:2px 0}.home .section .ability .cost .costlist li:nth-child(2) p[data-v-9d567316]{line-height:20px}.home .section .ability .cost .costlist li:nth-child(2) .pertitle[data-v-9d567316]{width:45%;text-align:center;color:#fff;margin:0 5px}.home .section .ability .cost .costlist li:nth-child(2) .pertext[data-v-9d567316]{-webkit-box-flex:1;-ms-flex:1;flex:1;color:#9b0707}.home .section .ability .cost .costlist li:nth-child(2) .pertext[data-v-9d567316]:first-child{text-align:right}.home .section .ability .cost .costyear[data-v-9d567316]{height:20px}.home .section .ability .cost .costyear span[data-v-9d567316]{display:inline-block;line-height:20px;width:calc(23% - 5px)}.home .section .ability .cost .costyear span[data-v-9d567316]:first-child{text-align:right}.home .section .ability .cost .tips[data-v-9d567316]{color:#9b0707}.home .section .runlist[data-v-9d567316]{width:100%}.home .section .runlist li[data-v-9d567316]{margin-top:20px;display:-webkit-box;display:-ms-flexbox;display:flex}.home .section .runlist li .icon[data-v-9d567316]{width:40%;height:90px}.home .section .runlist li .icon img[data-v-9d567316]{margin-top:10px}.home .section .runlist li .text[data-v-9d567316]{width:60%;height:100%;background-color:#fff;padding:5px 0 5px 10px}.home .section .runlist li .text .runtitle[data-v-9d567316]{height:15px;font-weight:700;line-height:15px}.home .section .runlist li .text .detail[data-v-9d567316]{line-height:75px;overflow:hidden}.home .section .runlist li .text .detail a[data-v-9d567316]{display:block;margin-right:5px;height:25px;line-height:25px}.home .section .runlist li .text .detail a span[data-v-9d567316]:first-child{font-size:16px;font-weight:700}.home .section .runlist li.first .text[data-v-9d567316]{border-left:5px solid #9b0707}.home .section .runlist li.second .text[data-v-9d567316]{border-right:5px solid #9b0707}.home .section .noticeTime[data-v-9d567316]{line-height:30px}.home .section .share[data-v-9d567316]{width:100%}.home .section .share li[data-v-9d567316]:last-of-type{border-bottom:none}.home .section .share li[data-v-9d567316]{width:100%;border-bottom:1px dashed #ddd;padding:5px 0}.home .section .share li .borderbox[data-v-9d567316]{margin-top:5px;display:-webkit-box;display:-ms-flexbox;display:flex}.home .section .share li .borderbox .take[data-v-9d567316]{width:55%;height:.2rem;padding:.04rem;border:1px solid #9b0707;border-radius:.12rem}.home .section .share li .borderbox .take .line[data-v-9d567316]{height:100%;border-radius:4px}.home .section .share li .borderbox .num[data-v-9d567316]{width:45%;position:relative;bottom:3px}.home .section .share li .borderbox .num span[data-v-9d567316]:first-child{margin:0 5px}.home .section .share li .borderbox .num .iconfont[data-v-9d567316]{font-size:12px}.home .copyright[data-v-9d567316]{padding:10px 0}.home .copyright p[data-v-9d567316]{color:#fff}.home .copyright .copytitle[data-v-9d567316]{font-size:14px;line-height:2}.home .bottom[data-v-9d567316]{text-align:center;background-color:#9b0707;color:#fff}.pointer[data-v-9d567316]{cursor:pointer}.notify[data-v-9d567316]{margin-top:20px;width:200px;border-radius:18px;margin-left:calc(50% - 125px);color:#3320d8;background-color:#fff}.message[data-v-31f7b362]{height:100vh}.message .bottom[data-v-31f7b362]{text-align:center;background-color:#9b0707;color:#fff}.message .messagebox[data-v-31f7b362]{height:100%;overflow:auto;background-color:#b30808}.message .head[data-v-31f7b362]{background-image:url(data:image/png;base64,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);background-size:2.6rem;padding:1.2rem 15px 0;background-color:#b30808;background-position:15px .2rem;background-repeat:no-repeat;height:3.4rem;position:relative}.message .head .title[data-v-31f7b362]{height:1rem;line-height:1rem;font-size:.6rem;color:#fff;font-weight:700;text-align:center}.message .head .tips[data-v-31f7b362]{text-align:right;font-size:16px;line-height:2.5;color:#fff}.message .head .btn[data-v-31f7b362]{display:inline-block;background:hsla(0,0%,100%,.2);width:80px;height:26px;line-height:26px;text-align:center;border-radius:13px;font-size:14px;color:#fff;position:absolute;right:15px;top:15px}.message .contextbox[data-v-31f7b362]{padding:15px;background-color:#b30808;height:calc(100% - 170px)}.message .contextbox .content[data-v-31f7b362]{background-color:#f5f5f5;padding:15px}.content-top[data-v-31f7b362]{background-color:#fff;width:100%;padding:15px 16px 0;-webkit-box-sizing:border-box;box-sizing:border-box}input[data-v-31f7b362]{border:1px solid #ccc;margin:0 0 13px;height:25px;width:100%}textarea[data-v-31f7b362]{border:1px solid #ccc;width:100%;line-height:20px;margin:0 0 13px}.content-submit[data-v-31f7b362]{padding-bottom:18px;background-color:#fff}.content-submit .submit[data-v-31f7b362]{width:100%;text-align:center;height:44px;line-height:42px;color:#fff;font-size:16px;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#ee0a24;border-color:#ee0a24}footer[data-v-31f7b362]{width:633px;margin:0 auto;color:#fff;text-align:center;background-color:#9b0707;line-height:30px;font-size:14px;position:fixed;bottom:0}.pointer[data-v-31f7b362]{cursor:pointer}*{padding:0;margin:0;font-size:12px;list-style:none;-webkit-box-sizing:border-box;box-sizing:border-box;border:none;color:#333}.fontColor{color:#9b0707}.bgColor{background-color:#9b0707}.left{float:left}.right{float:right}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:iconfont;src:url(//at.alicdn.com/t/font_1720629_i7vs78nm9pj.eot?t=1586145292814);src:url(//at.alicdn.com/t/font_1720629_i7vs78nm9pj.eot?t=1586145292814#iefix) format("embedded-opentype"),url("data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAUAAAsAAAAACdQAAAS0AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDSAqGNIUsATYCJAMYCw4ABCAFhG0Haxt1CCOSDk6Y7J+HsbHy8Mw5y7tN9zcVuSLzTFNHQ1fDd58jqNb+7dndu4fqE6mvgMsTBkgCgUIblQgZKSJUyoeFvwD46b3szTLdqVMSQWV/9SgvDtbWph3bqAjFkpwH3+UfyH/Dj9AQOv7nmOnS2ob5geaSHbQ3Go8HNKCoiwqgA73G4wOjcz8V8ByRDsTvkwl0zVgQu/unLmkrsCoQjx/cu6Gd0ykt5NBW1jU7FvFVpZ0+p+/4Er59/LMWbZIqw4bn7u7dtvnz57P8qfl02Ufgz2eBtBsZCyjEu1rbWzmOLci6xm8ojtHXlpSffqafSz/Xfz5rmpwIrtCnf3mESpElosbK+jz2VLziJ1cjDHlieXXyJVajsPJ1ViOz8mdsiwTqGReM4z9xEXCzbCERZWCo5A3652qaYDmRHEEIhYRA4E+QJwjUOXdCrajEe9jZPvVi9TmTmpql8/o7eSJ+dlpGPh/zcjLTO8XPKckLWvaKlb5MAxF8ScSKg5did2MG0yymKrEkWiJxltAgxkuldruJ9nqclQbcZHaaoFUyx22yWBm9frvWGvM97mj1fnqf5zzNpTtPelC7xVYH3JfJbGfZOeonnPf5HpXmHRYbsTL2bL6ExiulAfvzJCySMmK2D3CQlrdC4n8oMqrCElrGIgzsZlhMnfE+JjPNW7DjhDs63evy6w7pbtqlu9Zib94RiftGqcHuwsViq32ywIMergPOJWSJBtjchAdkiZmZagnZosqwhW+B8cWMGp+aF+WnE84nwNv0tNwo993mGRnx7xCbY8dt/F+vdKlo0m4S5UxU1VRN5k7aTpRR/X96Kh5WPuwe+g9fGp0QdDtIuyT7g2UCYhURE7dgtIJW1TDWuXEoJ9s32kczRp1Q5OkXXXpERVuE6aMEjcFFa3aSRusoG2bksezL0+X/n2oOqExHOj5a8263WfimnWc4GydD7N6tUaNcVtaKzIs15gOcU0vInqdAJqCkBermxfjPzJZYiIOJEAhWUI3d4xcevgDiyNgghR0bNMyLRX+y1eIh2RDiyZiiJwQmDDqxI3amGuINUTIZn/1nxod4u3fb/6da6x5nQSpF2dzQGFq45xTH1Z1Mdf2/2Sxs97s+vDtYsPk95UqueQcKmJo3OF4AzYp0gpsRLl+brnJzAcgfuOj/9jPwbdsj61wlvx8E5gHgx/YL8mxN01eA+wngTyOH3vx/F79nTzGF0NdF7+4uFUBtHaiCL0XSpQHwn3INeDiXYrh3IYGgnkIipA8ZwQxZsHZQwdygRgiELluRu/eQGoALFTkAc4YZQJRtAw5Fx4BL2RUkD/sA+DR8AAHl4IIIg8gDYlUWQZdQQaM4QPcH6jlZx6iXqPiKbglGssKQ+kSZKQjl0kox2WJCmWOT+eMqVQtWOELDnA5DYJiER+w1e6lOdb58t+6Zsp7j6iJU0CgOoPsD6jlZf7heSq9/RbcEIy1dDdYnykzjg1Km6IFsZalX173cZv64iqoFVjiChrFgoBiDqX7eiL1mXiMiUy3n+tm+smx9RXyVR6ALh6wjRY4SVdTRovXKpJEMuxlJeVEJeY9LfHQKZOBvOnFHKc+CKVJyHe2L6E3LagU=") format("woff2"),url(//at.alicdn.com/t/font_1720629_i7vs78nm9pj.woff?t=1586145292814) format("woff"),url(//at.alicdn.com/t/font_1720629_i7vs78nm9pj.ttf?t=1586145292814) format("truetype"),url(//at.alicdn.com/t/font_1720629_i7vs78nm9pj.svg?t=1586145292814#iconfont) format("svg")}.iconfont{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.iconsanjiaojiantoutriangular:before{content:"\E600"}.iconarrdown:before{content:"\E66F"}.iconarrdown1:before{content:"\E633"}.iconrenmingbi:before{content:"\E62E"}.icondiqiu:before{content:"\E602"}html{-webkit-tap-highlight-color:transparent}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,Segoe UI,Arial,Roboto,PingFang SC,miui,Hiragino Sans GB,Microsoft Yahei,sans-serif}a{text-decoration:none}button,input,textarea{color:inherit;font:inherit}[class*=van-]:focus,a:focus,button:focus,input:focus,textarea:focus{outline:0}ol,ul{margin:0;padding:0;list-style:none}.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{display:table;clear:both;content:""}[class*=van-hairline]:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid #ebedf0;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after,.van-hairline-unset--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}@-webkit-keyframes van-slide-up-enter{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes van-slide-up-enter{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes van-slide-up-leave{to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes van-slide-up-leave{to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes van-slide-down-enter{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes van-slide-down-enter{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-webkit-keyframes van-slide-down-leave{to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes van-slide-down-leave{to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-webkit-keyframes van-slide-left-enter{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes van-slide-left-enter{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes van-slide-left-leave{to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes van-slide-left-leave{to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes van-slide-right-enter{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes van-slide-right-enter{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes van-slide-right-leave{to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes van-slide-right-leave{to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes van-fade-in{0%{opacity:0}to{opacity:1}}@keyframes van-fade-in{0%{opacity:0}to{opacity:1}}@-webkit-keyframes van-fade-out{0%{opacity:1}to{opacity:0}}@keyframes van-fade-out{0%{opacity:1}to{opacity:0}}@-webkit-keyframes van-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes van-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.van-fade-enter-active{-webkit-animation:van-fade-in .3s ease-out both;animation:van-fade-in .3s ease-out both}.van-fade-leave-active{-webkit-animation:van-fade-out .3s ease-in both;animation:van-fade-out .3s ease-in both}.van-slide-up-enter-active{-webkit-animation:van-slide-up-enter .3s ease-out both;animation:van-slide-up-enter .3s ease-out both}.van-slide-up-leave-active{-webkit-animation:van-slide-up-leave .3s ease-in both;animation:van-slide-up-leave .3s ease-in both}.van-slide-down-enter-active{-webkit-animation:van-slide-down-enter .3s ease-out both;animation:van-slide-down-enter .3s ease-out both}.van-slide-down-leave-active{-webkit-animation:van-slide-down-leave .3s ease-in both;animation:van-slide-down-leave .3s ease-in both}.van-slide-left-enter-active{-webkit-animation:van-slide-left-enter .3s ease-out both;animation:van-slide-left-enter .3s ease-out both}.van-slide-left-leave-active{-webkit-animation:van-slide-left-leave .3s ease-in both;animation:van-slide-left-leave .3s ease-in both}.van-slide-right-enter-active{-webkit-animation:van-slide-right-enter .3s ease-out both;animation:van-slide-right-enter .3s ease-out both}.van-slide-right-leave-active{-webkit-animation:van-slide-right-leave .3s ease-in both;animation:van-slide-right-leave .3s ease-in both}.van-overlay{position:fixed;top:0;left:0;z-index:1;width:100%;height:100%;background-color:rgba(0,0,0,.7)}.van-info{position:absolute;top:0;right:0;box-sizing:border-box;min-width:16px;padding:0 3px;color:#fff;font-weight:500;font-size:12px;font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;line-height:1.2;text-align:center;background-color:#ee0a24;border:1px solid #fff;border-radius:16px;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%}.van-info--dot{width:8px;min-width:0;height:8px;background-color:#ee0a24;border-radius:100%}.van-sidebar-item{position:relative;display:block;box-sizing:border-box;padding:20px 12px;overflow:hidden;color:#323233;font-size:14px;line-height:20px;background-color:#f7f8fa;cursor:pointer;-webkit-user-select:none;user-select:none}.van-sidebar-item:active{background-color:#f2f3f5}.van-sidebar-item__text{position:relative;display:inline-block;word-break:break-all}.van-sidebar-item:not(:last-child):after{border-bottom-width:1px}.van-sidebar-item--select{color:#323233;font-weight:500}.van-sidebar-item--select,.van-sidebar-item--select:active{background-color:#fff}.van-sidebar-item--select:before{position:absolute;top:50%;left:0;width:4px;height:16px;background-color:#ee0a24;-webkit-transform:translateY(-50%);transform:translateY(-50%);content:""}.van-sidebar-item--disabled{color:#c8c9cc;cursor:not-allowed}.van-sidebar-item--disabled:active{background-color:#f7f8fa}.van-icon{position:relative;font:normal normal normal 14px/1 vant-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.van-icon,.van-icon:before{display:inline-block}.van-icon-exchange:before{content:"\E6AF"}.van-icon-eye:before{content:"\E6B0"}.van-icon-enlarge:before{content:"\E6B1"}.van-icon-expand-o:before{content:"\E6B2"}.van-icon-eye-o:before{content:"\E6B3"}.van-icon-expand:before{content:"\E6B4"}.van-icon-filter-o:before{content:"\E6B5"}.van-icon-fire:before{content:"\E6B6"}.van-icon-fail:before{content:"\E6B7"}.van-icon-failure:before{content:"\E6B8"}.van-icon-fire-o:before{content:"\E6B9"}.van-icon-flag-o:before{content:"\E6BA"}.van-icon-font:before{content:"\E6BB"}.van-icon-font-o:before{content:"\E6BC"}.van-icon-gem-o:before{content:"\E6BD"}.van-icon-flower-o:before{content:"\E6BE"}.van-icon-gem:before{content:"\E6BF"}.van-icon-gift-card:before{content:"\E6C0"}.van-icon-friends:before{content:"\E6C1"}.van-icon-friends-o:before{content:"\E6C2"}.van-icon-gold-coin:before{content:"\E6C3"}.van-icon-gold-coin-o:before{content:"\E6C4"}.van-icon-good-job-o:before{content:"\E6C5"}.van-icon-gift:before{content:"\E6C6"}.van-icon-gift-o:before{content:"\E6C7"}.van-icon-gift-card-o:before{content:"\E6C8"}.van-icon-good-job:before{content:"\E6C9"}.van-icon-home-o:before{content:"\E6CA"}.van-icon-goods-collect:before{content:"\E6CB"}.van-icon-graphic:before{content:"\E6CC"}.van-icon-goods-collect-o:before{content:"\E6CD"}.van-icon-hot-o:before{content:"\E6CE"}.van-icon-info:before{content:"\E6CF"}.van-icon-hotel-o:before{content:"\E6D0"}.van-icon-info-o:before{content:"\E6D1"}.van-icon-hot-sale-o:before{content:"\E6D2"}.van-icon-hot:before{content:"\E6D3"}.van-icon-like:before{content:"\E6D4"}.van-icon-idcard:before{content:"\E6D5"}.van-icon-invitation:before{content:"\E6D6"}.van-icon-like-o:before{content:"\E6D7"}.van-icon-hot-sale:before{content:"\E6D8"}.van-icon-location-o:before{content:"\E6D9"}.van-icon-location:before{content:"\E6DA"}.van-icon-label:before{content:"\E6DB"}.van-icon-lock:before{content:"\E6DC"}.van-icon-label-o:before{content:"\E6DD"}.van-icon-map-marked:before{content:"\E6DE"}.van-icon-logistics:before{content:"\E6DF"}.van-icon-manager:before{content:"\E6E0"}.van-icon-more:before{content:"\E6E1"}.van-icon-live:before{content:"\E6E2"}.van-icon-manager-o:before{content:"\E6E3"}.van-icon-medal:before{content:"\E6E4"}.van-icon-more-o:before{content:"\E6E5"}.van-icon-music-o:before{content:"\E6E6"}.van-icon-music:before{content:"\E6E7"}.van-icon-new-arrival-o:before{content:"\E6E8"}.van-icon-medal-o:before{content:"\E6E9"}.van-icon-new-o:before{content:"\E6EA"}.van-icon-free-postage:before{content:"\E6EB"}.van-icon-newspaper-o:before{content:"\E6EC"}.van-icon-new-arrival:before{content:"\E6ED"}.van-icon-minus:before{content:"\E6EE"}.van-icon-orders-o:before{content:"\E6EF"}.van-icon-new:before{content:"\E6F0"}.van-icon-paid:before{content:"\E6F1"}.van-icon-notes-o:before{content:"\E6F2"}.van-icon-other-pay:before{content:"\E6F3"}.van-icon-pause-circle:before{content:"\E6F4"}.van-icon-pause:before{content:"\E6F5"}.van-icon-pause-circle-o:before{content:"\E6F6"}.van-icon-peer-pay:before{content:"\E6F7"}.van-icon-pending-payment:before{content:"\E6F8"}.van-icon-passed:before{content:"\E6F9"}.van-icon-plus:before{content:"\E6FA"}.van-icon-phone-circle-o:before{content:"\E6FB"}.van-icon-phone-o:before{content:"\E6FC"}.van-icon-printer:before{content:"\E6FD"}.van-icon-photo-fail:before{content:"\E6FE"}.van-icon-phone:before{content:"\E6FF"}.van-icon-photo-o:before{content:"\E700"}.van-icon-play-circle:before{content:"\E701"}.van-icon-play:before{content:"\E702"}.van-icon-phone-circle:before{content:"\E703"}.van-icon-point-gift-o:before{content:"\E704"}.van-icon-point-gift:before{content:"\E705"}.van-icon-play-circle-o:before{content:"\E706"}.van-icon-shrink:before{content:"\E707"}.van-icon-photo:before{content:"\E708"}.van-icon-qr:before{content:"\E709"}.van-icon-qr-invalid:before{content:"\E70A"}.van-icon-question-o:before{content:"\E70B"}.van-icon-revoke:before{content:"\E70C"}.van-icon-replay:before{content:"\E70D"}.van-icon-service:before{content:"\E70E"}.van-icon-question:before{content:"\E70F"}.van-icon-search:before{content:"\E710"}.van-icon-refund-o:before{content:"\E711"}.van-icon-service-o:before{content:"\E712"}.van-icon-scan:before{content:"\E713"}.van-icon-share:before{content:"\E714"}.van-icon-send-gift-o:before{content:"\E715"}.van-icon-share-o:before{content:"\E716"}.van-icon-setting:before{content:"\E717"}.van-icon-points:before{content:"\E718"}.van-icon-photograph:before{content:"\E719"}.van-icon-shop:before{content:"\E71A"}.van-icon-shop-o:before{content:"\E71B"}.van-icon-shop-collect-o:before{content:"\E71C"}.van-icon-shop-collect:before{content:"\E71D"}.van-icon-smile:before{content:"\E71E"}.van-icon-shopping-cart-o:before{content:"\E71F"}.van-icon-sign:before{content:"\E720"}.van-icon-sort:before{content:"\E721"}.van-icon-star-o:before{content:"\E722"}.van-icon-smile-comment-o:before{content:"\E723"}.van-icon-stop:before{content:"\E724"}.van-icon-stop-circle-o:before{content:"\E725"}.van-icon-smile-o:before{content:"\E726"}.van-icon-star:before{content:"\E727"}.van-icon-success:before{content:"\E728"}.van-icon-stop-circle:before{content:"\E729"}.van-icon-records:before{content:"\E72A"}.van-icon-shopping-cart:before{content:"\E72B"}.van-icon-tosend:before{content:"\E72C"}.van-icon-todo-list:before{content:"\E72D"}.van-icon-thumb-circle-o:before{content:"\E72E"}.van-icon-thumb-circle:before{content:"\E72F"}.van-icon-umbrella-circle:before{content:"\E730"}.van-icon-underway:before{content:"\E731"}.van-icon-upgrade:before{content:"\E732"}.van-icon-todo-list-o:before{content:"\E733"}.van-icon-tv-o:before{content:"\E734"}.van-icon-underway-o:before{content:"\E735"}.van-icon-user-o:before{content:"\E736"}.van-icon-vip-card-o:before{content:"\E737"}.van-icon-vip-card:before{content:"\E738"}.van-icon-send-gift:before{content:"\E739"}.van-icon-wap-home:before{content:"\E73A"}.van-icon-wap-nav:before{content:"\E73B"}.van-icon-volume-o:before{content:"\E73C"}.van-icon-video:before{content:"\E73D"}.van-icon-wap-home-o:before{content:"\E73E"}.van-icon-volume:before{content:"\E73F"}.van-icon-warning:before{content:"\E740"}.van-icon-weapp-nav:before{content:"\E741"}.van-icon-wechat-pay:before{content:"\E742"}.van-icon-warning-o:before{content:"\E743"}.van-icon-wechat:before{content:"\E744"}.van-icon-setting-o:before{content:"\E745"}.van-icon-youzan-shield:before{content:"\E746"}.van-icon-warn-o:before{content:"\E747"}.van-icon-smile-comment:before{content:"\E748"}.van-icon-user-circle-o:before{content:"\E749"}.van-icon-video-o:before{content:"\E74A"}.van-icon-add-square:before{content:"\E65C"}.van-icon-add:before{content:"\E65D"}.van-icon-arrow-down:before{content:"\E65E"}.van-icon-arrow-up:before{content:"\E65F"}.van-icon-arrow:before{content:"\E660"}.van-icon-after-sale:before{content:"\E661"}.van-icon-add-o:before{content:"\E662"}.van-icon-alipay:before{content:"\E663"}.van-icon-ascending:before{content:"\E664"}.van-icon-apps-o:before{content:"\E665"}.van-icon-aim:before{content:"\E666"}.van-icon-award:before{content:"\E667"}.van-icon-arrow-left:before{content:"\E668"}.van-icon-award-o:before{content:"\E669"}.van-icon-audio:before{content:"\E66A"}.van-icon-bag-o:before{content:"\E66B"}.van-icon-balance-list:before{content:"\E66C"}.van-icon-back-top:before{content:"\E66D"}.van-icon-bag:before{content:"\E66E"}.van-icon-balance-pay:before{content:"\E66F"}.van-icon-balance-o:before{content:"\E670"}.van-icon-bar-chart-o:before{content:"\E671"}.van-icon-bars:before{content:"\E672"}.van-icon-balance-list-o:before{content:"\E673"}.van-icon-birthday-cake-o:before{content:"\E674"}.van-icon-bookmark:before{content:"\E675"}.van-icon-bill:before{content:"\E676"}.van-icon-bell:before{content:"\E677"}.van-icon-browsing-history-o:before{content:"\E678"}.van-icon-browsing-history:before{content:"\E679"}.van-icon-bookmark-o:before{content:"\E67A"}.van-icon-bulb-o:before{content:"\E67B"}.van-icon-bullhorn-o:before{content:"\E67C"}.van-icon-bill-o:before{content:"\E67D"}.van-icon-calendar-o:before{content:"\E67E"}.van-icon-brush-o:before{content:"\E67F"}.van-icon-card:before{content:"\E680"}.van-icon-cart-o:before{content:"\E681"}.van-icon-cart-circle:before{content:"\E682"}.van-icon-cart-circle-o:before{content:"\E683"}.van-icon-cart:before{content:"\E684"}.van-icon-cash-on-deliver:before{content:"\E685"}.van-icon-cash-back-record:before{content:"\E686"}.van-icon-cashier-o:before{content:"\E687"}.van-icon-chart-trending-o:before{content:"\E688"}.van-icon-certificate:before{content:"\E689"}.van-icon-chat:before{content:"\E68A"}.van-icon-clear:before{content:"\E68B"}.van-icon-chat-o:before{content:"\E68C"}.van-icon-checked:before{content:"\E68D"}.van-icon-clock:before{content:"\E68E"}.van-icon-clock-o:before{content:"\E68F"}.van-icon-close:before{content:"\E690"}.van-icon-closed-eye:before{content:"\E691"}.van-icon-circle:before{content:"\E692"}.van-icon-cluster-o:before{content:"\E693"}.van-icon-column:before{content:"\E694"}.van-icon-comment-circle-o:before{content:"\E695"}.van-icon-cluster:before{content:"\E696"}.van-icon-comment:before{content:"\E697"}.van-icon-comment-o:before{content:"\E698"}.van-icon-comment-circle:before{content:"\E699"}.van-icon-completed:before{content:"\E69A"}.van-icon-credit-pay:before{content:"\E69B"}.van-icon-coupon:before{content:"\E69C"}.van-icon-debit-pay:before{content:"\E69D"}.van-icon-coupon-o:before{content:"\E69E"}.van-icon-contact:before{content:"\E69F"}.van-icon-descending:before{content:"\E6A0"}.van-icon-desktop-o:before{content:"\E6A1"}.van-icon-diamond-o:before{content:"\E6A2"}.van-icon-description:before{content:"\E6A3"}.van-icon-delete:before{content:"\E6A4"}.van-icon-diamond:before{content:"\E6A5"}.van-icon-delete-o:before{content:"\E6A6"}.van-icon-cross:before{content:"\E6A7"}.van-icon-edit:before{content:"\E6A8"}.van-icon-ellipsis:before{content:"\E6A9"}.van-icon-down:before{content:"\E6AA"}.van-icon-discount:before{content:"\E6AB"}.van-icon-ecard-pay:before{content:"\E6AC"}.van-icon-envelop-o:before{content:"\E6AE"}.van-icon-shield-o:before{content:"\E74B"}.van-icon-guide-o:before{content:"\E74C"}@font-face{font-weight:400;font-family:vant-icon;font-style:normal;font-display:auto;src:url("data:font/woff2;charset=utf-8;base64,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") format("woff2"),url(//at.alicdn.com/t/font_2553510_61agzg96wm8.woff?t=1631948257467) format("woff"),url(//at.alicdn.com/t/font_2553510_61agzg96wm8.ttf?t=1631948257467) format("truetype")}.van-icon__image{display:block;width:1em;height:1em;object-fit:contain}.van-tabbar-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#646566;font-size:12px;line-height:1;cursor:pointer}.van-tabbar-item__icon{position:relative;margin-bottom:4px;font-size:22px}.van-tabbar-item__icon .van-icon{display:block}.van-tabbar-item__icon img{display:block;height:20px}.van-tabbar-item--active{color:#1989fa;background-color:#fff}.van-tabbar-item .van-info{margin-top:4px}.van-step{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#969799;font-size:14px}.van-step__circle{display:block;width:5px;height:5px;background-color:#969799;border-radius:50%}.van-step__line{position:absolute;background-color:#ebedf0;-webkit-transition:background-color .3s;transition:background-color .3s}.van-step--horizontal{float:left}.van-step--horizontal:first-child .van-step__title{margin-left:0;-webkit-transform:none;transform:none}.van-step--horizontal:last-child{position:absolute;right:1px;width:auto}.van-step--horizontal:last-child .van-step__title{margin-left:0;-webkit-transform:none;transform:none}.van-step--horizontal:last-child .van-step__circle-container{right:-9px;left:auto}.van-step--horizontal .van-step__circle-container{position:absolute;top:30px;left:-8px;z-index:1;padding:0 8px;background-color:#fff;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-step--horizontal .van-step__title{display:inline-block;margin-left:3px;font-size:12px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}@media (max-width:321px){.van-step--horizontal .van-step__title{font-size:11px}}.van-step--horizontal .van-step__line{top:30px;left:0;width:100%;height:1px}.van-step--horizontal .van-step__icon{display:block;font-size:12px}.van-step--horizontal .van-step--process{color:#323233}.van-step--vertical{display:block;float:none;padding:10px 10px 10px 0;line-height:18px}.van-step--vertical:not(:last-child):after{border-bottom-width:1px}.van-step--vertical .van-step__circle-container{position:absolute;top:19px;left:-15px;z-index:1;font-size:12px;line-height:1;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.van-step--vertical .van-step__line{top:16px;left:-15px;width:1px;height:100%}.van-step:last-child .van-step__line{width:0}.van-step--finish{color:#323233}.van-step--finish .van-step__circle,.van-step--finish .van-step__line{background-color:#07c160}.van-step__icon,.van-step__title{-webkit-transition:color .3s;transition:color .3s}.van-step__icon--active,.van-step__icon--finish,.van-step__title--active,.van-step__title--finish{color:#07c160}.van-rate{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;cursor:pointer;-webkit-user-select:none;user-select:none}.van-rate__item{position:relative}.van-rate__item:not(:last-child){padding-right:4px}.van-rate__icon{display:block;width:1em;color:#c8c9cc;font-size:20px}.van-rate__icon--half{position:absolute;top:0;left:0;width:.5em;overflow:hidden}.van-rate__icon--full{color:#ee0a24}.van-rate__icon--disabled{color:#c8c9cc}.van-rate--disabled{cursor:not-allowed}.van-rate--readonly{cursor:default}.van-notice-bar{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:40px;padding:0 16px;color:#ed6a0c;font-size:14px;line-height:24px;background-color:#fffbe8}.van-notice-bar__left-icon,.van-notice-bar__right-icon{min-width:24px;font-size:16px}.van-notice-bar__right-icon{text-align:right;cursor:pointer}.van-notice-bar__wrap{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:100%;overflow:hidden}.van-notice-bar__content{position:absolute;white-space:nowrap;-webkit-transition-timing-function:linear;transition-timing-function:linear}.van-notice-bar__content.van-ellipsis{max-width:100%}.van-notice-bar--wrapable{height:auto;padding:8px 16px}.van-notice-bar--wrapable .van-notice-bar__wrap{height:auto}.van-notice-bar--wrapable .van-notice-bar__content{position:relative;white-space:normal;word-wrap:break-word}.van-nav-bar{position:relative;z-index:1;line-height:22px;text-align:center;background-color:#fff;-webkit-user-select:none;user-select:none}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar--safe-area-inset-top{padding-top:env(safe-area-inset-top)}.van-nav-bar .van-icon{color:#1989fa}.van-nav-bar__content{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:46px}.van-nav-bar__arrow{margin-right:4px;font-size:16px}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;font-weight:500;font-size:16px}.van-nav-bar__left,.van-nav-bar__right{position:absolute;top:0;bottom:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 16px;font-size:14px;cursor:pointer}.van-nav-bar__left:active,.van-nav-bar__right:active{opacity:.7}.van-nav-bar__left{left:0}.van-nav-bar__right{right:0}.van-nav-bar__text{color:#1989fa}.van-grid-item{position:relative;box-sizing:border-box}.van-grid-item--square{height:0}.van-grid-item__icon{font-size:28px}.van-grid-item__icon-wrapper{position:relative}.van-grid-item__text{color:#646566;font-size:12px;line-height:1.5;word-break:break-all}.van-grid-item__icon+.van-grid-item__text{margin-top:8px}.van-grid-item__content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;box-sizing:border-box;height:100%;padding:16px 8px;background-color:#fff}.van-grid-item__content:after{z-index:1;border-width:0 1px 1px 0}.van-grid-item__content--square{position:absolute;top:0;right:0;left:0}.van-grid-item__content--center{-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-grid-item__content--horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row}.van-grid-item__content--horizontal .van-grid-item__icon+.van-grid-item__text{margin-top:0;margin-left:8px}.van-grid-item__content--surround:after{border-width:1px}.van-grid-item__content--clickable{cursor:pointer}.van-grid-item__content--clickable:active{background-color:#f2f3f5}.van-goods-action-icon{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-width:48px;height:100%;color:#646566;font-size:10px;line-height:1;text-align:center;background-color:#fff;cursor:pointer}.van-goods-action-icon:active{background-color:#f2f3f5}.van-goods-action-icon__icon{position:relative;width:1em;margin:0 auto 5px;color:#323233;font-size:18px}.van-checkbox{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;overflow:hidden;cursor:pointer;-webkit-user-select:none;user-select:none}.van-checkbox--disabled{cursor:not-allowed}.van-checkbox--label-disabled{cursor:default}.van-checkbox--horizontal{margin-right:12px}.van-checkbox__icon{-webkit-box-flex:0;-webkit-flex:none;flex:none;height:1em;font-size:20px;line-height:1em;cursor:pointer}.van-checkbox__icon .van-icon{display:block;box-sizing:border-box;width:1.25em;height:1.25em;color:transparent;font-size:.8em;line-height:1.25;text-align:center;border:1px solid #c8c9cc;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:color,border-color,background-color;transition-property:color,border-color,background-color}.van-checkbox__icon--round .van-icon{border-radius:100%}.van-checkbox__icon--checked .van-icon{color:#fff;background-color:#1989fa;border-color:#1989fa}.van-checkbox__icon--disabled{cursor:not-allowed}.van-checkbox__icon--disabled .van-icon{background-color:#ebedf0;border-color:#c8c9cc}.van-checkbox__icon--disabled.van-checkbox__icon--checked .van-icon{color:#c8c9cc}.van-checkbox__label{margin-left:8px;color:#323233;line-height:20px}.van-checkbox__label--left{margin:0 8px 0 0}.van-checkbox__label--disabled{color:#c8c9cc}.van-coupon{margin:0 12px 12px;overflow:hidden;background-color:#fff;border-radius:8px;box-shadow:0 0 4px rgba(0,0,0,.1)}.van-coupon:active{background-color:#f2f3f5}.van-coupon__content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:border-box;min-height:84px;padding:14px 0;color:#323233}.van-coupon__head{position:relative;min-width:96px;padding:0 8px;color:#ee0a24;text-align:center}.van-coupon__amount,.van-coupon__condition,.van-coupon__name,.van-coupon__valid{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-coupon__amount{margin-bottom:6px;font-weight:500;font-size:30px}.van-coupon__amount span{font-weight:400;font-size:40%}.van-coupon__amount span:not(:empty){margin-left:2px}.van-coupon__condition{font-size:12px;line-height:16px;white-space:pre-wrap}.van-coupon__body{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;border-radius:0 8px 8px 0}.van-coupon__name{margin-bottom:10px;font-weight:700;font-size:14px;line-height:20px}.van-coupon__valid{font-size:12px}.van-coupon__corner{position:absolute;top:0;right:16px;bottom:0}.van-coupon__description{padding:8px 16px;font-size:12px;border-top:1px dashed #ebedf0}.van-coupon--disabled:active{background-color:#fff}.van-coupon--disabled .van-coupon-item__content{height:74px}.van-coupon--disabled .van-coupon__head{color:inherit}.van-image{position:relative;display:inline-block}.van-image--round{overflow:hidden;border-radius:50%}.van-image--round img{border-radius:inherit}.van-image__error,.van-image__img,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#969799;font-size:14px;background-color:#f7f8fa}.van-image__error-icon,.van-image__loading-icon{color:#dcdee0;font-size:32px}.van-radio{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;overflow:hidden;cursor:pointer;-webkit-user-select:none;user-select:none}.van-radio--disabled{cursor:not-allowed}.van-radio--label-disabled{cursor:default}.van-radio--horizontal{margin-right:12px}.van-radio__icon{-webkit-box-flex:0;-webkit-flex:none;flex:none;height:1em;font-size:20px;line-height:1em;cursor:pointer}.van-radio__icon .van-icon{display:block;box-sizing:border-box;width:1.25em;height:1.25em;color:transparent;font-size:.8em;line-height:1.25;text-align:center;border:1px solid #c8c9cc;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:color,border-color,background-color;transition-property:color,border-color,background-color}.van-radio__icon--round .van-icon{border-radius:100%}.van-radio__icon--checked .van-icon{color:#fff;background-color:#1989fa;border-color:#1989fa}.van-radio__icon--disabled{cursor:not-allowed}.van-radio__icon--disabled .van-icon{background-color:#ebedf0;border-color:#c8c9cc}.van-radio__icon--disabled.van-radio__icon--checked .van-icon{color:#c8c9cc}.van-radio__label{margin-left:8px;color:#323233;line-height:20px}.van-radio__label--left{margin:0 8px 0 0}.van-radio__label--disabled{color:#c8c9cc}.van-tag{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 4px;color:#fff;font-size:12px;line-height:16px;border-radius:2px}.van-tag--default{background-color:#969799}.van-tag--default.van-tag--plain{color:#969799}.van-tag--danger{background-color:#ee0a24}.van-tag--danger.van-tag--plain{color:#ee0a24}.van-tag--primary{background-color:#1989fa}.van-tag--primary.van-tag--plain{color:#1989fa}.van-tag--success{background-color:#07c160}.van-tag--success.van-tag--plain{color:#07c160}.van-tag--warning{background-color:#ff976a}.van-tag--warning.van-tag--plain{color:#ff976a}.van-tag--plain{background-color:#fff;border-color:currentColor}.van-tag--plain:before{position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid;border-color:inherit;border-radius:inherit;content:"";pointer-events:none}.van-tag--medium{padding:2px 6px}.van-tag--large{padding:4px 8px;font-size:14px;border-radius:4px}.van-tag--mark{border-radius:0 999px 999px 0}.van-tag--mark:after{display:block;width:2px;content:""}.van-tag--round{border-radius:999px}.van-tag__close{margin-left:2px;cursor:pointer}.van-card{position:relative;box-sizing:border-box;padding:8px 16px;color:#323233;font-size:12px;background-color:#fafafa}.van-card:not(:first-child){margin-top:8px}.van-card__header{display:-webkit-box;display:-webkit-flex;display:flex}.van-card__thumb{position:relative;-webkit-box-flex:0;-webkit-flex:none;flex:none;width:88px;height:88px;margin-right:8px}.van-card__thumb img{border-radius:8px}.van-card__content{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;min-width:0;min-height:88px}.van-card__content--centered{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-card__desc,.van-card__title{word-wrap:break-word}.van-card__title{max-height:32px;font-weight:500;line-height:16px}.van-card__desc{max-height:20px;color:#646566}.van-card__bottom,.van-card__desc{line-height:20px}.van-card__price{display:inline-block;color:#323233;font-weight:500;font-size:12px}.van-card__price-integer{font-size:16px}.van-card__price-decimal,.van-card__price-integer{font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-card__origin-price{display:inline-block;margin-left:5px;color:#969799;font-size:10px;text-decoration:line-through}.van-card__num{float:right;color:#969799}.van-card__tag{position:absolute;top:2px;left:0}.van-card__footer{-webkit-box-flex:0;-webkit-flex:none;flex:none;text-align:right}.van-card__footer .van-button{margin-left:5px}.van-cell{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:10px 16px;overflow:hidden;color:#323233;font-size:14px;line-height:24px;background-color:#fff}.van-cell:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;right:16px;bottom:0;left:16px;border-bottom:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-cell--borderless:after,.van-cell:last-child:after{display:none}.van-cell__label{margin-top:4px;color:#969799;font-size:12px;line-height:18px}.van-cell__title,.van-cell__value{-webkit-box-flex:1;-webkit-flex:1;flex:1}.van-cell__value{position:relative;overflow:hidden;color:#969799;text-align:right;vertical-align:middle;word-wrap:break-word}.van-cell__value--alone{color:#323233;text-align:left}.van-cell__left-icon,.van-cell__right-icon{height:24px;font-size:16px;line-height:24px}.van-cell__left-icon{margin-right:4px}.van-cell__right-icon{margin-left:4px;color:#969799}.van-cell--clickable{cursor:pointer}.van-cell--clickable:active{background-color:#f2f3f5}.van-cell--required{overflow:visible}.van-cell--required:before{position:absolute;left:8px;color:#ee0a24;font-size:14px;content:"*"}.van-cell--center{-webkit-box-align:center;-webkit-align-items:center;align-items:center}.van-cell--large{padding-top:12px;padding-bottom:12px}.van-cell--large .van-cell__title{font-size:16px}.van-cell--large .van-cell__label{font-size:14px}.van-coupon-cell__value--selected{color:#323233}.van-contact-card{padding:16px}.van-contact-card__value{margin-left:5px;line-height:20px}.van-contact-card--add .van-contact-card__value{line-height:40px}.van-contact-card--add .van-cell__left-icon{color:#1989fa;font-size:40px}.van-contact-card:before{position:absolute;right:0;bottom:0;left:0;height:2px;background:-webkit-repeating-linear-gradient(135deg,#ff6c6c,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);background:repeating-linear-gradient(-45deg,#ff6c6c,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);background-size:80px;content:""}.van-collapse-item{position:relative}.van-collapse-item--border:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;top:0;right:16px;left:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-collapse-item__title .van-cell__right-icon:before{-webkit-transform:rotate(90deg) translateZ(0);transform:rotate(90deg) translateZ(0);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.van-collapse-item__title:after{right:16px;display:none}.van-collapse-item__title--expanded .van-cell__right-icon:before{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--expanded:after{display:block}.van-collapse-item__title--borderless:after{display:none}.van-collapse-item__title--disabled{cursor:not-allowed}.van-collapse-item__title--disabled,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c8c9cc}.van-collapse-item__title--disabled:active{background-color:#fff}.van-collapse-item__wrapper{overflow:hidden;-webkit-transition:height .3s ease-in-out;transition:height .3s ease-in-out;will-change:height}.van-collapse-item__content{padding:12px 16px;color:#969799;font-size:14px;line-height:1.5;background-color:#fff}.van-field__label{-webkit-box-flex:0;-webkit-flex:none;flex:none;box-sizing:border-box;width:6.2em;margin-right:12px;color:#646566;text-align:left;word-wrap:break-word}.van-field__label--center{text-align:center}.van-field__label--right{text-align:right}.van-field--disabled .van-field__label{color:#c8c9cc}.van-field__value{overflow:visible}.van-field__body{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.van-field__control{display:block;box-sizing:border-box;width:100%;min-width:0;margin:0;padding:0;color:#323233;line-height:inherit;text-align:left;background-color:transparent;border:0;resize:none}.van-field__control::-webkit-input-placeholder{color:#c8c9cc}.van-field__control::placeholder{color:#c8c9cc}.van-field__control:disabled{color:#c8c9cc;cursor:not-allowed;opacity:1;-webkit-text-fill-color:#c8c9cc}.van-field__control:read-only{cursor:default}.van-field__control--center{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center}.van-field__control--right{-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;text-align:right}.van-field__control--custom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;min-height:24px}.van-field__control[type=date],.van-field__control[type=datetime-local],.van-field__control[type=time]{min-height:24px}.van-field__control[type=search]{-webkit-appearance:none}.van-field__button,.van-field__clear,.van-field__icon,.van-field__right-icon{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear,.van-field__right-icon{margin-right:-8px;padding:0 8px;line-height:inherit}.van-field__clear{color:#c8c9cc;font-size:16px;cursor:pointer}.van-field__left-icon .van-icon,.van-field__right-icon .van-icon{display:block;font-size:16px;line-height:inherit}.van-field__left-icon{margin-right:4px}.van-field__right-icon{color:#969799}.van-field__button{padding-left:8px}.van-field__error-message{color:#ee0a24;font-size:12px;text-align:left}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}.van-field__word-limit{margin-top:4px;color:#646566;font-size:12px;line-height:16px;text-align:right}.van-field--error .van-field__control::-webkit-input-placeholder{color:#ee0a24;-webkit-text-fill-color:currentColor}.van-field--error .van-field__control,.van-field--error .van-field__control::-webkit-input-placeholder{color:#ee0a24;-webkit-text-fill-color:currentColor}.van-field--error .van-field__control,.van-field--error .van-field__control::placeholder{color:#ee0a24;-webkit-text-fill-color:currentColor}.van-field--min-height .van-field__control{min-height:60px}.van-search{-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:border-box;padding:10px 12px;background-color:#fff}.van-search,.van-search__content{display:-webkit-box;display:-webkit-flex;display:flex}.van-search__content{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding-left:12px;background-color:#f7f8fa;border-radius:2px}.van-search__content--round{border-radius:999px}.van-search__label{padding:0 5px;color:#323233;font-size:14px;line-height:34px}.van-search .van-cell{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:5px 8px 5px 0;background-color:transparent}.van-search .van-cell__left-icon{color:#969799}.van-search--show-action{padding-right:0}.van-search input::-webkit-search-cancel-button,.van-search input::-webkit-search-decoration,.van-search input::-webkit-search-results-button,.van-search input::-webkit-search-results-decoration{display:none}.van-search__action{padding:0 8px;color:#323233;font-size:14px;line-height:34px;cursor:pointer;-webkit-user-select:none;user-select:none}.van-search__action:active{background-color:#f2f3f5}.van-overflow-hidden{overflow:hidden!important}.van-popup{position:fixed;max-height:100%;overflow-y:auto;background-color:#fff;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-overflow-scrolling:touch}.van-popup--center{top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:16px}.van-popup--top{top:0;left:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 16px 16px}.van-popup--right{top:50%;right:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:16px 0 0 16px}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:16px 16px 0 0}.van-popup--left{top:50%;left:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 16px 16px 0}.van-popup--safe-area-inset-bottom{padding-bottom:env(safe-area-inset-bottom)}.van-popup-slide-bottom-enter-active,.van-popup-slide-left-enter-active,.van-popup-slide-right-enter-active,.van-popup-slide-top-enter-active{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.van-popup-slide-bottom-leave-active,.van-popup-slide-left-leave-active,.van-popup-slide-right-leave-active,.van-popup-slide-top-leave-active{-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}.van-popup-slide-top-enter,.van-popup-slide-top-leave-active{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-popup-slide-right-enter,.van-popup-slide-right-leave-active{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}.van-popup-slide-bottom-enter,.van-popup-slide-bottom-leave-active{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-popup-slide-left-enter,.van-popup-slide-left-leave-active{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}.van-popup__close-icon{position:absolute;z-index:1;color:#c8c9cc;font-size:22px;cursor:pointer}.van-popup__close-icon:active{color:#969799}.van-popup__close-icon--top-left{top:16px;left:16px}.van-popup__close-icon--top-right{top:16px;right:16px}.van-popup__close-icon--bottom-left{bottom:16px;left:16px}.van-popup__close-icon--bottom-right{right:16px;bottom:16px}.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{margin-top:8px;color:#323233;font-weight:400;font-size:14px;line-height:20px}.van-share-sheet__description{display:block;margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-share-sheet__options{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;padding:16px 0 16px 8px;overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch}.van-share-sheet__options--border:before{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;top:0;right:0;left:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;cursor:pointer;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__icon{width:48px;height:48px;margin:0 16px}.van-share-sheet__name{margin-top:8px;padding:0 4px;color:#646566;font-size:12px}.van-share-sheet__option-description{padding:0 4px;color:#c8c9cc;font-size:12px}.van-share-sheet__cancel{display:block;width:100%;padding:0;font-size:16px;line-height:48px;text-align:center;background:#fff;border:none;cursor:pointer}.van-share-sheet__cancel:before{display:block;height:8px;background-color:#f7f8fa;content:" "}.van-share-sheet__cancel:active{background-color:#f2f3f5}.van-popover{position:absolute;overflow:visible;background-color:transparent;-webkit-transition:opacity .15s,-webkit-transform .15s;transition:opacity .15s,-webkit-transform .15s;transition:opacity .15s,transform .15s;transition:opacity .15s,transform .15s,-webkit-transform .15s}.van-popover__wrapper{display:inline-block}.van-popover__arrow{position:absolute;width:0;height:0;border:6px solid transparent}.van-popover__content{overflow:hidden;border-radius:8px}.van-popover__action{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:border-box;width:128px;height:44px;padding:0 16px;font-size:14px;line-height:20px;cursor:pointer}.van-popover__action:last-child .van-popover__action-text:after{display:none}.van-popover__action-text{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:100%}.van-popover__action-icon{margin-right:8px;font-size:20px}.van-popover__action--with-icon .van-popover__action-text{-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.van-popover[data-popper-placement^=top] .van-popover__arrow{bottom:0;border-top-color:currentColor;border-bottom-width:0;-webkit-transform:translate(-50%,100%);transform:translate(-50%,100%)}.van-popover[data-popper-placement=top]{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.van-popover[data-popper-placement=top] .van-popover__arrow{left:50%}.van-popover[data-popper-placement=top-start]{-webkit-transform-origin:0 100%;transform-origin:0 100%}.van-popover[data-popper-placement=top-start] .van-popover__arrow{left:16px}.van-popover[data-popper-placement=top-end]{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.van-popover[data-popper-placement=top-end] .van-popover__arrow{right:16px}.van-popover[data-popper-placement^=left] .van-popover__arrow{right:0;border-right-width:0;border-left-color:currentColor;-webkit-transform:translate(100%,-50%);transform:translate(100%,-50%)}.van-popover[data-popper-placement=left]{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.van-popover[data-popper-placement=left] .van-popover__arrow{top:50%}.van-popover[data-popper-placement=left-start]{-webkit-transform-origin:100% 0;transform-origin:100% 0}.van-popover[data-popper-placement=left-start] .van-popover__arrow{top:16px}.van-popover[data-popper-placement=left-end]{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.van-popover[data-popper-placement=left-end] .van-popover__arrow{bottom:16px}.van-popover[data-popper-placement^=right] .van-popover__arrow{left:0;border-right-color:currentColor;border-left-width:0;-webkit-transform:translate(-100%,-50%);transform:translate(-100%,-50%)}.van-popover[data-popper-placement=right]{-webkit-transform-origin:0 50%;transform-origin:0 50%}.van-popover[data-popper-placement=right] .van-popover__arrow{top:50%}.van-popover[data-popper-placement=right-start]{-webkit-transform-origin:0 0;transform-origin:0 0}.van-popover[data-popper-placement=right-start] .van-popover__arrow{top:16px}.van-popover[data-popper-placement=right-end]{-webkit-transform-origin:0 100%;transform-origin:0 100%}.van-popover[data-popper-placement=right-end] .van-popover__arrow{bottom:16px}.van-popover[data-popper-placement^=bottom] .van-popover__arrow{top:0;border-top-width:0;border-bottom-color:currentColor;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%)}.van-popover[data-popper-placement=bottom]{-webkit-transform-origin:50% 0;transform-origin:50% 0}.van-popover[data-popper-placement=bottom] .van-popover__arrow{left:50%}.van-popover[data-popper-placement=bottom-start]{-webkit-transform-origin:0 0;transform-origin:0 0}.van-popover[data-popper-placement=bottom-start] .van-popover__arrow{left:16px}.van-popover[data-popper-placement=bottom-end]{-webkit-transform-origin:100% 0;transform-origin:100% 0}.van-popover[data-popper-placement=bottom-end] .van-popover__arrow{right:16px}.van-popover--light{color:#323233}.van-popover--light .van-popover__content{background-color:#fff;box-shadow:0 2px 12px rgba(50,50,51,.12)}.van-popover--light .van-popover__arrow{color:#fff}.van-popover--light .van-popover__action:active{background-color:#f2f3f5}.van-popover--light .van-popover__action--disabled{color:#c8c9cc;cursor:not-allowed}.van-popover--light .van-popover__action--disabled:active{background-color:transparent}.van-popover--dark{color:#fff}.van-popover--dark .van-popover__content{background-color:#4a4a4a}.van-popover--dark .van-popover__arrow{color:#4a4a4a}.van-popover--dark .van-popover__action:active{background-color:rgba(0,0,0,.2)}.van-popover--dark .van-popover__action--disabled{color:#969799}.van-popover--dark .van-popover__action--disabled:active{background-color:transparent}.van-popover--dark .van-popover__action-text:after{border-color:#646566}.van-popover-zoom-enter,.van-popover-zoom-leave-active{-webkit-transform:scale(.8);transform:scale(.8);opacity:0}.van-popover-zoom-enter-active{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.van-popover-zoom-leave-active{-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}.van-notify{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:8px 16px;color:#fff;font-size:14px;line-height:20px;white-space:pre-wrap;text-align:center;word-wrap:break-word}.van-notify--primary{background-color:#1989fa}.van-notify--success{background-color:#07c160}.van-notify--danger{background-color:#ee0a24}.van-notify--warning{background-color:#ff976a}.van-dropdown-item{position:fixed;right:0;left:0;z-index:10;overflow:hidden}.van-dropdown-item__icon{display:block;line-height:inherit}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active,.van-dropdown-item__option--active .van-dropdown-item__icon{color:#ee0a24}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__content{position:absolute;max-height:80%}.van-loading{color:#c8c9cc;font-size:0}.van-loading,.van-loading__spinner{position:relative;vertical-align:middle}.van-loading__spinner{display:inline-block;width:30px;max-width:100%;height:30px;max-height:100%;-webkit-animation:van-rotate .8s linear infinite;animation:van-rotate .8s linear infinite}.van-loading__spinner--spinner{-webkit-animation-timing-function:steps(12);animation-timing-function:steps(12)}.van-loading__spinner--spinner i{position:absolute;top:0;left:0;width:100%;height:100%}.van-loading__spinner--spinner i:before{display:block;width:2px;height:25%;margin:0 auto;background-color:currentColor;border-radius:40%;content:" "}.van-loading__spinner--circular{-webkit-animation-duration:2s;animation-duration:2s}.van-loading__circular{display:block;width:100%;height:100%}.van-loading__circular circle{-webkit-animation:van-circular 1.5s ease-in-out infinite;animation:van-circular 1.5s ease-in-out infinite;stroke:currentColor;stroke-width:3;stroke-linecap:round}.van-loading__text{display:inline-block;margin-left:8px;color:#969799;font-size:14px;vertical-align:middle}.van-loading--vertical{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.van-loading--vertical .van-loading__text{margin:8px 0 0}@-webkit-keyframes van-circular{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40}to{stroke-dasharray:90,150;stroke-dashoffset:-120}}@keyframes van-circular{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40}to{stroke-dasharray:90,150;stroke-dashoffset:-120}}.van-loading__spinner--spinner i:first-of-type{-webkit-transform:rotate(30deg);transform:rotate(30deg);opacity:1}.van-loading__spinner--spinner i:nth-of-type(2){-webkit-transform:rotate(60deg);transform:rotate(60deg);opacity:.9375}.van-loading__spinner--spinner i:nth-of-type(3){-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:.875}.van-loading__spinner--spinner i:nth-of-type(4){-webkit-transform:rotate(120deg);transform:rotate(120deg);opacity:.8125}.van-loading__spinner--spinner i:nth-of-type(5){-webkit-transform:rotate(150deg);transform:rotate(150deg);opacity:.75}.van-loading__spinner--spinner i:nth-of-type(6){-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:.6875}.van-loading__spinner--spinner i:nth-of-type(7){-webkit-transform:rotate(210deg);transform:rotate(210deg);opacity:.625}.van-loading__spinner--spinner i:nth-of-type(8){-webkit-transform:rotate(240deg);transform:rotate(240deg);opacity:.5625}.van-loading__spinner--spinner i:nth-of-type(9){-webkit-transform:rotate(270deg);transform:rotate(270deg);opacity:.5}.van-loading__spinner--spinner i:nth-of-type(10){-webkit-transform:rotate(300deg);transform:rotate(300deg);opacity:.4375}.van-loading__spinner--spinner i:nth-of-type(11){-webkit-transform:rotate(330deg);transform:rotate(330deg);opacity:.375}.van-loading__spinner--spinner i:nth-of-type(12){-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:.3125}.van-pull-refresh{overflow:hidden;-webkit-user-select:none;user-select:none}.van-pull-refresh__track{position:relative;height:100%;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-pull-refresh__head{position:absolute;left:0;width:100%;height:50px;overflow:hidden;color:#969799;font-size:14px;line-height:50px;text-align:center;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.van-number-keyboard{position:fixed;bottom:0;left:0;z-index:100;width:100%;padding-bottom:22px;background-color:#f2f3f5;-webkit-user-select:none;user-select:none}.van-number-keyboard--with-title{border-radius:20px 20px 0 0}.van-number-keyboard__header{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:content-box;height:34px;padding-top:6px;color:#646566;font-size:16px}.van-number-keyboard__title{display:inline-block;font-weight:400}.van-number-keyboard__title-left{position:absolute;left:0}.van-number-keyboard__body{display:-webkit-box;display:-webkit-flex;display:flex;padding:6px 0 0 6px}.van-number-keyboard__keys{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:3;-webkit-flex:3;flex:3;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-number-keyboard__close{position:absolute;right:0;height:100%;padding:0 16px;color:#576b95;font-size:14px;background-color:transparent;border:none;cursor:pointer}.van-number-keyboard__close:active{opacity:.7}.van-number-keyboard__sidebar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.van-number-keyboard--unfit{padding-bottom:0}.van-key{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:48px;font-size:28px;line-height:1.5;background-color:#fff;border-radius:8px;cursor:pointer}.van-key--large{position:absolute;top:0;right:6px;bottom:6px;left:0;height:auto}.van-key--blue,.van-key--delete{font-size:16px}.van-key--active{background-color:#ebedf0}.van-key--blue{color:#fff;background-color:#1989fa}.van-key--blue.van-key--active{background-color:#0570db}.van-key__wrapper{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-flex-basis:33%;flex-basis:33%;box-sizing:border-box;padding:0 6px 6px 0}.van-key__wrapper--wider{-webkit-flex-basis:66%;flex-basis:66%}.van-key__delete-icon{width:32px;height:22px}.van-key__collapse-icon{width:30px;height:24px}.van-key__loading-icon{color:#fff}.van-list__error-text,.van-list__finished-text,.van-list__loading{color:#969799;font-size:14px;line-height:50px;text-align:center}.van-list__placeholder{height:0;pointer-events:none}.van-switch{position:relative;display:inline-block;box-sizing:content-box;width:2em;font-size:30px;border:1px solid rgba(0,0,0,.1);border-radius:1em;cursor:pointer;-webkit-transition:background-color .3s;transition:background-color .3s}.van-switch,.van-switch__node{height:1em;background-color:#fff}.van-switch__node{position:absolute;top:0;left:0;width:1em;font-size:inherit;border-radius:100%;box-shadow:0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05);-webkit-transition:-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05),-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05)}.van-switch__loading{top:25%;left:25%;width:50%;height:50%;line-height:1}.van-switch--on{background-color:#1989fa}.van-switch--on .van-switch__node{-webkit-transform:translateX(1em);transform:translateX(1em)}.van-switch--on .van-switch__loading{color:#1989fa}.van-switch--disabled{cursor:not-allowed;opacity:.5}.van-switch--loading{cursor:default}.van-switch-cell{padding-top:9px;padding-bottom:9px}.van-switch-cell--large{padding-top:11px;padding-bottom:11px}.van-switch-cell .van-switch{float:right}.van-button{position:relative;display:inline-block;box-sizing:border-box;height:44px;margin:0;padding:0;font-size:16px;line-height:1.2;text-align:center;border-radius:2px;cursor:pointer;-webkit-transition:opacity .2s;transition:opacity .2s;-webkit-appearance:none}.van-button:before{position:absolute;top:50%;left:50%;width:100%;height:100%;background-color:#000;border:inherit;border-color:#000;border-radius:inherit;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);opacity:0;content:" "}.van-button:active:before{opacity:.1}.van-button--disabled:before,.van-button--loading:before{display:none}.van-button--default{color:#323233;background-color:#fff;border:1px solid #ebedf0}.van-button--primary{color:#fff;background-color:#07c160;border:1px solid #07c160}.van-button--info{color:#fff;background-color:#1989fa;border:1px solid #1989fa}.van-button--danger{color:#fff;background-color:#ee0a24;border:1px solid #ee0a24}.van-button--warning{color:#fff;background-color:#ff976a;border:1px solid #ff976a}.van-button--plain{background-color:#fff}.van-button--plain.van-button--primary{color:#07c160}.van-button--plain.van-button--info{color:#1989fa}.van-button--plain.van-button--danger{color:#ee0a24}.van-button--plain.van-button--warning{color:#ff976a}.van-button--large{width:100%;height:50px}.van-button--normal{padding:0 15px;font-size:14px}.van-button--small{height:32px;padding:0 8px;font-size:12px}.van-button__loading{color:inherit;font-size:inherit}.van-button--mini{height:24px;padding:0 4px;font-size:10px}.van-button--mini+.van-button--mini{margin-left:4px}.van-button--block{display:block;width:100%}.van-button--disabled{cursor:not-allowed;opacity:.5}.van-button--loading{cursor:default}.van-button--round{border-radius:999px}.van-button--square{border-radius:0}.van-button__content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:100%}.van-button__content:before{content:" "}.van-button__icon{font-size:1.2em;line-height:inherit}.van-button__icon+.van-button__text,.van-button__loading+.van-button__text,.van-button__text+.van-button__icon,.van-button__text+.van-button__loading{margin-left:4px}.van-button--hairline{border-width:0}.van-button--hairline:after{border-color:inherit;border-radius:4px}.van-button--hairline.van-button--round:after{border-radius:999px}.van-button--hairline.van-button--square:after{border-radius:0}.van-submit-bar{position:fixed;bottom:0;left:0;z-index:100;width:100%;padding-bottom:env(safe-area-inset-bottom);background-color:#fff;-webkit-user-select:none;user-select:none}.van-submit-bar__tip{padding:8px 12px;color:#f56723;font-size:12px;line-height:1.5;background-color:#fff7cc}.van-submit-bar__tip-icon{min-width:18px;font-size:12px;vertical-align:middle}.van-submit-bar__tip-text{vertical-align:middle}.van-submit-bar__bar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;height:50px;padding:0 16px;font-size:14px}.van-submit-bar__text{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding-right:12px;color:#323233;text-align:right}.van-submit-bar__text span{display:inline-block}.van-submit-bar__suffix-label{margin-left:5px;font-weight:500}.van-submit-bar__price{color:#ee0a24;font-weight:500;font-size:12px}.van-submit-bar__price--integer{font-size:20px;font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-submit-bar__button{width:110px;height:40px;font-weight:500;border:none}.van-submit-bar__button--danger{background:-webkit-linear-gradient(left,#ff6034,#ee0a24);background:linear-gradient(90deg,#ff6034,#ee0a24)}.van-submit-bar--unfit{padding-bottom:0}.van-goods-action-button{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:40px;font-weight:500;font-size:14px;border:none;border-radius:0}.van-goods-action-button--first{margin-left:5px;border-top-left-radius:999px;border-bottom-left-radius:999px}.van-goods-action-button--last{margin-right:5px;border-top-right-radius:999px;border-bottom-right-radius:999px}.van-goods-action-button--warning{background:-webkit-linear-gradient(left,#ffd01e,#ff8917);background:linear-gradient(90deg,#ffd01e,#ff8917)}.van-goods-action-button--danger{background:-webkit-linear-gradient(left,#ff6034,#ee0a24);background:linear-gradient(90deg,#ff6034,#ee0a24)}@media (max-width:321px){.van-goods-action-button{font-size:13px}}.van-toast{position:fixed;top:50%;left:50%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:content-box;width:88px;max-width:70%;min-height:88px;padding:16px;color:#fff;font-size:14px;line-height:20px;white-space:pre-wrap;text-align:center;word-break:break-all;background-color:rgba(0,0,0,.7);border-radius:8px;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-toast--unclickable{overflow:hidden}.van-toast--unclickable *{pointer-events:none}.van-toast--html,.van-toast--text{width:-webkit-fit-content;width:fit-content;min-width:96px;min-height:0;padding:8px 12px}.van-toast--html .van-toast__text,.van-toast--text .van-toast__text{margin-top:0}.van-toast--top{top:20%}.van-toast--bottom{top:auto;bottom:20%}.van-toast__icon{font-size:36px}.van-toast__loading{padding:4px;color:#fff}.van-toast__text{margin-top:8px}.van-calendar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;height:100%;background-color:#fff}.van-calendar__popup.van-popup--bottom,.van-calendar__popup.van-popup--top{height:80%}.van-calendar__popup.van-popup--left,.van-calendar__popup.van-popup--right{height:100%}.van-calendar__popup .van-popup__close-icon{top:11px}.van-calendar__header{-webkit-flex-shrink:0;flex-shrink:0;box-shadow:0 2px 10px rgba(125,126,128,.16)}.van-calendar__header-subtitle,.van-calendar__header-title,.van-calendar__month-title{height:44px;font-weight:500;line-height:44px;text-align:center}.van-calendar__header-title{font-size:16px}.van-calendar__header-subtitle,.van-calendar__month-title{font-size:14px}.van-calendar__weekdays{display:-webkit-box;display:-webkit-flex;display:flex}.van-calendar__weekday{-webkit-box-flex:1;-webkit-flex:1;flex:1;font-size:12px;line-height:30px;text-align:center}.van-calendar__body{-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow:auto;-webkit-overflow-scrolling:touch}.van-calendar__days{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-user-select:none;user-select:none}.van-calendar__month-mark{position:absolute;top:50%;left:50%;z-index:0;color:rgba(242,243,245,.8);font-size:160px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);pointer-events:none}.van-calendar__day,.van-calendar__selected-day{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center}.van-calendar__day{position:relative;width:14.285%;height:64px;font-size:16px;cursor:pointer}.van-calendar__day--end,.van-calendar__day--multiple-middle,.van-calendar__day--multiple-selected,.van-calendar__day--start,.van-calendar__day--start-end{color:#fff;background-color:#ee0a24}.van-calendar__day--start{border-radius:4px 0 0 4px}.van-calendar__day--end{border-radius:0 4px 4px 0}.van-calendar__day--multiple-selected,.van-calendar__day--start-end{border-radius:4px}.van-calendar__day--middle{color:#ee0a24}.van-calendar__day--middle:after{position:absolute;top:0;right:0;bottom:0;left:0;background-color:currentColor;opacity:.1;content:""}.van-calendar__day--disabled{color:#c8c9cc;cursor:default}.van-calendar__bottom-info,.van-calendar__top-info{position:absolute;right:0;left:0;font-size:10px;line-height:14px}@media (max-width:350px){.van-calendar__bottom-info,.van-calendar__top-info{font-size:9px}}.van-calendar__top-info{top:6px}.van-calendar__bottom-info{bottom:6px}.van-calendar__selected-day{width:54px;height:54px;color:#fff;background-color:#ee0a24;border-radius:4px}.van-calendar__footer{-webkit-flex-shrink:0;flex-shrink:0;padding:0 16px env(safe-area-inset-bottom)}.van-calendar__footer--unfit{padding-bottom:0}.van-calendar__confirm{height:36px;margin:7px 0}.van-picker{position:relative;background-color:#fff;-webkit-user-select:none;user-select:none}.van-picker__toolbar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:44px}.van-picker__cancel,.van-picker__confirm{height:100%;padding:0 16px;font-size:14px;background-color:transparent;border:none;cursor:pointer}.van-picker__cancel:active,.van-picker__confirm:active{opacity:.7}.van-picker__confirm{color:#576b95}.van-picker__cancel{color:#969799}.van-picker__title{max-width:50%;font-weight:500;font-size:16px;line-height:20px;text-align:center}.van-picker__columns{position:relative;cursor:grab}.van-picker__columns,.van-picker__loading{display:-webkit-box;display:-webkit-flex;display:flex}.van-picker__loading{position:absolute;top:0;right:0;bottom:0;left:0;z-index:3;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#1989fa;background-color:hsla(0,0%,100%,.9)}.van-picker__frame{top:50%;right:16px;left:16px;z-index:2;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-picker__frame,.van-picker__mask{position:absolute;pointer-events:none}.van-picker__mask{top:0;left:0;z-index:1;width:100%;height:100%;background-image:-webkit-linear-gradient(top,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),-webkit-linear-gradient(bottom,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-image:linear-gradient(180deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),linear-gradient(0deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-repeat:no-repeat;background-position:top,bottom;-webkit-transform:translateZ(0);transform:translateZ(0)}.van-picker-column{-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow:hidden;font-size:16px}.van-picker-column__wrapper{-webkit-transition-timing-function:cubic-bezier(.23,1,.68,1);transition-timing-function:cubic-bezier(.23,1,.68,1)}.van-picker-column__item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:0 4px;color:#000}.van-picker-column__item--disabled{cursor:not-allowed;opacity:.3}.van-action-sheet{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;max-height:80%;overflow:hidden;color:#323233}.van-action-sheet__content{-webkit-box-flex:1;-webkit-flex:1 auto;flex:1 auto;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-action-sheet__cancel,.van-action-sheet__item{display:block;width:100%;padding:14px 16px;font-size:16px;background-color:#fff;border:none;cursor:pointer}.van-action-sheet__cancel:active,.van-action-sheet__item:active{background-color:#f2f3f5}.van-action-sheet__item{line-height:22px}.van-action-sheet__item--disabled,.van-action-sheet__item--loading{color:#c8c9cc}.van-action-sheet__item--disabled:active,.van-action-sheet__item--loading:active{background-color:#fff}.van-action-sheet__item--disabled{cursor:not-allowed}.van-action-sheet__item--loading{cursor:default}.van-action-sheet__cancel{-webkit-flex-shrink:0;flex-shrink:0;box-sizing:border-box;color:#646566}.van-action-sheet__subname{margin-top:8px;color:#969799;font-size:12px;line-height:18px}.van-action-sheet__gap{display:block;height:8px;background-color:#f7f8fa}.van-action-sheet__header{-webkit-flex-shrink:0;flex-shrink:0;font-weight:500;font-size:16px;line-height:48px;text-align:center}.van-action-sheet__description{position:relative;-webkit-flex-shrink:0;flex-shrink:0;padding:20px 16px;color:#969799;font-size:14px;line-height:20px;text-align:center}.van-action-sheet__description:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;right:16px;bottom:0;left:16px;border-bottom:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-action-sheet__loading-icon .van-loading__spinner{width:22px;height:22px}.van-action-sheet__close{position:absolute;top:0;right:0;padding:0 16px;color:#c8c9cc;font-size:22px;line-height:inherit}.van-action-sheet__close:active{color:#969799}.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:content-box;height:50px;padding-bottom:env(safe-area-inset-bottom);background-color:#fff}.van-goods-action--unfit{padding-bottom:0}.van-dialog{position:fixed;top:45%;left:50%;width:320px;overflow:hidden;font-size:16px;background-color:#fff;border-radius:16px;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:.3s;transition:.3s;-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}@media (max-width:321px){.van-dialog{width:90%}}.van-dialog__header{padding-top:26px;font-weight:500;line-height:24px;text-align:center}.van-dialog__header--isolated{padding:24px 0}.van-dialog__content--isolated{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;min-height:104px}.van-dialog__message{-webkit-box-flex:1;-webkit-flex:1;flex:1;max-height:60vh;padding:26px 24px;overflow-y:auto;font-size:14px;line-height:20px;white-space:pre-wrap;text-align:center;word-wrap:break-word;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:8px;color:#646566}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-box;display:-webkit-flex;display:flex;overflow:hidden;-webkit-user-select:none;user-select:none}.van-dialog__cancel,.van-dialog__confirm{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:48px;margin:0;border:0}.van-dialog__confirm,.van-dialog__confirm:active{color:#ee0a24}.van-dialog--round-button .van-dialog__footer{position:relative;height:auto;padding:8px 24px 16px}.van-dialog--round-button .van-dialog__message{padding-bottom:16px;color:#323233}.van-dialog--round-button .van-dialog__cancel,.van-dialog--round-button .van-dialog__confirm{height:36px}.van-dialog--round-button .van-dialog__confirm{color:#fff}.van-dialog-bounce-enter{-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7);opacity:0}.van-dialog-bounce-leave-active{-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9);opacity:0}.van-contact-edit{padding:16px}.van-contact-edit__fields{overflow:hidden;border-radius:4px}.van-contact-edit__fields .van-field__label{width:4.1em}.van-contact-edit__switch-cell{margin-top:10px;padding-top:9px;padding-bottom:9px;border-radius:4px}.van-contact-edit__buttons{padding:32px 0}.van-contact-edit .van-button{margin-bottom:12px;font-size:16px}.van-address-edit{padding:12px}.van-address-edit__fields{overflow:hidden;border-radius:8px}.van-address-edit__fields .van-field__label{width:4.1em}.van-address-edit__default{margin-top:12px;overflow:hidden;border-radius:8px}.van-address-edit__buttons{padding:32px 4px}.van-address-edit__buttons .van-button{margin-bottom:12px}.van-address-edit-detail{padding:0}.van-address-edit-detail__search-item{background-color:#f2f3f5}.van-address-edit-detail__keyword{color:#ee0a24}.van-address-edit-detail__finish{color:#1989fa;font-size:12px}.van-radio-group--horizontal{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-contact-list{box-sizing:border-box;height:100%;padding-bottom:80px}.van-contact-list__item{padding:16px}.van-contact-list__item-value{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding-right:32px;padding-left:8px}.van-contact-list__item-tag{-webkit-box-flex:0;-webkit-flex:none;flex:none;margin-left:8px;padding-top:0;padding-bottom:0;line-height:1.4em}.van-contact-list__group{box-sizing:border-box;height:100%;overflow-y:scroll;-webkit-overflow-scrolling:touch}.van-contact-list__edit{font-size:16px}.van-contact-list__bottom{position:fixed;right:0;bottom:0;left:0;z-index:999;padding:0 16px env(safe-area-inset-bottom);background-color:#fff}.van-contact-list__add{height:40px;margin:5px 0}.van-address-list{box-sizing:border-box;height:100%;padding:12px 12px 80px}.van-address-list__bottom{position:fixed;bottom:0;left:0;z-index:999;box-sizing:border-box;width:100%;padding:0 16px env(safe-area-inset-bottom);background-color:#fff}.van-address-list__add{height:40px;margin:5px 0}.van-address-list__disabled-text{padding:20px 0 16px;color:#969799;font-size:14px;line-height:20px}.van-address-item{padding:12px;background-color:#fff;border-radius:8px}.van-address-item:not(:last-child){margin-bottom:12px}.van-address-item__value{padding-right:44px}.van-address-item__name{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:8px;font-size:16px;line-height:22px}.van-address-item__tag{-webkit-box-flex:0;-webkit-flex:none;flex:none;margin-left:8px;padding-top:0;padding-bottom:0;line-height:1.4em}.van-address-item__address{color:#323233;font-size:13px;line-height:18px}.van-address-item--disabled .van-address-item__address,.van-address-item--disabled .van-address-item__name{color:#c8c9cc}.van-address-item__edit{position:absolute;top:50%;right:16px;color:#969799;font-size:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-address-item .van-cell{padding:0}.van-address-item .van-radio__label{margin-left:12px}.van-address-item .van-radio__icon--checked .van-icon{background-color:#ee0a24;border-color:#ee0a24}.van-badge{display:inline-block;box-sizing:border-box;min-width:16px;padding:0 3px;color:#fff;font-weight:500;font-size:12px;font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;line-height:1.2;text-align:center;background-color:#ee0a24;border:1px solid #fff;border-radius:999px}.van-badge--fixed{position:absolute;top:0;right:0;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%}.van-badge--dot{width:8px;min-width:0;height:8px;background-color:#ee0a24;border-radius:100%}.van-badge__wrapper{position:relative;display:inline-block}.van-tab__pane,.van-tab__pane-wrapper{-webkit-flex-shrink:0;flex-shrink:0;box-sizing:border-box;width:100%}.van-tab__pane-wrapper--inactive{height:0;overflow:visible}.van-sticky--fixed{position:fixed;top:0;right:0;left:0;z-index:99}.van-tab{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:0 4px;color:#646566;font-size:14px;line-height:20px;cursor:pointer}.van-tab--active{color:#323233;font-weight:500}.van-tab--disabled{color:#c8c9cc;cursor:not-allowed}.van-tab__text--ellipsis{display:-webkit-box;overflow:hidden;-webkit-line-clamp:1;-webkit-box-orient:vertical}.van-tab__text-wrapper,.van-tabs{position:relative}.van-tabs__wrap{overflow:hidden}.van-tabs__wrap--page-top{position:fixed}.van-tabs__wrap--content-bottom{top:auto;bottom:0}.van-tabs__wrap--scrollable .van-tab{-webkit-box-flex:1;-webkit-flex:1 0 auto;flex:1 0 auto;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav{overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch}.van-tabs__wrap--scrollable .van-tabs__nav::-webkit-scrollbar{display:none}.van-tabs__nav{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;background-color:#fff;-webkit-user-select:none;user-select:none}.van-tabs__nav--line{box-sizing:content-box;height:100%;padding-bottom:15px}.van-tabs__nav--line.van-tabs__nav--complete{padding-right:8px;padding-left:8px}.van-tabs__nav--card{box-sizing:border-box;height:30px;margin:0 16px;border:1px solid #ee0a24;border-radius:2px}.van-tabs__nav--card .van-tab{color:#ee0a24;border-right:1px solid #ee0a24}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{color:#fff;background-color:#ee0a24}.van-tabs__nav--card .van-tab--disabled{color:#c8c9cc}.van-tabs__line{position:absolute;bottom:15px;left:0;z-index:1;width:40px;height:3px;background-color:#ee0a24;border-radius:3px}.van-tabs__track{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;width:100%;height:100%;will-change:left}.van-tabs__content--animated{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:44px}.van-tabs--card>.van-tabs__wrap{height:30px}.van-coupon-list{position:relative;height:100%;background-color:#f7f8fa}.van-coupon-list__field{padding:5px 0 5px 16px}.van-coupon-list__field .van-field__body{height:34px;padding-left:12px;line-height:34px;background:#f7f8fa;border-radius:17px}.van-coupon-list__field .van-field__body::-webkit-input-placeholder{color:#c8c9cc}.van-coupon-list__field .van-field__body::placeholder{color:#c8c9cc}.van-coupon-list__field .van-field__clear{margin-right:0}.van-coupon-list__exchange-bar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background-color:#fff}.van-coupon-list__exchange{-webkit-box-flex:0;-webkit-flex:none;flex:none;height:32px;font-size:16px;line-height:30px;border:0}.van-coupon-list .van-tabs__wrap{box-shadow:0 6px 12px -12px #969799}.van-coupon-list__list{box-sizing:border-box;padding:16px 0 24px;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-coupon-list__list--with-bottom{padding-bottom:66px}.van-coupon-list__bottom{position:absolute;bottom:0;left:0;z-index:999;box-sizing:border-box;width:100%;padding:5px 16px;font-weight:500;background-color:#fff}.van-coupon-list__close{height:40px}.van-coupon-list__empty{padding-top:60px;text-align:center}.van-coupon-list__empty p{margin:16px 0;color:#969799;font-size:14px;line-height:20px}.van-coupon-list__empty img{width:200px;height:200px}.van-cascader__header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:48px;padding:0 16px}.van-cascader__title{font-weight:500;font-size:16px;line-height:20px}.van-cascader__close-icon{color:#c8c9cc;font-size:22px}.van-cascader__close-icon:active{color:#969799}.van-cascader__tabs .van-tab{-webkit-box-flex:0;-webkit-flex:none;flex:none;padding:0 10px}.van-cascader__tabs.van-tabs--line .van-tabs__wrap{height:48px}.van-cascader__tabs .van-tabs__nav--complete{padding-right:6px;padding-left:6px}.van-cascader__tab{color:#323233;font-weight:500}.van-cascader__tab--unselected{color:#969799;font-weight:400}.van-cascader__option{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:10px 16px;font-size:14px;line-height:20px}.van-cascader__option:active{background-color:#f2f3f5}.van-cascader__option--selected{color:#ee0a24;font-weight:500}.van-cascader__selected-icon{font-size:18px}.van-cascader__options{box-sizing:border-box;height:384px;padding-top:6px;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-cell-group{background-color:#fff}.van-cell-group--inset{margin:0 16px;overflow:hidden;border-radius:8px}.van-cell-group__title{padding:16px 16px 8px;color:#969799;font-size:14px;line-height:16px}.van-cell-group__title--inset{padding:16px 16px 8px 32px}.van-panel{background:#fff}.van-panel__header-value{color:#ee0a24}.van-panel__footer{padding:8px 16px}.van-checkbox-group--horizontal{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-circle{position:relative;display:inline-block;width:100px;height:100px;text-align:center}.van-circle svg{position:absolute;top:0;left:0;width:100%;height:100%}.van-circle__layer{stroke:#fff}.van-circle__hover{fill:none;stroke:#1989fa;stroke-linecap:round}.van-circle__text{position:absolute;top:50%;left:0;box-sizing:border-box;width:100%;padding:0 4px;color:#323233;font-weight:500;font-size:14px;line-height:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-col{float:left;box-sizing:border-box;min-height:1px}.van-col--1{width:4.16666667%}.van-col--offset-1{margin-left:4.16666667%}.van-col--2{width:8.33333333%}.van-col--offset-2{margin-left:8.33333333%}.van-col--3{width:12.5%}.van-col--offset-3{margin-left:12.5%}.van-col--4{width:16.66666667%}.van-col--offset-4{margin-left:16.66666667%}.van-col--5{width:20.83333333%}.van-col--offset-5{margin-left:20.83333333%}.van-col--6{width:25%}.van-col--offset-6{margin-left:25%}.van-col--7{width:29.16666667%}.van-col--offset-7{margin-left:29.16666667%}.van-col--8{width:33.33333333%}.van-col--offset-8{margin-left:33.33333333%}.van-col--9{width:37.5%}.van-col--offset-9{margin-left:37.5%}.van-col--10{width:41.66666667%}.van-col--offset-10{margin-left:41.66666667%}.van-col--11{width:45.83333333%}.van-col--offset-11{margin-left:45.83333333%}.van-col--12{width:50%}.van-col--offset-12{margin-left:50%}.van-col--13{width:54.16666667%}.van-col--offset-13{margin-left:54.16666667%}.van-col--14{width:58.33333333%}.van-col--offset-14{margin-left:58.33333333%}.van-col--15{width:62.5%}.van-col--offset-15{margin-left:62.5%}.van-col--16{width:66.66666667%}.van-col--offset-16{margin-left:66.66666667%}.van-col--17{width:70.83333333%}.van-col--offset-17{margin-left:70.83333333%}.van-col--18{width:75%}.van-col--offset-18{margin-left:75%}.van-col--19{width:79.16666667%}.van-col--offset-19{margin-left:79.16666667%}.van-col--20{width:83.33333333%}.van-col--offset-20{margin-left:83.33333333%}.van-col--21{width:87.5%}.van-col--offset-21{margin-left:87.5%}.van-col--22{width:91.66666667%}.van-col--offset-22{margin-left:91.66666667%}.van-col--23{width:95.83333333%}.van-col--offset-23{margin-left:95.83333333%}.van-col--24{width:100%}.van-col--offset-24{margin-left:100%}.van-count-down{color:#323233;font-size:14px;line-height:20px}.van-divider{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin:16px 0;color:#969799;font-size:14px;line-height:24px;border:0 solid #ebedf0}.van-divider:after,.van-divider:before{display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;box-sizing:border-box;height:1px;border-color:inherit;border-style:inherit;border-width:1px 0 0}.van-divider:before{content:""}.van-divider--hairline:after,.van-divider--hairline:before{-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-divider--dashed{border-style:dashed}.van-divider--content-center:before,.van-divider--content-left:before,.van-divider--content-right:before{margin-right:16px}.van-divider--content-center:after,.van-divider--content-left:after,.van-divider--content-right:after{margin-left:16px;content:""}.van-divider--content-left:before,.van-divider--content-right:after{max-width:10%}.van-dropdown-menu{-webkit-user-select:none;user-select:none}.van-dropdown-menu__bar{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;height:48px;background-color:#fff;box-shadow:0 2px 12px rgba(100,101,102,.12)}.van-dropdown-menu__bar--opened{z-index:11}.van-dropdown-menu__item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-width:0;cursor:pointer}.van-dropdown-menu__item:active{opacity:.7}.van-dropdown-menu__item--disabled:active{opacity:1}.van-dropdown-menu__item--disabled .van-dropdown-menu__title{color:#969799}.van-dropdown-menu__title{position:relative;box-sizing:border-box;max-width:100%;padding:0 8px;color:#323233;font-size:15px;line-height:22px}.van-dropdown-menu__title:after{position:absolute;top:50%;right:-4px;margin-top:-5px;border-color:transparent transparent #dcdee0 #dcdee0;border-style:solid;border-width:3px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:.8;content:""}.van-dropdown-menu__title--active{color:#ee0a24}.van-dropdown-menu__title--active:after{border-color:transparent transparent currentColor currentColor}.van-dropdown-menu__title--down:after{margin-top:-1px;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.van-empty{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:32px 0}.van-empty__image{width:160px;height:160px}.van-empty__image img{width:100%;height:100%}.van-empty__description{margin-top:16px;padding:0 60px;color:#969799;font-size:14px;line-height:20px}.van-empty__bottom{margin-top:24px}.van-grid{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-swipe{position:relative;overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);cursor:grab;-webkit-user-select:none;user-select:none}.van-swipe__track{display:-webkit-box;display:-webkit-flex;display:flex;height:100%}.van-swipe__track--vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.van-swipe__indicators{position:absolute;bottom:12px;left:50%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.van-swipe__indicators--vertical{top:50%;bottom:auto;left:12px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-swipe__indicators--vertical .van-swipe__indicator:not(:last-child){margin-bottom:6px}.van-swipe__indicator{width:6px;height:6px;background-color:#ebedf0;border-radius:100%;opacity:.3;-webkit-transition:opacity .2s,background-color .2s;transition:opacity .2s,background-color .2s}.van-swipe__indicator:not(:last-child){margin-right:6px}.van-swipe__indicator--active{background-color:#1989fa;opacity:1}.van-swipe-item{position:relative;-webkit-flex-shrink:0;flex-shrink:0;width:100%;height:100%}.van-image-preview{position:fixed;top:0;left:0;width:100%;height:100%}.van-image-preview__swipe{height:100%}.van-image-preview__swipe-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;overflow:hidden}.van-image-preview__cover{position:absolute;top:0;left:0}.van-image-preview__image{width:100%;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-image-preview__image--vertical{width:auto;height:100%}.van-image-preview__image img{-webkit-user-drag:none}.van-image-preview__image .van-image__error{top:30%;height:40%}.van-image-preview__image .van-image__error-icon{font-size:36px}.van-image-preview__image .van-image__loading{background-color:transparent}.van-image-preview__index{position:absolute;top:16px;left:50%;color:#fff;font-size:14px;line-height:20px;text-shadow:0 1px 1px #323233;-webkit-transform:translate(-50%);transform:translate(-50%)}.van-image-preview__overlay{background-color:rgba(0,0,0,.9)}.van-image-preview__close-icon{position:absolute;z-index:1;color:#c8c9cc;font-size:22px;cursor:pointer}.van-image-preview__close-icon:active{color:#969799}.van-image-preview__close-icon--top-left{top:16px;left:16px}.van-image-preview__close-icon--top-right{top:16px;right:16px}.van-image-preview__close-icon--bottom-left{bottom:16px;left:16px}.van-image-preview__close-icon--bottom-right{right:16px;bottom:16px}.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__wrapper--disabled{opacity:.5}.van-uploader__input{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;cursor:pointer;opacity:0}.van-uploader__input-wrapper{position:relative}.van-uploader__input:disabled{cursor:not-allowed}.van-uploader__upload{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;width:80px;height:80px;margin:0 8px 8px 0;background-color:#f7f8fa}.van-uploader__upload:active{background-color:#f2f3f5}.van-uploader__upload--readonly:active{background-color:#f7f8fa}.van-uploader__upload-icon{color:#dcdee0;font-size:24px}.van-uploader__upload-text{margin-top:8px;color:#969799;font-size:12px}.van-uploader__preview{position:relative;margin:0 8px 8px 0;cursor:pointer}.van-uploader__preview-image{display:block;width:80px;height:80px;overflow:hidden}.van-uploader__preview-delete{position:absolute;top:0;right:0;width:14px;height:14px;background-color:rgba(0,0,0,.7);border-radius:0 0 0 12px}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;color:#fff;font-size:16px;-webkit-transform:scale(.5);transform:scale(.5)}.van-uploader__mask,.van-uploader__preview-cover{position:absolute;top:0;right:0;bottom:0;left:0}.van-uploader__mask{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#fff;background-color:rgba(50,50,51,.88)}.van-uploader__mask-icon{font-size:22px}.van-uploader__mask-message{margin-top:6px;padding:0 4px;font-size:12px;line-height:14px}.van-uploader__loading{width:22px;height:22px;color:#fff}.van-uploader__file{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;width:80px;height:80px;background-color:#f7f8fa}.van-uploader__file-icon{color:#646566;font-size:20px}.van-uploader__file-name{box-sizing:border-box;width:100%;margin-top:8px;padding:0 4px;color:#646566;font-size:12px;text-align:center}.van-index-anchor{z-index:1;box-sizing:border-box;padding:0 16px;color:#323233;font-weight:500;font-size:14px;line-height:32px;background-color:transparent}.van-index-anchor--sticky{position:fixed;top:0;right:0;left:0;color:#ee0a24;background-color:#fff}.van-index-bar__sidebar{position:fixed;top:50%;right:0;z-index:2;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);cursor:pointer;-webkit-user-select:none;user-select:none}.van-index-bar__index{padding:0 8px 0 16px;font-weight:500;font-size:10px;line-height:14px}.van-index-bar__index--active{color:#ee0a24}.van-pagination{display:-webkit-box;display:-webkit-flex;display:flex;font-size:14px}.van-pagination__item,.van-pagination__page-desc{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-pagination__item{-webkit-box-flex:1;-webkit-flex:1;flex:1;box-sizing:border-box;min-width:36px;height:40px;color:#1989fa;background-color:#fff;cursor:pointer;-webkit-user-select:none;user-select:none}.van-pagination__item:active{color:#fff;background-color:#1989fa}.van-pagination__item:after{border-width:1px 0 1px 1px}.van-pagination__item:last-child:after{border-right-width:1px}.van-pagination__item--active{color:#fff;background-color:#1989fa}.van-pagination__next,.van-pagination__prev{padding:0 4px;cursor:pointer}.van-pagination__item--disabled,.van-pagination__item--disabled:active{color:#646566;background-color:#f7f8fa;cursor:not-allowed;opacity:.5}.van-pagination__page{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.van-pagination__page-desc{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:40px;color:#646566}.van-pagination--simple .van-pagination__next:after,.van-pagination--simple .van-pagination__prev:after{border-width:1px}.van-password-input{position:relative;margin:0 16px;-webkit-user-select:none;user-select:none}.van-password-input__error-info,.van-password-input__info{margin-top:16px;font-size:14px;text-align:center}.van-password-input__info{color:#969799}.van-password-input__error-info{color:#ee0a24}.van-password-input__security{display:-webkit-box;display:-webkit-flex;display:flex;width:100%;height:50px;cursor:pointer}.van-password-input__security:after{border-radius:6px}.van-password-input__security li{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:100%;font-size:20px;line-height:1.2;background-color:#fff}.van-password-input__security i{width:10px;height:10px;background-color:#000;border-radius:100%;visibility:hidden}.van-password-input__cursor,.van-password-input__security i{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.van-password-input__cursor{width:1px;height:40%;background-color:#323233;-webkit-animation:van-cursor-flicker 1s infinite;animation:van-cursor-flicker 1s infinite}@-webkit-keyframes van-cursor-flicker{0%{opacity:0}50%{opacity:1}to{opacity:0}}@keyframes van-cursor-flicker{0%{opacity:0}50%{opacity:1}to{opacity:0}}.van-progress{position:relative;height:4px;background:#ebedf0;border-radius:4px}.van-progress__portion{position:absolute;left:0;height:100%;background:#1989fa;border-radius:inherit}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;padding:0 5px;color:#fff;font-size:10px;line-height:1.6;text-align:center;word-break:keep-all;background-color:#1989fa;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-row:after{display:table;clear:both;content:""}.van-row--flex{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-row--flex:after{display:none}.van-row--justify-center{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-row--justify-end{-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.van-row--justify-space-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.van-row--justify-space-around{-webkit-justify-content:space-around;justify-content:space-around}.van-row--align-center{-webkit-box-align:center;-webkit-align-items:center;align-items:center}.van-row--align-bottom{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end}.van-sidebar{width:80px;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tree-select{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;font-size:14px;-webkit-user-select:none;user-select:none}.van-tree-select__nav{-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow-y:auto;background-color:#f7f8fa;-webkit-overflow-scrolling:touch}.van-tree-select__nav-item{padding:14px 12px}.van-tree-select__content{-webkit-box-flex:2;-webkit-flex:2;flex:2;overflow-y:auto;background-color:#fff;-webkit-overflow-scrolling:touch}.van-tree-select__item{position:relative;padding:0 32px 0 16px;font-weight:500;line-height:48px;cursor:pointer}.van-tree-select__item--active{color:#ee0a24}.van-tree-select__item--disabled{color:#c8c9cc;cursor:not-allowed}.van-tree-select__selected{position:absolute;top:50%;right:16px;margin-top:-8px;font-size:16px}.van-skeleton{display:-webkit-box;display:-webkit-flex;display:flex;padding:0 16px}.van-skeleton__avatar{-webkit-flex-shrink:0;flex-shrink:0;width:32px;height:32px;margin-right:16px;background-color:#f2f3f5}.van-skeleton__avatar--round{border-radius:999px}.van-skeleton__content{width:100%}.van-skeleton__avatar+.van-skeleton__content{padding-top:8px}.van-skeleton__row,.van-skeleton__title{height:16px;background-color:#f2f3f5}.van-skeleton__title{width:40%;margin:0}.van-skeleton__row:not(:first-child){margin-top:12px}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{-webkit-animation:van-skeleton-blink 1.2s ease-in-out infinite;animation:van-skeleton-blink 1.2s ease-in-out infinite}.van-skeleton--round .van-skeleton__row,.van-skeleton--round .van-skeleton__title{border-radius:999px}@-webkit-keyframes van-skeleton-blink{50%{opacity:.6}}@keyframes van-skeleton-blink{50%{opacity:.6}}.van-stepper{font-size:0;-webkit-user-select:none;user-select:none}.van-stepper__minus,.van-stepper__plus{position:relative;box-sizing:border-box;width:28px;height:28px;margin:0;padding:0;color:#323233;vertical-align:middle;background-color:#f2f3f5;border:0;cursor:pointer}.van-stepper__minus:before,.van-stepper__plus:before{width:50%;height:1px}.van-stepper__minus:after,.van-stepper__plus:after{width:1px;height:50%}.van-stepper__minus:after,.van-stepper__minus:before,.van-stepper__plus:after,.van-stepper__plus:before{position:absolute;top:50%;left:50%;background-color:currentColor;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);content:""}.van-stepper__minus:active,.van-stepper__plus:active{background-color:#e8e8e8}.van-stepper__minus--disabled,.van-stepper__plus--disabled{color:#c8c9cc;background-color:#f7f8fa;cursor:not-allowed}.van-stepper__minus--disabled:active,.van-stepper__plus--disabled:active{background-color:#f7f8fa}.van-stepper__minus{border-radius:4px 0 0 4px}.van-stepper__minus:after{display:none}.van-stepper__plus{border-radius:0 4px 4px 0}.van-stepper__input{box-sizing:border-box;width:32px;height:28px;margin:0 2px;padding:0;color:#323233;font-size:14px;line-height:normal;text-align:center;vertical-align:middle;background-color:#f2f3f5;border:0;border-width:1px 0;border-radius:0;-webkit-appearance:none}.van-stepper__input:disabled{color:#c8c9cc;background-color:#f2f3f5;-webkit-text-fill-color:#c8c9cc;opacity:1}.van-stepper__input:read-only{cursor:default}.van-stepper--round .van-stepper__input{background-color:transparent}.van-stepper--round .van-stepper__minus,.van-stepper--round .van-stepper__plus{border-radius:100%}.van-stepper--round .van-stepper__minus:active,.van-stepper--round .van-stepper__plus:active{opacity:.7}.van-stepper--round .van-stepper__minus--disabled,.van-stepper--round .van-stepper__minus--disabled:active,.van-stepper--round .van-stepper__plus--disabled,.van-stepper--round .van-stepper__plus--disabled:active{opacity:.3}.van-stepper--round .van-stepper__plus{color:#fff;background-color:#ee0a24}.van-stepper--round .van-stepper__minus{color:#ee0a24;background-color:#fff;border:1px solid #ee0a24}.van-sku-container{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-webkit-align-items:stretch;align-items:stretch;min-height:50%;max-height:80%;overflow-y:visible;font-size:14px;background:#fff}.van-sku-body{-webkit-box-flex:1;-webkit-flex:1 1 auto;flex:1 1 auto;min-height:44px;overflow-y:scroll;-webkit-overflow-scrolling:touch}.van-sku-body::-webkit-scrollbar{display:none}.van-sku-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;margin:0 16px}.van-sku-header__img-wrap{-webkit-flex-shrink:0;flex-shrink:0;width:96px;height:96px;margin:12px 12px 12px 0;overflow:hidden;border-radius:4px}.van-sku-header__goods-info{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;padding:12px 20px 12px 0}.van-sku-header-item{margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-sku__price-symbol{font-size:16px;vertical-align:bottom}.van-sku__price-num{font-weight:500;font-size:22px;vertical-align:bottom;word-wrap:break-word}.van-sku__goods-price{margin-left:-2px;color:#ee0a24}.van-sku__price-tag{position:relative;display:inline-block;margin-left:8px;padding:0 5px;overflow:hidden;color:#ee0a24;font-size:12px;line-height:16px;border-radius:8px}.van-sku__price-tag:before{position:absolute;top:0;left:0;width:100%;height:100%;background:currentColor;opacity:.1;content:""}.van-sku-group-container{padding-top:12px}.van-sku-group-container--hide-soldout .van-sku-row__item--disabled{display:none}.van-sku-row{margin:0 16px 12px}.van-sku-row:last-child{margin-bottom:0}.van-sku-row__image-item,.van-sku-row__item{position:relative;overflow:hidden;color:#323233;border-radius:4px;cursor:pointer}.van-sku-row__image-item:before,.van-sku-row__item:before{position:absolute;top:0;left:0;width:100%;height:100%;background:#f7f8fa;content:""}.van-sku-row__image-item--active,.van-sku-row__item--active{color:#ee0a24}.van-sku-row__image-item--active:before,.van-sku-row__item--active:before{background:currentColor;opacity:.1}.van-sku-row__item{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-width:40px;margin:0 12px 12px 0;font-size:13px;line-height:16px;vertical-align:middle}.van-sku-row__item-img{z-index:1;width:24px;height:24px;margin:4px 0 4px 4px;object-fit:cover;border-radius:2px}.van-sku-row__item-name{z-index:1;padding:8px}.van-sku-row__item--disabled{color:#c8c9cc;background:#f2f3f5;cursor:not-allowed}.van-sku-row__item--disabled .van-sku-row__item-img{opacity:.3}.van-sku-row__image{margin-right:0}.van-sku-row__image-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;width:110px;margin:0 4px 4px 0;border:1px solid transparent}.van-sku-row__image-item:last-child{margin-right:0}.van-sku-row__image-item-img{width:100%;height:110px}.van-sku-row__image-item-img-icon{position:absolute;top:0;right:0;z-index:3;width:18px;height:18px;color:#fff;line-height:18px;text-align:center;background-color:rgba(0,0,0,.4);border-bottom-left-radius:4px}.van-sku-row__image-item-name{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;height:40px;padding:4px;font-size:12px;line-height:16px}.van-sku-row__image-item-name span{word-wrap:break-word}.van-sku-row__image-item--active{border-color:currentColor}.van-sku-row__image-item--disabled{color:#c8c9cc;cursor:not-allowed}.van-sku-row__image-item--disabled:before{z-index:2;background:#f2f3f5;opacity:.4}.van-sku-row__title{padding-bottom:12px}.van-sku-row__title-multiple{color:#969799}.van-sku-row__scroller{margin:0 -16px;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch}.van-sku-row__scroller::-webkit-scrollbar{display:none}.van-sku-row__row{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;margin-bottom:4px;padding:0 16px}.van-sku-row__indicator{width:40px;height:4px;background:#ebedf0;border-radius:2px}.van-sku-row__indicator-wrapper{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding-bottom:16px}.van-sku-row__indicator-slider{width:50%;height:100%;background-color:#ee0a24;border-radius:2px}.van-sku-stepper-stock{padding:12px 16px;overflow:hidden;line-height:30px}.van-sku__stepper{float:right;padding-left:4px}.van-sku__stepper-title{float:left}.van-sku__stepper-quota{float:right;color:#ee0a24;font-size:12px}.van-sku__stock{display:inline-block;margin-right:8px;color:#969799;font-size:12px}.van-sku__stock-num--highlight{color:#ee0a24}.van-sku-messages{padding-bottom:32px}.van-sku-messages__image-cell .van-cell__title{max-width:6.2em;margin-right:12px;color:#646566;text-align:left;word-wrap:break-word}.van-sku-messages__image-cell .van-cell__value{overflow:visible;text-align:left}.van-sku-messages__image-cell-label{color:#969799;font-size:12px;line-height:18px}.van-sku-messages__cell-block{position:relative}.van-sku-messages__cell-block:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;right:16px;bottom:0;left:16px;border-bottom:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-sku-messages__cell-block:last-child:after{display:none}.van-sku-messages__extra-message{margin-top:-2px;padding:0 16px 12px;color:#969799;font-size:12px;line-height:18px}.van-sku-actions{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;padding:8px 16px}.van-sku-actions .van-button{height:40px;font-weight:500;font-size:14px;border:none;border-radius:0}.van-sku-actions .van-button:first-of-type{border-top-left-radius:20px;border-bottom-left-radius:20px}.van-sku-actions .van-button:last-of-type{border-top-right-radius:20px;border-bottom-right-radius:20px}.van-sku-actions .van-button--warning{background:-webkit-linear-gradient(left,#ffd01e,#ff8917);background:linear-gradient(90deg,#ffd01e,#ff8917)}.van-sku-actions .van-button--danger{background:-webkit-linear-gradient(left,#ff6034,#ee0a24);background:linear-gradient(90deg,#ff6034,#ee0a24)}.van-slider{position:relative;width:100%;height:2px;background-color:#ebedf0;border-radius:999px;cursor:pointer}.van-slider:before{position:absolute;top:-8px;right:0;bottom:-8px;left:0;content:""}.van-slider__bar{position:relative;width:100%;height:100%;background-color:#1989fa;border-radius:inherit;-webkit-transition:all .2s;transition:all .2s}.van-slider__button{width:24px;height:24px;background-color:#fff;border-radius:50%;box-shadow:0 1px 2px rgba(0,0,0,.5)}.van-slider__button-wrapper,.van-slider__button-wrapper-right{position:absolute;top:50%;right:0;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0);cursor:grab}.van-slider__button-wrapper-left{position:absolute;top:50%;left:0;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);cursor:grab}.van-slider--disabled{cursor:not-allowed;opacity:.5}.van-slider--disabled .van-slider__button-wrapper,.van-slider--disabled .van-slider__button-wrapper-left,.van-slider--disabled .van-slider__button-wrapper-right{cursor:not-allowed}.van-slider--vertical{display:inline-block;width:2px;height:100%}.van-slider--vertical .van-slider__button-wrapper,.van-slider--vertical .van-slider__button-wrapper-right{top:auto;right:50%;bottom:0;-webkit-transform:translate3d(50%,50%,0);transform:translate3d(50%,50%,0)}.van-slider--vertical .van-slider__button-wrapper-left{top:0;right:50%;left:auto;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0)}.van-slider--vertical:before{top:0;right:-8px;bottom:0;left:-8px}.van-steps{overflow:hidden;background-color:#fff}.van-steps--horizontal{padding:10px 10px 0}.van-steps--horizontal .van-steps__items{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;margin:0 0 10px;padding-bottom:22px}.van-steps--vertical{padding:0 0 0 32px}.van-swipe-cell{position:relative;overflow:hidden;cursor:grab}.van-swipe-cell__wrapper{-webkit-transition-timing-function:cubic-bezier(.18,.89,.32,1);transition-timing-function:cubic-bezier(.18,.89,.32,1);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.van-tabbar{z-index:1;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:content-box;width:100%;height:50px;padding-bottom:env(safe-area-inset-bottom);background-color:#fff}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--unfit{padding-bottom:0}
\ No newline at end of file
diff --git a/dist/static/img/b_yunying_4.e91f278.png b/dist/static/img/b_yunying_4.e91f278.png
new file mode 100644
index 0000000..b3d487e
--- /dev/null
+++ b/dist/static/img/b_yunying_4.e91f278.png
Binary files differ
diff --git a/dist/static/js/app.2c27c0c41c0e292a6afd.js b/dist/static/js/app.2c27c0c41c0e292a6afd.js
new file mode 100644
index 0000000..bbf36c0
--- /dev/null
+++ b/dist/static/js/app.2c27c0c41c0e292a6afd.js
@@ -0,0 +1 @@
+webpackJsonp([1],{"2HMH":function(e,t){e.exports="data:image/png;base64,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XvGqEq94xSteVeIVr3jFq0q84hWveFWJV7ziFa8q8YpXvOJVJV7xile8qsQrXvGKV5V4xSte8aoSr3jFK15V4hWveMWrSrziFa94VYlXvOIVryrxile84lUlXvGKV7yqxCte8YpXlXjFK17xqhKveMUrXlXi1Y+dOkpuEISiADpGCCqm7H+3/XCmnUlrgwqTj567gIvvCYdXvPqvXi2hpJRKaFyb1612u3u84hWveHUx+f6IX+3T3MysMH4vNg6FV7ziFa8uZpnj0wHT2ALB8cdW54VXvOIVr84nb1o9p1ztLb8ONPOKV7zi1dmEvXNvyyUFh53aaeUVr3jFq1NJcX/QcEHBuP/1iVe84hWvmu+4nK0t8a/akVe84hWvmq+4tOZqS+IVr3jFq4NJfZ75Gl/V3nnFK17xqp0rW+KJK5Nvr2tXXvGKV7xq58qWj+O9j4raiVe84hWvmv/Mex9FCq94xSteVSfHPuN+1NXyile84lXz9ZY+iBRe8YpXvGp93u1Y7VC7Rl7xile8qkzoc2tyrK7lFa94xavW2019DEm84hWveFWXoc9pj/paXvGKV7yqS+wz8FRfyyte8YpXVVk6/cnpQC2veMUrXtUk9Hl9+Ugtr3jFK1690avlCCG84hWvePXGt77yile84hWveMUrXvGKV7ziFa8+2aljGgAAAABB/Vubw40KHPjKV77yla985Stf+cpXvvKVrwaMvvKVr3x1YfSVr3zlqwujr3zlK19dGH3lK1/56sLoK1/5ylcXRl/5yle+ujD6yle+8tWF0Ve+8pWvLoy+8pWvfHVh9JWvfOWrC6OvfOUrX10YfeUrX/nqwugrX/nKVxdGX/nKV766MPrKV77y1YXRV77yla8ujL7yla98dWH0la985asLo6985StfXRh95Stf+erC6Ctf+cpXF0Zf+cpXvrow+spXsW9HOQrCUBRAK1oVCrj/3c4k8zUTMxRsE188dwGv6S2cAFFe8SpKjbziFa94FaVGXvGKV7yKUiOveMUrXkWpkVe84hWvotTIK17xildRauQVr3jFqyg18opXvOJVlBp5xSte8SpKjbziFa94FaVGXvGKV7yKUiOveMUrXkWpkVe84hWvotTIK17xildRauQVr3jFqyg18qrNvT7xile84lVrry597r6yZyyveMUrXrV+cZv6eDXxile84lVrWDrt4l3faXnFq3ev8eO82rHckHZkrR/LK17xild1WapXG/sc2sgrXvGKV3V5VK927fMd/8orXvGKV40/YOXSZRu58IpXvOJVZZY+721j+N+Q8YpX717jB3o197n3Si0gvOIVr3hVnaHPWkvlWF7xile8avvfmbz7min3mrEzr3jFK141vnRufRg5J17xile8arvrJR3IaXPsWnjFK17xaldK3lhoOHaI68bY+5R4xSte8Wpf5tyDq1SGrY9XvOIVr3jVFKzh8BGW9f+nK17xile8airLWLpcluuUeMUrXvGq5Znmx4uY3J+PvZXEK17xilcHMy9PNnkuPSDMpyklXvGKV7x6Qazz78XXRg9Bt+EPgnNKvOIVr3j1Yi6305C/N5eH5dFQlfIY15+xp/NcUuIVr3jFq48Mr3jFK15FCa94xSteRQmveMUrXkUJr3jFK15FCa94xSteRQmveMUrXkUJr3jFK15FCa94xSteRQmveMUrXkUJr3jFK15FCa94xSteRQmveMUrXkUJr3jFK15FCa94xStefbFTByQAAAAAgv6/bkegI7zwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfOWrC1/5yle+uvCVr3zlqwtf+cpXvrrwla985asLX/nKV7668JWvfBX79ZabMAwEUFRxHoSYJPvfbftHKyhNsC111HMXMJZj+wh4FSVe8YpXvIoSr3jFK15FiVe84hWvosQrXvGKV1HiFa94xaso8YpXvOJVlHjFK17xKkq84hWveBUlXvGKV7yKEq94xSteRYlXvOIVr6LEK17xildR4hWveMWrKPGKV7ziVZR4xSte8SpKvOIVr3gVJV7xile8ihKveMUrXkWJV7ziFa+ixCte8YpXUeIVr3jFqyjxile8+p9e5em6pXmet64fao4d+i59zk1dP31eCF7xile8Kixf0vf5eyWsuvHr2O3CK17xildF5ev4sMK8l4+dnnzUK694xStevd/+fOFU+OaG9Pzr7bziFa949V55/XGVvuimjD+NXXnFK17x6p2WVxvfaip4L2Ve8YpXvDrd8nrR9C5X3cuxc+YVr3jFq5Pl37a91eTqXuIVr3jFq5N1BSsVHdzGK17xilfVT3Nqw8iFV7ziFa9OtIxHdpsr/sm8Ny684hWveFX2b/Cxtc2xrbziFa94dbihzaXJ48GxvOIVr3hV9vPqsbXNqa284hWveHWwPLbZbzo6lle84hWvDja1eeq3w2N3XvGKV7wq+zv4WN/mhqy84hWveFV7udSGwZFXvOIVrw6VG2145hWveMWryl7dGp3kmdvIK17xildHGtq8vuXMWF7xile8qv7W23g1/NE98IpXf/0z8qrOW7/xile84hWveMUrXvGKV7ziFa94xSte8YpXvOIVr3jFK17xilcBPiOveMUrXn2wbwe4CcNAFAUNiUXaQLn/bXuE2pVXyheTA6zFkz3CKKRk5BWveMWrlIy84hWveJWSkVe84hWvUjLyile84lVKRl7xile8SsnIK17xilcpGXnFK17xKiUjr3jFK16lZOQVr3jFq5SMvOIVr3iVkpFXvOIVr1Iy8opXvOJVSkZe8YpXvErJyCte8YpXKRl5xSte8SolI694xStepWTkFa94xauUjLziFa94lZKRV7ziFa9SMvKKV7ziVUpGXvGKV7xKycgrXvGKVykZecUrXvEqJSOveMUrXqVk5BWveMWrlIy84hWveJWSkVe84hWvUjLyile84lVKRl7xile8SsnIK17xilcpGXnFK17xKiUjr3jFK16lZOQVr3jFq5SMvOIVr3iVkpFXvOIVr1Iy8opXvOJVSkZerTnr37ziFa94tdqrvWbbnDOHmle84hWvhmAp2jZ9YiyveMUrXg0946sdNSH7Ve+0vOLV1TN+nlf3mtVew2N/eMUrXvFq9b7ZZsa+x8fyile84tXqw/6s+V1s5xWveMWrxevd58beRsde9p0MXvHq6hk/0KvRjfNoreJCuPGKV7zi1eKb23GWfI5+8opXvOLV4p3zqFFka7ziFa94NfycR81bB7ehb2284hWveLX2Pzn9+Q8H+99j98YrXvGKV2v3zrvGwa3xile84tXc8xpwpQCSr8YrXv2ya285CsIAGEZRbkIRuv/VTpwnE2ceFJzMH8+3gBJIe0IpvOLVsWC175knU+EVr3jFq0OnT7+959PY1DS84hWveHXkoj/vWuLLb0+0Hxpe8YpXvHqtcv3xLsfylrlymhte8YpXvHq55UGsvj2AldI+DLsuTcMrXvGKV3sq43qvyliaY9pO98PeEOQVr3jFq/0NW9tO09gtpTmyebgN247fw/KKV7zi1WfGK17xilcp8YpXvOJVSrziFa94lRKveMUrXqXEK17xilcp8YpXvOJVSrziFa94lRKveMUrXqXEK17xilcp8YpXvOJVSrziFa94lRKveMUrXqXEK17xilcp8YpXvOJVSrziFa94lRKveMUrXqXEK17xilcp8YpXvOJVSrziFa94lRKveMUrXqXEK17x6kO9Wrb2umZ1rk88smlvz1ztvO7sTy924RWvorzqpr5KvOLVv/eqdOcq8YpXAV7RSrziVYhXo52geMWrCK/KqUq84lWCV7gSr3gV4hWuxCtepXg1VYlXvIrwaqsSr3gV4VVxMihe8SrEK7tB8YpXIV7NXq/EK16FeNVWiVe8yvDqUiVe8SrCq6FKvOJVhle2g+IVr1K8WqvEK15leOV0ULziVYhXc5V4xasMr5Yq8YpXGV51VeIVrzK88juDvtipAxoAQCAAQm5q/8rW8H4QAl/5yldM5itf+YoKX/nKV1T4yle+osJXvvIVFb7yla+o8JWvfEWFr3zlKyp85StfUeErX/mKCl/5yldU+MpXvqLCV77yFRW+8pWvqPCVr3xFha985SsqfOUrX1HhK1/5igpf+cpXVPjKV76iwle++v2ry2i+8tWkr85isu0rX/mKCF/5yldU+MpXvqLCV77yFRW+8pWvqPCVr3xFha985SsqfOUrX1HhK1/5igpf+cpXVPjKV76iwle+8hUVvvKVr6jwla98RYWvfOUrKnzlK19R4Stf+YoKX/nKV1T4yle+osJXvvIVFb7yla+o8JWvfEWFr3zlKyp85StfUeErX/mKCl/5yldU+MpXvqLCV77yFRW+8pWveOzUAQkAAACAoP+v2xHoCC985StfceErX/mKC1/5yldc+MpXvuLCV77yFRe+8pWvuPCVr3zFha985SsufOUrX3HhK1/5igtf+cpXXPjKV77iwle+8hUXvvKVr7jwla98xYWvfOUrLnzlK19x4Stf+YoLX/nKV1z4yle+4sJXvvIVF77yla+48JWvfMWFr3zlKy585StfceErX8WeHaY2DMMAFE5jO25tJ/b9T7s/GxqENqWVQIb3DiA2rfpIOryiWcIrvMIrmiW8wiu8olnCK7zCK5olvMIrvKJZwiu8wiuaJbzCK7yiWcIrvMIrmiW8wiu8olnCK7zCK5olvMIrvKJZwiu8wqvfauw5hB7LolttW84h92gxNvRYF9XKlk3WUP7WO8mh4RVeufWqxn2VMbeud6VhTeOv49G0sOqHjE37pjV22/+PPa1Ba70zHBpe4ZVTr2o4/UqPsigUf1WRVg0D2iOdfl4NVS7HKq7X/aHhFV659Kp2OVPVU223IamIJaycMxobllM66/V+aHiFVx69as82muLyVSE9Gbwv3xSfrX8tNmObJtrSvfk+NLzCK4debWk8LS+fV+VOlQgQBQ2AzTJW9cktvlqv60PDK7zy55Xcqe7LUD3Gi1L7dOw+XrWZnIvAor1ez4eGV3jlzqs8JM0vseo6hgVYuzrYpzVoPmH1dLFex4eGV3jlzastjYu66suglIrNp7p9xMqQNB/c2vV6/R4aXuGVM69KGpc1ow/EYbOK+yIpriEV1YdMqbk9NLzCK2de3YYNAHFIil8K1ZMrOv98PMZ1q9HB390eGl7hlS+v3pvcVb9rl1KxOaBmcyrdRu2RvR4aXuGVL69Woy328Va7wmubwotmvRut4XhvbnF6aHiFV668endwtvoTFZv7KTb77UZ/t+D00PAKr1x59cOunaCwDQMBFJUSL4njZe5/2rZQuoZWIYiM4b0DCDL2fGLjvdMYp+gSwscYzf/bMoyhtp6bdNH0Sq8y9WrtdTPWPtdneuHYBGNozmtMORdNr/QqU6/maDX3Gs/SJYMxlARjmKLVlnPR9EqvMvWqdvoRazSb+0x9LgnGsEWrMeei6ZVeZerVrdMcjz7TWV45NsEY9mj2SLloeqVXmXoV7R6dbvO9tBteue4JxnCLZmvKRdMrvUrUqyXareUFW58LdLxybIIxRLsp5aLplV4l6tXa6zOJ2ucCzdGufH4MS7Q7Ui6aXulVol4N0W7q9OImPn9Dr9Fu0iu90iu9anHVK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK73SK71KNka90iu90iu90iu90iu90iu90iu90iu90iu90iu90iu90iu90iu90iu90iu90iu90qtsY9QrvdIrvdIrvdIrvdKrc/bqsU7X+1afGaPZrb7tEu322myPdpf6gjHa1Xa3aFc/P4Y+596i3fyuPdrd5zdt0e46v6m+eS91WoexPrNt12P4X6yGfQyAFOrxj1rdxQpI5b48r9WhVkA6c/nbUgMgn8tS/jD4cwUkNZTfeBYE8jrKLya5AhIbyg+rXAGpreW7xyUAMht/fqYPkNvmaRA4i7V848MrIL+9fLUGQH6Lt1fASWyllFsA5Dd6HATOYihzAJzBtWwBcAa17AFwBqPX7cBJjMXH7cBJ6BVwFl/au5ecBmIgCKCFwnjGcXB8/9NCEAsiSLaxpfcO0fKnulu9AlYRs2SANRz+B4FF9NQBsIKaMgBWUNIGwArO0ZADLOEtcSEEllBiABawhKPly3UAzO6UG5FRYHq95dt5AExte8+NJ3dgeqf8kGkA5lYTBQtYwUfLL9oIgWnVljv25ABz2vb8cRFrAObTL/nPLukOzOXYWx4opvcB09j63vJMqd0xC3ixbev12nLvE0hFBWG98JmGAAAAAElFTkSuQmCC"},"7XU5":function(e,t){e.exports="data:image/png;base64,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"},EDgR:function(e,t){var i,a,r,n,s;i=window,a=i.document,r=a.documentElement,n="orientationchange"in i?"orientationchange":"resize",s=function(){var e=r.clientWidth||320;e>750&&(e=750),r.style.fontSize=e/7.5+"px"},a.addEventListener&&(i.addEventListener(n,s,!1),a.addEventListener("DOMContentLoaded",s,!1))},EMJh:function(e,t){},ISct:function(e,t){},Mmr7:function(e,t){},NHnr:function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=i("+p5o"),r={render:function(){var e=this.$createElement,t=this._self._c||e;return t("div",{attrs:{id:"app"}},[t("keep-alive",[t("router-view")],1)],1)},staticRenderFns:[]};var n=i("C7Lr")({name:"App"},r,!1,function(e){i("ISct")},null,null).exports,s=i("lPSU"),o=i("ciBU"),l=(i("YH1I"),i("I29D")),c=i.n(l),v={name:"search",components:{Popup:o.d,Loading:o.b},data:function(){return{loading1:!0,loading2:!0,columns:[{value:0,text:"骞存姤"},{value:1,text:"鍗婂勾鎶�"},{value:2,text:"涓�瀛f姤"},{value:3,text:"涓夊鎶�"}],pickToggle:!1,selectVal:{},searchVal:"",serachList:[],visible:!1,companyList:[],companyList_Semi:[],showTips1:!1,showTips2:!1}},activated:function(){this.getCompanyList(),this.getCompanyList("Semi"),this.getDefaultReportType(),this.selectVal=this.columns[0]},deactivated:function(){this.selectVal={},this.searchVal="",this.serachList=[]},methods:{getDefaultReportType:function(){var e=this;this.$axios.post("/DisclosureDate/GetDefaultReportType",{TypeInfo:"month"}).then(function(t){e.selectVal=e.columns[t.data.Data]}).catch(function(t){e.selectVal={}})},getCompanyList:function(e){var t=this,i={TypeInfo:"month"};"Semi"==e?(i.Plate="Semi",this.loading2=!0):this.loading1=!0;var a=this;this.$axios.post("/DisclosureDate/GetDisclosureDateList",i).then(function(i){i.data.Data&&i.data.Data.length>0?"Semi"==e?(a.showTips2=!1,t.companyList_Semi=i.data.Data):(a.showTips2=!1,t.companyList=i.data.Data):"Semi"==e?(a.showTips2=!0,t.companyList_Semi=[]):(a.showTips1=!0,t.companyList=[]),"Semi"==e?t.loading2=!1:t.loading1=!1}).catch(function(i){"Semi"==e?(t.loading2=!1,a.showTips2=!0,t.companyList_Semi=[]):(t.loading1=!1,a.showTips1=!0,t.companyList=[])})},pickShow:function(){this.pickToggle=!0},pickHide:function(){this.pickToggle=!1},confirm:function(e){this.selectVal=e,this.pickHide()},tohome:function(e){console.log(e),console.log(this.selectVal);var t=e.StockName+"("+e.TSCode+")"+this.selectVal.text;localStorage.setItem("imgName",t),this.$router.push({name:"home",query:{id:e.id,type:this.selectVal.value}})},quickTurn:function(e){this.$router.push({name:"home",query:{id:0,ReportType:e.report_type,TSCode:e.ts_code}})},search:function(){if(!this.searchVal)return!1;var e=this;this.searchVal?this.visible=!0:this.visible=!1,this.$axios.post("/ChinaStock/GetChinaStockList",{SearchInfo:e.searchVal,ReportType:e.selectVal.value}).then(function(t){e.serachList=t.data.Data}).catch(function(e){console.log("璇锋眰澶辫触涔嬪悗",e)})},clickToMessage:function(){this.$router.push("/message")}},watch:{searchVal:function(){var e=this;setTimeout(function(){console.log("鐩戝惉鏀瑰彉"),e.search()},20)}}},f={render:function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"search"},[e._m(0),e._v(" "),i("div",{staticClass:"name"},[e._v("涓婂競鍏徃寰储鎶�")]),e._v(" "),i("div",{staticClass:"input"},[i("div",{staticClass:"draw pointer",on:{click:e.pickShow}},[e._v(e._s(e.selectVal.text)+" "),i("i",{staticClass:"iconfont iconsanjiaojiantoutriangular"})]),e._v(" "),i("div",{staticClass:"keyval"},[i("input",{directives:[{name:"model",rawName:"v-model",value:e.searchVal,expression:"searchVal"}],attrs:{type:"text",placeholder:"璇疯緭鍏ヨ偂绁ㄤ唬鐮佹垨鑲$エ鍚嶇О"},domProps:{value:e.searchVal},on:{input:function(t){t.target.composing||(e.searchVal=t.target.value)}}})])]),e._v(" "),i("transition",{attrs:{name:"van-slide-down"}},[i("ul",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"list"},e._l(e.serachList,function(t,a){return i("li",{key:a,staticClass:"pointer",on:{click:function(i){return e.tohome(t)}}},[i("span",[e._v(e._s(t.StockName))]),e._v(" "),i("span",[e._v(e._s(t.StockCode))])])}),0)]),e._v(" "),i("van-popup",{staticClass:"pick",style:{height:"auto",width:"100%"},attrs:{position:"bottom"},model:{value:e.pickToggle,callback:function(t){e.pickToggle=t},expression:"pickToggle"}},[i("van-picker",{attrs:{"show-toolbar":"",columns:e.columns},on:{confirm:e.confirm,cancel:e.pickHide}})],1),e._v(" "),i("div",{staticClass:"clearfix",staticStyle:{"margin-top":"12px",position:"relative","min-height":"14vh"}},[e.loading1?i("div",{staticClass:"loadingbox"},[i("div",{staticClass:"loading"},[i("van-loading",{attrs:{type:"spinner",size:"60px"}})],1)]):e._e(),e._v(" "),i("div",{staticStyle:{width:"18%",float:"left","font-size":"14px","font-weight":"bold",color:"white","text-align":"center"}},[e._v("璐㈡姤棰勫憡")]),e._v(" "),i("div",{staticClass:"clearfix",staticStyle:{width:"81%",float:"right","margin-top":"2px"}},[e._l(e.companyList,function(t,a){return i("p",{key:"companyList_"+a,staticStyle:{width:"33.33%",float:"left",color:"white"},on:{click:function(i){return e.quickTurn(t)}}},[e._v(e._s(t.ts_name+"("+t.pre_date_show+")"))])}),e._v(" "),e.showTips1?i("p",{staticStyle:{width:"50%",float:"left",color:"white"}},[e._v("鏆傛棤鏁版嵁")]):e._e()],2)]),e._v(" "),i("div",{staticClass:"clearfix",staticStyle:{"margin-top":"12px",position:"relative"}},[e.loading2?i("div",{staticClass:"loadingbox"},[i("div",{staticClass:"loading"},[i("van-loading",{attrs:{type:"spinner",size:"60px"}})],1)]):e._e(),e._v(" "),e._m(1),e._v(" "),i("div",{staticClass:"clearfix",staticStyle:{width:"81%",float:"right","margin-top":"2px"}},[e._l(e.companyList_Semi,function(t,a){return i("p",{key:"companyList_"+a,staticStyle:{width:"33.33%",float:"left",color:"white"},on:{click:function(i){return e.quickTurn(t)}}},[e._v(e._s(t.ts_name+"("+t.pre_date_show+")"))])}),e._v(" "),e.showTips2?i("p",{staticStyle:{width:"50%",float:"left",color:"white"}},[e._v("鏆傛棤鏁版嵁")]):e._e()],2)]),e._v(" "),i("div",{staticClass:"to-message pointer",staticStyle:{"max-width":"630px"}},[i("u",{on:{click:e.clickToMessage}},[e._v("鎵句笉鍒版兂瑕佺殑鏁版嵁? 娆㈣繋缁欐垜浠暀瑷�")])])],1)},staticRenderFns:[function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"logo"},[t("img",{attrs:{src:i("7XU5"),alt:""}})])},function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticStyle:{width:"18%",float:"left"}},[t("p",{staticStyle:{"font-size":"14px","font-weight":"bold",color:"white","text-align":"center"}},[this._v("璐㈡姤棰勫憡")]),this._v(" "),t("p",{staticStyle:{"font-size":"14px","font-weight":"bold",color:"white","text-align":"center"}},[this._v(" 鍗婂浣�")])])}]};var p=i("C7Lr")(v,f,!1,function(e){i("ca0+")},"data-v-e0f8cb78",null).exports,u=i("T68X"),d=i.n(u);var h={name:"home",components:{Sticky:o.e,Loading:o.b,Notify:o.c,"van-circle":o.a},data:function(){return{img_kong:i("OrkP"),income:{},isincome:{},notincome:{},makeup:{charts:"",data:[]},ability:[{years:2017,percent:-101},{years:2018,percent:68},{years:2019,percent:102}],stickToggle:!1,isPc:null,dataInfo:{},isloading:!1,Percent:0,notifyShow:!1}},activated:function(){this.isPc=this.$util.IsPC();var e=this.$route.query;console.log("鏁版嵁",e),this.getInfo(e)},deactivated:function(){this.dataInfo={},this.isloading=!1,sessionStorage.removeItem("param")},methods:{saveImg:function(){var e=this;this.notifyShow=!0,setTimeout(function(){e.notifyShow=!1},2e3),d()(document.querySelector("#saveImgAll")).then(function(t){var i=t.toDataURL(),a=document.createElement("a");document.body.appendChild(a),a.href=i;e.dataInfo.BasicInfo.CompanyName;var r=localStorage.getItem("imgName");a.download=r+".jpg",a.click(),a=null})},toSearch:function(){this.$router.go(-1)},scroll:function(e){var t=e.target.scrollTop;this.isPc?this.stickToggle=t>=400:this.stickToggle=t>=200},drawMap:function(e,t,i){var a,r,n,s;t.charts=this.$echarts.init(document.getElementsByClassName(e)[0]),1==i?t.charts.setOption((a=t.Titles,r=t.Year,n=t.Cash,s=t.Percent,{tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},legend:{data:a},grid:{left:"0",right:"4%",bottom:"0",containLabel:!0},xAxis:[{type:"value"}],yAxis:[{type:"category",axisTick:{show:!1},data:r}],series:[{name:a[0],type:"bar",label:{show:!0},data:n},{name:a[1],type:"bar",label:{show:!0},data:s}]})):2==i&&t.charts.setOption({tooltip:{formatter:"{b}"},legend:{type:"scroll",bottom:0},series:[{type:"pie",radius:"60%",center:["50%","50%"],data:t.data}]})},getInfo:function(e){console.log(e);var t=this,i={};i=e.id?{CompanyId:e.id,ReportType:e.type}:{CompanyId:0,ReportType:e.ReportType,TSCode:e.TSCode},t.$axios.post("/chinastock/GetchinastockDetail",i).then(function(e){t.isloading=!0;var i,a=e.data.Data;t.dataInfo=a,document.title=t.dataInfo.BasicInfo.CompanyName+"寰储鎶ュ厤璐圭増",t.makeup.data=((i=a.RevenueComponent.RevenuePercents).forEach(function(e,t){e.name=e.name+":"+e.value+"%"}),i),t.$nextTick(function(){t.drawMap("income",a.IncomeProfits[0].CashPercent,1),t.drawMap("isincome",a.IncomeProfits[1].CashPercent,1),t.drawMap("notincome",a.IncomeProfits[2].CashPercent,1),t.drawMap("makeup",t.makeup,2),t.dataInfo.OperateCapabilities.forEach(function(e,t){e.OCPercents.reverse()})})}).catch(function(e){console.log("璇锋眰澶辫触涔嬪悗",e)})}}},A={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"home"},[e.isloading?a("div",{ref:"imageTofile",staticClass:"homebox",attrs:{id:"saveImgAll"},on:{"&scroll":function(t){return e.scroll(t)}}},[a("van-notify",{staticClass:"notify",attrs:{type:"success"},model:{value:e.notifyShow,callback:function(t){e.notifyShow=t},expression:"notifyShow"}},[a("van-icon",{staticStyle:{"margin-right":"4px"},attrs:{name:"bell"}}),e._v(" "),a("span",[e._v("鍥剧墖姝e湪涓嬭浇锛岃绋嶅悗......")])],1),e._v(" "),a("div",{staticClass:"head"},[a("p",{staticClass:"flag fontColor"},[e._v("涓�鍥剧湅鎳�")]),e._v(" "),a("p",{staticClass:"name"},[e._v(e._s(e.dataInfo.BasicInfo.CompanyName)+" | "+e._s(e.dataInfo.BasicInfo.StockCode))]),e._v(" "),a("p",{staticClass:"times"},[e._v(e._s(e.dataInfo.BasicInfo.Title))]),e._v(" "),a("p",{staticClass:"btn pointer",staticStyle:{"margin-right":"100px"},on:{click:function(t){return e.saveImg()}}},[e._v("淇濆瓨鍥剧墖")]),e._v(" "),a("p",{staticClass:"btn pointer",on:{click:function(t){return e.toSearch()}}},[e._v("鏇存崲浼佷笟")])]),e._v(" "),a("div",{staticClass:"contentbox"},[a("div",{staticClass:"content"},[a("div",{staticClass:"section"},[e._m(0),e._v(" "),a("div",{staticClass:"ball clearfix"},[a("div",{staticClass:"ring left bgColor"},[e._m(1),e._v(" "),a("p",{staticClass:"money"},[e._v("\n                                "+e._s(e.dataInfo.BasicFinance.TotalRevenue)+e._s(e.dataInfo.BasicFinance.TotalRevenueUnit))]),e._v(" "),a("p",{staticClass:"text"},[e._v("钀ヤ笟鎬绘敹鍏�")])]),e._v(" "),a("div",{staticClass:"ring right bgColor"},[e._m(2),e._v(" "),a("p",{staticClass:"money"},[e._v(e._s(e.dataInfo.BasicFinance.ROE)+e._s(e.dataInfo.BasicFinance.ROEUnit))]),e._v(" "),a("p",{staticClass:"text"},[e._v("鍑�璧勪骇鏀剁泭鐜�")])]),e._v(" "),a("div",{staticClass:"line line1"},[a("p",[e._v("褰掓瘝鍑�鍒╂鼎")]),e._v(" "),a("p",{staticClass:"fontColor"},[e._v(e._s(e.dataInfo.BasicFinance.MomProfit)+e._s(e.dataInfo.BasicFinance.MomProfitUnit))])]),e._v(" "),a("div",{staticClass:"line line2"},[a("p",[e._v("鎵i潪褰掓瘝鍑�鍒╂鼎")]),e._v(" "),a("p",{staticClass:"fontColor"},[e._v("\n                                "+e._s(e.dataInfo.BasicFinance.NoMomProfit)+e._s(e.dataInfo.BasicFinance.NoMomProfitUnit))])])])]),e._v(" "),a("div",{staticClass:"section"},[e._m(3),e._v(" "),a("p",{staticClass:"sub-title fontColor"},[e._v(e._s(e.dataInfo.IncomeProfits[0].Name))]),e._v(" "),a("div",{staticClass:"income",staticStyle:{width:"100%",height:"200px"}}),e._v(" "),a("p",{staticClass:"sub-title fontColor"},[e._v(e._s(e.dataInfo.IncomeProfits[1].Name))]),e._v(" "),a("div",{staticClass:"isincome",staticStyle:{width:"100%",height:"200px"}}),e._v(" "),a("p",{staticClass:"sub-title fontColor"},[e._v(e._s(e.dataInfo.IncomeProfits[2].Name))]),e._v(" "),a("div",{staticClass:"notincome",staticStyle:{width:"100%",height:"200px"}})]),e._v(" "),a("div",{staticClass:"section"},[e._m(4),e._v(" "),a("div",{staticClass:"makeup",style:{width:"100%",height:e.makeup.data.length>0?"250px":0}}),e._v(" "),0==e.makeup.data.length?a("div",{staticStyle:{width:"60px",margin:"12px auto"}},[a("img",{staticStyle:{width:"60px"},attrs:{src:e.img_kong}}),e._v(" "),a("span",{staticStyle:{"font-size":"15px"}},[e._v("鏆傛棤鏁版嵁")])]):e._e()]),e._v(" "),a("div",{staticClass:"section"},[e._m(5),e._v(" "),a("div",{staticClass:"ability"},[e._l(e.dataInfo.Earningses,function(t,i){return a("div",{staticClass:"ability-item"},[a("p",{staticClass:"ability-title bgColor"},[e._v(e._s(t.Title))]),e._v(" "),a("ul",{staticClass:"list"},e._l(t.EarningsPercents,function(t,i){return a("li",[a("div",{staticClass:"canvasbox"},[a("div",{staticClass:"canvas"},[a("van-circle",{attrs:{rate:t.PercentAbs,speed:100,text:t.Percent+"%",size:"1.5rem","stroke-width":100,clockwise:t.PositiveFlag,color:"#9b0707"},model:{value:t.PercentAbs,callback:function(i){e.$set(t,"PercentAbs",i)},expression:"item2.PercentAbs"}})],1)]),e._v(" "),a("p",{staticClass:"text"},[e._v(e._s(t.Year))])])}),0)])}),e._v(" "),a("div",{staticClass:"cost"},[a("ul",{staticClass:"costlist"},[a("li",e._l(4,function(t){return a("p",[a("span",{staticClass:"right",style:{width:e.dataInfo.ExpenseRates[t-1].ExpenseRatePercents[0].Percent+"%"}})])}),0),e._v(" "),a("li",e._l(e.dataInfo.ExpenseRates,function(t,i){return a("div",{staticClass:"percent"},[a("p",{staticClass:"pertext"},[e._v(e._s(t.ExpenseRatePercents[0].Percent)+"%")]),e._v(" "),a("p",{staticClass:"pertitle bgColor"},[e._v(e._s(t.Title))]),e._v(" "),a("p",{staticClass:"pertext"},[e._v(e._s(t.ExpenseRatePercents[1].Percent)+"%")])])}),0),e._v(" "),a("li",e._l(4,function(t){return a("p",[a("span",{staticClass:"left",style:{width:e.dataInfo.ExpenseRates[t-1].ExpenseRatePercents[1].Percent+"%"}})])}),0)]),e._v(" "),a("div",{staticClass:"costyear"},[a("span",{staticClass:"left"},[e._v(e._s(e.dataInfo.ExpenseRates[0].ExpenseRatePercents[0].Year))]),e._v(" "),a("span",{staticClass:"right"},[e._v(e._s(e.dataInfo.ExpenseRates[0].ExpenseRatePercents[1].Year))])]),e._v(" "),a("p",{staticClass:"tips"},[e._v("娉�: 绠$悊璐圭敤涓笉鍖呭惈鐮斿彂璐圭敤")])])],2)]),e._v(" "),a("div",{staticClass:"section"},[e._m(6),e._v(" "),a("div",{staticClass:"ability"},[a("div",{staticClass:"ability-item"},[a("p",{staticClass:"ability-title bgColor"},[e._v(e._s(e.dataInfo.DebtReturns[0].Title))]),e._v(" "),e._l(e.dataInfo.DebtReturns,function(t,i){return a("ul",{staticClass:"list pay"},e._l(t.DebtPercents,function(t,i){return a("li",[a("div",{staticClass:"canvasbox"},[a("div",{staticClass:"canvas"},[a("van-circle",{attrs:{rate:t.PercentAbs,speed:100,text:t.Percent+"%",size:"1.5rem","stroke-width":100,clockwise:t.PositiveFlag,color:"#9b0707"},model:{value:t.PercentAbs,callback:function(i){e.$set(t,"PercentAbs",i)},expression:"item2.PercentAbs"}})],1)]),e._v(" "),a("p",{staticClass:"text"},[e._v(e._s(t.Year))])])}),0)})],2)])]),e._v(" "),a("div",{staticClass:"section"},[e._m(7),e._v(" "),a("ul",{staticClass:"runlist"},e._l(e.dataInfo.OperateCapabilities,function(t,r){return a("li",{class:r%2==0?"first":"second"},[r%2==0?a("div",{staticClass:"icon"},[0==r?a("img",{staticClass:"left",attrs:{src:i("fzQ2"),height:"90%",alt:""}}):e._e(),e._v(" "),2==r?a("img",{staticClass:"left",attrs:{src:i("2HMH"),height:"90%",alt:""}}):e._e()]):e._e(),e._v(" "),a("div",{staticClass:"text"},[a("p",{staticClass:"runtitle fontColor"},[e._v(e._s(t.Title))]),e._v(" "),a("div",{staticClass:"detail"},e._l(t.OCPercents,function(t,i){return a("a",[e._v(e._s(t.Year)+"\n                                        "),r==e.dataInfo.OperateCapabilities.length-1?a("span",{staticClass:"fontColor"},[e._v("\n                                            "+e._s(t.Frequency?t.Frequency+"浜�":"鏃犵浉鍏虫暟鎹�")+"\n                                        ")]):e._e(),e._v(" "),r!=e.dataInfo.OperateCapabilities.length-1?a("span",{staticClass:"fontColor"},[e._v("\n                                            "+e._s(t.Frequency?t.Frequency+"娆�":"鏃犵浉鍏虫暟鎹�")+"\n                                        ")]):e._e()])}),0)]),e._v(" "),r%2==1?a("div",{staticClass:"icon"},[1==r?a("img",{staticClass:"right",attrs:{src:i("VcvH"),height:"90%",alt:""}}):e._e(),e._v(" "),3==r?a("img",{staticClass:"right",attrs:{src:i("Wpem"),height:"90%",alt:""}}):e._e()]):e._e()])}),0)]),e._v(" "),a("div",{staticClass:"section"},[a("div",{staticClass:"title bgColor"},[a("span",[e._v("07")]),e._v(" "),a("span",[e._v(e._s(e.dataInfo.StockHolderInfo.Title))])]),e._v(" "),a("p",{staticClass:"noticeTime fontColor"},[e._v("\n                        鍏憡鏃ユ湡锛�"),a("span",[e._v(e._s(e.dataInfo.StockHolderInfo.ReportDate))]),e._v("\n                        鎴嚦鏃ユ湡锛�"),a("span",[e._v(e._s(e.dataInfo.StockHolderInfo.FinalDate))])]),e._v(" "),a("ul",{staticClass:"share"},e._l(e.dataInfo.StockHolderInfo.StockHolderUnits,function(t,i){return a("li",[a("p",{staticClass:"sharetitle fontColor"},[e._v(e._s(i+1)+"锛�"+e._s(t.CompanyName))]),e._v(" "),a("div",{staticClass:"borderbox"},[a("div",{staticClass:"take",staticStyle:{width:"40%"}},[a("div",{staticClass:"line bgColor",style:{width:t.Percent+"%"}})]),e._v(" "),a("div",{staticClass:"num",staticStyle:{width:"45%"}},[a("span",{staticClass:"fontColor"},[e._v(e._s(t.Percent)+"% "+e._s(t.Amount)+"鑲�")])]),e._v(" "),a("div",{staticClass:"num",staticStyle:{width:"15%"}},[a("span",{staticClass:"fontColor",style:{color:t.AmountDiffColor}},[e._v(e._s(t.AmountDiffInfo))])])])])}),0)]),e._v(" "),a("div",{staticClass:"section"},[a("div",{staticClass:"title bgColor"},[a("span",[e._v("08")]),e._v(" "),a("span",[e._v(e._s(e.dataInfo.StockHolderInfoFloat.Title))])]),e._v(" "),a("p",{staticClass:"noticeTime fontColor"},[e._v("\n                        鍏憡鏃ユ湡锛�"),a("span",[e._v(e._s(e.dataInfo.StockHolderInfoFloat.ReportDate))]),e._v("\n                        鎴嚦鏃ユ湡锛�"),a("span",[e._v(e._s(e.dataInfo.StockHolderInfoFloat.FinalDate))])]),e._v(" "),a("ul",{staticClass:"share"},e._l(e.dataInfo.StockHolderInfoFloat.StockHolderUnits,function(t,i){return a("li",[a("p",{staticClass:"sharetitle fontColor"},[e._v(e._s(i+1)+"锛�"+e._s(t.CompanyName))]),e._v(" "),a("div",{staticClass:"borderbox"},[a("div",{staticClass:"take",staticStyle:{width:"40%"}},[a("div",{staticClass:"line bgColor",style:{width:t.Percent+"%"}})]),e._v(" "),a("div",{staticClass:"num",staticStyle:{width:"45%"}},[a("span",{staticClass:"fontColor"},[e._v(e._s(t.Percent)+"% "+e._s(t.Amount)+"鑲�")])]),e._v(" "),a("div",{staticClass:"num",staticStyle:{width:"15%"}},[a("span",{staticClass:"fontColor",style:{color:t.AmountDiffColor}},[e._v(e._s(t.AmountDiffInfo))])])])])}),0)])]),e._v(" "),e._m(8)]),e._v(" "),e._m(9)],1):e._e(),e._v(" "),e.isloading?e._e():a("div",{staticClass:"homebox"},[a("div",{staticClass:"loading"},[a("van-loading",{attrs:{type:"spinner",size:"60px"}})],1)])])},staticRenderFns:[function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"title bgColor"},[t("span",[this._v("01")]),this._v(" "),t("span",[this._v("璐㈠姟鐘跺喌")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("p",{staticClass:"icon"},[t("i",{staticClass:"iconfont iconrenmingbi"})])},function(){var e=this.$createElement,t=this._self._c||e;return t("p",{staticClass:"icon"},[t("i",{staticClass:"iconfont icondiqiu"})])},function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"title bgColor"},[t("span",[this._v("02")]),this._v(" "),t("span",[this._v("鏀跺叆涓庡埄娑�")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"title bgColor"},[t("span",[this._v("03")]),this._v(" "),t("span",[this._v("钀ユ敹鏋勬垚")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"title bgColor"},[t("span",[this._v("04")]),this._v(" "),t("span",[this._v("鐩堝埄鑳藉姏")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"title bgColor"},[t("span",[this._v("05")]),this._v(" "),t("span",[this._v("鍋垮�鸿兘鍔�")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"title bgColor"},[t("span",[this._v("06")]),this._v(" "),t("span",[this._v("杩愯惀鑳藉姏")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"copyright"},[t("p",{staticClass:"copytitle"},[this._v("鍏嶈矗澹版槑")]),this._v(" "),t("p",[this._v("\n                    鈥滀笂甯傚叕鍙稿井璐㈡姤鈥濅腑鍚勯」鎸囨爣鍧囨潵婧愪簬浠佽蒋鏅烘姇鐮旂┒闄紝鍏蜂綋鍐呭浠ヤ笂甯傚叕鍙稿叕鍛婁负鍑嗐�傚湪浠讳綍鎯呭喌涓嬩笂杩板唴瀹瑰苟涓嶆瀯鎴愬浠讳綍浜虹殑鎶曡祫寤鸿锛屾湭缁忎粊杞鎶�涔﹂潰璁稿彲锛屼换浣曟満鏋勬垨涓汉涓嶅緱浠ヤ换浣曞舰寮忓鍒躲�佸紩鐢ㄤ笂杩板唴瀹癸紝鍚﹀垯鐢辨閫犳垚鐨勪竴鍒囦笉鑹悗鏋滃強娉曞緥璐d换鐢辩鑷鍒躲�佸紩鐢ㄨ�呮壙鎷呫�俓n                ")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("p",{staticClass:"bottom"},[t("a",{staticStyle:{color:"white"},attrs:{href:"https://www.rensofter.com/index.html"}},[this._v("RenSoft@浠佽蒋绉戞妧")])])}]};var m=i("C7Lr")(h,A,!1,function(e){i("EMJh")},"data-v-9d567316",null).exports,g={name:"message",data:function(){return{height:document.documentElement.clientHeight,name:"",mobile:"",email:"",company:"",note:""}},methods:{toSearch:function(){this.countryName;this.$router.push("/search")},onSubmit:function(){var e=this;if(""===this.name.toString().replace(/\s+/g,""))return Object(o.c)({type:"danger",message:"璇疯緭鍏ュ鍚�"}),!1;if(!this.mobile&&!this.email)return Object(o.c)({type:"danger",message:"鐢佃瘽鎴栬�呴偖绠辫嚦灏戝~鍐欎竴澶勶紒"}),!1;if(this.mobile&&!/^1[3456789]\d{9}$/.test(this.mobile))return Object(o.c)({type:"danger",message:"璇疯緭鍏ユ纭墜鏈哄彿"}),!1;if(this.email&&!/^[A-Za-z\d]+([-_.][A-Za-z\d]+)*@([A-Za-z\d]+[-.])+[A-Za-z\d]{2,4}$/.test(this.email))return Object(o.c)({type:"danger",message:"璇疯緭鍏ユ纭殑閭"}),!1;if(""===this.note.toString().replace(/\s+/g,""))return Object(o.c)({type:"danger",message:"璇疯緭鍏ユ剰瑙佹垨寤鸿"}),!1;var t={Name:this.name,Mobile:this.mobile,Email:this.email,Company:this.company,Note:this.note,TypeInfo:"Haig"};this.$axios.request({url:"/Advise/AddAdvise",data:t,method:"post"}).then(function(t){e.name="",e.mobile="",e.email="",e.company="",e.note="",Object(o.c)({type:"success",message:t.data.Msg})},function(e){Object(o.c)({type:"danger",message:res.data.Msg})})}},activated:function(){}},C={render:function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"message"},[i("div",{staticClass:"messagebox"},[i("div",{staticClass:"head"},[i("p",{staticClass:"title"},[e._v("浠佽蒋瀹㈡埛鍏虫��涓績")]),e._v(" "),i("p",{staticClass:"tips"},[e._v("鎮ㄧ殑瀹濊吹鎰忚鏄垜浠繘姝ョ殑涓嶇鍔ㄥ姏")]),e._v(" "),i("p",{staticClass:"btn pointer",on:{click:function(t){return e.toSearch()}}},[e._v("杩斿洖棣栭〉")])]),e._v(" "),i("div",{staticClass:"contextbox"},[i("div",{staticClass:"content"},[i("div",{staticClass:"content-top"},[e._m(0),e._v(" "),i("input",{directives:[{name:"model",rawName:"v-model",value:e.name,expression:"name"}],attrs:{type:"text",id:"name"},domProps:{value:e.name},on:{input:function(t){t.target.composing||(e.name=t.target.value)}}}),e._v(" "),e._m(1),e._v(" "),i("input",{directives:[{name:"model",rawName:"v-model",value:e.mobile,expression:"mobile"}],attrs:{type:"tel",id:"tel"},domProps:{value:e.mobile},on:{input:function(t){t.target.composing||(e.mobile=t.target.value)}}}),e._v(" "),e._m(2),e._v(" "),i("input",{directives:[{name:"model",rawName:"v-model",value:e.email,expression:"email"}],attrs:{type:"email",id:"email"},domProps:{value:e.email},on:{input:function(t){t.target.composing||(e.email=t.target.value)}}}),e._v(" "),e._m(3),e._v(" "),i("input",{directives:[{name:"model",rawName:"v-model",value:e.company,expression:"company"}],attrs:{type:"text",id:"companyName"},domProps:{value:e.company},on:{input:function(t){t.target.composing||(e.company=t.target.value)}}}),e._v(" "),e._m(4),e._v(" "),i("textarea",{directives:[{name:"model",rawName:"v-model",value:e.note,expression:"note"}],attrs:{rows:"3",cols:"20",id:"note"},domProps:{value:e.note},on:{input:function(t){t.target.composing||(e.note=t.target.value)}}})]),e._v(" "),i("div",{staticClass:"content-submit"},[i("input",{staticClass:"submit pointer",attrs:{type:"submit"},on:{click:e.onSubmit}})])])]),e._v(" "),e._m(5)])])},staticRenderFns:[function(){var e=this.$createElement,t=this._self._c||e;return t("label",{attrs:{for:"name"}},[t("p",[this._v("濮撳悕 "),t("span",{staticStyle:{color:"#E56E6E"}},[this._v("*")])])])},function(){var e=this.$createElement,t=this._self._c||e;return t("label",{attrs:{for:"tel"}},[t("p",[this._v("鐢佃瘽")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("label",{attrs:{for:"email"}},[t("p",[this._v("閭")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("label",{attrs:{for:"companyName"}},[t("p",[this._v("鍏徃鍚嶇О")])])},function(){var e=this.$createElement,t=this._self._c||e;return t("label",{attrs:{for:"note"}},[t("p",[this._v("璇锋偍鍦ㄦ鐣欒█,鎴戜滑浼氬敖蹇粰鎮ㄥ洖澶� "),t("span",{staticStyle:{color:"#E56E6E"}},[this._v("*")])])])},function(){var e=this.$createElement,t=this._self._c||e;return t("p",{staticClass:"bottom"},[t("a",{staticStyle:{color:"white"},attrs:{href:"https://www.rensofter.com/index.html"}},[this._v("RenSoft@浠佽蒋绉戞妧")])])}]};var V=i("C7Lr")(g,C,!1,function(e){i("sbdH")},"data-v-31f7b362",null).exports;a.a.use(s.a);var K=new s.a({routes:[{path:"/",name:"search",redirect:"/search",component:p},{path:"/search",name:"search",component:p},{path:"/home",name:"home",component:m},{path:"/message",name:"message",component:V}]}),y=(i("EDgR"),i("vryz"),i("QKVV"),i("+/Yu")),X=i.n(y),S=(i("Mmr7"),{IsPC:function(){for(var e=navigator.userAgent,t=["Android","iPhone","SymbianOS","Windows Phone","iPad","iPod"],i=!0,a=0;a<t.length;a++)if(e.indexOf(t[a])>0){i=!1;break}return i}}),w={search:"http://47.92.245.94:8090/chinastock/GetchinastockList",home:"http://47.92.245.94:8090/chinastock/GetchinastockDetail"};a.a.config.productionTip=!1,a.a.prototype.$echarts=X.a,a.a.use(o.f),a.a.prototype.$util=S,a.a.prototype.store=w,a.a.prototype.$axios=c.a,a.a.prototype.$axios.defaults.baseURL="/",new a.a({el:"#app",router:K,components:{App:n},template:"<App/>"})},OrkP:function(e,t){e.exports="data:image/png;base64,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"},QKVV:function(e,t){},VcvH:function(e,t){e.exports="data:image/png;base64,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6cXopRcdeunF6KUXHXrpxeilFx166cXopRcdeunF6KUXHXrpxeilFx166cXopRcdeunF6KUXHXrpxeilFx166cXopRcdeunF6KUXHXrpxeilFx166cXopRcdJzt3lJwoEIVhtFQEIsRx/6udQbzOPEwMnYKkuznfAnw7ZXGr+scLL0V44aVywgsvRXjhpXLCCy9FeOGlcsILL0V44aVywgsvRXjhpXLCCy9FeOGlcsILL0V44aVywgsvfVhzGYe3wxUvvLQ+rO421eGFl1aHFTV44aW1YUVHvPDS2rCiHi+8tDas6IwXXkqG1Qas17V44aXlsPqAtagOL7y0CNY1YCXU4IWXXnQa+3PASu6IF15aG1bU44WX1oYVnfHCS8+aY8BapRYvvLQ2rKjDC6+dF7C2qMELr70WsLbriBde+ytgbV2PF157aoL1FrA2r8ULr30UsL6zN7zwqr07rPfbsnI4HeKFVwk1l18B62c64YVXhf2BNXwNVganQ7zwyrU7rMMtj3q88KqkeEKcUS1eeBVfhrDmDnjhVXDZwprr8MKryDKH9eiEF15lVQasuSNeeJVSSbDmerzwyr8JVlsUrLkWL7xybpppKhHW3DteeOXZBOtaLKy5Di+8smtakykc1qMTXnjlUz2w5ka88Mqh2mDN9Xjh9cUKe5v/E7V44bU0sFLr8MLr88DCC68C2gusRye88PpvYK3QiBdeH1TyTFMmDXjh9QyslWvxwutvFeyfZVWHF173qtk/yyq88Kpr/yyrLnjhVdX+WVb1eOG1pyfE39uAF15gbVWLF15gbVWHF15gJYA5XFO+Mhu88AJrEax2OE6nwCHldIgXXmAtgPX8IxpTTod44VXV/tmGsNIFDHjhVdX+2XawopTTIV54/QOrytGLlWBFh4QfwwuvetdkkmGNAetF55TTIV475wXWb/buNslpGAjCcNuR/CHbrO5/Wggh1LKhgkZE8cyo+wD77ynMWzvaK6xYAguANB2SV7e8COsnrKUQVlU6JK8OeXV5m/9lhwBWfTokr654EVYNrPp0SF6d8CKsnOe1DlZ9OiQv97wISwTrtemQvPzyIiwRrPPTIXnZ4NX9M00yWFrSoQJeibwI69+wxjJYutKhAl64DOTF98+ewLqg7WZBOrTHC5jIi++fPV46lsLSmw518MJGXnz/7BOsrRCW9nSohBfGuXdeIe3dv392PyGuXvt0OJrkhcvQLS+eEN9hBZTOSDpUwwv41h8vwjoZlhxBtMoLS0e8CEsFrIp0aJYX0twBL8LSBEueDu3yQhg88yKsG6xdEayKdGiXFxBd8iKs26WjPlgV6dAyLyy+ePH9sxusRSmsinRomhfS7IMX3z/7sUM7LLmCb7Z5IQzGefH9Mzuw5OlwNc4LiGZ58TWZnOfVEix5OjTPC4s9XoRlE1ZFOjTPC2m2w4uwLMOqSIf2eSEMBnjxNt8+rIp06IAXEDXzIqwbrNE8LDmDyQUvLCp5EZYvWBXp0AcvpEMVL8L6fULsb2su3uyEF8Kqh9dOWJtLWPJ0eHHCC4hqeIXc636dEPueKB264YVFCy90+K+XtruRP2chHWrnhXQo4bXmjtYRrIp06IgXwqqDV8xdrDtY8o+TwRMvIKrgtWfn6xWWPB364oVdA68xu53OE+KCqU+HJnghHefzcpkONZ8Qv3eLJB0644Wwns4Lvt7OvcL6IKy6dOiNFxBP5+UmHdq6dHwy/enQDC/sb+DlPR0S1kvS4eGQF9LRnJffdOjjbuRh2tOhIV4I66m8UjY5wmqQDj3yAmJjXr7SIWG1Soe7T14Y2/Lykg4JS0k6NMYL6WjJy346dHjp+Hy606E1XghTQ16W0yFhvS8dzm55AVs7XjbTodsT4oIpT4cGeWE8idcla5vzE+KiqU6HFnkhDY142UmHXZwQ16592/jwzAuY2vCykA77vhspXwhVVbpsm29e2Jrw0p0OCatsIS1xPfKkIB1a5YVLC15a0yFhlcL6uMIS9IfKj5PZOy+04KUvHRJWMaxt/eIjtEuHmbwqeGlKhzwhFsAa8l+WGqbDRF5yXjrSIU+IX/MXq5fzfy2KvB54Sb7OCUu89rDu285Ph+Ql4TXlh/HSUbb2sO7TkA7JS8Jry9cRlmBnwNKTDsmrgFerdDgTVgNY70mHgbxezivwIOv5tMDSkg7JS8ILhCVePaypEJbidEheIl4DYX2dSlh16TBJfjZ5vZ5X5KWjYHJYSyksI+mQvES8NsISTAQrFsIylQ7JS8Rrl/w4nhAX7FIOy2A6JC8BL+nnAyeA1WJjy3RIXi/nBdGnCfffsIynQ/IS8BKmQ/6f62FhLIblIh2Sl4xXzOXjUxh1sBylQ/KS8dpEnw9cBSxP6ZC8ZLx20edD56uE5SgdktdnXkyH39m7o5zGYTCKwmnTJrRJoftf7UzFSOORBupr/MO1fe4C+gB8knVI3G5geaRDeGm8ppV02AQsj3QIr5QX6fCLsC42sN53nrTNytkfXiIv0mE5LIs7Vt3SIbxSXqRD/ZomU1ge6RBeKS/SYTewCs/ni/LZ8NJ4kQ7zLxZsY5Hp8AgvjRfp8AmsvR1YFukQXikv0uFnsHx6u0fbOMNL4hVwfGh+zcJ63yUyHcJL40U67AeWRTqEV8qLdNgPrD+bI9MhvCRew6fDnmCVnc835bPhJfEaOB32B8shHcJL5nXpLB0+YC0dwnJ4LApeKa/B0uHj/rN+YSW/VGVKloSX9JsYJh0+YL12DqvwfH4QPhte9Xnt0n8e7XbdnV7Iit8c+FjUDC+FV9/pcB4MlkE6hFfKq9d0OCYsg3QIr5RXf+nwNDAsg3QIr5RXT+nQ69KLn9stMh3Cqz6vF/N0CCybdAivlFfr6RBYZukQXimvdtMhsD7cHpkO4SXwajEdAss4HcIr5dVWOnS8WNBwoekQXgKvVtKh78WChpMPEKvwJwOv7B0Cjw+D3X/mtFtkOoSXwCvgcxdgVZz+xfHX0zRFpkN4VeSl/9Aug10s6LEHrGMCKy4dwkvgFXDfyWAXC8pzglVw9oeXwCsgHc68m/89Ww+vL0fhp10nHcIrn5dDOgRWCaxNgFUzHd7glc/LIR1udybAWrbjdRJWOx3Cqz6va2A63O8sF5aQBcPSIbyq8zrpnyp8NqsGKz4d7vDKhuCQDuFVA5ZJOoRXyssiHRLivwTLKh3CK+VlkQ7Pd/YvrD0eVvkrEfDK5kU6NNpvWGcBlmU6hFfKi3TosduiPyxomQ7hlfIiHerrC1bBRczwynVgkQ6n+5BbLWDpB4gNXrm8SIc/sfXiA6sgHcIrlxfp8Mm6h1WQDuGVy4t0+OFGgaUfIOBVn9dMOvwCrKMvLP0AcYVXdV4npYaRDv/CmqcWJqVDeGXyMkmH3b3stR5eW4FVkA7hVZ/XQjrMftPxOrU2KR3Cqz6vjXT4DNbSIqyCdAivTF6kw/Yeb9cWchEzvPJ5GXyPQ7PpsAdYBekQXnm8SIfAKkiH8MrjRTps5IWs/80xHcKrlNd5+HT4eCGrP1i6iwVeAq+I+046S4cPWG+dwipIh/ASeEUcH/pJhx4vZH0wu3QIr5QX6RBYJekQXtV5TfdhLmMzf7w9ZC9KOoRXfV6HAdLhiLAKzv7wyuJFOgRWydkfXgKviP88NpQOR4dVkA7hlcVr8HTYxJuOn80uHcIr5TVsOlwPzbzp+Nns0iG8inlNaw/psLk3Hb9rb8rZH14Cr4D+YJgOG33TUV/8H88GL4lX/PFBP/nzePvzuaVDeKW8uk+HwIo5+8Mrh1fH6RBYoekQXr/Yu6M0NYEgisKACAo6Yf+rzZjJQ2Uy0pS2dt3m3CUQfj7nxMYNvKpMh8B6fTrs4LWBV2XpsM6TjomF+glYeFleL0yHvZcuJx2dK3n3HOG1gVcF6XBsd3Vu5PuCpUN4WV7a6XBfB7JeOf/bVOC1gVegdHgC1kOLlQ7hZXnppUO+3v7vgqVDeFleSukQWD8tWDqEl+WlkQ6B9Z5Nng8n8Erzip4OOZD1nvltnOGV5hU3HQJr42KlQ3hZXpHS4YUDWaV39tzo8EryipQOuxusGVjOxUqH8LK8IqXDhpOOjy1SOoSX4fXajw/85aQ2VzqEV5JXqHTIys2Po4VXXl7+VyUzsXnSIbySvEKlQ1Z8rnQIrxSvUOmQFZ8rHcIrxStWOmRf66epcSxSOoSX5UU6jLV+usxDOxZ7Mh08H07gleJFOoyyT1inGyz/kylUOoTXc7wupMMmP6yPGyy7rtm8UOkQXs/x6kiH+Xa4nI7tGOnJ5EqH8ErwIh06lh9WvEvnSofwSvAiHb59fWdhpY9TpRcpHcLL8iIdJpYfVuwnkysdwivBK/vHhxh/oEfbFyyF+8jD4wqvBC/S4X8rDks6HcLL8Hr9q5L3uxus8zdYAk+mwXOvw2udF+nwBeunT1jX5YcJXLp52b4LvLLzaq6kw/uwfiVh5f+3KZYOZ3itrW1Ih/lgzed2SS3+k8njY4DXOi/SYZZv4Z631AuNG8njY4TXOi/SYUBYyukQXs/ymkiHDlhy6fDDc7PDa5UX6TAgLJ10eILXKi/Sofuk47t2bbYvTjqEl+VFOvScdExv9+kQXpYX6TAJ6+iCpZ8OPTf8CK9VXqTDxIGsgrs0ZdYu2wev/LwOAn+gS8Mqdtbb/zYVeGXnZS9h1GOBD63vYsASTofwsrxIhxFhPXDpoqRDeD3Pa6goHUaEJZwO4WV57Tkd3mCdQ8J64DWRUdIhvCyvfabD8LD8l65UOuzhtcZrZ1+L+nsgS2OK6RBeltd+0uEnrFkGlm46hJfltYd0+PUt3EVviukQXhl4DRoX5A+smFlw0xrPYqRDeGXgNQukQ2lYpdKh/0XM8FrhVXE6PC/yE0yH8LK8Kk6Hx0V+gukQXhl4NZW9USzoBNMhvHLc+W38/tUt8hNMh/DKwesY/4r0i/4EfgJ2gNd9XjWnQ63/Q64kHcLL8iIdhp5eOoSX5UU6DD29dAivLFFvJB3e3Z7TIbzsjV9zOpwW+emlQ3hZXqTD2JNLh/CyvEiHsSeXDuFleZEOY08uHcLL8iIdxp5COuzglb/pjXX9GEHQyaVDeFleVafDwyI/hXR4hNc9XqTD4FNLh/DKw2sW+DEC+XQ4tmrpEF6WV93pcFhkN7bD3E19412J6trD6zd7d6OcKAyFYRgQCD+69f6vdrXpdgTCysGjJCfvewOd6fh09CuJK7xsT4fjNcFegXX8dAgvHV6Fs/UBPYLigLVjOoTXCi/b02Ey28Yd1jkSWPK/TC28VngxHUrTh9XEBWvHRczwWuFlfDqM+W7eO6wuQlg73vvDS5/X2dizPR/sEjUs+XR4gleYF9PhkzKEtWM6hFeYF9Php3J9KrB8nWQ6hJc+r97WlxE8lDesHdMhvPR5NQkcC7zKAtYuJyW89Hl1CTwWtXk6BNYr7/3hFebFdOjThVWlDWvHdAivIC+mQ71c+aerToWVRNMhvIK8mA6VYI2GYO147w+vIC+mQ42ncAuLiaZDeAV5mZ8O3XWRvcfbfzt+OoTX42+F6RBYGu/94RXkxXQILJXpEF4hXkyHwFKZDuEV4sV0mN5JR4X0b1OBlz6v3taNYomcdFRI/cXUwivEi+kw8XMjb0ku5QKvFV7GL2MrgfWBayIdvPR5VZamQwesV6ZDeAV4MR3aeLz9oWOmwzO81HkVl8SnQ2Cp/V8TXgFe2U6HwFKeDuEV4JXhdGjmQNYbk1Nx8ArwymA67B9hWTqQ9c7q4avpL/A6lteQyHRo7KSjKDmssS+v4k7wWvLKYDqsrB7I0q4ezh7Wrjp4LXllMB3SRlju+kojvJa8MpgOSRlWuBZeS145TIckhyXPwWvJK4fpkMKwlIOXPq9TAtMhBWDpN8BrwSuH6ZACsPTr4LXgxXRovTusVg5L3ggvfV4t02Gs3WB1HtZHauEl46V/3wmFSxuWz8FrwYvp0FZ3WI0AlmY1vOa8mA7NdPKwjmuA15wX06GBDofl6+A158V0mHSRwPKN8JrzYjpMtLqKCJavhZc+r5Hp8En2YfkcvOa8mA4TKlpYP9XwEvDS3zaagkzC8g3wUudVMB1OyhKWr4OXPq+S6VCQDFafCCzfCC99Xg3TYfawfC28ZryYDqPqG9blmmgOXjNeTIeRVA9fCcP6qYbXlBfT4eHdYI3Jw/JV8JryYjrUTn5jp506eE15MR0KSups/hGN8JryYjp8FrC218JryovpcD1gSXPwmvJiOgwFrJ3V8Jrx4kTlY8B6qQpe6rwKwcunLzIpN1i+Dl4TXkyHvhQvFoywBl76vJpUfj3zgKVcC68JL6bDdC8WjCxXtiOfvaa8mA4Tvlgwlr5hDTXXiC54MR0auaZJmD4svrpcwEuWk/xIAwFrCgtewcqC6RBYO2Cd/8GC1395MR1urQbWDVbzCwteG3gxHdq6TUaeHBa8NvNiOgTWX/buZqd1KAYCsBtS0qRJ8fs/7QW1KL1qCDk/wmOfmR0LhIT6dTGyffazvJ8v37DIK5EXq0PCOgKLvLJ4sTokrNcMT7DIy57XGKE6JCzVYVxhkRcKL+fVodfDglCwyOuVV+vVoe/DglCwyOuVV7vVYYjDghVgdQ9Y5IXLy1V1SFj/wyIvdF4p1eEiqeFhwZqwTrdL9/QhJS8HvNCrw36aCWsTFnk54IVbHbZ59OIF1rWbZDPk5YDXBbA6JKx1b+TnkJcDXljVIWEdh0VeDnihVIeElQqLvBzwsq8OCSsPFnl54JVSHRLWmqorxAAPZJDXMy/f1SEPC943HSFgkdcrL5NuY+ZhwYCwyOuFl81fvhJWhU1HNFh/w+smKQnDK6k65MXOgLBKeDl5ntuOlyx6OAPvn2VkAIf1R7z0Q44nDq+U6pCw0mCNHmDl8nLkK5kXcHVIWL5glfOqX43F4ZU0FsWjF/FglfICnFoF4jWlVIeEFQ/WH/IaJjmWOLySqkPC+glW5xZWLi9HvpJ5AVSHhPXYdAQ8oYXKS4dj/6xAvEY9HsKKByuT16JZWXo5kEC8UqrDjocFv1eIgyWZ10mfg33t2ZLXrIybvZE11rxGzcwovycQr0mZlmFl8jqrH1+WvHplWoaVyetD/fiy5CWNX+ZsHVYmr17XoI/3mvIalcFcId6LMa+yb+Wr7CcSr7MyyJuO2zHndV5/QB/vTefF6pCwbHl9qBtfprzetO2gbzpux5zX02+gj/dm8GJ1SFimvOTqxlcyL1aHhGXNq1/0EfTxXlte79pQfO+NrLHnJbM68WXL66pNhLAq81q/l8HH55N5sTokLHte/UkfwR6fz+PFboOwTHmtpTP2+Dx53cMV4sOB4PV4Hw59/NCWl8R6XTXapuNmQHjJ2YOvTF4ciyIsY15y042AvBoHwst/dRhzhXgvKLzuvrDH59N5sTpscm9kDQyv7Y0LqEeFM3ix2yAsDF5fvrDHe415ifoKYX0Gh1d/AveVw6vJ6pCwvgPE68sX9HhvHq+mqsMWV4h3A8RL+gHaVxavVqrD1jcdfwgSL3kbkMd7c3g1UB0S1k6geMmkwL5yeMWuDrmQ9UvAeElX6quXNcF4CdBha8I6FjBe0ins+Lw5L4jq0McrxDFTzktm2PF5c15Z1SH3RuKkiBf6+Lw5r8PVIWHFTA1ecgP1Zc5r1l9DWJFTxAt9fN6cV697IazwqcNL3iHH58157VWHXCFuIEW80Mfn7XmddDPcdGwktXgJ4nivPa+1OiSsFlONV1/qa5bPROO1VodcIW4x1XhJv8CN99rzuleH3BtpNSW8Ko/36iQSjVdPWE2nhBf8eK89LxkIq+XU5CUdmC8AXifCajklvODHewF4nblC3HLq8pIOarwXgNeVm44tpzIvuSD5AuA1E9Y/du7ttmEghoKoYMuPWHaQ/qtNDcRdeIfamR7O3yVXbjSv7QDNewG8di8dVy7iRZ/PA3htD2EtXMxrvK/fU/H68YR44XJe4+e9x5l43bwbWbhhvIjfsQm8nsJauGG8iN+xCbzewlq4iBd9Pk/gtXvpuHDDeBG/YxN42coN40X8ji0vK9WGF2I+Ly8r1YdXPp+/ysuaF/Giz+flZaU68Zr/HVteVqoVr+nfseVlpXrx2m6pL3lZ5yJe9Pm8vKxUN175d2x5Wd8iXvT5vLysVD9e+XdseVnXIl70+by8rFRDXrmvi7ysZ1/glX/HvsjLWpbwws975WWlevIa4Ete1rCI1xfn87u8rF8RL/p8Xl5Wqi2v/Du2vKxdw3gRv2PLy2r15ZXPe+VlzSrzmujrLi/rVcLr6/Pem7ysVQGvCb6e8rJOJbzw8155WanmvAb4kpf1aRgv4ndseVmp9rzy+fxLXtalhBd+3isvq9Wf13aJfcnLelTmBfD12eVlLZrBK/+OvcvLOhTxos/n5WW1zsEr/44tL2tQxIs+n5eX1ToLr/g79l1ehi/iRZ/Py8tqnYdX/h1bXgYv4YWf98rLSp2JV+7rLS9Dl/CaP++9yMvIJbzmz3v/XvIycGVeLF+Pl7yMW8KLMO99vORl2Oq8YL4+u7yM2nRe+bxXXkZtPq/tSH3Jy6ABeOXzXnkZMwKv3Je8DBmCVz7vlZcRY/CKfR3yMmAQXvm8V17GC8JrgC95GS4Kr23/pPNeeRktDK8B83l5GSwOrwHzXnkZKxCvAfNeeRkqEq/c11VeRgrFa3vH83l5GSgWr3w+Ly8DBeOVf8eWl3Gi8crnvfIyTDheuS95/bNzJzkNBFEQRBMwk4Vx3f+0rD211KpGjv873h1il0pR8PKan8+blyCAeU2/Y3+ZlxiIec3Pe81LCMS8NujLvESAzGuDea95CYCZV47TfZmXng+a1wbzefPS01Hz2mA+b15aazd5zfd1MC+ttJ+8cp6ez5uXVtpPXvPzefPSSjvKa3p+eDIvrbOnvKb7Mi+ts6u88jEWmJfg4HktzufNS3D0vJbmh+YlOHpeS32Zl+DweS28Y5uX4Ph5PZ7Pm5fgCuT1cN5rXoKrkNej7aB5Ca5EXg/6Mi/B1cjrfl/mJbgied2d95qX4Krkde8d27wEVyavO/Ne8xJcnbxu+zIvwRXK62bea16Cq5TXdV/mJbhSeV3Ne81LcKXyuurLvARXK6/Lea95Ca5YXhfv2OYluGp5/ed8/vQmbepYLa+8DqmpPJ99qasAnIfUUgi+htRREH6H1FAY7EsdBeJjSO2E4ntI3YTi8DKkZoJhX2onHIfTkFoJyNvnkDoJyXFInQTF+aFaCYt9qZPA2JcaCY3zXvURnPchNREe573qIkD2pSZC5LxXPQTJvtRCkJz3qoUw2Zc6CNTBea/qC5XzedUXLOfzKi9czg9VXcDsS8WF7GdIlQXN+bxKC5vzQ1UWOPtSYaHzHVt1Bc95r8oKn/NDVRW+v3bu4ASAIASC4Ly9z+Uf7cbRUJWDKDIq3kvVAnzHJmoF4r00LeHUF0VrOPMhQYuw3yBoGd8PMes4DYyYlWhgtKzEfSUtK1FetDxxIzS2ZHFcBQAAAABJRU5ErkJggg=="},Wpem:function(e,t,i){e.exports=i.p+"static/img/b_yunying_4.e91f278.png"},"ca0+":function(e,t){},fzQ2:function(e,t){e.exports="data:image/png;base64,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"},kcbN:function(e,t,i){"use strict";function a(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function r(e){return e instanceof a(e).Element||e instanceof Element}function n(e){return e instanceof a(e).HTMLElement||e instanceof HTMLElement}function s(e){return"undefined"!=typeof ShadowRoot&&(e instanceof a(e).ShadowRoot||e instanceof ShadowRoot)}i.d(t,"a",function(){return P}),i.d(t,"b",function(){return Y});var o=Math.round;function l(){var e=navigator.userAgentData;return null!=e&&e.brands?e.brands.map(function(e){return e.brand+"/"+e.version}).join(" "):navigator.userAgent}function c(e,t,i){void 0===t&&(t=!1),void 0===i&&(i=!1);var s=e.getBoundingClientRect(),c=1,v=1;t&&n(e)&&(c=e.offsetWidth>0&&o(s.width)/e.offsetWidth||1,v=e.offsetHeight>0&&o(s.height)/e.offsetHeight||1);var f=(r(e)?a(e):window).visualViewport,p=!!/^((?!chrome|android).)*safari/i.test(l())&&i,u=(s.left+(p&&f?f.offsetLeft:0))/c,d=(s.top+(p&&f?f.offsetTop:0))/v,h=s.width/c,A=s.height/v;return{width:h,height:A,top:d,right:u+h,bottom:d+A,left:u,x:u,y:d}}function v(e){var t=a(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function f(e){return e?(e.nodeName||"").toLowerCase():null}function p(e){return((r(e)?e.ownerDocument:e.document)||window.document).documentElement}function u(e){return a(e).getComputedStyle(e)}function d(e){var t=u(e),i=t.overflow,a=t.overflowX,r=t.overflowY;return/auto|scroll|overlay|hidden/.test(i+r+a)}function h(e,t,i){void 0===i&&(i=!1);var r,s,l=n(t),u=n(t)&&function(e){var t=e.getBoundingClientRect(),i=o(t.width)/e.offsetWidth||1,a=o(t.height)/e.offsetHeight||1;return 1!==i||1!==a}(t),h=p(t),A=c(e,u,i),m={scrollLeft:0,scrollTop:0},g={x:0,y:0};return(l||!l&&!i)&&(("body"!==f(t)||d(h))&&(m=(r=t)!==a(r)&&n(r)?{scrollLeft:(s=r).scrollLeft,scrollTop:s.scrollTop}:v(r)),n(t)?((g=c(t,!0)).x+=t.clientLeft,g.y+=t.clientTop):h&&(g.x=function(e){return c(p(e)).left+v(e).scrollLeft}(h))),{x:A.left+m.scrollLeft-g.x,y:A.top+m.scrollTop-g.y,width:A.width,height:A.height}}function A(e){return"html"===f(e)?e:e.assignedSlot||e.parentNode||(s(e)?e.host:null)||p(e)}function m(e,t){var i;void 0===t&&(t=[]);var r=function e(t){return["html","body","#document"].indexOf(f(t))>=0?t.ownerDocument.body:n(t)&&d(t)?t:e(A(t))}(e),s=r===(null==(i=e.ownerDocument)?void 0:i.body),o=a(r),l=s?[o].concat(o.visualViewport||[],d(r)?r:[]):r,c=t.concat(l);return s?c:c.concat(m(A(l)))}function g(e){return["table","td","th"].indexOf(f(e))>=0}function C(e){return n(e)&&"fixed"!==u(e).position?e.offsetParent:null}function V(e){for(var t=a(e),i=C(e);i&&g(i)&&"static"===u(i).position;)i=C(i);return i&&("html"===f(i)||"body"===f(i)&&"static"===u(i).position)?t:i||function(e){var t=/firefox/i.test(l());if(/Trident/i.test(l())&&n(e)&&"fixed"===u(e).position)return null;var i=A(e);for(s(i)&&(i=i.host);n(i)&&["html","body"].indexOf(f(i))<0;){var a=u(i);if("none"!==a.transform||"none"!==a.perspective||"paint"===a.contain||-1!==["transform","perspective"].indexOf(a.willChange)||t&&"filter"===a.willChange||t&&a.filter&&"none"!==a.filter)return i;i=i.parentNode}return null}(e)||t}var K="top",y="bottom",X="right",S="left",w="auto",b="start",F="end",I=[].concat([K,y,X,S],[w]).reduce(function(e,t){return e.concat([t,t+"-"+b,t+"-"+F])},[]),E=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function L(e){var t=new Map,i=new Set,a=[];return e.forEach(function(e){t.set(e.name,e)}),e.forEach(function(e){i.has(e.name)||function e(r){i.add(r.name),[].concat(r.requires||[],r.requiresIfExists||[]).forEach(function(a){if(!i.has(a)){var r=t.get(a);r&&e(r)}}),a.push(r)}(e)}),a}function x(e){for(var t=arguments.length,i=new Array(t>1?t-1:0),a=1;a<t;a++)i[a-1]=arguments[a];return[].concat(i).reduce(function(e,t){return e.replace(/%s/,t)},e)}var W='Popper: modifier "%s" provided an invalid %s property, expected %s but got %s',O='Popper: modifier "%s" requires "%s", but "%s" modifier is not available',q=["name","enabled","phase","fn","effect","requires","options"];function B(e){return e.split("-")[0]}function U(e){return e.split("-")[1]}var k="Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.",R="Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.",Q={placement:"bottom",modifiers:[],strategy:"absolute"};function H(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];return!t.some(function(e){return!(e&&"function"==typeof e.getBoundingClientRect)})}var J={passive:!0};var M={top:"auto",right:"auto",bottom:"auto",left:"auto"};function j(e){var t,i=e.popper,r=e.popperRect,n=e.placement,s=e.variation,l=e.offsets,c=e.position,v=e.gpuAcceleration,f=e.adaptive,d=e.roundOffsets,h=e.isFixed,A=l.x,m=void 0===A?0:A,g=l.y,C=void 0===g?0:g,w="function"==typeof d?d({x:m,y:C}):{x:m,y:C};m=w.x,C=w.y;var b=l.hasOwnProperty("x"),I=l.hasOwnProperty("y"),E=S,L=K,x=window;if(f){var W=V(i),O="clientHeight",q="clientWidth";if(W===a(i)&&"static"!==u(W=p(i)).position&&"absolute"===c&&(O="scrollHeight",q="scrollWidth"),W=W,n===K||(n===S||n===X)&&s===F)L=y,C-=(h&&W===x&&x.visualViewport?x.visualViewport.height:W[O])-r.height,C*=v?1:-1;if(n===S||(n===K||n===y)&&s===F)E=X,m-=(h&&W===x&&x.visualViewport?x.visualViewport.width:W[q])-r.width,m*=v?1:-1}var B,U=Object.assign({position:c},f&&M),k=!0===d?function(e){var t=e.x,i=e.y,a=window.devicePixelRatio||1;return{x:o(t*a)/a||0,y:o(i*a)/a||0}}({x:m,y:C}):{x:m,y:C};return m=k.x,C=k.y,v?Object.assign({},U,((B={})[L]=I?"0":"",B[E]=b?"0":"",B.transform=(x.devicePixelRatio||1)<=1?"translate("+m+"px, "+C+"px)":"translate3d("+m+"px, "+C+"px, 0)",B)):Object.assign({},U,((t={})[L]=I?C+"px":"",t[E]=b?m+"px":"",t.transform="",t))}var P=function(e){void 0===e&&(e={});var t=e,i=t.defaultModifiers,a=void 0===i?[]:i,n=t.defaultOptions,s=void 0===n?Q:n;return function(e,t,i){void 0===i&&(i=s);var n,o,l={placement:"bottom",orderedModifiers:[],options:Object.assign({},Q,s),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},v=[],f=!1,p={state:l,setOptions:function(i){var n="function"==typeof i?i(l.options):i;d(),l.options=Object.assign({},s,l.options,n),l.scrollParents={reference:r(e)?m(e):e.contextElement?m(e.contextElement):[],popper:m(t)};var o=function(e){var t=L(e);return E.reduce(function(e,i){return e.concat(t.filter(function(e){return e.phase===i}))},[])}(function(e){var t=e.reduce(function(e,t){var i=e[t.name];return e[t.name]=i?Object.assign({},i,t,{options:Object.assign({},i.options,t.options),data:Object.assign({},i.data,t.data)}):t,e},{});return Object.keys(t).map(function(e){return t[e]})}([].concat(a,l.options.modifiers)));l.orderedModifiers=o.filter(function(e){return e.enabled}),function(e){e.forEach(function(t){[].concat(Object.keys(t),q).filter(function(e,t,i){return i.indexOf(e)===t}).forEach(function(i){switch(i){case"name":"string"!=typeof t.name&&console.error(x(W,String(t.name),'"name"','"string"','"'+String(t.name)+'"'));break;case"enabled":"boolean"!=typeof t.enabled&&console.error(x(W,t.name,'"enabled"','"boolean"','"'+String(t.enabled)+'"'));break;case"phase":E.indexOf(t.phase)<0&&console.error(x(W,t.name,'"phase"',"either "+E.join(", "),'"'+String(t.phase)+'"'));break;case"fn":"function"!=typeof t.fn&&console.error(x(W,t.name,'"fn"','"function"','"'+String(t.fn)+'"'));break;case"effect":null!=t.effect&&"function"!=typeof t.effect&&console.error(x(W,t.name,'"effect"','"function"','"'+String(t.fn)+'"'));break;case"requires":null==t.requires||Array.isArray(t.requires)||console.error(x(W,t.name,'"requires"','"array"','"'+String(t.requires)+'"'));break;case"requiresIfExists":Array.isArray(t.requiresIfExists)||console.error(x(W,t.name,'"requiresIfExists"','"array"','"'+String(t.requiresIfExists)+'"'));break;case"options":case"data":break;default:console.error('PopperJS: an invalid property has been provided to the "'+t.name+'" modifier, valid properties are '+q.map(function(e){return'"'+e+'"'}).join(", ")+'; but "'+i+'" was provided.')}t.requires&&t.requires.forEach(function(i){null==e.find(function(e){return e.name===i})&&console.error(x(O,String(t.name),i,i))})})})}((c=[].concat(o,l.options.modifiers),f=function(e){return e.name},h=new Set,c.filter(function(e){var t=f(e);if(!h.has(t))return h.add(t),!0}))),B(l.options.placement)===w&&(l.orderedModifiers.find(function(e){return"flip"===e.name})||console.error(['Popper: "auto" placements require the "flip" modifier be',"present and enabled to work."].join(" ")));var c,f,h,A=u(t);return[A.marginTop,A.marginRight,A.marginBottom,A.marginLeft].some(function(e){return parseFloat(e)})&&console.warn(['Popper: CSS "margin" styles cannot be used to apply padding',"between the popper and its reference element or boundary.","To replicate margin, use the `offset` modifier, as well as","the `padding` option in the `preventOverflow` and `flip`","modifiers."].join(" ")),l.orderedModifiers.forEach(function(e){var t=e.name,i=e.options,a=void 0===i?{}:i,r=e.effect;if("function"==typeof r){var n=r({state:l,name:t,instance:p,options:a});v.push(n||function(){})}}),p.update()},forceUpdate:function(){if(!f){var e=l.elements,t=e.reference,i=e.popper;if(H(t,i)){var a,r,n,s;l.rects={reference:h(t,V(i),"fixed"===l.options.strategy),popper:(a=i,r=c(a),n=a.offsetWidth,s=a.offsetHeight,Math.abs(r.width-n)<=1&&(n=r.width),Math.abs(r.height-s)<=1&&(s=r.height),{x:a.offsetLeft,y:a.offsetTop,width:n,height:s})},l.reset=!1,l.placement=l.options.placement,l.orderedModifiers.forEach(function(e){return l.modifiersData[e.name]=Object.assign({},e.data)});for(var o=0,v=0;v<l.orderedModifiers.length;v++){if((o+=1)>100){console.error(R);break}if(!0!==l.reset){var u=l.orderedModifiers[v],d=u.fn,A=u.options,m=void 0===A?{}:A,g=u.name;"function"==typeof d&&(l=d({state:l,options:m,name:g,instance:p})||l)}else l.reset=!1,v=-1}}else console.error(k)}},update:(n=function(){return new Promise(function(e){p.forceUpdate(),e(l)})},function(){return o||(o=new Promise(function(e){Promise.resolve().then(function(){o=void 0,e(n())})})),o}),destroy:function(){d(),f=!0}};if(!H(e,t))return console.error(k),p;function d(){v.forEach(function(e){return e()}),v=[]}return p.setOptions(i).then(function(e){!f&&i.onFirstUpdate&&i.onFirstUpdate(e)}),p}}({defaultModifiers:[{name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,i=e.instance,r=e.options,n=r.scroll,s=void 0===n||n,o=r.resize,l=void 0===o||o,c=a(t.elements.popper),v=[].concat(t.scrollParents.reference,t.scrollParents.popper);return s&&v.forEach(function(e){e.addEventListener("scroll",i.update,J)}),l&&c.addEventListener("resize",i.update,J),function(){s&&v.forEach(function(e){e.removeEventListener("scroll",i.update,J)}),l&&c.removeEventListener("resize",i.update,J)}},data:{}},{name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,i=e.name;t.modifiersData[i]=function(e){var t,i=e.reference,a=e.element,r=e.placement,n=r?B(r):null,s=r?U(r):null,o=i.x+i.width/2-a.width/2,l=i.y+i.height/2-a.height/2;switch(n){case K:t={x:o,y:i.y-a.height};break;case y:t={x:o,y:i.y+i.height};break;case X:t={x:i.x+i.width,y:l};break;case S:t={x:i.x-a.width,y:l};break;default:t={x:i.x,y:i.y}}var c=n?function(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}(n):null;if(null!=c){var v="y"===c?"height":"width";switch(s){case b:t[c]=t[c]-(i[v]/2-a[v]/2);break;case F:t[c]=t[c]+(i[v]/2-a[v]/2)}}return t}({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}},{name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,i=e.options,a=i.gpuAcceleration,r=void 0===a||a,n=i.adaptive,s=void 0===n||n,o=i.roundOffsets,l=void 0===o||o,c=u(t.elements.popper).transitionProperty||"";s&&["transform","top","right","bottom","left"].some(function(e){return c.indexOf(e)>=0})&&console.warn(["Popper: Detected CSS transitions on at least one of the following",'CSS properties: "transform", "top", "right", "bottom", "left".',"\n\n",'Disable the "computeStyles" modifier\'s `adaptive` option to allow',"for smooth transitions, or remove these properties from the CSS","transition declaration on the popper element if only transitioning","opacity or background-color for example.","\n\n","We recommend using the popper element as a wrapper around an inner","element that can have any CSS property transitioned for animations."].join(" "));var v={placement:B(t.placement),variation:U(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:r,isFixed:"fixed"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,j(Object.assign({},v,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:s,roundOffsets:l})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,j(Object.assign({},v,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}},{name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach(function(e){var i=t.styles[e]||{},a=t.attributes[e]||{},r=t.elements[e];n(r)&&f(r)&&(Object.assign(r.style,i),Object.keys(a).forEach(function(e){var t=a[e];!1===t?r.removeAttribute(e):r.setAttribute(e,!0===t?"":t)}))})},effect:function(e){var t=e.state,i={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,i.popper),t.styles=i,t.elements.arrow&&Object.assign(t.elements.arrow.style,i.arrow),function(){Object.keys(t.elements).forEach(function(e){var a=t.elements[e],r=t.attributes[e]||{},s=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:i[e]).reduce(function(e,t){return e[t]="",e},{});n(a)&&f(a)&&(Object.assign(a.style,s),Object.keys(r).forEach(function(e){a.removeAttribute(e)}))})}},requires:["computeStyles"]}]});var Y={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,i=e.options,a=e.name,r=i.offset,n=void 0===r?[0,0]:r,s=I.reduce(function(e,i){return e[i]=function(e,t,i){var a=B(e),r=[S,K].indexOf(a)>=0?-1:1,n="function"==typeof i?i(Object.assign({},t,{placement:e})):i,s=n[0],o=n[1];return s=s||0,o=(o||0)*r,[S,X].indexOf(a)>=0?{x:o,y:s}:{x:s,y:o}}(i,t.rects,n),e},{}),o=s[t.placement],l=o.x,c=o.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=c),t.modifiersData[a]=s}}},sbdH:function(e,t){},vryz:function(e,t){}},["NHnr"]);
\ No newline at end of file
diff --git a/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js b/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js
new file mode 100644
index 0000000..2bd614a
--- /dev/null
+++ b/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js
@@ -0,0 +1 @@
+!function(r){var n=window.webpackJsonp;window.webpackJsonp=function(e,u,c){for(var f,i,p,a=0,l=[];a<e.length;a++)i=e[a],o[i]&&l.push(o[i][0]),o[i]=0;for(f in u)Object.prototype.hasOwnProperty.call(u,f)&&(r[f]=u[f]);for(n&&n(e,u,c);l.length;)l.shift()();if(c)for(a=0;a<c.length;a++)p=t(t.s=c[a]);return p};var e={},o={2:0};function t(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return r[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=r,t.c=e,t.d=function(r,n,e){t.o(r,n)||Object.defineProperty(r,n,{configurable:!1,enumerable:!0,get:e})},t.n=function(r){var n=r&&r.__esModule?function(){return r.default}:function(){return r};return t.d(n,"a",n),n},t.o=function(r,n){return Object.prototype.hasOwnProperty.call(r,n)},t.p="/",t.oe=function(r){throw console.error(r),r}}([]);
\ No newline at end of file
diff --git a/dist/static/js/vendor.d749db12afddd9bb27c2.js b/dist/static/js/vendor.d749db12afddd9bb27c2.js
new file mode 100644
index 0000000..d8b61cb
--- /dev/null
+++ b/dist/static/js/vendor.d749db12afddd9bb27c2.js
@@ -0,0 +1,26 @@
+webpackJsonp([0],{"+/Yu":function(t,e,n){var i=n("loyO");!function(){for(var t in i){if(null==i||!i.hasOwnProperty(t)||"default"===t||"__esModule"===t)return;e[t]=i[t]}}();var r=n("O43R");!function(){for(var t in r){if(null==r||!r.hasOwnProperty(t)||"default"===t||"__esModule"===t)return;e[t]=r[t]}}(),n("GFYc"),n("e+8j"),n("+Kzi"),n("sCIe"),n("+pQu"),n("hY0+"),n("7+5S"),n("FDjS"),n("gNSS"),n("W9IS"),n("pZT+"),n("nWyq"),n("guZg"),n("Fl1y"),n("T1f2"),n("rOmA"),n("RaHm"),n("PY5U"),n("Tvnq"),n("oB6+"),n("vkoF"),n("rUcm"),n("GIjb"),n("sYDp"),n("w/pT"),n("kRIu"),n("1Zri"),n("twi+"),n("x0Wq"),n("Hn3i"),n("usjI"),n("x/Rj"),n("mWN1"),n("Ueez"),n("/7qi"),n("9mzP"),n("7Qhn"),n("DW0o"),n("WmT+"),n("2hvz"),n("yMsf"),n("pcS8"),n("YoHB"),n("zNm4"),n("aGqJ"),n("t57F"),n("gydn"),n("c51n"),n("R6u5")},"+1Bp":function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=i.createHashMap,o=i.isString,a=i.isArray,s=i.each,A=(i.assert,n("4y0g").parseXML),l=r(),c={registerMap:function(t,e,n){var i;return a(e)?i=e:e.svg?i=[{type:"svg",source:e.svg,specialAreas:e.specialAreas}]:(e.geoJson&&!e.features&&(n=e.specialAreas,e=e.geoJson),i=[{type:"geoJSON",source:e,specialAreas:n}]),s(i,function(t){var e=t.type;"geoJson"===e&&(e=t.type="geoJSON"),(0,u[e])(t)}),l.set(t,i)},retrieveMap:function(t){return l.get(t)}},u={geoJSON:function(t){var e=t.source;t.geoJSON=o(e)?"undefined"!=typeof JSON&&JSON.parse?JSON.parse(e):new Function("return ("+e+");")():e},svg:function(t){t.svgXML=A(t.source)}};t.exports=c},"+2Hi":function(t,e,n){var i=n("bDs9"),r=n("w9uD").round;function o(t,e,n){var r=t.getArea(),o=t.getBaseAxis().isHorizontal(),a=r.x,s=r.y,A=r.width,l=r.height,c=n.get("lineStyle.width")||2;a-=c/2,s-=c/2,A+=c,l+=c,a=Math.floor(a),A=Math.round(A);var u=new i.Rect({shape:{x:a,y:s,width:A,height:l}});return e&&(u.shape[o?"width":"height"]=0,i.initProps(u,{shape:{width:A,height:l}},n)),u}function a(t,e,n){var o=t.getArea(),a=new i.Sector({shape:{cx:r(t.cx,1),cy:r(t.cy,1),r0:r(o.r0,1),r:r(o.r,1),startAngle:o.startAngle,endAngle:o.endAngle,clockwise:o.clockwise}});return e&&(a.shape.endAngle=o.startAngle,i.initProps(a,{shape:{endAngle:o.endAngle}},n)),a}e.createGridClipPath=o,e.createPolarClipPath=a,e.createClipPath=function(t,e,n){return t?"polar"===t.type?a(t,e,n):"cartesian2d"===t.type?o(t,e,n):null:null}},"+GyD":function(t,e,n){var i=n("t+aF"),r=n("9nPt").extend({type:"series.gauge",getInitialData:function(t,e){return i(this,["value"])},defaultOption:{zlevel:0,z:2,center:["50%","50%"],legendHoverLink:!0,radius:"75%",startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,lineStyle:{color:[[.2,"#91c7ae"],[.8,"#63869e"],[1,"#c23531"]],width:30}},splitLine:{show:!0,length:30,lineStyle:{color:"#eee",width:2,type:"solid"}},axisTick:{show:!0,splitNumber:5,length:8,lineStyle:{color:"#eee",width:1,type:"solid"}},axisLabel:{show:!0,distance:5,color:"auto"},pointer:{show:!0,length:"80%",width:8},itemStyle:{color:"auto"},title:{show:!0,offsetCenter:[0,"-40%"],color:"#333",fontSize:15},detail:{show:!0,backgroundColor:"rgba(0,0,0,0)",borderWidth:0,borderColor:"#ccc",width:100,height:null,padding:[5,10],offsetCenter:[0,"40%"],color:"auto",fontSize:30}}});t.exports=r},"+Kzi":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("H164"),a=o.layout,s=o.largeLayout;n("ySr6"),n("6n33"),n("bZnl"),n("7KEw"),i.registerLayout(i.PRIORITY.VISUAL.LAYOUT,r.curry(a,"bar")),i.registerLayout(i.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,s),i.registerVisual({seriesType:"bar",reset:function(t){t.getData().setVisual("legendSymbol","roundRect")}})},"+Pa4":function(t,e){function n(t){return t}function i(t,e,i,r,o){this._old=t,this._new=e,this._oldKeyGetter=i||n,this._newKeyGetter=r||n,this.context=o}function r(t,e,n,i,r){for(var o=0;o<t.length;o++){var a="_ec_"+r[i](t[o],o),s=e[a];null==s?(n.push(a),e[a]=o):(s.length||(e[a]=s=[s]),s.push(o))}}i.prototype={constructor:i,add:function(t){return this._add=t,this},update:function(t){return this._update=t,this},remove:function(t){return this._remove=t,this},execute:function(){var t=this._old,e=this._new,n={},i=[],o=[];for(r(t,{},i,"_oldKeyGetter",this),r(e,n,o,"_newKeyGetter",this),a=0;a<t.length;a++){if(null!=(A=n[s=i[a]]))(c=A.length)?(1===c&&(n[s]=null),A=A.shift()):n[s]=null,this._update&&this._update(A,a);else this._remove&&this._remove(a)}for(var a=0;a<o.length;a++){var s=o[a];if(n.hasOwnProperty(s)){var A;if(null==(A=n[s]))continue;if(A.length)for(var l=0,c=A.length;l<c;l++)this._add&&this._add(A[l]);else this._add&&this._add(A)}}}};var o=i;t.exports=o},"+UHi":function(t,e,n){var i=n("A5tq"),r=n("65+t").makeInner,o=n("3Voe"),a=n("qzhX"),s=i.each,A=i.curry,l=r();function c(t,e,n,r,o){var a=t.axis;if(!a.scale.isBlank()&&a.containData(e))if(t.involveSeries){var A=function(t,e){var n=e.axis,i=n.dim,r=t,o=[],a=Number.MAX_VALUE,A=-1;return s(e.seriesModels,function(e,l){var c,u,h=e.getData().mapDimension(i,!0);if(e.getAxisTooltipData){var d=e.getAxisTooltipData(h,t,n);u=d.dataIndices,c=d.nestestValue}else{if(!(u=e.getData().indicesOfNearest(h[0],t,"category"===n.type?.5:null)).length)return;c=e.getData().get(h[0],u[0])}if(null!=c&&isFinite(c)){var f=t-c,p=Math.abs(f);p<=a&&((p<a||f>=0&&A<0)&&(a=p,A=f,r=c,o.length=0),s(u,function(t){o.push({seriesIndex:e.seriesIndex,dataIndexInside:t,dataIndex:e.getData().getRawIndex(t)})}))}}),{payloadBatch:o,snapToValue:r}}(e,t),l=A.payloadBatch,c=A.snapToValue;l[0]&&null==o.seriesIndex&&i.extend(o,l[0]),!r&&t.snap&&a.containData(c)&&null!=c&&(e=c),n.showPointer(t,e,l,o),n.showTooltip(t,A,c)}else n.showPointer(t,e)}function u(t,e,n,i){t[e.key]={value:n,payloadBatch:i}}function h(t,e,n,i){var r=n.payloadBatch,a=e.axis,s=a.model,A=e.axisPointerModel;if(e.triggerTooltip&&r.length){var l=e.coordSys.model,c=o.makeKey(l),u=t.map[c];u||(u=t.map[c]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},t.list.push(u)),u.dataByAxis.push({axisDim:a.dim,axisIndex:s.componentIndex,axisType:s.type,axisId:s.id,value:i,valueLabelOpt:{precision:A.get("label.precision"),formatter:A.get("label.formatter")},seriesDataIndices:r.slice()})}}function d(t){var e=t.axis.model,n={},i=n.axisDim=t.axis.dim;return n.axisIndex=n[i+"AxisIndex"]=e.componentIndex,n.axisName=n[i+"AxisName"]=e.name,n.axisId=n[i+"AxisId"]=e.id,n}function f(t){return!t||null==t[0]||isNaN(t[0])||null==t[1]||isNaN(t[1])}t.exports=function(t,e,n){var r=t.currTrigger,o=[t.x,t.y],p=t,g=t.dispatchAction||i.bind(n.dispatchAction,n),m=e.getComponent("axisPointer").coordSysAxesInfo;if(m){f(o)&&(o=a({seriesIndex:p.seriesIndex,dataIndex:p.dataIndex},e).point);var v=f(o),y=p.axesInfo,w=m.axesInfo,x="leave"===r||f(o),B={},b={},C={list:[],map:{}},_={showPointer:A(u,b),showTooltip:A(h,C)};s(m.coordSysMap,function(t,e){var n=v||t.containPoint(o);s(m.coordSysAxesInfo[e],function(t,e){var i=t.axis,r=function(t,e){for(var n=0;n<(t||[]).length;n++){var i=t[n];if(e.axis.dim===i.axisDim&&e.axis.model.componentIndex===i.axisIndex)return i}}(y,t);if(!x&&n&&(!y||r)){var a=r&&r.value;null!=a||v||(a=i.pointToData(o)),null!=a&&c(t,a,_,!1,B)}})});var S={};return s(w,function(t,e){var n=t.linkGroup;n&&!b[e]&&s(n.axesInfo,function(e,i){var r=b[i];if(e!==t&&r){var o=r.value;n.mapper&&(o=t.axis.scale.parse(n.mapper(o,d(e),d(t)))),S[t.key]=o}})}),s(S,function(t,e){c(w[e],t,_,!0,B)}),function(t,e,n){var i=n.axesInfo=[];s(e,function(e,n){var r=e.axisPointerModel.option,o=t[n];o?(!e.useHandle&&(r.status="show"),r.value=o.value,r.seriesDataIndices=(o.payloadBatch||[]).slice()):!e.useHandle&&(r.status="hide"),"show"===r.status&&i.push({axisDim:e.axis.dim,axisIndex:e.axis.model.componentIndex,value:r.value})})}(b,w,B),function(t,e,n,i){if(!f(e)&&t.list.length){var r=((t.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};i({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:r.dataIndexInside,dataIndex:r.dataIndex,seriesIndex:r.seriesIndex,dataByCoordSys:t.list})}else i({type:"hideTip"})}(C,o,t,g),function(t,e,n){var r=n.getZr(),o=l(r).axisPointerLastHighlights||{},a=l(r).axisPointerLastHighlights={};s(t,function(t,e){var n=t.axisPointerModel.option;"show"===n.status&&s(n.seriesDataIndices,function(t){var e=t.seriesIndex+" | "+t.dataIndex;a[e]=t})});var A=[],c=[];i.each(o,function(t,e){!a[e]&&c.push(t)}),i.each(a,function(t,e){!o[e]&&A.push(t)}),c.length&&n.dispatchAction({type:"downplay",escapeConnect:!0,batch:c}),A.length&&n.dispatchAction({type:"highlight",escapeConnect:!0,batch:A})}(w,0,n),B}}},"+Xj5":function(t,e,n){var i=n("bDs9"),r=.3;function o(t,e,n,i){for(var r,o=[],a=0;a<n.length;a++){var s=n[a],A=t.get(t.mapDimension(s),e);r=A,("category"===i.getAxis(s).type?null==r:null==r||isNaN(r))||o.push(i.dataToPoint(A,s))}return o}function a(t,e,n,r,a){var s=o(t,n,r,a),A=new i.Polyline({shape:{points:s},silent:!0,z2:10});return e.add(A),t.setItemGraphicEl(n,A),A}function s(t){var e=t.get("smooth",!0);return!0===e&&(e=r),{lineStyle:t.getModel("lineStyle").getLineStyle(),smooth:null!=e?e:r}}function A(t,e,n,i){var r=i.lineStyle;e.hasItemOption&&(r=e.getItemModel(n).getModel("lineStyle").getLineStyle());t.useStyle(r);var o=t.style;o.fill=null,o.stroke=e.getItemVisual(n,"color"),o.opacity=e.getItemVisual(n,"opacity"),i.smooth&&(t.shape.smooth=i.smooth)}var l=n("zrBH").extend({type:"parallel",init:function(){this._dataGroup=new i.Group,this.group.add(this._dataGroup),this._data,this._initialized},render:function(t,e,n,r){var l=this._dataGroup,c=t.getData(),u=this._data,h=t.coordinateSystem,d=h.dimensions,f=s(t);if(c.diff(u).add(function(t){A(a(c,l,t,d,h),c,t,f)}).update(function(e,n){var a=u.getItemGraphicEl(n),s=o(c,e,d,h);c.setItemGraphicEl(e,a);var l=r&&!1===r.animation?null:t;i.updateProps(a,{shape:{points:s}},l,e),A(a,c,e,f)}).remove(function(t){var e=u.getItemGraphicEl(t);l.remove(e)}).execute(),!this._initialized){this._initialized=!0;var p=function(t,e,n){var r=t.model,o=t.getRect(),a=new i.Rect({shape:{x:o.x,y:o.y,width:o.width,height:o.height}}),s="horizontal"===r.get("layout")?"width":"height";return a.setShape(s,0),i.initProps(a,{shape:{width:o.width,height:o.height}},e,n),a}(h,t,function(){setTimeout(function(){l.removeClipPath()})});l.setClipPath(p)}this._data=c},incrementalPrepareRender:function(t,e,n){this._initialized=!0,this._data=null,this._dataGroup.removeAll()},incrementalRender:function(t,e,n){for(var i=e.getData(),r=e.coordinateSystem,o=r.dimensions,l=s(e),c=t.start;c<t.end;c++){var u=a(i,this._dataGroup,c,o,r);u.incremental=!0,A(u,i,c,l)}},dispose:function(){},remove:function(){this._dataGroup&&this._dataGroup.removeAll(),this._data=null}});t.exports=l},"+ZRj":function(t,e,n){var i=n("3PS3"),r=n("aI3E"),o=n("ZvM2"),a=n("FPqs"),s=n("DdEt"),A=n("BJyR").normalizeRadian,l=n("R33K"),c=n("NVem"),u=i.CMD,h=2*Math.PI,d=1e-4;var f=[-1,-1,-1],p=[-1,-1];function g(t,e,n,i,r,o,a,s,A,c){if(c>e&&c>i&&c>o&&c>s||c<e&&c<i&&c<o&&c<s)return 0;var u,h=l.cubicRootAt(e,i,o,s,c,f);if(0===h)return 0;for(var d,g,m=0,v=-1,y=0;y<h;y++){var w=f[y],x=0===w||1===w?.5:1;l.cubicAt(t,n,r,a,w)<A||(v<0&&(v=l.cubicExtrema(e,i,o,s,p),p[1]<p[0]&&v>1&&(void 0,u=p[0],p[0]=p[1],p[1]=u),d=l.cubicAt(e,i,o,s,p[0]),v>1&&(g=l.cubicAt(e,i,o,s,p[1]))),2===v?w<p[0]?m+=d<e?x:-x:w<p[1]?m+=g<d?x:-x:m+=s<g?x:-x:w<p[0]?m+=d<e?x:-x:m+=s<d?x:-x)}return m}function m(t,e,n,i,r,o,a,s){if(s>e&&s>i&&s>o||s<e&&s<i&&s<o)return 0;var A=l.quadraticRootAt(e,i,o,s,f);if(0===A)return 0;var c=l.quadraticExtremum(e,i,o);if(c>=0&&c<=1){for(var u=0,h=l.quadraticAt(e,i,o,c),d=0;d<A;d++){var p=0===f[d]||1===f[d]?.5:1;l.quadraticAt(t,n,r,f[d])<a||(f[d]<c?u+=h<e?p:-p:u+=o<h?p:-p)}return u}p=0===f[0]||1===f[0]?.5:1;return l.quadraticAt(t,n,r,f[0])<a?0:o<e?p:-p}function v(t,e,n,i,r,o,a,s){if((s-=e)>n||s<-n)return 0;var l=Math.sqrt(n*n-s*s);f[0]=-l,f[1]=l;var c=Math.abs(i-r);if(c<1e-4)return 0;if(c%h<1e-4){i=0,r=h;var u=o?1:-1;return a>=f[0]+t&&a<=f[1]+t?u:0}if(o){l=i;i=A(r),r=A(l)}else i=A(i),r=A(r);i>r&&(r+=h);for(var d=0,p=0;p<2;p++){var g=f[p];if(g+t>a){var m=Math.atan2(s,g);u=o?1:-1;m<0&&(m=h+m),(m>=i&&m<=r||m+h>=i&&m+h<=r)&&(m>Math.PI/2&&m<1.5*Math.PI&&(u=-u),d+=u)}}return d}function y(t,e,n,i,A){for(var l,h,f=0,p=0,y=0,w=0,x=0,B=0;B<t.length;){var b=t[B++];switch(b===u.M&&B>1&&(n||(f+=c(p,y,w,x,i,A))),1===B&&(w=p=t[B],x=y=t[B+1]),b){case u.M:p=w=t[B++],y=x=t[B++];break;case u.L:if(n){if(r.containStroke(p,y,t[B],t[B+1],e,i,A))return!0}else f+=c(p,y,t[B],t[B+1],i,A)||0;p=t[B++],y=t[B++];break;case u.C:if(n){if(o.containStroke(p,y,t[B++],t[B++],t[B++],t[B++],t[B],t[B+1],e,i,A))return!0}else f+=g(p,y,t[B++],t[B++],t[B++],t[B++],t[B],t[B+1],i,A)||0;p=t[B++],y=t[B++];break;case u.Q:if(n){if(a.containStroke(p,y,t[B++],t[B++],t[B],t[B+1],e,i,A))return!0}else f+=m(p,y,t[B++],t[B++],t[B],t[B+1],i,A)||0;p=t[B++],y=t[B++];break;case u.A:var C=t[B++],_=t[B++],S=t[B++],I=t[B++],T=t[B++],M=t[B++];B+=1;var Q=1-t[B++],F=Math.cos(T)*S+C,k=Math.sin(T)*I+_;B>1?f+=c(p,y,F,k,i,A):(w=F,x=k);var D=(i-C)*I/S+C;if(n){if(s.containStroke(C,_,I,T,T+M,Q,e,D,A))return!0}else f+=v(C,_,I,T,T+M,Q,D,A);p=Math.cos(T+M)*S+C,y=Math.sin(T+M)*I+_;break;case u.R:w=p=t[B++],x=y=t[B++];F=w+t[B++],k=x+t[B++];if(n){if(r.containStroke(w,x,F,x,e,i,A)||r.containStroke(F,x,F,k,e,i,A)||r.containStroke(F,k,w,k,e,i,A)||r.containStroke(w,k,w,x,e,i,A))return!0}else f+=c(F,x,F,k,i,A),f+=c(w,k,w,x,i,A);break;case u.Z:if(n){if(r.containStroke(p,y,w,x,e,i,A))return!0}else f+=c(p,y,w,x,i,A);p=w,y=x}}return n||(l=y,h=x,Math.abs(l-h)<d)||(f+=c(p,y,w,x,i,A)||0),0!==f}e.contain=function(t,e,n){return y(t,0,!1,e,n)},e.containStroke=function(t,e,n,i){return y(t,e,!0,n,i)}},"+auM":function(t,e,n){var i=n("A5tq"),r=i.each,o=i.isArray,a=i.isObject,s=n("Fy03"),A=n("65+t").normalizeToArray;function l(t){r(c,function(e){e[0]in t&&!(e[1]in t)&&(t[e[1]]=t[e[0]])})}var c=[["x","left"],["y","top"],["x2","right"],["y2","bottom"]],u=["grid","geo","parallel","legend","toolbox","title","visualMap","dataZoom","timeline"];t.exports=function(t,e){s(t,e),t.series=A(t.series),r(t.series,function(t){if(a(t)){var e=t.type;if("line"===e)null!=t.clipOverflow&&(t.clip=t.clipOverflow);else if("pie"===e||"gauge"===e)null!=t.clockWise&&(t.clockwise=t.clockWise);else if("gauge"===e){var n=function(t,e){e=e.split(",");for(var n=t,i=0;i<e.length&&null!=(n=n&&n[e[i]]);i++);return n}(t,"pointer.color");null!=n&&function(t,e,n,i){e=e.split(",");for(var r,o=t,a=0;a<e.length-1;a++)null==o[r=e[a]]&&(o[r]={}),o=o[r];(i||null==o[e[a]])&&(o[e[a]]=n)}(t,"itemStyle.color",n)}l(t)}}),t.dataRange&&(t.visualMap=t.dataRange),r(u,function(e){var n=t[e];n&&(o(n)||(n=[n]),r(n,function(t){l(t)}))})}},"+p5o":function(t,e,n){"use strict";(function(t){n.d(e,"a",function(){return Jn});
+/*!
+ * Vue.js v2.7.13
+ * (c) 2014-2022 Evan You
+ * Released under the MIT License.
+ */
+var i=Object.freeze({}),r=Array.isArray;function o(t){return void 0===t||null===t}function a(t){return void 0!==t&&null!==t}function s(t){return!0===t}function A(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function l(t){return"function"==typeof t}function c(t){return null!==t&&"object"==typeof t}var u=Object.prototype.toString;function h(t){return"[object Object]"===u.call(t)}function d(t){return"[object RegExp]"===u.call(t)}function f(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function p(t){return a(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function g(t){return null==t?"":Array.isArray(t)||h(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function m(t){var e=parseFloat(t);return isNaN(e)?t:e}function v(t,e){for(var n=Object.create(null),i=t.split(","),r=0;r<i.length;r++)n[i[r]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}var y=v("slot,component",!0),w=v("key,ref,slot,slot-scope,is");function x(t,e){var n=t.length;if(n){if(e===t[n-1])return void(t.length=n-1);var i=t.indexOf(e);if(i>-1)return t.splice(i,1)}}var B=Object.prototype.hasOwnProperty;function b(t,e){return B.call(t,e)}function C(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var _=/-(\w)/g,S=C(function(t){return t.replace(_,function(t,e){return e?e.toUpperCase():""})}),I=C(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),T=/\B([A-Z])/g,M=C(function(t){return t.replace(T,"-$1").toLowerCase()});var Q=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var i=arguments.length;return i?i>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function F(t,e){e=e||0;for(var n=t.length-e,i=new Array(n);n--;)i[n]=t[n+e];return i}function k(t,e){for(var n in e)t[n]=e[n];return t}function D(t){for(var e={},n=0;n<t.length;n++)t[n]&&k(e,t[n]);return e}function U(t,e,n){}var E=function(t,e,n){return!1},L=function(t){return t};function O(t,e){if(t===e)return!0;var n=c(t),i=c(e);if(!n||!i)return!n&&!i&&String(t)===String(e);try{var r=Array.isArray(t),o=Array.isArray(e);if(r&&o)return t.length===e.length&&t.every(function(t,n){return O(t,e[n])});if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(r||o)return!1;var a=Object.keys(t),s=Object.keys(e);return a.length===s.length&&a.every(function(n){return O(t[n],e[n])})}catch(t){return!1}}function P(t,e){for(var n=0;n<t.length;n++)if(O(t[n],e))return n;return-1}function H(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}function N(t,e){return t===e?0===t&&1/t!=1/e:t==t||e==e}var R="data-server-rendered",V=["component","directive","filter"],z=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],K={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:E,isReservedAttr:E,isUnknownElement:E,getTagNamespace:U,parsePlatformTagName:L,mustUseProp:E,async:!0,_lifecycleHooks:z},G=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function W(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function j(t,e,n,i){Object.defineProperty(t,e,{value:n,enumerable:!!i,writable:!0,configurable:!0})}var $=new RegExp("[^".concat(G.source,".$_\\d]"));var q="__proto__"in{},Y="undefined"!=typeof window,X=Y&&window.navigator.userAgent.toLowerCase(),J=X&&/msie|trident/.test(X),Z=X&&X.indexOf("msie 9.0")>0,tt=X&&X.indexOf("edge/")>0;X&&X.indexOf("android");var et=X&&/iphone|ipad|ipod|ios/.test(X);X&&/chrome\/\d+/.test(X),X&&/phantomjs/.test(X);var nt,it=X&&X.match(/firefox\/(\d+)/),rt={}.watch,ot=!1;if(Y)try{var at={};Object.defineProperty(at,"passive",{get:function(){ot=!0}}),window.addEventListener("test-passive",null,at)}catch(t){}var st=function(){return void 0===nt&&(nt=!Y&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),nt},At=Y&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function lt(t){return"function"==typeof t&&/native code/.test(t.toString())}var ct,ut="undefined"!=typeof Symbol&&lt(Symbol)&&"undefined"!=typeof Reflect&&lt(Reflect.ownKeys);ct="undefined"!=typeof Set&&lt(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ht=null;function dt(t){void 0===t&&(t=null),t||ht&&ht._scope.off(),ht=t,t&&t._scope.on()}var ft=function(){function t(t,e,n,i,r,o,a,s){this.tag=t,this.data=e,this.children=n,this.text=i,this.elm=r,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(t.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),t}(),pt=function(t){void 0===t&&(t="");var e=new ft;return e.text=t,e.isComment=!0,e};function gt(t){return new ft(void 0,void 0,void 0,String(t))}function mt(t){var e=new ft(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var vt=0,yt=[],wt=function(){for(var t=0;t<yt.length;t++){var e=yt[t];e.subs=e.subs.filter(function(t){return t}),e._pending=!1}yt.length=0},xt=function(){function t(){this._pending=!1,this.id=vt++,this.subs=[]}return t.prototype.addSub=function(t){this.subs.push(t)},t.prototype.removeSub=function(t){this.subs[this.subs.indexOf(t)]=null,this._pending||(this._pending=!0,yt.push(this))},t.prototype.depend=function(e){t.target&&t.target.addDep(this)},t.prototype.notify=function(t){var e=this.subs.filter(function(t){return t});for(var n=0,i=e.length;n<i;n++){var r=e[n];0,r.update()}},t}();xt.target=null;var Bt=[];function bt(t){Bt.push(t),xt.target=t}function Ct(){Bt.pop(),xt.target=Bt[Bt.length-1]}var _t=Array.prototype,St=Object.create(_t);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(t){var e=_t[t];j(St,t,function(){for(var n=[],i=0;i<arguments.length;i++)n[i]=arguments[i];var r,o=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":r=n;break;case"splice":r=n.slice(2)}return r&&a.observeArray(r),a.dep.notify(),o})});var It=new WeakMap;function Tt(t){return Mt(t,!0),j(t,"__v_isShallow",!0),t}function Mt(t,e){if(!Qt(t)){Ot(t,e,st());0}}function Qt(t){return!(!t||!t.__v_isReadonly)}var Ft=Object.getOwnPropertyNames(St),kt={},Dt=!0;function Ut(t){Dt=t}var Et={notify:U,depend:U,addSub:U,removeSub:U},Lt=function(){function t(t,e,n){if(void 0===e&&(e=!1),void 0===n&&(n=!1),this.value=t,this.shallow=e,this.mock=n,this.dep=n?Et:new xt,this.vmCount=0,j(t,"__ob__",this),r(t)){if(!n)if(q)t.__proto__=St;else for(var i=0,o=Ft.length;i<o;i++){j(t,s=Ft[i],St[s])}e||this.observeArray(t)}else{var a=Object.keys(t);for(i=0;i<a.length;i++){var s;Pt(t,s=a[i],kt,void 0,e,n)}}}return t.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)Ot(t[e],!1,this.mock)},t}();function Ot(t,e,n){return t&&b(t,"__ob__")&&t.__ob__ instanceof Lt?t.__ob__:!Dt||!n&&st()||!r(t)&&!h(t)||!Object.isExtensible(t)||t.__v_skip||It.has(t)||Rt(t)||t instanceof ft?void 0:new Lt(t,e,n)}function Pt(t,e,n,i,o,a){var s=new xt,A=Object.getOwnPropertyDescriptor(t,e);if(!A||!1!==A.configurable){var l=A&&A.get,c=A&&A.set;l&&!c||n!==kt&&2!==arguments.length||(n=t[e]);var u=!o&&Ot(n,!1,a);return Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=l?l.call(t):n;return xt.target&&(s.depend(),u&&(u.dep.depend(),r(e)&&function t(e){for(var n=void 0,i=0,o=e.length;i<o;i++)(n=e[i])&&n.__ob__&&n.__ob__.dep.depend(),r(n)&&t(n)}(e))),Rt(e)&&!o?e.value:e},set:function(e){var i=l?l.call(t):n;if(N(i,e)){if(c)c.call(t,e);else{if(l)return;if(!o&&Rt(i)&&!Rt(e))return void(i.value=e);n=e}u=!o&&Ot(e,!1,a),s.notify()}}}),s}}function Ht(t,e,n){if(!Qt(t)){var i=t.__ob__;return r(t)&&f(e)?(t.length=Math.max(t.length,e),t.splice(e,1,n),i&&!i.shallow&&i.mock&&Ot(n,!1,!0),n):e in t&&!(e in Object.prototype)?(t[e]=n,n):t._isVue||i&&i.vmCount?n:i?(Pt(i.value,e,n,void 0,i.shallow,i.mock),i.dep.notify(),n):(t[e]=n,n)}}function Nt(t,e){if(r(t)&&f(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||Qt(t)||b(t,e)&&(delete t[e],n&&n.dep.notify())}}function Rt(t){return!(!t||!0!==t.__v_isRef)}function Vt(t,e,n){Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:function(){var t=e[n];if(Rt(t))return t.value;var i=t&&t.__ob__;return i&&i.dep.depend(),t},set:function(t){var i=e[n];Rt(i)&&!Rt(t)?i.value=t:e[n]=t}})}new WeakMap,new WeakMap;var zt=C(function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),i="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=i?t.slice(1):t,once:n,capture:i,passive:e}});function Kt(t,e){function n(){var t=n.fns;if(!r(t))return tn(t,null,arguments,e,"v-on handler");for(var i=t.slice(),o=0;o<i.length;o++)tn(i[o],null,arguments,e,"v-on handler")}return n.fns=t,n}function Gt(t,e,n,i,r,a){var A,l,c,u;for(A in t)l=t[A],c=e[A],u=zt(A),o(l)||(o(c)?(o(l.fns)&&(l=t[A]=Kt(l,a)),s(u.once)&&(l=t[A]=r(u.name,l,u.capture)),n(u.name,l,u.capture,u.passive,u.params)):l!==c&&(c.fns=l,t[A]=c));for(A in e)o(t[A])&&i((u=zt(A)).name,e[A],u.capture)}function Wt(t,e,n){var i;t instanceof ft&&(t=t.data.hook||(t.data.hook={}));var r=t[e];function A(){n.apply(this,arguments),x(i.fns,A)}o(r)?i=Kt([A]):a(r.fns)&&s(r.merged)?(i=r).fns.push(A):i=Kt([r,A]),i.merged=!0,t[e]=i}function jt(t,e,n,i,r){if(a(e)){if(b(e,n))return t[n]=e[n],r||delete e[n],!0;if(b(e,i))return t[n]=e[i],r||delete e[i],!0}return!1}function $t(t){return A(t)?[gt(t)]:r(t)?function t(e,n){var i=[];var l,c,u,h;for(l=0;l<e.length;l++)o(c=e[l])||"boolean"==typeof c||(u=i.length-1,h=i[u],r(c)?c.length>0&&(qt((c=t(c,"".concat(n||"","_").concat(l)))[0])&&qt(h)&&(i[u]=gt(h.text+c[0].text),c.shift()),i.push.apply(i,c)):A(c)?qt(h)?i[u]=gt(h.text+c):""!==c&&i.push(gt(c)):qt(c)&&qt(h)?i[u]=gt(h.text+c.text):(s(e._isVList)&&a(c.tag)&&o(c.key)&&a(n)&&(c.key="__vlist".concat(n,"_").concat(l,"__")),i.push(c)));return i}(t):void 0}function qt(t){return a(t)&&a(t.text)&&!1===t.isComment}var Yt=1,Xt=2;function Jt(t,e,n,i,u,h){return(r(n)||A(n))&&(u=i,i=n,n=void 0),s(h)&&(u=Xt),function(t,e,n,i,A){if(a(n)&&a(n.__ob__))return pt();a(n)&&a(n.is)&&(e=n.is);if(!e)return pt();0;r(i)&&l(i[0])&&((n=n||{}).scopedSlots={default:i[0]},i.length=0);A===Xt?i=$t(i):A===Yt&&(i=function(t){for(var e=0;e<t.length;e++)if(r(t[e]))return Array.prototype.concat.apply([],t);return t}(i));var u,h;if("string"==typeof e){var d=void 0;h=t.$vnode&&t.$vnode.ns||K.getTagNamespace(e),u=K.isReservedTag(e)?new ft(K.parsePlatformTagName(e),n,i,void 0,void 0,t):n&&n.pre||!a(d=Wn(t.$options,"components",e))?new ft(e,n,i,void 0,void 0,t):Ln(d,n,t,i,e)}else u=Ln(e,n,t,i);return r(u)?u:a(u)?(a(h)&&function t(e,n,i){e.ns=n;"foreignObject"===e.tag&&(n=void 0,i=!0);if(a(e.children))for(var r=0,A=e.children.length;r<A;r++){var l=e.children[r];a(l.tag)&&(o(l.ns)||s(i)&&"svg"!==l.tag)&&t(l,n,i)}}(u,h),a(n)&&function(t){c(t.style)&&gn(t.style);c(t.class)&&gn(t.class)}(n),u):pt()}(t,e,n,i,u)}function Zt(t,e){var n,i,o,s,A=null;if(r(t)||"string"==typeof t)for(A=new Array(t.length),n=0,i=t.length;n<i;n++)A[n]=e(t[n],n);else if("number"==typeof t)for(A=new Array(t),n=0;n<t;n++)A[n]=e(n+1,n);else if(c(t))if(ut&&t[Symbol.iterator]){A=[];for(var l=t[Symbol.iterator](),u=l.next();!u.done;)A.push(e(u.value,A.length)),u=l.next()}else for(o=Object.keys(t),A=new Array(o.length),n=0,i=o.length;n<i;n++)s=o[n],A[n]=e(t[s],s,n);return a(A)||(A=[]),A._isVList=!0,A}function te(t,e,n,i){var r,o=this.$scopedSlots[t];o?(n=n||{},i&&(n=k(k({},i),n)),r=o(n)||(l(e)?e():e)):r=this.$slots[t]||(l(e)?e():e);var a=n&&n.slot;return a?this.$createElement("template",{slot:a},r):r}function ee(t){return Wn(this.$options,"filters",t,!0)||L}function ne(t,e){return r(t)?-1===t.indexOf(e):t!==e}function ie(t,e,n,i,r){var o=K.keyCodes[e]||n;return r&&i&&!K.keyCodes[e]?ne(r,i):o?ne(o,t):i?M(i)!==e:void 0===t}function re(t,e,n,i,o){if(n)if(c(n)){r(n)&&(n=D(n));var a=void 0,s=function(r){if("class"===r||"style"===r||w(r))a=t;else{var s=t.attrs&&t.attrs.type;a=i||K.mustUseProp(e,s,r)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var A=S(r),l=M(r);A in a||l in a||(a[r]=n[r],o&&((t.on||(t.on={}))["update:".concat(r)]=function(t){n[r]=t}))};for(var A in n)s(A)}else;return t}function oe(t,e){var n=this._staticTrees||(this._staticTrees=[]),i=n[t];return i&&!e?i:(se(i=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,this._c,this),"__static__".concat(t),!1),i)}function ae(t,e,n){return se(t,"__once__".concat(e).concat(n?"_".concat(n):""),!0),t}function se(t,e,n){if(r(t))for(var i=0;i<t.length;i++)t[i]&&"string"!=typeof t[i]&&Ae(t[i],"".concat(e,"_").concat(i),n);else Ae(t,e,n)}function Ae(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function le(t,e){if(e)if(h(e)){var n=t.on=t.on?k({},t.on):{};for(var i in e){var r=n[i],o=e[i];n[i]=r?[].concat(r,o):o}}else;return t}function ce(t,e,n,i){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var a=t[o];r(a)?ce(a,e,n):a&&(a.proxy&&(a.fn.proxy=!0),e[a.key]=a.fn)}return i&&(e.$key=i),e}function ue(t,e){for(var n=0;n<e.length;n+=2){var i=e[n];"string"==typeof i&&i&&(t[e[n]]=e[n+1])}return t}function he(t,e){return"string"==typeof t?e+t:t}function de(t){t._o=ae,t._n=m,t._s=g,t._l=Zt,t._t=te,t._q=O,t._i=P,t._m=oe,t._f=ee,t._k=ie,t._b=re,t._v=gt,t._e=pt,t._u=ce,t._g=le,t._d=ue,t._p=he}function fe(t,e){if(!t||!t.length)return{};for(var n={},i=0,r=t.length;i<r;i++){var o=t[i],a=o.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,o.context!==e&&o.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(o);else{var s=a.slot,A=n[s]||(n[s]=[]);"template"===o.tag?A.push.apply(A,o.children||[]):A.push(o)}}for(var l in n)n[l].every(pe)&&delete n[l];return n}function pe(t){return t.isComment&&!t.asyncFactory||" "===t.text}function ge(t){return t.isComment&&t.asyncFactory}function me(t,e,n,r){var o,a=Object.keys(n).length>0,s=e?!!e.$stable:!a,A=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(s&&r&&r!==i&&A===r.$key&&!a&&!r.$hasNormal)return r;for(var l in o={},e)e[l]&&"$"!==l[0]&&(o[l]=ve(t,n,l,e[l]))}else o={};for(var c in n)c in o||(o[c]=ye(n,c));return e&&Object.isExtensible(e)&&(e._normalized=o),j(o,"$stable",s),j(o,"$key",A),j(o,"$hasNormal",a),o}function ve(t,e,n,i){var o=function(){var e=ht;dt(t);var n=arguments.length?i.apply(null,arguments):i({}),o=(n=n&&"object"==typeof n&&!r(n)?[n]:$t(n))&&n[0];return dt(e),n&&(!o||1===n.length&&o.isComment&&!ge(o))?void 0:n};return i.proxy&&Object.defineProperty(e,n,{get:o,enumerable:!0,configurable:!0}),o}function ye(t,e){return function(){return t[e]}}function we(t){return{get attrs(){if(!t._attrsProxy){var e=t._attrsProxy={};j(e,"_v_attr_proxy",!0),xe(e,t.$attrs,i,t,"$attrs")}return t._attrsProxy},get listeners(){t._listenersProxy||xe(t._listenersProxy={},t.$listeners,i,t,"$listeners");return t._listenersProxy},get slots(){return function(t){t._slotsProxy||be(t._slotsProxy={},t.$scopedSlots);return t._slotsProxy}(t)},emit:Q(t.$emit,t),expose:function(e){e&&Object.keys(e).forEach(function(n){return Vt(t,e,n)})}}}function xe(t,e,n,i,r){var o=!1;for(var a in e)a in t?e[a]!==n[a]&&(o=!0):(o=!0,Be(t,a,i,r));for(var a in t)a in e||(o=!0,delete t[a]);return o}function Be(t,e,n,i){Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){return n[i][e]}})}function be(t,e){for(var n in e)t[n]=e[n];for(var n in t)n in e||delete t[n]}var Ce,_e=null;function Se(t,e){return(t.__esModule||ut&&"Module"===t[Symbol.toStringTag])&&(t=t.default),c(t)?e.extend(t):t}function Ie(t){if(r(t))for(var e=0;e<t.length;e++){var n=t[e];if(a(n)&&(a(n.componentOptions)||ge(n)))return n}}function Te(t,e){Ce.$on(t,e)}function Me(t,e){Ce.$off(t,e)}function Qe(t,e){var n=Ce;return function i(){null!==e.apply(null,arguments)&&n.$off(t,i)}}function Fe(t,e,n){Ce=t,Gt(e,n||{},Te,Me,Qe,t),Ce=void 0}var ke=null;function De(t){var e=ke;return ke=t,function(){ke=e}}function Ue(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function Ee(t,e){if(e){if(t._directInactive=!1,Ue(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)Ee(t.$children[n]);Le(t,"activated")}}function Le(t,e,n,i){void 0===i&&(i=!0),bt();var r=ht;i&&dt(t);var o=t.$options[e],a="".concat(e," hook");if(o)for(var s=0,A=o.length;s<A;s++)tn(o[s],t,n||null,t,a);t._hasHookEvent&&t.$emit("hook:"+e),i&&dt(r),Ct()}var Oe=[],Pe=[],He={},Ne=!1,Re=!1,Ve=0;var ze=0,Ke=Date.now;if(Y&&!J){var Ge=window.performance;Ge&&"function"==typeof Ge.now&&Ke()>document.createEvent("Event").timeStamp&&(Ke=function(){return Ge.now()})}var We=function(t,e){if(t.post){if(!e.post)return 1}else if(e.post)return-1;return t.id-e.id};function je(){var t,e;for(ze=Ke(),Re=!0,Oe.sort(We),Ve=0;Ve<Oe.length;Ve++)(t=Oe[Ve]).before&&t.before(),e=t.id,He[e]=null,t.run();var n=Pe.slice(),i=Oe.slice();Ve=Oe.length=Pe.length=0,He={},Ne=Re=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Ee(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],i=n.vm;i&&i._watcher===n&&i._isMounted&&!i._isDestroyed&&Le(i,"updated")}}(i),wt(),At&&K.devtools&&At.emit("flush")}function $e(t){var e=t.id;if(null==He[e]&&(t!==xt.target||!t.noRecurse)){if(He[e]=!0,Re){for(var n=Oe.length-1;n>Ve&&Oe[n].id>t.id;)n--;Oe.splice(n+1,0,t)}else Oe.push(t);Ne||(Ne=!0,dn(je))}}var qe="watcher";"".concat(qe," callback"),"".concat(qe," getter"),"".concat(qe," cleanup");var Ye;var Xe=function(){function t(t){void 0===t&&(t=!1),this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=Ye,!t&&Ye&&(this.index=(Ye.scopes||(Ye.scopes=[])).push(this)-1)}return t.prototype.run=function(t){if(this.active){var e=Ye;try{return Ye=this,t()}finally{Ye=e}}else 0},t.prototype.on=function(){Ye=this},t.prototype.off=function(){Ye=this.parent},t.prototype.stop=function(t){if(this.active){var e=void 0,n=void 0;for(e=0,n=this.effects.length;e<n;e++)this.effects[e].teardown();for(e=0,n=this.cleanups.length;e<n;e++)this.cleanups[e]();if(this.scopes)for(e=0,n=this.scopes.length;e<n;e++)this.scopes[e].stop(!0);if(!this.detached&&this.parent&&!t){var i=this.parent.scopes.pop();i&&i!==this&&(this.parent.scopes[this.index]=i,i.index=this.index)}this.parent=void 0,this.active=!1}},t}();function Je(t){var e=t._provided,n=t.$parent&&t.$parent._provided;return n===e?t._provided=Object.create(n):e}function Ze(t,e,n){bt();try{if(e)for(var i=e;i=i.$parent;){var r=i.$options.errorCaptured;if(r)for(var o=0;o<r.length;o++)try{if(!1===r[o].call(i,t,e,n))return}catch(t){en(t,i,"errorCaptured hook")}}en(t,e,n)}finally{Ct()}}function tn(t,e,n,i,r){var o;try{(o=n?t.apply(e,n):t.call(e))&&!o._isVue&&p(o)&&!o._handled&&(o.catch(function(t){return Ze(t,i,r+" (Promise/async)")}),o._handled=!0)}catch(t){Ze(t,i,r)}return o}function en(t,e,n){if(K.errorHandler)try{return K.errorHandler.call(null,t,e,n)}catch(e){e!==t&&nn(e,null,"config.errorHandler")}nn(t,e,n)}function nn(t,e,n){if(!Y||"undefined"==typeof console)throw t;console.error(t)}var rn,on=!1,an=[],sn=!1;function An(){sn=!1;var t=an.slice(0);an.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&lt(Promise)){var ln=Promise.resolve();rn=function(){ln.then(An),et&&setTimeout(U)},on=!0}else if(J||"undefined"==typeof MutationObserver||!lt(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())rn="undefined"!=typeof setImmediate&&lt(setImmediate)?function(){setImmediate(An)}:function(){setTimeout(An,0)};else{var cn=1,un=new MutationObserver(An),hn=document.createTextNode(String(cn));un.observe(hn,{characterData:!0}),rn=function(){cn=(cn+1)%2,hn.data=String(cn)},on=!0}function dn(t,e){var n;if(an.push(function(){if(t)try{t.call(e)}catch(t){Ze(t,e,"nextTick")}else n&&n(e)}),sn||(sn=!0,rn()),!t&&"undefined"!=typeof Promise)return new Promise(function(t){n=t})}function fn(t){return function(e,n){if(void 0===n&&(n=ht),n)return function(t,e,n){var i=t.$options;i[e]=Vn(i[e],n)}(n,t,e)}}fn("beforeMount"),fn("mounted"),fn("beforeUpdate"),fn("updated"),fn("beforeDestroy"),fn("destroyed"),fn("activated"),fn("deactivated"),fn("serverPrefetch"),fn("renderTracked"),fn("renderTriggered"),fn("errorCaptured");var pn=new ct;function gn(t){return function t(e,n){var i,o;var a=r(e);if(!a&&!c(e)||e.__v_skip||Object.isFrozen(e)||e instanceof ft)return;if(e.__ob__){var s=e.__ob__.dep.id;if(n.has(s))return;n.add(s)}if(a)for(i=e.length;i--;)t(e[i],n);else if(Rt(e))t(e.value,n);else for(o=Object.keys(e),i=o.length;i--;)t(e[o[i]],n)}(t,pn),pn.clear(),t}var mn=0,vn=function(){function t(t,e,n,i,r){var o,a;o=this,void 0===(a=Ye&&!Ye._vm?Ye:t?t._scope:void 0)&&(a=Ye),a&&a.active&&a.effects.push(o),(this.vm=t)&&r&&(t._watcher=this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync,this.before=i.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++mn,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ct,this.newDepIds=new ct,this.expression="",l(e)?this.getter=e:(this.getter=function(t){if(!$.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=U)),this.value=this.lazy?void 0:this.get()}return t.prototype.get=function(){var t;bt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Ze(t,e,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&gn(t),Ct(),this.cleanupDeps()}return t},t.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},t.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},t.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():$e(this)},t.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'.concat(this.expression,'"');tn(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},t.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},t.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},t.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&x(this.vm._scope.effects,this),this.active){for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},t}(),yn={enumerable:!0,configurable:!0,get:U,set:U};function wn(t,e,n){yn.get=function(){return this[e][n]},yn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,yn)}function xn(t){var e=t.$options;if(e.props&&function(t,e){var n=t.$options.propsData||{},i=t._props=Tt({}),r=t.$options._propKeys=[],o=!t.$parent;o||Ut(!1);var a=function(o){r.push(o);var a=jn(o,e,n,t);Pt(i,o,a),o in t||wn(t,"_props",o)};for(var s in e)a(s);Ut(!0)}(t,e.props),function(t){var e=t.$options,n=e.setup;if(n){var i=t._setupContext=we(t);dt(t),bt();var r=tn(n,null,[t._props||Tt({}),i],t,"setup");if(Ct(),dt(),l(r))e.render=r;else if(c(r))if(t._setupState=r,r.__sfc){var o=t._setupProxy={};for(var a in r)"__sfc"!==a&&Vt(o,r,a)}else for(var a in r)W(a)||Vt(t,r,a)}}(t),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?U:Q(e[n],t)}(t,e.methods),e.data)!function(t){var e=t.$options.data;h(e=t._data=l(e)?function(t,e){bt();try{return t.call(e,e)}catch(t){return Ze(t,e,"data()"),{}}finally{Ct()}}(e,t):e||{})||(e={});var n=Object.keys(e),i=t.$options.props,r=(t.$options.methods,n.length);for(;r--;){var o=n[r];0,i&&b(i,o)||W(o)||wn(t,"_data",o)}var a=Ot(e);a&&a.vmCount++}(t);else{var n=Ot(t._data={});n&&n.vmCount++}e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),i=st();for(var r in e){var o=e[r],a=l(o)?o:o.get;0,i||(n[r]=new vn(t,a||U,U,Bn)),r in t||bn(t,r,o)}}(t,e.computed),e.watch&&e.watch!==rt&&function(t,e){for(var n in e){var i=e[n];if(r(i))for(var o=0;o<i.length;o++)Sn(t,n,i[o]);else Sn(t,n,i)}}(t,e.watch)}var Bn={lazy:!0};function bn(t,e,n){var i=!st();l(n)?(yn.get=i?Cn(e):_n(n),yn.set=U):(yn.get=n.get?i&&!1!==n.cache?Cn(e):_n(n.get):U,yn.set=n.set||U),Object.defineProperty(t,e,yn)}function Cn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),xt.target&&e.depend(),e.value}}function _n(t){return function(){return t.call(this,this)}}function Sn(t,e,n,i){return h(n)&&(i=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,i)}function In(t,e){if(t){for(var n=Object.create(null),i=ut?Reflect.ownKeys(t):Object.keys(t),r=0;r<i.length;r++){var o=i[r];if("__ob__"!==o){var a=t[o].from;if(a in e._provided)n[o]=e._provided[a];else if("default"in t[o]){var s=t[o].default;n[o]=l(s)?s.call(e):s}else 0}}return n}}var Tn=0;function Mn(t){var e=t.options;if(t.super){var n=Mn(t.super);if(n!==t.superOptions){t.superOptions=n;var i=function(t){var e,n=t.options,i=t.sealedOptions;for(var r in n)n[r]!==i[r]&&(e||(e={}),e[r]=n[r]);return e}(t);i&&k(t.extendOptions,i),(e=t.options=Gn(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Qn(t,e,n,o,a){var A,l=this,c=a.options;b(o,"_uid")?(A=Object.create(o))._original=o:(A=o,o=o._original);var u=s(c._compiled),h=!u;this.data=t,this.props=e,this.children=n,this.parent=o,this.listeners=t.on||i,this.injections=In(c.inject,o),this.slots=function(){return l.$slots||me(o,t.scopedSlots,l.$slots=fe(n,o)),l.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return me(o,t.scopedSlots,this.slots())}}),u&&(this.$options=c,this.$slots=this.slots(),this.$scopedSlots=me(o,t.scopedSlots,this.$slots)),c._scopeId?this._c=function(t,e,n,i){var a=Jt(A,t,e,n,i,h);return a&&!r(a)&&(a.fnScopeId=c._scopeId,a.fnContext=o),a}:this._c=function(t,e,n,i){return Jt(A,t,e,n,i,h)}}function Fn(t,e,n,i,r){var o=mt(t);return o.fnContext=n,o.fnOptions=i,e.slot&&((o.data||(o.data={})).slot=e.slot),o}function kn(t,e){for(var n in e)t[S(n)]=e[n]}function Dn(t){return t.name||t.__name||t._componentTag}de(Qn.prototype);var Un={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;Un.prepatch(n,n)}else{(t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},i=t.data.inlineTemplate;a(i)&&(n.render=i.render,n.staticRenderFns=i.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,ke)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,o){var a=r.data.scopedSlots,s=t.$scopedSlots,A=!!(a&&!a.$stable||s!==i&&!s.$stable||a&&t.$scopedSlots.$key!==a.$key||!a&&t.$scopedSlots.$key),l=!!(o||t.$options._renderChildren||A),c=t.$vnode;t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=o;var u=r.data.attrs||i;t._attrsProxy&&xe(t._attrsProxy,u,c.data&&c.data.attrs||i,t,"$attrs")&&(l=!0),t.$attrs=u,n=n||i;var h=t.$options._parentListeners;if(t._listenersProxy&&xe(t._listenersProxy,n,h||i,t,"$listeners"),t.$listeners=t.$options._parentListeners=n,Fe(t,n,h),e&&t.$options.props){Ut(!1);for(var d=t._props,f=t.$options._propKeys||[],p=0;p<f.length;p++){var g=f[p],m=t.$options.props;d[g]=jn(g,m,e,t)}Ut(!0),t.$options.propsData=e}l&&(t.$slots=fe(o,r.context),t.$forceUpdate())}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e,n=t.context,i=t.componentInstance;i._isMounted||(i._isMounted=!0,Le(i,"mounted")),t.data.keepAlive&&(n._isMounted?((e=i)._inactive=!1,Pe.push(e)):Ee(i,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?function t(e,n){if(!(n&&(e._directInactive=!0,Ue(e))||e._inactive)){e._inactive=!0;for(var i=0;i<e.$children.length;i++)t(e.$children[i]);Le(e,"deactivated")}}(e,!0):e.$destroy())}},En=Object.keys(Un);function Ln(t,e,n,A,l){if(!o(t)){var u=n.$options._base;if(c(t)&&(t=u.extend(t)),"function"==typeof t){var h;if(o(t.cid)&&void 0===(t=function(t,e){if(s(t.error)&&a(t.errorComp))return t.errorComp;if(a(t.resolved))return t.resolved;var n=_e;if(n&&a(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n),s(t.loading)&&a(t.loadingComp))return t.loadingComp;if(n&&!a(t.owners)){var i=t.owners=[n],r=!0,A=null,l=null;n.$on("hook:destroyed",function(){return x(i,n)});var u=function(t){for(var e=0,n=i.length;e<n;e++)i[e].$forceUpdate();t&&(i.length=0,null!==A&&(clearTimeout(A),A=null),null!==l&&(clearTimeout(l),l=null))},h=H(function(n){t.resolved=Se(n,e),r?i.length=0:u(!0)}),d=H(function(e){a(t.errorComp)&&(t.error=!0,u(!0))}),f=t(h,d);return c(f)&&(p(f)?o(t.resolved)&&f.then(h,d):p(f.component)&&(f.component.then(h,d),a(f.error)&&(t.errorComp=Se(f.error,e)),a(f.loading)&&(t.loadingComp=Se(f.loading,e),0===f.delay?t.loading=!0:A=setTimeout(function(){A=null,o(t.resolved)&&o(t.error)&&(t.loading=!0,u(!1))},f.delay||200)),a(f.timeout)&&(l=setTimeout(function(){l=null,o(t.resolved)&&d(null)},f.timeout)))),r=!1,t.loading?t.loadingComp:t.resolved}}(h=t,u)))return function(t,e,n,i,r){var o=pt();return o.asyncFactory=t,o.asyncMeta={data:e,context:n,children:i,tag:r},o}(h,e,n,A,l);e=e||{},Mn(t),a(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",i=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var o=e.on||(e.on={}),s=o[i],A=e.model.callback;a(s)?(r(s)?-1===s.indexOf(A):s!==A)&&(o[i]=[A].concat(s)):o[i]=A}(t.options,e);var d=function(t,e,n){var i=e.options.props;if(!o(i)){var r={},s=t.attrs,A=t.props;if(a(s)||a(A))for(var l in i){var c=M(l);jt(r,A,l,c,!0)||jt(r,s,l,c,!1)}return r}}(e,t);if(s(t.options.functional))return function(t,e,n,o,s){var A=t.options,l={},c=A.props;if(a(c))for(var u in c)l[u]=jn(u,c,e||i);else a(n.attrs)&&kn(l,n.attrs),a(n.props)&&kn(l,n.props);var h=new Qn(n,l,s,o,t),d=A.render.call(null,h._c,h);if(d instanceof ft)return Fn(d,n,h.parent,A);if(r(d)){for(var f=$t(d)||[],p=new Array(f.length),g=0;g<f.length;g++)p[g]=Fn(f[g],n,h.parent,A);return p}}(t,d,e,n,A);var f=e.on;if(e.on=e.nativeOn,s(t.options.abstract)){var g=e.slot;e={},g&&(e.slot=g)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<En.length;n++){var i=En[n],r=e[i],o=Un[i];r===o||r&&r._merged||(e[i]=r?On(o,r):o)}}(e);var m=Dn(t.options)||l;return new ft("vue-component-".concat(t.cid).concat(m?"-".concat(m):""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:d,listeners:f,tag:l,children:A},h)}}}function On(t,e){var n=function(n,i){t(n,i),e(n,i)};return n._merged=!0,n}var Pn=U,Hn=K.optionMergeStrategies;function Nn(t,e){if(!e)return t;for(var n,i,r,o=ut?Reflect.ownKeys(e):Object.keys(e),a=0;a<o.length;a++)"__ob__"!==(n=o[a])&&(i=t[n],r=e[n],b(t,n)?i!==r&&h(i)&&h(r)&&Nn(i,r):Ht(t,n,r));return t}function Rn(t,e,n){return n?function(){var i=l(e)?e.call(n,n):e,r=l(t)?t.call(n,n):t;return i?Nn(i,r):r}:e?t?function(){return Nn(l(e)?e.call(this,this):e,l(t)?t.call(this,this):t)}:e:t}function Vn(t,e){var n=e?t?t.concat(e):r(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function zn(t,e,n,i){var r=Object.create(t||null);return e?k(r,e):r}Hn.data=function(t,e,n){return n?Rn(t,e,n):e&&"function"!=typeof e?t:Rn(t,e)},z.forEach(function(t){Hn[t]=Vn}),V.forEach(function(t){Hn[t+"s"]=zn}),Hn.watch=function(t,e,n,i){if(t===rt&&(t=void 0),e===rt&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var a in k(o,t),e){var s=o[a],A=e[a];s&&!r(s)&&(s=[s]),o[a]=s?s.concat(A):r(A)?A:[A]}return o},Hn.props=Hn.methods=Hn.inject=Hn.computed=function(t,e,n,i){if(!t)return e;var r=Object.create(null);return k(r,t),e&&k(r,e),r},Hn.provide=Rn;var Kn=function(t,e){return void 0===e?t:e};function Gn(t,e,n){if(l(e)&&(e=e.options),function(t,e){var n=t.props;if(n){var i,o,a={};if(r(n))for(i=n.length;i--;)"string"==typeof(o=n[i])&&(a[S(o)]={type:null});else if(h(n))for(var s in n)o=n[s],a[S(s)]=h(o)?o:{type:o};t.props=a}}(e),function(t,e){var n=t.inject;if(n){var i=t.inject={};if(r(n))for(var o=0;o<n.length;o++)i[n[o]]={from:n[o]};else if(h(n))for(var a in n){var s=n[a];i[a]=h(s)?k({from:a},s):{from:s}}}}(e),function(t){var e=t.directives;if(e)for(var n in e){var i=e[n];l(i)&&(e[n]={bind:i,update:i})}}(e),!e._base&&(e.extends&&(t=Gn(t,e.extends,n)),e.mixins))for(var i=0,o=e.mixins.length;i<o;i++)t=Gn(t,e.mixins[i],n);var a,s={};for(a in t)A(a);for(a in e)b(t,a)||A(a);function A(i){var r=Hn[i]||Kn;s[i]=r(t[i],e[i],n,i)}return s}function Wn(t,e,n,i){if("string"==typeof n){var r=t[e];if(b(r,n))return r[n];var o=S(n);if(b(r,o))return r[o];var a=I(o);return b(r,a)?r[a]:r[n]||r[o]||r[a]}}function jn(t,e,n,i){var r=e[t],o=!b(n,t),a=n[t],s=Xn(Boolean,r.type);if(s>-1)if(o&&!b(r,"default"))a=!1;else if(""===a||a===M(t)){var A=Xn(String,r.type);(A<0||s<A)&&(a=!0)}if(void 0===a){a=function(t,e,n){if(!b(e,"default"))return;var i=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return l(i)&&"Function"!==qn(e.type)?i.call(t):i}(i,r,t);var c=Dt;Ut(!0),Ot(a),Ut(c)}return a}var $n=/^\s*function (\w+)/;function qn(t){var e=t&&t.toString().match($n);return e?e[1]:""}function Yn(t,e){return qn(t)===qn(e)}function Xn(t,e){if(!r(e))return Yn(e,t)?0:-1;for(var n=0,i=e.length;n<i;n++)if(Yn(e[n],t))return n;return-1}function Jn(t){this._init(t)}function Zn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,i=n.cid,r=t._Ctor||(t._Ctor={});if(r[i])return r[i];var o=Dn(t)||Dn(n.options);var a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=Gn(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)wn(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)bn(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,V.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=k({},a.options),r[i]=a,a}}function ti(t){return t&&(Dn(t.Ctor.options)||t.tag)}function ei(t,e){return r(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!d(t)&&t.test(e)}function ni(t,e){var n=t.cache,i=t.keys,r=t._vnode;for(var o in n){var a=n[o];if(a){var s=a.name;s&&!e(s)&&ii(n,o,i,r)}}}function ii(t,e,n,i){var r=t[e];!r||i&&r.tag===i.tag||r.componentInstance.$destroy(),t[e]=null,x(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=Tn++,e._isVue=!0,e.__v_skip=!0,e._scope=new Xe(!0),e._scope._vm=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),i=e._parentVnode;n.parent=e.parent,n._parentVnode=i;var r=i.componentOptions;n.propsData=r.propsData,n._parentListeners=r.listeners,n._renderChildren=r.children,n._componentTag=r.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Gn(Mn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._provided=n?n._provided:Object.create(null),t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Fe(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,r=n&&n.context;t.$slots=fe(e._renderChildren,r),t.$scopedSlots=n?me(t.$parent,n.data.scopedSlots,t.$slots):i,t._c=function(e,n,i,r){return Jt(t,e,n,i,r,!1)},t.$createElement=function(e,n,i,r){return Jt(t,e,n,i,r,!0)};var o=n&&n.data;Pt(t,"$attrs",o&&o.attrs||i,null,!0),Pt(t,"$listeners",e._parentListeners||i,null,!0)}(e),Le(e,"beforeCreate",void 0,!1),function(t){var e=In(t.$options.inject,t);e&&(Ut(!1),Object.keys(e).forEach(function(n){Pt(t,n,e[n])}),Ut(!0))}(e),xn(e),function(t){var e=t.$options.provide;if(e){var n=l(e)?e.call(t):e;if(!c(n))return;for(var i=Je(t),r=ut?Reflect.ownKeys(n):Object.keys(n),o=0;o<r.length;o++){var a=r[o];Object.defineProperty(i,a,Object.getOwnPropertyDescriptor(n,a))}}}(e),Le(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(Jn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Ht,t.prototype.$delete=Nt,t.prototype.$watch=function(t,e,n){if(h(e))return Sn(this,t,e,n);(n=n||{}).user=!0;var i=new vn(this,t,e,n);if(n.immediate){var r='callback for immediate watcher "'.concat(i.expression,'"');bt(),tn(e,this,[i.value],this,r),Ct()}return function(){i.teardown()}}}(Jn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var i=this;if(r(t))for(var o=0,a=t.length;o<a;o++)i.$on(t[o],n);else(i._events[t]||(i._events[t]=[])).push(n),e.test(t)&&(i._hasHookEvent=!0);return i},t.prototype.$once=function(t,e){var n=this;function i(){n.$off(t,i),e.apply(n,arguments)}return i.fn=e,n.$on(t,i),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(r(t)){for(var i=0,o=t.length;i<o;i++)n.$off(t[i],e);return n}var a,s=n._events[t];if(!s)return n;if(!e)return n._events[t]=null,n;for(var A=s.length;A--;)if((a=s[A])===e||a.fn===e){s.splice(A,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?F(n):n;for(var i=F(arguments,1),r='event handler for "'.concat(t,'"'),o=0,a=n.length;o<a;o++)tn(n[o],e,i,e,r)}return e}}(Jn),function(t){t.prototype._update=function(t,e){var n=this,i=n.$el,r=n._vnode,o=De(n);n._vnode=t,n.$el=r?n.__patch__(r,t):n.__patch__(n.$el,t,e,!1),o(),i&&(i.__vue__=null),n.$el&&(n.$el.__vue__=n);for(var a=n;a&&a.$vnode&&a.$parent&&a.$vnode===a.$parent._vnode;)a.$parent.$el=a.$el,a=a.$parent},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Le(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||x(e.$children,t),t._scope.stop(),t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Le(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(Jn),function(t){de(t.prototype),t.prototype.$nextTick=function(t){return dn(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,i=n.render,o=n._parentVnode;o&&e._isMounted&&(e.$scopedSlots=me(e.$parent,o.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&be(e._slotsProxy,e.$scopedSlots)),e.$vnode=o;try{dt(e),_e=e,t=i.call(e._renderProxy,e.$createElement)}catch(n){Ze(n,e,"render"),t=e._vnode}finally{_e=null,dt()}return r(t)&&1===t.length&&(t=t[0]),t instanceof ft||(t=pt()),t.parent=o,t}}(Jn);var ri=[String,RegExp,Array],oi={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:ri,exclude:ri,max:[String,Number]},methods:{cacheVNode:function(){var t=this.cache,e=this.keys,n=this.vnodeToCache,i=this.keyToCache;if(n){var r=n.tag,o=n.componentInstance,a=n.componentOptions;t[i]={name:ti(a),tag:r,componentInstance:o},e.push(i),this.max&&e.length>parseInt(this.max)&&ii(t,e[0],e,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)ii(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",function(e){ni(t,function(t){return ei(e,t)})}),this.$watch("exclude",function(e){ni(t,function(t){return!ei(e,t)})})},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=Ie(t),n=e&&e.componentOptions;if(n){var i=ti(n),r=this.include,o=this.exclude;if(r&&(!i||!ei(r,i))||o&&i&&ei(o,i))return e;var a=this.cache,s=this.keys,A=null==e.key?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):e.key;a[A]?(e.componentInstance=a[A].componentInstance,x(s,A),s.push(A)):(this.vnodeToCache=e,this.keyToCache=A),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return K}};Object.defineProperty(t,"config",e),t.util={warn:Pn,extend:k,mergeOptions:Gn,defineReactive:Pt},t.set=Ht,t.delete=Nt,t.nextTick=dn,t.observable=function(t){return Ot(t),t},t.options=Object.create(null),V.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,k(t.options.components,oi),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=F(arguments,1);return n.unshift(this),l(t.install)?t.install.apply(t,n):l(t)&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Gn(this.options,t),this}}(t),Zn(t),function(t){V.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&h(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&l(n)&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}(t)}(Jn),Object.defineProperty(Jn.prototype,"$isServer",{get:st}),Object.defineProperty(Jn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Jn,"FunctionalRenderContext",{value:Qn}),Jn.version="2.7.13";var ai=v("style,class"),si=v("input,textarea,option,select,progress"),Ai=function(t,e,n){return"value"===n&&si(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},li=v("contenteditable,draggable,spellcheck"),ci=v("events,caret,typing,plaintext-only"),ui=function(t,e){return gi(e)||"false"===e?"false":"contenteditable"===t&&ci(e)?e:"true"},hi=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),di="http://www.w3.org/1999/xlink",fi=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},pi=function(t){return fi(t)?t.slice(6,t.length):""},gi=function(t){return null==t||!1===t};function mi(t){for(var e=t.data,n=t,i=t;a(i.componentInstance);)(i=i.componentInstance._vnode)&&i.data&&(e=vi(i.data,e));for(;a(n=n.parent);)n&&n.data&&(e=vi(e,n.data));return function(t,e){if(a(t)||a(e))return yi(t,wi(e));return""}(e.staticClass,e.class)}function vi(t,e){return{staticClass:yi(t.staticClass,e.staticClass),class:a(t.class)?[t.class,e.class]:e.class}}function yi(t,e){return t?e?t+" "+e:t:e||""}function wi(t){return Array.isArray(t)?function(t){for(var e,n="",i=0,r=t.length;i<r;i++)a(e=wi(t[i]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):c(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var xi={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Bi=v("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),bi=v("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Ci=function(t){return Bi(t)||bi(t)};function _i(t){return bi(t)?"svg":"math"===t?"math":void 0}var Si=Object.create(null);var Ii=v("text,number,password,search,email,tel,url");function Ti(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}var Mi=Object.freeze({__proto__:null,createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(xi[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Qi={create:function(t,e){Fi(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Fi(t,!0),Fi(e))},destroy:function(t){Fi(t,!0)}};function Fi(t,e){var n=t.data.ref;if(a(n)){var i=t.context,o=t.componentInstance||t.elm,s=e?null:o,A=e?void 0:o;if(l(n))tn(n,i,[s],i,"template ref function");else{var c=t.data.refInFor,u="string"==typeof n||"number"==typeof n,h=Rt(n),d=i.$refs;if(u||h)if(c){var f=u?d[n]:n.value;e?r(f)&&x(f,o):r(f)?f.includes(o)||f.push(o):u?(d[n]=[o],ki(i,n,d[n])):n.value=[o]}else if(u){if(e&&d[n]!==o)return;d[n]=A,ki(i,n,s)}else if(h){if(e&&n.value!==o)return;n.value=s}else 0}}}function ki(t,e,n){var i=t._setupState;i&&b(i,e)&&(Rt(i[e])?i[e].value=n:i[e]=n)}var Di=new ft("",{},[]),Ui=["create","activate","update","remove","destroy"];function Ei(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&a(t.data)===a(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,i=a(n=t.data)&&a(n=n.attrs)&&n.type,r=a(n=e.data)&&a(n=n.attrs)&&n.type;return i===r||Ii(i)&&Ii(r)}(t,e)||s(t.isAsyncPlaceholder)&&o(e.asyncFactory.error))}function Li(t,e,n){var i,r,o={};for(i=e;i<=n;++i)a(r=t[i].key)&&(o[r]=i);return o}var Oi={create:Pi,update:Pi,destroy:function(t){Pi(t,Di)}};function Pi(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,i,r,o=t===Di,a=e===Di,s=Ni(t.data.directives,t.context),A=Ni(e.data.directives,e.context),l=[],c=[];for(n in A)i=s[n],r=A[n],i?(r.oldValue=i.value,r.oldArg=i.arg,Vi(r,"update",e,t),r.def&&r.def.componentUpdated&&c.push(r)):(Vi(r,"bind",e,t),r.def&&r.def.inserted&&l.push(r));if(l.length){var u=function(){for(var n=0;n<l.length;n++)Vi(l[n],"inserted",e,t)};o?Wt(e,"insert",u):u()}c.length&&Wt(e,"postpatch",function(){for(var n=0;n<c.length;n++)Vi(c[n],"componentUpdated",e,t)});if(!o)for(n in s)A[n]||Vi(s[n],"unbind",t,t,a)}(t,e)}var Hi=Object.create(null);function Ni(t,e){var n,i,r=Object.create(null);if(!t)return r;for(n=0;n<t.length;n++){if((i=t[n]).modifiers||(i.modifiers=Hi),r[Ri(i)]=i,e._setupState&&e._setupState.__sfc){var o=i.def||Wn(e,"_setupState","v-"+i.name);i.def="function"==typeof o?{bind:o,update:o}:o}i.def=i.def||Wn(e.$options,"directives",i.name)}return r}function Ri(t){return t.rawName||"".concat(t.name,".").concat(Object.keys(t.modifiers||{}).join("."))}function Vi(t,e,n,i,r){var o=t.def&&t.def[e];if(o)try{o(n.elm,t,n,i,r)}catch(i){Ze(i,n.context,"directive ".concat(t.name," ").concat(e," hook"))}}var zi=[Qi,Oi];function Ki(t,e){var n=e.componentOptions;if(!(a(n)&&!1===n.Ctor.options.inheritAttrs||o(t.data.attrs)&&o(e.data.attrs))){var i,r,A=e.elm,l=t.data.attrs||{},c=e.data.attrs||{};for(i in(a(c.__ob__)||s(c._v_attr_proxy))&&(c=e.data.attrs=k({},c)),c)r=c[i],l[i]!==r&&Gi(A,i,r,e.data.pre);for(i in(J||tt)&&c.value!==l.value&&Gi(A,"value",c.value),l)o(c[i])&&(fi(i)?A.removeAttributeNS(di,pi(i)):li(i)||A.removeAttribute(i))}}function Gi(t,e,n,i){i||t.tagName.indexOf("-")>-1?Wi(t,e,n):hi(e)?gi(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):li(e)?t.setAttribute(e,ui(e,n)):fi(e)?gi(n)?t.removeAttributeNS(di,pi(e)):t.setAttributeNS(di,e,n):Wi(t,e,n)}function Wi(t,e,n){if(gi(n))t.removeAttribute(e);else{if(J&&!Z&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var i=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",i)};t.addEventListener("input",i),t.__ieph=!0}t.setAttribute(e,n)}}var ji={create:Ki,update:Ki};function $i(t,e){var n=e.elm,i=e.data,r=t.data;if(!(o(i.staticClass)&&o(i.class)&&(o(r)||o(r.staticClass)&&o(r.class)))){var s=mi(e),A=n._transitionClasses;a(A)&&(s=yi(s,wi(A))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var qi,Yi,Xi,Ji,Zi,tr,er={create:$i,update:$i},nr=/[\w).+\-_$\]]/;function ir(t){var e,n,i,r,o,a=!1,s=!1,A=!1,l=!1,c=0,u=0,h=0,d=0;for(i=0;i<t.length;i++)if(n=e,e=t.charCodeAt(i),a)39===e&&92!==n&&(a=!1);else if(s)34===e&&92!==n&&(s=!1);else if(A)96===e&&92!==n&&(A=!1);else if(l)47===e&&92!==n&&(l=!1);else if(124!==e||124===t.charCodeAt(i+1)||124===t.charCodeAt(i-1)||c||u||h){switch(e){case 34:s=!0;break;case 39:a=!0;break;case 96:A=!0;break;case 40:h++;break;case 41:h--;break;case 91:u++;break;case 93:u--;break;case 123:c++;break;case 125:c--}if(47===e){for(var f=i-1,p=void 0;f>=0&&" "===(p=t.charAt(f));f--);p&&nr.test(p)||(l=!0)}}else void 0===r?(d=i+1,r=t.slice(0,i).trim()):g();function g(){(o||(o=[])).push(t.slice(d,i).trim()),d=i+1}if(void 0===r?r=t.slice(0,i).trim():0!==d&&g(),o)for(i=0;i<o.length;i++)r=rr(r,o[i]);return r}function rr(t,e){var n=e.indexOf("(");if(n<0)return'_f("'.concat(e,'")(').concat(t,")");var i=e.slice(0,n),r=e.slice(n+1);return'_f("'.concat(i,'")(').concat(t).concat(")"!==r?","+r:r)}function or(t,e){console.error("[Vue compiler]: ".concat(t))}function ar(t,e){return t?t.map(function(t){return t[e]}).filter(function(t){return t}):[]}function sr(t,e,n,i,r){(t.props||(t.props=[])).push(mr({name:e,value:n,dynamic:r},i)),t.plain=!1}function Ar(t,e,n,i,r){(r?t.dynamicAttrs||(t.dynamicAttrs=[]):t.attrs||(t.attrs=[])).push(mr({name:e,value:n,dynamic:r},i)),t.plain=!1}function lr(t,e,n,i){t.attrsMap[e]=n,t.attrsList.push(mr({name:e,value:n},i))}function cr(t,e,n,i,r,o,a,s){(t.directives||(t.directives=[])).push(mr({name:e,rawName:n,value:i,arg:r,isDynamicArg:o,modifiers:a},s)),t.plain=!1}function ur(t,e,n){return n?"_p(".concat(e,',"').concat(t,'")'):t+e}function hr(t,e,n,r,o,a,s,A){var l;(r=r||i).right?A?e="(".concat(e,")==='click'?'contextmenu':(").concat(e,")"):"click"===e&&(e="contextmenu",delete r.right):r.middle&&(A?e="(".concat(e,")==='click'?'mouseup':(").concat(e,")"):"click"===e&&(e="mouseup")),r.capture&&(delete r.capture,e=ur("!",e,A)),r.once&&(delete r.once,e=ur("~",e,A)),r.passive&&(delete r.passive,e=ur("&",e,A)),r.native?(delete r.native,l=t.nativeEvents||(t.nativeEvents={})):l=t.events||(t.events={});var c=mr({value:n.trim(),dynamic:A},s);r!==i&&(c.modifiers=r);var u=l[e];Array.isArray(u)?o?u.unshift(c):u.push(c):l[e]=u?o?[c,u]:[u,c]:c,t.plain=!1}function dr(t,e){return t.rawAttrsMap[":"+e]||t.rawAttrsMap["v-bind:"+e]||t.rawAttrsMap[e]}function fr(t,e,n){var i=pr(t,":"+e)||pr(t,"v-bind:"+e);if(null!=i)return ir(i);if(!1!==n){var r=pr(t,e);if(null!=r)return JSON.stringify(r)}}function pr(t,e,n){var i;if(null!=(i=t.attrsMap[e]))for(var r=t.attrsList,o=0,a=r.length;o<a;o++)if(r[o].name===e){r.splice(o,1);break}return n&&delete t.attrsMap[e],i}function gr(t,e){for(var n=t.attrsList,i=0,r=n.length;i<r;i++){var o=n[i];if(e.test(o.name))return n.splice(i,1),o}}function mr(t,e){return e&&(null!=e.start&&(t.start=e.start),null!=e.end&&(t.end=e.end)),t}function vr(t,e,n){var i=n||{},r=i.number,o="$$v";i.trim&&(o="(typeof ".concat("$$v"," === 'string'")+"? ".concat("$$v",".trim()")+": ".concat("$$v",")")),r&&(o="_n(".concat(o,")"));var a=yr(e,o);t.model={value:"(".concat(e,")"),expression:JSON.stringify(e),callback:"function (".concat("$$v",") {").concat(a,"}")}}function yr(t,e){var n=function(t){if(t=t.trim(),qi=t.length,t.indexOf("[")<0||t.lastIndexOf("]")<qi-1)return(Ji=t.lastIndexOf("."))>-1?{exp:t.slice(0,Ji),key:'"'+t.slice(Ji+1)+'"'}:{exp:t,key:null};Yi=t,Ji=Zi=tr=0;for(;!xr();)Br(Xi=wr())?Cr(Xi):91===Xi&&br(Xi);return{exp:t.slice(0,Zi),key:t.slice(Zi+1,tr)}}(t);return null===n.key?"".concat(t,"=").concat(e):"$set(".concat(n.exp,", ").concat(n.key,", ").concat(e,")")}function wr(){return Yi.charCodeAt(++Ji)}function xr(){return Ji>=qi}function Br(t){return 34===t||39===t}function br(t){var e=1;for(Zi=Ji;!xr();)if(Br(t=wr()))Cr(t);else if(91===t&&e++,93===t&&e--,0===e){tr=Ji;break}}function Cr(t){for(var e=t;!xr()&&(t=wr())!==e;);}var _r,Sr="__r",Ir="__c";function Tr(t,e,n){var i=_r;return function r(){null!==e.apply(null,arguments)&&Fr(t,r,n,i)}}var Mr=on&&!(it&&Number(it[1])<=53);function Qr(t,e,n,i){if(Mr){var r=ze,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=r||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}_r.addEventListener(t,e,ot?{capture:n,passive:i}:n)}function Fr(t,e,n,i){(i||_r).removeEventListener(t,e._wrapper||e,n)}function kr(t,e){if(!o(t.data.on)||!o(e.data.on)){var n=e.data.on||{},i=t.data.on||{};_r=e.elm||t.elm,function(t){if(a(t[Sr])){var e=J?"change":"input";t[e]=[].concat(t[Sr],t[e]||[]),delete t[Sr]}a(t[Ir])&&(t.change=[].concat(t[Ir],t.change||[]),delete t[Ir])}(n),Gt(n,i,Qr,Fr,Tr,e.context),_r=void 0}}var Dr,Ur={create:kr,update:kr,destroy:function(t){return kr(t,Di)}};function Er(t,e){if(!o(t.data.domProps)||!o(e.data.domProps)){var n,i,r=e.elm,A=t.data.domProps||{},l=e.data.domProps||{};for(n in(a(l.__ob__)||s(l._v_attr_proxy))&&(l=e.data.domProps=k({},l)),A)n in l||(r[n]="");for(n in l){if(i=l[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),i===A[n])continue;1===r.childNodes.length&&r.removeChild(r.childNodes[0])}if("value"===n&&"PROGRESS"!==r.tagName){r._value=i;var c=o(i)?"":String(i);Lr(r,c)&&(r.value=c)}else if("innerHTML"===n&&bi(r.tagName)&&o(r.innerHTML)){(Dr=Dr||document.createElement("div")).innerHTML="<svg>".concat(i,"</svg>");for(var u=Dr.firstChild;r.firstChild;)r.removeChild(r.firstChild);for(;u.firstChild;)r.appendChild(u.firstChild)}else if(i!==A[n])try{r[n]=i}catch(t){}}}}function Lr(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,i=t._vModifiers;if(a(i)){if(i.number)return m(n)!==m(e);if(i.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Or={create:Er,update:Er},Pr=C(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var i=t.split(n);i.length>1&&(e[i[0].trim()]=i[1].trim())}}),e});function Hr(t){var e=Nr(t.style);return t.staticStyle?k(t.staticStyle,e):e}function Nr(t){return Array.isArray(t)?D(t):"string"==typeof t?Pr(t):t}var Rr,Vr=/^--/,zr=/\s*!important$/,Kr=function(t,e,n){if(Vr.test(e))t.style.setProperty(e,n);else if(zr.test(n))t.style.setProperty(M(e),n.replace(zr,""),"important");else{var i=Wr(e);if(Array.isArray(n))for(var r=0,o=n.length;r<o;r++)t.style[i]=n[r];else t.style[i]=n}},Gr=["Webkit","Moz","ms"],Wr=C(function(t){if(Rr=Rr||document.createElement("div").style,"filter"!==(t=S(t))&&t in Rr)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<Gr.length;n++){var i=Gr[n]+e;if(i in Rr)return i}});function jr(t,e){var n=e.data,i=t.data;if(!(o(n.staticStyle)&&o(n.style)&&o(i.staticStyle)&&o(i.style))){var r,s,A=e.elm,l=i.staticStyle,c=i.normalizedStyle||i.style||{},u=l||c,h=Nr(e.data.style)||{};e.data.normalizedStyle=a(h.__ob__)?k({},h):h;var d=function(t,e){var n,i={};if(e)for(var r=t;r.componentInstance;)(r=r.componentInstance._vnode)&&r.data&&(n=Hr(r.data))&&k(i,n);(n=Hr(t.data))&&k(i,n);for(var o=t;o=o.parent;)o.data&&(n=Hr(o.data))&&k(i,n);return i}(e,!0);for(s in u)o(d[s])&&Kr(A,s,"");for(s in d)(r=d[s])!==u[s]&&Kr(A,s,null==r?"":r)}}var $r={create:jr,update:jr},qr=/\s+/;function Yr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(qr).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" ".concat(t.getAttribute("class")||""," ");n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Xr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(qr).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" ".concat(t.getAttribute("class")||""," "),i=" "+e+" ";n.indexOf(i)>=0;)n=n.replace(i," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Jr(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&k(e,Zr(t.name||"v")),k(e,t),e}return"string"==typeof t?Zr(t):void 0}}var Zr=C(function(t){return{enterClass:"".concat(t,"-enter"),enterToClass:"".concat(t,"-enter-to"),enterActiveClass:"".concat(t,"-enter-active"),leaveClass:"".concat(t,"-leave"),leaveToClass:"".concat(t,"-leave-to"),leaveActiveClass:"".concat(t,"-leave-active")}}),to=Y&&!Z,eo="transition",no="animation",io="transition",ro="transitionend",oo="animation",ao="animationend";to&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(io="WebkitTransition",ro="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(oo="WebkitAnimation",ao="webkitAnimationEnd"));var so=Y?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Ao(t){so(function(){so(t)})}function lo(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Yr(t,e))}function co(t,e){t._transitionClasses&&x(t._transitionClasses,e),Xr(t,e)}function uo(t,e,n){var i=fo(t,e),r=i.type,o=i.timeout,a=i.propCount;if(!r)return n();var s=r===eo?ro:ao,A=0,l=function(){t.removeEventListener(s,c),n()},c=function(e){e.target===t&&++A>=a&&l()};setTimeout(function(){A<a&&l()},o+1),t.addEventListener(s,c)}var ho=/\b(transform|all)(,|$)/;function fo(t,e){var n,i=window.getComputedStyle(t),r=(i[io+"Delay"]||"").split(", "),o=(i[io+"Duration"]||"").split(", "),a=po(r,o),s=(i[oo+"Delay"]||"").split(", "),A=(i[oo+"Duration"]||"").split(", "),l=po(s,A),c=0,u=0;return e===eo?a>0&&(n=eo,c=a,u=o.length):e===no?l>0&&(n=no,c=l,u=A.length):u=(n=(c=Math.max(a,l))>0?a>l?eo:no:null)?n===eo?o.length:A.length:0,{type:n,timeout:c,propCount:u,hasTransform:n===eo&&ho.test(i[io+"Property"])}}function po(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map(function(e,n){return go(e)+go(t[n])}))}function go(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function mo(t,e){var n=t.elm;a(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var i=Jr(t.data.transition);if(!o(i)&&!a(n._enterCb)&&1===n.nodeType){for(var r=i.css,s=i.type,A=i.enterClass,u=i.enterToClass,h=i.enterActiveClass,d=i.appearClass,f=i.appearToClass,p=i.appearActiveClass,g=i.beforeEnter,v=i.enter,y=i.afterEnter,w=i.enterCancelled,x=i.beforeAppear,B=i.appear,b=i.afterAppear,C=i.appearCancelled,_=i.duration,S=ke,I=ke.$vnode;I&&I.parent;)S=I.context,I=I.parent;var T=!S._isMounted||!t.isRootInsert;if(!T||B||""===B){var M=T&&d?d:A,Q=T&&p?p:h,F=T&&f?f:u,k=T&&x||g,D=T&&l(B)?B:v,U=T&&b||y,E=T&&C||w,L=m(c(_)?_.enter:_);0;var O=!1!==r&&!Z,P=wo(D),N=n._enterCb=H(function(){O&&(co(n,F),co(n,Q)),N.cancelled?(O&&co(n,M),E&&E(n)):U&&U(n),n._enterCb=null});t.data.show||Wt(t,"insert",function(){var e=n.parentNode,i=e&&e._pending&&e._pending[t.key];i&&i.tag===t.tag&&i.elm._leaveCb&&i.elm._leaveCb(),D&&D(n,N)}),k&&k(n),O&&(lo(n,M),lo(n,Q),Ao(function(){co(n,M),N.cancelled||(lo(n,F),P||(yo(L)?setTimeout(N,L):uo(n,s,N)))})),t.data.show&&(e&&e(),D&&D(n,N)),O||P||N()}}}function vo(t,e){var n=t.elm;a(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var i=Jr(t.data.transition);if(o(i)||1!==n.nodeType)return e();if(!a(n._leaveCb)){var r=i.css,s=i.type,A=i.leaveClass,l=i.leaveToClass,u=i.leaveActiveClass,h=i.beforeLeave,d=i.leave,f=i.afterLeave,p=i.leaveCancelled,g=i.delayLeave,v=i.duration,y=!1!==r&&!Z,w=wo(d),x=m(c(v)?v.leave:v);0;var B=n._leaveCb=H(function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),y&&(co(n,l),co(n,u)),B.cancelled?(y&&co(n,A),p&&p(n)):(e(),f&&f(n)),n._leaveCb=null});g?g(b):b()}function b(){B.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),h&&h(n),y&&(lo(n,A),lo(n,u),Ao(function(){co(n,A),B.cancelled||(lo(n,l),w||(yo(x)?setTimeout(B,x):uo(n,s,B)))})),d&&d(n,B),y||w||B())}}function yo(t){return"number"==typeof t&&!isNaN(t)}function wo(t){if(o(t))return!1;var e=t.fns;return a(e)?wo(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function xo(t,e){!0!==e.data.show&&mo(e)}var Bo=function(t){var e,n,i={},l=t.modules,c=t.nodeOps;for(e=0;e<Ui.length;++e)for(i[Ui[e]]=[],n=0;n<l.length;++n)a(l[n][Ui[e]])&&i[Ui[e]].push(l[n][Ui[e]]);function u(t){var e=c.parentNode(t);a(e)&&c.removeChild(e,t)}function h(t,e,n,r,o,A,l){if(a(t.elm)&&a(A)&&(t=A[l]=mt(t)),t.isRootInsert=!o,!function(t,e,n,r){var o=t.data;if(a(o)){var A=a(t.componentInstance)&&o.keepAlive;if(a(o=o.hook)&&a(o=o.init)&&o(t,!1),a(t.componentInstance))return d(t,e),f(n,t.elm,r),s(A)&&function(t,e,n,r){for(var o,s=t;s.componentInstance;)if(s=s.componentInstance._vnode,a(o=s.data)&&a(o=o.transition)){for(o=0;o<i.activate.length;++o)i.activate[o](Di,s);e.push(s);break}f(n,t.elm,r)}(t,e,n,r),!0}}(t,e,n,r)){var u=t.data,h=t.children,g=t.tag;a(g)?(t.elm=t.ns?c.createElementNS(t.ns,g):c.createElement(g,t),y(t),p(t,h,e),a(u)&&m(t,e),f(n,t.elm,r)):s(t.isComment)?(t.elm=c.createComment(t.text),f(n,t.elm,r)):(t.elm=c.createTextNode(t.text),f(n,t.elm,r))}}function d(t,e){a(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,g(t)?(m(t,e),y(t)):(Fi(t),e.push(t))}function f(t,e,n){a(t)&&(a(n)?c.parentNode(n)===t&&c.insertBefore(t,e,n):c.appendChild(t,e))}function p(t,e,n){if(r(e))for(var i=0;i<e.length;++i)h(e[i],n,t.elm,null,!0,e,i);else A(t.text)&&c.appendChild(t.elm,c.createTextNode(String(t.text)))}function g(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return a(t.tag)}function m(t,n){for(var r=0;r<i.create.length;++r)i.create[r](Di,t);a(e=t.data.hook)&&(a(e.create)&&e.create(Di,t),a(e.insert)&&n.push(t))}function y(t){var e;if(a(e=t.fnScopeId))c.setStyleScope(t.elm,e);else for(var n=t;n;)a(e=n.context)&&a(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e),n=n.parent;a(e=ke)&&e!==t.context&&e!==t.fnContext&&a(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e)}function w(t,e,n,i,r,o){for(;i<=r;++i)h(n[i],o,t,e,!1,n,i)}function x(t){var e,n,r=t.data;if(a(r))for(a(e=r.hook)&&a(e=e.destroy)&&e(t),e=0;e<i.destroy.length;++e)i.destroy[e](t);if(a(e=t.children))for(n=0;n<t.children.length;++n)x(t.children[n])}function B(t,e,n){for(;e<=n;++e){var i=t[e];a(i)&&(a(i.tag)?(b(i),x(i)):u(i.elm))}}function b(t,e){if(a(e)||a(t.data)){var n,r=i.remove.length+1;for(a(e)?e.listeners+=r:e=function(t,e){function n(){0==--n.listeners&&u(t)}return n.listeners=e,n}(t.elm,r),a(n=t.componentInstance)&&a(n=n._vnode)&&a(n.data)&&b(n,e),n=0;n<i.remove.length;++n)i.remove[n](t,e);a(n=t.data.hook)&&a(n=n.remove)?n(t,e):e()}else u(t.elm)}function C(t,e,n,i){for(var r=n;r<i;r++){var o=e[r];if(a(o)&&Ei(t,o))return r}}function _(t,e,n,r,A,l){if(t!==e){a(e.elm)&&a(r)&&(e=r[A]=mt(e));var u=e.elm=t.elm;if(s(t.isAsyncPlaceholder))a(e.asyncFactory.resolved)?T(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(s(e.isStatic)&&s(t.isStatic)&&e.key===t.key&&(s(e.isCloned)||s(e.isOnce)))e.componentInstance=t.componentInstance;else{var d,f=e.data;a(f)&&a(d=f.hook)&&a(d=d.prepatch)&&d(t,e);var p=t.children,m=e.children;if(a(f)&&g(e)){for(d=0;d<i.update.length;++d)i.update[d](t,e);a(d=f.hook)&&a(d=d.update)&&d(t,e)}o(e.text)?a(p)&&a(m)?p!==m&&function(t,e,n,i,r){for(var s,A,l,u=0,d=0,f=e.length-1,p=e[0],g=e[f],m=n.length-1,v=n[0],y=n[m],x=!r;u<=f&&d<=m;)o(p)?p=e[++u]:o(g)?g=e[--f]:Ei(p,v)?(_(p,v,i,n,d),p=e[++u],v=n[++d]):Ei(g,y)?(_(g,y,i,n,m),g=e[--f],y=n[--m]):Ei(p,y)?(_(p,y,i,n,m),x&&c.insertBefore(t,p.elm,c.nextSibling(g.elm)),p=e[++u],y=n[--m]):Ei(g,v)?(_(g,v,i,n,d),x&&c.insertBefore(t,g.elm,p.elm),g=e[--f],v=n[++d]):(o(s)&&(s=Li(e,u,f)),o(A=a(v.key)?s[v.key]:C(v,e,u,f))?h(v,i,t,p.elm,!1,n,d):Ei(l=e[A],v)?(_(l,v,i,n,d),e[A]=void 0,x&&c.insertBefore(t,l.elm,p.elm)):h(v,i,t,p.elm,!1,n,d),v=n[++d]);u>f?w(t,o(n[m+1])?null:n[m+1].elm,n,d,m,i):d>m&&B(e,u,f)}(u,p,m,n,l):a(m)?(a(t.text)&&c.setTextContent(u,""),w(u,null,m,0,m.length-1,n)):a(p)?B(p,0,p.length-1):a(t.text)&&c.setTextContent(u,""):t.text!==e.text&&c.setTextContent(u,e.text),a(f)&&a(d=f.hook)&&a(d=d.postpatch)&&d(t,e)}}}function S(t,e,n){if(s(n)&&a(t.parent))t.parent.data.pendingInsert=e;else for(var i=0;i<e.length;++i)e[i].data.hook.insert(e[i])}var I=v("attrs,class,staticClass,staticStyle,key");function T(t,e,n,i){var r,o=e.tag,A=e.data,l=e.children;if(i=i||A&&A.pre,e.elm=t,s(e.isComment)&&a(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(a(A)&&(a(r=A.hook)&&a(r=r.init)&&r(e,!0),a(r=e.componentInstance)))return d(e,n),!0;if(a(o)){if(a(l))if(t.hasChildNodes())if(a(r=A)&&a(r=r.domProps)&&a(r=r.innerHTML)){if(r!==t.innerHTML)return!1}else{for(var c=!0,u=t.firstChild,h=0;h<l.length;h++){if(!u||!T(u,l[h],n,i)){c=!1;break}u=u.nextSibling}if(!c||u)return!1}else p(e,l,n);if(a(A)){var f=!1;for(var g in A)if(!I(g)){f=!0,m(e,n);break}!f&&A.class&&gn(A.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,r){if(!o(e)){var A,l=!1,u=[];if(o(t))l=!0,h(e,u);else{var d=a(t.nodeType);if(!d&&Ei(t,e))_(t,e,u,null,null,r);else{if(d){if(1===t.nodeType&&t.hasAttribute(R)&&(t.removeAttribute(R),n=!0),s(n)&&T(t,e,u))return S(e,u,!0),t;A=t,t=new ft(c.tagName(A).toLowerCase(),{},[],void 0,A)}var f=t.elm,p=c.parentNode(f);if(h(e,u,f._leaveCb?null:p,c.nextSibling(f)),a(e.parent))for(var m=e.parent,v=g(e);m;){for(var y=0;y<i.destroy.length;++y)i.destroy[y](m);if(m.elm=e.elm,v){for(var w=0;w<i.create.length;++w)i.create[w](Di,m);var b=m.data.hook.insert;if(b.merged)for(var C=1;C<b.fns.length;C++)b.fns[C]()}else Fi(m);m=m.parent}a(p)?B([t],0,0):a(t.tag)&&x(t)}}return S(e,u,l),e.elm}a(t)&&x(t)}}({nodeOps:Mi,modules:[ji,er,Ur,Or,$r,Y?{create:xo,activate:xo,remove:function(t,e){!0!==t.data.show?vo(t,e):e()}}:{}].concat(zi)});Z&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&Qo(t,"input")});var bo={inserted:function(t,e,n,i){"select"===n.tag?(i.elm&&!i.elm._vOptions?Wt(n,"postpatch",function(){bo.componentUpdated(t,e,n)}):Co(t,e,n.context),t._vOptions=[].map.call(t.options,Io)):("textarea"===n.tag||Ii(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",To),t.addEventListener("compositionend",Mo),t.addEventListener("change",Mo),Z&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Co(t,e,n.context);var i=t._vOptions,r=t._vOptions=[].map.call(t.options,Io);if(r.some(function(t,e){return!O(t,i[e])}))(t.multiple?e.value.some(function(t){return So(t,r)}):e.value!==e.oldValue&&So(e.value,r))&&Qo(t,"change")}}};function Co(t,e,n){_o(t,e,n),(J||tt)&&setTimeout(function(){_o(t,e,n)},0)}function _o(t,e,n){var i=e.value,r=t.multiple;if(!r||Array.isArray(i)){for(var o,a,s=0,A=t.options.length;s<A;s++)if(a=t.options[s],r)o=P(i,Io(a))>-1,a.selected!==o&&(a.selected=o);else if(O(Io(a),i))return void(t.selectedIndex!==s&&(t.selectedIndex=s));r||(t.selectedIndex=-1)}}function So(t,e){return e.every(function(e){return!O(e,t)})}function Io(t){return"_value"in t?t._value:t.value}function To(t){t.target.composing=!0}function Mo(t){t.target.composing&&(t.target.composing=!1,Qo(t.target,"input"))}function Qo(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Fo(t){return!t.componentInstance||t.data&&t.data.transition?t:Fo(t.componentInstance._vnode)}var ko={model:bo,show:{bind:function(t,e,n){var i=e.value,r=(n=Fo(n)).data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;i&&r?(n.data.show=!0,mo(n,function(){t.style.display=o})):t.style.display=i?o:"none"},update:function(t,e,n){var i=e.value;!i!=!e.oldValue&&((n=Fo(n)).data&&n.data.transition?(n.data.show=!0,i?mo(n,function(){t.style.display=t.__vOriginalDisplay}):vo(n,function(){t.style.display="none"})):t.style.display=i?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,i,r){r||(t.style.display=t.__vOriginalDisplay)}}},Do={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Uo(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Uo(Ie(e.children)):t}function Eo(t){var e={},n=t.$options;for(var i in n.propsData)e[i]=t[i];var r=n._parentListeners;for(var i in r)e[S(i)]=r[i];return e}function Lo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Oo=function(t){return t.tag||ge(t)},Po=function(t){return"show"===t.name},Ho={name:"transition",props:Do,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Oo)).length){0;var i=this.mode;0;var r=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return r;var o=Uo(r);if(!o)return r;if(this._leaving)return Lo(t,r);var a="__transition-".concat(this._uid,"-");o.key=null==o.key?o.isComment?a+"comment":a+o.tag:A(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var s=(o.data||(o.data={})).transition=Eo(this),l=this._vnode,c=Uo(l);if(o.data.directives&&o.data.directives.some(Po)&&(o.data.show=!0),c&&c.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(o,c)&&!ge(c)&&(!c.componentInstance||!c.componentInstance._vnode.isComment)){var u=c.data.transition=k({},s);if("out-in"===i)return this._leaving=!0,Wt(u,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),Lo(t,r);if("in-out"===i){if(ge(o))return l;var h,d=function(){h()};Wt(s,"afterEnter",d),Wt(s,"enterCancelled",d),Wt(u,"delayLeave",function(t){h=t})}}return r}}},No=k({tag:String,moveClass:String},Do);function Ro(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Vo(t){t.data.newPos=t.elm.getBoundingClientRect()}function zo(t){var e=t.data.pos,n=t.data.newPos,i=e.left-n.left,r=e.top-n.top;if(i||r){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate(".concat(i,"px,").concat(r,"px)"),o.transitionDuration="0s"}}delete No.mode;var Ko={Transition:Ho,TransitionGroup:{props:No,beforeMount:function(){var t=this,e=this._update;this._update=function(n,i){var r=De(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,r(),e.call(t,n,i)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],o=this.children=[],a=Eo(this),s=0;s<r.length;s++){if((c=r[s]).tag)if(null!=c.key&&0!==String(c.key).indexOf("__vlist"))o.push(c),n[c.key]=c,(c.data||(c.data={})).transition=a;else;}if(i){var A=[],l=[];for(s=0;s<i.length;s++){var c;(c=i[s]).data.transition=a,c.data.pos=c.elm.getBoundingClientRect(),n[c.key]?A.push(c):l.push(c)}this.kept=t(e,null,A),this.removed=l}return t(e,null,o)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(Ro),t.forEach(Vo),t.forEach(zo),this._reflow=document.body.offsetHeight,t.forEach(function(t){if(t.data.moved){var n=t.elm,i=n.style;lo(n,e),i.transform=i.WebkitTransform=i.transitionDuration="",n.addEventListener(ro,n._moveCb=function t(i){i&&i.target!==n||i&&!/transform$/.test(i.propertyName)||(n.removeEventListener(ro,t),n._moveCb=null,co(n,e))})}}))},methods:{hasMove:function(t,e){if(!to)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach(function(t){Xr(n,t)}),Yr(n,e),n.style.display="none",this.$el.appendChild(n);var i=fo(n);return this.$el.removeChild(n),this._hasMove=i.hasTransform}}}};Jn.config.mustUseProp=Ai,Jn.config.isReservedTag=Ci,Jn.config.isReservedAttr=ai,Jn.config.getTagNamespace=_i,Jn.config.isUnknownElement=function(t){if(!Y)return!0;if(Ci(t))return!1;if(t=t.toLowerCase(),null!=Si[t])return Si[t];var e=document.createElement(t);return t.indexOf("-")>-1?Si[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Si[t]=/HTMLUnknownElement/.test(e.toString())},k(Jn.options.directives,ko),k(Jn.options.components,Ko),Jn.prototype.__patch__=Y?Bo:U,Jn.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=pt),Le(t,"beforeMount");var i={before:function(){t._isMounted&&!t._isDestroyed&&Le(t,"beforeUpdate")}};new vn(t,function(){t._update(t._render(),n)},U,i,!0),n=!1;var r=t._preWatchers;if(r)for(var o=0;o<r.length;o++)r[o].run();return null==t.$vnode&&(t._isMounted=!0,Le(t,"mounted")),t}(this,t=t&&Y?Ti(t):void 0,e)},Y&&setTimeout(function(){K.devtools&&At&&At.emit("init",Jn)},0);var Go=/\{\{((?:.|\r?\n)+?)\}\}/g,Wo=/[-.*+?^${}()|[\]\/\\]/g,jo=C(function(t){var e=t[0].replace(Wo,"\\$&"),n=t[1].replace(Wo,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")});function $o(t,e){var n=e?jo(e):Go;if(n.test(t)){for(var i,r,o,a=[],s=[],A=n.lastIndex=0;i=n.exec(t);){(r=i.index)>A&&(s.push(o=t.slice(A,r)),a.push(JSON.stringify(o)));var l=ir(i[1].trim());a.push("_s(".concat(l,")")),s.push({"@binding":l}),A=r+i[0].length}return A<t.length&&(s.push(o=t.slice(A)),a.push(JSON.stringify(o))),{expression:a.join("+"),tokens:s}}}var qo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=pr(t,"class");n&&(t.staticClass=JSON.stringify(n.replace(/\s+/g," ").trim()));var i=fr(t,"class",!1);i&&(t.classBinding=i)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:".concat(t.staticClass,",")),t.classBinding&&(e+="class:".concat(t.classBinding,",")),e}};var Yo,Xo={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=pr(t,"style");n&&(t.staticStyle=JSON.stringify(Pr(n)));var i=fr(t,"style",!1);i&&(t.styleBinding=i)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:".concat(t.staticStyle,",")),t.styleBinding&&(e+="style:(".concat(t.styleBinding,"),")),e}},Jo=function(t){return(Yo=Yo||document.createElement("div")).innerHTML=t,Yo.textContent},Zo=v("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ta=v("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),ea=v("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),na=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ia=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+?\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ra="[a-zA-Z_][\\-\\.0-9_a-zA-Z".concat(G.source,"]*"),oa="((?:".concat(ra,"\\:)?").concat(ra,")"),aa=new RegExp("^<".concat(oa)),sa=/^\s*(\/?)>/,Aa=new RegExp("^<\\/".concat(oa,"[^>]*>")),la=/^<!DOCTYPE [^>]+>/i,ca=/^<!\--/,ua=/^<!\[/,ha=v("script,style,textarea",!0),da={},fa={"&lt;":"<","&gt;":">","&quot;":'"',"&amp;":"&","&#10;":"\n","&#9;":"\t","&#39;":"'"},pa=/&(?:lt|gt|quot|amp|#39);/g,ga=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,ma=v("pre,textarea",!0),va=function(t,e){return t&&ma(t)&&"\n"===e[0]};function ya(t,e){var n=e?ga:pa;return t.replace(n,function(t){return fa[t]})}function wa(t,e){for(var n,i,r=[],o=e.expectHTML,a=e.isUnaryTag||E,s=e.canBeLeftOpenTag||E,A=0,l=function(){if(n=t,i&&ha(i)){var l=0,h=i.toLowerCase(),d=da[h]||(da[h]=new RegExp("([\\s\\S]*?)(</"+h+"[^>]*>)","i"));B=t.replace(d,function(t,n,i){return l=i.length,ha(h)||"noscript"===h||(n=n.replace(/<!\--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),va(h,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});A+=t.length-B.length,t=B,u(h,A-l,A)}else{var f=t.indexOf("<");if(0===f){if(ca.test(t)){var p=t.indexOf("--\x3e");if(p>=0)return e.shouldKeepComment&&e.comment&&e.comment(t.substring(4,p),A,A+p+3),c(p+3),"continue"}if(ua.test(t)){var g=t.indexOf("]>");if(g>=0)return c(g+2),"continue"}var m=t.match(la);if(m)return c(m[0].length),"continue";var v=t.match(Aa);if(v){var y=A;return c(v[0].length),u(v[1],y,A),"continue"}var w=function(){var e=t.match(aa);if(e){var n={tagName:e[1],attrs:[],start:A};c(e[0].length);for(var i=void 0,r=void 0;!(i=t.match(sa))&&(r=t.match(ia)||t.match(na));)r.start=A,c(r[0].length),r.end=A,n.attrs.push(r);if(i)return n.unarySlash=i[1],c(i[0].length),n.end=A,n}}();if(w)return function(t){var n=t.tagName,A=t.unarySlash;o&&("p"===i&&ea(n)&&u(i),s(n)&&i===n&&u(n));for(var l=a(n)||!!A,c=t.attrs.length,h=new Array(c),d=0;d<c;d++){var f=t.attrs[d],p=f[3]||f[4]||f[5]||"",g="a"===n&&"href"===f[1]?e.shouldDecodeNewlinesForHref:e.shouldDecodeNewlines;h[d]={name:f[1],value:ya(p,g)}}l||(r.push({tag:n,lowerCasedTag:n.toLowerCase(),attrs:h,start:t.start,end:t.end}),i=n);e.start&&e.start(n,h,l,t.start,t.end)}(w),va(w.tagName,t)&&c(1),"continue"}var x=void 0,B=void 0,b=void 0;if(f>=0){for(B=t.slice(f);!(Aa.test(B)||aa.test(B)||ca.test(B)||ua.test(B)||(b=B.indexOf("<",1))<0);)f+=b,B=t.slice(f);x=t.substring(0,f)}f<0&&(x=t),x&&c(x.length),e.chars&&x&&e.chars(x,A-x.length,A)}if(t===n)return e.chars&&e.chars(t),"break"};t;){if("break"===l())break}function c(e){A+=e,t=t.substring(e)}function u(t,n,o){var a,s;if(null==n&&(n=A),null==o&&(o=A),t)for(s=t.toLowerCase(),a=r.length-1;a>=0&&r[a].lowerCasedTag!==s;a--);else a=0;if(a>=0){for(var l=r.length-1;l>=a;l--)e.end&&e.end(r[l].tag,n,o);r.length=a,i=a&&r[a-1].tag}else"br"===s?e.start&&e.start(t,[],!0,n,o):"p"===s&&(e.start&&e.start(t,[],!1,n,o),e.end&&e.end(t,n,o))}u()}var xa,Ba,ba,Ca,_a,Sa,Ia,Ta,Ma=/^@|^v-on:/,Qa=/^v-|^@|^:|^#/,Fa=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,ka=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Da=/^\(|\)$/g,Ua=/^\[.*\]$/,Ea=/:(.*)$/,La=/^:|^\.|^v-bind:/,Oa=/\.[^.\]]+(?=[^\]]*$)/g,Pa=/^v-slot(:|$)|^#/,Ha=/[\r\n]/,Na=/[ \f\t\r\n]+/g,Ra=C(Jo),Va="_empty_";function za(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,i=t.length;n<i;n++)e[t[n].name]=t[n].value;return e}(e),rawAttrsMap:{},parent:n,children:[]}}function Ka(t,e){xa=e.warn||or,Sa=e.isPreTag||E,Ia=e.mustUseProp||E,Ta=e.getTagNamespace||E;var n=e.isReservedTag||E;(function(t){return!(!(t.component||t.attrsMap[":is"]||t.attrsMap["v-bind:is"])&&(t.attrsMap.is?n(t.attrsMap.is):n(t.tag)))}),ba=ar(e.modules,"transformNode"),Ca=ar(e.modules,"preTransformNode"),_a=ar(e.modules,"postTransformNode"),Ba=e.delimiters;var i,r,o=[],a=!1!==e.preserveWhitespace,s=e.whitespace,A=!1,l=!1;function c(t){if(u(t),A||t.processed||(t=Ga(t,e)),o.length||t===i||i.if&&(t.elseif||t.else)&&ja(i,{exp:t.elseif,block:t}),r&&!t.forbidden)if(t.elseif||t.else)a=t,(s=function(t){var e=t.length;for(;e--;){if(1===t[e].type)return t[e];t.pop()}}(r.children))&&s.if&&ja(s,{exp:a.elseif,block:a});else{if(t.slotScope){var n=t.slotTarget||'"default"';(r.scopedSlots||(r.scopedSlots={}))[n]=t}r.children.push(t),t.parent=r}var a,s;t.children=t.children.filter(function(t){return!t.slotScope}),u(t),t.pre&&(A=!1),Sa(t.tag)&&(l=!1);for(var c=0;c<_a.length;c++)_a[c](t,e)}function u(t){if(!l)for(var e=void 0;(e=t.children[t.children.length-1])&&3===e.type&&" "===e.text;)t.children.pop()}return wa(t,{warn:xa,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,outputSourceRange:e.outputSourceRange,start:function(t,n,a,s,u){var h=r&&r.ns||Ta(t);J&&"svg"===h&&(n=function(t){for(var e=[],n=0;n<t.length;n++){var i=t[n];Ya.test(i.name)||(i.name=i.name.replace(Xa,""),e.push(i))}return e}(n));var d,f=za(t,n,r);h&&(f.ns=h),"style"!==(d=f).tag&&("script"!==d.tag||d.attrsMap.type&&"text/javascript"!==d.attrsMap.type)||st()||(f.forbidden=!0);for(var p=0;p<Ca.length;p++)f=Ca[p](f,e)||f;A||(!function(t){null!=pr(t,"v-pre")&&(t.pre=!0)}(f),f.pre&&(A=!0)),Sa(f.tag)&&(l=!0),A?function(t){var e=t.attrsList,n=e.length;if(n)for(var i=t.attrs=new Array(n),r=0;r<n;r++)i[r]={name:e[r].name,value:JSON.stringify(e[r].value)},null!=e[r].start&&(i[r].start=e[r].start,i[r].end=e[r].end);else t.pre||(t.plain=!0)}(f):f.processed||(Wa(f),function(t){var e=pr(t,"v-if");if(e)t.if=e,ja(t,{exp:e,block:t});else{null!=pr(t,"v-else")&&(t.else=!0);var n=pr(t,"v-else-if");n&&(t.elseif=n)}}(f),function(t){null!=pr(t,"v-once")&&(t.once=!0)}(f)),i||(i=f),a?c(f):(r=f,o.push(f))},end:function(t,e,n){var i=o[o.length-1];o.length-=1,r=o[o.length-1],c(i)},chars:function(t,e,n){if(r&&(!J||"textarea"!==r.tag||r.attrsMap.placeholder!==t)){var i,o=r.children;if(t=l||t.trim()?"script"===(i=r).tag||"style"===i.tag?t:Ra(t):o.length?s?"condense"===s&&Ha.test(t)?"":" ":a?" ":"":""){l||"condense"!==s||(t=t.replace(Na," "));var c=void 0,u=void 0;!A&&" "!==t&&(c=$o(t,Ba))?u={type:2,expression:c.expression,tokens:c.tokens,text:t}:" "===t&&o.length&&" "===o[o.length-1].text||(u={type:3,text:t}),u&&o.push(u)}}},comment:function(t,e,n){if(r){var i={type:3,text:t,isComment:!0};0,r.children.push(i)}}}),i}function Ga(t,e){var n,i;!function(t){var e=fr(t,"key");if(e){t.key=e}}(t),t.plain=!t.key&&!t.scopedSlots&&!t.attrsList.length,(i=fr(n=t,"ref"))&&(n.ref=i,n.refInFor=function(t){for(var e=t;e;){if(void 0!==e.for)return!0;e=e.parent}return!1}(n)),function(t){var e;"template"===t.tag?(e=pr(t,"scope"),t.slotScope=e||pr(t,"slot-scope")):(e=pr(t,"slot-scope"))&&(t.slotScope=e);var n=fr(t,"slot");n&&(t.slotTarget='""'===n?'"default"':n,t.slotTargetDynamic=!(!t.attrsMap[":slot"]&&!t.attrsMap["v-bind:slot"]),"template"===t.tag||t.slotScope||Ar(t,"slot",n,dr(t,"slot")));if("template"===t.tag){var i=gr(t,Pa);if(i){0;var r=$a(i),o=r.name,a=r.dynamic;t.slotTarget=o,t.slotTargetDynamic=a,t.slotScope=i.value||Va}}else{var i=gr(t,Pa);if(i){0;var s=t.scopedSlots||(t.scopedSlots={}),A=$a(i),l=A.name,a=A.dynamic,c=s[l]=za("template",[],t);c.slotTarget=l,c.slotTargetDynamic=a,c.children=t.children.filter(function(t){if(!t.slotScope)return t.parent=c,!0}),c.slotScope=i.value||Va,t.children=[],t.plain=!1}}}(t),function(t){"slot"===t.tag&&(t.slotName=fr(t,"name"))}(t),function(t){var e;(e=fr(t,"is"))&&(t.component=e);null!=pr(t,"inline-template")&&(t.inlineTemplate=!0)}(t);for(var r=0;r<ba.length;r++)t=ba[r](t,e)||t;return function(t){var e,n,i,r,o,a,s,A,l=t.attrsList;for(e=0,n=l.length;e<n;e++){if(i=r=l[e].name,o=l[e].value,Qa.test(i))if(t.hasBindings=!0,(a=qa(i.replace(Qa,"")))&&(i=i.replace(Oa,"")),La.test(i))i=i.replace(La,""),o=ir(o),(A=Ua.test(i))&&(i=i.slice(1,-1)),a&&(a.prop&&!A&&"innerHtml"===(i=S(i))&&(i="innerHTML"),a.camel&&!A&&(i=S(i)),a.sync&&(s=yr(o,"$event"),A?hr(t,'"update:"+('.concat(i,")"),s,null,!1,0,l[e],!0):(hr(t,"update:".concat(S(i)),s,null,!1,0,l[e]),M(i)!==S(i)&&hr(t,"update:".concat(M(i)),s,null,!1,0,l[e])))),a&&a.prop||!t.component&&Ia(t.tag,t.attrsMap.type,i)?sr(t,i,o,l[e],A):Ar(t,i,o,l[e],A);else if(Ma.test(i))i=i.replace(Ma,""),(A=Ua.test(i))&&(i=i.slice(1,-1)),hr(t,i,o,a,!1,0,l[e],A);else{var c=(i=i.replace(Qa,"")).match(Ea),u=c&&c[1];A=!1,u&&(i=i.slice(0,-(u.length+1)),Ua.test(u)&&(u=u.slice(1,-1),A=!0)),cr(t,i,r,o,u,A,a,l[e])}else Ar(t,i,JSON.stringify(o),l[e]),!t.component&&"muted"===i&&Ia(t.tag,t.attrsMap.type,i)&&sr(t,i,"true",l[e])}}(t),t}function Wa(t){var e;if(e=pr(t,"v-for")){var n=function(t){var e=t.match(Fa);if(!e)return;var n={};n.for=e[2].trim();var i=e[1].trim().replace(Da,""),r=i.match(ka);r?(n.alias=i.replace(ka,"").trim(),n.iterator1=r[1].trim(),r[2]&&(n.iterator2=r[2].trim())):n.alias=i;return n}(e);n&&k(t,n)}}function ja(t,e){t.ifConditions||(t.ifConditions=[]),t.ifConditions.push(e)}function $a(t){var e=t.name.replace(Pa,"");return e||"#"!==t.name[0]&&(e="default"),Ua.test(e)?{name:e.slice(1,-1),dynamic:!0}:{name:'"'.concat(e,'"'),dynamic:!1}}function qa(t){var e=t.match(Oa);if(e){var n={};return e.forEach(function(t){n[t.slice(1)]=!0}),n}}var Ya=/^xmlns:NS\d+/,Xa=/^NS\d+:/;function Ja(t){return za(t.tag,t.attrsList.slice(),t.parent)}var Za=[qo,Xo,{preTransformNode:function(t,e){if("input"===t.tag){var n=t.attrsMap;if(!n["v-model"])return;var i=void 0;if((n[":type"]||n["v-bind:type"])&&(i=fr(t,"type")),n.type||i||!n["v-bind"]||(i="(".concat(n["v-bind"],").type")),i){var r=pr(t,"v-if",!0),o=r?"&&(".concat(r,")"):"",a=null!=pr(t,"v-else",!0),s=pr(t,"v-else-if",!0),A=Ja(t);Wa(A),lr(A,"type","checkbox"),Ga(A,e),A.processed=!0,A.if="(".concat(i,")==='checkbox'")+o,ja(A,{exp:A.if,block:A});var l=Ja(t);pr(l,"v-for",!0),lr(l,"type","radio"),Ga(l,e),ja(A,{exp:"(".concat(i,")==='radio'")+o,block:l});var c=Ja(t);return pr(c,"v-for",!0),lr(c,":type",i),Ga(c,e),ja(A,{exp:r,block:c}),a?A.else=!0:s&&(A.elseif=s),A}}}}];var ts,es,ns={expectHTML:!0,modules:Za,directives:{model:function(t,e,n){n;var i=e.value,r=e.modifiers,o=t.tag,a=t.attrsMap.type;if(t.component)return vr(t,i,r),!1;if("select"===o)!function(t,e,n){var i=n&&n.number,r='Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;'+"return ".concat(i?"_n(val)":"val","})"),o="var $$selectedVal = ".concat(r,";");o="".concat(o," ").concat(yr(e,"$event.target.multiple ? $$selectedVal : $$selectedVal[0]")),hr(t,"change",o,null,!0)}(t,i,r);else if("input"===o&&"checkbox"===a)!function(t,e,n){var i=n&&n.number,r=fr(t,"value")||"null",o=fr(t,"true-value")||"true",a=fr(t,"false-value")||"false";sr(t,"checked","Array.isArray(".concat(e,")")+"?_i(".concat(e,",").concat(r,")>-1")+("true"===o?":(".concat(e,")"):":_q(".concat(e,",").concat(o,")"))),hr(t,"change","var $$a=".concat(e,",")+"$$el=$event.target,"+"$$c=$$el.checked?(".concat(o,"):(").concat(a,");")+"if(Array.isArray($$a)){"+"var $$v=".concat(i?"_n("+r+")":r,",")+"$$i=_i($$a,$$v);"+"if($$el.checked){$$i<0&&(".concat(yr(e,"$$a.concat([$$v])"),")}")+"else{$$i>-1&&(".concat(yr(e,"$$a.slice(0,$$i).concat($$a.slice($$i+1))"),")}")+"}else{".concat(yr(e,"$$c"),"}"),null,!0)}(t,i,r);else if("input"===o&&"radio"===a)!function(t,e,n){var i=n&&n.number,r=fr(t,"value")||"null";r=i?"_n(".concat(r,")"):r,sr(t,"checked","_q(".concat(e,",").concat(r,")")),hr(t,"change",yr(e,r),null,!0)}(t,i,r);else if("input"===o||"textarea"===o)!function(t,e,n){var i=t.attrsMap.type,r=n||{},o=r.lazy,a=r.number,s=r.trim,A=!o&&"range"!==i,l=o?"change":"range"===i?Sr:"input",c="$event.target.value";s&&(c="$event.target.value.trim()"),a&&(c="_n(".concat(c,")"));var u=yr(e,c);A&&(u="if($event.target.composing)return;".concat(u)),sr(t,"value","(".concat(e,")")),hr(t,l,u,null,!0),(s||a)&&hr(t,"blur","$forceUpdate()")}(t,i,r);else if(!K.isReservedTag(o))return vr(t,i,r),!1;return!0},text:function(t,e){e.value&&sr(t,"textContent","_s(".concat(e.value,")"),e)},html:function(t,e){e.value&&sr(t,"innerHTML","_s(".concat(e.value,")"),e)}},isPreTag:function(t){return"pre"===t},isUnaryTag:Zo,mustUseProp:Ai,canBeLeftOpenTag:ta,isReservedTag:Ci,getTagNamespace:_i,staticKeys:function(t){return t.reduce(function(t,e){return t.concat(e.staticKeys||[])},[]).join(",")}(Za)},is=C(function(t){return v("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(t?","+t:""))});function rs(t,e){t&&(ts=is(e.staticKeys||""),es=e.isReservedTag||E,function t(e){e.static=function(t){if(2===t.type)return!1;if(3===t.type)return!0;return!(!t.pre&&(t.hasBindings||t.if||t.for||y(t.tag)||!es(t.tag)||function(t){for(;t.parent;){if("template"!==(t=t.parent).tag)return!1;if(t.for)return!0}return!1}(t)||!Object.keys(t).every(ts)))}(e);if(1===e.type){if(!es(e.tag)&&"slot"!==e.tag&&null==e.attrsMap["inline-template"])return;for(var n=0,i=e.children.length;n<i;n++){var r=e.children[n];t(r),r.static||(e.static=!1)}if(e.ifConditions)for(var n=1,i=e.ifConditions.length;n<i;n++){var o=e.ifConditions[n].block;t(o),o.static||(e.static=!1)}}}(t),function t(e,n){if(1===e.type){if((e.static||e.once)&&(e.staticInFor=n),e.static&&e.children.length&&(1!==e.children.length||3!==e.children[0].type))return void(e.staticRoot=!0);if(e.staticRoot=!1,e.children)for(var i=0,r=e.children.length;i<r;i++)t(e.children[i],n||!!e.for);if(e.ifConditions)for(var i=1,r=e.ifConditions.length;i<r;i++)t(e.ifConditions[i].block,n)}}(t,!1))}var os=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,as=/\([^)]*?\);*$/,ss=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,As={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},ls={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},cs=function(t){return"if(".concat(t,")return null;")},us={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:cs("$event.target !== $event.currentTarget"),ctrl:cs("!$event.ctrlKey"),shift:cs("!$event.shiftKey"),alt:cs("!$event.altKey"),meta:cs("!$event.metaKey"),left:cs("'button' in $event && $event.button !== 0"),middle:cs("'button' in $event && $event.button !== 1"),right:cs("'button' in $event && $event.button !== 2")};function hs(t,e){var n=e?"nativeOn:":"on:",i="",r="";for(var o in t){var a=ds(t[o]);t[o]&&t[o].dynamic?r+="".concat(o,",").concat(a,","):i+='"'.concat(o,'":').concat(a,",")}return i="{".concat(i.slice(0,-1),"}"),r?n+"_d(".concat(i,",[").concat(r.slice(0,-1),"])"):n+i}function ds(t){if(!t)return"function(){}";if(Array.isArray(t))return"[".concat(t.map(function(t){return ds(t)}).join(","),"]");var e=ss.test(t.value),n=os.test(t.value),i=ss.test(t.value.replace(as,""));if(t.modifiers){var r="",o="",a=[],s=function(e){if(us[e])o+=us[e],As[e]&&a.push(e);else if("exact"===e){var n=t.modifiers;o+=cs(["ctrl","shift","alt","meta"].filter(function(t){return!n[t]}).map(function(t){return"$event.".concat(t,"Key")}).join("||"))}else a.push(e)};for(var A in t.modifiers)s(A);a.length&&(r+=function(t){return"if(!$event.type.indexOf('key')&&"+"".concat(t.map(fs).join("&&"),")return null;")}(a)),o&&(r+=o);var l=e?"return ".concat(t.value,".apply(null, arguments)"):n?"return (".concat(t.value,").apply(null, arguments)"):i?"return ".concat(t.value):t.value;return"function($event){".concat(r).concat(l,"}")}return e||n?t.value:"function($event){".concat(i?"return ".concat(t.value):t.value,"}")}function fs(t){var e=parseInt(t,10);if(e)return"$event.keyCode!==".concat(e);var n=As[t],i=ls[t];return"_k($event.keyCode,"+"".concat(JSON.stringify(t),",")+"".concat(JSON.stringify(n),",")+"$event.key,"+"".concat(JSON.stringify(i))+")"}var ps={on:function(t,e){t.wrapListeners=function(t){return"_g(".concat(t,",").concat(e.value,")")}},bind:function(t,e){t.wrapData=function(n){return"_b(".concat(n,",'").concat(t.tag,"',").concat(e.value,",").concat(e.modifiers&&e.modifiers.prop?"true":"false").concat(e.modifiers&&e.modifiers.sync?",true":"",")")}},cloak:U},gs=function(){return function(t){this.options=t,this.warn=t.warn||or,this.transforms=ar(t.modules,"transformCode"),this.dataGenFns=ar(t.modules,"genData"),this.directives=k(k({},ps),t.directives);var e=t.isReservedTag||E;this.maybeComponent=function(t){return!!t.component||!e(t.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1}}();function ms(t,e){var n=new gs(e),i=t?"script"===t.tag?"null":vs(t,n):'_c("div")';return{render:"with(this){return ".concat(i,"}"),staticRenderFns:n.staticRenderFns}}function vs(t,e){if(t.parent&&(t.pre=t.pre||t.parent.pre),t.staticRoot&&!t.staticProcessed)return ys(t,e);if(t.once&&!t.onceProcessed)return ws(t,e);if(t.for&&!t.forProcessed)return Bs(t,e);if(t.if&&!t.ifProcessed)return xs(t,e);if("template"!==t.tag||t.slotTarget||e.pre){if("slot"===t.tag)return function(t,e){var n=t.slotName||'"default"',i=Ss(t,e),r="_t(".concat(n).concat(i?",function(){return ".concat(i,"}"):""),o=t.attrs||t.dynamicAttrs?Ms((t.attrs||[]).concat(t.dynamicAttrs||[]).map(function(t){return{name:S(t.name),value:t.value,dynamic:t.dynamic}})):null,a=t.attrsMap["v-bind"];!o&&!a||i||(r+=",null");o&&(r+=",".concat(o));a&&(r+="".concat(o?"":",null",",").concat(a));return r+")"}(t,e);var n=void 0;if(t.component)n=function(t,e,n){var i=e.inlineTemplate?null:Ss(e,n,!0);return"_c(".concat(t,",").concat(bs(e,n)).concat(i?",".concat(i):"",")")}(t.component,t,e);else{var i=void 0,r=e.maybeComponent(t);(!t.plain||t.pre&&r)&&(i=bs(t,e));var o=void 0,a=e.options.bindings;r&&a&&!1!==a.__isScriptSetup&&(o=function(t,e){var n=S(e),i=I(n),r=function(r){return t[e]===r?e:t[n]===r?n:t[i]===r?i:void 0},o=r("setup-const")||r("setup-reactive-const");if(o)return o;var a=r("setup-let")||r("setup-ref")||r("setup-maybe-ref");if(a)return a}(a,t.tag)),o||(o="'".concat(t.tag,"'"));var s=t.inlineTemplate?null:Ss(t,e,!0);n="_c(".concat(o).concat(i?",".concat(i):"").concat(s?",".concat(s):"",")")}for(var A=0;A<e.transforms.length;A++)n=e.transforms[A](t,n);return n}return Ss(t,e)||"void 0"}function ys(t,e){t.staticProcessed=!0;var n=e.pre;return t.pre&&(e.pre=t.pre),e.staticRenderFns.push("with(this){return ".concat(vs(t,e),"}")),e.pre=n,"_m(".concat(e.staticRenderFns.length-1).concat(t.staticInFor?",true":"",")")}function ws(t,e){if(t.onceProcessed=!0,t.if&&!t.ifProcessed)return xs(t,e);if(t.staticInFor){for(var n="",i=t.parent;i;){if(i.for){n=i.key;break}i=i.parent}return n?"_o(".concat(vs(t,e),",").concat(e.onceId++,",").concat(n,")"):vs(t,e)}return ys(t,e)}function xs(t,e,n,i){return t.ifProcessed=!0,function t(e,n,i,r){if(!e.length)return r||"_e()";var o=e.shift();return o.exp?"(".concat(o.exp,")?").concat(a(o.block),":").concat(t(e,n,i,r)):"".concat(a(o.block));function a(t){return i?i(t,n):t.once?ws(t,n):vs(t,n)}}(t.ifConditions.slice(),e,n,i)}function Bs(t,e,n,i){var r=t.for,o=t.alias,a=t.iterator1?",".concat(t.iterator1):"",s=t.iterator2?",".concat(t.iterator2):"";return t.forProcessed=!0,"".concat(i||"_l","((").concat(r,"),")+"function(".concat(o).concat(a).concat(s,"){")+"return ".concat((n||vs)(t,e))+"})"}function bs(t,e){var n="{",i=function(t,e){var n=t.directives;if(!n)return;var i,r,o,a,s="directives:[",A=!1;for(i=0,r=n.length;i<r;i++){o=n[i],a=!0;var l=e.directives[o.name];l&&(a=!!l(t,o,e.warn)),a&&(A=!0,s+='{name:"'.concat(o.name,'",rawName:"').concat(o.rawName,'"').concat(o.value?",value:(".concat(o.value,"),expression:").concat(JSON.stringify(o.value)):"").concat(o.arg?",arg:".concat(o.isDynamicArg?o.arg:'"'.concat(o.arg,'"')):"").concat(o.modifiers?",modifiers:".concat(JSON.stringify(o.modifiers)):"","},"))}if(A)return s.slice(0,-1)+"]"}(t,e);i&&(n+=i+","),t.key&&(n+="key:".concat(t.key,",")),t.ref&&(n+="ref:".concat(t.ref,",")),t.refInFor&&(n+="refInFor:true,"),t.pre&&(n+="pre:true,"),t.component&&(n+='tag:"'.concat(t.tag,'",'));for(var r=0;r<e.dataGenFns.length;r++)n+=e.dataGenFns[r](t);if(t.attrs&&(n+="attrs:".concat(Ms(t.attrs),",")),t.props&&(n+="domProps:".concat(Ms(t.props),",")),t.events&&(n+="".concat(hs(t.events,!1),",")),t.nativeEvents&&(n+="".concat(hs(t.nativeEvents,!0),",")),t.slotTarget&&!t.slotScope&&(n+="slot:".concat(t.slotTarget,",")),t.scopedSlots&&(n+="".concat(function(t,e,n){var i=t.for||Object.keys(e).some(function(t){var n=e[t];return n.slotTargetDynamic||n.if||n.for||Cs(n)}),r=!!t.if;if(!i)for(var o=t.parent;o;){if(o.slotScope&&o.slotScope!==Va||o.for){i=!0;break}o.if&&(r=!0),o=o.parent}var a=Object.keys(e).map(function(t){return _s(e[t],n)}).join(",");return"scopedSlots:_u([".concat(a,"]").concat(i?",null,true":"").concat(!i&&r?",null,false,".concat(function(t){var e=5381,n=t.length;for(;n;)e=33*e^t.charCodeAt(--n);return e>>>0}(a)):"",")")}(t,t.scopedSlots,e),",")),t.model&&(n+="model:{value:".concat(t.model.value,",callback:").concat(t.model.callback,",expression:").concat(t.model.expression,"},")),t.inlineTemplate){var o=function(t,e){var n=t.children[0];0;if(n&&1===n.type){var i=ms(n,e.options);return"inlineTemplate:{render:function(){".concat(i.render,"},staticRenderFns:[").concat(i.staticRenderFns.map(function(t){return"function(){".concat(t,"}")}).join(","),"]}")}}(t,e);o&&(n+="".concat(o,","))}return n=n.replace(/,$/,"")+"}",t.dynamicAttrs&&(n="_b(".concat(n,',"').concat(t.tag,'",').concat(Ms(t.dynamicAttrs),")")),t.wrapData&&(n=t.wrapData(n)),t.wrapListeners&&(n=t.wrapListeners(n)),n}function Cs(t){return 1===t.type&&("slot"===t.tag||t.children.some(Cs))}function _s(t,e){var n=t.attrsMap["slot-scope"];if(t.if&&!t.ifProcessed&&!n)return xs(t,e,_s,"null");if(t.for&&!t.forProcessed)return Bs(t,e,_s);var i=t.slotScope===Va?"":String(t.slotScope),r="function(".concat(i,"){")+"return ".concat("template"===t.tag?t.if&&n?"(".concat(t.if,")?").concat(Ss(t,e)||"undefined",":undefined"):Ss(t,e)||"undefined":vs(t,e),"}"),o=i?"":",proxy:true";return"{key:".concat(t.slotTarget||'"default"',",fn:").concat(r).concat(o,"}")}function Ss(t,e,n,i,r){var o=t.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag){var s=n?e.maybeComponent(a)?",1":",0":"";return"".concat((i||vs)(a,e)).concat(s)}var A=n?function(t,e){for(var n=0,i=0;i<t.length;i++){var r=t[i];if(1===r.type){if(Is(r)||r.ifConditions&&r.ifConditions.some(function(t){return Is(t.block)})){n=2;break}(e(r)||r.ifConditions&&r.ifConditions.some(function(t){return e(t.block)}))&&(n=1)}}return n}(o,e.maybeComponent):0,l=r||Ts;return"[".concat(o.map(function(t){return l(t,e)}).join(","),"]").concat(A?",".concat(A):"")}}function Is(t){return void 0!==t.for||"template"===t.tag||"slot"===t.tag}function Ts(t,e){return 1===t.type?vs(t,e):3===t.type&&t.isComment?(i=t,"_e(".concat(JSON.stringify(i.text),")")):"_v(".concat(2===(n=t).type?n.expression:Qs(JSON.stringify(n.text)),")");var n,i}function Ms(t){for(var e="",n="",i=0;i<t.length;i++){var r=t[i],o=Qs(r.value);r.dynamic?n+="".concat(r.name,",").concat(o,","):e+='"'.concat(r.name,'":').concat(o,",")}return e="{".concat(e.slice(0,-1),"}"),n?"_d(".concat(e,",[").concat(n.slice(0,-1),"])"):e}function Qs(t){return t.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)");function Fs(t,e){try{return new Function(t)}catch(n){return e.push({err:n,code:t}),U}}function ks(t){var e=Object.create(null);return function(n,i,r){(i=k({},i)).warn;delete i.warn;var o=i.delimiters?String(i.delimiters)+n:n;if(e[o])return e[o];var a=t(n,i);var s={},A=[];return s.render=Fs(a.render,A),s.staticRenderFns=a.staticRenderFns.map(function(t){return Fs(t,A)}),e[o]=s}}var Ds,Us,Es=(Ds=function(t,e){var n=Ka(t.trim(),e);!1!==e.optimize&&rs(n,e);var i=ms(n,e);return{ast:n,render:i.render,staticRenderFns:i.staticRenderFns}},function(t){function e(e,n){var i=Object.create(t),r=[],o=[],a=function(t,e,n){(n?o:r).push(t)};if(n)for(var s in n.modules&&(i.modules=(t.modules||[]).concat(n.modules)),n.directives&&(i.directives=k(Object.create(t.directives||null),n.directives)),n)"modules"!==s&&"directives"!==s&&(i[s]=n[s]);i.warn=a;var A=Ds(e.trim(),i);return A.errors=r,A.tips=o,A}return{compile:e,compileToFunctions:ks(e)}})(ns).compileToFunctions;function Ls(t){return(Us=Us||document.createElement("div")).innerHTML=t?'<a href="\n"/>':'<div a="\n"/>',Us.innerHTML.indexOf("&#10;")>0}var Os=!!Y&&Ls(!1),Ps=!!Y&&Ls(!0),Hs=C(function(t){var e=Ti(t);return e&&e.innerHTML}),Ns=Jn.prototype.$mount;Jn.prototype.$mount=function(t,e){if((t=t&&Ti(t))===document.body||t===document.documentElement)return this;var n=this.$options;if(!n.render){var i=n.template;if(i)if("string"==typeof i)"#"===i.charAt(0)&&(i=Hs(i));else{if(!i.nodeType)return this;i=i.innerHTML}else t&&(i=function(t){if(t.outerHTML)return t.outerHTML;var e=document.createElement("div");return e.appendChild(t.cloneNode(!0)),e.innerHTML}(t));if(i){0;var r=Es(i,{outputSourceRange:!1,shouldDecodeNewlines:Os,shouldDecodeNewlinesForHref:Ps,delimiters:n.delimiters,comments:n.comments},this),o=r.render,a=r.staticRenderFns;n.render=o,n.staticRenderFns=a}}return Ns.call(this,t,e)},Jn.compile=Es}).call(e,n("9AUj"))},"+pQu":function(t,e,n){var i=n("loyO");n("3xyt"),n("P5TW");var r=n("HVRW"),o=n("BzcN");n("7KEw"),i.registerVisual(r("scatter","circle")),i.registerLayout(o("scatter"))},"+pxS":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("bDs9"),a=n("+Pa4"),s=n("U3tO"),A=n("JUFp"),l=n("nWxm"),c=n("r+KN"),u=n("yW06"),h=n("TBOh"),d=n("quL4"),f=n("DWNL").windowOpen,p=r.bind,g=o.Group,m=o.Rect,v=r.each,y=["label"],w=["emphasis","label"],x=["upperLabel"],B=["emphasis","upperLabel"],b=10,C=1,_=2,S=d([["fill","color"],["stroke","strokeColor"],["lineWidth","strokeWidth"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"]]),I=function(t){var e=S(t);return e.stroke=e.fill=e.lineWidth=null,e},T=i.extendChartView({type:"treemap",init:function(t,e){this._containerGroup,this._storage={nodeGroup:[],background:[],content:[]},this._oldTree,this._breadcrumb,this._controller,this._state="ready"},render:function(t,e,n,i){var o=e.findComponents({mainType:"series",subType:"treemap",query:i});if(!(r.indexOf(o,t)<0)){this.seriesModel=t,this.api=n,this.ecModel=e;var a=s.retrieveTargetInfo(i,["treemapZoomToNode","treemapRootToNode"],t),A=i&&i.type,l=t.layoutInfo,c=!this._oldTree,u=this._storage,h="treemapRootToNode"===A&&a&&u?{rootNodeGroup:u.nodeGroup[a.node.getRawIndex()],direction:i.direction}:null,d=this._giveContainerGroup(l),f=this._doRender(d,t,h);c||A&&"treemapZoomToNode"!==A&&"treemapRootToNode"!==A?f.renderFinally():this._doAnimation(d,f,t,h),this._resetController(n),this._renderBreadcrumb(t,n,a)}},_giveContainerGroup:function(t){var e=this._containerGroup;return e||(e=this._containerGroup=new g,this._initEvents(e),this.group.add(e)),e.attr("position",[t.x,t.y]),e},_doRender:function(t,e,n){var i=e.getData().tree,o=this._oldTree,s={nodeGroup:[],background:[],content:[]},A={nodeGroup:[],background:[],content:[]},l=this._storage,c=[],u=r.curry(M,e,A,l,n,s,c);!function t(e,n,i,o,s){o?(n=e,v(e,function(t,e){!t.isRemoved()&&l(e,e)})):new a(n,e,A,A).add(l).update(l).remove(r.curry(l,null)).execute();function A(t){return t.getId()}function l(r,a){var A=null!=r?e[r]:null,l=null!=a?n[a]:null,c=u(A,l,i,s);c&&t(A&&A.viewChildren||[],l&&l.viewChildren||[],c,o,s+1)}}(i.root?[i.root]:[],o&&o.root?[o.root]:[],t,i===o||!o,0);var h=function(t){var e={nodeGroup:[],background:[],content:[]};return t&&v(t,function(t,n){var i=e[n];v(t,function(t){t&&(i.push(t),t.__tmWillDelete=1)})}),e}(l);return this._oldTree=i,this._storage=A,{lastsForAnimation:s,willDeleteEls:h,renderFinally:function(){v(h,function(t){v(t,function(t){t.parent&&t.parent.remove(t)})}),v(c,function(t){t.invisible=!0,t.dirty()})}}},_doAnimation:function(t,e,n,i){if(n.get("animation")){var o=n.get("animationDurationUpdate"),a=n.get("animationEasing"),s=h.createWrap();v(e.willDeleteEls,function(t,e){v(t,function(t,n){if(!t.invisible){var r,A=t.parent;if(i&&"drillDown"===i.direction)r=A===i.rootNodeGroup?{shape:{x:0,y:0,width:A.__tmNodeWidth,height:A.__tmNodeHeight},style:{opacity:0}}:{style:{opacity:0}};else{var l=0,c=0;A.__tmWillDelete||(l=A.__tmNodeWidth/2,c=A.__tmNodeHeight/2),r="nodeGroup"===e?{position:[l,c],style:{opacity:0}}:{shape:{x:l,y:c,width:0,height:0},style:{opacity:0}}}r&&s.add(t,r,o,a)}})}),v(this._storage,function(t,n){v(t,function(t,i){var A=e.lastsForAnimation[n][i],l={};A&&("nodeGroup"===n?A.old&&(l.position=t.position.slice(),t.attr("position",A.old)):(A.old&&(l.shape=r.extend({},t.shape),t.setShape(A.old)),A.fadein?(t.setStyle("opacity",0),l.style={opacity:1}):1!==t.style.opacity&&(l.style={opacity:1})),s.add(t,l,o,a))})},this),this._state="animating",s.done(p(function(){this._state="ready",e.renderFinally()},this)).start()}},_resetController:function(t){var e=this._controller;e||((e=this._controller=new l(t.getZr())).enable(this.seriesModel.get("roam")),e.on("pan",p(this._onPan,this)),e.on("zoom",p(this._onZoom,this)));var n=new c(0,0,t.getWidth(),t.getHeight());e.setPointerChecker(function(t,e,i){return n.contain(e,i)})},_clearController:function(){var t=this._controller;t&&(t.dispose(),t=null)},_onPan:function(t){if("animating"!==this._state&&(Math.abs(t.dx)>3||Math.abs(t.dy)>3)){var e=this.seriesModel.getData().tree.root;if(!e)return;var n=e.getLayout();if(!n)return;this.api.dispatchAction({type:"treemapMove",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:n.x+t.dx,y:n.y+t.dy,width:n.width,height:n.height}})}},_onZoom:function(t){var e=t.originX,n=t.originY;if("animating"!==this._state){var i=this.seriesModel.getData().tree.root;if(!i)return;var r=i.getLayout();if(!r)return;var o=new c(r.x,r.y,r.width,r.height),a=this.seriesModel.layoutInfo;e-=a.x,n-=a.y;var s=u.create();u.translate(s,s,[-e,-n]),u.scale(s,s,[t.scale,t.scale]),u.translate(s,s,[e,n]),o.applyTransform(s),this.api.dispatchAction({type:"treemapRender",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:o.x,y:o.y,width:o.width,height:o.height}})}},_initEvents:function(t){t.on("click",function(t){if("ready"===this._state){var e=this.seriesModel.get("nodeClick",!0);if(e){var n=this.findTarget(t.offsetX,t.offsetY);if(n){var i=n.node;if(i.getLayout().isLeafRoot)this._rootToNode(n);else if("zoomToNode"===e)this._zoomToNode(n);else if("link"===e){var r=i.hostTree.data.getItemModel(i.dataIndex),o=r.get("link",!0),a=r.get("target",!0)||"blank";o&&f(o,a)}}}}},this)},_renderBreadcrumb:function(t,e,n){n||(n=null!=t.get("leafDepth",!0)?{node:t.getViewRoot()}:this.findTarget(e.getWidth()/2,e.getHeight()/2))||(n={node:t.getData().tree.root}),(this._breadcrumb||(this._breadcrumb=new A(this.group))).render(t,e,n.node,p(function(e){"animating"!==this._state&&(s.aboveViewRoot(t.getViewRoot(),e)?this._rootToNode({node:e}):this._zoomToNode({node:e}))},this))},remove:function(){this._clearController(),this._containerGroup&&this._containerGroup.removeAll(),this._storage={nodeGroup:[],background:[],content:[]},this._state="ready",this._breadcrumb&&this._breadcrumb.remove()},dispose:function(){this._clearController()},_zoomToNode:function(t){this.api.dispatchAction({type:"treemapZoomToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},_rootToNode:function(t){this.api.dispatchAction({type:"treemapRootToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},findTarget:function(t,e){var n;return this.seriesModel.getViewRoot().eachNode({attr:"viewChildren",order:"preorder"},function(i){var r=this._storage.background[i.getRawIndex()];if(r){var o=r.transformCoordToLocal(t,e),a=r.shape;if(!(a.x<=o[0]&&o[0]<=a.x+a.width&&a.y<=o[1]&&o[1]<=a.y+a.height))return!1;n={node:i,offsetX:o[0],offsetY:o[1]}}},this),n}});function M(t,e,n,i,a,s,A,l,c,u){if(A){var h=A.getLayout(),d=t.getData();if(d.setItemGraphicEl(A.dataIndex,null),h&&h.isInView){var f=h.width,p=h.height,v=h.borderWidth,T=h.invisible,M=A.getRawIndex(),Q=l&&l.getRawIndex(),F=A.viewChildren,k=h.upperHeight,D=F&&F.length,U=A.getModel("itemStyle"),E=A.getModel("emphasis.itemStyle"),L=z("nodeGroup",g);if(L){if(c.add(L),L.attr("position",[h.x||0,h.y||0]),L.__tmNodeWidth=f,L.__tmNodeHeight=p,h.isAboveViewRoot)return L;var O=A.getModel(),P=z("background",m,u,C);if(P&&function(e,n,i){if(n.dataIndex=A.dataIndex,n.seriesIndex=t.seriesIndex,n.setShape({x:0,y:0,width:f,height:p}),T)N(n);else{n.invisible=!1;var r=A.getVisual("borderColor",!0),a=E.get("borderColor"),s=I(U);s.fill=r;var l=S(E);if(l.fill=a,i){var c=f-2*v;R(s,l,r,c,k,{x:v,y:0,width:c,height:k})}else s.text=l.text=null;n.setStyle(s),o.setElementHoverStyle(n,l)}e.add(n)}(L,P,D&&h.upperLabelHeight),D)o.isHighDownDispatcher(L)&&o.setAsHighDownDispatcher(L,!1),P&&(o.setAsHighDownDispatcher(P,!0),d.setItemGraphicEl(A.dataIndex,P));else{var H=z("content",m,u,_);H&&function(e,n){n.dataIndex=A.dataIndex,n.seriesIndex=t.seriesIndex;var i=Math.max(f-2*v,0),r=Math.max(p-2*v,0);if(n.culling=!0,n.setShape({x:v,y:v,width:i,height:r}),T)N(n);else{n.invisible=!1;var a=A.getVisual("color",!0),s=I(U);s.fill=a;var l=S(E);R(s,l,a,i,r),n.setStyle(s),o.setElementHoverStyle(n,l)}e.add(n)}(L,H),P&&o.isHighDownDispatcher(P)&&o.setAsHighDownDispatcher(P,!1),o.setAsHighDownDispatcher(L,!0),d.setItemGraphicEl(A.dataIndex,L)}return L}}}function N(t){!t.invisible&&s.push(t)}function R(e,n,i,a,s,l){var c=O.get("name"),u=O.getModel(l?x:y),d=O.getModel(l?B:w),f=u.getShallow("show");o.setLabelStyle(e,n,u,d,{defaultText:f?c:null,autoColor:i,isRectText:!0,labelFetcher:t,labelDataIndex:A.dataIndex,labelProp:l?"upperLabel":"label"}),V(e,l,h),V(n,l,h),l&&(e.textRect=r.clone(l)),e.truncate=f&&u.get("ellipsis")?{outerWidth:a,outerHeight:s,minChar:2}:null}function V(e,n,i){var r=e.text;if(!n&&i.isLeafRoot&&null!=r){var o=t.get("drillDownIcon",!0);e.text=o?o+" "+r:r}}function z(t,o,s,l){var c=null!=Q&&n[t][Q],u=a[t];return c?(n[t][Q]=null,function(t,e,n){(t[M]={}).old="nodeGroup"===n?e.position.slice():r.extend({},e.shape)}(u,c,t)):T||((c=new o({z:function(t,e){var n=t*b+e;return(n-1)/n}(s,l)})).__tmDepth=s,c.__tmStorageName=t,function(t,e,n){var r=t[M]={},o=A.parentNode;if(o&&(!i||"drillDown"===i.direction)){var s=0,l=0,c=a.background[o.getRawIndex()];!i&&c&&c.old&&(s=c.old.width,l=c.old.height),r.old="nodeGroup"===n?[0,l]:{x:s,y:l,width:0,height:0}}r.fadein="nodeGroup"!==n}(u,0,t)),e[t][M]=c}}t.exports=T},"+yxr":function(t,e,n){n("bSk/");var i=n("Gkcz").extend({type:"grid",dependencies:["xAxis","yAxis"],layoutMode:"box",coordinateSystem:null,defaultOption:{show:!1,zlevel:0,z:0,left:"10%",top:60,right:"10%",bottom:60,containLabel:!1,backgroundColor:"rgba(0,0,0,0)",borderWidth:1,borderColor:"#ccc"}});t.exports=i},"/47j":function(t,e){var n="";"undefined"!=typeof navigator&&(n=navigator.platform||"");var i={color:["#c23531","#2f4554","#61a0a8","#d48265","#91c7ae","#749f83","#ca8622","#bda29a","#6e7074","#546570","#c4ccd3"],gradientColor:["#f6efa6","#d88273","#bf444c"],textStyle:{fontFamily:n.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,animation:"auto",animationDuration:1e3,animationDurationUpdate:300,animationEasing:"exponentialOut",animationEasingUpdate:"cubicOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1};t.exports=i},"/6rD":function(t,e,n){"use strict";var i=n("gX8P");function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},"/7qi":function(t,e,n){var i=n("A5tq"),r=n("loyO"),o=n("bDs9"),a=n("rhmo").getLayoutRect,s=n("DWNL").windowOpen;r.extendComponentModel({type:"title",layoutMode:{type:"box",ignoreSize:!0},defaultOption:{zlevel:0,z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:0,top:0,backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bolder",color:"#333"},subtextStyle:{color:"#aaa"}}}),r.extendComponentView({type:"title",render:function(t,e,n){if(this.group.removeAll(),t.get("show")){var r=this.group,A=t.getModel("textStyle"),l=t.getModel("subtextStyle"),c=t.get("textAlign"),u=i.retrieve2(t.get("textBaseline"),t.get("textVerticalAlign")),h=new o.Text({style:o.setTextStyle({},A,{text:t.get("text"),textFill:A.getTextColor()},{disableBox:!0}),z2:10}),d=h.getBoundingRect(),f=t.get("subtext"),p=new o.Text({style:o.setTextStyle({},l,{text:f,textFill:l.getTextColor(),y:d.height+t.get("itemGap"),textVerticalAlign:"top"},{disableBox:!0}),z2:10}),g=t.get("link"),m=t.get("sublink"),v=t.get("triggerEvent",!0);h.silent=!g&&!v,p.silent=!m&&!v,g&&h.on("click",function(){s(g,"_"+t.get("target"))}),m&&p.on("click",function(){s(m,"_"+t.get("subtarget"))}),h.eventData=p.eventData=v?{componentType:"title",componentIndex:t.componentIndex}:null,r.add(h),f&&r.add(p);var y=r.getBoundingRect(),w=t.getBoxLayoutParams();w.width=y.width,w.height=y.height;var x=a(w,{width:n.getWidth(),height:n.getHeight()},t.get("padding"));c||("middle"===(c=t.get("left")||t.get("right"))&&(c="center"),"right"===c?x.x+=x.width:"center"===c&&(x.x+=x.width/2)),u||("center"===(u=t.get("top")||t.get("bottom"))&&(u="middle"),"bottom"===u?x.y+=x.height:"middle"===u&&(x.y+=x.height/2),u=u||"top"),r.attr("position",[x.x,x.y]);var B={textAlign:c,textVerticalAlign:u};h.setStyle(B),p.setStyle(B),y=r.getBoundingRect();var b=x.margin,C=t.getItemStyle(["color","opacity"]);C.fill=t.get("backgroundColor");var _=new o.Rect({shape:{x:y.x-b[3],y:y.y-b[0],width:y.width+b[1]+b[3],height:y.height+b[0]+b[2],r:t.get("borderRadius")},style:C,subPixelOptimize:!0,silent:!0});r.add(_)}}})},"/A6Y":function(t,e){e.updateViewOnPan=function(t,e,n){var i=t.target,r=i.position;r[0]+=e,r[1]+=n,i.dirty()},e.updateViewOnZoom=function(t,e,n,i){var r=t.target,o=t.zoomLimit,a=r.position,s=r.scale,A=t.zoom=t.zoom||1;if(A*=e,o){var l=o.min||0,c=o.max||1/0;A=Math.max(Math.min(c,A),l)}var u=A/t.zoom;t.zoom=A,a[0]-=(n-a[0])*(u-1),a[1]-=(i-a[1])*(u-1),s[0]*=u,s[1]*=u,r.dirty()}},"/Qj9":function(t,e,n){var i=n("UnJe"),r=n("3Zgs"),o=n("s7i0").subPixelOptimizeRect,a={},s=i.extend({type:"rect",shape:{r:0,x:0,y:0,width:0,height:0},buildPath:function(t,e){var n,i,s,A;this.subPixelOptimize?(o(a,e,this.style),n=a.x,i=a.y,s=a.width,A=a.height,a.r=e.r,e=a):(n=e.x,i=e.y,s=e.width,A=e.height),e.r?r.buildPath(t,e):t.rect(n,i,s,A),t.closePath()}});t.exports=s},"/X/h":function(t,e,n){for(var i=n("A5tq"),r=n("qugn"),o=[126,25],a=[[[0,3.5],[7,11.2],[15,11.9],[30,7],[42,.7],[52,.7],[56,7.7],[59,.7],[64,.7],[64,0],[5,0],[0,3.5]],[[13,16.1],[19,14.7],[16,21.7],[11,23.1],[13,16.1]],[[12,32.2],[14,38.5],[15,38.5],[13,32.2],[12,32.2]],[[16,47.6],[12,53.2],[13,53.2],[18,47.6],[16,47.6]],[[6,64.4],[8,70],[9,70],[8,64.4],[6,64.4]],[[23,82.6],[29,79.8],[30,79.8],[25,82.6],[23,82.6]],[[37,70.7],[43,62.3],[44,62.3],[39,70.7],[37,70.7]],[[48,51.1],[51,45.5],[53,45.5],[50,51.1],[48,51.1]],[[51,35],[51,28.7],[53,28.7],[53,35],[51,35]],[[52,22.4],[55,17.5],[56,17.5],[53,22.4],[52,22.4]],[[58,12.6],[62,7],[63,7],[60,12.6],[58,12.6]],[[0,3.5],[0,93.1],[64,93.1],[64,0],[63,0],[63,92.4],[1,92.4],[1,3.5],[0,3.5]]],s=0;s<a.length;s++)for(var A=0;A<a[s].length;A++)a[s][A][0]/=10.5,a[s][A][1]/=-14,a[s][A][0]+=o[0],a[s][A][1]+=o[1];t.exports=function(t,e){"china"===t&&e.push(new r("鍗楁捣璇稿矝",i.map(a,function(t){return{type:"polygon",exterior:t}}),o))}},"/Xsr":function(t,e,n){var i=n("A5tq"),r=n("rhmo").getLayoutRect;e.getItemAlign=function(t,e,n){var i=t.option,o=i.align;if(null!=o&&"auto"!==o)return o;for(var a={width:e.getWidth(),height:e.getHeight()},s="horizontal"===i.orient?1:0,A=[["left","right","width"],["top","bottom","height"]],l=A[s],c=[0,null,10],u={},h=0;h<3;h++)u[A[1-s][h]]=c[h],u[l[h]]=2===h?n[0]:i[l[h]];var d=[["x","width",3],["y","height",0]][s],f=r(u,a,i.padding);return l[(f.margin[d[2]]||0)+f[d[0]]+.5*f[d[1]]<.5*a[d[1]]?0:1]},e.makeHighDownBatch=function(t,e){return i.each(t||[],function(t){null!=t.dataIndex&&(t.dataIndexInside=t.dataIndex,t.dataIndex=null),t.highlightKey="visualMap"+(e?e.componentIndex:"")}),t}},"/iNI":function(t,e,n){var i=n("UvWp"),r=n("A5tq"),o=n("yW06");function a(t,e){i.call(this,t,e,"clipPath","__clippath_in_use__")}r.inherits(a,i),a.prototype.update=function(t){var e=this.getSvgElement(t);e&&this.updateDom(e,t.__clipPaths,!1);var n=this.getTextSvgElement(t);n&&this.updateDom(n,t.__clipPaths,!0),this.markUsed(t)},a.prototype.updateDom=function(t,e,n){if(e&&e.length>0){var i,r,a=this.getDefs(!0),s=e[0],A=n?"_textDom":"_dom";s[A]?(r=s[A].getAttribute("id"),i=s[A],a.contains(i)||a.appendChild(i)):(r="zr"+this._zrId+"-clip-"+this.nextId,++this.nextId,(i=this.createElement("clipPath")).setAttribute("id",r),a.appendChild(i),s[A]=i);var l=this.getSvgProxy(s);if(s.transform&&s.parent.invTransform&&!n){var c=Array.prototype.slice.call(s.transform);o.mul(s.transform,s.parent.invTransform,s.transform),l.brush(s),s.transform=c}else l.brush(s);var u=this.getSvgElement(s);i.innerHTML="",i.appendChild(u.cloneNode()),t.setAttribute("clip-path","url(#"+r+")"),e.length>1&&this.updateDom(i,e.slice(1),n)}else t&&t.setAttribute("clip-path","none")},a.prototype.markUsed=function(t){var e=this;t.__clipPaths&&r.each(t.__clipPaths,function(t){t._dom&&i.prototype.markUsed.call(e,t._dom),t._textDom&&i.prototype.markUsed.call(e,t._textDom)})};var s=a;t.exports=s},"/oKt":function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("cLid"),a=n("bDs9"),s=["axisLine","axisTickLabel","axisName"],A=i.extendComponentView({type:"radar",render:function(t,e,n){this.group.removeAll(),this._buildAxes(t),this._buildSplitLineAndArea(t)},_buildAxes:function(t){var e=t.coordinateSystem,n=e.getIndicatorAxes(),i=r.map(n,function(t){return new o(t.model,{position:[e.cx,e.cy],rotation:t.angle,labelDirection:-1,tickDirection:-1,nameDirection:1})});r.each(i,function(t){r.each(s,t.add,t),this.group.add(t.getGroup())},this)},_buildSplitLineAndArea:function(t){var e=t.coordinateSystem,n=e.getIndicatorAxes();if(n.length){var i=t.get("shape"),o=t.getModel("splitLine"),s=t.getModel("splitArea"),A=o.getModel("lineStyle"),l=s.getModel("areaStyle"),c=o.get("show"),u=s.get("show"),h=A.get("color"),d=l.get("color");h=r.isArray(h)?h:[h],d=r.isArray(d)?d:[d];var f=[],p=[];if("circle"===i)for(var g=n[0].getTicksCoords(),m=e.cx,v=e.cy,y=0;y<g.length;y++){if(c)f[I(f,h,y)].push(new a.Circle({shape:{cx:m,cy:v,r:g[y].coord}}));if(u&&y<g.length-1)p[I(p,d,y)].push(new a.Ring({shape:{cx:m,cy:v,r0:g[y].coord,r:g[y+1].coord}}))}else{var w,x=r.map(n,function(t,n){var i=t.getTicksCoords();return w=null==w?i.length-1:Math.min(i.length-1,w),r.map(i,function(t){return e.coordToPoint(t.coord,n)})}),B=[];for(y=0;y<=w;y++){for(var b=[],C=0;C<n.length;C++)b.push(x[C][y]);if(b[0]&&b.push(b[0].slice()),c)f[I(f,h,y)].push(new a.Polyline({shape:{points:b}}));if(u&&B)p[I(p,d,y-1)].push(new a.Polygon({shape:{points:b.concat(B)}}));B=b.slice().reverse()}}var _=A.getLineStyle(),S=l.getAreaStyle();r.each(p,function(t,e){this.group.add(a.mergePath(t,{style:r.defaults({stroke:"none",fill:d[e%d.length]},S),silent:!0}))},this),r.each(f,function(t,e){this.group.add(a.mergePath(t,{style:r.defaults({fill:"none",stroke:h[e%h.length]},_),silent:!0}))},this)}function I(t,e,n){var i=n%e.length;return t[i]=t[i]||[],i}}});t.exports=A},"031+":function(t,e,n){var i=n("A5tq");t.exports=function(t){var e=[];i.each(t.series,function(t){t&&"map"===t.type&&(e.push(t),t.map=t.map||t.mapType,i.defaults(t,t.mapLocation))})}},"05Cp":function(t,e,n){var i=n("UnJe").extend({type:"arc",shape:{cx:0,cy:0,r:0,startAngle:0,endAngle:2*Math.PI,clockwise:!0},style:{stroke:"#000",fill:null},buildPath:function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r,0),o=e.startAngle,a=e.endAngle,s=e.clockwise,A=Math.cos(o),l=Math.sin(o);t.moveTo(A*r+n,l*r+i),t.arc(n,i,r,o,a,!s)}});t.exports=i},"0GJB":function(t,e,n){"use strict";var i=n("ywUT"),r=n("m3h4"),o=n("afh2"),a=n("fA9A");function s(t){var e=new o(t),n=r(o.prototype.request,e);return i.extend(n,o.prototype,e),i.extend(n,e),n}var A=s(n("gAh+"));A.Axios=o,A.create=function(t){return s(a(A.defaults,t))},A.Cancel=n("gX8P"),A.CancelToken=n("/6rD"),A.isCancel=n("xkTx"),A.all=function(t){return Promise.all(t)},A.spread=n("szIz"),t.exports=A,t.exports.default=A},"0Hqv":function(t,e,n){var i=n("w9uD"),r=n("DWNL"),o=n("rHid"),a=n("8Vch"),s=i.round,A=o.extend({type:"interval",_interval:0,_intervalPrecision:2,setExtent:function(t,e){var n=this._extent;isNaN(t)||(n[0]=parseFloat(t)),isNaN(e)||(n[1]=parseFloat(e))},unionExtent:function(t){var e=this._extent;t[0]<e[0]&&(e[0]=t[0]),t[1]>e[1]&&(e[1]=t[1]),A.prototype.setExtent.call(this,e[0],e[1])},getInterval:function(){return this._interval},setInterval:function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=a.getIntervalPrecision(t)},getTicks:function(t){var e=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=[];if(!e)return o;n[0]<i[0]&&(t?o.push(s(i[0]-e,r)):o.push(n[0]));for(var a=i[0];a<=i[1]&&(o.push(a),(a=s(a+e,r))!==o[o.length-1]);)if(o.length>1e4)return[];var A=o.length?o[o.length-1]:i[1];return n[1]>A&&(t?o.push(s(A+e,r)):o.push(n[1])),o},getMinorTicks:function(t){for(var e=this.getTicks(!0),n=[],r=this.getExtent(),o=1;o<e.length;o++){for(var a=e[o],s=e[o-1],A=0,l=[],c=(a-s)/t;A<t-1;){var u=i.round(s+(A+1)*c);u>r[0]&&u<r[1]&&l.push(u),A++}n.push(l)}return n},getLabel:function(t,e){if(null==t)return"";var n=e&&e.precision;return null==n?n=i.getPrecisionSafe(t)||0:"auto"===n&&(n=this._intervalPrecision),t=s(t,n,!0),r.addCommas(t)},niceTicks:function(t,e,n){t=t||5;var i=this._extent,r=i[1]-i[0];if(isFinite(r)){r<0&&(r=-r,i.reverse());var o=a.intervalScaleNiceTicks(i,t,e,n);this._intervalPrecision=o.intervalPrecision,this._interval=o.interval,this._niceExtent=o.niceTickExtent}},niceExtent:function(t){var e=this._extent;if(e[0]===e[1])if(0!==e[0]){var n=e[0];t.fixMax?e[0]-=n/2:(e[1]+=n/2,e[0]-=n/2)}else e[1]=1;var i=e[1]-e[0];isFinite(i)||(e[0]=0,e[1]=1),this.niceTicks(t.splitNumber,t.minInterval,t.maxInterval);var r=this._interval;t.fixMin||(e[0]=s(Math.floor(e[0]/r)*r)),t.fixMax||(e[1]=s(Math.ceil(e[1]/r)*r))}});A.create=function(){return new A};var l=A;t.exports=l},"0W2J":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("bDs9"),a=n("f+YC").createSymbol,s=n("w9uD"),A=s.parsePercent,l=s.isNumeric,c=n("Nkq/").setLabel,u=["itemStyle","borderWidth"],h=[{xy:"x",wh:"width",index:0,posDesc:["left","right"]},{xy:"y",wh:"height",index:1,posDesc:["top","bottom"]}],d=new o.Circle;function f(t,e,n,i){var o=t.getItemLayout(e),a=n.get("symbolRepeat"),s=n.get("symbolClip"),c=n.get("symbolPosition")||"start",h=(n.get("symbolRotate")||0)*Math.PI/180||0,f=n.get("symbolPatternSize")||2,g=n.isAnimationEnabled(),m={dataIndex:e,layout:o,itemModel:n,symbolType:t.getItemVisual(e,"symbol")||"circle",color:t.getItemVisual(e,"color"),symbolClip:s,symbolRepeat:a,symbolRepeatDirection:n.get("symbolRepeatDirection"),symbolPatternSize:f,rotation:h,animationModel:g?n:null,hoverAnimation:g&&n.get("hoverAnimation"),z2:n.getShallow("z",!0)||0};!function(t,e,n,i,o){var a,s=i.valueDim,A=t.get("symbolBoundingData"),l=i.coordSys.getOtherAxis(i.coordSys.getBaseAxis()),c=l.toGlobalCoord(l.dataToCoord(0)),u=1-+(n[s.wh]<=0);if(r.isArray(A)){var h=[p(l,A[0])-c,p(l,A[1])-c];h[1]<h[0]&&h.reverse(),a=h[u]}else a=null!=A?p(l,A)-c:e?i.coordSysExtent[s.index][u]-c:n[s.wh];o.boundingLength=a,e&&(o.repeatCutLength=n[s.wh]);o.pxSign=a>0?1:a<0?-1:0}(n,a,o,i,m),function(t,e,n,i,o,a,s,l,c,u){var h=c.valueDim,d=c.categoryDim,f=Math.abs(n[d.wh]),p=t.getItemVisual(e,"symbolSize");r.isArray(p)?p=p.slice():(null==p&&(p="100%"),p=[p,p]);p[d.index]=A(p[d.index],f),p[h.index]=A(p[h.index],i?f:Math.abs(a)),u.symbolSize=p,(u.symbolScale=[p[0]/l,p[1]/l])[h.index]*=(c.isHorizontal?-1:1)*s}(t,e,o,a,0,m.boundingLength,m.pxSign,f,i,m),function(t,e,n,i,r){var o=t.get(u)||0;o&&(d.attr({scale:e.slice(),rotation:n}),d.updateTransform(),o/=d.getLineScale(),o*=e[i.valueDim.index]);r.valueLineWidth=o}(n,m.symbolScale,h,i,m);var v=m.symbolSize,y=n.get("symbolOffset");return r.isArray(y)&&(y=[A(y[0],v[0]),A(y[1],v[1])]),function(t,e,n,i,o,a,s,c,u,h,d,f){var p=d.categoryDim,g=d.valueDim,m=f.pxSign,v=Math.max(e[g.index]+c,0),y=v;if(i){var w=Math.abs(u),x=r.retrieve(t.get("symbolMargin"),"15%")+"",B=!1;x.lastIndexOf("!")===x.length-1&&(B=!0,x=x.slice(0,x.length-1)),x=A(x,e[g.index]);var b=Math.max(v+2*x,0),C=B?0:2*x,_=l(i),S=_?i:F((w+C)/b),I=w-S*v;b=v+2*(x=I/2/(B?S:S-1)),C=B?0:2*x,_||"fixed"===i||(S=h?F((Math.abs(h)+C)/b):0),y=S*b-C,f.repeatTimes=S,f.symbolMargin=x}var T=m*(y/2),M=f.pathPosition=[];M[p.index]=n[p.wh]/2,M[g.index]="start"===s?T:"end"===s?u-T:u/2,a&&(M[0]+=a[0],M[1]+=a[1]);var Q=f.bundlePosition=[];Q[p.index]=n[p.xy],Q[g.index]=n[g.xy];var k=f.barRectShape=r.extend({},n);k[g.wh]=m*Math.max(Math.abs(n[g.wh]),Math.abs(M[g.index]+T)),k[p.wh]=n[p.wh];var D=f.clipShape={};D[p.xy]=-n[p.xy],D[p.wh]=d.ecSize[p.wh],D[g.xy]=0,D[g.wh]=n[g.wh]}(n,v,o,a,0,y,c,m.valueLineWidth,m.boundingLength,m.repeatCutLength,i,m),m}function p(t,e){return t.toGlobalCoord(t.dataToCoord(t.scale.parse(e)))}function g(t){var e=t.symbolPatternSize,n=a(t.symbolType,-e/2,-e/2,e,e,t.color);return n.attr({culling:!0}),"image"!==n.type&&n.setStyle({strokeNoScale:!0}),n}function m(t,e,n,i){var r=t.__pictorialBundle,o=n.symbolSize,a=n.valueLineWidth,s=n.pathPosition,A=e.valueDim,l=n.repeatTimes||0,c=0,u=o[e.valueDim.index]+a+2*n.symbolMargin;for(T(t,function(t){t.__pictorialAnimationIndex=c,t.__pictorialRepeatTimes=l,c<l?M(t,null,f(c),n,i):M(t,null,{scale:[0,0]},n,i,function(){r.remove(t)}),C(t,n),c++});c<l;c++){var h=g(n);h.__pictorialAnimationIndex=c,h.__pictorialRepeatTimes=l,r.add(h);var d=f(c);M(h,{position:d.position,scale:[0,0]},{scale:d.scale,rotation:d.rotation},n,i),h.on("mouseover",p).on("mouseout",m),C(h,n)}function f(t){var e=s.slice(),i=n.pxSign,r=t;return("start"===n.symbolRepeatDirection?i>0:i<0)&&(r=l-1-t),e[A.index]=u*(r-l/2+.5)+s[A.index],{position:e,scale:n.symbolScale.slice(),rotation:n.rotation}}function p(){T(t,function(t){t.trigger("emphasis")})}function m(){T(t,function(t){t.trigger("normal")})}}function v(t,e,n,i){var r=t.__pictorialBundle,o=t.__pictorialMainPath;o?M(o,null,{position:n.pathPosition.slice(),scale:n.symbolScale.slice(),rotation:n.rotation},n,i):(o=t.__pictorialMainPath=g(n),r.add(o),M(o,{position:n.pathPosition.slice(),scale:[0,0],rotation:n.rotation},{scale:n.symbolScale.slice()},n,i),o.on("mouseover",function(){this.trigger("emphasis")}).on("mouseout",function(){this.trigger("normal")})),C(o,n)}function y(t,e,n){var i=r.extend({},e.barRectShape),a=t.__pictorialBarRect;a?M(a,null,{shape:i},e,n):(a=t.__pictorialBarRect=new o.Rect({z2:2,shape:i,silent:!0,style:{stroke:"transparent",fill:"transparent",lineWidth:0}}),t.add(a))}function w(t,e,n,i){if(n.symbolClip){var a=t.__pictorialClipPath,s=r.extend({},n.clipShape),A=e.valueDim,l=n.animationModel,c=n.dataIndex;if(a)o.updateProps(a,{shape:s},l,c);else{s[A.wh]=0,a=new o.Rect({shape:s}),t.__pictorialBundle.setClipPath(a),t.__pictorialClipPath=a;var u={};u[A.wh]=n.clipShape[A.wh],o[i?"updateProps":"initProps"](a,{shape:u},l,c)}}}function x(t,e){var n=t.getItemModel(e);return n.getAnimationDelayParams=B,n.isAnimationEnabled=b,n}function B(t){return{index:t.__pictorialAnimationIndex,count:t.__pictorialRepeatTimes}}function b(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow("animation")}function C(t,e){t.off("emphasis").off("normal");var n=e.symbolScale.slice();e.hoverAnimation&&t.on("emphasis",function(){this.animateTo({scale:[1.1*n[0],1.1*n[1]]},400,"elasticOut")}).on("normal",function(){this.animateTo({scale:n.slice()},400,"elasticOut")})}function _(t,e,n,i){var r=new o.Group,a=new o.Group;return r.add(a),r.__pictorialBundle=a,a.attr("position",n.bundlePosition.slice()),n.symbolRepeat?m(r,e,n):v(r,0,n),y(r,n,i),w(r,e,n,i),r.__pictorialShapeStr=I(t,n),r.__pictorialSymbolMeta=n,r}function S(t,e,n,i){var a=i.__pictorialBarRect;a&&(a.style.text=null);var s=[];T(i,function(t){s.push(t)}),i.__pictorialMainPath&&s.push(i.__pictorialMainPath),i.__pictorialClipPath&&(n=null),r.each(s,function(t){o.updateProps(t,{scale:[0,0]},n,e,function(){i.parent&&i.parent.remove(i)})}),t.setItemGraphicEl(e,null)}function I(t,e){return[t.getItemVisual(e.dataIndex,"symbol")||"none",!!e.symbolRepeat,!!e.symbolClip].join(":")}function T(t,e,n){r.each(t.__pictorialBundle.children(),function(i){i!==t.__pictorialBarRect&&e.call(n,i)})}function M(t,e,n,i,r,a){e&&t.attr(e),i.symbolClip&&!r?n&&t.attr(n):n&&o[r?"updateProps":"initProps"](t,n,i.animationModel,i.dataIndex,a)}function Q(t,e,n){var i=n.color,a=n.dataIndex,s=n.itemModel,A=s.getModel("itemStyle").getItemStyle(["color"]),l=s.getModel("emphasis.itemStyle").getItemStyle(),u=s.getShallow("cursor");T(t,function(t){t.setColor(i),t.setStyle(r.defaults({fill:i,opacity:n.opacity},A)),o.setHoverStyle(t,l),u&&(t.cursor=u),t.z2=n.z2});var h={},d=e.valueDim.posDesc[+(n.boundingLength>0)],f=t.__pictorialBarRect;c(f.style,h,s,i,e.seriesModel,a,d),o.setHoverStyle(f,h)}function F(t){var e=Math.round(t);return Math.abs(t-e)<1e-4?e:Math.ceil(t)}var k=i.extendChartView({type:"pictorialBar",render:function(t,e,n){var i=this.group,r=t.getData(),a=this._data,s=t.coordinateSystem,A=!!s.getBaseAxis().isHorizontal(),l=s.grid.getRect(),c={ecSize:{width:n.getWidth(),height:n.getHeight()},seriesModel:t,coordSys:s,coordSysExtent:[[l.x,l.x+l.width],[l.y,l.y+l.height]],isHorizontal:A,valueDim:h[+A],categoryDim:h[1-A]};return r.diff(a).add(function(t){if(r.hasValue(t)){var e=x(r,t),n=f(r,t,e,c),o=_(r,c,n);r.setItemGraphicEl(t,o),i.add(o),Q(o,c,n)}}).update(function(t,e){var n=a.getItemGraphicEl(e);if(r.hasValue(t)){var s=x(r,t),A=f(r,t,s,c),l=I(r,A);n&&l!==n.__pictorialShapeStr&&(i.remove(n),r.setItemGraphicEl(t,null),n=null),n?function(t,e,n){var i=n.animationModel,r=n.dataIndex,a=t.__pictorialBundle;o.updateProps(a,{position:n.bundlePosition.slice()},i,r),n.symbolRepeat?m(t,e,n,!0):v(t,e,n,!0);y(t,n,!0),w(t,e,n,!0)}(n,c,A):n=_(r,c,A,!0),r.setItemGraphicEl(t,n),n.__pictorialSymbolMeta=A,i.add(n),Q(n,c,A)}else i.remove(n)}).remove(function(t){var e=a.getItemGraphicEl(t);e&&S(a,t,e.__pictorialSymbolMeta.animationModel,e)}).execute(),this._data=r,this.group},dispose:r.noop,remove:function(t,e){var n=this.group,i=this._data;t.get("animation")?i&&i.eachItemGraphicEl(function(e){S(i,e.dataIndex,t,e)}):n.removeAll()}});t.exports=k},"0cXy":function(t,e,n){var i=n("A5tq"),r=n("Amko"),o=n("bDs9"),a=n("f+YC").createSymbol,s=n("rhmo"),A=n("/Xsr"),l=r.extend({type:"visualMap.piecewise",doRender:function(){var t=this.group;t.removeAll();var e=this.visualMapModel,n=e.get("textGap"),r=e.textStyleModel,a=r.getFont(),A=r.getTextColor(),l=this._getItemAlign(),c=e.itemSize,u=this._getViewData(),h=u.endsText,d=i.retrieve(e.get("showLabel",!0),!h);h&&this._renderEndsText(t,h[0],c,d,l),i.each(u.viewPieceList,function(r){var s=r.piece,u=new o.Group;u.onclick=i.bind(this._onItemClick,this,s),this._enableHoverLink(u,r.indexInModelPieceList);var h=e.getRepresentValue(s);if(this._createItemSymbol(u,h,[0,0,c[0],c[1]]),d){var f=this.visualMapModel.getValueState(h);u.add(new o.Text({style:{x:"right"===l?-n:c[0]+n,y:c[1]/2,text:s.text,textVerticalAlign:"middle",textAlign:l,textFont:a,textFill:A,opacity:"outOfRange"===f?.5:1}}))}t.add(u)},this),h&&this._renderEndsText(t,h[1],c,d,l),s.box(e.get("orient"),t,e.get("itemGap")),this.renderBackground(t),this.positionGroup(t)},_enableHoverLink:function(t,e){function n(t){var n=this.visualMapModel;n.option.hoverLink&&this.api.dispatchAction({type:t,batch:A.makeHighDownBatch(n.findTargetDataIndices(e),n)})}t.on("mouseover",i.bind(n,this,"highlight")).on("mouseout",i.bind(n,this,"downplay"))},_getItemAlign:function(){var t=this.visualMapModel,e=t.option;if("vertical"===e.orient)return A.getItemAlign(t,this.api,t.itemSize);var n=e.align;return n&&"auto"!==n||(n="left"),n},_renderEndsText:function(t,e,n,i,r){if(e){var a=new o.Group,s=this.visualMapModel.textStyleModel;a.add(new o.Text({style:{x:i?"right"===r?n[0]:0:n[0]/2,y:n[1]/2,textVerticalAlign:"middle",textAlign:i?r:"center",text:e,textFont:s.getFont(),textFill:s.getTextColor()}})),t.add(a)}},_getViewData:function(){var t=this.visualMapModel,e=i.map(t.getPieceList(),function(t,e){return{piece:t,indexInModelPieceList:e}}),n=t.get("text"),r=t.get("orient"),o=t.get("inverse");return("horizontal"===r?o:!o)?e.reverse():n&&(n=n.slice().reverse()),{viewPieceList:e,endsText:n}},_createItemSymbol:function(t,e,n){t.add(a(this.getControllerVisual(e,"symbol"),n[0],n[1],n[2],n[3],this.getControllerVisual(e,"color")))},_onItemClick:function(t){var e=this.visualMapModel,n=e.option,r=i.clone(n.selected),o=e.getSelectedMapKey(t);"single"===n.selectedMode?(r[o]=!0,i.each(r,function(t,e){r[e]=e===o})):r[o]=!r[o],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:r})}});t.exports=l},"0eFd":function(t,e,n){var i=n("lbYD"),r=i.min,o=i.max,a=i.scale,s=i.distance,A=i.add,l=i.clone,c=i.sub;t.exports=function(t,e,n,i){var u,h,d,f,p=[],g=[],m=[],v=[];if(i){d=[1/0,1/0],f=[-1/0,-1/0];for(var y=0,w=t.length;y<w;y++)r(d,d,t[y]),o(f,f,t[y]);r(d,d,i[0]),o(f,f,i[1])}for(y=0,w=t.length;y<w;y++){var x=t[y];if(n)u=t[y?y-1:w-1],h=t[(y+1)%w];else{if(0===y||y===w-1){p.push(l(t[y]));continue}u=t[y-1],h=t[y+1]}c(g,h,u),a(g,g,e);var B=s(x,u),b=s(x,h),C=B+b;0!==C&&(B/=C,b/=C),a(m,g,-B),a(v,g,b);var _=A([],x,m),S=A([],x,v);i&&(o(_,_,d),r(_,_,f),o(S,S,d),r(S,S,f)),p.push(_),p.push(S)}return n&&p.push(p.shift()),p}},"15y3":function(t,e,n){var i=n("kq8N").extend({type:"markArea",defaultOption:{zlevel:0,z:1,tooltip:{trigger:"item"},animation:!1,label:{show:!0,position:"top"},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:"top"}}}});t.exports=i},"17t5":function(t,e,n){var i=n("loyO"),r=n("A5tq");i.registerAction({type:"timelineChange",event:"timelineChanged",update:"prepareAndUpdate"},function(t,e){var n=e.getComponent("timeline");return n&&null!=t.currentIndex&&(n.setCurrentIndex(t.currentIndex),!n.get("loop",!0)&&n.isIndexMax()&&n.setPlayState(!1)),e.resetOption("timeline"),r.defaults({currentIndex:n.option.currentIndex},t)}),i.registerAction({type:"timelinePlayChange",event:"timelinePlayChanged",update:"update"},function(t,e){var n=e.getComponent("timeline");n&&null!=t.playState&&n.setPlayState(t.playState)})},"185P":function(t,e,n){var i=n("A5tq");function r(t,e){return e=e||[0,0],i.map([0,1],function(n){var i=e[n],r=t[n]/2,o=[],a=[];return o[n]=i-r,a[n]=i+r,o[1-n]=a[1-n]=e[1-n],Math.abs(this.dataToPoint(o)[n]-this.dataToPoint(a)[n])},this)}t.exports=function(t){var e=t.getBoundingRect();return{coordSys:{type:"geo",x:e.x,y:e.y,width:e.width,height:e.height,zoom:t.getZoom()},api:{coord:function(e){return t.dataToPoint(e)},size:i.bind(r,t)}}}},"19Ba":function(t,e,n){var i=n("DWNL"),r=n("nFw2"),o=n("bDs9"),a=n("x5W7"),s=n("yW06"),A=n("cLid"),l=n("gj94"),c=r.extend({makeElOption:function(t,e,n,r,l){var c=n.axis;"angle"===c.dim&&(this.animationThreshold=Math.PI/18);var h,d=c.polar,f=d.getOtherAxis(c).getExtent();h=c["dataTo"+i.capitalFirst(c.dim)](e);var p=r.get("type");if(p&&"none"!==p){var g=a.buildElStyle(r),m=u[p](c,d,h,f,g);m.style=g,t.graphicKey=m.type,t.pointer=m}var v=function(t,e,n,i,r){var a=e.axis,l=a.dataToCoord(t),c=i.getAngleAxis().getExtent()[0];c=c/180*Math.PI;var u,h,d,f=i.getRadiusAxis().getExtent();if("radius"===a.dim){var p=s.create();s.rotate(p,p,c),s.translate(p,p,[i.cx,i.cy]),u=o.applyTransform([l,-r],p);var g=e.getModel("axisLabel").get("rotate")||0,m=A.innerTextLayout(c,g*Math.PI/180,-1);h=m.textAlign,d=m.textVerticalAlign}else{var v=f[1];u=i.coordToPoint([v+r,l]);var y=i.cx,w=i.cy;h=Math.abs(u[0]-y)/v<.3?"center":u[0]>y?"left":"right",d=Math.abs(u[1]-w)/v<.3?"middle":u[1]>w?"top":"bottom"}return{position:u,align:h,verticalAlign:d}}(e,n,0,d,r.get("label.margin"));a.buildLabelElOption(t,n,r,l,v)}});var u={line:function(t,e,n,i,r){return"angle"===t.dim?{type:"Line",shape:a.makeLineShape(e.coordToPoint([i[0],n]),e.coordToPoint([i[1],n]))}:{type:"Circle",shape:{cx:e.cx,cy:e.cy,r:n}}},shadow:function(t,e,n,i,r){var o=Math.max(1,t.getBandWidth()),s=Math.PI/180;return"angle"===t.dim?{type:"Sector",shape:a.makeSectorShape(e.cx,e.cy,i[0],i[1],(-n-o/2)*s,(o/2-n)*s)}:{type:"Sector",shape:a.makeSectorShape(e.cx,e.cy,n-o/2,n+o/2,0,2*Math.PI)}}};l.registerAxisPointerClass("PolarAxisPointer",c);var h=c;t.exports=h},"1ZnN":function(t,e){e.updateCenterAndZoom=function(t,e,n){var i=t.getZoom(),r=t.getCenter(),o=e.zoom,a=t.dataToPoint(r);null!=e.dx&&null!=e.dy&&(a[0]-=e.dx,a[1]-=e.dy,r=t.pointToData(a),t.setCenter(r));if(null!=o){if(n){var s=n.min||0,A=n.max||1/0;o=Math.max(Math.min(i*o,A),s)/i}t.scale[0]*=o,t.scale[1]*=o;var l=t.position,c=(e.originX-l[0])*(o-1),u=(e.originY-l[1])*(o-1);l[0]-=c,l[1]-=u,t.updateTransform(),r=t.pointToData(a),t.setCenter(r),t.setZoom(o*i)}return{center:t.getCenter(),zoom:t.getZoom()}}},"1Zri":function(t,e,n){var i=n("loyO");n("K2EO"),n("pdEx"),n("FcNr"),n("mWN1"),n("hyzk"),i.extendComponentView({type:"single"})},"1d4C":function(t,e,n){var i=n("A5tq"),r=n("w9uD"),o=n("DWNL"),a=n("8Vch"),s=n("0Hqv"),A=s.prototype,l=Math.ceil,c=Math.floor,u=s.extend({type:"time",getLabel:function(t){var e=this._stepLvl,n=new Date(t);return o.formatTime(e[0],n,this.getSetting("useUTC"))},niceExtent:function(t){var e=this._extent;if(e[0]===e[1]&&(e[0]-=864e5,e[1]+=864e5),e[1]===-1/0&&e[0]===1/0){var n=new Date;e[1]=+new Date(n.getFullYear(),n.getMonth(),n.getDate()),e[0]=e[1]-864e5}this.niceTicks(t.splitNumber,t.minInterval,t.maxInterval);var i=this._interval;t.fixMin||(e[0]=r.round(c(e[0]/i)*i)),t.fixMax||(e[1]=r.round(l(e[1]/i)*i))},niceTicks:function(t,e,n){t=t||10;var i=this._extent,o=i[1]-i[0],s=o/t;null!=e&&s<e&&(s=e),null!=n&&s>n&&(s=n);var A=h.length,u=function(t,e,n,i){for(;n<i;){var r=n+i>>>1;t[r][1]<e?n=r+1:i=r}return n}(h,s,0,A),d=h[Math.min(u,A-1)],f=d[1];if("year"===d[0]){var p=o/f;f*=r.nice(p/t,!0)}var g=this.getSetting("useUTC")?0:60*new Date(+i[0]||+i[1]).getTimezoneOffset()*1e3,m=[Math.round(l((i[0]-g)/f)*f+g),Math.round(c((i[1]-g)/f)*f+g)];a.fixExtent(m,i),this._stepLvl=d,this._interval=f,this._niceExtent=m},parse:function(t){return+r.parseDate(t)}});i.each(["contain","normalize"],function(t){u.prototype[t]=function(e){return A[t].call(this,this.parse(e))}});var h=[["hh:mm:ss",1e3],["hh:mm:ss",5e3],["hh:mm:ss",1e4],["hh:mm:ss",15e3],["hh:mm:ss",3e4],["hh:mm\nMM-dd",6e4],["hh:mm\nMM-dd",3e5],["hh:mm\nMM-dd",6e5],["hh:mm\nMM-dd",9e5],["hh:mm\nMM-dd",18e5],["hh:mm\nMM-dd",36e5],["hh:mm\nMM-dd",72e5],["hh:mm\nMM-dd",216e5],["hh:mm\nMM-dd",432e5],["MM-dd\nyyyy",864e5],["MM-dd\nyyyy",1728e5],["MM-dd\nyyyy",2592e5],["MM-dd\nyyyy",3456e5],["MM-dd\nyyyy",432e6],["MM-dd\nyyyy",5184e5],["week",6048e5],["MM-dd\nyyyy",864e6],["week",12096e5],["week",18144e5],["month",26784e5],["week",36288e5],["month",53568e5],["week",6048e6],["quarter",8208e6],["month",107136e5],["month",13392e6],["half-year",16416e6],["month",214272e5],["month",26784e6],["year",32832e6]];u.create=function(t){return new u({useUTC:t.ecModel.get("useUTC")})};var d=u;t.exports=d},"1nTW":function(t,e,n){var i=n("A5tq");function r(t){return!isNaN(t[0])&&!isNaN(t[1])}function o(t){return[t.cx,t.cy]}t.exports=function(t){t.eachSeriesByType("radar",function(t){var e=t.getData(),n=[],a=t.coordinateSystem;if(a){var s=a.getIndicatorAxes();i.each(s,function(t,i){e.each(e.mapDimension(s[i].dim),function(t,e){n[e]=n[e]||[];var s=a.dataToPoint(t,i);n[e][i]=r(s)?s:o(a)})}),e.each(function(t){var s=i.find(n[t],function(t){return r(t)})||o(a);n[t].push(s.slice()),e.setItemLayout(t,n[t])})}})}},"1yLv":function(t,e,n){var i=n("fBU7"),r=n("yQXb").ContextCachedBy,o=[["shadowBlur",0],["shadowOffsetX",0],["shadowOffsetY",0],["shadowColor","#000"],["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]],a=function(t){this.extendFrom(t,!1)};function s(t,e,n){var i=null==e.x?0:e.x,r=null==e.x2?1:e.x2,o=null==e.y?0:e.y,a=null==e.y2?0:e.y2;return e.global||(i=i*n.width+n.x,r=r*n.width+n.x,o=o*n.height+n.y,a=a*n.height+n.y),i=isNaN(i)?0:i,r=isNaN(r)?1:r,o=isNaN(o)?0:o,a=isNaN(a)?0:a,t.createLinearGradient(i,o,r,a)}function A(t,e,n){var i=n.width,r=n.height,o=Math.min(i,r),a=null==e.x?.5:e.x,s=null==e.y?.5:e.y,A=null==e.r?.5:e.r;return e.global||(a=a*i+n.x,s=s*r+n.y,A*=o),t.createRadialGradient(a,s,0,a,s,A)}for(var l=a.prototype={constructor:a,fill:"#000",stroke:null,opacity:1,fillOpacity:null,strokeOpacity:null,lineDash:null,lineDashOffset:0,shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,lineWidth:1,strokeNoScale:!1,text:null,font:null,textFont:null,fontStyle:null,fontWeight:null,fontSize:null,fontFamily:null,textTag:null,textFill:"#000",textStroke:null,textWidth:null,textHeight:null,textStrokeWidth:0,textLineHeight:null,textPosition:"inside",textRect:null,textOffset:null,textAlign:null,textVerticalAlign:null,textDistance:5,textShadowColor:"transparent",textShadowBlur:0,textShadowOffsetX:0,textShadowOffsetY:0,textBoxShadowColor:"transparent",textBoxShadowBlur:0,textBoxShadowOffsetX:0,textBoxShadowOffsetY:0,transformText:!1,textRotation:0,textOrigin:null,textBackgroundColor:null,textBorderColor:null,textBorderWidth:0,textBorderRadius:0,textPadding:null,rich:null,truncate:null,blend:null,bind:function(t,e,n){var a=n&&n.style,s=!a||t.__attrCachedBy!==r.STYLE_BIND;t.__attrCachedBy=r.STYLE_BIND;for(var A=0;A<o.length;A++){var l=o[A],c=l[0];(s||this[c]!==a[c])&&(t[c]=i(t,c,this[c]||l[1]))}if((s||this.fill!==a.fill)&&(t.fillStyle=this.fill),(s||this.stroke!==a.stroke)&&(t.strokeStyle=this.stroke),(s||this.opacity!==a.opacity)&&(t.globalAlpha=null==this.opacity?1:this.opacity),(s||this.blend!==a.blend)&&(t.globalCompositeOperation=this.blend||"source-over"),this.hasStroke()){var u=this.lineWidth;t.lineWidth=u/(this.strokeNoScale&&e&&e.getLineScale?e.getLineScale():1)}},hasFill:function(){var t=this.fill;return null!=t&&"none"!==t},hasStroke:function(){var t=this.stroke;return null!=t&&"none"!==t&&this.lineWidth>0},extendFrom:function(t,e){if(t)for(var n in t)!t.hasOwnProperty(n)||!0!==e&&(!1===e?this.hasOwnProperty(n):null==t[n])||(this[n]=t[n])},set:function(t,e){"string"==typeof t?this[t]=e:this.extendFrom(t,!0)},clone:function(){var t=new this.constructor;return t.extendFrom(this,!0),t},getGradient:function(t,e,n){for(var i=("radial"===e.type?A:s)(t,e,n),r=e.colorStops,o=0;o<r.length;o++)i.addColorStop(r[o].offset,r[o].color);return i}},c=0;c<o.length;c++){var u=o[c];u[0]in l||(l[u[0]]=u[1])}a.getGradient=l.getGradient;var h=a;t.exports=h},"2Guw":function(t,e,n){var i=n("A5tq"),r=i.each,o=i.createHashMap,a=n("9nPt"),s=n("kCsp"),A=a.extend({type:"series.parallel",dependencies:["parallel"],visualColorAccessPath:"lineStyle.color",getInitialData:function(t,e){var n=this.getSource();return function(t,e){if(t.encodeDefine)return;var n=e.ecModel.getComponent("parallel",e.get("parallelIndex"));if(!n)return;var i=t.encodeDefine=o();r(n.dimensions,function(t){var e=+t.replace("dim","");i.set(t,e)})}(n,this),s(n,this)},getRawIndicesByActiveState:function(t){var e=this.coordinateSystem,n=this.getData(),i=[];return e.eachActiveState(n,function(e,r){t===e&&i.push(n.getRawIndex(r))}),i},defaultOption:{zlevel:0,z:2,coordinateSystem:"parallel",parallelIndex:0,label:{show:!1},inactiveOpacity:.05,activeOpacity:1,lineStyle:{width:1,opacity:.45,type:"solid"},emphasis:{label:{show:!1}},progressive:500,smooth:!1,animationEasing:"linear"}});t.exports=A},"2KC6":function(t,e,n){var i=n("A5tq"),r=n("f+YC").createSymbol,o=n("bDs9"),a=n("w9uD").parsePercent,s=n("BQvh").getDefaultLabel;function A(t,e,n){o.Group.call(this),this.updateData(t,e,n)}var l=A.prototype,c=A.getSymbolSize=function(t,e){var n=t.getItemVisual(e,"symbolSize");return n instanceof Array?n.slice():[+n,+n]};function u(t){return[t[0]/2,t[1]/2]}function h(t,e){this.parent.drift(t,e)}l._createSymbol=function(t,e,n,i,o){this.removeAll();var a=e.getItemVisual(n,"color"),s=r(t,-1,-1,2,2,a,o);s.attr({z2:100,culling:!0,scale:u(i)}),s.drift=h,this._symbolType=t,this.add(s)},l.stopSymbolAnimation=function(t){this.childAt(0).stopAnimation(t)},l.getSymbolPath=function(){return this.childAt(0)},l.getScale=function(){return this.childAt(0).scale},l.highlight=function(){this.childAt(0).trigger("emphasis")},l.downplay=function(){this.childAt(0).trigger("normal")},l.setZ=function(t,e){var n=this.childAt(0);n.zlevel=t,n.z=e},l.setDraggable=function(t){var e=this.childAt(0);e.draggable=t,e.cursor=t?"move":e.cursor},l.updateData=function(t,e,n){this.silent=!1;var i=t.getItemVisual(e,"symbol")||"circle",r=t.hostModel,a=c(t,e),s=i!==this._symbolType;if(s){var A=t.getItemVisual(e,"symbolKeepAspect");this._createSymbol(i,t,e,a,A)}else{(l=this.childAt(0)).silent=!1,o.updateProps(l,{scale:u(a)},r,e)}if(this._updateCommon(t,e,a,n),s){var l=this.childAt(0),h=n&&n.fadeIn,d={scale:l.scale.slice()};h&&(d.style={opacity:l.style.opacity}),l.scale=[0,0],h&&(l.style.opacity=0),o.initProps(l,d,r,e)}this._seriesModel=r};var d=["itemStyle"],f=["emphasis","itemStyle"],p=["label"],g=["emphasis","label"];function m(t,e){if(!this.incremental&&!this.useHoverLayer)if("emphasis"===e){var n=this.__symbolOriginalScale,i=n[1]/n[0],r={scale:[Math.max(1.1*n[0],n[0]+3),Math.max(1.1*n[1],n[1]+3*i)]};this.animateTo(r,400,"elasticOut")}else"normal"===e&&this.animateTo({scale:this.__symbolOriginalScale},400,"elasticOut")}l._updateCommon=function(t,e,n,r){var A=this.childAt(0),l=t.hostModel,c=t.getItemVisual(e,"color");"image"!==A.type?A.useStyle({strokeNoScale:!0}):A.setStyle({opacity:1,shadowBlur:null,shadowOffsetX:null,shadowOffsetY:null,shadowColor:null});var h=r&&r.itemStyle,v=r&&r.hoverItemStyle,y=r&&r.symbolOffset,w=r&&r.labelModel,x=r&&r.hoverLabelModel,B=r&&r.hoverAnimation,b=r&&r.cursorStyle;if(!r||t.hasItemOption){var C=r&&r.itemModel?r.itemModel:t.getItemModel(e);h=C.getModel(d).getItemStyle(["color"]),v=C.getModel(f).getItemStyle(),y=C.getShallow("symbolOffset"),w=C.getModel(p),x=C.getModel(g),B=C.getShallow("hoverAnimation"),b=C.getShallow("cursor")}else v=i.extend({},v);var _=A.style,S=t.getItemVisual(e,"symbolRotate");A.attr("rotation",(S||0)*Math.PI/180||0),y&&A.attr("position",[a(y[0],n[0]),a(y[1],n[1])]),b&&A.attr("cursor",b),A.setColor(c,r&&r.symbolInnerColor),A.setStyle(h);var I=t.getItemVisual(e,"opacity");null!=I&&(_.opacity=I);var T=t.getItemVisual(e,"liftZ"),M=A.__z2Origin;null!=T?null==M&&(A.__z2Origin=A.z2,A.z2+=T):null!=M&&(A.z2=M,A.__z2Origin=null);var Q=r&&r.useNameLabel;o.setLabelStyle(_,v,w,x,{labelFetcher:l,labelDataIndex:e,defaultText:function(e,n){return Q?t.getName(e):s(t,e)},isRectText:!0,autoColor:c}),A.__symbolOriginalScale=u(n),A.hoverStyle=v,A.highDownOnUpdate=B&&l.isAnimationEnabled()?m:null,o.setHoverStyle(A)},l.fadeOut=function(t,e){var n=this.childAt(0);this.silent=n.silent=!0,(!e||!e.keepLabel)&&(n.style.text=null),o.updateProps(n,{style:{opacity:0},scale:[0,0]},this._seriesModel,this.dataIndex,t)},i.inherits(A,o.Group);var v=A;t.exports=v},"2VdS":function(t,e,n){var i=n("kCsp"),r=n("9nPt").extend({type:"series.effectScatter",dependencies:["grid","polar"],getInitialData:function(t,e){return i(this.getSource(),this,{useEncodeDefaulter:!0})},brushSelector:"point",defaultOption:{coordinateSystem:"cartesian2d",zlevel:0,z:2,legendHoverLink:!0,effectType:"ripple",progressive:0,showEffectOn:"render",rippleEffect:{period:4,scale:2.5,brushType:"fill"},symbolSize:10}});t.exports=r},"2agN":function(t,e,n){var i=n("dwOH"),r=n("bDs9"),o=n("zrBH"),a=n("w9uD"),s=a.parsePercent,A=a.round,l=a.linearMap;function c(t,e){return e&&("string"==typeof e?t=e.replace("{value}",null!=t?t:""):"function"==typeof e&&(t=e(t))),t}var u=2*Math.PI,h=o.extend({type:"gauge",render:function(t,e,n){this.group.removeAll();var i=t.get("axisLine.lineStyle.color"),r=function(t,e){var n=t.get("center"),i=e.getWidth(),r=e.getHeight(),o=Math.min(i,r);return{cx:s(n[0],e.getWidth()),cy:s(n[1],e.getHeight()),r:s(t.get("radius"),o/2)}}(t,n);this._renderMain(t,e,n,i,r)},dispose:function(){},_renderMain:function(t,e,n,i,o){for(var a=this.group,s=t.getModel("axisLine"),A=s.getModel("lineStyle"),l=t.get("clockwise"),c=-t.get("startAngle")/180*Math.PI,h=((m=-t.get("endAngle")/180*Math.PI)-c)%u,d=c,f=A.get("width"),p=s.get("show"),g=0;p&&g<i.length;g++){var m=c+h*Math.min(Math.max(i[g][0],0),1),v=new r.Sector({shape:{startAngle:d,endAngle:m,cx:o.cx,cy:o.cy,clockwise:l,r0:o.r-f,r:o.r},silent:!0});v.setStyle({fill:i[g][1]}),v.setStyle(A.getLineStyle(["color","borderWidth","borderColor"])),a.add(v),d=m}var y=function(t){if(t<=0)return i[0][1];for(var e=0;e<i.length;e++)if(i[e][0]>=t&&(0===e?0:i[e-1][0])<t)return i[e][1];return i[e-1][1]};if(!l){var w=c;c=m,m=w}this._renderTicks(t,e,n,y,o,c,m,l),this._renderPointer(t,e,n,y,o,c,m,l),this._renderTitle(t,e,n,y,o),this._renderDetail(t,e,n,y,o)},_renderTicks:function(t,e,n,i,o,a,l,u){for(var h=this.group,d=o.cx,f=o.cy,p=o.r,g=+t.get("min"),m=+t.get("max"),v=t.getModel("splitLine"),y=t.getModel("axisTick"),w=t.getModel("axisLabel"),x=t.get("splitNumber"),B=y.get("splitNumber"),b=s(v.get("length"),p),C=s(y.get("length"),p),_=a,S=(l-a)/x,I=S/B,T=v.getModel("lineStyle").getLineStyle(),M=y.getModel("lineStyle").getLineStyle(),Q=0;Q<=x;Q++){var F=Math.cos(_),k=Math.sin(_);if(v.get("show")){var D=new r.Line({shape:{x1:F*p+d,y1:k*p+f,x2:F*(p-b)+d,y2:k*(p-b)+f},style:T,silent:!0});"auto"===T.stroke&&D.setStyle({stroke:i(Q/x)}),h.add(D)}if(w.get("show")){var U=c(A(Q/x*(m-g)+g),w.get("formatter")),E=w.get("distance"),L=i(Q/x);h.add(new r.Text({style:r.setTextStyle({},w,{text:U,x:F*(p-b-E)+d,y:k*(p-b-E)+f,textVerticalAlign:k<-.4?"top":k>.4?"bottom":"middle",textAlign:F<-.4?"left":F>.4?"right":"center"},{autoColor:L}),silent:!0}))}if(y.get("show")&&Q!==x){for(var O=0;O<=B;O++){F=Math.cos(_),k=Math.sin(_);var P=new r.Line({shape:{x1:F*p+d,y1:k*p+f,x2:F*(p-C)+d,y2:k*(p-C)+f},silent:!0,style:M});"auto"===M.stroke&&P.setStyle({stroke:i((Q+O/B)/x)}),h.add(P),_+=I}_-=I}else _+=S}},_renderPointer:function(t,e,n,o,a,A,c,u){var h=this.group,d=this._data;if(t.get("pointer.show")){var f=[+t.get("min"),+t.get("max")],p=[A,c],g=t.getData(),m=g.mapDimension("value");g.diff(d).add(function(e){var n=new i({shape:{angle:A}});r.initProps(n,{shape:{angle:l(g.get(m,e),f,p,!0)}},t),h.add(n),g.setItemGraphicEl(e,n)}).update(function(e,n){var i=d.getItemGraphicEl(n);r.updateProps(i,{shape:{angle:l(g.get(m,e),f,p,!0)}},t),h.add(i),g.setItemGraphicEl(e,i)}).remove(function(t){var e=d.getItemGraphicEl(t);h.remove(e)}).execute(),g.eachItemGraphicEl(function(t,e){var n=g.getItemModel(e),i=n.getModel("pointer");t.setShape({x:a.cx,y:a.cy,width:s(i.get("width"),a.r),r:s(i.get("length"),a.r)}),t.useStyle(n.getModel("itemStyle").getItemStyle()),"auto"===t.style.fill&&t.setStyle("fill",o(l(g.get(m,e),f,[0,1],!0))),r.setHoverStyle(t,n.getModel("emphasis.itemStyle").getItemStyle())}),this._data=g}else d&&d.eachItemGraphicEl(function(t){h.remove(t)})},_renderTitle:function(t,e,n,i,o){var a=t.getData(),A=a.mapDimension("value"),c=t.getModel("title");if(c.get("show")){var u=c.get("offsetCenter"),h=o.cx+s(u[0],o.r),d=o.cy+s(u[1],o.r),f=+t.get("min"),p=+t.get("max"),g=t.getData().get(A,0),m=i(l(g,[f,p],[0,1],!0));this.group.add(new r.Text({silent:!0,style:r.setTextStyle({},c,{x:h,y:d,text:a.getName(0),textAlign:"center",textVerticalAlign:"middle"},{autoColor:m,forceRich:!0})}))}},_renderDetail:function(t,e,n,i,o){var a=t.getModel("detail"),A=+t.get("min"),u=+t.get("max");if(a.get("show")){var h=a.get("offsetCenter"),d=o.cx+s(h[0],o.r),f=o.cy+s(h[1],o.r),p=s(a.get("width"),o.r),g=s(a.get("height"),o.r),m=t.getData(),v=m.get(m.mapDimension("value"),0),y=i(l(v,[A,u],[0,1],!0));this.group.add(new r.Text({silent:!0,style:r.setTextStyle({},a,{x:d,y:f,text:c(v,a.get("formatter")),textWidth:isNaN(p)?null:p,textHeight:isNaN(g)?null:g,textAlign:"center",textVerticalAlign:"middle"},{autoColor:y,forceRich:!0})}))}}});t.exports=h},"2hvz":function(t,e,n){n("yMsf"),n("oy47"),n("SZFm"),n("llFx")},"3EQU":function(t,e,n){"use strict";e.b=function(t){return/^\d+(\.\d+)?$/.test(t)},e.a=function(t){if(Number.isNaN)return Number.isNaN(t);return t!=t}},"3NcG":function(t,e){var n=["#37A2DA","#32C5E9","#67E0E3","#9FE6B8","#FFDB5C","#ff9f7f","#fb7293","#E062AE","#E690D1","#e7bcf3","#9d96f5","#8378EA","#96BFFF"],i={color:n,colorLayer:[["#37A2DA","#ffd85c","#fd7b5f"],["#37A2DA","#67E0E3","#FFDB5C","#ff9f7f","#E062AE","#9d96f5"],["#37A2DA","#32C5E9","#9FE6B8","#FFDB5C","#ff9f7f","#fb7293","#e7bcf3","#8378EA","#96BFFF"],n]};t.exports=i},"3PS3":function(t,e,n){var i=n("R33K"),r=n("lbYD"),o=n("3oqo"),a=n("r+KN"),s=n("Lkz2").devicePixelRatio,A={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},l=[],c=[],u=[],h=[],d=Math.min,f=Math.max,p=Math.cos,g=Math.sin,m=Math.sqrt,v=Math.abs,y="undefined"!=typeof Float32Array,w=function(t){this._saveData=!t,this._saveData&&(this.data=[]),this._ctx=null};w.prototype={constructor:w,_xi:0,_yi:0,_x0:0,_y0:0,_ux:0,_uy:0,_len:0,_lineDash:null,_dashOffset:0,_dashIdx:0,_dashSum:0,setScale:function(t,e,n){n=n||0,this._ux=v(n/s/t)||0,this._uy=v(n/s/e)||0},getContext:function(){return this._ctx},beginPath:function(t){return this._ctx=t,t&&t.beginPath(),t&&(this.dpr=t.dpr),this._saveData&&(this._len=0),this._lineDash&&(this._lineDash=null,this._dashOffset=0),this},moveTo:function(t,e){return this.addData(A.M,t,e),this._ctx&&this._ctx.moveTo(t,e),this._x0=t,this._y0=e,this._xi=t,this._yi=e,this},lineTo:function(t,e){var n=v(t-this._xi)>this._ux||v(e-this._yi)>this._uy||this._len<5;return this.addData(A.L,t,e),this._ctx&&n&&(this._needsDash()?this._dashedLineTo(t,e):this._ctx.lineTo(t,e)),n&&(this._xi=t,this._yi=e),this},bezierCurveTo:function(t,e,n,i,r,o){return this.addData(A.C,t,e,n,i,r,o),this._ctx&&(this._needsDash()?this._dashedBezierTo(t,e,n,i,r,o):this._ctx.bezierCurveTo(t,e,n,i,r,o)),this._xi=r,this._yi=o,this},quadraticCurveTo:function(t,e,n,i){return this.addData(A.Q,t,e,n,i),this._ctx&&(this._needsDash()?this._dashedQuadraticTo(t,e,n,i):this._ctx.quadraticCurveTo(t,e,n,i)),this._xi=n,this._yi=i,this},arc:function(t,e,n,i,r,o){return this.addData(A.A,t,e,n,n,i,r-i,0,o?0:1),this._ctx&&this._ctx.arc(t,e,n,i,r,o),this._xi=p(r)*n+t,this._yi=g(r)*n+e,this},arcTo:function(t,e,n,i,r){return this._ctx&&this._ctx.arcTo(t,e,n,i,r),this},rect:function(t,e,n,i){return this._ctx&&this._ctx.rect(t,e,n,i),this.addData(A.R,t,e,n,i),this},closePath:function(){this.addData(A.Z);var t=this._ctx,e=this._x0,n=this._y0;return t&&(this._needsDash()&&this._dashedLineTo(e,n),t.closePath()),this._xi=e,this._yi=n,this},fill:function(t){t&&t.fill(),this.toStatic()},stroke:function(t){t&&t.stroke(),this.toStatic()},setLineDash:function(t){if(t instanceof Array){this._lineDash=t,this._dashIdx=0;for(var e=0,n=0;n<t.length;n++)e+=t[n];this._dashSum=e}return this},setLineDashOffset:function(t){return this._dashOffset=t,this},len:function(){return this._len},setData:function(t){var e=t.length;this.data&&this.data.length===e||!y||(this.data=new Float32Array(e));for(var n=0;n<e;n++)this.data[n]=t[n];this._len=e},appendPath:function(t){t instanceof Array||(t=[t]);for(var e=t.length,n=0,i=this._len,r=0;r<e;r++)n+=t[r].len();y&&this.data instanceof Float32Array&&(this.data=new Float32Array(i+n));for(r=0;r<e;r++)for(var o=t[r].data,a=0;a<o.length;a++)this.data[i++]=o[a];this._len=i},addData:function(t){if(this._saveData){var e=this.data;this._len+arguments.length>e.length&&(this._expandData(),e=this.data);for(var n=0;n<arguments.length;n++)e[this._len++]=arguments[n];this._prevCmd=t}},_expandData:function(){if(!(this.data instanceof Array)){for(var t=[],e=0;e<this._len;e++)t[e]=this.data[e];this.data=t}},_needsDash:function(){return this._lineDash},_dashedLineTo:function(t,e){var n,i,r=this._dashSum,o=this._dashOffset,a=this._lineDash,s=this._ctx,A=this._xi,l=this._yi,c=t-A,u=e-l,h=m(c*c+u*u),p=A,g=l,v=a.length;for(c/=h,u/=h,o<0&&(o=r+o),p-=(o%=r)*c,g-=o*u;c>0&&p<=t||c<0&&p>=t||0===c&&(u>0&&g<=e||u<0&&g>=e);)p+=c*(n=a[i=this._dashIdx]),g+=u*n,this._dashIdx=(i+1)%v,c>0&&p<A||c<0&&p>A||u>0&&g<l||u<0&&g>l||s[i%2?"moveTo":"lineTo"](c>=0?d(p,t):f(p,t),u>=0?d(g,e):f(g,e));c=p-t,u=g-e,this._dashOffset=-m(c*c+u*u)},_dashedBezierTo:function(t,e,n,r,o,a){var s,A,l,c,u,h=this._dashSum,d=this._dashOffset,f=this._lineDash,p=this._ctx,g=this._xi,v=this._yi,y=i.cubicAt,w=0,x=this._dashIdx,B=f.length,b=0;for(d<0&&(d=h+d),d%=h,s=0;s<1;s+=.1)A=y(g,t,n,o,s+.1)-y(g,t,n,o,s),l=y(v,e,r,a,s+.1)-y(v,e,r,a,s),w+=m(A*A+l*l);for(;x<B&&!((b+=f[x])>d);x++);for(s=(b-d)/w;s<=1;)c=y(g,t,n,o,s),u=y(v,e,r,a,s),x%2?p.moveTo(c,u):p.lineTo(c,u),s+=f[x]/w,x=(x+1)%B;x%2!=0&&p.lineTo(o,a),A=o-c,l=a-u,this._dashOffset=-m(A*A+l*l)},_dashedQuadraticTo:function(t,e,n,i){var r=n,o=i;n=(n+2*t)/3,i=(i+2*e)/3,t=(this._xi+2*t)/3,e=(this._yi+2*e)/3,this._dashedBezierTo(t,e,n,i,r,o)},toStatic:function(){var t=this.data;t instanceof Array&&(t.length=this._len,y&&(this.data=new Float32Array(t)))},getBoundingRect:function(){l[0]=l[1]=u[0]=u[1]=Number.MAX_VALUE,c[0]=c[1]=h[0]=h[1]=-Number.MAX_VALUE;for(var t=this.data,e=0,n=0,i=0,s=0,d=0;d<t.length;){var f=t[d++];switch(1===d&&(i=e=t[d],s=n=t[d+1]),f){case A.M:e=i=t[d++],n=s=t[d++],u[0]=i,u[1]=s,h[0]=i,h[1]=s;break;case A.L:o.fromLine(e,n,t[d],t[d+1],u,h),e=t[d++],n=t[d++];break;case A.C:o.fromCubic(e,n,t[d++],t[d++],t[d++],t[d++],t[d],t[d+1],u,h),e=t[d++],n=t[d++];break;case A.Q:o.fromQuadratic(e,n,t[d++],t[d++],t[d],t[d+1],u,h),e=t[d++],n=t[d++];break;case A.A:var m=t[d++],v=t[d++],y=t[d++],w=t[d++],x=t[d++],B=t[d++]+x;d+=1;var b=1-t[d++];1===d&&(i=p(x)*y+m,s=g(x)*w+v),o.fromArc(m,v,y,w,x,B,b,u,h),e=p(B)*y+m,n=g(B)*w+v;break;case A.R:i=e=t[d++],s=n=t[d++];var C=t[d++],_=t[d++];o.fromLine(i,s,i+C,s+_,u,h);break;case A.Z:e=i,n=s}r.min(l,l,u),r.max(c,c,h)}return 0===d&&(l[0]=l[1]=c[0]=c[1]=0),new a(l[0],l[1],c[0]-l[0],c[1]-l[1])},rebuildPath:function(t){for(var e,n,i,r,o,a,s=this.data,l=this._ux,c=this._uy,u=this._len,h=0;h<u;){var d=s[h++];switch(1===h&&(e=i=s[h],n=r=s[h+1]),d){case A.M:e=i=s[h++],n=r=s[h++],t.moveTo(i,r);break;case A.L:o=s[h++],a=s[h++],(v(o-i)>l||v(a-r)>c||h===u-1)&&(t.lineTo(o,a),i=o,r=a);break;case A.C:t.bezierCurveTo(s[h++],s[h++],s[h++],s[h++],s[h++],s[h++]),i=s[h-2],r=s[h-1];break;case A.Q:t.quadraticCurveTo(s[h++],s[h++],s[h++],s[h++]),i=s[h-2],r=s[h-1];break;case A.A:var f=s[h++],m=s[h++],y=s[h++],w=s[h++],x=s[h++],B=s[h++],b=s[h++],C=s[h++],_=y>w?y:w,S=y>w?1:y/w,I=y>w?w/y:1,T=x+B;Math.abs(y-w)>.001?(t.translate(f,m),t.rotate(b),t.scale(S,I),t.arc(0,0,_,x,T,1-C),t.scale(1/S,1/I),t.rotate(-b),t.translate(-f,-m)):t.arc(f,m,_,x,T,1-C),1===h&&(e=p(x)*y+f,n=g(x)*w+m),i=p(T)*y+f,r=g(T)*w+m;break;case A.R:e=i=s[h],n=r=s[h+1],t.rect(s[h++],s[h++],s[h++],s[h++]);break;case A.Z:t.closePath(),i=e,r=n}}}},w.CMD=A;var x=w;t.exports=x},"3Voe":function(t,e,n){var i=n("A5tq"),r=n("K3bJ"),o=i.each,a=i.curry;function s(t,e){return"all"===t||i.isArray(t)&&i.indexOf(t,e)>=0||t===e}function A(t){var e=(t.ecModel.getComponent("axisPointer")||{}).coordSysAxesInfo;return e&&e.axesInfo[c(t)]}function l(t){return!!t.get("handle.show")}function c(t){return t.type+"||"+t.id}e.collect=function(t,e){var n={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return function(t,e,n){var A=e.getComponent("tooltip"),u=e.getComponent("axisPointer"),h=u.get("link",!0)||[],d=[];o(n.getCoordinateSystems(),function(n){if(n.axisPointerEnabled){var f=c(n.model),p=t.coordSysAxesInfo[f]={};t.coordSysMap[f]=n;var g=n.model,m=g.getModel("tooltip",A);if(o(n.getAxes(),a(x,!1,null)),n.getTooltipAxes&&A&&m.get("show")){var v="axis"===m.get("trigger"),y="cross"===m.get("axisPointer.type"),w=n.getTooltipAxes(m.get("axisPointer.axis"));(v||y)&&o(w.baseAxes,a(x,!y||"cross",v)),y&&o(w.otherAxes,a(x,"cross",!1))}}function x(a,A,f){var g=f.model.getModel("axisPointer",u),v=g.get("show");if(v&&("auto"!==v||a||l(g))){null==A&&(A=g.get("triggerTooltip"));var y=(g=a?function(t,e,n,a,s,A){var l=e.getModel("axisPointer"),c={};o(["type","snap","lineStyle","shadowStyle","label","animation","animationDurationUpdate","animationEasingUpdate","z"],function(t){c[t]=i.clone(l.get(t))}),c.snap="category"!==t.type&&!!A,"cross"===l.get("type")&&(c.type="line");var u=c.label||(c.label={});if(null==u.show&&(u.show=!1),"cross"===s){var h=l.get("label.show");if(u.show=null==h||h,!A){var d=c.lineStyle=l.get("crossStyle");d&&i.defaults(u,d.textStyle)}}return t.model.getModel("axisPointer",new r(c,n,a))}(f,m,u,e,a,A):g).get("snap"),w=c(f.model),x=A||y||"category"===f.type,B=t.axesInfo[w]={key:w,axis:f,coordSys:n,axisPointerModel:g,triggerTooltip:A,involveSeries:x,snap:y,useHandle:l(g),seriesModels:[]};p[w]=B,t.seriesInvolved|=x;var b=function(t,e){for(var n=e.model,i=e.dim,r=0;r<t.length;r++){var o=t[r]||{};if(s(o[i+"AxisId"],n.id)||s(o[i+"AxisIndex"],n.componentIndex)||s(o[i+"AxisName"],n.name))return r}}(h,f);if(null!=b){var C=d[b]||(d[b]={axesInfo:{}});C.axesInfo[w]=B,C.mapper=h[b].mapper,B.linkGroup=C}}}})}(n,t,e),n.seriesInvolved&&function(t,e){e.eachSeries(function(e){var n=e.coordinateSystem,i=e.get("tooltip.trigger",!0),r=e.get("tooltip.show",!0);n&&"none"!==i&&!1!==i&&"item"!==i&&!1!==r&&!1!==e.get("axisPointer.show",!0)&&o(t.coordSysAxesInfo[c(n.model)],function(t){var i=t.axis;n.getAxis(i.dim)===i&&(t.seriesModels.push(e),null==t.seriesDataCount&&(t.seriesDataCount=0),t.seriesDataCount+=e.getData().count())})},this)}(n,t),n},e.fixValue=function(t){var e=A(t);if(e){var n=e.axisPointerModel,i=e.axis.scale,r=n.option,o=n.get("status"),a=n.get("value");null!=a&&(a=i.parse(a));var s=l(n);null==o&&(r.status=s?"show":"hide");var c=i.getExtent().slice();c[0]>c[1]&&c.reverse(),(null==a||a>c[1])&&(a=c[1]),a<c[0]&&(a=c[0]),r.value=a,s&&(r.status=e.axis.scale.isBlank()?"hide":"show")}},e.getAxisInfo=A,e.getAxisPointerModel=function(t){var e=A(t);return e&&e.axisPointerModel},e.makeKey=c},"3Zgs":function(t,e){e.buildPath=function(t,e){var n,i,r,o,a,s=e.x,A=e.y,l=e.width,c=e.height,u=e.r;l<0&&(s+=l,l=-l),c<0&&(A+=c,c=-c),"number"==typeof u?n=i=r=o=u:u instanceof Array?1===u.length?n=i=r=o=u[0]:2===u.length?(n=r=u[0],i=o=u[1]):3===u.length?(n=u[0],i=o=u[1],r=u[2]):(n=u[0],i=u[1],r=u[2],o=u[3]):n=i=r=o=0,n+i>l&&(n*=l/(a=n+i),i*=l/a),r+o>l&&(r*=l/(a=r+o),o*=l/a),i+r>c&&(i*=c/(a=i+r),r*=c/a),n+o>c&&(n*=c/(a=n+o),o*=c/a),t.moveTo(s+n,A),t.lineTo(s+l-i,A),0!==i&&t.arc(s+l-i,A+i,i,-Math.PI/2,0),t.lineTo(s+l,A+c-r),0!==r&&t.arc(s+l-r,A+c-r,r,0,Math.PI/2),t.lineTo(s+o,A+c),0!==o&&t.arc(s+o,A+c-o,o,Math.PI/2,Math.PI),t.lineTo(s,A+n),0!==n&&t.arc(s+n,A+n,n,Math.PI,1.5*Math.PI)}},"3aAK":function(t,e){t.exports=function(t){var e=t.getRect(),n=t.getRangeInfo();return{coordSys:{type:"calendar",x:e.x,y:e.y,width:e.width,height:e.height,cellWidth:t.getCellWidth(),cellHeight:t.getCellHeight(),rangeInfo:{start:n.start,end:n.end,weeks:n.weeks,dayCount:n.allDay}},api:{coord:function(e,n){return t.dataToPoint(e,n)}}}}},"3ji9":function(t,e,n){var i=n("A5tq"),r=n("65+t"),o=n("Gkcz"),a=i.each,s=i.clone,A=i.map,l=i.merge,c=/^(min|max)?(.+)$/;function u(t){this._api=t,this._timelineOptions=[],this._mediaList=[],this._mediaDefault,this._currentMediaIndices=[],this._optionBackup,this._newBaseOption}function h(t,e,n){var r={width:e,height:n,aspectratio:e/n},o=!0;return i.each(t,function(t,e){var n=e.match(c);if(n&&n[1]&&n[2]){var i=n[1],a=n[2].toLowerCase();(function(t,e,n){return"min"===n?t>=e:"max"===n?t<=e:t===e})(r[a],t,i)||(o=!1)}}),o}u.prototype={constructor:u,setOption:function(t,e){t&&i.each(r.normalizeToArray(t.series),function(t){t&&t.data&&i.isTypedArray(t.data)&&i.setAsPrimitive(t.data)}),t=s(t);var n,c,u=this._optionBackup,h=function(t,e,n){var r,o,s=[],A=[],l=t.timeline;t.baseOption&&(o=t.baseOption);(l||t.options)&&(o=o||{},s=(t.options||[]).slice());if(t.media){o=o||{};var c=t.media;a(c,function(t){t&&t.option&&(t.query?A.push(t):r||(r=t))})}o||(o=t);o.timeline||(o.timeline=l);return a([o].concat(s).concat(i.map(A,function(t){return t.option})),function(t){a(e,function(e){e(t,n)})}),{baseOption:o,timelineOptions:s,mediaDefault:r,mediaList:A}}.call(this,t,e,!u);this._newBaseOption=h.baseOption,u?(n=u.baseOption,c=h.baseOption,a(c=c||{},function(t,e){if(null!=t){var i=n[e];if(o.hasClass(e)){t=r.normalizeToArray(t),i=r.normalizeToArray(i);var a=r.mappingToExists(i,t);n[e]=A(a,function(t){return t.option&&t.exist?l(t.exist,t.option,!0):t.exist||t.option})}else n[e]=l(i,t,!0)}}),h.timelineOptions.length&&(u.timelineOptions=h.timelineOptions),h.mediaList.length&&(u.mediaList=h.mediaList),h.mediaDefault&&(u.mediaDefault=h.mediaDefault)):this._optionBackup=h},mountOption:function(t){var e=this._optionBackup;return this._timelineOptions=A(e.timelineOptions,s),this._mediaList=A(e.mediaList,s),this._mediaDefault=s(e.mediaDefault),this._currentMediaIndices=[],s(t?e.baseOption:this._newBaseOption)},getTimelineOption:function(t){var e,n=this._timelineOptions;if(n.length){var i=t.getComponent("timeline");i&&(e=s(n[i.getCurrentIndex()],!0))}return e},getMediaOption:function(t){var e,n,i=this._api.getWidth(),r=this._api.getHeight(),o=this._mediaList,a=this._mediaDefault,l=[],c=[];if(!o.length&&!a)return c;for(var u=0,d=o.length;u<d;u++)h(o[u].query,i,r)&&l.push(u);return!l.length&&a&&(l=[-1]),l.length&&(e=l,n=this._currentMediaIndices,e.join(",")!==n.join(","))&&(c=A(l,function(t){return s(-1===t?a.option:o[t].option)})),this._currentMediaIndices=l,c}};var d=u;t.exports=d},"3mmk":function(t,e,n){var i=n("A5tq"),r=i.each,o="\0__link_datas",a="\0__link_mainData";function s(t,e){if((r=this)[a]===r){var n=i.extend({},this[o]);n[this.dataType]=e,u(e,n,t)}else h(e,this.dataType,this[a],t);var r;return e}function A(t,e){return t.struct&&t.struct.update(this),e}function l(t,e){return r(e[o],function(n,i){n!==e&&h(n.cloneShallow(),i,e,t)}),e}function c(t){var e=this[a];return null==t||null==e?e:e[o][t]}function u(t,e,n){t[o]={},r(e,function(e,i){h(e,i,t,n)})}function h(t,e,n,i){n[o][e]=t,t[a]=n,t.dataType=e,i.struct&&(t[i.structAttr]=i.struct,i.struct[i.datasAttr[e]]=t),t.getLinkedData=c}var d=function(t){var e=t.mainData,n=t.datas;n||(n={main:e},t.datasAttr={main:"data"}),t.datas=t.mainData=null,u(e,n,t),r(n,function(n){r(e.TRANSFERABLE_METHODS,function(e){n.wrapMethod(e,i.curry(s,t))})}),e.wrapMethod("cloneShallow",i.curry(l,t)),r(e.CHANGABLE_METHODS,function(n){e.wrapMethod(n,i.curry(A,t))}),i.assert(n[e.dataType]===e)};t.exports=d},"3oqo":function(t,e,n){var i=n("lbYD"),r=n("R33K"),o=Math.min,a=Math.max,s=Math.sin,A=Math.cos,l=2*Math.PI,c=i.create(),u=i.create(),h=i.create();var d=[],f=[];e.fromPoints=function(t,e,n){if(0!==t.length){var i,r=t[0],s=r[0],A=r[0],l=r[1],c=r[1];for(i=1;i<t.length;i++)r=t[i],s=o(s,r[0]),A=a(A,r[0]),l=o(l,r[1]),c=a(c,r[1]);e[0]=s,e[1]=l,n[0]=A,n[1]=c}},e.fromLine=function(t,e,n,i,r,s){r[0]=o(t,n),r[1]=o(e,i),s[0]=a(t,n),s[1]=a(e,i)},e.fromCubic=function(t,e,n,i,s,A,l,c,u,h){var p,g=r.cubicExtrema,m=r.cubicAt,v=g(t,n,s,l,d);for(u[0]=1/0,u[1]=1/0,h[0]=-1/0,h[1]=-1/0,p=0;p<v;p++){var y=m(t,n,s,l,d[p]);u[0]=o(y,u[0]),h[0]=a(y,h[0])}for(v=g(e,i,A,c,f),p=0;p<v;p++){var w=m(e,i,A,c,f[p]);u[1]=o(w,u[1]),h[1]=a(w,h[1])}u[0]=o(t,u[0]),h[0]=a(t,h[0]),u[0]=o(l,u[0]),h[0]=a(l,h[0]),u[1]=o(e,u[1]),h[1]=a(e,h[1]),u[1]=o(c,u[1]),h[1]=a(c,h[1])},e.fromQuadratic=function(t,e,n,i,s,A,l,c){var u=r.quadraticExtremum,h=r.quadraticAt,d=a(o(u(t,n,s),1),0),f=a(o(u(e,i,A),1),0),p=h(t,n,s,d),g=h(e,i,A,f);l[0]=o(t,s,p),l[1]=o(e,A,g),c[0]=a(t,s,p),c[1]=a(e,A,g)},e.fromArc=function(t,e,n,r,o,a,d,f,p){var g=i.min,m=i.max,v=Math.abs(o-a);if(v%l<1e-4&&v>1e-4)return f[0]=t-n,f[1]=e-r,p[0]=t+n,void(p[1]=e+r);if(c[0]=A(o)*n+t,c[1]=s(o)*r+e,u[0]=A(a)*n+t,u[1]=s(a)*r+e,g(f,c,u),m(p,c,u),(o%=l)<0&&(o+=l),(a%=l)<0&&(a+=l),o>a&&!d?a+=l:o<a&&d&&(o+=l),d){var y=a;a=o,o=y}for(var w=0;w<a;w+=Math.PI/2)w>o&&(h[0]=A(w)*n+t,h[1]=s(w)*r+e,g(f,h,f),m(p,h,p))}},"3xyt":function(t,e,n){var i=n("kCsp"),r=n("9nPt").extend({type:"series.scatter",dependencies:["grid","polar","geo","singleAxis","calendar"],getInitialData:function(t,e){return i(this.getSource(),this,{useEncodeDefaulter:!0})},brushSelector:"point",getProgressive:function(){var t=this.option.progressive;return null==t?this.option.large?5e3:this.get("progressive"):t},getProgressiveThreshold:function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?1e4:this.get("progressiveThreshold"):t},defaultOption:{coordinateSystem:"cartesian2d",zlevel:0,z:2,legendHoverLink:!0,hoverAnimation:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},clip:!0}});t.exports=r},"47wN":function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("f+YC").createSymbol,a=n("bDs9"),s=n("o9HO").makeBackground,A=n("rhmo"),l=r.curry,c=r.each,u=a.Group,h=i.extendComponentView({type:"legend.plain",newlineDisabled:!1,init:function(){this.group.add(this._contentGroup=new u),this._backgroundEl,this.group.add(this._selectorGroup=new u),this._isFirstRender=!0},getContentGroup:function(){return this._contentGroup},getSelectorGroup:function(){return this._selectorGroup},render:function(t,e,n){var i=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),t.get("show",!0)){var o=t.get("align"),a=t.get("orient");o&&"auto"!==o||(o="right"===t.get("left")&&"vertical"===a?"right":"left");var l=t.get("selector",!0),c=t.get("selectorPosition",!0);!l||c&&"auto"!==c||(c="horizontal"===a?"end":"start"),this.renderInner(o,t,e,n,l,a,c);var u=t.getBoxLayoutParams(),h={width:n.getWidth(),height:n.getHeight()},d=t.get("padding"),f=A.getLayoutRect(u,h,d),p=this.layoutInner(t,o,f,i,l,c),g=A.getLayoutRect(r.defaults({width:p.width,height:p.height},u),h,d);this.group.attr("position",[g.x-p.x,g.y-p.y]),this.group.add(this._backgroundEl=s(p,t))}},resetInner:function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},renderInner:function(t,e,n,i,o,a,s){var A=this.getContentGroup(),h=r.createHashMap(),d=e.get("selectedMode"),m=[];n.eachRawSeries(function(t){!t.get("legendHoverLink")&&m.push(t.id)}),c(e.getData(),function(r,o){var a=r.get("name");if(this.newlineDisabled||""!==a&&"\n"!==a){var s=n.getSeriesByName(a)[0];if(!h.get(a))if(s){var c=s.getData(),v=c.getVisual("color"),y=c.getVisual("borderColor");"function"==typeof v&&(v=v(s.getDataParams(0))),"function"==typeof y&&(y=y(s.getDataParams(0)));var w=c.getVisual("legendSymbol")||"roundRect",x=c.getVisual("symbol");this._createItem(a,o,r,e,w,x,t,v,y,d).on("click",l(f,a,null,i,m)).on("mouseover",l(p,s.name,null,i,m)).on("mouseout",l(g,s.name,null,i,m)),h.set(a,!0)}else n.eachRawSeries(function(n){if(!h.get(a)&&n.legendVisualProvider){var s=n.legendVisualProvider;if(!s.containName(a))return;var A=s.indexOfName(a),c=s.getItemVisual(A,"color"),u=s.getItemVisual(A,"borderColor");this._createItem(a,o,r,e,"roundRect",null,t,c,u,d).on("click",l(f,null,a,i,m)).on("mouseover",l(p,null,a,i,m)).on("mouseout",l(g,null,a,i,m)),h.set(a,!0)}},this)}else A.add(new u({newline:!0}))},this),o&&this._createSelector(o,e,i,a,s)},_createSelector:function(t,e,n,i,r){var o=this.getSelectorGroup();c(t,function(t){!function(t){var i=t.type,r=new a.Text({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===i?"legendAllSelect":"legendInverseSelect"})}});o.add(r);var s=e.getModel("selectorLabel"),A=e.getModel("emphasis.selectorLabel");a.setLabelStyle(r.style,r.hoverStyle={},s,A,{defaultText:t.title,isRectText:!1}),a.setHoverStyle(r)}(t)})},_createItem:function(t,e,n,i,s,A,l,c,h,f){var p=i.get("itemWidth"),g=i.get("itemHeight"),m=i.get("inactiveColor"),v=i.get("inactiveBorderColor"),y=i.get("symbolKeepAspect"),w=i.getModel("itemStyle"),x=i.isSelected(t),B=new u,b=n.getModel("textStyle"),C=n.get("icon"),_=n.getModel("tooltip"),S=_.parentModel,I=o(s=C||s,0,0,p,g,x?c:m,null==y||y);if(B.add(d(I,s,w,h,v,x)),!C&&A&&(A!==s||"none"===A)){var T=.8*g;"none"===A&&(A="circle");var M=o(A,(p-T)/2,(g-T)/2,T,T,x?c:m,null==y||y);B.add(d(M,A,w,h,v,x))}var Q="left"===l?p+5:-5,F=l,k=i.get("formatter"),D=t;"string"==typeof k&&k?D=k.replace("{name}",null!=t?t:""):"function"==typeof k&&(D=k(t)),B.add(new a.Text({style:a.setTextStyle({},b,{text:D,x:Q,y:g/2,textFill:x?b.getTextColor():m,textAlign:F,textVerticalAlign:"middle"})}));var U=new a.Rect({shape:B.getBoundingRect(),invisible:!0,tooltip:_.get("show")?r.extend({content:t,formatter:S.get("formatter",!0)||function(){return t},formatterParams:{componentType:"legend",legendIndex:i.componentIndex,name:t,$vars:["name"]}},_.option):null});return B.add(U),B.eachChild(function(t){t.silent=!0}),U.silent=!f,this.getContentGroup().add(B),a.setHoverStyle(B),B.__legendDataIndex=e,B},layoutInner:function(t,e,n,i,r,o){var a=this.getContentGroup(),s=this.getSelectorGroup();A.box(t.get("orient"),a,t.get("itemGap"),n.width,n.height);var l=a.getBoundingRect(),c=[-l.x,-l.y];if(r){A.box("horizontal",s,t.get("selectorItemGap",!0));var u=s.getBoundingRect(),h=[-u.x,-u.y],d=t.get("selectorButtonGap",!0),f=t.getOrient().index,p=0===f?"width":"height",g=0===f?"height":"width",m=0===f?"y":"x";"end"===o?h[f]+=l[p]+d:c[f]+=u[p]+d,h[1-f]+=l[g]/2-u[g]/2,s.attr("position",h),a.attr("position",c);var v={x:0,y:0};return v[p]=l[p]+d+u[p],v[g]=Math.max(l[g],u[g]),v[m]=Math.min(0,u[m]+h[1-f]),v}return a.attr("position",c),this.group.getBoundingRect()},remove:function(){this.getContentGroup().removeAll(),this._isFirstRender=!0}});function d(t,e,n,i,r,o){var a;return"line"!==e&&e.indexOf("empty")<0?(a=n.getItemStyle(),t.style.stroke=i,o||(a.stroke=r)):a=n.getItemStyle(["borderWidth","borderColor"]),t.setStyle(a)}function f(t,e,n,i){g(t,e,n,i),n.dispatchAction({type:"legendToggleSelect",name:null!=t?t:e}),p(t,e,n,i)}function p(t,e,n,i){var r=n.getZr().storage.getDisplayList()[0];r&&r.useHoverLayer||n.dispatchAction({type:"highlight",seriesName:t,name:e,excludeSeriesId:i})}function g(t,e,n,i){var r=n.getZr().storage.getDisplayList()[0];r&&r.useHoverLayer||n.dispatchAction({type:"downplay",seriesName:t,name:e,excludeSeriesId:i})}t.exports=h},"4GD6":function(t,e,n){var i=n("A5tq"),r=i.createHashMap,o=i.isObject,a=i.map;function s(t){this.categories=t.categories||[],this._needCollect=t.needCollect,this._deduplication=t.deduplication,this._map}s.createByAxisModel=function(t){var e=t.option,n=e.data,i=n&&a(n,c);return new s({categories:i,needCollect:!i,deduplication:!1!==e.dedplication})};var A=s.prototype;function l(t){return t._map||(t._map=r(t.categories))}function c(t){return o(t)&&null!=t.value?t.value:t+""}A.getOrdinal=function(t){return l(this).get(t)},A.parseAndCollect=function(t){var e,n=this._needCollect;if("string"!=typeof t&&!n)return t;if(n&&!this._deduplication)return e=this.categories.length,this.categories[e]=t,e;var i=l(this);return null==(e=i.get(t))&&(n?(e=this.categories.length,this.categories[e]=t,i.set(t,e)):e=NaN),e};var u=s;t.exports=u},"4phX":function(t,e,n){var i=n("A5tq");t.exports=function(t){var e={};t.eachSeriesByType("map",function(n){var r=n.getMapType();if(!n.getHostGeoModel()&&!e[r]){var o={};i.each(n.seriesGroup,function(e){var n=e.coordinateSystem,i=e.originalData;e.get("showLegendSymbol")&&t.getComponent("legend")&&i.each(i.mapDimension("value"),function(t,e){var r=i.getName(e),a=n.getRegion(r);if(a&&!isNaN(t)){var s=o[r]||0,A=n.dataToPoint(a.center);o[r]=s+1,i.setItemLayout(e,{point:A,offset:s})}})});var a=n.getData();a.each(function(t){var e=a.getName(t),n=a.getItemLayout(t)||{};n.showLabel=!o[e],a.setItemLayout(t,n)}),e[r]=!0}})}},"4y0g":function(t,e,n){var i=n("Q1ps"),r=n("a+Y0"),o=n("g+7e"),a=n("q/hq"),s=n("/Qj9"),A=n("8eli"),l=n("pRbu"),c=n("UnJe"),u=n("HF2S"),h=n("lGpf"),d=n("fUtP"),f=n("1yLv"),p=n("yW06"),g=n("D2gI").createFromString,m=n("A5tq"),v=m.isString,y=m.extend,w=m.defaults,x=m.trim,B=m.each,b=/[\s,]+/;function C(t){v(t)&&(t=(new DOMParser).parseFromString(t,"text/xml"));for(9===t.nodeType&&(t=t.firstChild);"svg"!==t.nodeName.toLowerCase()||1!==t.nodeType;)t=t.nextSibling;return t}function _(){this._defs={},this._root=null,this._isDefine=!1,this._isText=!1}_.prototype.parse=function(t,e){e=e||{};var n=C(t);if(!n)throw new Error("Illegal svg");var r=new i;this._root=r;var o=n.getAttribute("viewBox")||"",a=parseFloat(n.getAttribute("width")||e.width),A=parseFloat(n.getAttribute("height")||e.height);isNaN(a)&&(a=null),isNaN(A)&&(A=null),F(n,r,null,!0);for(var l,c,u=n.firstChild;u;)this._parseNode(u,r),u=u.nextSibling;if(o){var h=x(o).split(b);h.length>=4&&(l={x:parseFloat(h[0]||0),y:parseFloat(h[1]||0),width:parseFloat(h[2]),height:parseFloat(h[3])})}if(l&&null!=a&&null!=A&&(c=L(l,a,A),!e.ignoreViewBox)){var d=r;(r=new i).add(d),d.scale=c.scale.slice(),d.position=c.position.slice()}return e.ignoreRootClip||null==a||null==A||r.setClipPath(new s({shape:{x:0,y:0,width:a,height:A}})),{root:r,width:a,height:A,viewBoxRect:l,viewBoxTransform:c}},_.prototype._parseNode=function(t,e){var n,i,r=t.nodeName.toLowerCase();if("defs"===r?this._isDefine=!0:"text"===r&&(this._isText=!0),this._isDefine){if(i=I[r]){var o=i.call(this,t),a=t.getAttribute("id");a&&(this._defs[a]=o)}}else(i=S[r])&&(n=i.call(this,t,e),e.add(n));for(var s=t.firstChild;s;)1===s.nodeType&&this._parseNode(s,n),3===s.nodeType&&this._isText&&this._parseText(s,n),s=s.nextSibling;"defs"===r?this._isDefine=!1:"text"===r&&(this._isText=!1)},_.prototype._parseText=function(t,e){if(1===t.nodeType){var n=t.getAttribute("dx")||0,i=t.getAttribute("dy")||0;this._textX+=parseFloat(n),this._textY+=parseFloat(i)}var r=new o({style:{text:t.textContent,transformText:!0},position:[this._textX||0,this._textY||0]});T(e,r),F(t,r,this._defs);var a=r.style.fontSize;a&&a<9&&(r.style.fontSize=9,r.scale=r.scale||[1,1],r.scale[0]*=a/9,r.scale[1]*=a/9);var s=r.getBoundingRect();return this._textX+=s.width,e.add(r),r};var S={g:function(t,e){var n=new i;return T(e,n),F(t,n,this._defs),n},rect:function(t,e){var n=new s;return T(e,n),F(t,n,this._defs),n.setShape({x:parseFloat(t.getAttribute("x")||0),y:parseFloat(t.getAttribute("y")||0),width:parseFloat(t.getAttribute("width")||0),height:parseFloat(t.getAttribute("height")||0)}),n},circle:function(t,e){var n=new a;return T(e,n),F(t,n,this._defs),n.setShape({cx:parseFloat(t.getAttribute("cx")||0),cy:parseFloat(t.getAttribute("cy")||0),r:parseFloat(t.getAttribute("r")||0)}),n},line:function(t,e){var n=new l;return T(e,n),F(t,n,this._defs),n.setShape({x1:parseFloat(t.getAttribute("x1")||0),y1:parseFloat(t.getAttribute("y1")||0),x2:parseFloat(t.getAttribute("x2")||0),y2:parseFloat(t.getAttribute("y2")||0)}),n},ellipse:function(t,e){var n=new A;return T(e,n),F(t,n,this._defs),n.setShape({cx:parseFloat(t.getAttribute("cx")||0),cy:parseFloat(t.getAttribute("cy")||0),rx:parseFloat(t.getAttribute("rx")||0),ry:parseFloat(t.getAttribute("ry")||0)}),n},polygon:function(t,e){var n=t.getAttribute("points");n&&(n=M(n));var i=new u({shape:{points:n||[]}});return T(e,i),F(t,i,this._defs),i},polyline:function(t,e){var n=new c;T(e,n),F(t,n,this._defs);var i=t.getAttribute("points");return i&&(i=M(i)),new h({shape:{points:i||[]}})},image:function(t,e){var n=new r;return T(e,n),F(t,n,this._defs),n.setStyle({image:t.getAttribute("xlink:href"),x:t.getAttribute("x"),y:t.getAttribute("y"),width:t.getAttribute("width"),height:t.getAttribute("height")}),n},text:function(t,e){var n=t.getAttribute("x")||0,r=t.getAttribute("y")||0,o=t.getAttribute("dx")||0,a=t.getAttribute("dy")||0;this._textX=parseFloat(n)+parseFloat(o),this._textY=parseFloat(r)+parseFloat(a);var s=new i;return T(e,s),F(t,s,this._defs),s},tspan:function(t,e){var n=t.getAttribute("x"),r=t.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=r&&(this._textY=parseFloat(r));var o=t.getAttribute("dx")||0,a=t.getAttribute("dy")||0,s=new i;return T(e,s),F(t,s,this._defs),this._textX+=o,this._textY+=a,s},path:function(t,e){var n=t.getAttribute("d")||"",i=g(n);return T(e,i),F(t,i,this._defs),i}},I={lineargradient:function(t){var e=parseInt(t.getAttribute("x1")||0,10),n=parseInt(t.getAttribute("y1")||0,10),i=parseInt(t.getAttribute("x2")||10,10),r=parseInt(t.getAttribute("y2")||0,10),o=new d(e,n,i,r);return function(t,e){var n=t.firstChild;for(;n;){if(1===n.nodeType){var i=n.getAttribute("offset");i=i.indexOf("%")>0?parseInt(i,10)/100:i?parseFloat(i):0;var r=n.getAttribute("stop-color")||"#000000";e.addColorStop(i,r)}n=n.nextSibling}}(t,o),o},radialgradient:function(t){}};function T(t,e){t&&t.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),w(e.__inheritedStyle,t.__inheritedStyle))}function M(t){for(var e=x(t).split(b),n=[],i=0;i<e.length;i+=2){var r=parseFloat(e[i]),o=parseFloat(e[i+1]);n.push([r,o])}return n}var Q={fill:"fill",stroke:"stroke","stroke-width":"lineWidth",opacity:"opacity","fill-opacity":"fillOpacity","stroke-opacity":"strokeOpacity","stroke-dasharray":"lineDash","stroke-dashoffset":"lineDashOffset","stroke-linecap":"lineCap","stroke-linejoin":"lineJoin","stroke-miterlimit":"miterLimit","font-family":"fontFamily","font-size":"fontSize","font-style":"fontStyle","font-weight":"fontWeight","text-align":"textAlign","alignment-baseline":"textBaseline"};function F(t,e,n,i){var r=e.__inheritedStyle||{},o="text"===e.type;if(1===t.nodeType&&(function(t,e){var n=t.getAttribute("transform");if(n){var i=null,r=[];(n=n.replace(/,/g," ")).replace(U,function(t,e,n){r.push(e,n)});for(var o=r.length-1;o>0;o-=2){var a=r[o],s=r[o-1];switch(i=i||p.create(),s){case"translate":a=x(a).split(b),p.translate(i,i,[parseFloat(a[0]),parseFloat(a[1]||0)]);break;case"scale":a=x(a).split(b),p.scale(i,i,[parseFloat(a[0]),parseFloat(a[1]||a[0])]);break;case"rotate":a=x(a).split(b),p.rotate(i,i,parseFloat(a[0]));break;case"skew":a=x(a).split(b),console.warn("Skew transform is not supported yet");break;case"matrix":var a=x(a).split(b);i[0]=parseFloat(a[0]),i[1]=parseFloat(a[1]),i[2]=parseFloat(a[2]),i[3]=parseFloat(a[3]),i[4]=parseFloat(a[4]),i[5]=parseFloat(a[5])}}e.setLocalTransform(i)}}(t,e),y(r,function(t){var e=t.getAttribute("style"),n={};if(!e)return n;var i,r={};E.lastIndex=0;for(;null!=(i=E.exec(e));)r[i[1]]=i[2];for(var o in Q)Q.hasOwnProperty(o)&&null!=r[o]&&(n[Q[o]]=r[o]);return n}(t)),!i))for(var a in Q)if(Q.hasOwnProperty(a)){var s=t.getAttribute(a);null!=s&&(r[Q[a]]=s)}var A=o?"textFill":"fill",l=o?"textStroke":"stroke";e.style=e.style||new f;var c=e.style;null!=r.fill&&c.set(A,D(r.fill,n)),null!=r.stroke&&c.set(l,D(r.stroke,n)),B(["lineWidth","opacity","fillOpacity","strokeOpacity","miterLimit","fontSize"],function(t){var e="lineWidth"===t&&o?"textStrokeWidth":t;null!=r[t]&&c.set(e,parseFloat(r[t]))}),r.textBaseline&&"auto"!==r.textBaseline||(r.textBaseline="alphabetic"),"alphabetic"===r.textBaseline&&(r.textBaseline="bottom"),"start"===r.textAlign&&(r.textAlign="left"),"end"===r.textAlign&&(r.textAlign="right"),B(["lineDashOffset","lineCap","lineJoin","fontWeight","fontFamily","fontStyle","textAlign","textBaseline"],function(t){null!=r[t]&&c.set(t,r[t])}),r.lineDash&&(e.style.lineDash=x(r.lineDash).split(b)),c[l]&&"none"!==c[l]&&(e[l]=!0),e.__inheritedStyle=r}var k=/url\(\s*#(.*?)\)/;function D(t,e){var n=e&&t&&t.match(k);return n?e[x(n[1])]:t}var U=/(translate|scale|rotate|skewX|skewY|matrix)\(([\-\s0-9\.e,]*)\)/g;var E=/([^\s:;]+)\s*:\s*([^:;]+)/g;function L(t,e,n){var i=e/t.width,r=n/t.height,o=Math.min(i,r);return{scale:[o,o],position:[-(t.x+t.width/2)*o+e/2,-(t.y+t.height/2)*o+n/2]}}e.parseXML=C,e.makeViewBoxTransform=L,e.parseSVG=function(t,e){return(new _).parse(t,e)}},"5KYe":function(t,e,n){var i=n("loyO"),r=n("1ZnN").updateCenterAndZoom;i.registerAction({type:"treeExpandAndCollapse",event:"treeExpandAndCollapse",update:"update"},function(t,e){e.eachComponent({mainType:"series",subType:"tree",query:t},function(e){var n=t.dataIndex,i=e.getData().tree.getNodeByDataIndex(n);i.isExpand=!i.isExpand})}),i.registerAction({type:"treeRoam",event:"treeRoam",update:"none"},function(t,e){e.eachComponent({mainType:"series",subType:"tree",query:t},function(e){var n=e.coordinateSystem,i=r(n,t);e.setCenter&&e.setCenter(i.center),e.setZoom&&e.setZoom(i.zoom)})})},"5NhH":function(t,e,n){var i=n("A5tq"),r=n("Ym+9").parseClassType,o=0;e.getUID=function(t){return[t||"",o++,Math.random().toFixed(5)].join("_")},e.enableSubTypeDefaulter=function(t){var e={};return t.registerSubTypeDefaulter=function(t,n){t=r(t),e[t.main]=n},t.determineSubType=function(n,i){var o=i.type;if(!o){var a=r(n).main;t.hasSubTypes(n)&&e[a]&&(o=e[a](i))}return o},t},e.enableTopologicalTravel=function(t,e){function n(t,e){return t[e]||(t[e]={predecessor:[],successor:[]}),t[e]}t.topologicalTravel=function(t,r,o,a){if(t.length){var s=function(t){var r={},o=[];return i.each(t,function(a){var s=n(r,a),A=function(t,e){var n=[];return i.each(t,function(t){i.indexOf(e,t)>=0&&n.push(t)}),n}(s.originalDeps=e(a),t);s.entryCount=A.length,0===s.entryCount&&o.push(a),i.each(A,function(t){i.indexOf(s.predecessor,t)<0&&s.predecessor.push(t);var e=n(r,t);i.indexOf(e.successor,t)<0&&e.successor.push(a)})}),{graph:r,noEntryList:o}}(r),A=s.graph,l=s.noEntryList,c={};for(i.each(t,function(t){c[t]=!0});l.length;){var u=l.pop(),h=A[u],d=!!c[u];d&&(o.call(a,u,h.originalDeps.slice()),delete c[u]),i.each(h.successor,d?p:f)}i.each(c,function(){throw new Error("Circle dependency may exists")})}function f(t){A[t].entryCount--,0===A[t].entryCount&&l.push(t)}function p(t){c[t]=!0,f(t)}}}},"5P5h":function(t,e){var n={};e.register=function(t,e){n[t]=e},e.get=function(t){return n[t]}},"5ZXq":function(t,e,n){for(var i=n("loyO"),r=n("U3tO"),o=function(){},a=["treemapZoomToNode","treemapRender","treemapMove"],s=0;s<a.length;s++)i.registerAction({type:a[s],update:"updateView"},o);i.registerAction({type:"treemapRootToNode",update:"updateView"},function(t,e){e.eachComponent({mainType:"series",subType:"treemap",query:t},function(e,n){var i=r.retrieveTargetInfo(t,["treemapZoomToNode","treemapRootToNode"],e);if(i){var o=e.getViewRoot();o&&(t.direction=r.aboveViewRoot(o,i.node)?"rollUp":"drillDown"),e.resetViewRoot(i.node)}})})},"5xHH":function(t,e,n){var i=n("w9uD").parsePercent,r=n("A5tq"),o=Math.PI/180;t.exports=function(t,e,n,a){e.eachSeriesByType(t,function(t){var e=t.get("center"),a=t.get("radius");r.isArray(a)||(a=[0,a]),r.isArray(e)||(e=[e,e]);var s=n.getWidth(),A=n.getHeight(),l=Math.min(s,A),c=i(e[0],s),u=i(e[1],A),h=i(a[0],l/2),d=i(a[1],l/2),f=-t.get("startAngle")*o,p=t.get("minAngle")*o,g=t.getData().tree.root,m=t.getViewRoot(),v=m.depth,y=t.get("sort");null!=y&&function t(e,n){var i=e.children||[];e.children=function(t,e){if("function"==typeof e)return t.sort(e);var n="asc"===e;return t.sort(function(t,e){var i=(t.getValue()-e.getValue())*(n?1:-1);return 0===i?(t.dataIndex-e.dataIndex)*(n?-1:1):i})}(i,n),i.length&&r.each(e.children,function(e){t(e,n)})}(m,y);var w=0;r.each(m.children,function(t){!isNaN(t.getValue())&&w++});var x=m.getValue(),B=Math.PI/(x||w)*2,b=m.depth>0,C=m.height-(b?-1:1),_=(d-h)/(C||1),S=t.get("clockwise"),I=t.get("stillShowZeroSum"),T=S?1:-1,M=function(t,e){if(t){var n=e;if(t!==g){var o=t.getValue(),a=0===x&&I?B:o*B;a<p&&(a=p),n=e+T*a;var s=t.depth-v-(b?-1:1),A=h+_*s,d=h+_*(s+1),f=t.getModel();null!=f.get("r0")&&(A=i(f.get("r0"),l/2)),null!=f.get("r")&&(d=i(f.get("r"),l/2)),t.setLayout({angle:a,startAngle:e,endAngle:n,clockwise:S,cx:c,cy:u,r0:A,r:d})}if(t.children&&t.children.length){var m=0;r.each(t.children,function(t){m+=M(t,e+m)})}return n-e}};if(b){var Q=h,F=h+_,k=2*Math.PI;g.setLayout({angle:k,startAngle:f,endAngle:f+k,clockwise:S,cx:c,cy:u,r0:Q,r:F})}M(m,f)})}},"6+JZ":function(t,e,n){n("E5p3"),n("WIjj")},"63Q/":function(t,e,n){var i=n("fxHw").isDimensionStacked,r=n("A5tq").map;e.prepareDataCoordInfo=function(t,e,n){var o,a=t.getBaseAxis(),s=t.getOtherAxis(a),A=function(t,e){var n=0,i=t.scale.getExtent();return"start"===e?n=i[0]:"end"===e?n=i[1]:i[0]>0?n=i[0]:i[1]<0&&(n=i[1]),n}(s,n),l=a.dim,c=s.dim,u=e.mapDimension(c),h=e.mapDimension(l),d="x"===c||"radius"===c?1:0,f=r(t.dimensions,function(t){return e.mapDimension(t)}),p=e.getCalculationInfo("stackResultDimension");return(o|=i(e,f[0]))&&(f[0]=p),(o|=i(e,f[1]))&&(f[1]=p),{dataDimsForPoint:f,valueStart:A,valueAxisDim:c,baseAxisDim:l,stacked:!!o,valueDim:u,baseDim:h,baseDataOffset:d,stackedOverDimension:e.getCalculationInfo("stackedOverDimension")}},e.getStackedOnPoint=function(t,e,n,i){var r=NaN;t.stacked&&(r=n.get(n.getCalculationInfo("stackedOverDimension"),i)),isNaN(r)&&(r=t.valueStart);var o=t.baseDataOffset,a=[];return a[o]=n.get(t.baseDim,i),a[1-o]=r,e.dataToPoint(a)}},"65+t":function(t,e,n){var i=n("A5tq"),r=n("sutA"),o=i.each,a=i.isObject,s=i.isArray,A="series\0";function l(t){return t instanceof Array?t:null==t?[]:[t]}function c(t){return a(t)&&t.id&&0===(t.id+"").indexOf("\0_ec_\0")}var u=0;function h(t,e){return t&&t.hasOwnProperty(e)}e.normalizeToArray=l,e.defaultEmphasis=function(t,e,n){if(t){t[e]=t[e]||{},t.emphasis=t.emphasis||{},t.emphasis[e]=t.emphasis[e]||{};for(var i=0,r=n.length;i<r;i++){var o=n[i];!t.emphasis[e].hasOwnProperty(o)&&t[e].hasOwnProperty(o)&&(t.emphasis[e][o]=t[e][o])}}},e.TEXT_STYLE_OPTIONS=["fontStyle","fontWeight","fontSize","fontFamily","rich","tag","color","textBorderColor","textBorderWidth","width","height","lineHeight","align","verticalAlign","baseline","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY","textShadowColor","textShadowBlur","textShadowOffsetX","textShadowOffsetY","backgroundColor","borderColor","borderWidth","borderRadius","padding"],e.getDataItemValue=function(t){return!a(t)||s(t)||t instanceof Date?t:t.value},e.isDataItemOption=function(t){return a(t)&&!(t instanceof Array)},e.mappingToExists=function(t,e){e=(e||[]).slice();var n=i.map(t||[],function(t,e){return{exist:t}});return o(e,function(t,i){if(a(t)){for(var r=0;r<n.length;r++)if(!n[r].option&&null!=t.id&&n[r].exist.id===t.id+"")return n[r].option=t,void(e[i]=null);for(r=0;r<n.length;r++){var o=n[r].exist;if(!(n[r].option||null!=o.id&&null!=t.id||null==t.name||c(t)||c(o)||o.name!==t.name+""))return n[r].option=t,void(e[i]=null)}}}),o(e,function(t,e){if(a(t)){for(var i=0;i<n.length;i++){var r=n[i].exist;if(!n[i].option&&!c(r)&&null==t.id){n[i].option=t;break}}i>=n.length&&n.push({option:t})}}),n},e.makeIdAndName=function(t){var e=i.createHashMap();o(t,function(t,n){var i=t.exist;i&&e.set(i.id,t)}),o(t,function(t,n){var r=t.option;i.assert(!r||null==r.id||!e.get(r.id)||e.get(r.id)===t,"id duplicates: "+(r&&r.id)),r&&null!=r.id&&e.set(r.id,t),!t.keyInfo&&(t.keyInfo={})}),o(t,function(t,n){var i=t.exist,r=t.option,o=t.keyInfo;if(a(r)){if(o.name=null!=r.name?r.name+"":i?i.name:A+n,i)o.id=i.id;else if(null!=r.id)o.id=r.id+"";else{var s=0;do{o.id="\0"+o.name+"\0"+s++}while(e.get(o.id))}e.set(o.id,t)}})},e.isNameSpecified=function(t){var e=t.name;return!(!e||!e.indexOf(A))},e.isIdInner=c,e.compressBatches=function(t,e){var n={},i={};return r(t||[],n),r(e||[],i,n),[o(n),o(i)];function r(t,e,n){for(var i=0,r=t.length;i<r;i++)for(var o=t[i].seriesId,a=l(t[i].dataIndex),s=n&&n[o],A=0,c=a.length;A<c;A++){var u=a[A];s&&s[u]?s[u]=null:(e[o]||(e[o]={}))[u]=1}}function o(t,e){var n=[];for(var i in t)if(t.hasOwnProperty(i)&&null!=t[i])if(e)n.push(+i);else{var r=o(t[i],!0);r.length&&n.push({seriesId:i,dataIndex:r})}return n}},e.queryDataIndex=function(t,e){return null!=e.dataIndexInside?e.dataIndexInside:null!=e.dataIndex?i.isArray(e.dataIndex)?i.map(e.dataIndex,function(e){return t.indexOfRawIndex(e)}):t.indexOfRawIndex(e.dataIndex):null!=e.name?i.isArray(e.name)?i.map(e.name,function(e){return t.indexOfName(e)}):t.indexOfName(e.name):void 0},e.makeInner=function(){var t="__\0ec_inner_"+u+++"_"+Math.random().toFixed(5);return function(e){return e[t]||(e[t]={})}},e.parseFinder=function(t,e,n){if(i.isString(e)){var r={};r[e+"Index"]=0,e=r}var a=n&&n.defaultMainType;!a||h(e,a+"Index")||h(e,a+"Id")||h(e,a+"Name")||(e[a+"Index"]=0);var s={};return o(e,function(r,o){if(r=e[o],"dataIndex"!==o&&"dataIndexInside"!==o){var a=o.match(/^(\w+)(Index|Id|Name)$/)||[],A=a[1],l=(a[2]||"").toLowerCase();if(!(!A||!l||null==r||"index"===l&&"none"===r||n&&n.includeMainTypes&&i.indexOf(n.includeMainTypes,A)<0)){var c={mainType:A};"index"===l&&"all"===r||(c[l]=r);var u=t.queryComponents(c);s[A+"Models"]=u,s[A+"Model"]=u[0]}}else s[o]=r}),s},e.setAttribute=function(t,e,n){t.setAttribute?t.setAttribute(e,n):t[e]=n},e.getAttribute=function(t,e){return t.getAttribute?t.getAttribute(e):t[e]},e.getTooltipRenderMode=function(t){return"auto"===t?r.domSupported?"html":"richText":t||"html"},e.groupData=function(t,e){var n=i.createHashMap(),r=[];return i.each(t,function(t){var i=e(t);(n.get(i)||(r.push(i),n.set(i,[]))).push(t)}),{keys:r,buckets:n}}},"6EM+":function(t,e,n){var i=n("9nPt"),r=n("viOj"),o=n("DWNL").encodeHTML,a=n("K3bJ"),s=i.extend({type:"series.tree",layoutInfo:null,layoutMode:"box",getInitialData:function(t){var e={name:t.name,children:t.data},n=t.leaves||{},i=new a(n,this,this.ecModel),o=r.createTree(e,this,function(t){t.wrapMethod("getItemModel",function(t,e){var n=o.getNodeByDataIndex(e);return n.children.length&&n.isExpand||(t.parentModel=i),t})});var s=0;o.eachNode("preorder",function(t){t.depth>s&&(s=t.depth)});var A=t.expandAndCollapse&&t.initialTreeDepth>=0?t.initialTreeDepth:s;return o.root.eachNode("preorder",function(t){var e=t.hostTree.data.getRawDataItem(t.dataIndex);t.isExpand=e&&null!=e.collapsed?!e.collapsed:t.depth<=A}),o.data},getOrient:function(){var t=this.get("orient");return"horizontal"===t?t="LR":"vertical"===t&&(t="TB"),t},setZoom:function(t){this.option.zoom=t},setCenter:function(t){this.option.center=t},formatTooltip:function(t){for(var e=this.getData().tree,n=e.root.children[0],i=e.getNodeByDataIndex(t),r=i.getValue(),a=i.name;i&&i!==n;)a=i.parentNode.name+"."+a,i=i.parentNode;return o(a+(isNaN(r)||null==r?"":" : "+r))},defaultOption:{zlevel:0,z:2,coordinateSystem:"view",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",edgeShape:"curve",edgeForkPosition:"50%",roam:!1,nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:"#ccc",width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderColor:"#c23531",borderWidth:1.5},label:{show:!0,color:"#555"},leaves:{label:{show:!0}},animationEasing:"linear",animationDuration:700,animationDurationUpdate:1e3}});t.exports=s},"6TCU":function(t,e,n){n("E5p3"),n("oZxh")},"6daY":function(t,e,n){n("bSk/"),n("X8EE")},"6hLx":function(t,e,n){var i=n("A5tq"),r=n("w9uD"),o=n("NJ+n"),a=n("BGuy"),s=i.each,A=r.asc,l=function(t,e,n,i){this._dimName=t,this._axisIndex=e,this._valueWindow,this._percentWindow,this._dataExtent,this._minMaxSpan,this.ecModel=i,this._dataZoomModel=n};function c(t,e){var n=t.getAxisModel(),i=t._percentWindow,o=t._valueWindow;if(i){var a=r.getPixelPrecision(o,[0,500]);a=Math.min(a,20);var s=e||0===i[0]&&100===i[1];n.setRange(s?null:+o[0].toFixed(a),s?null:+o[1].toFixed(a))}}l.prototype={constructor:l,hostedBy:function(t){return this._dataZoomModel===t},getDataValueWindow:function(){return this._valueWindow.slice()},getDataPercentWindow:function(){return this._percentWindow.slice()},getTargetSeriesModels:function(){var t=[],e=this.ecModel;return e.eachSeries(function(n){if(o.isCoordSupported(n.get("coordinateSystem"))){var i=this._dimName,r=e.queryComponents({mainType:i+"Axis",index:n.get(i+"AxisIndex"),id:n.get(i+"AxisId")})[0];this._axisIndex===(r&&r.componentIndex)&&t.push(n)}},this),t},getAxisModel:function(){return this.ecModel.getComponent(this._dimName+"Axis",this._axisIndex)},getOtherAxisModel:function(){var t,e,n,i=this._dimName,r=this.ecModel,o=this.getAxisModel();return"x"===i||"y"===i?(e="gridIndex",t="x"===i?"y":"x"):(e="polarIndex",t="angle"===i?"radius":"angle"),r.eachComponent(t+"Axis",function(t){(t.get(e)||0)===(o.get(e)||0)&&(n=t)}),n},getMinMaxSpan:function(){return i.clone(this._minMaxSpan)},calculateDataWindow:function(t){var e,n=this._dataExtent,i=this.getAxisModel().axis.scale,o=this._dataZoomModel.getRangePropMode(),l=[0,100],c=[],u=[];s(["start","end"],function(a,s){var A=t[a],h=t[a+"Value"];"percent"===o[s]?(null==A&&(A=l[s]),h=i.parse(r.linearMap(A,l,n))):(e=!0,h=null==h?n[s]:i.parse(h),A=r.linearMap(h,n,l)),u[s]=h,c[s]=A}),A(u),A(c);var h=this._minMaxSpan;function d(t,e,n,o,s){var A=s?"Span":"ValueSpan";a(0,t,n,"all",h["min"+A],h["max"+A]);for(var l=0;l<2;l++)e[l]=r.linearMap(t[l],n,o,!0),s&&(e[l]=i.parse(e[l]))}return e?d(u,c,n,l,!1):d(c,u,l,n,!0),{valueWindow:u,percentWindow:c}},reset:function(t){if(t===this._dataZoomModel){var e=this.getTargetSeriesModels();this._dataExtent=function(t,e,n){var i=[1/0,-1/0];s(n,function(t){var n=t.getData();n&&s(n.mapDimension(e,!0),function(t){var e=n.getApproximateExtent(t);e[0]<i[0]&&(i[0]=e[0]),e[1]>i[1]&&(i[1]=e[1])})}),i[1]<i[0]&&(i=[NaN,NaN]);return function(t,e){var n=t.getAxisModel(),i=n.getMin(!0),r="category"===n.get("type"),o=r&&n.getCategories().length;null!=i&&"dataMin"!==i&&"function"!=typeof i?e[0]=i:r&&(e[0]=o>0?0:NaN);var a=n.getMax(!0);null!=a&&"dataMax"!==a&&"function"!=typeof a?e[1]=a:r&&(e[1]=o>0?o-1:NaN),n.get("scale",!0)||(e[0]>0&&(e[0]=0),e[1]<0&&(e[1]=0))}(t,i),i}(this,this._dimName,e),function(t){var e=t._minMaxSpan={},n=t._dataZoomModel,i=t._dataExtent;s(["min","max"],function(o){var a=n.get(o+"Span"),s=n.get(o+"ValueSpan");null!=s&&(s=t.getAxisModel().axis.scale.parse(s)),null!=s?a=r.linearMap(i[0]+s,i,[0,100],!0):null!=a&&(s=r.linearMap(a,[0,100],i,!0)-i[0]),e[o+"Span"]=a,e[o+"ValueSpan"]=s})}(this);var n=this.calculateDataWindow(t.settledOption);this._valueWindow=n.valueWindow,this._percentWindow=n.percentWindow,c(this)}},restore:function(t){t===this._dataZoomModel&&(this._valueWindow=this._percentWindow=null,c(this,!0))},filterData:function(t,e){if(t===this._dataZoomModel){var n=this._dimName,i=this.getTargetSeriesModels(),r=t.get("filterMode"),o=this._valueWindow;"none"!==r&&s(i,function(t){var e=t.getData(),i=e.mapDimension(n,!0);i.length&&("weakFilter"===r?e.filterSelf(function(t){for(var n,r,a,s=0;s<i.length;s++){var A=e.get(i[s],t),l=!isNaN(A),c=A<o[0],u=A>o[1];if(l&&!c&&!u)return!0;l&&(a=!0),c&&(n=!0),u&&(r=!0)}return a&&n&&r}):s(i,function(n){if("empty"===r)t.setData(e=e.map(n,function(t){return function(t){return t>=o[0]&&t<=o[1]}(t)?t:NaN}));else{var i={};i[n]=o,e.selectRange(i)}}),s(i,function(t){e.setApproximateExtent(o,t)}))})}}};var u=l;t.exports=u},"6n+O":function(t,e){var n={average:function(t){for(var e=0,n=0,i=0;i<t.length;i++)isNaN(t[i])||(e+=t[i],n++);return 0===n?NaN:e/n},sum:function(t){for(var e=0,n=0;n<t.length;n++)e+=t[n]||0;return e},max:function(t){for(var e=-1/0,n=0;n<t.length;n++)t[n]>e&&(e=t[n]);return isFinite(e)?e:NaN},min:function(t){for(var e=1/0,n=0;n<t.length;n++)t[n]<e&&(e=t[n]);return isFinite(e)?e:NaN},nearest:function(t){return t[0]}},i=function(t,e){return Math.round(t.length/2)};t.exports=function(t){return{seriesType:t,modifyOutputEnd:!0,reset:function(t,e,r){var o=t.getData(),a=t.get("sampling"),s=t.coordinateSystem;if("cartesian2d"===s.type&&a){var A,l=s.getBaseAxis(),c=s.getOtherAxis(l),u=l.getExtent(),h=Math.abs(u[1]-u[0]),d=Math.round(o.count()/h);d>1&&("string"==typeof a?A=n[a]:"function"==typeof a&&(A=a),A&&t.setData(o.downSample(o.mapDimension(c.dim),1/d,A,i)))}}}}},"6n33":function(t,e,n){var i=n("J0Bx").extend({type:"series.bar",dependencies:["grid","polar"],brushSelector:"rect",getProgressive:function(){return!!this.get("large")&&this.get("progressive")},getProgressiveThreshold:function(){var t=this.get("progressiveThreshold"),e=this.get("largeThreshold");return e>t&&(t=e),t},defaultOption:{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1}}});t.exports=i},"6o1z":function(t,e){t.exports={getBoxLayoutParams:function(){return{left:this.get("left"),top:this.get("top"),right:this.get("right"),bottom:this.get("bottom"),width:this.get("width"),height:this.get("height")}}}},"7+5S":function(t,e,n){var i=n("loyO");n("pmok"),n("i3ZV"),n("DXUs"),n("x4Ry");var r=n("4phX"),o=n("AmFa"),a=n("WI8i"),s=n("031+"),A=n("J571");i.registerLayout(r),i.registerVisual(o),i.registerProcessor(i.PRIORITY.PROCESSOR.STATISTIC,a),i.registerPreprocessor(s),A("map",[{type:"mapToggleSelect",event:"mapselectchanged",method:"toggleSelected"},{type:"mapSelect",event:"mapselected",method:"select"},{type:"mapUnSelect",event:"mapunselected",method:"unSelect"}])},"76++":function(t,e,n){var i=n("A5tq"),r=n("m9W5");function o(t,e){r.call(this,"radius",t,e),this.type="category"}o.prototype={constructor:o,pointToData:function(t,e){return this.polar.pointToData(t,e)["radius"===this.dim?0:1]},dataToRadius:r.prototype.dataToCoord,radiusToData:r.prototype.coordToData},i.inherits(o,r);var a=o;t.exports=a},"7AIG":function(t,e,n){var i=n("9nPt"),r=n("t+aF"),o=n("A5tq"),a=n("DWNL").encodeHTML,s=n("dBJA"),A=i.extend({type:"series.radar",dependencies:["radar"],init:function(t){A.superApply(this,"init",arguments),this.legendVisualProvider=new s(o.bind(this.getData,this),o.bind(this.getRawData,this))},getInitialData:function(t,e){return r(this,{generateCoord:"indicator_",generateCoordCount:1/0})},formatTooltip:function(t,e,n,i){var r=this.getData(),s=this.coordinateSystem.getIndicatorAxes(),A=this.getData().getName(t),l="html"===i?"<br/>":"\n";return a(""===A?this.name:A)+l+o.map(s,function(e,n){var i=r.get(r.mapDimension(e.dim),t);return a(e.name+" : "+i)}).join(l)},getTooltipPosition:function(t){if(null!=t)for(var e=this.getData(),n=this.coordinateSystem,i=e.getValues(o.map(n.dimensions,function(t){return e.mapDimension(t)}),t,!0),r=0,a=i.length;r<a;r++)if(!isNaN(i[r])){var s=n.getIndicatorAxes();return n.coordToPoint(s[r].dataToCoord(i[r]),r)}},defaultOption:{zlevel:0,z:2,coordinateSystem:"radar",legendHoverLink:!0,radarIndex:0,lineStyle:{width:2,type:"solid"},label:{position:"top"},symbol:"emptyCircle",symbolSize:4}}),l=A;t.exports=l},"7Apq":function(t,e,n){var i=n("bDs9"),r=n("A5tq"),o=n("zrBH");function a(t,e){i.Group.call(this);var n=new i.Polygon,r=new i.Polyline,o=new i.Text;this.add(n),this.add(r),this.add(o),this.highDownOnUpdate=function(t,e){"emphasis"===e?(r.ignore=r.hoverIgnore,o.ignore=o.hoverIgnore):(r.ignore=r.normalIgnore,o.ignore=o.normalIgnore)},this.updateData(t,e,!0)}var s=a.prototype,A=["itemStyle","opacity"];s.updateData=function(t,e,n){var o=this.childAt(0),a=t.hostModel,s=t.getItemModel(e),l=t.getItemLayout(e),c=t.getItemModel(e).get(A);c=null==c?1:c,o.useStyle({}),n?(o.setShape({points:l.points}),o.setStyle({opacity:0}),i.initProps(o,{style:{opacity:c}},a,e)):i.updateProps(o,{style:{opacity:c},shape:{points:l.points}},a,e);var u=s.getModel("itemStyle"),h=t.getItemVisual(e,"color");o.setStyle(r.defaults({lineJoin:"round",fill:h},u.getItemStyle(["opacity"]))),o.hoverStyle=u.getModel("emphasis").getItemStyle(),this._updateLabel(t,e),i.setHoverStyle(this)},s._updateLabel=function(t,e){var n=this.childAt(1),r=this.childAt(2),o=t.hostModel,a=t.getItemModel(e),s=t.getItemLayout(e).label,A=t.getItemVisual(e,"color");i.updateProps(n,{shape:{points:s.linePoints||s.linePoints}},o,e),i.updateProps(r,{style:{x:s.x,y:s.y}},o,e),r.attr({rotation:s.rotation,origin:[s.x,s.y],z2:10});var l=a.getModel("label"),c=a.getModel("emphasis.label"),u=a.getModel("labelLine"),h=a.getModel("emphasis.labelLine");A=t.getItemVisual(e,"color");i.setLabelStyle(r.style,r.hoverStyle={},l,c,{labelFetcher:t.hostModel,labelDataIndex:e,defaultText:t.getName(e),autoColor:A,useInsideStyle:!!s.inside},{textAlign:s.textAlign,textVerticalAlign:s.verticalAlign}),r.ignore=r.normalIgnore=!l.get("show"),r.hoverIgnore=!c.get("show"),n.ignore=n.normalIgnore=!u.get("show"),n.hoverIgnore=!h.get("show"),n.setStyle({stroke:A}),n.setStyle(u.getModel("lineStyle").getLineStyle()),n.hoverStyle=h.getModel("lineStyle").getLineStyle()},r.inherits(a,i.Group);var l=o.extend({type:"funnel",render:function(t,e,n){var i=t.getData(),r=this._data,o=this.group;i.diff(r).add(function(t){var e=new a(i,t);i.setItemGraphicEl(t,e),o.add(e)}).update(function(t,e){var n=r.getItemGraphicEl(e);n.updateData(i,t),o.add(n),i.setItemGraphicEl(t,n)}).remove(function(t){var e=r.getItemGraphicEl(t);o.remove(e)}).execute(),this._data=i},remove:function(){this.group.removeAll(),this._data=null},dispose:function(){}});t.exports=l},"7KEw":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("bDs9");n("ySr6"),n("6daY"),i.extendComponentView({type:"grid",render:function(t,e){this.group.removeAll(),t.get("show")&&this.group.add(new o.Rect({shape:t.coordinateSystem.getRect(),style:r.defaults({fill:t.get("backgroundColor")},t.getItemStyle()),silent:!0,z2:-1}))}}),i.registerPreprocessor(function(t){t.xAxis&&t.yAxis&&!t.grid&&(t.grid={})})},"7PDa":function(t,e,n){var i=n("ixaL"),r=n("w9uD").parsePercent,o=Math.PI/180;function a(t,e,n,i,r,o,a,s,A,l){function c(e,n,i,r){for(var o=e;o<n&&!(t[o].y+i>A+a);o++)if(t[o].y+=i,o>e&&o+1<n&&t[o+1].y>t[o].y+t[o].height)return void u(o,i/2);u(n-1,i/2)}function u(e,n){for(var i=e;i>=0&&!(t[i].y-n<A)&&(t[i].y-=n,!(i>0&&t[i].y>t[i-1].y+t[i-1].height));i--);}function h(t,e,n,i,r,o){for(var a=e?Number.MAX_VALUE:0,s=0,A=t.length;s<A;s++)if("none"===t[s].labelAlignTo){var l=Math.abs(t[s].y-i),c=t[s].len,u=t[s].len2,h=l<r+c?Math.sqrt((r+c+u)*(r+c+u)-l*l):Math.abs(t[s].x-n);e&&h>=a&&(h=a-10),!e&&h<=a&&(h=a+10),t[s].x=n+h*o,a=h}}t.sort(function(t,e){return t.y-e.y});for(var d,f=0,p=t.length,g=[],m=[],v=0;v<p;v++){if("outer"===t[v].position&&"labelLine"===t[v].labelAlignTo){var y=t[v].x-l;t[v].linePoints[1][0]+=y,t[v].x=l}(d=t[v].y-f)<0&&c(v,p,-d),f=t[v].y+t[v].height}a-f<0&&u(p-1,f-a);for(v=0;v<p;v++)t[v].y>=n?m.push(t[v]):g.push(t[v]);h(g,!1,e,n,i,r),h(m,!0,e,n,i,r)}function s(t){return"center"===t.position}t.exports=function(t,e,n,A,l,c){var u,h,d=t.getData(),f=[],p=!1,g=(t.get("minShowLabelAngle")||0)*o;d.each(function(o){var a=d.getItemLayout(o),s=d.getItemModel(o),A=s.getModel("label"),c=A.get("position")||s.get("emphasis.label.position"),m=A.get("distanceToLabelLine"),v=A.get("alignTo"),y=r(A.get("margin"),n),w=A.get("bleedMargin"),x=A.getFont(),B=s.getModel("labelLine"),b=B.get("length");b=r(b,n);var C=B.get("length2");if(C=r(C,n),!(a.angle<g)){var _,S,I,T,M=(a.startAngle+a.endAngle)/2,Q=Math.cos(M),F=Math.sin(M);u=a.cx,h=a.cy;var k,D=t.getFormattedLabel(o,"normal")||d.getName(o),U=i.getBoundingRect(D,x,T,"top"),E="inside"===c||"inner"===c;if("center"===c)_=a.cx,S=a.cy,T="center";else{var L=(E?(a.r+a.r0)/2*Q:a.r*Q)+u,O=(E?(a.r+a.r0)/2*F:a.r*F)+h;if(_=L+3*Q,S=O+3*F,!E){var P=L+Q*(b+e-a.r),H=O+F*(b+e-a.r),N=P+(Q<0?-1:1)*C;_="edge"===v?Q<0?l+y:l+n-y:N+(Q<0?-m:m),S=H,I=[[L,O],[P,H],[N,H]]}T=E?"center":"edge"===v?Q>0?"right":"left":Q>0?"left":"right"}var R=A.get("rotate");k="number"==typeof R?R*(Math.PI/180):R?Q<0?-M+Math.PI:-M:0,p=!!k,a.label={x:_,y:S,position:c,height:U.height,len:b,len2:C,linePoints:I,textAlign:T,verticalAlign:"middle",rotation:k,inside:E,labelDistance:m,labelAlignTo:v,labelMargin:y,bleedMargin:w,textRect:U,text:D,font:x},E||f.push(a.label)}}),!p&&t.get("avoidLabelOverlap")&&function(t,e,n,r,o,A,l,c){for(var u=[],h=[],d=Number.MAX_VALUE,f=-Number.MAX_VALUE,p=0;p<t.length;p++)s(t[p])||(t[p].x<e?(d=Math.min(d,t[p].x),u.push(t[p])):(f=Math.max(f,t[p].x),h.push(t[p])));for(a(h,e,n,r,1,0,A,0,c,f),a(u,e,n,r,-1,0,A,0,c,d),p=0;p<t.length;p++){var g=t[p];if(!s(g)){var m=g.linePoints;if(m){var v,y="edge"===g.labelAlignTo,w=g.textRect.width;(v=y?g.x<e?m[2][0]-g.labelDistance-l-g.labelMargin:l+o-g.labelMargin-m[2][0]-g.labelDistance:g.x<e?g.x-l-g.bleedMargin:l+o-g.x-g.bleedMargin)<g.textRect.width&&(g.text=i.truncateText(g.text,v,g.font),"edge"===g.labelAlignTo&&(w=i.getWidth(g.text,g.font)));var x=m[1][0]-m[2][0];y?g.x<e?m[2][0]=l+g.labelMargin+w+g.labelDistance:m[2][0]=l+o-g.labelMargin-w-g.labelDistance:(g.x<e?m[2][0]=g.x+g.labelDistance:m[2][0]=g.x-g.labelDistance,m[1][0]=m[2][0]+x),m[1][1]=m[2][1]=g.y}}}}(f,u,h,e,n,A,l,c)}},"7Qhn":function(t,e,n){var i=n("loyO");n("ISQU"),n("BINq"),i.registerPreprocessor(function(t){t.markPoint=t.markPoint||{}})},"7Qni":function(t,e,n){n("roIn").__DEV__;var i=n("rhmo"),r=n("w9uD"),o=r.parsePercent,a=r.linearMap;t.exports=function(t,e,n){t.eachSeriesByType("funnel",function(t){var n=t.getData(),r=n.mapDimension("value"),s=t.get("sort"),A=function(t,e){return i.getLayoutRect(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e),l=function(t,e){for(var n=t.mapDimension("value"),i=t.mapArray(n,function(t){return t}),r=[],o="ascending"===e,a=0,s=t.count();a<s;a++)r[a]=a;return"function"==typeof e?r.sort(e):"none"!==e&&r.sort(function(t,e){return o?i[t]-i[e]:i[e]-i[t]}),r}(n,s),c=t.get("orient"),u=A.width,h=A.height,d=A.x,f=A.y,p="horizontal"===c?[o(t.get("minSize"),h),o(t.get("maxSize"),h)]:[o(t.get("minSize"),u),o(t.get("maxSize"),u)],g=n.getDataExtent(r),m=t.get("min"),v=t.get("max");null==m&&(m=Math.min(g[0],0)),null==v&&(v=g[1]);var y=t.get("funnelAlign"),w=t.get("gap"),x=(("horizontal"===c?u:h)-w*(n.count()-1))/n.count(),B=function(t,e){if("horizontal"===c){var i,o=n.get(r,t)||0,s=a(o,[m,v],p,!0);switch(y){case"top":i=f;break;case"center":i=f+(h-s)/2;break;case"bottom":i=f+(h-s)}return[[e,i],[e,i+s]]}o=n.get(r,t)||0;var A,l=a(o,[m,v],p,!0);switch(y){case"left":A=d;break;case"center":A=d+(u-l)/2;break;case"right":A=d+u-l}return[[A,e],[A+l,e]]};"ascending"===s&&(x=-x,w=-w,"horizontal"===c?d+=u:f+=h,l=l.reverse());for(var b=0;b<l.length;b++){var C=l[b],_=l[b+1],S=n.getItemModel(C);if("horizontal"===c){var I=S.get("itemStyle.width");null==I?I=x:(I=o(I,u),"ascending"===s&&(I=-I));var T=B(C,d),M=B(_,d+I);d+=I+w,n.setItemLayout(C,{points:T.concat(M.slice().reverse())})}else{var Q=S.get("itemStyle.height");null==Q?Q=x:(Q=o(Q,h),"ascending"===s&&(Q=-Q)),T=B(C,"horizontal"===c?d:f),M=B(_,"horizontal"===c?d+I:f+Q),f+=Q+w,n.setItemLayout(C,{points:T.concat(M.slice().reverse())})}}!function(t){t.each(function(e){var n,i,r,o,a=t.getItemModel(e),s=a.getModel("label").get("position"),A=a.get("orient"),l=a.getModel("labelLine"),c=t.getItemLayout(e),u=c.points,h="inner"===s||"inside"===s||"center"===s||"insideLeft"===s||"insideRight"===s;if(h)"insideLeft"===s?(i=(u[0][0]+u[3][0])/2+5,r=(u[0][1]+u[3][1])/2,n="left"):"insideRight"===s?(i=(u[1][0]+u[2][0])/2-5,r=(u[1][1]+u[2][1])/2,n="right"):(i=(u[0][0]+u[1][0]+u[2][0]+u[3][0])/4,r=(u[0][1]+u[1][1]+u[2][1]+u[3][1])/4,n="center"),o=[[i,r],[i,r]];else{var d,f,p,g,m=l.get("length");"left"===s?(d=(u[3][0]+u[0][0])/2,f=(u[3][1]+u[0][1])/2,i=(p=d-m)-5,n="right"):"right"===s?(d=(u[1][0]+u[2][0])/2,f=(u[1][1]+u[2][1])/2,i=(p=d+m)+5,n="left"):"top"===s?(d=(u[3][0]+u[0][0])/2,r=(g=(f=(u[3][1]+u[0][1])/2)-m)-5,n="center"):"bottom"===s?(d=(u[1][0]+u[2][0])/2,r=(g=(f=(u[1][1]+u[2][1])/2)+m)+5,n="center"):"rightTop"===s?(d="horizontal"===A?u[3][0]:u[1][0],f="horizontal"===A?u[3][1]:u[1][1],"horizontal"===A?(r=(g=f-m)-5,n="center"):(i=(p=d+m)+5,n="top")):"rightBottom"===s?(d=u[2][0],f=u[2][1],"horizontal"===A?(r=(g=f+m)+5,n="center"):(i=(p=d+m)+5,n="bottom")):"leftTop"===s?(d=u[0][0],f="horizontal"===A?u[0][1]:u[1][1],"horizontal"===A?(r=(g=f-m)-5,n="center"):(i=(p=d-m)-5,n="right")):"leftBottom"===s?(d="horizontal"===A?u[1][0]:u[3][0],f="horizontal"===A?u[1][1]:u[2][1],"horizontal"===A?(r=(g=f+m)+5,n="center"):(i=(p=d-m)-5,n="right")):(d=(u[1][0]+u[2][0])/2,f=(u[1][1]+u[2][1])/2,"horizontal"===A?(r=(g=f+m)+5,n="center"):(i=(p=d+m)+5,n="left")),"horizontal"===A?i=p=d:r=g=f,o=[[d,f],[p,g]]}c.label={linePoints:o,x:i,y:r,verticalAlign:"middle",textAlign:n,inside:h}})}(n)})}},"7bMC":function(t,e,n){n("Gkcz").registerSubTypeDefaulter("visualMap",function(t){return t.categories||(t.pieces?t.pieces.length>0:t.splitNumber>0)&&!t.calculable?"piecewise":"continuous"})},"7iGl":function(t,e){t.exports={legend:{selector:{all:"鍏ㄩ��",inverse:"鍙嶉��"}},toolbox:{brush:{title:{rect:"鐭╁舰閫夋嫨",polygon:"鍦堥��",lineX:"妯悜閫夋嫨",lineY:"绾靛悜閫夋嫨",keep:"淇濇寔閫夋嫨",clear:"娓呴櫎閫夋嫨"}},dataView:{title:"鏁版嵁瑙嗗浘",lang:["鏁版嵁瑙嗗浘","鍏抽棴","鍒锋柊"]},dataZoom:{title:{zoom:"鍖哄煙缂╂斁",back:"鍖哄煙缂╂斁杩樺師"}},magicType:{title:{line:"鍒囨崲涓烘姌绾垮浘",bar:"鍒囨崲涓烘煴鐘跺浘",stack:"鍒囨崲涓哄爢鍙�",tiled:"鍒囨崲涓哄钩閾�"}},restore:{title:"杩樺師"},saveAsImage:{title:"淇濆瓨涓哄浘鐗�",lang:["鍙抽敭鍙﹀瓨涓哄浘鐗�"]}},series:{typeNames:{pie:"楗煎浘",bar:"鏌辩姸鍥�",line:"鎶樼嚎鍥�",scatter:"鏁g偣鍥�",effectScatter:"娑熸吉鏁g偣鍥�",radar:"闆疯揪鍥�",tree:"鏍戝浘",treemap:"鐭╁舰鏍戝浘",boxplot:"绠卞瀷鍥�",candlestick:"K绾垮浘",k:"K绾垮浘",heatmap:"鐑姏鍥�",map:"鍦板浘",parallel:"骞宠鍧愭爣鍥�",lines:"绾垮浘",graph:"鍏崇郴鍥�",sankey:"妗戝熀鍥�",funnel:"婕忔枟鍥�",gauge:"浠〃鐩樺浘",pictorialBar:"璞″舰鏌卞浘",themeRiver:"涓婚娌虫祦鍥�",sunburst:"鏃棩鍥�"}},aria:{general:{withTitle:"杩欐槸涓�涓叧浜庘�渰title}鈥濈殑鍥捐〃銆�",withoutTitle:"杩欐槸涓�涓浘琛紝"},series:{single:{prefix:"",withName:"鍥捐〃绫诲瀷鏄瘂seriesType}锛岃〃绀簕seriesName}銆�",withoutName:"鍥捐〃绫诲瀷鏄瘂seriesType}銆�"},multiple:{prefix:"瀹冪敱{seriesCount}涓浘琛ㄧ郴鍒楃粍鎴愩��",withName:"绗瑊seriesId}涓郴鍒楁槸涓�涓〃绀簕seriesName}鐨剓seriesType}锛�",withoutName:"绗瑊seriesId}涓郴鍒楁槸涓�涓獅seriesType}锛�",separator:{middle:"锛�",end:"銆�"}}},data:{allData:"鍏舵暟鎹槸鈥斺��",partialData:"鍏朵腑锛屽墠{displayCnt}椤规槸鈥斺��",withName:"{name}鐨勬暟鎹槸{value}",withoutName:"{value}",separator:{middle:"锛�",end:""}}}}},"7lwY":function(t,e,n){var i=n("A5tq"),r=n("ixaL"),o=n("65+t").makeInner,a=n("eII0"),s=a.makeLabelFormatter,A=a.getOptionCategoryInterval,l=a.shouldShowAllLabels,c=o();function u(t,e){var n,r=h(t,"labels"),o=A(e),a=d(r,o);return a||f(r,o,{labels:i.isFunction(o)?g(t,o):p(t,n="auto"===o?function(t){var e=c(t).autoInterval;return null!=e?e:c(t).autoInterval=t.calculateCategoryInterval()}(t):o),labelCategoryInterval:n})}function h(t,e){return c(t)[e]||(c(t)[e]=[])}function d(t,e){for(var n=0;n<t.length;n++)if(t[n].key===e)return t[n].value}function f(t,e,n){return t.push({key:e,value:n}),n}function p(t,e,n){var i=s(t),r=t.scale,o=r.getExtent(),a=t.getLabelModel(),A=[],c=Math.max((e||0)+1,1),u=o[0],h=r.count();0!==u&&c>1&&h/c>2&&(u=Math.round(Math.ceil(u/c)*c));var d=l(t),f=a.get("showMinLabel")||d,p=a.get("showMaxLabel")||d;f&&u!==o[0]&&m(o[0]);for(var g=u;g<=o[1];g+=c)m(g);function m(t){A.push(n?t:{formattedLabel:i(t),rawLabel:r.getLabel(t),tickValue:t})}return p&&g-c!==o[1]&&m(o[1]),A}function g(t,e,n){var r=t.scale,o=s(t),a=[];return i.each(r.getTicks(),function(t){var i=r.getLabel(t);e(t,i)&&a.push(n?t:{formattedLabel:o(t),rawLabel:i,tickValue:t})}),a}e.createAxisLabels=function(t){return"category"===t.type?function(t){var e=t.getLabelModel(),n=u(t,e);return!e.get("show")||t.scale.isBlank()?{labels:[],labelCategoryInterval:n.labelCategoryInterval}:n}(t):function(t){var e=t.scale.getTicks(),n=s(t);return{labels:i.map(e,function(e,i){return{formattedLabel:n(e,i),rawLabel:t.scale.getLabel(e),tickValue:e}})}}(t)},e.createAxisTicks=function(t,e){return"category"===t.type?function(t,e){var n,r,o=h(t,"ticks"),a=A(e),s=d(o,a);if(s)return s;if(e.get("show")&&!t.scale.isBlank()||(n=[]),i.isFunction(a))n=g(t,a,!0);else if("auto"===a){var l=u(t,t.getLabelModel());r=l.labelCategoryInterval,n=i.map(l.labels,function(t){return t.tickValue})}else n=p(t,r=a,!0);return f(o,a,{ticks:n,tickCategoryInterval:r})}(t,e):{ticks:t.scale.getTicks()}},e.calculateCategoryInterval=function(t){var e=function(t){var e=t.getLabelModel();return{axisRotate:t.getRotate?t.getRotate():t.isHorizontal&&!t.isHorizontal()?90:0,labelRotate:e.get("rotate")||0,font:e.getFont()}}(t),n=s(t),i=(e.axisRotate-e.labelRotate)/180*Math.PI,o=t.scale,a=o.getExtent(),A=o.count();if(a[1]-a[0]<1)return 0;var l=1;A>40&&(l=Math.max(1,Math.floor(A/40)));for(var u=a[0],h=t.dataToCoord(u+1)-t.dataToCoord(u),d=Math.abs(h*Math.cos(i)),f=Math.abs(h*Math.sin(i)),p=0,g=0;u<=a[1];u+=l){var m,v,y=r.getBoundingRect(n(u),e.font,"center","top");m=1.3*y.width,v=1.3*y.height,p=Math.max(p,m,7),g=Math.max(g,v,7)}var w=p/d,x=g/f;isNaN(w)&&(w=1/0),isNaN(x)&&(x=1/0);var B=Math.max(0,Math.floor(Math.min(w,x))),b=c(t.model),C=t.getExtent(),_=b.lastAutoInterval,S=b.lastTickCount;return null!=_&&null!=S&&Math.abs(_-B)<=1&&Math.abs(S-A)<=1&&_>B&&b.axisExtend0===C[0]&&b.axisExtend1===C[1]?B=_:(b.lastTickCount=A,b.lastAutoInterval=B,b.axisExtend0=C[0],b.axisExtend1=C[1]),B}},"7rRD":function(t,e,n){var i=n("A5tq");t.exports=function(t){var e=t.polar;if(e){i.isArray(e)||(e=[e]);var n=[];i.each(e,function(e,r){e.indicator?(e.type&&!e.shape&&(e.shape=e.type),t.radar=t.radar||[],i.isArray(t.radar)||(t.radar=[t.radar]),t.radar.push(e)):n.push(e)}),t.polar=n}i.each(t.series,function(t){t&&"radar"===t.type&&t.polarIndex&&(t.radarIndex=t.polarIndex)})}},"7xhy":function(t,e,n){var i=n("bDs9"),r=n("f+YC").createSymbol,o=n("ehtc"),a=i.extendShape({shape:{points:null},symbolProxy:null,softClipShape:null,buildPath:function(t,e){var n=e.points,i=e.size,r=this.symbolProxy,o=r.shape;if(!((t.getContext?t.getContext():t)&&i[0]<4))for(var a=0;a<n.length;){var s=n[a++],A=n[a++];isNaN(s)||isNaN(A)||(this.softClipShape&&!this.softClipShape.contain(s,A)||(o.x=s-i[0]/2,o.y=A-i[1]/2,o.width=i[0],o.height=i[1],r.buildPath(t,o,!0)))}},afterBrush:function(t){var e=this.shape,n=e.points,i=e.size;if(i[0]<4){this.setTransform(t);for(var r=0;r<n.length;){var o=n[r++],a=n[r++];isNaN(o)||isNaN(a)||(this.softClipShape&&!this.softClipShape.contain(o,a)||t.fillRect(o-i[0]/2,a-i[1]/2,i[0],i[1]))}this.restoreTransform(t)}},findDataIndex:function(t,e){for(var n=this.shape,i=n.points,r=n.size,o=Math.max(r[0],4),a=Math.max(r[1],4),s=i.length/2-1;s>=0;s--){var A=2*s,l=i[A]-o/2,c=i[A+1]-a/2;if(t>=l&&e>=c&&t<=l+o&&e<=c+a)return s}return-1}});function s(){this.group=new i.Group}var A=s.prototype;A.isPersistent=function(){return!this._incremental},A.updateData=function(t,e){this.group.removeAll();var n=new a({rectHover:!0,cursor:"default"});n.setShape({points:t.getLayout("symbolPoints")}),this._setCommon(n,t,!1,e),this.group.add(n),this._incremental=null},A.updateLayout=function(t){if(!this._incremental){var e=t.getLayout("symbolPoints");this.group.eachChild(function(t){if(null!=t.startIndex){var n=2*(t.endIndex-t.startIndex),i=4*t.startIndex*2;e=new Float32Array(e.buffer,i,n)}t.setShape("points",e)})}},A.incrementalPrepareUpdate=function(t){this.group.removeAll(),this._clearIncremental(),t.count()>2e6?(this._incremental||(this._incremental=new o({silent:!0})),this.group.add(this._incremental)):this._incremental=null},A.incrementalUpdate=function(t,e,n){var i;this._incremental?(i=new a,this._incremental.addDisplayable(i,!0)):((i=new a({rectHover:!0,cursor:"default",startIndex:t.start,endIndex:t.end})).incremental=!0,this.group.add(i)),i.setShape({points:e.getLayout("symbolPoints")}),this._setCommon(i,e,!!this._incremental,n)},A._setCommon=function(t,e,n,i){var o=e.hostModel;i=i||{};var a=e.getVisual("symbolSize");t.setShape("size",a instanceof Array?a:[a,a]),t.softClipShape=i.clipShape||null,t.symbolProxy=r(e.getVisual("symbol"),0,0,0,0),t.setColor=t.symbolProxy.setColor;var s=t.shape.size[0]<4;t.useStyle(o.getModel("itemStyle").getItemStyle(s?["color","shadowBlur","shadowColor"]:["color"]));var A=e.getVisual("color");A&&t.setColor(A),n||(t.seriesIndex=o.seriesIndex,t.on("mousemove",function(e){t.dataIndex=null;var n=t.findDataIndex(e.offsetX,e.offsetY);n>=0&&(t.dataIndex=n+(t.startIndex||0))}))},A.remove=function(){this._clearIncremental(),this._incremental=null,this.group.removeAll()},A._clearIncremental=function(){var t=this._incremental;t&&t.clearDisplaybles()};var l=s;t.exports=l},"80Hv":function(t,e,n){var i,r=n("sutA"),o="urn:schemas-microsoft-com:vml",a="undefined"==typeof window?null:window,s=!1,A=a&&a.document;if(A&&!r.canvasSupported)try{!A.namespaces.zrvml&&A.namespaces.add("zrvml",o),i=function(t){return A.createElement("<zrvml:"+t+' class="zrvml">')}}catch(t){i=function(t){return A.createElement("<"+t+' xmlns="'+o+'" class="zrvml">')}}e.doc=A,e.createNode=function(t){return i(t)},e.initVML=function(){if(!s&&A){s=!0;var t=A.styleSheets;t.length<31?A.createStyleSheet().addRule(".zrvml","behavior:url(#default#VML)"):t[0].addRule(".zrvml","behavior:url(#default#VML)")}}},"80oK":function(t,e,n){var i=n("lbYD"),r=n("A5tq"),o=n("pLcR").getCurvenessForEdge;function a(t,e){t.eachEdge(function(t,n){var a=r.retrieve3(t.getModel().get("lineStyle.curveness"),-o(t,e,n,!0),0),s=i.clone(t.node1.getLayout()),A=i.clone(t.node2.getLayout()),l=[s,A];+a&&l.push([(s[0]+A[0])/2-(s[1]-A[1])*a,(s[1]+A[1])/2-(A[0]-s[0])*a]),t.setLayout(l)})}e.simpleLayout=function(t){var e=t.coordinateSystem;if(!e||"view"===e.type){var n=t.getGraph();n.eachNode(function(t){var e=t.getModel();t.setLayout([+e.get("x"),+e.get("y")])}),a(n,t)}},e.simpleLayoutEdge=a},"8P6b":function(t,e,n){var i=n("quL4")([["lineWidth","width"],["stroke","color"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"]]),r={getLineStyle:function(t){var e=i(this,t);return e.lineDash=this.getLineDash(e.lineWidth),e},getLineDash:function(t){null==t&&(t=1);var e=this.get("type"),n=Math.max(t,2),i=4*t;return"solid"!==e&&null!=e&&("dashed"===e?[i,i]:[n,n])}};t.exports=r},"8Vch":function(t,e,n){var i=n("w9uD"),r=i.round;function o(t){return i.getPrecisionSafe(t)+2}function a(t,e,n){t[e]=Math.max(Math.min(t[e],n[1]),n[0])}function s(t,e){!isFinite(t[0])&&(t[0]=e[0]),!isFinite(t[1])&&(t[1]=e[1]),a(t,0,e),a(t,1,e),t[0]>t[1]&&(t[0]=t[1])}e.intervalScaleNiceTicks=function(t,e,n,a){var A={},l=t[1]-t[0],c=A.interval=i.nice(l/e,!0);null!=n&&c<n&&(c=A.interval=n),null!=a&&c>a&&(c=A.interval=a);var u=A.intervalPrecision=o(c);return s(A.niceTickExtent=[r(Math.ceil(t[0]/c)*c,u),r(Math.floor(t[1]/c)*c,u)],t),A},e.getIntervalPrecision=o,e.fixExtent=s},"8cgE":function(t,e,n){var i=n("A5tq"),r=n("m9W5"),o=function(t,e,n,i,o){r.call(this,t,e,n),this.type=i||"value",this.position=o||"bottom",this.orient=null};o.prototype={constructor:o,model:null,isHorizontal:function(){var t=this.position;return"top"===t||"bottom"===t},pointToData:function(t,e){return this.coordinateSystem.pointToData(t,e)[0]},toGlobalCoord:null,toLocalCoord:null},i.inherits(o,r);var a=o;t.exports=a},"8eli":function(t,e,n){var i=n("UnJe").extend({type:"ellipse",shape:{cx:0,cy:0,rx:0,ry:0},buildPath:function(t,e){var n=.5522848,i=e.cx,r=e.cy,o=e.rx,a=e.ry,s=o*n,A=a*n;t.moveTo(i-o,r),t.bezierCurveTo(i-o,r-A,i-s,r-a,i,r-a),t.bezierCurveTo(i+s,r-a,i+o,r-A,i+o,r),t.bezierCurveTo(i+o,r+A,i+s,r+a,i,r+a),t.bezierCurveTo(i-s,r+a,i-o,r+A,i-o,r),t.closePath()}});t.exports=i},"8ubz":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("K3bJ"),a=n("65+t").isNameSpecified,s=n("7iGl").legend.selector,A={all:{type:"all",title:r.clone(s.all)},inverse:{type:"inverse",title:r.clone(s.inverse)}},l=i.extendComponentModel({type:"legend.plain",dependencies:["series"],layoutMode:{type:"box",ignoreSize:!0},init:function(t,e,n){this.mergeDefaultAndTheme(t,n),t.selected=t.selected||{},this._updateSelector(t)},mergeOption:function(t){l.superCall(this,"mergeOption",t),this._updateSelector(t)},_updateSelector:function(t){var e=t.selector;!0===e&&(e=t.selector=["all","inverse"]),r.isArray(e)&&r.each(e,function(t,n){r.isString(t)&&(t={type:t}),e[n]=r.merge(t,A[t.type])})},optionUpdated:function(){this._updateData(this.ecModel);var t=this._data;if(t[0]&&"single"===this.get("selectedMode")){for(var e=!1,n=0;n<t.length;n++){var i=t[n].get("name");if(this.isSelected(i)){this.select(i),e=!0;break}}!e&&this.select(t[0].get("name"))}},_updateData:function(t){var e=[],n=[];t.eachRawSeries(function(i){var r,o=i.name;if(n.push(o),i.legendVisualProvider){var s=i.legendVisualProvider.getAllNames();t.isSeriesFiltered(i)||(n=n.concat(s)),s.length?e=e.concat(s):r=!0}else r=!0;r&&a(i)&&e.push(i.name)}),this._availableNames=n;var i=this.get("data")||e,s=r.map(i,function(t){return"string"!=typeof t&&"number"!=typeof t||(t={name:t}),new o(t,this,this.ecModel)},this);this._data=s},getData:function(){return this._data},select:function(t){var e=this.option.selected;if("single"===this.get("selectedMode")){var n=this._data;r.each(n,function(t){e[t.get("name")]=!1})}e[t]=!0},unSelect:function(t){"single"!==this.get("selectedMode")&&(this.option.selected[t]=!1)},toggleSelected:function(t){var e=this.option.selected;e.hasOwnProperty(t)||(e[t]=!0),this[e[t]?"unSelect":"select"](t)},allSelect:function(){var t=this._data,e=this.option.selected;r.each(t,function(t){e[t.get("name",!0)]=!0})},inverseSelect:function(){var t=this._data,e=this.option.selected;r.each(t,function(t){var n=t.get("name",!0);e.hasOwnProperty(n)||(e[n]=!0),e[n]=!e[n]})},isSelected:function(t){var e=this.option.selected;return!(e.hasOwnProperty(t)&&!e[t])&&r.indexOf(this._availableNames,t)>=0},getOrient:function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},defaultOption:{zlevel:0,z:4,show:!0,orient:"horizontal",left:"center",top:0,align:"auto",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemGap:10,itemWidth:25,itemHeight:14,inactiveColor:"#ccc",inactiveBorderColor:"#ccc",itemStyle:{borderWidth:0},textStyle:{color:"#333"},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:" sans-serif",color:"#666",borderWidth:1,borderColor:"#666"},emphasis:{selectorLabel:{show:!0,color:"#eee",backgroundColor:"#666"}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1}}}),c=l;t.exports=c},"9AUj":function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},"9F28":function(t,e,n){var i=n("TfMJ"),r=function(){this._track=[]};function o(t){var e=t[1][0]-t[0][0],n=t[1][1]-t[0][1];return Math.sqrt(e*e+n*n)}r.prototype={constructor:r,recognize:function(t,e,n){return this._doTrack(t,e,n),this._recognize(t)},clear:function(){return this._track.length=0,this},_doTrack:function(t,e,n){var r=t.touches;if(r){for(var o={points:[],touches:[],target:e,event:t},a=0,s=r.length;a<s;a++){var A=r[a],l=i.clientToLocal(n,A,{});o.points.push([l.zrX,l.zrY]),o.touches.push(A)}this._track.push(o)}},_recognize:function(t){for(var e in a)if(a.hasOwnProperty(e)){var n=a[e](this._track,t);if(n)return n}}};var a={pinch:function(t,e){var n=t.length;if(n){var i,r=(t[n-1]||{}).points,a=(t[n-2]||{}).points||r;if(a&&a.length>1&&r&&r.length>1){var s=o(r)/o(a);!isFinite(s)&&(s=1),e.pinchScale=s;var A=[((i=r)[0][0]+i[1][0])/2,(i[0][1]+i[1][1])/2];return e.pinchX=A[0],e.pinchY=A[1],{type:"pinch",target:t[0].target,event:e}}}}},s=r;t.exports=s},"9IEk":function(t,e,n){var i=n("A5tq"),r=n("r+KN"),o=n("w9uD"),a=o.parsePercent,s=o.MAX_SAFE_INTEGER,A=n("rhmo"),l=n("U3tO"),c=Math.max,u=Math.min,h=i.retrieve,d=i.each,f=["itemStyle","borderWidth"],p=["itemStyle","gapWidth"],g=["upperLabel","show"],m=["upperLabel","height"],v={seriesType:"treemap",reset:function(t,e,n,o){var g=n.getWidth(),m=n.getHeight(),v=t.option,B=A.getLayoutRect(t.getBoxLayoutParams(),{width:n.getWidth(),height:n.getHeight()}),b=v.size||[],C=a(h(B.width,b[0]),g),_=a(h(B.height,b[1]),m),S=o&&o.type,I=l.retrieveTargetInfo(o,["treemapZoomToNode","treemapRootToNode"],t),T="treemapRender"===S||"treemapMove"===S?o.rootRect:null,M=t.getViewRoot(),Q=l.getPathToRoot(M);if("treemapMove"!==S){var F="treemapZoomToNode"===S?function(t,e,n,i,r){var o,a=(e||{}).node,A=[i,r];if(!a||a===n)return A;var l=i*r,c=l*t.option.zoomToNodeRatio;for(;o=a.parentNode;){for(var u=0,h=o.children,d=0,p=h.length;d<p;d++)u+=h[d].getValue();var g=a.getValue();if(0===g)return A;c*=u/g;var m=o.getModel(),v=m.get(f),y=Math.max(v,x(m));(c+=4*v*v+(3*v+y)*Math.pow(c,.5))>s&&(c=s),a=o}c<l&&(c=l);var w=Math.pow(c/l,.5);return[i*w,r*w]}(t,I,M,C,_):T?[T.width,T.height]:[C,_],k=v.sort;k&&"asc"!==k&&"desc"!==k&&(k="desc");var D={squareRatio:v.squareRatio,sort:k,leafDepth:v.leafDepth};M.hostTree.clearLayouts();var U={x:0,y:0,width:F[0],height:F[1],area:F[0]*F[1]};M.setLayout(U),function t(e,n,r,o){var a;var s;if(e.isRemoved())return;var A=e.getLayout();a=A.width;s=A.height;var l=e.getModel();var h=l.get(f);var g=l.get(p)/2;var m=x(l);var v=Math.max(h,m);var B=h-g;var b=v-g;var l=e.getModel();e.setLayout({borderWidth:h,upperHeight:v,upperLabelHeight:m},!0);a=c(a-2*B,0);s=c(s-B-b,0);var C=a*s;var _=function(t,e,n,r,o,a){var s=t.children||[],A=r.sort;"asc"!==A&&"desc"!==A&&(A=null);var l=null!=r.leafDepth&&r.leafDepth<=a;if(o&&!l)return t.viewChildren=[];!function(t,e){e&&t.sort(function(t,n){var i="asc"===e?t.getValue()-n.getValue():n.getValue()-t.getValue();return 0===i?"asc"===e?t.dataIndex-n.dataIndex:n.dataIndex-t.dataIndex:i})}(s=i.filter(s,function(t){return!t.isRemoved()}),A);var c=function(t,e,n){for(var i=0,r=0,o=e.length;r<o;r++)i+=e[r].getValue();var a=t.get("visualDimension");if(e&&e.length)if("value"===a&&n)s=[e[e.length-1].getValue(),e[0].getValue()],"asc"===n&&s.reverse();else{var s=[1/0,-1/0];d(e,function(t){var e=t.getValue(a);e<s[0]&&(s[0]=e),e>s[1]&&(s[1]=e)})}else s=[NaN,NaN];return{sum:i,dataExtent:s}}(e,s,A);if(0===c.sum)return t.viewChildren=[];if(c.sum=function(t,e,n,i,r){if(!i)return n;for(var o=t.get("visibleMin"),a=r.length,s=a,A=a-1;A>=0;A--){var l=r["asc"===i?a-A-1:A].getValue();l/n*e<o&&(s=A,n-=l)}return"asc"===i?r.splice(0,a-s):r.splice(s,a-s),n}(e,n,c.sum,A,s),0===c.sum)return t.viewChildren=[];for(var u=0,h=s.length;u<h;u++){var f=s[u].getValue()/c.sum*n;s[u].setLayout({area:f})}l&&(s.length&&t.setLayout({isLeafRoot:!0},!0),s.length=0);return t.viewChildren=s,t.setLayout({dataExtent:c.dataExtent},!0),s}(e,l,C,n,r,o);if(!_.length)return;var S={x:B,y:b,width:a,height:s};var I=u(a,s);var T=1/0;var M=[];M.area=0;for(var Q=0,F=_.length;Q<F;){var k=_[Q];M.push(k),M.area+=k.getLayout().area;var D=y(M,I,n.squareRatio);D<=T?(Q++,T=D):(M.area-=M.pop().getLayout().area,w(M,I,S,g,!1),I=u(S.width,S.height),M.length=M.area=0,T=1/0)}M.length&&w(M,I,S,g,!0);if(!r){var U=l.get("childrenVisibleMin");null!=U&&C<U&&(r=!0)}for(var Q=0,F=_.length;Q<F;Q++)t(_[Q],n,r,o+1)}(M,D,!1,0);U=M.getLayout();d(Q,function(t,e){var n=(Q[e+1]||M).getValue();t.setLayout(i.extend({dataExtent:[n,n],borderWidth:0,upperHeight:0},U))})}var E=t.getData().tree.root;E.setLayout(function(t,e,n){if(e)return{x:e.x,y:e.y};var i={x:0,y:0};if(!n)return i;var r=n.node,o=r.getLayout();if(!o)return i;var a=[o.width/2,o.height/2],s=r;for(;s;){var A=s.getLayout();a[0]+=A.x,a[1]+=A.y,s=s.parentNode}return{x:t.width/2-a[0],y:t.height/2-a[1]}}(B,T,I),!0),t.setLayoutInfo(B),function t(e,n,i,o,a){var s=e.getLayout();var A=i[a];var l=A&&A===e;if(A&&!l||a===i.length&&e!==o)return;e.setLayout({isInView:!0,invisible:!l&&!n.intersect(s),isAboveViewRoot:l},!0);var c=new r(n.x-s.x,n.y-s.y,n.width,n.height);d(e.viewChildren||[],function(e){t(e,c,i,o,a+1)})}(E,new r(-B.x,-B.y,g,m),Q,M,0)}};function y(t,e,n){for(var i,r=0,o=1/0,a=0,s=t.length;a<s;a++)(i=t[a].getLayout().area)&&(i<o&&(o=i),i>r&&(r=i));var A=t.area*t.area,l=e*e*n;return A?c(l*r/A,A/(l*o)):1/0}function w(t,e,n,i,r){var o=e===n.width?0:1,a=1-o,s=["x","y"],A=["width","height"],l=n[s[o]],h=e?t.area/e:0;(r||h>n[A[a]])&&(h=n[A[a]]);for(var d=0,f=t.length;d<f;d++){var p=t[d],g={},m=h?p.getLayout().area/h:0,v=g[A[a]]=c(h-2*i,0),y=n[s[o]]+n[A[o]]-l,w=d===f-1||y<m?y:m,x=g[A[o]]=c(w-2*i,0);g[s[a]]=n[s[a]]+u(i,v/2),g[s[o]]=l+u(i,x/2),l+=w,p.setLayout(g,!0)}n[s[a]]+=h,n[A[a]]-=h}function x(t){return t.get(g)?t.get(m):0}t.exports=v},"9Ju6":function(t,e,n){"use strict";var i=n("ywUT");t.exports=i.isStandardBrowserEnv()?{write:function(t,e,n,r,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),i.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),i.isString(r)&&s.push("path="+r),i.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},"9i2m":function(t,e,n){var i=n("A5tq"),r=i.createHashMap,o=i.isTypedArray,a=n("Ym+9").enableClassCheck,s=n("m1ec"),A=s.SOURCE_FORMAT_ORIGINAL,l=s.SERIES_LAYOUT_BY_COLUMN,c=s.SOURCE_FORMAT_UNKNOWN,u=s.SOURCE_FORMAT_TYPED_ARRAY,h=s.SOURCE_FORMAT_KEYED_COLUMNS;function d(t){this.fromDataset=t.fromDataset,this.data=t.data||(t.sourceFormat===h?{}:[]),this.sourceFormat=t.sourceFormat||c,this.seriesLayoutBy=t.seriesLayoutBy||l,this.dimensionsDefine=t.dimensionsDefine,this.encodeDefine=t.encodeDefine&&r(t.encodeDefine),this.startIndex=t.startIndex||0,this.dimensionsDetectCount=t.dimensionsDetectCount}d.seriesDataToSource=function(t){return new d({data:t,sourceFormat:o(t)?u:A,fromDataset:!1})},a(d);var f=d;t.exports=f},"9mzP":function(t,e,n){var i=n("loyO"),r=n("DjhZ");n("htDR"),n("17t5"),n("mtCt"),n("DCVM"),i.registerPreprocessor(r)},"9nPt":function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("sutA"),o=n("DWNL"),a=o.formatTime,s=o.encodeHTML,A=o.addCommas,l=o.getTooltipMarker,c=n("65+t"),u=n("Gkcz"),h=n("dGMU"),d=n("PrQC"),f=n("rhmo"),p=f.getLayoutParams,g=f.mergeLayoutParam,m=n("SOQc").createTask,v=n("PVav"),y=v.prepareSource,w=v.getSource,x=n("GhzX").retrieveRawValue,B=c.makeInner(),b=u.extend({type:"series.__base__",seriesIndex:0,coordinateSystem:null,defaultOption:null,legendVisualProvider:null,visualColorAccessPath:"itemStyle.color",visualBorderColorAccessPath:"itemStyle.borderColor",layoutMode:null,init:function(t,e,n,i){this.seriesIndex=this.componentIndex,this.dataTask=m({count:_,reset:S}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,n),y(this);var r=this.getInitialData(t,n);T(r,this),this.dataTask.context.data=r,B(this).dataBeforeProcessed=r,C(this)},mergeDefaultAndTheme:function(t,e){var n=this.layoutMode,r=n?p(t):{},o=this.subType;u.hasClass(o)&&(o+="Series"),i.merge(t,e.getTheme().get(this.subType)),i.merge(t,this.getDefaultOption()),c.defaultEmphasis(t,"label",["show"]),this.fillDataTextStyle(t.data),n&&g(t,r,n)},mergeOption:function(t,e){t=i.merge(this.option,t,!0),this.fillDataTextStyle(t.data);var n=this.layoutMode;n&&g(this.option,t,n),y(this);var r=this.getInitialData(t,e);T(r,this),this.dataTask.dirty(),this.dataTask.context.data=r,B(this).dataBeforeProcessed=r,C(this)},fillDataTextStyle:function(t){if(t&&!i.isTypedArray(t))for(var e=["show"],n=0;n<t.length;n++)t[n]&&t[n].label&&c.defaultEmphasis(t[n],"label",e)},getInitialData:function(){},appendData:function(t){this.getRawData().appendData(t.data)},getData:function(t){var e=Q(this);if(e){var n=e.context.data;return null==t?n:n.getLinkedData(t)}return B(this).data},setData:function(t){var e=Q(this);if(e){var n=e.context;n.data!==t&&e.modifyOutputEnd&&e.setOutputEnd(t.count()),n.outputData=t,e!==this.dataTask&&(n.data=t)}B(this).data=t},getSource:function(){return w(this)},getRawData:function(){return B(this).dataBeforeProcessed},getBaseAxis:function(){var t=this.coordinateSystem;return t&&t.getBaseAxis&&t.getBaseAxis()},formatTooltip:function(t,e,n,r){var o=this,u="html"===(r=r||"html")?"<br/>":"\n",h="richText"===r,d={},f=0;function p(t){return{renderMode:r,content:s(A(t)),style:d}}var g=this.getData(),m=g.mapDimension("defaultedTooltip",!0),v=m.length,y=this.getRawValue(t),w=i.isArray(y),B=g.getItemVisual(t,"color");i.isObject(B)&&B.colorStops&&(B=(B.colorStops[0]||{}).color),B=B||"transparent";var b=(v>1||w&&!v?function(n){var c=i.reduce(n,function(t,e,n){var i=g.getDimensionInfo(n);return t|(i&&!1!==i.tooltip&&null!=i.displayName)},0),u=[];function p(t,n){var i=g.getDimensionInfo(n);if(i&&!1!==i.otherDims.tooltip){var p=i.type,m="sub"+o.seriesIndex+"at"+f,v=l({color:B,type:"subItem",renderMode:r,markerId:m}),y="string"==typeof v?v:v.content,w=(c?y+s(i.displayName||"-")+": ":"")+s("ordinal"===p?t+"":"time"===p?e?"":a("yyyy/MM/dd hh:mm:ss",t):A(t));w&&u.push(w),h&&(d[m]=B,++f)}}m.length?i.each(m,function(e){p(x(g,t,e),e)}):i.each(n,p);var v=c?h?"\n":"<br/>":"",y=v+u.join(v||", ");return{renderMode:r,content:y,style:d}}(y):p(v?x(g,t,m[0]):w?y[0]:y)).content,C=o.seriesIndex+"at"+f,_=l({color:B,type:"item",renderMode:r,markerId:C});d[C]=B,++f;var S=g.getName(t),I=this.name;c.isNameSpecified(this)||(I=""),I=I?s(I)+(e?": ":u):"";var T="string"==typeof _?_:_.content;return{html:e?T+I+b:I+T+(S?s(S)+": "+b:b),markers:d}},isAnimationEnabled:function(){if(r.node)return!1;var t=this.getShallow("animation");return t&&this.getData().count()>this.getShallow("animationThreshold")&&(t=!1),t},restoreData:function(){this.dataTask.dirty()},getColorFromPalette:function(t,e,n){var i=this.ecModel,r=h.getColorFromPalette.call(this,t,e,n);return r||(r=i.getColorFromPalette(t,e,n)),r},coordDimToDataDim:function(t){return this.getRawData().mapDimension(t,!0)},getProgressive:function(){return this.get("progressive")},getProgressiveThreshold:function(){return this.get("progressiveThreshold")},getAxisTooltipData:null,getTooltipPosition:null,pipeTask:null,preventIncremental:null,pipelineContext:null});function C(t){var e=t.name;c.isNameSpecified(t)||(t.name=function(t){var e=t.getRawData(),n=e.mapDimension("seriesName",!0),r=[];return i.each(n,function(t){var n=e.getDimensionInfo(t);n.displayName&&r.push(n.displayName)}),r.join(" ")}(t)||e)}function _(t){return t.model.getRawData().count()}function S(t){var e=t.model;return e.setData(e.getRawData().cloneShallow()),I}function I(t,e){e.outputData&&t.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function T(t,e){i.each(t.CHANGABLE_METHODS,function(n){t.wrapMethod(n,i.curry(M,e))})}function M(t){var e=Q(t);e&&e.setOutputEnd(this.count())}function Q(t){var e=(t.ecModel||{}).scheduler,n=e&&e.getPipeline(t.uid);if(n){var i=n.currentTask;if(i){var r=i.agentStubMap;r&&(i=r.get(t.uid))}return i}}i.mixin(b,d),i.mixin(b,h);var F=b;t.exports=F},A1Ca:function(t,e,n){"use strict";t.exports=function(t,e,n,i,r){return t.config=e,n&&(t.code=n),t.request=i,t.response=r,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},A5tq:function(t,e){var n={"[object Function]":1,"[object RegExp]":1,"[object Date]":1,"[object Error]":1,"[object CanvasGradient]":1,"[object CanvasPattern]":1,"[object Image]":1,"[object Canvas]":1},i={"[object Int8Array]":1,"[object Uint8Array]":1,"[object Uint8ClampedArray]":1,"[object Int16Array]":1,"[object Uint16Array]":1,"[object Int32Array]":1,"[object Uint32Array]":1,"[object Float32Array]":1,"[object Float64Array]":1},r=Object.prototype.toString,o=Array.prototype,a=o.forEach,s=o.filter,A=o.slice,l=o.map,c=o.reduce,u={};function h(t){if(null==t||"object"!=typeof t)return t;var e=t,o=r.call(t);if("[object Array]"===o){if(!C(t)){e=[];for(var a=0,s=t.length;a<s;a++)e[a]=h(t[a])}}else if(i[o]){if(!C(t)){var A=t.constructor;if(t.constructor.from)e=A.from(t);else{e=new A(t.length);for(a=0,s=t.length;a<s;a++)e[a]=h(t[a])}}}else if(!n[o]&&!C(t)&&!B(t))for(var l in e={},t)t.hasOwnProperty(l)&&(e[l]=h(t[l]));return e}function d(t,e,n){if(!w(e)||!w(t))return n?h(e):t;for(var i in e)if(e.hasOwnProperty(i)){var r=t[i],o=e[i];!w(o)||!w(r)||y(o)||y(r)||B(o)||B(r)||x(o)||x(r)||C(o)||C(r)?!n&&i in t||(t[i]=h(e[i])):d(r,o,n)}return t}function f(t,e,n){for(var i in e)e.hasOwnProperty(i)&&(n?null!=e[i]:null==t[i])&&(t[i]=e[i]);return t}var p,g=function(){return u.createCanvas()};function m(t,e,n){if(t&&e)if(t.forEach&&t.forEach===a)t.forEach(e,n);else if(t.length===+t.length)for(var i=0,r=t.length;i<r;i++)e.call(n,t[i],i,t);else for(var o in t)t.hasOwnProperty(o)&&e.call(n,t[o],o,t)}function v(t,e){var n=A.call(arguments,2);return function(){return t.apply(e,n.concat(A.call(arguments)))}}function y(t){return"[object Array]"===r.call(t)}function w(t){var e=typeof t;return"function"===e||!!t&&"object"===e}function x(t){return!!n[r.call(t)]}function B(t){return"object"==typeof t&&"number"==typeof t.nodeType&&"object"==typeof t.ownerDocument}u.createCanvas=function(){return document.createElement("canvas")};var b="__ec_primitive__";function C(t){return t[b]}function _(t){var e=y(t);this.data={};var n=this;function i(t,i){e?n.set(t,i):n.set(i,t)}t instanceof _?t.each(i):t&&m(t,i)}_.prototype={constructor:_,get:function(t){return this.data.hasOwnProperty(t)?this.data[t]:null},set:function(t,e){return this.data[t]=e},each:function(t,e){for(var n in void 0!==e&&(t=v(t,e)),this.data)this.data.hasOwnProperty(n)&&t(this.data[n],n)},removeKey:function(t){delete this.data[t]}},e.$override=function(t,e){"createCanvas"===t&&(p=null),u[t]=e},e.clone=h,e.merge=d,e.mergeAll=function(t,e){for(var n=t[0],i=1,r=t.length;i<r;i++)n=d(n,t[i],e);return n},e.extend=function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t},e.defaults=f,e.createCanvas=g,e.getContext=function(){return p||(p=g().getContext("2d")),p},e.indexOf=function(t,e){if(t){if(t.indexOf)return t.indexOf(e);for(var n=0,i=t.length;n<i;n++)if(t[n]===e)return n}return-1},e.inherits=function(t,e){var n=t.prototype;function i(){}for(var r in i.prototype=e.prototype,t.prototype=new i,n)n.hasOwnProperty(r)&&(t.prototype[r]=n[r]);t.prototype.constructor=t,t.superClass=e},e.mixin=function(t,e,n){f(t="prototype"in t?t.prototype:t,e="prototype"in e?e.prototype:e,n)},e.isArrayLike=function(t){if(t)return"string"!=typeof t&&"number"==typeof t.length},e.each=m,e.map=function(t,e,n){if(t&&e){if(t.map&&t.map===l)return t.map(e,n);for(var i=[],r=0,o=t.length;r<o;r++)i.push(e.call(n,t[r],r,t));return i}},e.reduce=function(t,e,n,i){if(t&&e){if(t.reduce&&t.reduce===c)return t.reduce(e,n,i);for(var r=0,o=t.length;r<o;r++)n=e.call(i,n,t[r],r,t);return n}},e.filter=function(t,e,n){if(t&&e){if(t.filter&&t.filter===s)return t.filter(e,n);for(var i=[],r=0,o=t.length;r<o;r++)e.call(n,t[r],r,t)&&i.push(t[r]);return i}},e.find=function(t,e,n){if(t&&e)for(var i=0,r=t.length;i<r;i++)if(e.call(n,t[i],i,t))return t[i]},e.bind=v,e.curry=function(t){var e=A.call(arguments,1);return function(){return t.apply(this,e.concat(A.call(arguments)))}},e.isArray=y,e.isFunction=function(t){return"function"==typeof t},e.isString=function(t){return"[object String]"===r.call(t)},e.isObject=w,e.isBuiltInObject=x,e.isTypedArray=function(t){return!!i[r.call(t)]},e.isDom=B,e.eqNaN=function(t){return t!=t},e.retrieve=function(t){for(var e=0,n=arguments.length;e<n;e++)if(null!=arguments[e])return arguments[e]},e.retrieve2=function(t,e){return null!=t?t:e},e.retrieve3=function(t,e,n){return null!=t?t:null!=e?e:n},e.slice=function(){return Function.call.apply(A,arguments)},e.normalizeCssArray=function(t){if("number"==typeof t)return[t,t,t,t];var e=t.length;return 2===e?[t[0],t[1],t[0],t[1]]:3===e?[t[0],t[1],t[2],t[1]]:t},e.assert=function(t,e){if(!t)throw new Error(e)},e.trim=function(t){return null==t?null:"function"==typeof t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")},e.setAsPrimitive=function(t){t[b]=!0},e.isPrimitive=C,e.createHashMap=function(t){return new _(t)},e.concatArray=function(t,e){for(var n=new t.constructor(t.length+e.length),i=0;i<t.length;i++)n[i]=t[i];var r=t.length;for(i=0;i<e.length;i++)n[i+r]=e[i];return n},e.noop=function(){}},A5vn:function(t,e,n){var i=n("J0Bx").extend({type:"series.pictorialBar",dependencies:["grid"],defaultOption:{symbol:"circle",symbolSize:null,symbolRotate:null,symbolPosition:null,symbolOffset:null,symbolMargin:null,symbolRepeat:!1,symbolRepeatDirection:"end",symbolClip:!1,symbolBoundingData:null,symbolPatternSize:400,barGap:"-100%",progressive:0,hoverAnimation:!1},getInitialData:function(t){return t.stack=null,i.superApply(this,"getInitialData",arguments)}}),r=i;t.exports=r},A9v9:function(t,e,n){var i=n("yW06"),r=n("lbYD"),o=i.identity,a=5e-5;function s(t){return t>a||t<-a}var A=function(t){(t=t||{}).position||(this.position=[0,0]),null==t.rotation&&(this.rotation=0),t.scale||(this.scale=[1,1]),this.origin=this.origin||null},l=A.prototype;l.transform=null,l.needLocalTransform=function(){return s(this.rotation)||s(this.position[0])||s(this.position[1])||s(this.scale[0]-1)||s(this.scale[1]-1)};var c=[];l.updateTransform=function(){var t=this.parent,e=t&&t.transform,n=this.needLocalTransform(),r=this.transform;if(n||e){r=r||i.create(),n?this.getLocalTransform(r):o(r),e&&(n?i.mul(r,t.transform,r):i.copy(r,t.transform)),this.transform=r;var a=this.globalScaleRatio;if(null!=a&&1!==a){this.getGlobalScale(c);var s=c[0]<0?-1:1,A=c[1]<0?-1:1,l=((c[0]-s)*a+s)/c[0]||0,u=((c[1]-A)*a+A)/c[1]||0;r[0]*=l,r[1]*=l,r[2]*=u,r[3]*=u}this.invTransform=this.invTransform||i.create(),i.invert(this.invTransform,r)}else r&&o(r)},l.getLocalTransform=function(t){return A.getLocalTransform(this,t)},l.setTransform=function(t){var e=this.transform,n=t.dpr||1;e?t.setTransform(n*e[0],n*e[1],n*e[2],n*e[3],n*e[4],n*e[5]):t.setTransform(n,0,0,n,0,0)},l.restoreTransform=function(t){var e=t.dpr||1;t.setTransform(e,0,0,e,0,0)};var u=[],h=i.create();l.setLocalTransform=function(t){if(t){var e=t[0]*t[0]+t[1]*t[1],n=t[2]*t[2]+t[3]*t[3],i=this.position,r=this.scale;s(e-1)&&(e=Math.sqrt(e)),s(n-1)&&(n=Math.sqrt(n)),t[0]<0&&(e=-e),t[3]<0&&(n=-n),i[0]=t[4],i[1]=t[5],r[0]=e,r[1]=n,this.rotation=Math.atan2(-t[1]/n,t[0]/e)}},l.decomposeTransform=function(){if(this.transform){var t=this.parent,e=this.transform;t&&t.transform&&(i.mul(u,t.invTransform,e),e=u);var n=this.origin;n&&(n[0]||n[1])&&(h[4]=n[0],h[5]=n[1],i.mul(u,e,h),u[4]-=n[0],u[5]-=n[1],e=u),this.setLocalTransform(e)}},l.getGlobalScale=function(t){var e=this.transform;return t=t||[],e?(t[0]=Math.sqrt(e[0]*e[0]+e[1]*e[1]),t[1]=Math.sqrt(e[2]*e[2]+e[3]*e[3]),e[0]<0&&(t[0]=-t[0]),e[3]<0&&(t[1]=-t[1]),t):(t[0]=1,t[1]=1,t)},l.transformCoordToLocal=function(t,e){var n=[t,e],i=this.invTransform;return i&&r.applyTransform(n,n,i),n},l.transformCoordToGlobal=function(t,e){var n=[t,e],i=this.transform;return i&&r.applyTransform(n,n,i),n},A.getLocalTransform=function(t,e){o(e=e||[]);var n=t.origin,r=t.scale||[1,1],a=t.rotation||0,s=t.position||[0,0];return n&&(e[4]-=n[0],e[5]-=n[1]),i.scale(e,e,r),a&&i.rotate(e,e,a),n&&(e[4]+=n[0],e[5]+=n[1]),e[4]+=s[0],e[5]+=s[1],e};var d=A;t.exports=d},AITV:function(t,e,n){var i=n("A5tq"),r=n("w9uD").parsePercent,o=i.each;t.exports=function(t){var e=function(t){var e=[],n=[];return t.eachSeriesByType("boxplot",function(t){var r=t.getBaseAxis(),o=i.indexOf(n,r);o<0&&(o=n.length,n[o]=r,e[o]={axis:r,seriesModels:[]}),e[o].seriesModels.push(t)}),e}(t);o(e,function(t){var e=t.seriesModels;e.length&&(function(t){var e,n,a=t.axis,s=t.seriesModels,A=s.length,l=t.boxWidthList=[],c=t.boxOffsetList=[],u=[];if("category"===a.type)n=a.getBandWidth();else{var h=0;o(s,function(t){h=Math.max(h,t.getData().count())}),e=a.getExtent(),Math.abs(e[1]-e[0])}o(s,function(t){var e=t.get("boxWidth");i.isArray(e)||(e=[e,e]),u.push([r(e[0],n)||0,r(e[1],n)||0])});var d=.8*n-2,f=d/A*.3,p=(d-f*(A-1))/A,g=p/2-d/2;o(s,function(t,e){c.push(g),g+=f+p,l.push(Math.min(Math.max(p,u[e][0]),u[e][1]))})}(t),o(e,function(e,n){!function(t,e,n){var i=t.coordinateSystem,r=t.getData(),o=n/2,a="horizontal"===t.get("layout")?0:1,s=1-a,A=["x","y"],l=r.mapDimension(A[a]),c=r.mapDimension(A[s],!0);if(!(null==l||c.length<5))for(var u=0;u<r.count();u++){var h=r.get(l,u),d=y(h,c[2],u),f=y(h,c[0],u),p=y(h,c[1],u),g=y(h,c[3],u),m=y(h,c[4],u),v=[];w(v,p,0),w(v,g,1),v.push(f,p,m,g),x(v,f),x(v,m),x(v,d),r.setItemLayout(u,{initBaseline:d[s],ends:v})}function y(t,n,o){var A,l=r.get(n,o),c=[];return c[a]=t,c[s]=l,isNaN(t)||isNaN(l)?A=[NaN,NaN]:(A=i.dataToPoint(c))[a]+=e,A}function w(t,e,n){var i=e.slice(),r=e.slice();i[a]+=o,r[a]-=o,n?t.push(i,r):t.push(r,i)}function x(t,e){var n=e.slice(),i=e.slice();n[a]-=o,i[a]+=o,t.push(n,i)}}(e,t.boxOffsetList[n],t.boxWidthList[n])}))})}},AQ1o:function(t,e,n){var i=n("loyO"),r=n("t+aF"),o=n("A5tq"),a=n("65+t"),s=n("w9uD").getPercentWithPrecision,A=n("mxvg"),l=n("GhzX").retrieveRawAttr,c=n("PVav").makeSeriesEncodeForNameBased,u=n("dBJA"),h=i.extendSeriesModel({type:"series.pie",init:function(t){h.superApply(this,"init",arguments),this.legendVisualProvider=new u(o.bind(this.getData,this),o.bind(this.getRawData,this)),this.updateSelectedMap(this._createSelectableList()),this._defaultLabelLine(t)},mergeOption:function(t){h.superCall(this,"mergeOption",t),this.updateSelectedMap(this._createSelectableList())},getInitialData:function(t,e){return r(this,{coordDimensions:["value"],encodeDefaulter:o.curry(c,this)})},_createSelectableList:function(){for(var t=this.getRawData(),e=t.mapDimension("value"),n=[],i=0,r=t.count();i<r;i++)n.push({name:t.getName(i),value:t.get(e,i),selected:l(t,i,"selected")});return n},getDataParams:function(t){var e=this.getData(),n=h.superCall(this,"getDataParams",t),i=[];return e.each(e.mapDimension("value"),function(t){i.push(t)}),n.percent=s(i,t,e.hostModel.get("percentPrecision")),n.$vars.push("percent"),n},_defaultLabelLine:function(t){a.defaultEmphasis(t,"labelLine",["show"]);var e=t.labelLine,n=t.emphasis.labelLine;e.show=e.show&&t.label.show,n.show=n.show&&t.emphasis.label.show},defaultOption:{zlevel:0,z:2,legendHoverLink:!0,hoverAnimation:!0,center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,minShowLabelAngle:0,selectedOffset:10,hoverOffset:10,avoidLabelOverlap:!0,percentPrecision:2,stillShowZeroSum:!0,left:0,top:0,right:0,bottom:0,width:null,height:null,label:{rotate:!1,show:!0,position:"outer",alignTo:"none",margin:"25%",bleedMargin:10,distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:15,smooth:!1,lineStyle:{width:1,type:"solid"}},itemStyle:{borderWidth:1},animationType:"expansion",animationTypeUpdate:"transition",animationEasing:"cubicOut"}});o.mixin(h,A);var d=h;t.exports=d},AgKT:function(t,e,n){var i=n("lbYD"),r=i.scaleAndAdd;e.forceLayout=function(t,e,n){for(var o=n.rect,a=o.width,s=o.height,A=[o.x+a/2,o.y+s/2],l=null==n.gravity?.1:n.gravity,c=0;c<t.length;c++){var u=t[c];u.p||(u.p=i.create(a*(Math.random()-.5)+A[0],s*(Math.random()-.5)+A[1])),u.pp=i.clone(u.p),u.edges=null}var h=null==n.friction?.6:n.friction,d=h;return{warmUp:function(){d=.8*h},setFixed:function(e){t[e].fixed=!0},setUnfixed:function(e){t[e].fixed=!1},step:function(n){for(var o=[],a=t.length,s=0;s<e.length;s++){var c=e[s];if(!c.ignoreForceLayout){var u=c.n1,h=c.n2;i.sub(o,h.p,u.p);var f=i.len(o)-c.d,p=h.w/(u.w+h.w);isNaN(p)&&(p=0),i.normalize(o,o),!u.fixed&&r(u.p,u.p,o,p*f*d),!h.fixed&&r(h.p,h.p,o,-(1-p)*f*d)}}for(s=0;s<a;s++)(y=t[s]).fixed||(i.sub(o,A,y.p),r(y.p,y.p,o,l*d));for(s=0;s<a;s++){u=t[s];for(var g=s+1;g<a;g++){h=t[g],i.sub(o,h.p,u.p),0===(f=i.len(o))&&(i.set(o,Math.random()-.5,Math.random()-.5),f=1);var m=(u.rep+h.rep)/f/f;!u.fixed&&r(u.pp,u.pp,o,m),!h.fixed&&r(h.pp,h.pp,o,-m)}}var v=[];for(s=0;s<a;s++){var y;(y=t[s]).fixed||(i.sub(v,y.p,y.pp),r(y.p,y.p,v,d),i.copy(y.pp,y.p))}d*=.992,n&&n(t,e,d<.01)}}}},AkIA:function(t,e,n){var i=n("bDs9").subPixelOptimize,r=n("FiFn"),o=n("w9uD").parsePercent,a=n("A5tq").retrieve2,s="undefined"!=typeof Float32Array?Float32Array:Array,A={seriesType:"candlestick",plan:r(),reset:function(t){var e=t.coordinateSystem,n=t.getData(),r=function(t,e){var n,i=t.getBaseAxis(),r="category"===i.type?i.getBandWidth():(n=i.getExtent(),Math.abs(n[1]-n[0])/e.count()),s=o(a(t.get("barMaxWidth"),r),r),A=o(a(t.get("barMinWidth"),1),r),l=t.get("barWidth");return null!=l?o(l,r):Math.max(Math.min(r/2,s),A)}(t,n),A=0,c=1,u=["x","y"],h=n.mapDimension(u[A]),d=n.mapDimension(u[c],!0),f=d[0],p=d[1],g=d[2],m=d[3];if(n.setLayout({candleWidth:r,isSimpleBox:r<=1.3}),!(null==h||d.length<4))return{progress:t.pipelineContext.large?function(t,n){var i,r,o=new s(4*t.count),a=0,u=[],d=[];for(;null!=(r=t.next());){var v=n.get(h,r),y=n.get(f,r),w=n.get(p,r),x=n.get(g,r),B=n.get(m,r);isNaN(v)||isNaN(x)||isNaN(B)?(o[a++]=NaN,a+=3):(o[a++]=l(n,r,y,w,p),u[A]=v,u[c]=x,i=e.dataToPoint(u,null,d),o[a++]=i?i[0]:NaN,o[a++]=i?i[1]:NaN,u[c]=B,i=e.dataToPoint(u,null,d),o[a++]=i?i[1]:NaN)}n.setLayout("largePoints",o)}:function(t,n){var o;for(;null!=(o=t.next());){var a=n.get(h,o),s=n.get(f,o),u=n.get(p,o),d=n.get(g,o),v=n.get(m,o),y=Math.min(s,u),w=Math.max(s,u),x=S(y,a),B=S(w,a),b=S(d,a),C=S(v,a),_=[];I(_,B,0),I(_,x,1),_.push(M(C),M(B),M(b),M(x)),n.setItemLayout(o,{sign:l(n,o,s,u,p),initBaseline:s>u?B[c]:x[c],ends:_,brushRect:T(d,v,a)})}function S(t,n){var i=[];return i[A]=n,i[c]=t,isNaN(n)||isNaN(t)?[NaN,NaN]:e.dataToPoint(i)}function I(t,e,n){var o=e.slice(),a=e.slice();o[A]=i(o[A]+r/2,1,!1),a[A]=i(a[A]-r/2,1,!0),n?t.push(o,a):t.push(a,o)}function T(t,e,n){var i=S(t,n),o=S(e,n);return i[A]-=r/2,o[A]-=r/2,{x:i[0],y:i[1],width:c?r:o[0]-i[0],height:c?o[1]-i[1]:r}}function M(t){return t[A]=i(t[A],1),t}}}}};function l(t,e,n,i,r){return n>i?-1:n<i?1:e>0?t.get(r,e-1)<=i?1:-1:1}t.exports=A},AmFa:function(t,e){t.exports=function(t){t.eachSeriesByType("map",function(t){var e=t.get("color"),n=t.getModel("itemStyle"),i=n.get("areaColor"),r=n.get("color")||e[t.seriesIndex%e.length];t.getData().setVisual({areaColor:i,color:r})})}},Amko:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("bDs9"),a=n("DWNL"),s=n("rhmo"),A=n("vuYU"),l=i.extendComponentView({type:"visualMap",autoPositionValues:{left:1,right:1,top:1,bottom:1},init:function(t,e){this.ecModel=t,this.api=e,this.visualMapModel},render:function(t,e,n,i){this.visualMapModel=t,!1!==t.get("show")?this.doRender.apply(this,arguments):this.group.removeAll()},renderBackground:function(t){var e=this.visualMapModel,n=a.normalizeCssArray(e.get("padding")||0),i=t.getBoundingRect();t.add(new o.Rect({z2:-1,silent:!0,shape:{x:i.x-n[3],y:i.y-n[0],width:i.width+n[3]+n[1],height:i.height+n[0]+n[2]},style:{fill:e.get("backgroundColor"),stroke:e.get("borderColor"),lineWidth:e.get("borderWidth")}}))},getControllerVisual:function(t,e,n){var i=(n=n||{}).forceState,o=this.visualMapModel,a={};if("symbol"===e&&(a.symbol=o.get("itemSymbol")),"color"===e){var s=o.get("contentColor");a.color=s}function l(t){return a[t]}function c(t,e){a[t]=e}var u=o.controllerVisuals[i||o.getValueState(t)],h=A.prepareVisualTypes(u);return r.each(h,function(i){var r=u[i];n.convertOpacityToAlpha&&"opacity"===i&&(i="colorAlpha",r=u.__alphaForOpacity),A.dependsOn(i,e)&&r&&r.applyVisual(t,l,c)}),a[e]},positionGroup:function(t){var e=this.visualMapModel,n=this.api;s.positionElement(t,e.getBoxLayoutParams(),{width:n.getWidth(),height:n.getHeight()})},doRender:r.noop});t.exports=l},Av1J:function(t,e,n){var i=n("nFw2"),r=n("x5W7"),o=n("UfK9"),a=n("gj94"),s=i.extend({makeElOption:function(t,e,n,i,a){var s=n.axis,c=s.grid,u=i.get("type"),h=A(c,s).getOtherAxis(s).getGlobalExtent(),d=s.toGlobalCoord(s.dataToCoord(e,!0));if(u&&"none"!==u){var f=r.buildElStyle(i),p=l[u](s,d,h);p.style=f,t.graphicKey=p.type,t.pointer=p}var g=o.layout(c.model,n);r.buildCartesianSingleLabelElOption(e,t,g,n,i,a)},getHandleTransform:function(t,e,n){var i=o.layout(e.axis.grid.model,e,{labelInside:!1});return i.labelMargin=n.get("handle.margin"),{position:r.getTransformedPosition(e.axis,t,i),rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},updateHandleTransform:function(t,e,n,i){var r=n.axis,o=r.grid,a=r.getGlobalExtent(!0),s=A(o,r).getOtherAxis(r).getGlobalExtent(),l="x"===r.dim?0:1,c=t.position;c[l]+=e[l],c[l]=Math.min(a[1],c[l]),c[l]=Math.max(a[0],c[l]);var u=(s[1]+s[0])/2,h=[u,u];h[l]=c[l];return{position:c,rotation:t.rotation,cursorPoint:h,tooltipOption:[{verticalAlign:"middle"},{align:"center"}][l]}}});function A(t,e){var n={};return n[e.dim+"AxisIndex"]=e.index,t.getCartesian(n)}var l={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:r.makeLineShape([e,n[0]],[e,n[1]],c(t))}},shadow:function(t,e,n){var i=Math.max(1,t.getBandWidth()),o=n[1]-n[0];return{type:"Rect",shape:r.makeRectShape([e-i/2,n[0]],[i,o],c(t))}}};function c(t){return"x"===t.dim?0:1}a.registerAxisPointerClass("CartesianAxisPointer",s);var u=s;t.exports=u},B1kW:function(t,e,n){var i=n("bDs9"),r=n("oOY3"),o=n("A5tq"),a=n("f+YC").createSymbol,s=n("lbYD"),A=n("R33K");function l(t,e,n){i.Group.call(this),this.add(this.createLine(t,e,n)),this._updateEffectSymbol(t,e)}var c=l.prototype;c.createLine=function(t,e,n){return new r(t,e,n)},c._updateEffectSymbol=function(t,e){var n=t.getItemModel(e).getModel("effect"),i=n.get("symbolSize"),r=n.get("symbol");o.isArray(i)||(i=[i,i]);var s=n.get("color")||t.getItemVisual(e,"color"),A=this.childAt(1);this._symbolType!==r&&(this.remove(A),(A=a(r,-.5,-.5,1,1,s)).z2=100,A.culling=!0,this.add(A)),A&&(A.setStyle("shadowColor",s),A.setStyle(n.getItemStyle(["color"])),A.attr("scale",i),A.setColor(s),A.attr("scale",i),this._symbolType=r,this._symbolScale=i,this._updateEffectAnimation(t,n,e))},c._updateEffectAnimation=function(t,e,n){var i=this.childAt(1);if(i){var r=this,a=t.getItemLayout(n),s=1e3*e.get("period"),A=e.get("loop"),l=e.get("constantSpeed"),c=o.retrieve(e.get("delay"),function(e){return e/t.count()*s/3}),u="function"==typeof c;if(i.ignore=!0,this.updateAnimationPoints(i,a),l>0&&(s=this.getLineLength(i)/l*1e3),s!==this._period||A!==this._loop){i.stopAnimation();var h=c;u&&(h=c(n)),i.__t>0&&(h=-s*i.__t),i.__t=0;var d=i.animate("",A).when(s,{__t:1}).delay(h).during(function(){r.updateSymbolPosition(i)});A||d.done(function(){r.remove(i)}),d.start()}this._period=s,this._loop=A}},c.getLineLength=function(t){return s.dist(t.__p1,t.__cp1)+s.dist(t.__cp1,t.__p2)},c.updateAnimationPoints=function(t,e){t.__p1=e[0],t.__p2=e[1],t.__cp1=e[2]||[(e[0][0]+e[1][0])/2,(e[0][1]+e[1][1])/2]},c.updateData=function(t,e,n){this.childAt(0).updateData(t,e,n),this._updateEffectSymbol(t,e)},c.updateSymbolPosition=function(t){var e=t.__p1,n=t.__p2,i=t.__cp1,r=t.__t,o=t.position,a=[o[0],o[1]],l=A.quadraticAt,c=A.quadraticDerivativeAt;o[0]=l(e[0],i[0],n[0],r),o[1]=l(e[1],i[1],n[1],r);var u=c(e[0],i[0],n[0],r),h=c(e[1],i[1],n[1],r);if(t.rotation=-Math.atan2(h,u)-Math.PI/2,"line"===this._symbolType||"rect"===this._symbolType||"roundRect"===this._symbolType)if(void 0!==t.__lastT&&t.__lastT<t.__t){var d=1.05*s.dist(a,o);t.attr("scale",[t.scale[0],d]),1===r&&(o[0]=a[0]+(o[0]-a[0])/2,o[1]=a[1]+(o[1]-a[1])/2)}else if(1===t.__lastT){d=2*s.dist(e,o);t.attr("scale",[t.scale[0],d])}else t.attr("scale",this._symbolScale);t.__lastT=t.__t,t.ignore=!1},c.updateLayout=function(t,e){this.childAt(0).updateLayout(t,e);var n=t.getItemModel(e).getModel("effect");this._updateEffectAnimation(t,n,e)},o.inherits(l,i.Group);var u=l;t.exports=u},BGuy:function(t,e){function n(t,e){var n=t[e]-t[1-e];return{span:Math.abs(n),sign:n>0?-1:n<0?1:e?-1:1}}function i(t,e){return Math.min(null!=e[1]?e[1]:1/0,Math.max(null!=e[0]?e[0]:-1/0,t))}t.exports=function(t,e,r,o,a,s){t=t||0;var A=r[1]-r[0];if(null!=a&&(a=i(a,[0,A])),null!=s&&(s=Math.max(s,null!=a?a:0)),"all"===o){var l=Math.abs(e[1]-e[0]);a=s=i(l=i(l,[0,A]),[a,s]),o=0}e[0]=i(e[0],r),e[1]=i(e[1],r);var c=n(e,o);e[o]+=t;var u=a||0,h=r.slice();c.sign<0?h[0]+=u:h[1]-=u,e[o]=i(e[o],h);var d=n(e,o);return null!=a&&(d.sign!==c.sign||d.span<a)&&(e[1-o]=e[o]+c.sign*a),d=n(e,o),null!=s&&d.span>s&&(e[1-o]=e[o]+d.sign*s),e}},BINq:function(t,e,n){var i=n("A5tq"),r=n("ZVMY"),o=n("w9uD"),a=n("h17e"),s=n("FIcu");function A(t,e,n){var i=e.coordinateSystem;t.each(function(r){var a,s=t.getItemModel(r),A=o.parsePercent(s.get("x"),n.getWidth()),l=o.parsePercent(s.get("y"),n.getHeight());if(isNaN(A)||isNaN(l)){if(e.getMarkerPosition)a=e.getMarkerPosition(t.getValues(t.dimensions,r));else if(i){var c=t.get(i.dimensions[0],r),u=t.get(i.dimensions[1],r);a=i.dataToPoint([c,u])}}else a=[A,l];isNaN(A)||(a[0]=A),isNaN(l)||(a[1]=l),t.setItemLayout(r,a)})}var l=n("wKp1").extend({type:"markPoint",updateTransform:function(t,e,n){e.eachSeries(function(t){var e=t.markPointModel;e&&(A(e.getData(),t,n),this.markerGroupMap.get(t.id).updateLayout(e))},this)},renderSeries:function(t,e,n,o){var l=t.coordinateSystem,c=t.id,u=t.getData(),h=this.markerGroupMap,d=h.get(c)||h.set(c,new r),f=function(t,e,n){var r;r=t?i.map(t&&t.dimensions,function(t){var n=e.getData().getDimensionInfo(e.getData().mapDimension(t))||{};return i.defaults({name:t},n)}):[{name:"value",type:"float"}];var o=new a(r,n),A=i.map(n.get("data"),i.curry(s.dataTransform,e));t&&(A=i.filter(A,i.curry(s.dataFilter,t)));return o.initData(A,null,t?s.dimValueGetter:function(t){return t.value}),o}(l,t,e);e.setData(f),A(e.getData(),t,o),f.each(function(t){var n=f.getItemModel(t),r=n.getShallow("symbol"),o=n.getShallow("symbolSize"),a=n.getShallow("symbolRotate"),s=i.isFunction(r),A=i.isFunction(o),l=i.isFunction(a);if(s||A||l){var c=e.getRawValue(t),h=e.getDataParams(t);s&&(r=r(c,h)),A&&(o=o(c,h)),l&&(a=a(c,h))}f.setItemVisual(t,{symbol:r,symbolSize:o,symbolRotate:a,color:n.get("itemStyle.color")||u.getVisual("color")})}),d.updateData(f),this.group.add(d.group),f.eachItemGraphicEl(function(t){t.traverse(function(t){t.dataModel=e})}),d.__keep=!0,d.group.silent=e.get("silent")||t.get("silent")}});t.exports=l},BJyR:function(t,e){var n=2*Math.PI;e.normalizeRadian=function(t){return(t%=n)<0&&(t+=n),t}},BQvh:function(t,e,n){var i=n("GhzX").retrieveRawValue;e.getDefaultLabel=function(t,e){var n=t.mapDimension("defaultedLabel",!0),r=n.length;if(1===r)return i(t,e,n[0]);if(r){for(var o=[],a=0;a<n.length;a++){var s=i(t,e,n[a]);o.push(s)}return o.join(" ")}}},BvIE:function(t,e){var n=["itemStyle","borderColor"];t.exports=function(t,e){var i=t.get("color");t.eachRawSeriesByType("boxplot",function(e){var r=i[e.seriesIndex%i.length],o=e.getData();o.setVisual({legendSymbol:"roundRect",color:e.get(n)||r}),t.isSeriesFiltered(e)||o.each(function(t){var e=o.getItemModel(t);o.setItemVisual(t,{color:e.get(n,!0)})})})}},BzcN:function(t,e,n){var i=n("A5tq").map,r=n("FiFn"),o=n("fxHw").isDimensionStacked;t.exports=function(t){return{seriesType:t,plan:r(),reset:function(t){var e=t.getData(),n=t.coordinateSystem,r=t.pipelineContext.large;if(n){var a=i(n.dimensions,function(t){return e.mapDimension(t)}).slice(0,2),s=a.length,A=e.getCalculationInfo("stackResultDimension");return o(e,a[0])&&(a[0]=A),o(e,a[1])&&(a[1]=A),s&&{progress:function(t,e){for(var i=t.end-t.start,o=r&&new Float32Array(i*s),A=t.start,l=0,c=[],u=[];A<t.end;A++){var h;if(1===s){var d=e.get(a[0],A);h=!isNaN(d)&&n.dataToPoint(d,null,u)}else{d=c[0]=e.get(a[0],A);var f=c[1]=e.get(a[1],A);h=!isNaN(d)&&!isNaN(f)&&n.dataToPoint(c,null,u)}r?(o[l++]=h?h[0]:NaN,o[l++]=h?h[1]:NaN):e.setItemLayout(A,h&&h.slice()||[NaN,NaN])}r&&e.setLayout("symbolPoints",o)}}}}}}},C7Lr:function(t,e){t.exports=function(t,e,n,i,r,o){var a,s=t=t||{},A=typeof t.default;"object"!==A&&"function"!==A||(a=t,s=t.default);var l,c="function"==typeof s?s.options:s;if(e&&(c.render=e.render,c.staticRenderFns=e.staticRenderFns,c._compiled=!0),n&&(c.functional=!0),r&&(c._scopeId=r),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):i&&(l=i),l){var u=c.functional,h=u?c.render:c.beforeCreate;u?(c._injectStyles=l,c.render=function(t,e){return l.call(e),h(t,e)}):c.beforeCreate=h?[].concat(h,l):[l]}return{esModule:a,exports:s,options:c}}},C8x4:function(t,e,n){var i=n("A5tq").each,r=n("wFBG"),o=n("65+t").makeInner,a=n("/X/h"),s=n("YEh7"),A=n("Ih8s"),l=n("jsZU"),c=o(),u={load:function(t,e,n){var o=c(e).parsed;if(o)return o;var u,h=e.specialAreas||{},d=e.geoJSON;try{u=d?r(d,n):[]}catch(t){throw new Error("Invalid geoJson format\n"+t.message)}return a(t,u),i(u,function(e){var n=e.name;s(t,e),A(t,e),l(t,e);var i=h[n];i&&e.transformTo(i.left,i.top,i.width,i.height)}),c(e).parsed={regions:u,boundingRect:function(t){for(var e,n=0;n<t.length;n++){var i=t[n].getBoundingRect();(e=e||i.clone()).union(i)}return e}(u)}}};t.exports=u},CETw:function(t,e){var n=["#dd6b66","#759aa0","#e69d87","#8dc1a9","#ea7e53","#eedd78","#73a373","#73b9bc","#7289ab","#91ca8c","#f49f42"],i={color:n,backgroundColor:"#333",tooltip:{axisPointer:{lineStyle:{color:"#eee"},crossStyle:{color:"#eee"},label:{color:"#000"}}},legend:{textStyle:{color:"#eee"}},textStyle:{color:"#eee"},title:{textStyle:{color:"#eee"}},toolbox:{iconStyle:{normal:{borderColor:"#eee"}}},dataZoom:{textStyle:{color:"#eee"}},visualMap:{textStyle:{color:"#eee"}},timeline:{lineStyle:{color:"#eee"},itemStyle:{normal:{color:n[1]}},label:{normal:{textStyle:{color:"#eee"}}},controlStyle:{normal:{color:"#eee",borderColor:"#eee"}}},timeAxis:{axisLine:{lineStyle:{color:"#eee"}},axisTick:{lineStyle:{color:"#eee"}},axisLabel:{textStyle:{color:"#eee"}},splitLine:{lineStyle:{type:"dashed",color:"#aaa"}},splitArea:{areaStyle:{color:"#eee"}}},logAxis:{axisLine:{lineStyle:{color:"#eee"}},axisTick:{lineStyle:{color:"#eee"}},axisLabel:{textStyle:{color:"#eee"}},splitLine:{lineStyle:{type:"dashed",color:"#aaa"}},splitArea:{areaStyle:{color:"#eee"}}},valueAxis:{axisLine:{lineStyle:{color:"#eee"}},axisTick:{lineStyle:{color:"#eee"}},axisLabel:{textStyle:{color:"#eee"}},splitLine:{lineStyle:{type:"dashed",color:"#aaa"}},splitArea:{areaStyle:{color:"#eee"}}},categoryAxis:{axisLine:{lineStyle:{color:"#eee"}},axisTick:{lineStyle:{color:"#eee"}},axisLabel:{textStyle:{color:"#eee"}},splitLine:{lineStyle:{type:"dashed",color:"#aaa"}},splitArea:{areaStyle:{color:"#eee"}}},line:{symbol:"circle"},graph:{color:n},gauge:{title:{textStyle:{color:"#eee"}}},candlestick:{itemStyle:{normal:{color:"#FD1050",color0:"#0CF49B",borderColor:"#FD1050",borderColor0:"#0CF49B"}}}};i.categoryAxis.splitLine.show=!1;var r=i;t.exports=r},CXxR:function(t,e,n){var i=n("loyO"),r=n("A5tq");function o(t,e,n){var i,o={},a="toggleSelected"===t;return n.eachComponent("legend",function(n){a&&null!=i?n[i?"select":"unSelect"](e.name):"allSelect"===t||"inverseSelect"===t?n[t]():(n[t](e.name),i=n.isSelected(e.name));var s=n.getData();r.each(s,function(t){var e=t.get("name");if("\n"!==e&&""!==e){var i=n.isSelected(e);o.hasOwnProperty(e)?o[e]=o[e]&&i:o[e]=i}})}),"allSelect"===t||"inverseSelect"===t?{selected:o}:{name:e.name,selected:o}}i.registerAction("legendToggleSelect","legendselectchanged",r.curry(o,"toggleSelected")),i.registerAction("legendAllSelect","legendselectall",r.curry(o,"allSelect")),i.registerAction("legendInverseSelect","legendinverseselect",r.curry(o,"inverseSelect")),i.registerAction("legendSelect","legendselected",r.curry(o,"select")),i.registerAction("legendUnSelect","legendunselected",r.curry(o,"unSelect"))},Cjkn:function(t,e){var n=["lineStyle","normal","opacity"],i={seriesType:"parallel",reset:function(t,e,i){var r=t.getModel("itemStyle"),o=t.getModel("lineStyle"),a=e.get("color"),s=o.get("color")||r.get("color")||a[t.seriesIndex%a.length],A=t.get("inactiveOpacity"),l=t.get("activeOpacity"),c=t.getModel("lineStyle").getLineStyle(),u=t.coordinateSystem,h=t.getData(),d={normal:c.opacity,active:l,inactive:A};return h.setVisual("color",s),{progress:function(t,e){u.eachActiveState(e,function(t,i){var r=d[t];if("normal"===t&&e.hasItemOption){var o=e.getItemModel(i).get(n,!0);null!=o&&(r=o)}e.setItemVisual(i,"opacity",r)},t.start,t.end)}}}};t.exports=i},D2gI:function(t,e,n){var i=n("UnJe"),r=n("3PS3"),o=n("oRvp"),a=Math.sqrt,s=Math.sin,A=Math.cos,l=Math.PI,c=function(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])},u=function(t,e){return(t[0]*e[0]+t[1]*e[1])/(c(t)*c(e))},h=function(t,e){return(t[0]*e[1]<t[1]*e[0]?-1:1)*Math.acos(u(t,e))};function d(t,e,n,i,r,o,c,d,f,p,g){var m=f*(l/180),v=A(m)*(t-n)/2+s(m)*(e-i)/2,y=-1*s(m)*(t-n)/2+A(m)*(e-i)/2,w=v*v/(c*c)+y*y/(d*d);w>1&&(c*=a(w),d*=a(w));var x=(r===o?-1:1)*a((c*c*(d*d)-c*c*(y*y)-d*d*(v*v))/(c*c*(y*y)+d*d*(v*v)))||0,B=x*c*y/d,b=x*-d*v/c,C=(t+n)/2+A(m)*B-s(m)*b,_=(e+i)/2+s(m)*B+A(m)*b,S=h([1,0],[(v-B)/c,(y-b)/d]),I=[(v-B)/c,(y-b)/d],T=[(-1*v-B)/c,(-1*y-b)/d],M=h(I,T);u(I,T)<=-1&&(M=l),u(I,T)>=1&&(M=0),0===o&&M>0&&(M-=2*l),1===o&&M<0&&(M+=2*l),g.addData(p,C,_,c,d,S,M,m,o)}var f=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,p=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function g(t,e){var n=function(t){if(!t)return new r;for(var e,n=0,i=0,o=n,a=i,s=new r,A=r.CMD,l=t.match(f),c=0;c<l.length;c++){for(var u,h=l[c],g=h.charAt(0),m=h.match(p)||[],v=m.length,y=0;y<v;y++)m[y]=parseFloat(m[y]);for(var w=0;w<v;){var x,B,b,C,_,S,I,T=n,M=i;switch(g){case"l":n+=m[w++],i+=m[w++],u=A.L,s.addData(u,n,i);break;case"L":n=m[w++],i=m[w++],u=A.L,s.addData(u,n,i);break;case"m":n+=m[w++],i+=m[w++],u=A.M,s.addData(u,n,i),o=n,a=i,g="l";break;case"M":n=m[w++],i=m[w++],u=A.M,s.addData(u,n,i),o=n,a=i,g="L";break;case"h":n+=m[w++],u=A.L,s.addData(u,n,i);break;case"H":n=m[w++],u=A.L,s.addData(u,n,i);break;case"v":i+=m[w++],u=A.L,s.addData(u,n,i);break;case"V":i=m[w++],u=A.L,s.addData(u,n,i);break;case"C":u=A.C,s.addData(u,m[w++],m[w++],m[w++],m[w++],m[w++],m[w++]),n=m[w-2],i=m[w-1];break;case"c":u=A.C,s.addData(u,m[w++]+n,m[w++]+i,m[w++]+n,m[w++]+i,m[w++]+n,m[w++]+i),n+=m[w-2],i+=m[w-1];break;case"S":x=n,B=i;var Q=s.len(),F=s.data;e===A.C&&(x+=n-F[Q-4],B+=i-F[Q-3]),u=A.C,T=m[w++],M=m[w++],n=m[w++],i=m[w++],s.addData(u,x,B,T,M,n,i);break;case"s":x=n,B=i,Q=s.len(),F=s.data,e===A.C&&(x+=n-F[Q-4],B+=i-F[Q-3]),u=A.C,T=n+m[w++],M=i+m[w++],n+=m[w++],i+=m[w++],s.addData(u,x,B,T,M,n,i);break;case"Q":T=m[w++],M=m[w++],n=m[w++],i=m[w++],u=A.Q,s.addData(u,T,M,n,i);break;case"q":T=m[w++]+n,M=m[w++]+i,n+=m[w++],i+=m[w++],u=A.Q,s.addData(u,T,M,n,i);break;case"T":x=n,B=i,Q=s.len(),F=s.data,e===A.Q&&(x+=n-F[Q-4],B+=i-F[Q-3]),n=m[w++],i=m[w++],u=A.Q,s.addData(u,x,B,n,i);break;case"t":x=n,B=i,Q=s.len(),F=s.data,e===A.Q&&(x+=n-F[Q-4],B+=i-F[Q-3]),n+=m[w++],i+=m[w++],u=A.Q,s.addData(u,x,B,n,i);break;case"A":b=m[w++],C=m[w++],_=m[w++],S=m[w++],I=m[w++],d(T=n,M=i,n=m[w++],i=m[w++],S,I,b,C,_,u=A.A,s);break;case"a":b=m[w++],C=m[w++],_=m[w++],S=m[w++],I=m[w++],d(T=n,M=i,n+=m[w++],i+=m[w++],S,I,b,C,_,u=A.A,s)}}"z"!==g&&"Z"!==g||(u=A.Z,s.addData(u),n=o,i=a),e=u}return s.toStatic(),s}(t);return(e=e||{}).buildPath=function(t){if(t.setData){t.setData(n.data),(e=t.getContext())&&t.rebuildPath(e)}else{var e=t;n.rebuildPath(e)}},e.applyTransform=function(t){o(n,t),this.dirty(!0)},e}e.createFromString=function(t,e){return new i(g(t,e))},e.extendFromString=function(t,e){return i.extend(g(t,e))},e.mergePath=function(t,e){for(var n=[],r=t.length,o=0;o<r;o++){var a=t[o];a.path||a.createPathProxy(),a.__dirtyPath&&a.buildPath(a.path,a.shape,!0),n.push(a.path)}var s=new i(e);return s.createPathProxy(),s.buildPath=function(t){t.appendPath(n);var e=t.getContext();e&&t.rebuildPath(e)},s}},DCVM:function(t,e,n){var i=n("A5tq"),r=n("r+KN"),o=n("yW06"),a=n("bDs9"),s=n("rhmo"),A=n("wpU+"),l=n("SgSL"),c=n("f+YC").createSymbol,u=n("eII0"),h=n("w9uD"),d=n("DWNL").encodeHTML,f=i.bind,p=i.each,g=Math.PI,m=A.extend({type:"timeline.slider",init:function(t,e){this.api=e,this._axis,this._viewRect,this._timer,this._currentPointer,this._mainGroup,this._labelGroup},render:function(t,e,n,i){if(this.model=t,this.api=n,this.ecModel=e,this.group.removeAll(),t.get("show",!0)){var r=this._layout(t,n),o=this._createGroup("mainGroup"),a=this._createGroup("labelGroup"),s=this._axis=this._createAxis(r,t);t.formatTooltip=function(t){return d(s.scale.getLabel(t))},p(["AxisLine","AxisTick","Control","CurrentPointer"],function(e){this["_render"+e](r,o,s,t)},this),this._renderAxisLabel(r,a,s,t),this._position(r,t)}this._doPlayStop()},remove:function(){this._clearTimer(),this.group.removeAll()},dispose:function(){this._clearTimer()},_layout:function(t,e){var n=t.get("label.position"),i=t.get("orient"),r=function(t,e){return s.getLayoutRect(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()},t.get("padding"))}(t,e);null==n||"auto"===n?n="horizontal"===i?r.y+r.height/2<e.getHeight()/2?"-":"+":r.x+r.width/2<e.getWidth()/2?"+":"-":isNaN(n)&&(n={horizontal:{top:"-",bottom:"+"},vertical:{left:"-",right:"+"}}[i][n]);var o,a,A,l,c={horizontal:"center",vertical:n>=0||"+"===n?"left":"right"},u={horizontal:n>=0||"+"===n?"top":"bottom",vertical:"middle"},h={horizontal:0,vertical:g/2},d="vertical"===i?r.height:r.width,f=t.getModel("controlStyle"),p=f.get("show",!0),m=p?f.get("itemSize"):0,v=p?f.get("itemGap"):0,y=m+v,w=t.get("label.rotate")||0;w=w*g/180;var x=f.get("position",!0),B=p&&f.get("showPlayBtn",!0),b=p&&f.get("showPrevBtn",!0),C=p&&f.get("showNextBtn",!0),_=0,S=d;return"left"===x||"bottom"===x?(B&&(o=[0,0],_+=y),b&&(a=[_,0],_+=y),C&&(A=[S-m,0],S-=y)):(B&&(o=[S-m,0],S-=y),b&&(a=[0,0],_+=y),C&&(A=[S-m,0],S-=y)),l=[_,S],t.get("inverse")&&l.reverse(),{viewRect:r,mainLength:d,orient:i,rotation:h[i],labelRotation:w,labelPosOpt:n,labelAlign:t.get("label.align")||c[i],labelBaseline:t.get("label.verticalAlign")||t.get("label.baseline")||u[i],playPosition:o,prevBtnPosition:a,nextBtnPosition:A,axisExtent:l,controlSize:m,controlGap:v}},_position:function(t,e){var n=this._mainGroup,i=this._labelGroup,r=t.viewRect;if("vertical"===t.orient){var a=o.create(),s=r.x,A=r.y+r.height;o.translate(a,a,[-s,-A]),o.rotate(a,a,-g/2),o.translate(a,a,[s,A]),(r=r.clone()).applyTransform(a)}var l=v(r),c=v(n.getBoundingRect()),u=v(i.getBoundingRect()),h=n.position,d=i.position;d[0]=h[0]=l[0][0];var f,p=t.labelPosOpt;isNaN(p)?(y(h,c,l,1,f="+"===p?0:1),y(d,u,l,1,1-f)):(y(h,c,l,1,f=p>=0?0:1),d[1]=h[1]+p);function m(t){var e=t.position;t.origin=[l[0][0]-e[0],l[1][0]-e[1]]}function v(t){return[[t.x,t.x+t.width],[t.y,t.y+t.height]]}function y(t,e,n,i,r){t[i]+=n[i][r]-e[i][r]}n.attr("position",h),i.attr("position",d),n.rotation=i.rotation=t.rotation,m(n),m(i)},_createAxis:function(t,e){var n=e.getData(),i=e.get("axisType"),r=u.createScaleByModel(e,i);r.getTicks=function(){return n.mapArray(["value"],function(t){return t})};var o=n.getDataExtent("value");r.setExtent(o[0],o[1]),r.niceTicks();var a=new l("value",r,t.axisExtent,i);return a.model=e,a},_createGroup:function(t){var e=this["_"+t]=new a.Group;return this.group.add(e),e},_renderAxisLine:function(t,e,n,r){var o=n.getExtent();r.get("lineStyle.show")&&e.add(new a.Line({shape:{x1:o[0],y1:0,x2:o[1],y2:0},style:i.extend({lineCap:"round"},r.getModel("lineStyle").getLineStyle()),silent:!0,z2:1}))},_renderAxisTick:function(t,e,n,i){var r=i.getData(),o=n.scale.getTicks();p(o,function(t){var o=n.dataToCoord(t),s=r.getItemModel(t),A=s.getModel("itemStyle"),l=s.getModel("emphasis.itemStyle"),c={position:[o,0],onclick:f(this._changeTimeline,this,t)},u=v(s,A,e,c);a.setHoverStyle(u,l.getItemStyle()),s.get("tooltip")?(u.dataIndex=t,u.dataModel=i):u.dataIndex=u.dataModel=null},this)},_renderAxisLabel:function(t,e,n,i){if(n.getLabelModel().get("show")){var r=i.getData(),o=n.getViewLabels();p(o,function(i){var o=i.tickValue,s=r.getItemModel(o),A=s.getModel("label"),l=s.getModel("emphasis.label"),c=n.dataToCoord(i.tickValue),u=new a.Text({position:[c,0],rotation:t.labelRotation-t.rotation,onclick:f(this._changeTimeline,this,o),silent:!1});a.setTextStyle(u.style,A,{text:i.formattedLabel,textAlign:t.labelAlign,textVerticalAlign:t.labelBaseline}),e.add(u),a.setHoverStyle(u,a.setTextStyle({},l))},this)}},_renderControl:function(t,e,n,i){var o=t.controlSize,s=t.rotation,A=i.getModel("controlStyle").getItemStyle(),l=i.getModel("emphasis.controlStyle").getItemStyle(),c=[0,-o/2,o,o],u=i.getPlayState(),h=i.get("inverse",!0);function d(t,n,u,h){if(t){var d=function(t,e,n,i){var o=i.style,s=a.createIcon(t.get(e),i||{},new r(n[0],n[1],n[2],n[3]));o&&s.setStyle(o);return s}(i,n,c,{position:t,origin:[o/2,0],rotation:h?-s:0,rectHover:!0,style:A,onclick:u});e.add(d),a.setHoverStyle(d,l)}}d(t.nextBtnPosition,"controlStyle.nextIcon",f(this._changeTimeline,this,h?"-":"+")),d(t.prevBtnPosition,"controlStyle.prevIcon",f(this._changeTimeline,this,h?"+":"-")),d(t.playPosition,"controlStyle."+(u?"stopIcon":"playIcon"),f(this._handlePlayClick,this,!u),!0)},_renderCurrentPointer:function(t,e,n,i){var r=i.getData(),o=i.getCurrentIndex(),a=r.getItemModel(o).getModel("checkpointStyle"),s=this,A={onCreate:function(t){t.draggable=!0,t.drift=f(s._handlePointerDrag,s),t.ondragend=f(s._handlePointerDragend,s),y(t,o,n,i,!0)},onUpdate:function(t){y(t,o,n,i)}};this._currentPointer=v(a,a,this._mainGroup,{},this._currentPointer,A)},_handlePlayClick:function(t){this._clearTimer(),this.api.dispatchAction({type:"timelinePlayChange",playState:t,from:this.uid})},_handlePointerDrag:function(t,e,n){this._clearTimer(),this._pointerChangeTimeline([n.offsetX,n.offsetY])},_handlePointerDragend:function(t){this._pointerChangeTimeline([t.offsetX,t.offsetY],!0)},_pointerChangeTimeline:function(t,e){var n=this._toAxisCoord(t)[0],i=this._axis,r=h.asc(i.getExtent().slice());n>r[1]&&(n=r[1]),n<r[0]&&(n=r[0]),this._currentPointer.position[0]=n,this._currentPointer.dirty();var o=this._findNearestTick(n),a=this.model;(e||o!==a.getCurrentIndex()&&a.get("realtime"))&&this._changeTimeline(o)},_doPlayStop:function(){this._clearTimer(),this.model.getPlayState()&&(this._timer=setTimeout(f(function(){var t=this.model;this._changeTimeline(t.getCurrentIndex()+(t.get("rewind",!0)?-1:1))},this),this.model.get("playInterval")))},_toAxisCoord:function(t){var e=this._mainGroup.getLocalTransform();return a.applyTransform(t,e,!0)},_findNearestTick:function(t){var e,n=this.model.getData(),i=1/0,r=this._axis;return n.each(["value"],function(n,o){var a=r.dataToCoord(n),s=Math.abs(a-t);s<i&&(i=s,e=o)}),e},_clearTimer:function(){this._timer&&(clearTimeout(this._timer),this._timer=null)},_changeTimeline:function(t){var e=this.model.getCurrentIndex();"+"===t?t=e+1:"-"===t&&(t=e-1),this.api.dispatchAction({type:"timelineChange",currentIndex:t,from:this.uid})}});function v(t,e,n,r,o,a){var s=e.get("color");if(o)o.setColor(s),n.add(o),a&&a.onUpdate(o);else{var A=t.get("symbol");(o=c(A,-1,-1,2,2,s)).setStyle("strokeNoScale",!0),n.add(o),a&&a.onCreate(o)}var l=e.getItemStyle(["color","symbol","symbolSize"]);o.setStyle(l),r=i.merge({rectHover:!0,z2:100},r,!0);var u=t.get("symbolSize");(u=u instanceof Array?u.slice():[+u,+u])[0]/=2,u[1]/=2,r.scale=u;var d=t.get("symbolOffset");if(d){var f=r.position=r.position||[0,0];f[0]+=h.parsePercent(d[0],u[0]),f[1]+=h.parsePercent(d[1],u[1])}var p=t.get("symbolRotate");return r.rotation=(p||0)*Math.PI/180||0,o.attr(r),o.updateTransform(),o}function y(t,e,n,i,r){if(!t.dragging){var o=i.getModel("checkpointStyle"),a=n.dataToCoord(i.getData().get(["value"],e));r||!o.get("animation",!0)?t.attr({position:[a,0]}):(t.stopAnimation(!0),t.animateTo({position:[a,0]},o.get("animationDuration",!0),o.get("animationEasing",!0)))}}t.exports=m},DW0o:function(t,e,n){var i=n("loyO");n("jxQp"),n("NYRX"),i.registerPreprocessor(function(t){t.markLine=t.markLine||{}})},DWNL:function(t,e,n){var i=n("A5tq"),r=n("ixaL"),o=n("w9uD");var a=i.normalizeCssArray,s=/([&<>"'])/g,A={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"};function l(t){return null==t?"":(t+"").replace(s,function(t,e){return A[e]})}var c=["a","b","c","d","e","f","g"],u=function(t,e){return"{"+t+(null==e?"":e)+"}"};function h(t,e){return"0000".substr(0,e-(t+="").length)+t}var d=r.truncateText;e.addCommas=function(t){return isNaN(t)?"-":(t=(t+"").split("."))[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(t.length>1?"."+t[1]:"")},e.toCamelCase=function(t,e){return t=(t||"").toLowerCase().replace(/-(.)/g,function(t,e){return e.toUpperCase()}),e&&t&&(t=t.charAt(0).toUpperCase()+t.slice(1)),t},e.normalizeCssArray=a,e.encodeHTML=l,e.formatTpl=function(t,e,n){i.isArray(e)||(e=[e]);var r=e.length;if(!r)return"";for(var o=e[0].$vars||[],a=0;a<o.length;a++){var s=c[a];t=t.replace(u(s),u(s,0))}for(var A=0;A<r;A++)for(var h=0;h<o.length;h++){var d=e[A][o[h]];t=t.replace(u(c[h],A),n?l(d):d)}return t},e.formatTplSimple=function(t,e,n){return i.each(e,function(e,i){t=t.replace("{"+i+"}",n?l(e):e)}),t},e.getTooltipMarker=function(t,e){var n=(t=i.isString(t)?{color:t,extraCssText:e}:t||{}).color,r=t.type,o=(e=t.extraCssText,t.renderMode||"html"),a=t.markerId||"X";return n?"html"===o?"subItem"===r?'<span style="display:inline-block;vertical-align:middle;margin-right:8px;margin-left:3px;border-radius:4px;width:4px;height:4px;background-color:'+l(n)+";"+(e||"")+'"></span>':'<span style="display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:'+l(n)+";"+(e||"")+'"></span>':{renderMode:o,content:"{marker"+a+"|}  ",style:{color:n}}:""},e.formatTime=function(t,e,n){"week"!==t&&"month"!==t&&"quarter"!==t&&"half-year"!==t&&"year"!==t||(t="MM-dd\nyyyy");var i=o.parseDate(e),r=n?"UTC":"",a=i["get"+r+"FullYear"](),s=i["get"+r+"Month"]()+1,A=i["get"+r+"Date"](),l=i["get"+r+"Hours"](),c=i["get"+r+"Minutes"](),u=i["get"+r+"Seconds"](),d=i["get"+r+"Milliseconds"]();return t=t.replace("MM",h(s,2)).replace("M",s).replace("yyyy",a).replace("yy",a%100).replace("dd",h(A,2)).replace("d",A).replace("hh",h(l,2)).replace("h",l).replace("mm",h(c,2)).replace("m",c).replace("ss",h(u,2)).replace("s",u).replace("SSS",h(d,3))},e.capitalFirst=function(t){return t?t.charAt(0).toUpperCase()+t.substr(1):t},e.truncateText=d,e.getTextBoundingRect=function(t){return r.getBoundingRect(t.text,t.font,t.textAlign,t.textVerticalAlign,t.textPadding,t.textLineHeight,t.rich,t.truncate)},e.getTextRect=function(t,e,n,i,o,a,s,A){return r.getBoundingRect(t,e,n,i,o,A,a,s)},e.windowOpen=function(t,e){if("_blank"===e||"blank"===e){var n=window.open();n.opener=null,n.location=t}else window.open(t,e)}},DXUs:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("1ZnN").updateCenterAndZoom;i.registerAction({type:"geoRoam",event:"geoRoam",update:"updateTransform"},function(t,e){var n=t.componentType||"series";e.eachComponent({mainType:n,query:t},function(e){var i=e.coordinateSystem;if("geo"===i.type){var a=o(i,t,e.get("scaleLimit"));e.setCenter&&e.setCenter(a.center),e.setZoom&&e.setZoom(a.zoom),"series"===n&&r.each(e.seriesGroup,function(t){t.setCenter(a.center),t.setZoom(a.zoom)})}})})},DdEt:function(t,e,n){var i=n("BJyR").normalizeRadian,r=2*Math.PI;e.containStroke=function(t,e,n,o,a,s,A,l,c){if(0===A)return!1;var u=A;l-=t,c-=e;var h=Math.sqrt(l*l+c*c);if(h-u>n||h+u<n)return!1;if(Math.abs(o-a)%r<1e-4)return!0;if(s){var d=o;o=i(a),a=i(d)}else o=i(o),a=i(a);o>a&&(a+=r);var f=Math.atan2(c,l);return f<0&&(f+=r),f>=o&&f<=a||f+r>=o&&f+r<=a}},DeTP:function(t,e,n){var i=n("A5tq"),r=["getDom","getZr","getWidth","getHeight","getDevicePixelRatio","dispatchAction","isDisposed","on","off","getDataURL","getConnectedDataURL","getModel","getOption","getViewOfComponentModel","getViewOfSeriesModel"];var o=function(t){i.each(r,function(e){this[e]=i.bind(t[e],t)},this)};t.exports=o},DjhZ:function(t,e,n){var i=n("A5tq");function r(t){var e=t.itemStyle||(t.itemStyle={}),n=e.emphasis||(e.emphasis={}),r=t.label||t.label||{},a=r.normal||(r.normal={}),s={normal:1,emphasis:1};i.each(r,function(t,e){s[e]||o(a,e)||(a[e]=t)}),n.label&&!o(r,"emphasis")&&(r.emphasis=n.label,delete n.label)}function o(t,e){return t.hasOwnProperty(e)}t.exports=function(t){var e=t&&t.timeline;i.isArray(e)||(e=e?[e]:[]),i.each(e,function(t){t&&function(t){var e=t.type,n={number:"value",time:"time"};if(n[e]&&(t.axisType=n[e],delete t.type),r(t),o(t,"controlPosition")){var a=t.controlStyle||(t.controlStyle={});o(a,"position")||(a.position=t.controlPosition),"none"!==a.position||o(a,"show")||(a.show=!1,delete a.position),delete t.controlPosition}i.each(t.data||[],function(t){i.isObject(t)&&!i.isArray(t)&&(!o(t,"value")&&o(t,"name")&&(t.value=t.name),r(t))})}(t)})}},Dz05:function(t,e,n){var i=n("A5tq"),r=n("ixaL"),o=n("m9W5"),a=(0,n("65+t").makeInner)();function s(t,e){e=e||[0,360],o.call(this,"angle",t,e),this.type="category"}s.prototype={constructor:s,pointToData:function(t,e){return this.polar.pointToData(t,e)["radius"===this.dim?0:1]},dataToAngle:o.prototype.dataToCoord,angleToData:o.prototype.coordToData,calculateCategoryInterval:function(){var t=this.getLabelModel(),e=this.scale,n=e.getExtent(),i=e.count();if(n[1]-n[0]<1)return 0;var o=n[0],s=this.dataToCoord(o+1)-this.dataToCoord(o),A=Math.abs(s),l=r.getBoundingRect(o,t.getFont(),"center","top"),c=Math.max(l.height,7)/A;isNaN(c)&&(c=1/0);var u=Math.max(0,Math.floor(c)),h=a(this.model),d=h.lastAutoInterval,f=h.lastTickCount;return null!=d&&null!=f&&Math.abs(d-u)<=1&&Math.abs(f-i)<=1&&d>u?u=d:(h.lastTickCount=i,h.lastAutoInterval=u),u}},i.inherits(s,o);var A=s;t.exports=A},E5p3:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("TqJj"),o=n("w9uD").parsePercent,a=n("eII0"),s=a.createScaleByModel,A=a.niceScaleExtent,l=n("TJcz"),c=n("fxHw").getStackedDimension;function u(t,e){var n=this,r=n.getAngleAxis(),o=n.getRadiusAxis();if(r.scale.setExtent(1/0,-1/0),o.scale.setExtent(1/0,-1/0),t.eachSeries(function(t){if(t.coordinateSystem===n){var e=t.getData();i.each(e.mapDimension("radius",!0),function(t){o.scale.unionExtentFromData(e,c(e,t))}),i.each(e.mapDimension("angle",!0),function(t){r.scale.unionExtentFromData(e,c(e,t))})}}),A(r.scale,r.model),A(o.scale,o.model),"category"===r.type&&!r.onBand){var a=r.getExtent(),s=360/r.scale.count();r.inverse?a[1]+=s:a[1]-=s,r.setExtent(a[0],a[1])}}function h(t,e){if(t.type=e.get("type"),t.scale=s(e),t.onBand=e.get("boundaryGap")&&"category"===t.type,t.inverse=e.get("inverse"),"angleAxis"===e.mainType){t.inverse^=e.get("clockwise");var n=e.get("startAngle");t.setExtent(n,n+(t.inverse?-360:360))}e.axis=t,t.model=e}n("UxUh");var d={dimensions:r.prototype.dimensions,create:function(t,e){var n=[];return t.eachComponent("polar",function(t,a){var s=new r(a);s.update=u;var A=s.getRadiusAxis(),l=s.getAngleAxis(),c=t.findAxisModel("radiusAxis"),d=t.findAxisModel("angleAxis");h(A,c),h(l,d),function(t,e,n){var r=e.get("center"),a=n.getWidth(),s=n.getHeight();t.cx=o(r[0],a),t.cy=o(r[1],s);var A=t.getRadiusAxis(),l=Math.min(a,s)/2,c=e.get("radius");null==c?c=[0,"100%"]:i.isArray(c)||(c=[0,c]),c=[o(c[0],l),o(c[1],l)],A.inverse?A.setExtent(c[1],c[0]):A.setExtent(c[0],c[1])}(s,t,e),n.push(s),t.coordinateSystem=s,s.model=t}),t.eachSeries(function(e){if("polar"===e.get("coordinateSystem")){var n=t.queryComponents({mainType:"polar",index:e.get("polarIndex"),id:e.get("polarId")})[0];e.coordinateSystem=n.coordinateSystem}}),n}};l.register("polar",d)},EF49:function(t,e,n){var i=n("loyO").extendComponentModel({type:"axisPointer",coordSysAxesInfo:null,defaultOption:{show:"auto",triggerOn:null,zlevel:0,z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#aaa",width:1,type:"solid"},shadowStyle:{color:"rgba(150,150,150,0.3)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,shadowBlur:3,shadowColor:"#aaa"},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}}});t.exports=i},EH8x:function(t,e,n){n("MJ75"),n("RpAW"),n("YpO4")},ELrk:function(t,e,n){var i=n("Ezjg"),r=n("VU1Y"),o=n("A5tq"),a=o.isString,s=o.isFunction,A=o.isObject,l=o.isArrayLike,c=o.indexOf,u=function(){this.animators=[]};function h(t,e,n,i,r,o,c,u){a(i)?(o=r,r=i,i=0):s(r)?(o=r,r="linear",i=0):s(i)?(o=i,i=0):s(n)?(o=n,n=500):n||(n=500),t.stopAnimation(),function t(e,n,i,r,o,a,s){var c={};var u=0;for(var h in r)r.hasOwnProperty(h)&&(null!=i[h]?A(r[h])&&!l(r[h])?t(e,n?n+"."+h:h,i[h],r[h],o,a,s):(s?(c[h]=i[h],d(e,n,h,r[h])):c[h]=r[h],u++):null==r[h]||s||d(e,n,h,r[h]));u>0&&e.animate(n,!1).when(null==o?500:o,c).delay(a||0)}(t,"",t,e,n,i,u);var h=t.animators.slice(),f=h.length;function p(){--f||o&&o()}f||o&&o();for(var g=0;g<h.length;g++)h[g].done(p).start(r,c)}function d(t,e,n,i){if(e){var r={};r[e]={},r[e][n]=i,t.attr(r)}else t.attr(n,i)}u.prototype={constructor:u,animate:function(t,e){var n,o=!1,a=this,s=this.__zr;if(t){var A=t.split("."),l=a;o="shape"===A[0];for(var u=0,h=A.length;u<h;u++)l&&(l=l[A[u]]);l&&(n=l)}else n=a;if(n){var d=a.animators,f=new i(n,e);return f.during(function(t){a.dirty(o)}).done(function(){d.splice(c(d,f),1)}),d.push(f),s&&s.animation.addAnimator(f),f}r('Property "'+t+'" is not existed in element '+a.id)},stopAnimation:function(t){for(var e=this.animators,n=e.length,i=0;i<n;i++)e[i].stop(t);return e.length=0,this},animateTo:function(t,e,n,i,r,o){h(this,t,e,n,i,r,o)},animateFrom:function(t,e,n,i,r,o){h(this,t,e,n,i,r,o,!0)}};var f=u;t.exports=f},EO9D:function(t,e,n){var i=n("loyO"),r=n("rbP0"),o=n("7iGl"),a=n("5P5h"),s=o.toolbox.restore;function A(t){this.model=t}A.defaultOption={show:!0,icon:"M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5",title:s.title},A.prototype.onclick=function(t,e,n){r.clear(t),e.dispatchAction({type:"restore",from:this.uid})},a.register("restore",A),i.registerAction({type:"restore",event:"restore",update:"prepareAndUpdate"},function(t,e){e.resetOption("recreate")});var l=A;t.exports=l},ETGR:function(t,e,n){var i={seriesType:"lines",plan:n("FiFn")(),reset:function(t){var e=t.coordinateSystem,n=t.get("polyline"),i=t.pipelineContext.large;return{progress:function(r,o){var a=[];if(i){var s,A=r.end-r.start;if(n){for(var l=0,c=r.start;c<r.end;c++)l+=t.getLineCoordsCount(c);s=new Float32Array(A+2*l)}else s=new Float32Array(4*A);var u=0,h=[];for(c=r.start;c<r.end;c++){var d=t.getLineCoords(c,a);n&&(s[u++]=d);for(var f=0;f<d;f++)h=e.dataToPoint(a[f],!1,h),s[u++]=h[0],s[u++]=h[1]}o.setLayout("linesPoints",s)}else for(c=r.start;c<r.end;c++){var p=o.getItemModel(c),g=(d=t.getLineCoords(c,a),[]);if(n)for(var m=0;m<d;m++)g.push(e.dataToPoint(a[m]));else{g[0]=e.dataToPoint(a[0]),g[1]=e.dataToPoint(a[1]);var v=p.get("lineStyle.curveness");+v&&(g[2]=[(g[0][0]+g[1][0])/2-(g[0][1]-g[1][1])*v,(g[0][1]+g[1][1])/2-(g[1][0]-g[0][0])*v])}o.setItemLayout(c,g)}}}}};t.exports=i},Ea7q:function(t,e,n){var i=n("A5tq"),r=n("Lkz2").devicePixelRatio,o=n("1yLv"),a=n("eEzf");function s(){return!1}function A(t,e,n){var r=i.createCanvas(),o=e.getWidth(),a=e.getHeight(),s=r.style;return s&&(s.position="absolute",s.left=0,s.top=0,s.width=o+"px",s.height=a+"px",r.setAttribute("data-zr-dom-id",t)),r.width=o*n,r.height=a*n,r}var l=function(t,e,n){var o;n=n||r,"string"==typeof t?o=A(t,e,n):i.isObject(t)&&(t=(o=t).id),this.id=t,this.dom=o;var a=o.style;a&&(o.onselectstart=s,a["-webkit-user-select"]="none",a["user-select"]="none",a["-webkit-touch-callout"]="none",a["-webkit-tap-highlight-color"]="rgba(0,0,0,0)",a.padding=0,a.margin=0,a["border-width"]=0),this.domBack=null,this.ctxBack=null,this.painter=e,this.config=null,this.clearColor=0,this.motionBlur=!1,this.lastFrameAlpha=.7,this.dpr=n};l.prototype={constructor:l,__dirty:!0,__used:!1,__drawIndex:0,__startIndex:0,__endIndex:0,incremental:!1,getElementCount:function(){return this.__endIndex-this.__startIndex},initContext:function(){this.ctx=this.dom.getContext("2d"),this.ctx.dpr=this.dpr},createBackBuffer:function(){var t=this.dpr;this.domBack=A("back-"+this.id,this.painter,t),this.ctxBack=this.domBack.getContext("2d"),1!==t&&this.ctxBack.scale(t,t)},resize:function(t,e){var n=this.dpr,i=this.dom,r=i.style,o=this.domBack;r&&(r.width=t+"px",r.height=e+"px"),i.width=t*n,i.height=e*n,o&&(o.width=t*n,o.height=e*n,1!==n&&this.ctxBack.scale(n,n))},clear:function(t,e){var n,i=this.dom,r=this.ctx,s=i.width,A=i.height,l=(e=e||this.clearColor,this.motionBlur&&!t),c=this.lastFrameAlpha,u=this.dpr;(l&&(this.domBack||this.createBackBuffer(),this.ctxBack.globalCompositeOperation="copy",this.ctxBack.drawImage(i,0,0,s/u,A/u)),r.clearRect(0,0,s,A),e&&"transparent"!==e)&&(e.colorStops?(n=e.__canvasGradient||o.getGradient(r,e,{x:0,y:0,width:s,height:A}),e.__canvasGradient=n):e.image&&(n=a.prototype.getCanvasPattern.call(e,r)),r.save(),r.fillStyle=n||e,r.fillRect(0,0,s,A),r.restore());if(l){var h=this.domBack;r.save(),r.globalAlpha=c,r.drawImage(h,0,0,s,A),r.restore()}}};var c=l;t.exports=c},EvYG:function(t,e,n){var i=n("VU1Y"),r=n("80Hv"),o=n("A5tq").each;function a(t){return parseInt(t,10)}function s(t,e){r.initVML(),this.root=t,this.storage=e;var n=document.createElement("div"),i=document.createElement("div");n.style.cssText="display:inline-block;overflow:hidden;position:relative;width:300px;height:150px;",i.style.cssText="position:absolute;left:0;top:0;",t.appendChild(n),this._vmlRoot=i,this._vmlViewport=n,this.resize();var o=e.delFromStorage,a=e.addToStorage;e.delFromStorage=function(t){o.call(e,t),t&&t.onRemove&&t.onRemove(i)},e.addToStorage=function(t){t.onAdd&&t.onAdd(i),a.call(e,t)},this._firstPaint=!0}s.prototype={constructor:s,getType:function(){return"vml"},getViewportRoot:function(){return this._vmlViewport},getViewportRootOffset:function(){var t=this.getViewportRoot();if(t)return{offsetLeft:t.offsetLeft||0,offsetTop:t.offsetTop||0}},refresh:function(){var t=this.storage.getDisplayList(!0,!0);this._paintList(t)},_paintList:function(t){for(var e=this._vmlRoot,n=0;n<t.length;n++){var i=t[n];i.invisible||i.ignore?(i.__alreadyNotVisible||i.onRemove(e),i.__alreadyNotVisible=!0):(i.__alreadyNotVisible&&i.onAdd(e),i.__alreadyNotVisible=!1,i.__dirty&&(i.beforeBrush&&i.beforeBrush(),(i.brushVML||i.brush).call(i,e),i.afterBrush&&i.afterBrush())),i.__dirty=!1}this._firstPaint&&(this._vmlViewport.appendChild(e),this._firstPaint=!1)},resize:function(t,e){t=null==t?this._getWidth():t,e=null==e?this._getHeight():e;if(this._width!==t||this._height!==e){this._width=t,this._height=e;var n=this._vmlViewport.style;n.width=t+"px",n.height=e+"px"}},dispose:function(){this.root.innerHTML="",this._vmlRoot=this._vmlViewport=this.storage=null},getWidth:function(){return this._width},getHeight:function(){return this._height},clear:function(){this._vmlViewport&&this.root.removeChild(this._vmlViewport)},_getWidth:function(){var t=this.root,e=t.currentStyle;return(t.clientWidth||a(e.width))-a(e.paddingLeft)-a(e.paddingRight)|0},_getHeight:function(){var t=this.root,e=t.currentStyle;return(t.clientHeight||a(e.height))-a(e.paddingTop)-a(e.paddingBottom)|0}},o(["getLayer","insertLayer","eachLayer","eachBuiltinLayer","eachOtherLayer","getLayers","modLayer","delLayer","clearLayer","toDataURL","pathToImage"],function(t){var e;s.prototype[t]=(e=t,function(){i('In IE8.0 VML mode painter not support method "'+e+'"')})});var A=s;t.exports=A},Ezjg:function(t,e,n){var i=n("j50J"),r=n("dyFL"),o=n("A5tq").isArrayLike,a=Array.prototype.slice;function s(t,e){return t[e]}function A(t,e,n){t[e]=n}function l(t,e,n){return(e-t)*n+t}function c(t,e,n){return n>.5?e:t}function u(t,e,n,i,r){var o=t.length;if(1===r)for(var a=0;a<o;a++)i[a]=l(t[a],e[a],n);else{var s=o&&t[0].length;for(a=0;a<o;a++)for(var A=0;A<s;A++)i[a][A]=l(t[a][A],e[a][A],n)}}function h(t,e,n){var i=t.length,r=e.length;if(i!==r)if(i>r)t.length=r;else for(var o=i;o<r;o++)t.push(1===n?e[o]:a.call(e[o]));var s=t[0]&&t[0].length;for(o=0;o<t.length;o++)if(1===n)isNaN(t[o])&&(t[o]=e[o]);else for(var A=0;A<s;A++)isNaN(t[o][A])&&(t[o][A]=e[o][A])}function d(t,e,n){if(t===e)return!0;var i=t.length;if(i!==e.length)return!1;if(1===n){for(var r=0;r<i;r++)if(t[r]!==e[r])return!1}else{var o=t[0].length;for(r=0;r<i;r++)for(var a=0;a<o;a++)if(t[r][a]!==e[r][a])return!1}return!0}function f(t,e,n,i,r,o,a,s,A){var l=t.length;if(1===A)for(var c=0;c<l;c++)s[c]=p(t[c],e[c],n[c],i[c],r,o,a);else{var u=t[0].length;for(c=0;c<l;c++)for(var h=0;h<u;h++)s[c][h]=p(t[c][h],e[c][h],n[c][h],i[c][h],r,o,a)}}function p(t,e,n,i,r,o,a){var s=.5*(n-t),A=.5*(i-e);return(2*(e-n)+s+A)*a+(-3*(e-n)-2*s-A)*o+s*r+e}function g(t){if(o(t)){var e=t.length;if(o(t[0])){for(var n=[],i=0;i<e;i++)n.push(a.call(t[i]));return n}return a.call(t)}return t}function m(t){return t[0]=Math.floor(t[0]),t[1]=Math.floor(t[1]),t[2]=Math.floor(t[2]),"rgba("+t.join(",")+")"}function v(t,e,n,a,s,A){var g=t._getter,v=t._setter,y="spline"===e,w=a.length;if(w){var x,B=a[0].value,b=o(B),C=!1,_=!1,S=b?function(t){var e=t[t.length-1].value;return o(e&&e[0])?2:1}(a):0;a.sort(function(t,e){return t.time-e.time}),x=a[w-1].time;for(var I=[],T=[],M=a[0].value,Q=!0,F=0;F<w;F++){I.push(a[F].time/x);var k=a[F].value;if(b&&d(k,M,S)||!b&&k===M||(Q=!1),M=k,"string"==typeof k){var D=r.parse(k);D?(k=D,C=!0):_=!0}T.push(k)}if(A||!Q){var U=T[w-1];for(F=0;F<w-1;F++)b?h(T[F],U,S):!isNaN(T[F])||isNaN(U)||_||C||(T[F]=U);b&&h(g(t._target,s),U,S);var E,L,O,P,H,N=0,R=0;if(C)var V=[0,0,0,0];var z=new i({target:t._target,life:x,loop:t._loop,delay:t._delay,onframe:function(t,e){var n;if(e<0)n=0;else if(e<R){for(n=Math.min(N+1,w-1);n>=0&&!(I[n]<=e);n--);n=Math.min(n,w-2)}else{for(n=N;n<w&&!(I[n]>e);n++);n=Math.min(n-1,w-2)}N=n,R=e;var i=I[n+1]-I[n];if(0!==i)if(E=(e-I[n])/i,y)if(O=T[n],L=T[0===n?n:n-1],P=T[n>w-2?w-1:n+1],H=T[n>w-3?w-1:n+2],b)f(L,O,P,H,E,E*E,E*E*E,g(t,s),S);else{if(C)r=f(L,O,P,H,E,E*E,E*E*E,V,1),r=m(V);else{if(_)return c(O,P,E);r=p(L,O,P,H,E,E*E,E*E*E)}v(t,s,r)}else if(b)u(T[n],T[n+1],E,g(t,s),S);else{var r;if(C)u(T[n],T[n+1],E,V,1),r=m(V);else{if(_)return c(T[n],T[n+1],E);r=l(T[n],T[n+1],E)}v(t,s,r)}},ondestroy:n});return e&&"spline"!==e&&(z.easing=e),z}}}var y=function(t,e,n,i){this._tracks={},this._target=t,this._loop=e||!1,this._getter=n||s,this._setter=i||A,this._clipCount=0,this._delay=0,this._doneList=[],this._onframeList=[],this._clipList=[]};y.prototype={when:function(t,e){var n=this._tracks;for(var i in e)if(e.hasOwnProperty(i)){if(!n[i]){n[i]=[];var r=this._getter(this._target,i);if(null==r)continue;0!==t&&n[i].push({time:0,value:g(r)})}n[i].push({time:t,value:e[i]})}return this},during:function(t){return this._onframeList.push(t),this},pause:function(){for(var t=0;t<this._clipList.length;t++)this._clipList[t].pause();this._paused=!0},resume:function(){for(var t=0;t<this._clipList.length;t++)this._clipList[t].resume();this._paused=!1},isPaused:function(){return!!this._paused},_doneCallback:function(){this._tracks={},this._clipList.length=0;for(var t=this._doneList,e=t.length,n=0;n<e;n++)t[n].call(this)},start:function(t,e){var n,i=this,r=0,o=function(){--r||i._doneCallback()};for(var a in this._tracks)if(this._tracks.hasOwnProperty(a)){var s=v(this,t,o,this._tracks[a],a,e);s&&(this._clipList.push(s),r++,this.animation&&this.animation.addClip(s),n=s)}if(n){var A=n.onframe;n.onframe=function(t,e){A(t,e);for(var n=0;n<i._onframeList.length;n++)i._onframeList[n](t,e)}}return r||this._doneCallback(),this},stop:function(t){for(var e=this._clipList,n=this.animation,i=0;i<e.length;i++){var r=e[i];t&&r.onframe(this._target,1),n&&n.removeClip(r)}e.length=0},delay:function(t){return this._delay=t,this},done:function(t){return t&&this._doneList.push(t),this},getClips:function(){return this._clipList}};var w=y;t.exports=w},F7VL:function(t,e,n){var i=n("vuYU"),r=n("dyFL"),o=n("A5tq"),a=o.isArray,s="itemStyle",A={seriesType:"treemap",reset:function(t,e,n,a){var A=t.getData().tree.root;A.isRemoved()||function t(e,n,a,A){var c=e.getModel();var h=e.getLayout();if(!h||h.invisible||!h.isInView)return;var d=e.getModel(s);var f=function(t,e,n){var i=o.extend({},e),r=n.designatedVisualItemStyle;return o.each(["color","colorAlpha","colorSaturation"],function(n){r[n]=e[n];var o=t.get(n);r[n]=null,null!=o&&(i[n]=o)}),i}(d,n,A);var p=d.get("borderColor");var g=d.get("borderColorSaturation");var m;null!=g&&(m=l(f),p=function(t,e){return null!=e?r.modifyHSL(e,null,null,t):null}(g,m));e.setVisual("borderColor",p);var v=e.viewChildren;if(v&&v.length){var y=function(t,e,n,r,o,a){if(!a||!a.length)return;var s=u(e,"color")||null!=o.color&&"none"!==o.color&&(u(e,"colorAlpha")||u(e,"colorSaturation"));if(!s)return;var A=e.get("visualMin"),l=e.get("visualMax"),c=n.dataExtent.slice();null!=A&&A<c[0]&&(c[0]=A),null!=l&&l>c[1]&&(c[1]=l);var h=e.get("colorMappingBy"),d={type:s.name,dataExtent:c,visual:s.range};"color"!==d.type||"index"!==h&&"id"!==h?d.mappingMethod="linear":(d.mappingMethod="category",d.loop=!0);var f=new i(d);return f.__drColorMappingBy=h,f}(0,c,h,0,f,v);o.each(v,function(e,n){if(e.depth>=a.length||e===a[e.depth]){var i=function(t,e,n,i,r,a){var s=o.extend({},e);if(r){var A=r.type,l="color"===A&&r.__drColorMappingBy,c="index"===l?i:"id"===l?a.mapIdToIndex(n.getId()):n.getValue(t.get("visualDimension"));s[A]=r.mapValueToVisual(c)}return s}(c,f,e,n,y,A);t(e,i,a,A)}})}else m=l(f),e.setVisual("color",m)}(A,{},t.getViewRoot().getAncestors(),t)}};function l(t){var e=c(t,"color");if(e){var n=c(t,"colorAlpha"),i=c(t,"colorSaturation");return i&&(e=r.modifyHSL(e,null,null,i)),n&&(e=r.modifyAlpha(e,n)),e}}function c(t,e){var n=t[e];if(null!=n&&"none"!==n)return n}function u(t,e){var n=t.get(e);return a(n)&&n.length?{name:e,range:n}:null}t.exports=A},F8um:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("sutA"),a=n("v4Lg"),s=n("mv0I"),A=n("DWNL"),l=n("w9uD"),c=n("bDs9"),u=n("qzhX"),h=n("rhmo"),d=n("K3bJ"),f=n("v9Fq"),p=n("eII0"),g=n("x5W7"),m=n("65+t").getTooltipRenderMode,v=r.bind,y=r.each,w=l.parsePercent,x=new c.Rect({shape:{x:-1,y:-1,width:2,height:2}}),B=i.extendComponentView({type:"tooltip",init:function(t,e){if(!o.node){var n,i=t.getComponent("tooltip"),r=i.get("renderMode");this._renderMode=m(r),"html"===this._renderMode?(n=new a(e.getDom(),e,{appendToBody:i.get("appendToBody",!0)}),this._newLine="<br/>"):(n=new s(e),this._newLine="\n"),this._tooltipContent=n}},render:function(t,e,n){if(!o.node){this.group.removeAll(),this._tooltipModel=t,this._ecModel=e,this._api=n,this._lastDataByCoordSys=null,this._alwaysShowContent=t.get("alwaysShowContent");var i=this._tooltipContent;i.update(t),i.setEnterable(t.get("enterable")),this._initGlobalListener(),this._keepShow()}},_initGlobalListener:function(){var t=this._tooltipModel.get("triggerOn");f.register("itemTooltip",this._api,v(function(e,n,i){"none"!==t&&(t.indexOf(e)>=0?this._tryShow(n,i):"leave"===e&&this._hide(i))},this))},_keepShow:function(){var t=this._tooltipModel,e=this._ecModel,n=this._api;if(null!=this._lastX&&null!=this._lastY&&"none"!==t.get("triggerOn")){var i=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!n.isDisposed()&&i.manuallyShowTip(t,e,n,{x:i._lastX,y:i._lastY})})}},manuallyShowTip:function(t,e,n,i){if(i.from!==this.uid&&!o.node){var r=C(i,n);this._ticket="";var a=i.dataByCoordSys;if(i.tooltip&&null!=i.x&&null!=i.y){var s=x;s.position=[i.x,i.y],s.update(),s.tooltip=i.tooltip,this._tryShow({offsetX:i.x,offsetY:i.y,target:s},r)}else if(a)this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,dataByCoordSys:i.dataByCoordSys,tooltipOption:i.tooltipOption},r);else if(null!=i.seriesIndex){if(this._manuallyAxisShowTip(t,e,n,i))return;var A=u(i,e),l=A.point[0],c=A.point[1];null!=l&&null!=c&&this._tryShow({offsetX:l,offsetY:c,position:i.position,target:A.el},r)}else null!=i.x&&null!=i.y&&(n.dispatchAction({type:"updateAxisPointer",x:i.x,y:i.y}),this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,target:n.getZr().findHover(i.x,i.y).target},r))}},manuallyHideTip:function(t,e,n,i){var r=this._tooltipContent;!this._alwaysShowContent&&this._tooltipModel&&r.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=null,i.from!==this.uid&&this._hide(C(i,n))},_manuallyAxisShowTip:function(t,e,n,i){var r=i.seriesIndex,o=i.dataIndex,a=e.getComponent("axisPointer").coordSysAxesInfo;if(null!=r&&null!=o&&null!=a){var s=e.getSeriesByIndex(r);if(s)if("axis"===(t=b([s.getData().getItemModel(o),s,(s.coordinateSystem||{}).model,t])).get("trigger"))return n.dispatchAction({type:"updateAxisPointer",seriesIndex:r,dataIndex:o,position:i.position}),!0}},_tryShow:function(t,e){var n=t.target;if(this._tooltipModel){this._lastX=t.offsetX,this._lastY=t.offsetY;var i=t.dataByCoordSys;i&&i.length?this._showAxisTooltip(i,t):n&&null!=n.dataIndex?(this._lastDataByCoordSys=null,this._showSeriesItemTooltip(t,n,e)):n&&n.tooltip?(this._lastDataByCoordSys=null,this._showComponentItemTooltip(t,n,e)):(this._lastDataByCoordSys=null,this._hide(e))}},_showOrMove:function(t,e){var n=t.get("showDelay");e=r.bind(e,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(e,n):e()},_showAxisTooltip:function(t,e){var n=this._ecModel,i=this._tooltipModel,o=[e.offsetX,e.offsetY],a=[],s=[],l=b([e.tooltipOption,i]),c=this._renderMode,u=this._newLine,h={};y(t,function(t){y(t.dataByAxis,function(t){var e=n.getComponent(t.axisDim+"Axis",t.axisIndex),i=t.value,o=[];if(e&&null!=i){var l=g.getValueLabel(i,e.axis,n,t.seriesDataIndices,t.valueLabelOpt);r.each(t.seriesDataIndices,function(a){var A=n.getSeriesByIndex(a.seriesIndex),u=a.dataIndexInside,d=A&&A.getDataParams(u);if(d.axisDim=t.axisDim,d.axisIndex=t.axisIndex,d.axisType=t.axisType,d.axisId=t.axisId,d.axisValue=p.getAxisRawValue(e.axis,i),d.axisValueLabel=l,d){s.push(d);var f,g=A.formatTooltip(u,!0,null,c);if(r.isObject(g)){f=g.html;var m=g.markers;r.merge(h,m)}else f=g;o.push(f)}});var d=l;"html"!==c?a.push(o.join(u)):a.push((d?A.encodeHTML(d)+u:"")+o.join(u))}})},this),a.reverse(),a=a.join(this._newLine+this._newLine);var d=e.position;this._showOrMove(l,function(){this._updateContentNotChangedOnAxis(t)?this._updatePosition(l,d,o[0],o[1],this._tooltipContent,s):this._showTooltipContent(l,a,s,Math.random(),o[0],o[1],d,void 0,h)})},_showSeriesItemTooltip:function(t,e,n){var i=this._ecModel,o=e.seriesIndex,a=i.getSeriesByIndex(o),s=e.dataModel||a,A=e.dataIndex,l=e.dataType,c=s.getData(l),u=b([c.getItemModel(A),s,a&&(a.coordinateSystem||{}).model,this._tooltipModel]),h=u.get("trigger");if(null==h||"item"===h){var d,f,p=s.getDataParams(A,l),g=s.formatTooltip(A,!1,l,this._renderMode);r.isObject(g)?(d=g.html,f=g.markers):(d=g,f=null);var m="item_"+s.name+"_"+A;this._showOrMove(u,function(){this._showTooltipContent(u,d,p,m,t.offsetX,t.offsetY,t.position,t.target,f)}),n({type:"showTip",dataIndexInside:A,dataIndex:c.getRawIndex(A),seriesIndex:o,from:this.uid})}},_showComponentItemTooltip:function(t,e,n){var i=e.tooltip;if("string"==typeof i){i={content:i,formatter:i}}var r=new d(i,this._tooltipModel,this._ecModel),o=r.get("content"),a=Math.random();this._showOrMove(r,function(){this._showTooltipContent(r,o,r.get("formatterParams")||{},a,t.offsetX,t.offsetY,t.position,e)}),n({type:"showTip",from:this.uid})},_showTooltipContent:function(t,e,n,i,r,o,a,s,l){if(this._ticket="",t.get("showContent")&&t.get("show")){var c=this._tooltipContent,u=t.get("formatter");a=a||t.get("position");var h=e;if(u&&"string"==typeof u)h=A.formatTpl(u,n,!0);else if("function"==typeof u){var d=v(function(e,i){e===this._ticket&&(c.setContent(i,l,t),this._updatePosition(t,a,r,o,c,n,s))},this);this._ticket=i,h=u(n,i,d)}c.setContent(h,l,t),c.show(t),this._updatePosition(t,a,r,o,c,n,s)}},_updatePosition:function(t,e,n,i,o,a,s){var A=this._api.getWidth(),l=this._api.getHeight();e=e||t.get("position");var c=o.getSize(),u=t.get("align"),d=t.get("verticalAlign"),f=s&&s.getBoundingRect().clone();if(s&&f.applyTransform(s.transform),"function"==typeof e&&(e=e([n,i],a,o.el,f,{viewSize:[A,l],contentSize:c.slice()})),r.isArray(e))n=w(e[0],A),i=w(e[1],l);else if(r.isObject(e)){e.width=c[0],e.height=c[1];var p=h.getLayoutRect(e,{width:A,height:l});n=p.x,i=p.y,u=null,d=null}else if("string"==typeof e&&s){var g=function(t,e,n){var i=n[0],r=n[1],o=0,a=0,s=e.width,A=e.height;switch(t){case"inside":o=e.x+s/2-i/2,a=e.y+A/2-r/2;break;case"top":o=e.x+s/2-i/2,a=e.y-r-5;break;case"bottom":o=e.x+s/2-i/2,a=e.y+A+5;break;case"left":o=e.x-i-5,a=e.y+A/2-r/2;break;case"right":o=e.x+s+5,a=e.y+A/2-r/2}return[o,a]}(e,f,c);n=g[0],i=g[1]}else{g=function(t,e,n,i,r,o,a){var s=n.getOuterSize(),A=s.width,l=s.height;null!=o&&(t+A+o>i?t-=A+o:t+=o);null!=a&&(e+l+a>r?e-=l+a:e+=a);return[t,e]}(n,i,o,A,l,u?null:20,d?null:20);n=g[0],i=g[1]}if(u&&(n-=_(u)?c[0]/2:"right"===u?c[0]:0),d&&(i-=_(d)?c[1]/2:"bottom"===d?c[1]:0),t.get("confine")){g=function(t,e,n,i,r){var o=n.getOuterSize(),a=o.width,s=o.height;return t=Math.min(t+a,i)-a,e=Math.min(e+s,r)-s,t=Math.max(t,0),e=Math.max(e,0),[t,e]}(n,i,o,A,l);n=g[0],i=g[1]}o.moveTo(n,i)},_updateContentNotChangedOnAxis:function(t){var e=this._lastDataByCoordSys,n=!!e&&e.length===t.length;return n&&y(e,function(e,i){var r=e.dataByAxis||{},o=(t[i]||{}).dataByAxis||[];(n&=r.length===o.length)&&y(r,function(t,e){var i=o[e]||{},r=t.seriesDataIndices||[],a=i.seriesDataIndices||[];(n&=t.value===i.value&&t.axisType===i.axisType&&t.axisId===i.axisId&&r.length===a.length)&&y(r,function(t,e){var i=a[e];n&=t.seriesIndex===i.seriesIndex&&t.dataIndex===i.dataIndex})})}),this._lastDataByCoordSys=t,!!n},_hide:function(t){this._lastDataByCoordSys=null,t({type:"hideTip",from:this.uid})},dispose:function(t,e){o.node||(this._tooltipContent.dispose(),f.unregister("itemTooltip",e))}});function b(t){for(var e=t.pop();t.length;){var n=t.pop();n&&(d.isInstance(n)&&(n=n.get("tooltip",!0)),"string"==typeof n&&(n={formatter:n}),e=new d(n,e,e.ecModel))}return e}function C(t,e){return t.dispatchAction||r.bind(e.dispatchAction,e)}function _(t){return"center"===t||"middle"===t}t.exports=B},F9js:function(t,e,n){var i=n("A5tq"),r=i.each,o=i.createHashMap,a=(i.assert,n("roIn").__DEV__,o(["tooltip","label","itemName","itemId","seriesName"]));function s(t,e){return t.hasOwnProperty(e)||(t[e]=[]),t[e]}e.OTHER_DIMENSIONS=a,e.summarizeDimensions=function(t){var e={},n=e.encode={},i=o(),A=[],l=[],c=e.userOutput={dimensionNames:t.dimensions.slice(),encode:{}};r(t.dimensions,function(e){var r,o=t.getDimensionInfo(e),u=o.coordDim;if(u){var h=o.coordDimIndex;s(n,u)[h]=e,o.isExtraCoord||(i.set(u,1),"ordinal"!==(r=o.type)&&"time"!==r&&(A[0]=e),s(c.encode,u)[h]=o.index),o.defaultTooltip&&l.push(e)}a.each(function(t,e){var i=s(n,e),r=o.otherDims[e];null!=r&&!1!==r&&(i[r]=o.name)})});var u=[],h={};i.each(function(t,e){var i=n[e];h[e]=i[0],u=u.concat(i)}),e.dataDimsOnCoord=u,e.encodeFirstDimNotExtra=h;var d=n.label;d&&d.length&&(A=d.slice());var f=n.tooltip;return f&&f.length?l=f.slice():l.length||(l=A.slice()),n.defaultedLabel=A,n.defaultedTooltip=l,e},e.getDimensionTypeByAxis=function(t){return"category"===t?"ordinal":"time"===t?"time":"float"}},FDjS:function(t,e,n){var i=n("loyO");n("6EM+"),n("yNbl"),n("5KYe");var r=n("HVRW"),o=n("hasg");i.registerVisual(r("tree","circle")),i.registerLayout(o)},FIcu:function(t,e,n){var i=n("A5tq"),r=n("w9uD"),o=n("fxHw").isDimensionStacked,a=i.indexOf;function s(t,e,n,i,a,s){var A=[],l=o(e,i)?e.getCalculationInfo("stackResultDimension"):i,c=u(e,l,t),h=e.indicesOfNearest(l,c)[0];A[a]=e.get(n,h),A[s]=e.get(l,h);var d=e.get(i,h),f=r.getPrecision(e.get(i,h));return(f=Math.min(f,20))>=0&&(A[s]=+A[s].toFixed(f)),[A,d]}var A=i.curry,l={min:A(s,"min"),max:A(s,"max"),average:A(s,"average")};function c(t,e,n,i){var r={};return null!=t.valueIndex||null!=t.valueDim?(r.valueDataDim=null!=t.valueIndex?e.getDimension(t.valueIndex):t.valueDim,r.valueAxis=n.getAxis(function(t,e){var n=t.getData(),i=n.dimensions;e=n.getDimension(e);for(var r=0;r<i.length;r++){var o=n.getDimensionInfo(i[r]);if(o.name===e)return o.coordDim}}(i,r.valueDataDim)),r.baseAxis=n.getOtherAxis(r.valueAxis),r.baseDataDim=e.mapDimension(r.baseAxis.dim)):(r.baseAxis=i.getBaseAxis(),r.valueAxis=n.getOtherAxis(r.baseAxis),r.baseDataDim=e.mapDimension(r.baseAxis.dim),r.valueDataDim=e.mapDimension(r.valueAxis.dim)),r}function u(t,e,n){if("average"===n){var i=0,r=0;return t.each(e,function(t,e){isNaN(t)||(i+=t,r++)}),i/r}return"median"===n?t.getMedian(e):t.getDataExtent(e,!0)["max"===n?1:0]}e.dataTransform=function(t,e){var n=t.getData(),r=t.coordinateSystem;if(e&&!function(t){return!isNaN(parseFloat(t.x))&&!isNaN(parseFloat(t.y))}(e)&&!i.isArray(e.coord)&&r){var o=r.dimensions,s=c(e,n,r,t);if((e=i.clone(e)).type&&l[e.type]&&s.baseAxis&&s.valueAxis){var A=a(o,s.baseAxis.dim),h=a(o,s.valueAxis.dim),d=l[e.type](n,s.baseDataDim,s.valueDataDim,A,h);e.coord=d[0],e.value=d[1]}else{for(var f=[null!=e.xAxis?e.xAxis:e.radiusAxis,null!=e.yAxis?e.yAxis:e.angleAxis],p=0;p<2;p++)l[f[p]]&&(f[p]=u(n,n.mapDimension(o[p]),f[p]));e.coord=f}}return e},e.getAxisInfo=c,e.dataFilter=function(t,e){return!(t&&t.containData&&e.coord&&!function(t){return!(isNaN(parseFloat(t.x))&&isNaN(parseFloat(t.y)))}(e))||t.containData(e.coord)},e.dimValueGetter=function(t,e,n,i){return i<2?t.coord&&t.coord[i]:t.value},e.numCalculate=u},FPqs:function(t,e,n){var i=n("R33K").quadraticProjectPoint;e.containStroke=function(t,e,n,r,o,a,s,A,l){if(0===s)return!1;var c=s;return!(l>e+c&&l>r+c&&l>a+c||l<e-c&&l<r-c&&l<a-c||A>t+c&&A>n+c&&A>o+c||A<t-c&&A<n-c&&A<o-c)&&i(t,e,n,r,o,a,A,l,null)<=c/2}},FYbR:function(t,e,n){var i=n("A5tq"),r=n("9nPt"),o=n("VQWz").seriesModelMixin,a=r.extend({type:"series.candlestick",dependencies:["xAxis","yAxis","grid"],defaultValueDimensions:[{name:"open",defaultTooltip:!0},{name:"close",defaultTooltip:!0},{name:"lowest",defaultTooltip:!0},{name:"highest",defaultTooltip:!0}],dimensions:null,defaultOption:{zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,hoverAnimation:!0,layout:null,clip:!0,itemStyle:{color:"#c23531",color0:"#314656",borderWidth:1,borderColor:"#c23531",borderColor0:"#314656"},emphasis:{itemStyle:{borderWidth:2}},barMaxWidth:null,barMinWidth:null,barWidth:null,large:!0,largeThreshold:600,progressive:3e3,progressiveThreshold:1e4,progressiveChunkMode:"mod",animationUpdate:!1,animationEasing:"linear",animationDuration:300},getShadowDim:function(){return"open"},brushSelector:function(t,e,n){var i=e.getItemLayout(t);return i&&n.rect(i.brushRect)}});i.mixin(a,o,!0);var s=a;t.exports=s},FcNr:function(t,e,n){var i=n("A5tq"),r=n("Gkcz"),o=n("YyE5"),a=n("r8bK"),s=r.extend({type:"singleAxis",layoutMode:"box",axis:null,coordinateSystem:null,getCoordSysModel:function(){return this}});i.merge(s.prototype,a),o("single",s,function(t,e){return e.type||(e.data?"category":"value")},{left:"5%",top:"5%",right:"5%",bottom:"5%",type:"value",position:"bottom",orient:"horizontal",axisLine:{show:!0,lineStyle:{width:1,type:"solid"}},tooltip:{show:!0},axisTick:{show:!0,length:6,lineStyle:{width:1}},axisLabel:{show:!0,interval:"auto"},splitLine:{show:!0,lineStyle:{type:"dashed",opacity:.2}}});var A=s;t.exports=A},Fd4b:function(t,e,n){var i=n("A5tq"),r=n("m9W5");function o(t,e,n){r.call(this,t,e,n),this.type="value",this.angle=0,this.name="",this.model}i.inherits(o,r);var a=o;t.exports=a},FiFn:function(t,e,n){var i=n("65+t").makeInner;t.exports=function(){var t=i();return function(e){var n=t(e),i=e.pipelineContext,r=n.large,o=n.progressiveRender,a=n.large=i&&i.large,s=n.progressiveRender=i&&i.progressiveRender;return!!(r^a||o^s)&&"reset"}}},Fl1y:function(t,e,n){var i=n("loyO");n("ilaN"),n("f41x"),n("YU4x");var r=n("uukb"),o=n("Jjp9");i.registerLayout(r),i.registerVisual(o)},Fo4X:function(t,e,n){var i=n("A5tq"),r=n("TfMJ").Dispatcher,o=n("ia2t"),a=n("Ezjg"),s=function(t){t=t||{},this.stage=t.stage||{},this.onframe=t.onframe||function(){},this._clips=[],this._running=!1,this._time,this._pausedTime,this._pauseStart,this._paused=!1,r.call(this)};s.prototype={constructor:s,addClip:function(t){this._clips.push(t)},addAnimator:function(t){t.animation=this;for(var e=t.getClips(),n=0;n<e.length;n++)this.addClip(e[n])},removeClip:function(t){var e=i.indexOf(this._clips,t);e>=0&&this._clips.splice(e,1)},removeAnimator:function(t){for(var e=t.getClips(),n=0;n<e.length;n++)this.removeClip(e[n]);t.animation=null},_update:function(){for(var t=(new Date).getTime()-this._pausedTime,e=t-this._time,n=this._clips,i=n.length,r=[],o=[],a=0;a<i;a++){var s=n[a],A=s.step(t,e);A&&(r.push(A),o.push(s))}for(a=0;a<i;)n[a]._needsRemove?(n[a]=n[i-1],n.pop(),i--):a++;i=r.length;for(a=0;a<i;a++)o[a].fire(r[a]);this._time=t,this.onframe(e),this.trigger("frame",e),this.stage.update&&this.stage.update()},_startLoop:function(){var t=this;this._running=!0,o(function e(){t._running&&(o(e),!t._paused&&t._update())})},start:function(){this._time=(new Date).getTime(),this._pausedTime=0,this._startLoop()},stop:function(){this._running=!1},pause:function(){this._paused||(this._pauseStart=(new Date).getTime(),this._paused=!0)},resume:function(){this._paused&&(this._pausedTime+=(new Date).getTime()-this._pauseStart,this._paused=!1)},clear:function(){this._clips=[]},isFinished:function(){return!this._clips.length},animate:function(t,e){var n=new a(t,(e=e||{}).loop,e.getter,e.setter);return this.addAnimator(n),n}},i.mixin(s,r);var A=s;t.exports=A},Fy03:function(t,e,n){var i=n("A5tq"),r=n("65+t"),o=i.each,a=i.isObject,s=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function A(t){var e=t&&t.itemStyle;if(e)for(var n=0,r=s.length;n<r;n++){var o=s[n],a=e.normal,A=e.emphasis;a&&a[o]&&(t[o]=t[o]||{},t[o].normal?i.merge(t[o].normal,a[o]):t[o].normal=a[o],a[o]=null),A&&A[o]&&(t[o]=t[o]||{},t[o].emphasis?i.merge(t[o].emphasis,A[o]):t[o].emphasis=A[o],A[o]=null)}}function l(t,e,n){if(t&&t[e]&&(t[e].normal||t[e].emphasis)){var r=t[e].normal,o=t[e].emphasis;r&&(n?(t[e].normal=t[e].emphasis=null,i.defaults(t[e],r)):t[e]=r),o&&(t.emphasis=t.emphasis||{},t.emphasis[e]=o)}}function c(t){l(t,"itemStyle"),l(t,"lineStyle"),l(t,"areaStyle"),l(t,"label"),l(t,"labelLine"),l(t,"upperLabel"),l(t,"edgeLabel")}function u(t,e){var n=a(t)&&t[e],i=a(n)&&n.textStyle;if(i)for(var o=0,s=r.TEXT_STYLE_OPTIONS.length;o<s;o++){e=r.TEXT_STYLE_OPTIONS[o];i.hasOwnProperty(e)&&(n[e]=i[e])}}function h(t){t&&(c(t),u(t,"label"),t.emphasis&&u(t.emphasis,"label"))}function d(t){return i.isArray(t)?t:t?[t]:[]}function f(t){return(i.isArray(t)?t[0]:t)||{}}t.exports=function(t,e){o(d(t.series),function(t){a(t)&&function(t){if(a(t)){A(t),c(t),u(t,"label"),u(t,"upperLabel"),u(t,"edgeLabel"),t.emphasis&&(u(t.emphasis,"label"),u(t.emphasis,"upperLabel"),u(t.emphasis,"edgeLabel")),(n=t.markPoint)&&(A(n),h(n)),(r=t.markLine)&&(A(r),h(r));var e=t.markArea;e&&h(e);var n,r,o=t.data;if("graph"===t.type){o=o||t.nodes;var s=t.links||t.edges;if(s&&!i.isTypedArray(s))for(var d=0;d<s.length;d++)h(s[d]);i.each(t.categories,function(t){c(t)})}if(o&&!i.isTypedArray(o))for(d=0;d<o.length;d++)h(o[d]);if((n=t.markPoint)&&n.data){var f=n.data;for(d=0;d<f.length;d++)h(f[d])}if((r=t.markLine)&&r.data){var p=r.data;for(d=0;d<p.length;d++)i.isArray(p[d])?(h(p[d][0]),h(p[d][1])):h(p[d])}"gauge"===t.type?(u(t,"axisLabel"),u(t,"title"),u(t,"detail")):"treemap"===t.type?(l(t.breadcrumb,"itemStyle"),i.each(t.levels,function(t){c(t)})):"tree"===t.type&&c(t.leaves)}}(t)});var n=["xAxis","yAxis","radiusAxis","angleAxis","singleAxis","parallelAxis","radar"];e&&n.push("valueAxis","categoryAxis","logAxis","timeAxis"),o(n,function(e){o(d(t[e]),function(t){t&&(u(t,"axisLabel"),u(t.axisPointer,"label"))})}),o(d(t.parallel),function(t){var e=t&&t.parallelAxisDefault;u(e,"axisLabel"),u(e&&e.axisPointer,"label")}),o(d(t.calendar),function(t){l(t,"itemStyle"),u(t,"dayLabel"),u(t,"monthLabel"),u(t,"yearLabel")}),o(d(t.radar),function(t){u(t,"name")}),o(d(t.geo),function(t){a(t)&&(h(t),o(d(t.regions),function(t){h(t)}))}),o(d(t.timeline),function(t){h(t),l(t,"label"),l(t,"itemStyle"),l(t,"controlStyle",!0);var e=t.data;i.isArray(e)&&i.each(e,function(t){i.isObject(t)&&(l(t,"label"),l(t,"itemStyle"))})}),o(d(t.toolbox),function(t){l(t,"iconStyle"),o(t.feature,function(t){l(t,"iconStyle")})}),u(f(t.axisPointer),"label"),u(f(t.tooltip).axisPointer,"label")}},GFYc:function(t,e,n){var i=n("Gkcz"),r=n("xfK8"),o=n("PVav").detectSourceFormat,a=n("m1ec").SERIES_LAYOUT_BY_COLUMN;i.extend({type:"dataset",defaultOption:{seriesLayoutBy:a,sourceHeader:null,dimensions:null,source:null},optionUpdated:function(){o(this)}}),r.extend({type:"dataset"})},GIjb:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("bDs9"),o=n("BQvh").getDefaultLabel,a=n("kCsp"),s=n("H164").getLayoutOnAxis,A=n("+Pa4"),l=n("9nPt"),c=n("K3bJ"),u=n("zrBH"),h=n("+2Hi").createClipPath,d=n("NKtA"),f=n("185P"),p=n("mLLQ"),g=n("zIIG"),m=n("3aAK"),v=r.CACHED_LABEL_STYLE_PROPERTIES,y=["itemStyle"],w=["emphasis","itemStyle"],x=["label"],B=["emphasis","label"],b="e\0\0",C={cartesian2d:d,geo:f,singleAxis:p,polar:g,calendar:m};function _(t,e,n,i,r){null==n[t]||r||(e[t]=n[t],n[t]=i[t])}function S(t,e,n,a){var A=t.get("renderItem"),l=t.coordinateSystem,c={};l&&(c=l.prepareCustoms?l.prepareCustoms():C[l.type](l));var u,h,d,f,p,g=i.defaults({getWidth:a.getWidth,getHeight:a.getHeight,getZr:a.getZr,getDevicePixelRatio:a.getDevicePixelRatio,value:function(t,n){return null==n&&(n=u),e.get(e.getDimension(t||0),n)},style:function(n,a){null==a&&(a=u),b(a);var s=h.getModel(y).getItemStyle();null!=p&&(s.fill=p);var A=e.getItemVisual(a,"opacity");null!=A&&(s.opacity=A);var l=n?F(n,d):d;return r.setTextStyle(s,l,null,{autoColor:p,isRectText:!0}),s.text=l.getShallow("show")?i.retrieve2(t.getFormattedLabel(a,"normal"),o(e,a)):null,n&&k(s,n),s},styleEmphasis:function(n,a){null==a&&(a=u),b(a);var s=h.getModel(w).getItemStyle(),A=n?F(n,f):f;return r.setTextStyle(s,A,null,{isRectText:!0},!0),s.text=A.getShallow("show")?i.retrieve3(t.getFormattedLabel(a,"emphasis"),t.getFormattedLabel(a,"normal"),o(e,a)):null,n&&k(s,n),s},visual:function(t,n){return null==n&&(n=u),e.getItemVisual(n,t)},barLayout:function(t){if(l.getBaseAxis){var e=l.getBaseAxis();return s(i.defaults({axis:e},t),a)}},currentSeriesIndices:function(){return n.getCurrentSeriesIndices()},font:function(t){return r.getFont(t,n)}},c.api||{}),m={context:{},seriesId:t.id,seriesName:t.name,seriesIndex:t.seriesIndex,coordSys:c.coordSys,dataInsideLength:e.count(),encode:function(t){var e={};return i.each(t.dimensions,function(n,i){var r=t.getDimensionInfo(n);if(!r.isExtraCoord){var o=r.coordDim;(e[o]=e[o]||[])[r.coordDimIndex]=i}}),e}(t.getData())},v=!0;return function(t,n){return u=t,v=!0,A&&A(i.defaults({dataIndexInside:t,dataIndex:e.getRawIndex(t),actionType:n?n.type:null},m),g)};function b(t){null==t&&(t=u),v&&(h=e.getItemModel(t),d=h.getModel(x),f=h.getModel(B),p=e.getItemVisual(t,"color"),v=!1)}}function I(t,e,n,i,r,o){return(t=T(t,e,n,i,r,o,!0))&&o.setItemGraphicEl(e,t),t}function T(t,e,n,o,a,s,l){var c,u=!n,h=(n=n||{}).type,d=n.shape,f=n.style;if(t&&(u||null!=h&&h!==t.__customGraphicType||"path"===h&&((c=d)&&(c.hasOwnProperty("pathData")||c.hasOwnProperty("d")))&&U(d)!==t.__customPathData||"image"===h&&E(f,"image")&&f.image!==t.__customImagePath||"text"===h&&E(d,"text")&&f.text!==t.__customText)&&(a.remove(t),t=null),!u){var p=!t;return!t&&(t=function(t){var e,n=t.type;if("path"===n){var i=t.shape,o=null!=i.width&&null!=i.height?{x:i.x||0,y:i.y||0,width:i.width,height:i.height}:null,a=U(i);(e=r.makePath(a,null,o,i.layout||"center")).__customPathData=a}else if("image"===n)(e=new r.Image({})).__customImagePath=t.style.image;else if("text"===n)(e=new r.Text({})).__customText=t.style.text;else if("group"===n)e=new r.Group;else{if("compoundPath"===n)throw new Error('"compoundPath" is not supported yet.');e=new(r.getShapeClass(n))}return e.__customGraphicType=n,e.name=t.name,e}(n)),function(t,e,n,o,a,s,A){var l={},c=n.style||{};if(n.shape&&(l.shape=i.clone(n.shape)),n.position&&(l.position=n.position.slice()),n.scale&&(l.scale=n.scale.slice()),n.origin&&(l.origin=n.origin.slice()),n.rotation&&(l.rotation=n.rotation),"image"===t.type&&n.style){var u=l.style={};i.each(["x","y","width","height"],function(e){_(e,u,c,t.style,s)})}"text"===t.type&&n.style&&(u=l.style={},i.each(["x","y"],function(e){_(e,u,c,t.style,s)}),!c.hasOwnProperty("textFill")&&c.fill&&(c.textFill=c.fill),!c.hasOwnProperty("textStroke")&&c.stroke&&(c.textStroke=c.stroke));if("group"!==t.type&&(t.useStyle(c),s)){t.style.opacity=0;var h=c.opacity;null==h&&(h=1),r.initProps(t,{style:{opacity:h}},o,e)}s?t.attr(l):r.updateProps(t,l,o,e),n.hasOwnProperty("z2")&&t.attr("z2",n.z2||0),n.hasOwnProperty("silent")&&t.attr("silent",n.silent),n.hasOwnProperty("invisible")&&t.attr("invisible",n.invisible),n.hasOwnProperty("ignore")&&t.attr("ignore",n.ignore),n.hasOwnProperty("info")&&t.attr("info",n.info);var d=n.styleEmphasis;r.setElementHoverStyle(t,d),A&&r.setAsHighDownDispatcher(t,!1!==d)}(t,e,n,o,0,p,l),"group"===h&&function(t,e,n,i,r){var o=n.children,a=o?o.length:0,s=n.$mergeChildren,l="byName"===s||n.diffChildrenByName,c=!1===s;if(!a&&!l&&!c)return;if(l)return u={oldChildren:t.children()||[],newChildren:o||[],dataIndex:e,animatableModel:i,group:t,data:r},void new A(u.oldChildren,u.newChildren,M,M,u).add(Q).update(Q).remove(D).execute();var u;c&&t.removeAll();for(var h=0;h<a;h++)o[h]&&T(t.childAt(h),e,o[h],i,t,r)}(t,e,n,o,s),a.add(t),t}}function M(t,e){var n=t&&t.name;return null!=n?n:b+e}function Q(t,e){var n=this.context,i=null!=t?n.newChildren[t]:null;T(null!=e?n.oldChildren[e]:null,n.dataIndex,i,n.animatableModel,n.group,n.data)}function F(t,e){var n=new c({},e);return i.each(v,function(e,i){t.hasOwnProperty(e)&&(n.option[i]=t[e])}),n}function k(t,e){for(var n in e)!e.hasOwnProperty(n)&&v.hasOwnProperty(n)||(t[n]=e[n])}function D(t){var e=this.context,n=e.oldChildren[t];n&&e.group.remove(n)}function U(t){return t&&(t.pathData||t.d)}function E(t,e){return t&&t.hasOwnProperty(e)}l.extend({type:"series.custom",dependencies:["grid","polar","geo","singleAxis","calendar"],defaultOption:{coordinateSystem:"cartesian2d",zlevel:0,z:2,legendHoverLink:!0,useTransform:!0,clip:!1},getInitialData:function(t,e){return a(this.getSource(),this)},getDataParams:function(t,e,n){var i=l.prototype.getDataParams.apply(this,arguments);return n&&(i.info=n.info),i}}),u.extend({type:"custom",_data:null,render:function(t,e,n,i){var r=this._data,o=t.getData(),a=this.group,s=S(t,o,e,n);o.diff(r).add(function(e){I(null,e,s(e,i),t,a,o)}).update(function(e,n){I(r.getItemGraphicEl(n),e,s(e,i),t,a,o)}).remove(function(t){var e=r.getItemGraphicEl(t);e&&a.remove(e)}).execute();var A=t.get("clip",!0)?h(t.coordinateSystem,!1,t):null;A?a.setClipPath(A):a.removeClipPath(),this._data=o},incrementalPrepareRender:function(t,e,n){this.group.removeAll(),this._data=null},incrementalRender:function(t,e,n,i,r){var o=e.getData(),a=S(e,o,n,i);function s(t){t.isGroup||(t.incremental=!0,t.useHoverLayer=!0)}for(var A=t.start;A<t.end;A++){I(null,A,a(A,r),e,this.group,o).traverse(s)}},dispose:i.noop,filterForExposedEvent:function(t,e,n,i){var r=e.element;if(null==r||n.name===r)return!0;for(;(n=n.parent)&&n!==this.group;)if(n.name===r)return!0;return!1}})},GhzX:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=(i.isTypedArray,i.extend),o=(i.assert,i.each),a=i.isObject,s=n("65+t"),A=s.getDataItemValue,l=s.isDataItemOption,c=n("w9uD").parseDate,u=n("9i2m"),h=n("m1ec"),d=h.SOURCE_FORMAT_TYPED_ARRAY,f=h.SOURCE_FORMAT_ARRAY_ROWS,p=h.SOURCE_FORMAT_ORIGINAL,g=h.SOURCE_FORMAT_OBJECT_ROWS;function m(t,e){u.isInstance(t)||(t=u.seriesDataToSource(t)),this._source=t;var n=this._data=t.data,i=t.sourceFormat;i===d&&(this._offset=0,this._dimSize=e,this._data=n);var o=y[i===f?i+"_"+t.seriesLayoutBy:i];r(this,o)}var v=m.prototype;v.pure=!1,v.persistent=!0,v.getSource=function(){return this._source};var y={arrayRows_column:{pure:!0,count:function(){return Math.max(0,this._data.length-this._source.startIndex)},getItem:function(t){return this._data[t+this._source.startIndex]},appendData:B},arrayRows_row:{pure:!0,count:function(){var t=this._data[0];return t?Math.max(0,t.length-this._source.startIndex):0},getItem:function(t){t+=this._source.startIndex;for(var e=[],n=this._data,i=0;i<n.length;i++){var r=n[i];e.push(r?r[t]:null)}return e},appendData:function(){throw new Error('Do not support appendData when set seriesLayoutBy: "row".')}},objectRows:{pure:!0,count:w,getItem:x,appendData:B},keyedColumns:{pure:!0,count:function(){var t=this._source.dimensionsDefine[0].name,e=this._data[t];return e?e.length:0},getItem:function(t){for(var e=[],n=this._source.dimensionsDefine,i=0;i<n.length;i++){var r=this._data[n[i].name];e.push(r?r[t]:null)}return e},appendData:function(t){var e=this._data;o(t,function(t,n){for(var i=e[n]||(e[n]=[]),r=0;r<(t||[]).length;r++)i.push(t[r])})}},original:{count:w,getItem:x,appendData:B},typedArray:{persistent:!1,pure:!0,count:function(){return this._data?this._data.length/this._dimSize:0},getItem:function(t,e){t-=this._offset,e=e||[];for(var n=this._dimSize*t,i=0;i<this._dimSize;i++)e[i]=this._data[n+i];return e},appendData:function(t){this._data=t},clean:function(){this._offset+=this.count(),this._data=null}}};function w(){return this._data.length}function x(t){return this._data[t]}function B(t){for(var e=0;e<t.length;e++)this._data.push(t[e])}var b={arrayRows:C,objectRows:function(t,e,n,i){return null!=n?t[i]:t},keyedColumns:C,original:function(t,e,n,i){var r=A(t);return null!=n&&r instanceof Array?r[n]:r},typedArray:C};function C(t,e,n,i){return null!=n?t[n]:t}var _={arrayRows:S,objectRows:function(t,e,n,i){return I(t[e],this._dimensionInfos[e])},keyedColumns:S,original:function(t,e,n,i){var r=t&&(null==t.value?t:t.value);return!this._rawData.pure&&l(t)&&(this.hasItemOption=!0),I(r instanceof Array?r[i]:r,this._dimensionInfos[e])},typedArray:function(t,e,n,i){return t[i]}};function S(t,e,n,i){return I(t[i],this._dimensionInfos[e])}function I(t,e){var n=e&&e.type;if("ordinal"===n){var i=e&&e.ordinalMeta;return i?i.parseAndCollect(t):t}return"time"===n&&"number"!=typeof t&&null!=t&&"-"!==t&&(t=+c(t)),null==t||""===t?NaN:+t}e.DefaultDataProvider=m,e.defaultDimValueGetters=_,e.retrieveRawValue=function(t,e,n){if(t){var i=t.getRawDataItem(e);if(null!=i){var r,o,a=t.getProvider().getSource().sourceFormat,s=t.getDimensionInfo(n);return s&&(r=s.name,o=s.index),b[a](i,e,o,r)}}},e.retrieveRawAttr=function(t,e,n){if(t){var i=t.getProvider().getSource().sourceFormat;if(i===p||i===g){var r=t.getRawDataItem(e);return i!==p||a(r)||(r=null),r?r[n]:void 0}}}},Gkcz:function(t,e,n){var i=n("A5tq"),r=n("K3bJ"),o=n("5NhH"),a=n("Ym+9"),s=a.enableClassManagement,A=a.parseClassType,l=n("65+t").makeInner,c=n("rhmo"),u=n("6o1z"),h=l(),d=r.extend({type:"component",id:"",name:"",mainType:"",subType:"",componentIndex:0,defaultOption:null,ecModel:null,dependentModels:[],uid:null,layoutMode:null,$constructor:function(t,e,n,i){r.call(this,t,e,n,i),this.uid=o.getUID("ec_cpt_model")},init:function(t,e,n,i){this.mergeDefaultAndTheme(t,n)},mergeDefaultAndTheme:function(t,e){var n=this.layoutMode,r=n?c.getLayoutParams(t):{},o=e.getTheme();i.merge(t,o.get(this.mainType)),i.merge(t,this.getDefaultOption()),n&&c.mergeLayoutParam(t,r,n)},mergeOption:function(t,e){i.merge(this.option,t,!0);var n=this.layoutMode;n&&c.mergeLayoutParam(this.option,t,n)},optionUpdated:function(t,e){},getDefaultOption:function(){var t=h(this);if(!t.defaultOption){for(var e=[],n=this.constructor;n;){var r=n.prototype.defaultOption;r&&e.push(r),n=n.superClass}for(var o={},a=e.length-1;a>=0;a--)o=i.merge(o,e[a],!0);t.defaultOption=o}return t.defaultOption},getReferringComponents:function(t){return this.ecModel.queryComponents({mainType:t,index:this.get(t+"Index",!0),id:this.get(t+"Id",!0)})}});s(d,{registerWhenExtend:!0}),o.enableSubTypeDefaulter(d),o.enableTopologicalTravel(d,function(t){var e=[];i.each(d.getClassesByMainType(t),function(t){e=e.concat(t.prototype.dependencies||[])}),e=i.map(e,function(t){return A(t).main}),"dataset"!==t&&i.indexOf(e,"dataset")<=0&&e.unshift("dataset");return e}),i.mixin(d,u);var f=d;t.exports=f},Gvpk:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("NYvz"),a=n("LRen").layoutCovers,s=i.extendComponentView({type:"brush",init:function(t,e){this.ecModel=t,this.api=e,this.model,(this._brushController=new o(e.getZr())).on("brush",r.bind(this._onBrush,this)).mount()},render:function(t){return this.model=t,A.apply(this,arguments)},updateTransform:function(t,e){return a(e),A.apply(this,arguments)},updateView:A,dispose:function(){this._brushController.dispose()},_onBrush:function(t,e){var n=this.model.id;this.model.brushTargetManager.setOutputRanges(t,this.ecModel),(!e.isEnd||e.removeOnClick)&&this.api.dispatchAction({type:"brush",brushId:n,areas:r.clone(t),$from:n}),e.isEnd&&this.api.dispatchAction({type:"brushEnd",brushId:n,areas:r.clone(t),$from:n})}});function A(t,e,n,i){(!i||i.$from!==t.id)&&this._brushController.setPanels(t.brushTargetManager.makePanelOpts(n)).enableBrush(t.brushOption).updateCovers(t.areas.slice())}t.exports=s},"H+Fz":function(t,e,n){var i=n("UnJe"),r=n("lbYD"),o=n("Ldp7"),a=r.min,s=r.max,A=r.scaleAndAdd,l=r.copy,c=[],u=[],h=[];function d(t){return isNaN(t[0])||isNaN(t[1])}function f(t,e,n,i,o,f,p,g,m,v,y){return"none"!==v&&v?function(t,e,n,i,r,o,a,s,A,c,f){for(var p=0,g=n,m=0;m<i;m++){var v=e[g];if(g>=r||g<0)break;if(d(v)){if(f){g+=o;continue}break}if(g===n)t[o>0?"moveTo":"lineTo"](v[0],v[1]);else if(A>0){var y=e[p],w="y"===c?1:0,x=(v[w]-y[w])*A;l(u,y),u[w]=y[w]+x,l(h,v),h[w]=v[w]-x,t.bezierCurveTo(u[0],u[1],h[0],h[1],v[0],v[1])}else t.lineTo(v[0],v[1]);p=g,g+=o}return m}.apply(this,arguments):function(t,e,n,i,o,f,p,g,m,v,y){for(var w=0,x=n,B=0;B<i;B++){var b=e[x];if(x>=o||x<0)break;if(d(b)){if(y){x+=f;continue}break}if(x===n)t[f>0?"moveTo":"lineTo"](b[0],b[1]),l(u,b);else if(m>0){var C=x+f,_=e[C];if(y)for(;_&&d(e[C]);)_=e[C+=f];var S=.5,I=e[w],_=e[C];if(!_||d(_))l(h,b);else{var T,M;if(d(_)&&!y&&(_=b),r.sub(c,_,I),"x"===v||"y"===v){var Q="x"===v?0:1;T=Math.abs(b[Q]-I[Q]),M=Math.abs(b[Q]-_[Q])}else T=r.dist(b,I),M=r.dist(b,_);A(h,b,c,-m*(1-(S=M/(M+T))))}a(u,u,g),s(u,u,p),a(h,h,g),s(h,h,p),t.bezierCurveTo(u[0],u[1],h[0],h[1],b[0],b[1]),A(u,b,c,m*S)}else t.lineTo(b[0],b[1]);w=x,x+=f}return B}.apply(this,arguments)}function p(t,e){var n=[1/0,1/0],i=[-1/0,-1/0];if(e)for(var r=0;r<t.length;r++){var o=t[r];o[0]<n[0]&&(n[0]=o[0]),o[1]<n[1]&&(n[1]=o[1]),o[0]>i[0]&&(i[0]=o[0]),o[1]>i[1]&&(i[1]=o[1])}return{min:e?n:i,max:e?i:n}}var g=i.extend({type:"ec-polyline",shape:{points:[],smooth:0,smoothConstraint:!0,smoothMonotone:null,connectNulls:!1},style:{fill:null,stroke:"#000"},brush:o(i.prototype.brush),buildPath:function(t,e){var n=e.points,i=0,r=n.length,o=p(n,e.smoothConstraint);if(e.connectNulls){for(;r>0&&d(n[r-1]);r--);for(;i<r&&d(n[i]);i++);}for(;i<r;)i+=f(t,n,i,r,r,1,o.min,o.max,e.smooth,e.smoothMonotone,e.connectNulls)+1}}),m=i.extend({type:"ec-polygon",shape:{points:[],stackedOnPoints:[],smooth:0,stackedOnSmooth:0,smoothConstraint:!0,smoothMonotone:null,connectNulls:!1},brush:o(i.prototype.brush),buildPath:function(t,e){var n=e.points,i=e.stackedOnPoints,r=0,o=n.length,a=e.smoothMonotone,s=p(n,e.smoothConstraint),A=p(i,e.smoothConstraint);if(e.connectNulls){for(;o>0&&d(n[o-1]);o--);for(;r<o&&d(n[r]);r++);}for(;r<o;){var l=f(t,n,r,o,o,1,s.min,s.max,e.smooth,a,e.connectNulls);f(t,i,r+l-1,l,o,-1,A.min,A.max,e.stackedOnSmooth,a,e.connectNulls),r+=l+1,t.closePath()}}});e.Polyline=g,e.Polygon=m},H164:function(t,e,n){var i=n("A5tq"),r=n("w9uD").parsePercent,o=n("fxHw").isDimensionStacked,a=n("FiFn"),s="__ec_stack_",A="undefined"!=typeof Float32Array?Float32Array:Array;function l(t){return t.get("stack")||s+t.seriesIndex}function c(t){return t.dim+t.index}function u(t,e){var n=[];return e.eachSeriesByType(t,function(t){g(t)&&!m(t)&&n.push(t)}),n}function h(t){var e=function(t){var e={};i.each(t,function(t){var n=t.coordinateSystem.getBaseAxis();if("time"===n.type||"value"===n.type)for(var i=t.getData(),r=n.dim+"_"+n.index,o=i.mapDimension(n.dim),a=0,s=i.count();a<s;++a){var A=i.get(o,a);e[r]?e[r].push(A):e[r]=[A]}});var n=[];for(var r in e)if(e.hasOwnProperty(r)){var o=e[r];if(o){o.sort(function(t,e){return t-e});for(var a=null,s=1;s<o.length;++s){var A=o[s]-o[s-1];A>0&&(a=null===a?A:Math.min(a,A))}n[r]=a}}return n}(t),n=[];return i.each(t,function(t){var i,o=t.coordinateSystem.getBaseAxis(),a=o.getExtent();if("category"===o.type)i=o.getBandWidth();else if("value"===o.type||"time"===o.type){var s=o.dim+"_"+o.index,A=e[s],u=Math.abs(a[1]-a[0]),h=o.scale.getExtent(),d=Math.abs(h[1]-h[0]);i=A?u/d*A:u}else{var f=t.getData();i=Math.abs(a[1]-a[0])/f.count()}var p=r(t.get("barWidth"),i),g=r(t.get("barMaxWidth"),i),m=r(t.get("barMinWidth")||1,i),v=t.get("barGap"),y=t.get("barCategoryGap");n.push({bandWidth:i,barWidth:p,barMaxWidth:g,barMinWidth:m,barGap:v,barCategoryGap:y,axisKey:c(o),stackId:l(t)})}),d(n)}function d(t){var e={};i.each(t,function(t,n){var i=t.axisKey,r=t.bandWidth,o=e[i]||{bandWidth:r,remainedWidth:r,autoWidthCount:0,categoryGap:"20%",gap:"30%",stacks:{}},a=o.stacks;e[i]=o;var s=t.stackId;a[s]||o.autoWidthCount++,a[s]=a[s]||{width:0,maxWidth:0};var A=t.barWidth;A&&!a[s].width&&(a[s].width=A,A=Math.min(o.remainedWidth,A),o.remainedWidth-=A);var l=t.barMaxWidth;l&&(a[s].maxWidth=l);var c=t.barMinWidth;c&&(a[s].minWidth=c);var u=t.barGap;null!=u&&(o.gap=u);var h=t.barCategoryGap;null!=h&&(o.categoryGap=h)});var n={};return i.each(e,function(t,e){n[e]={};var o=t.stacks,a=t.bandWidth,s=r(t.categoryGap,a),A=r(t.gap,1),l=t.remainedWidth,c=t.autoWidthCount,u=(l-s)/(c+(c-1)*A);u=Math.max(u,0),i.each(o,function(t){var e=t.maxWidth,n=t.minWidth;if(t.width){i=t.width;e&&(i=Math.min(i,e)),n&&(i=Math.max(i,n)),t.width=i,l-=i+A*i,c--}else{var i=u;e&&e<i&&(i=Math.min(e,l)),n&&n>i&&(i=n),i!==u&&(t.width=i,l-=i+A*i,c--)}}),u=(l-s)/(c+(c-1)*A),u=Math.max(u,0);var h,d=0;i.each(o,function(t,e){t.width||(t.width=u),h=t,d+=t.width*(1+A)}),h&&(d-=h.width*A);var f=-d/2;i.each(o,function(t,i){n[e][i]=n[e][i]||{bandWidth:a,offset:f,width:t.width},f+=t.width*(1+A)})}),n}function f(t,e,n){if(t&&e){var i=t[c(e)];return null!=i&&null!=n&&(i=i[l(n)]),i}}var p={seriesType:"bar",plan:a(),reset:function(t){if(g(t)&&m(t)){var e=t.getData(),n=t.coordinateSystem,i=n.grid.getRect(),r=n.getBaseAxis(),o=n.getOtherAxis(r),a=e.mapDimension(o.dim),s=e.mapDimension(r.dim),l=o.isHorizontal(),c=l?0:1,u=f(h([t]),r,t).width;return u>.5||(u=.5),{progress:function(t,e){var h,d=t.count,f=new A(2*d),p=new A(2*d),g=new A(d),m=[],y=[],w=0,x=0;for(;null!=(h=t.next());)y[c]=e.get(a,h),y[1-c]=e.get(s,h),m=n.dataToPoint(y,null,m),p[w]=l?i.x+i.width:m[0],f[w++]=m[0],p[w]=l?m[1]:i.y+i.height,f[w++]=m[1],g[x++]=h;e.setLayout({largePoints:f,largeDataIndices:g,largeBackgroundPoints:p,barWidth:u,valueAxisStart:v(r,o,!1),backgroundStart:l?i.x:i.y,valueAxisHorizontal:l})}}}}};function g(t){return t.coordinateSystem&&"cartesian2d"===t.coordinateSystem.type}function m(t){return t.pipelineContext&&t.pipelineContext.large}function v(t,e,n){return e.toGlobalCoord(e.dataToCoord("log"===e.type?1:0))}e.getLayoutOnAxis=function(t){var e=[],n=t.axis;if("category"===n.type){for(var r=n.getBandWidth(),o=0;o<t.count;o++)e.push(i.defaults({bandWidth:r,axisKey:"axis0",stackId:s+o},t));var a=d(e),A=[];for(o=0;o<t.count;o++){var l=a.axis0[s+o];l.offsetCenter=l.offset+l.width/2,A.push(l)}return A}},e.prepareLayoutBarSeries=u,e.makeColumnLayout=h,e.retrieveColumnLayout=f,e.layout=function(t,e){var n=u(t,e),r=h(n),a={},s={};i.each(n,function(t){var e=t.getData(),n=t.coordinateSystem,i=n.getBaseAxis(),A=l(t),u=r[c(i)][A],h=u.offset,d=u.width,f=n.getOtherAxis(i),p=t.get("barMinHeight")||0;a[A]=a[A]||[],s[A]=s[A]||[],e.setLayout({bandWidth:u.bandWidth,offset:h,size:d});for(var g=e.mapDimension(f.dim),m=e.mapDimension(i.dim),y=o(e,g),w=f.isHorizontal(),x=v(0,f),B=0,b=e.count();B<b;B++){var C,_,S,I,T,M=e.get(g,B),Q=e.get(m,B),F=M>=0?"p":"n",k=x;y&&(a[A][Q]||(a[A][Q]={p:x,n:x}),k=a[A][Q][F]),w?(C=k,_=(T=n.dataToPoint([M,Q]))[1]+h,S=T[0]-x,I=d,Math.abs(S)<p&&(S=(S<0?-1:1)*p),isNaN(S)||y&&(a[A][Q][F]+=S)):(C=(T=n.dataToPoint([Q,M]))[0]+h,_=k,S=d,I=T[1]-x,Math.abs(I)<p&&(I=(I<=0?-1:1)*p),isNaN(I)||y&&(a[A][Q][F]+=I)),e.setItemLayout(B,{x:C,y:_,width:S,height:I})}},this)},e.largeLayout=p},HF2S:function(t,e,n){var i=n("UnJe"),r=n("OD9Z"),o=i.extend({type:"polygon",shape:{points:null,smooth:!1,smoothConstraint:null},buildPath:function(t,e){r.buildPath(t,e,!0)}});t.exports=o},HUDA:function(t,e,n){var i=n("4y0g"),r=i.parseSVG,o=i.makeViewBoxTransform,a=n("Q1ps"),s=n("/Qj9"),A=n("A5tq"),l=A.assert,c=A.createHashMap,u=n("r+KN"),h=(0,n("65+t").makeInner)(),d={load:function(t,e){var n=h(e).originRoot;if(n)return{root:n,boundingRect:h(e).boundingRect};var i=f(e);return h(e).originRoot=i.root,h(e).boundingRect=i.boundingRect,i},makeGraphic:function(t,e,n){var i=h(e),r=i.rootMap||(i.rootMap=c()),o=r.get(n);if(o)return o;var a=i.originRoot,s=i.boundingRect;return i.originRootHostKey?o=f(e,s).root:(i.originRootHostKey=n,o=a),r.set(n,o)},removeGraphic:function(t,e,n){var i=h(e),r=i.rootMap;r&&r.removeKey(n),n===i.originRootHostKey&&(i.originRootHostKey=null)}};function f(t,e){var n,i,A=t.svgXML;try{i=(n=A&&r(A,{ignoreViewBox:!0,ignoreRootClip:!0})||{}).root,l(null!=i)}catch(t){throw new Error("Invalid svg format\n"+t.message)}var c=n.width,h=n.height,d=n.viewBoxRect;if(e||(e=null==c||null==h?i.getBoundingRect():new u(0,0,0,0),null!=c&&(e.width=c),null!=h&&(e.height=h)),d){var f=o(d,e.width,e.height),p=i;(i=new a).add(p),p.scale=f.scale,p.position=f.position}return i.setClipPath(new s({shape:e.plain()})),{root:i,boundingRect:e}}t.exports=d},HVRW:function(t,e,n){var i=n("A5tq").isFunction;t.exports=function(t,e,n){return{seriesType:t,performRawSeries:!0,reset:function(t,r,o){var a=t.getData(),s=t.get("symbol"),A=t.get("symbolSize"),l=t.get("symbolKeepAspect"),c=t.get("symbolRotate"),u=i(s),h=i(A),d=i(c),f=u||h||d,p=!u&&s?s:e,g=h?null:A;if(a.setVisual({legendSymbol:n||p,symbol:p,symbolSize:g,symbolKeepAspect:l,symbolRotate:c}),!r.isSeriesFiltered(t))return{dataEach:a.hasItemOption||f?function(e,n){if(f){var i=t.getRawValue(n),r=t.getDataParams(n);u&&e.setItemVisual(n,"symbol",s(i,r)),h&&e.setItemVisual(n,"symbolSize",A(i,r)),d&&e.setItemVisual(n,"symbolRotate",c(i,r))}if(e.hasItemOption){var o=e.getItemModel(n),a=o.getShallow("symbol",!0),l=o.getShallow("symbolSize",!0),p=o.getShallow("symbolRotate",!0),g=o.getShallow("symbolKeepAspect",!0);null!=a&&e.setItemVisual(n,"symbol",a),null!=l&&e.setItemVisual(n,"symbolSize",l),null!=p&&e.setItemVisual(n,"symbolRotate",p),null!=g&&e.setItemVisual(n,"symbolKeepAspect",g)}}:null}}}}},Hn3i:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("65+t"),a=n("bDs9"),s=n("rhmo"),A=n("w9uD").parsePercent,l={path:null,compoundPath:null,group:a.Group,image:a.Image,text:a.Text};i.registerPreprocessor(function(t){var e=t.graphic;r.isArray(e)?e[0]&&e[0].elements?t.graphic=[t.graphic[0]]:t.graphic=[{elements:e}]:e&&!e.elements&&(t.graphic=[{elements:[e]}])});var c=i.extendComponentModel({type:"graphic",defaultOption:{elements:[],parentId:null},_elOptionsToUpdate:null,mergeOption:function(t){var e=this.option.elements;this.option.elements=null,c.superApply(this,"mergeOption",arguments),this.option.elements=e},optionUpdated:function(t,e){var n=this.option,i=(e?n:t).elements,a=n.elements=e?[]:n.elements,A=[];this._flatten(i,A);var l=o.mappingToExists(a,A);o.makeIdAndName(l);var c=this._elOptionsToUpdate=[];r.each(l,function(t,e){var n=t.option;n&&(c.push(n),function(t,e){var n=t.exist;if(e.id=t.keyInfo.id,!e.type&&n&&(e.type=n.type),null==e.parentId){var i=e.parentOption;i?e.parentId=i.id:n&&(e.parentId=n.parentId)}e.parentOption=null}(t,n),function(t,e,n){var i=r.extend({},n),o=t[e],a=n.$action||"merge";"merge"===a?o?(r.merge(o,i,!0),s.mergeLayoutParam(o,i,{ignoreSize:!0}),s.copyLayoutParams(n,o)):t[e]=i:"replace"===a?t[e]=i:"remove"===a&&o&&(t[e]=null)}(a,e,n),function(t,e){if(!t)return;t.hv=e.hv=[d(e,["left","right"]),d(e,["top","bottom"])],"group"===t.type&&(null==t.width&&(t.width=e.width=0),null==t.height&&(t.height=e.height=0))}(a[e],n))},this);for(var u=a.length-1;u>=0;u--)null==a[u]?a.splice(u,1):delete a[u].$action},_flatten:function(t,e,n){r.each(t,function(t){if(t){n&&(t.parentOption=n),e.push(t);var i=t.children;"group"===t.type&&i&&this._flatten(i,e,t),delete t.children}},this)},useElOptionsToUpdate:function(){var t=this._elOptionsToUpdate;return this._elOptionsToUpdate=null,t}});function u(t,e,n,i){var r=n.type,o=new(l.hasOwnProperty(r)?l[r]:a.getShapeClass(r))(n);e.add(o),i.set(t,o),o.__ecGraphicId=t}function h(t,e){var n=t&&t.parent;n&&("group"===t.type&&t.traverse(function(t){h(t,e)}),e.removeKey(t.__ecGraphicId),n.remove(t))}function d(t,e){var n;return r.each(e,function(e){null!=t[e]&&"auto"!==t[e]&&(n=!0)}),n}i.extendComponentView({type:"graphic",init:function(t,e){this._elMap=r.createHashMap(),this._lastGraphicModel},render:function(t,e,n){t!==this._lastGraphicModel&&this._clear(),this._lastGraphicModel=t,this._updateElements(t),this._relocate(t,n)},_updateElements:function(t){var e=t.useElOptionsToUpdate();if(e){var n=this._elMap,i=this.group;r.each(e,function(e){var o=e.$action,a=e.id,A=n.get(a),l=e.parentId,c=null!=l?n.get(l):i,d=e.style;"text"===e.type&&d&&(e.hv&&e.hv[1]&&(d.textVerticalAlign=d.textBaseline=null),!d.hasOwnProperty("textFill")&&d.fill&&(d.textFill=d.fill),!d.hasOwnProperty("textStroke")&&d.stroke&&(d.textStroke=d.stroke));var f=function(t){return t=r.extend({},t),r.each(["id","parentId","$action","hv","bounding"].concat(s.LOCATION_PARAMS),function(e){delete t[e]}),t}(e);o&&"merge"!==o?"replace"===o?(h(A,n),u(a,c,f,n)):"remove"===o&&h(A,n):A?A.attr(f):u(a,c,f,n);var p=n.get(a);p&&(p.__ecGraphicWidthOption=e.width,p.__ecGraphicHeightOption=e.height,function(t,e,n){var i=t.eventData;t.silent||t.ignore||i||(i=t.eventData={componentType:"graphic",componentIndex:e.componentIndex,name:t.name});i&&(i.info=t.info)}(p,t))})}},_relocate:function(t,e){for(var n=t.option.elements,i=this.group,r=this._elMap,o=e.getWidth(),a=e.getHeight(),l=0;l<n.length;l++){var c=n[l];if((h=r.get(c.id))&&h.isGroup){var u=(d=h.parent)===i;h.__ecGraphicWidth=A(h.__ecGraphicWidthOption,u?o:d.__ecGraphicWidth)||0,h.__ecGraphicHeight=A(h.__ecGraphicHeightOption,u?a:d.__ecGraphicHeight)||0}}for(l=n.length-1;l>=0;l--){var h;c=n[l];if(h=r.get(c.id)){var d,f=(d=h.parent)===i?{width:o,height:a}:{width:d.__ecGraphicWidth,height:d.__ecGraphicHeight};s.positionElement(h,c,f,null,{hv:c.hv,boundingMode:c.bounding})}}},_clear:function(){var t=this._elMap;t.each(function(e){h(e,t)}),this._elMap=r.createHashMap()},dispose:function(){this._clear()}})},HxlI:function(t,e,n){var i=n("quL4")([["fill","color"],["stroke","borderColor"],["lineWidth","borderWidth"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"],["textPosition"],["textAlign"]]),r={getItemStyle:function(t,e){var n=i(this,t,e),r=this.getBorderLineDash();return r&&(n.lineDash=r),n},getBorderLineDash:function(){var t=this.get("borderType");return"solid"===t||null==t?null:"dashed"===t?[5,5]:[1,1]}};t.exports=r},I29D:function(t,e,n){t.exports=n("0GJB")},I6n2:function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},I9Ar:function(t,e,n){var i=n("A5tq"),r=n("Gkcz"),o=n("quL4"),a=n("YyE5"),s=n("w9uD"),A=n("r8bK"),l=r.extend({type:"baseParallelAxis",axis:null,activeIntervals:[],getAreaSelectStyle:function(){return o([["fill","color"],["lineWidth","borderWidth"],["stroke","borderColor"],["width","width"],["opacity","opacity"]])(this.getModel("areaSelectStyle"))},setActiveIntervals:function(t){var e=this.activeIntervals=i.clone(t);if(e)for(var n=e.length-1;n>=0;n--)s.asc(e[n])},getActiveState:function(t){var e=this.activeIntervals;if(!e.length)return"normal";if(null==t||isNaN(t))return"inactive";if(1===e.length){var n=e[0];if(n[0]<=t&&t<=n[1])return"active"}else for(var i=0,r=e.length;i<r;i++)if(e[i][0]<=t&&t<=e[i][1])return"active";return"inactive"}});i.merge(l.prototype,A),a("parallel",l,function(t,e){return e.type||(e.data?"category":"value")},{type:"value",dim:null,areaSelectStyle:{width:20,borderWidth:1,borderColor:"rgba(160,197,232)",color:"rgba(160,197,232)",opacity:.3},realtime:!0,z:10});var c=l;t.exports=c},IBjP:function(t,e,n){var i=n("TiXa").extend({type:"dataZoom.select"});t.exports=i},IKzd:function(t,e,n){var i=n("A5tq"),r=n("Gkcz"),o=n("YyE5"),a=n("r8bK"),s=r.extend({type:"polarAxis",axis:null,getCoordSysModel:function(){return this.ecModel.queryComponents({mainType:"polar",index:this.option.polarIndex,id:this.option.polarId})[0]}});i.merge(s.prototype,a);var A={splitNumber:5};function l(t,e){return e.type||(e.data?"category":"value")}o("angle",s,l,{startAngle:90,clockwise:!0,splitNumber:12,axisLabel:{rotate:!1}}),o("radius",s,l,A)},ISQU:function(t,e,n){var i=n("kq8N").extend({type:"markPoint",defaultOption:{zlevel:0,z:5,symbol:"pin",symbolSize:50,tooltip:{trigger:"item"},label:{show:!0,position:"inside"},itemStyle:{borderWidth:2},emphasis:{label:{show:!0}}}});t.exports=i},Ih8s:function(t,e){var n={Russia:[100,60],"United States":[-99,38],"United States of America":[-99,38]};t.exports=function(t,e){if("world"===t){var i=n[e.name];if(i){var r=e.center;r[0]=i[0],r[1]=i[1]}}}},Ir9s:function(t,e,n){var i=n("A5tq"),r=n("m9W5"),o=function(t,e,n,i,o){r.call(this,t,e,n),this.type=i||"value",this.axisIndex=o};o.prototype={constructor:o,model:null,isHorizontal:function(){return"horizontal"!==this.coordinateSystem.getModel().get("layout")}},i.inherits(o,r);var a=o;t.exports=a},"J/p/":function(t,e,n){var i=n("w9uD"),r=i.parsePercent,o=i.linearMap,a=n("rhmo"),s=n("7PDa"),A=n("A5tq"),l=2*Math.PI,c=Math.PI/180;t.exports=function(t,e,n,i){e.eachSeriesByType(t,function(t){var e=t.getData(),i=e.mapDimension("value"),u=function(t,e){return a.getLayoutRect(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,n),h=t.get("center"),d=t.get("radius");A.isArray(d)||(d=[0,d]),A.isArray(h)||(h=[h,h]);var f=r(u.width,n.getWidth()),p=r(u.height,n.getHeight()),g=Math.min(f,p),m=r(h[0],f)+u.x,v=r(h[1],p)+u.y,y=r(d[0],g/2),w=r(d[1],g/2),x=-t.get("startAngle")*c,B=t.get("minAngle")*c,b=0;e.each(i,function(t){!isNaN(t)&&b++});var C=e.getSum(i),_=Math.PI/(C||b)*2,S=t.get("clockwise"),I=t.get("roseType"),T=t.get("stillShowZeroSum"),M=e.getDataExtent(i);M[0]=0;var Q=l,F=0,k=x,D=S?1:-1;if(e.each(i,function(t,n){var i;if(isNaN(t))e.setItemLayout(n,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:S,cx:m,cy:v,r0:y,r:I?NaN:w,viewRect:u});else{(i="area"!==I?0===C&&T?_:t*_:l/b)<B?(i=B,Q-=B):F+=t;var r=k+D*i;e.setItemLayout(n,{angle:i,startAngle:k,endAngle:r,clockwise:S,cx:m,cy:v,r0:y,r:I?o(t,M,[y,w]):w,viewRect:u}),k=r}}),Q<l&&b)if(Q<=.001){var U=l/b;e.each(i,function(t,n){if(!isNaN(t)){var i=e.getItemLayout(n);i.angle=U,i.startAngle=x+D*n*U,i.endAngle=x+D*(n+1)*U}})}else _=Q/F,k=x,e.each(i,function(t,n){if(!isNaN(t)){var i=e.getItemLayout(n),r=i.angle===B?B:t*_;i.startAngle=k,i.endAngle=k+D*r,k+=D*r}});s(t,w,u.width,u.height,u.x,u.y)})}},J0Bx:function(t,e,n){var i=n("9nPt"),r=n("kCsp"),o=i.extend({type:"series.__base_bar__",getInitialData:function(t,e){return r(this.getSource(),this,{useEncodeDefaulter:!0})},getMarkerPosition:function(t){var e=this.coordinateSystem;if(e){var n=e.dataToPoint(e.clampData(t)),i=this.getData(),r=i.getLayout("offset"),o=i.getLayout("size");return n[e.getBaseAxis().isHorizontal()?0:1]+=r+o/2,n}return[NaN,NaN]},defaultOption:{zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:"mod",itemStyle:{},emphasis:{}}});t.exports=o},J571:function(t,e,n){var i=n("loyO"),r=n("A5tq");t.exports=function(t,e){r.each(e,function(e){e.update="updateView",i.registerAction(e,function(n,i){var r={};return i.eachComponent({mainType:"series",subType:t,query:n},function(t){t[e.method]&&t[e.method](n.name,n.dataIndex);var i=t.getData();i.each(function(e){var n=i.getName(e);r[n]=t.isSelected(n)||!1})}),{name:n.name,selected:r,seriesId:n.seriesId}})})}},JQrN:function(t,e,n){var i=n("quL4")([["fill","color"],["stroke","borderColor"],["lineWidth","borderWidth"],["stroke","barBorderColor"],["lineWidth","barBorderWidth"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"]]),r={getBarItemStyle:function(t){var e=i(this,t);if(this.getBorderLineDash){var n=this.getBorderLineDash();n&&(e.lineDash=n)}return e}};t.exports=r},JUFp:function(t,e,n){var i=n("bDs9"),r=n("rhmo"),o=n("A5tq"),a=n("U3tO").wrapTreePathInfo,s=5;function A(t){this.group=new i.Group,t.add(this.group)}function l(t,e,n,i,r,o){var a=[[r?t:t-s,e],[t+n,e],[t+n,e+i],[r?t:t-s,e+i]];return!o&&a.splice(2,0,[t+n+s,e+i/2]),!r&&a.push([t,e+i/2]),a}function c(t,e,n){t.eventData={componentType:"series",componentSubType:"treemap",componentIndex:e.componentIndex,seriesIndex:e.componentIndex,seriesName:e.name,seriesType:"treemap",selfType:"breadcrumb",nodeData:{dataIndex:n&&n.dataIndex,name:n&&n.name},treePathInfo:n&&a(n,e)}}A.prototype={constructor:A,render:function(t,e,n,i){var o=t.getModel("breadcrumb"),a=this.group;if(a.removeAll(),o.get("show")&&n){var s=o.getModel("itemStyle"),A=s.getModel("textStyle"),l={pos:{left:o.get("left"),right:o.get("right"),top:o.get("top"),bottom:o.get("bottom")},box:{width:e.getWidth(),height:e.getHeight()},emptyItemWidth:o.get("emptyItemWidth"),totalWidth:0,renderList:[]};this._prepare(n,l,A),this._renderContent(t,l,s,A,i),r.positionElement(a,l.pos,l.box)}},_prepare:function(t,e,n){for(var i=t;i;i=i.parentNode){var r=i.getModel().get("name"),o=n.getTextRect(r),a=Math.max(o.width+16,e.emptyItemWidth);e.totalWidth+=a+8,e.renderList.push({node:i,text:r,width:a})}},_renderContent:function(t,e,n,a,s){for(var A=0,u=e.emptyItemWidth,h=t.get("breadcrumb.height"),d=r.getAvailableSize(e.pos,e.box),f=e.totalWidth,p=e.renderList,g=p.length-1;g>=0;g--){var m=p[g],v=m.node,y=m.width,w=m.text;f>d.width&&(f-=y-u,y=u,w=null);var x=new i.Polygon({shape:{points:l(A,0,y,h,g===p.length-1,0===g)},style:o.defaults(n.getItemStyle(),{lineJoin:"bevel",text:w,textFill:a.getTextColor(),textFont:a.getFont()}),z:10,onclick:o.curry(s,v)});this.group.add(x),c(x,t,v),A+=y+8}},remove:function(){this.group.removeAll()}};var u=A;t.exports=u},Jeai:function(t,e,n){"use strict";e.a=function(t){return t.replace(i,function(t,e){return e.toUpperCase()})},e.b=function(t,e){void 0===e&&(e=2);var n=t+"";for(;n.length<e;)n="0"+n;return n};var i=/-(\w)/g},Jjp9:function(t,e,n){var i=n("vuYU"),r=n("A5tq");t.exports=function(t,e){t.eachSeriesByType("sankey",function(t){var e=t.getGraph().nodes;if(e.length){var n=1/0,o=-1/0;r.each(e,function(t){var e=t.getLayout().value;e<n&&(n=e),e>o&&(o=e)}),r.each(e,function(e){var r=new i({type:"color",mappingMethod:"linear",dataExtent:[n,o],visual:t.get("color")}).mapValueToVisual(e.getLayout().value),a=e.getModel().get("itemStyle.color");null!=a?e.setVisual("color",a):e.setVisual("color",r)})}})}},K2EO:function(t,e,n){var i=n("p+Z8");n("TJcz").register("single",{create:function(t,e){var n=[];return t.eachComponent("singleAxis",function(r,o){var a=new i(r,t,e);a.name="single_"+o,a.resize(r,e),r.coordinateSystem=a,n.push(a)}),t.eachSeries(function(e){if("singleAxis"===e.get("coordinateSystem")){var n=t.queryComponents({mainType:"singleAxis",index:e.get("singleAxisIndex"),id:e.get("singleAxisId")})[0];e.coordinateSystem=n&&n.coordinateSystem}}),n},dimensions:i.prototype.dimensions})},K3bJ:function(t,e,n){var i=n("A5tq"),r=n("sutA"),o=n("65+t").makeInner,a=n("Ym+9"),s=a.enableClassExtend,A=a.enableClassCheck,l=n("8P6b"),c=n("nHlu"),u=n("XyZZ"),h=n("HxlI"),d=i.mixin,f=o();function p(t,e,n){this.parentModel=e,this.ecModel=n,this.option=t}function g(t,e,n){for(var i=0;i<e.length&&(!e[i]||null!=(t=t&&"object"==typeof t?t[e[i]]:null));i++);return null==t&&n&&(t=n.get(e)),t}function m(t,e){var n=f(t).getParent;return n?n.call(t,e):t.parentModel}p.prototype={constructor:p,init:null,mergeOption:function(t){i.merge(this.option,t,!0)},get:function(t,e){return null==t?this.option:g(this.option,this.parsePath(t),!e&&m(this,t))},getShallow:function(t,e){var n=this.option,i=null==n?n:n[t],r=!e&&m(this,t);return null==i&&r&&(i=r.getShallow(t)),i},getModel:function(t,e){var n;return new p(null==t?this.option:g(this.option,t=this.parsePath(t)),e=e||(n=m(this,t))&&n.getModel(t),this.ecModel)},isEmpty:function(){return null==this.option},restoreData:function(){},clone:function(){return new(0,this.constructor)(i.clone(this.option))},setReadOnly:function(t){},parsePath:function(t){return"string"==typeof t&&(t=t.split(".")),t},customizeGetParent:function(t){f(this).getParent=t},isAnimationEnabled:function(){if(!r.node){if(null!=this.option.animation)return!!this.option.animation;if(this.parentModel)return this.parentModel.isAnimationEnabled()}}},s(p),A(p),d(p,l),d(p,c),d(p,u),d(p,h);var v=p;t.exports=v},KOU3:function(t,e,n){"use strict";var i=n("ywUT");t.exports=function(t,e,n){return i.forEach(n,function(n){t=n(t,e)}),t}},KtVb:function(t,e,n){var i=n("UnJe"),r=n("lbYD"),o=n("R33K"),a=o.quadraticSubdivide,s=o.cubicSubdivide,A=o.quadraticAt,l=o.cubicAt,c=o.quadraticDerivativeAt,u=o.cubicDerivativeAt,h=[];function d(t,e,n){var i=t.cpx2,r=t.cpy2;return null===i||null===r?[(n?u:l)(t.x1,t.cpx1,t.cpx2,t.x2,e),(n?u:l)(t.y1,t.cpy1,t.cpy2,t.y2,e)]:[(n?c:A)(t.x1,t.cpx1,t.x2,e),(n?c:A)(t.y1,t.cpy1,t.y2,e)]}var f=i.extend({type:"bezier-curve",shape:{x1:0,y1:0,x2:0,y2:0,cpx1:0,cpy1:0,percent:1},style:{stroke:"#000",fill:null},buildPath:function(t,e){var n=e.x1,i=e.y1,r=e.x2,o=e.y2,A=e.cpx1,l=e.cpy1,c=e.cpx2,u=e.cpy2,d=e.percent;0!==d&&(t.moveTo(n,i),null==c||null==u?(d<1&&(a(n,A,r,d,h),A=h[1],r=h[2],a(i,l,o,d,h),l=h[1],o=h[2]),t.quadraticCurveTo(A,l,r,o)):(d<1&&(s(n,A,c,r,d,h),A=h[1],c=h[2],r=h[3],s(i,l,u,o,d,h),l=h[1],u=h[2],o=h[3]),t.bezierCurveTo(A,l,c,u,r,o)))},pointAt:function(t){return d(this.shape,t,!1)},tangentAt:function(t){var e=d(this.shape,t,!0);return r.normalize(e,e)}});t.exports=f},KvEU:function(t,e,n){"use strict";var i=n("ywUT"),r=n("lIT5"),o=n("fh+U"),a=n("uuOP"),s=n("qT6D"),A=n("cjnF"),l=n("n6w9");t.exports=function(t){return new Promise(function(e,c){var u=t.data,h=t.headers;i.isFormData(u)&&delete h["Content-Type"];var d=new XMLHttpRequest;if(t.auth){var f=t.auth.username||"",p=t.auth.password||"";h.Authorization="Basic "+btoa(f+":"+p)}var g=a(t.baseURL,t.url);if(d.open(t.method.toUpperCase(),o(g,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d.onreadystatechange=function(){if(d&&4===d.readyState&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?s(d.getAllResponseHeaders()):null,i={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:d.status,statusText:d.statusText,headers:n,config:t,request:d};r(e,c,i),d=null}},d.onabort=function(){d&&(c(l("Request aborted",t,"ECONNABORTED",d)),d=null)},d.onerror=function(){c(l("Network Error",t,null,d)),d=null},d.ontimeout=function(){var e="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),c(l(e,t,"ECONNABORTED",d)),d=null},i.isStandardBrowserEnv()){var m=n("9Ju6"),v=(t.withCredentials||A(g))&&t.xsrfCookieName?m.read(t.xsrfCookieName):void 0;v&&(h[t.xsrfHeaderName]=v)}if("setRequestHeader"in d&&i.forEach(h,function(t,e){void 0===u&&"content-type"===e.toLowerCase()?delete h[e]:d.setRequestHeader(e,t)}),i.isUndefined(t.withCredentials)||(d.withCredentials=!!t.withCredentials),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),c(t),d=null)}),void 0===u&&(u=null),d.send(u)})}},LRen:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("r+KN"),a=n("jSer"),s=n("U2z9"),A=n("Lk3r"),l=n("rN3u"),c=["inBrush","outOfBrush"],u="__ecBrushSelect",h="__ecInBrushSelectEvent",d=i.PRIORITY.VISUAL.BRUSH;function f(t){t.eachComponent({mainType:"brush"},function(e){(e.brushTargetManager=new l(e.option,t)).setInputRanges(e.areas,t)})}function p(t,e){if(!t.isDisposed()){var n=t.getZr();n[h]=!0,t.dispatchAction({type:"brushSelect",batch:e}),n[h]=!1}}function g(t,e,n,i){for(var r=0,o=e.length;r<o;r++){var a=e[r];if(t[a.brushType](i,n,a.selectors,a))return!0}}function m(t){var e=t.brushSelector;if(r.isString(e)){var n=[];return r.each(s,function(t,i){n[i]=function(n,i,r,o){var a=i.getItemLayout(n);return t[e](a,r,o)}}),n}if(r.isFunction(e)){var i={};return r.each(s,function(t,n){i[n]=e}),i}return e}i.registerLayout(d,function(t,e,n){t.eachComponent({mainType:"brush"},function(t){n&&"takeGlobalCursor"===n.type&&t.setBrushOption("brush"===n.key?n.brushOption:{brushType:!1})}),f(t)}),i.registerVisual(d,function(t,e,n){var i,o,l=[];t.eachComponent({mainType:"brush"},function(e,n){var A={brushId:e.id,brushIndex:n,brushName:e.name,areas:r.clone(e.areas),selected:[]};l.push(A);var u=e.option,h=u.brushLink,d=[],f=[],p=[],y=0;n||(i=u.throttleType,o=u.throttleDelay);var w=r.map(e.areas,function(t){return function(t){var e=t.selectors={};return r.each(s[t.brushType],function(n,i){e[i]=function(i){return n(i,e,t)}}),t}(r.defaults({boundingRect:v[t.brushType](t)},t))}),x=a.createVisualMappings(e.option,c,function(t){t.mappingMethod="fixed"});function B(t){return"all"===h||d[t]}function b(t){return!!t.length}r.isArray(h)&&r.each(h,function(t){d[t]=1}),t.eachSeries(function(n,i){var o=p[i]=[];"parallel"===n.subType?function(t,e){var n=t.coordinateSystem;y|=n.hasAxisBrushed(),B(e)&&n.eachActiveState(t.getData(),function(t,e){"active"===t&&(f[e]=1)})}(n,i):function(n,i,o){var a=m(n);if(!a||function(t,e){var n=t.option.seriesIndex;return null!=n&&"all"!==n&&(r.isArray(n)?r.indexOf(n,e)<0:e!==n)}(e,i))return;if(r.each(w,function(i){a[i.brushType]&&e.brushTargetManager.controlSeries(i,n,t)&&o.push(i),y|=b(o)}),B(i)&&b(o)){var s=n.getData();s.each(function(t){g(a,o,s,t)&&(f[t]=1)})}}(n,i,o)}),t.eachSeries(function(t,e){var n={seriesId:t.id,seriesIndex:e,seriesName:t.name,dataIndex:[]};A.selected.push(n);var i=m(t),r=p[e],o=t.getData(),s=B(e)?function(t){return f[t]?(n.dataIndex.push(o.getRawIndex(t)),"inBrush"):"outOfBrush"}:function(t){return g(i,r,o,t)?(n.dataIndex.push(o.getRawIndex(t)),"inBrush"):"outOfBrush"};(B(e)?y:b(r))&&a.applyVisual(c,x,o,s)})}),function(t,e,n,i,r){if(!r)return;var o=t.getZr();if(o[h])return;o[u]||(o[u]=p);A.createOrUpdate(o,u,n,e)(t,i)}(e,i,o,l,n)});var v={lineX:r.noop,lineY:r.noop,rect:function(t){return y(t.range)},polygon:function(t){for(var e,n=t.range,i=0,r=n.length;i<r;i++){e=e||[[1/0,-1/0],[1/0,-1/0]];var o=n[i];o[0]<e[0][0]&&(e[0][0]=o[0]),o[0]>e[0][1]&&(e[0][1]=o[0]),o[1]<e[1][0]&&(e[1][0]=o[1]),o[1]>e[1][1]&&(e[1][1]=o[1])}return e&&y(e)}};function y(t){return new o(t[0][0],t[1][0],t[0][1]-t[0][0],t[1][1]-t[1][0])}e.layoutCovers=f},LTdf:function(t,e,n){var i=n("A5tq");t.exports=function(t){t&&i.isArray(t.series)&&i.each(t.series,function(t){i.isObject(t)&&"k"===t.type&&(t.type="candlestick")})}},Ldp7:function(t,e,n){var i=n("sutA"),r=[["shadowBlur",0],["shadowColor","#000"],["shadowOffsetX",0],["shadowOffsetY",0]];t.exports=function(t){return i.browser.ie&&i.browser.version>=11?function(){var e,n=this.__clipPaths,i=this.style;if(n)for(var o=0;o<n.length;o++){var a=n[o],s=a&&a.shape,A=a&&a.type;if(s&&("sector"===A&&s.startAngle===s.endAngle||"rect"===A&&(!s.width||!s.height))){for(var l=0;l<r.length;l++)r[l][2]=i[r[l][0]],i[r[l][0]]=r[l][1];e=!0;break}}if(t.apply(this,arguments),e)for(l=0;l<r.length;l++)i[r[l][0]]=r[l][2]}:t}},LhGV:function(t,e,n){var i=n("sutA"),r=n("lbYD").applyTransform,o=n("r+KN"),a=n("dyFL"),s=n("ixaL"),A=n("lk7o"),l=n("izE0"),c=n("a7jT"),u=n("a+Y0"),h=n("g+7e"),d=n("UnJe"),f=n("3PS3"),p=n("eUbH"),g=n("80Hv"),m=f.CMD,v=Math.round,y=Math.sqrt,w=Math.abs,x=Math.cos,B=Math.sin,b=Math.max;if(!i.canvasSupported){var C=21600,_=C/2,S=function(t){t.style.cssText="position:absolute;left:0;top:0;width:1px;height:1px;",t.coordsize=C+","+C,t.coordorigin="0,0"},I=function(t,e,n){return"rgb("+[t,e,n].join(",")+")"},T=function(t,e){e&&t&&e.parentNode!==t&&t.appendChild(e)},M=function(t,e){e&&t&&e.parentNode===t&&t.removeChild(e)},Q=function(t,e,n){return 1e5*(parseFloat(t)||0)+1e3*(parseFloat(e)||0)+n},F=A.parsePercent,k=function(t,e,n){var i=a.parse(e);n=+n,isNaN(n)&&(n=1),i&&(t.color=I(i[0],i[1],i[2]),t.opacity=n*i[3])},D=function(t,e,n,i){var o="fill"===e,s=t.getElementsByTagName(e)[0];null!=n[e]&&"none"!==n[e]&&(o||!o&&n.lineWidth)?(t[o?"filled":"stroked"]="true",n[e]instanceof p&&M(t,s),s||(s=g.createNode(e)),o?function(t,e,n){var i,o,s=e.fill;if(null!=s)if(s instanceof p){var A,l=0,c=[0,0],u=0,h=1,d=n.getBoundingRect(),f=d.width,g=d.height;if("linear"===s.type){A="gradient";var m=n.transform,v=[s.x*f,s.y*g],y=[s.x2*f,s.y2*g];m&&(r(v,v,m),r(y,y,m));var w=y[0]-v[0],x=y[1]-v[1];(l=180*Math.atan2(w,x)/Math.PI)<0&&(l+=360),l<1e-6&&(l=0)}else{A="gradientradial",v=[s.x*f,s.y*g],m=n.transform;var B=n.scale,_=f,S=g;c=[(v[0]-d.x)/_,(v[1]-d.y)/S],m&&r(v,v,m),_/=B[0]*C,S/=B[1]*C;var T=b(_,S);u=0/T,h=2*s.r/T-u}var M=s.colorStops.slice();M.sort(function(t,e){return t.offset-e.offset});for(var Q=M.length,F=[],D=[],U=0;U<Q;U++){var E=M[U],L=(i=E.color,o=a.parse(i),[I(o[0],o[1],o[2]),o[3]]);D.push(E.offset*h+u+" "+L[0]),0!==U&&U!==Q-1||F.push(L)}if(Q>=2){var O=F[0][0],P=F[1][0],H=F[0][1]*e.opacity,N=F[1][1]*e.opacity;t.type=A,t.method="none",t.focus="100%",t.angle=l,t.color=O,t.color2=P,t.colors=D.join(","),t.opacity=N,t.opacity2=H}"radial"===A&&(t.focusposition=c.join(","))}else k(t,s,e.opacity)}(s,n,i):function(t,e){e.lineDash&&(t.dashstyle=e.lineDash.join(" ")),null==e.stroke||e.stroke instanceof p||k(t,e.stroke,e.opacity)}(s,n),T(t,s)):(t[o?"filled":"stroked"]="false",M(t,s))},U=[[],[],[]];d.prototype.brushVML=function(t){var e=this.style,n=this._vmlEl;n||(n=g.createNode("shape"),S(n),this._vmlEl=n),D(n,"fill",e,this),D(n,"stroke",e,this);var i=this.transform,o=null!=i,a=n.getElementsByTagName("stroke")[0];if(a){var s=e.lineWidth;if(o&&!e.strokeNoScale){var A=i[0]*i[3]-i[1]*i[2];s*=y(w(A))}a.weight=s+"px"}var l=this.path||(this.path=new f);this.__dirtyPath&&(l.beginPath(),l.subPixelOptimize=!1,this.buildPath(l,this.shape),l.toStatic(),this.__dirtyPath=!1),n.path=function(t,e){var n,i,o,a,s,A,l=m.M,c=m.C,u=m.L,h=m.A,d=m.Q,f=[],p=t.data,g=t.len();for(a=0;a<g;){switch(i="",n=0,o=p[a++]){case l:i=" m ",n=1,s=p[a++],A=p[a++],U[0][0]=s,U[0][1]=A;break;case u:i=" l ",n=1,s=p[a++],A=p[a++],U[0][0]=s,U[0][1]=A;break;case d:case c:i=" c ",n=3;var w,b,S=p[a++],I=p[a++],T=p[a++],M=p[a++];o===d?(w=T,b=M,T=(T+2*S)/3,M=(M+2*I)/3,S=(s+2*S)/3,I=(A+2*I)/3):(w=p[a++],b=p[a++]),U[0][0]=S,U[0][1]=I,U[1][0]=T,U[1][1]=M,U[2][0]=w,U[2][1]=b,s=w,A=b;break;case h:var Q=0,F=0,k=1,D=1,E=0;e&&(Q=e[4],F=e[5],k=y(e[0]*e[0]+e[1]*e[1]),D=y(e[2]*e[2]+e[3]*e[3]),E=Math.atan2(-e[1]/D,e[0]/k));var L=p[a++],O=p[a++],P=p[a++],H=p[a++],N=p[a++]+E,R=p[a++]+N+E;a++;var V=p[a++],z=L+x(N)*P,K=O+B(N)*H,G=(S=L+x(R)*P,I=O+B(R)*H,V?" wa ":" at ");Math.abs(z-S)<1e-4&&(Math.abs(R-N)>.01?V&&(z+=.0125):Math.abs(K-O)<1e-4?V&&z<L||!V&&z>L?I-=.0125:I+=.0125:V&&K<O||!V&&K>O?S+=.0125:S-=.0125),f.push(G,v(((L-P)*k+Q)*C-_),",",v(((O-H)*D+F)*C-_),",",v(((L+P)*k+Q)*C-_),",",v(((O+H)*D+F)*C-_),",",v((z*k+Q)*C-_),",",v((K*D+F)*C-_),",",v((S*k+Q)*C-_),",",v((I*D+F)*C-_)),s=S,A=I;break;case m.R:var W=U[0],j=U[1];W[0]=p[a++],W[1]=p[a++],j[0]=W[0]+p[a++],j[1]=W[1]+p[a++],e&&(r(W,W,e),r(j,j,e)),W[0]=v(W[0]*C-_),j[0]=v(j[0]*C-_),W[1]=v(W[1]*C-_),j[1]=v(j[1]*C-_),f.push(" m ",W[0],",",W[1]," l ",j[0],",",W[1]," l ",j[0],",",j[1]," l ",W[0],",",j[1]);break;case m.Z:f.push(" x ")}if(n>0){f.push(i);for(var $=0;$<n;$++){var q=U[$];e&&r(q,q,e),f.push(v(q[0]*C-_),",",v(q[1]*C-_),$<n-1?",":"")}}}return f.join("")}(l,this.transform),n.style.zIndex=Q(this.zlevel,this.z,this.z2),T(t,n),null!=e.text?this.drawRectText(t,this.getBoundingRect()):this.removeRectText(t)},d.prototype.onRemove=function(t){M(t,this._vmlEl),this.removeRectText(t)},d.prototype.onAdd=function(t){T(t,this._vmlEl),this.appendRectText(t)};u.prototype.brushVML=function(t){var e,n,i,o=this.style,a=o.image;if("object"==typeof(i=a)&&i.tagName&&"IMG"===i.tagName.toUpperCase()){var s=a.src;if(s===this._imageSrc)e=this._imageWidth,n=this._imageHeight;else{var A=a.runtimeStyle,l=A.width,c=A.height;A.width="auto",A.height="auto",e=a.width,n=a.height,A.width=l,A.height=c,this._imageSrc=s,this._imageWidth=e,this._imageHeight=n}a=s}else a===this._imageSrc&&(e=this._imageWidth,n=this._imageHeight);if(a){var u=o.x||0,h=o.y||0,d=o.width,f=o.height,p=o.sWidth,m=o.sHeight,w=o.sx||0,x=o.sy||0,B=p&&m,C=this._vmlEl;C||(C=g.doc.createElement("div"),S(C),this._vmlEl=C);var _,I=C.style,M=!1,F=1,k=1;if(this.transform&&(_=this.transform,F=y(_[0]*_[0]+_[1]*_[1]),k=y(_[2]*_[2]+_[3]*_[3]),M=_[1]||_[2]),M){var D=[u,h],U=[u+d,h],E=[u,h+f],L=[u+d,h+f];r(D,D,_),r(U,U,_),r(E,E,_),r(L,L,_);var O=b(D[0],U[0],E[0],L[0]),P=b(D[1],U[1],E[1],L[1]),H=[];H.push("M11=",_[0]/F,",","M12=",_[2]/k,",","M21=",_[1]/F,",","M22=",_[3]/k,",","Dx=",v(u*F+_[4]),",","Dy=",v(h*k+_[5])),I.padding="0 "+v(O)+"px "+v(P)+"px 0",I.filter="progid:DXImageTransform.Microsoft.Matrix("+H.join("")+", SizingMethod=clip)"}else _&&(u=u*F+_[4],h=h*k+_[5]),I.filter="",I.left=v(u)+"px",I.top=v(h)+"px";var N=this._imageEl,R=this._cropEl;N||(N=g.doc.createElement("div"),this._imageEl=N);var V=N.style;if(B){if(e&&n)V.width=v(F*e*d/p)+"px",V.height=v(k*n*f/m)+"px";else{var z=new Image,K=this;z.onload=function(){z.onload=null,e=z.width,n=z.height,V.width=v(F*e*d/p)+"px",V.height=v(k*n*f/m)+"px",K._imageWidth=e,K._imageHeight=n,K._imageSrc=a},z.src=a}R||((R=g.doc.createElement("div")).style.overflow="hidden",this._cropEl=R);var G=R.style;G.width=v((d+w*d/p)*F),G.height=v((f+x*f/m)*k),G.filter="progid:DXImageTransform.Microsoft.Matrix(Dx="+-w*d/p*F+",Dy="+-x*f/m*k+")",R.parentNode||C.appendChild(R),N.parentNode!==R&&R.appendChild(N)}else V.width=v(F*d)+"px",V.height=v(k*f)+"px",C.appendChild(N),R&&R.parentNode&&(C.removeChild(R),this._cropEl=null);var W="",j=o.opacity;j<1&&(W+=".Alpha(opacity="+v(100*j)+") "),W+="progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+a+", SizingMethod=scale)",V.filter=W,C.style.zIndex=Q(this.zlevel,this.z,this.z2),T(t,C),null!=o.text&&this.drawRectText(t,this.getBoundingRect())}},u.prototype.onRemove=function(t){M(t,this._vmlEl),this._vmlEl=null,this._cropEl=null,this._imageEl=null,this.removeRectText(t)},u.prototype.onAdd=function(t){T(t,this._vmlEl),this.appendRectText(t)};var E,L={},O=0,P=document.createElement("div");s.$override("measureText",function(t,e){var n=g.doc;E||((E=n.createElement("div")).style.cssText="position:absolute;top:-20000px;left:0;padding:0;margin:0;border:none;white-space:pre;",g.doc.body.appendChild(E));try{E.style.font=e}catch(t){}return E.innerHTML="",E.appendChild(n.createTextNode(t)),{width:E.offsetWidth}});for(var H=new o,N=function(t,e,n,i){var o=this.style;this.__dirty&&A.normalizeTextStyle(o,!0);var a=o.text;if(null!=a&&(a+=""),a){if(o.rich){var l=s.parseRichText(a,o);a=[];for(var c=0;c<l.lines.length;c++){for(var u=l.lines[c].tokens,h=[],d=0;d<u.length;d++)h.push(u[d].text);a.push(h.join(""))}a=a.join("\n")}var f,p,m=o.textAlign,y=o.textVerticalAlign,w=function(t){var e=L[t];if(!e){O>100&&(O=0,L={});var n,i=P.style;try{i.font=t,n=i.fontFamily.split(",")[0]}catch(t){}e={style:i.fontStyle||"normal",variant:i.fontVariant||"normal",weight:i.fontWeight||"normal",size:0|parseFloat(i.fontSize||12),family:n||"Microsoft YaHei"},L[t]=e,O++}return e}(o.font),x=w.style+" "+w.variant+" "+w.weight+" "+w.size+'px "'+w.family+'"';n=n||s.getBoundingRect(a,x,m,y,o.textPadding,o.textLineHeight);var B=this.transform;if(B&&!i&&(H.copy(e),H.applyTransform(B),e=H),i)f=e.x,p=e.y;else{var b=o.textPosition;if(b instanceof Array)f=e.x+F(b[0],e.width),p=e.y+F(b[1],e.height),m=m||"left";else{var C=this.calculateTextPosition?this.calculateTextPosition({},o,e):s.calculateTextPosition({},o,e);f=C.x,p=C.y,m=m||C.textAlign,y=y||C.textVerticalAlign}}f=s.adjustTextX(f,n.width,m),p=s.adjustTextY(p,n.height,y),p+=n.height/2;var _,I,M,k=g.createNode,U=this._textVmlEl;U?I=(_=(M=U.firstChild).nextSibling).nextSibling:(U=k("line"),_=k("path"),I=k("textpath"),M=k("skew"),I.style["v-text-align"]="left",S(U),_.textpathok=!0,I.on=!0,U.from="0 0",U.to="1000 0.05",T(U,M),T(U,_),T(U,I),this._textVmlEl=U);var E=[f,p],N=U.style;B&&i?(r(E,E,B),M.on=!0,M.matrix=B[0].toFixed(3)+","+B[2].toFixed(3)+","+B[1].toFixed(3)+","+B[3].toFixed(3)+",0,0",M.offset=(v(E[0])||0)+","+(v(E[1])||0),M.origin="0 0",N.left="0px",N.top="0px"):(M.on=!1,N.left=v(f)+"px",N.top=v(p)+"px"),I.string=String(a).replace(/&/g,"&amp;").replace(/"/g,"&quot;");try{I.style.font=x}catch(t){}D(U,"fill",{fill:o.textFill,opacity:o.opacity},this),D(U,"stroke",{stroke:o.textStroke,opacity:o.opacity,lineDash:o.lineDash||null},this),U.style.zIndex=Q(this.zlevel,this.z,this.z2),T(t,U)}},R=function(t){M(t,this._textVmlEl),this._textVmlEl=null},V=function(t){T(t,this._textVmlEl)},z=[l,c,u,d,h],K=0;K<z.length;K++){var G=z[K].prototype;G.drawRectText=N,G.removeRectText=R,G.appendRectText=V}h.prototype.brushVML=function(t){var e=this.style;null!=e.text?this.drawRectText(t,{x:e.x||0,y:e.y||0,width:0,height:0},this.getBoundingRect(),!0):this.removeRectText(t)},h.prototype.onRemove=function(t){this.removeRectText(t)},h.prototype.onAdd=function(t){this.appendRectText(t)}}},Lk3r:function(t,e){var n="\0__throttleOriginMethod",i="\0__throttleRate",r="\0__throttleType";function o(t,e,n){var i,r,o,a,s,A=0,l=0,c=null;function u(){l=(new Date).getTime(),c=null,t.apply(o,a||[])}e=e||0;var h=function(){i=(new Date).getTime(),o=this,a=arguments;var t=s||e,h=s||n;s=null,r=i-(h?A:l)-t,clearTimeout(c),h?c=setTimeout(u,t):r>=0?u():c=setTimeout(u,-r),A=i};return h.clear=function(){c&&(clearTimeout(c),c=null)},h.debounceNextCall=function(t){s=t},h}e.throttle=o,e.createOrUpdate=function(t,e,a,s){var A=t[e];if(A){var l=A[n]||A,c=A[r];if(A[i]!==a||c!==s){if(null==a||!s)return t[e]=l;(A=t[e]=o(l,a,"debounce"===s))[n]=l,A[r]=s,A[i]=a}return A}},e.clear=function(t,e){var i=t[e];i&&i[n]&&(t[e]=i[n])}},Lkz2:function(t,e){var n=1;"undefined"!=typeof window&&(n=Math.max(window.devicePixelRatio||1,1));var i=n;e.debugMode=0,e.devicePixelRatio=i},LlZA:function(t,e,n){n("roIn").__DEV__;var i=n("9nPt"),r=n("h17e"),o=n("A5tq"),a=o.concatArray,s=o.mergeAll,A=o.map,l=n("DWNL").encodeHTML,c=(n("TJcz"),"undefined"==typeof Uint32Array?Array:Uint32Array),u="undefined"==typeof Float64Array?Array:Float64Array;function h(t){var e=t.data;e&&e[0]&&e[0][0]&&e[0][0].coord&&(t.data=A(e,function(t){var e={coords:[t[0].coord,t[1].coord]};return t[0].name&&(e.fromName=t[0].name),t[1].name&&(e.toName=t[1].name),s([e,t[0],t[1]])}))}var d=i.extend({type:"series.lines",dependencies:["grid","polar"],visualColorAccessPath:"lineStyle.color",init:function(t){t.data=t.data||[],h(t);var e=this._processFlatCoordsArray(t.data);this._flatCoords=e.flatCoords,this._flatCoordsOffset=e.flatCoordsOffset,e.flatCoords&&(t.data=new Float32Array(e.count)),d.superApply(this,"init",arguments)},mergeOption:function(t){if(h(t),t.data){var e=this._processFlatCoordsArray(t.data);this._flatCoords=e.flatCoords,this._flatCoordsOffset=e.flatCoordsOffset,e.flatCoords&&(t.data=new Float32Array(e.count))}d.superApply(this,"mergeOption",arguments)},appendData:function(t){var e=this._processFlatCoordsArray(t.data);e.flatCoords&&(this._flatCoords?(this._flatCoords=a(this._flatCoords,e.flatCoords),this._flatCoordsOffset=a(this._flatCoordsOffset,e.flatCoordsOffset)):(this._flatCoords=e.flatCoords,this._flatCoordsOffset=e.flatCoordsOffset),t.data=new Float32Array(e.count)),this.getRawData().appendData(t.data)},_getCoordsFromItemModel:function(t){var e=this.getData().getItemModel(t);return e.option instanceof Array?e.option:e.getShallow("coords")},getLineCoordsCount:function(t){return this._flatCoordsOffset?this._flatCoordsOffset[2*t+1]:this._getCoordsFromItemModel(t).length},getLineCoords:function(t,e){if(this._flatCoordsOffset){for(var n=this._flatCoordsOffset[2*t],i=this._flatCoordsOffset[2*t+1],r=0;r<i;r++)e[r]=e[r]||[],e[r][0]=this._flatCoords[n+2*r],e[r][1]=this._flatCoords[n+2*r+1];return i}var o=this._getCoordsFromItemModel(t);for(r=0;r<o.length;r++)e[r]=e[r]||[],e[r][0]=o[r][0],e[r][1]=o[r][1];return o.length},_processFlatCoordsArray:function(t){var e=0;if(this._flatCoords&&(e=this._flatCoords.length),"number"==typeof t[0]){for(var n=t.length,i=new c(n),r=new u(n),o=0,a=0,s=0,A=0;A<n;){s++;var l=t[A++];i[a++]=o+e,i[a++]=l;for(var h=0;h<l;h++){var d=t[A++],f=t[A++];r[o++]=d,r[o++]=f}}return{flatCoordsOffset:new Uint32Array(i.buffer,0,a),flatCoords:r,count:s}}return{flatCoordsOffset:null,flatCoords:null,count:t.length}},getInitialData:function(t,e){var n=new r(["value"],this);return n.hasItemOption=!1,n.initData(t.data,[],function(t,e,i,r){if(t instanceof Array)return NaN;n.hasItemOption=!0;var o=t.value;return null!=o?o instanceof Array?o[r]:o:void 0}),n},formatTooltip:function(t){var e=this.getData().getItemModel(t),n=e.get("name");if(n)return n;var i=e.get("fromName"),r=e.get("toName"),o=[];return null!=i&&o.push(i),null!=r&&o.push(r),l(o.join(" > "))},preventIncremental:function(){return!!this.get("effect.show")},getProgressive:function(){var t=this.option.progressive;return null==t?this.option.large?1e4:this.get("progressive"):t},getProgressiveThreshold:function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?2e4:this.get("progressiveThreshold"):t},defaultOption:{coordinateSystem:"geo",zlevel:0,z:2,legendHoverLink:!0,hoverAnimation:!0,xAxisIndex:0,yAxisIndex:0,symbol:["none","none"],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:"circle",symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:"end"},lineStyle:{opacity:.5}}}),f=d;t.exports=f},M0MM:function(t,e,n){n("loyO").registerAction({type:"selectDataRange",event:"dataRangeSelected",update:"update"},function(t,e){e.eachComponent({mainType:"visualMap",query:t},function(e){e.setSelected(t.selected)})})},MCZU:function(t,e,n){var i=n("A5tq"),r=i.createHashMap,o=i.each,a=i.isString,s=i.defaults,A=i.extend,l=i.isObject,c=i.clone,u=n("65+t").normalizeToArray,h=n("PVav"),d=h.guessOrdinal,f=h.BE_ORDINAL,p=n("9i2m"),g=n("F9js").OTHER_DIMENSIONS,m=n("meIr");function v(t,e,n){if(n||null!=e.get(t)){for(var i=0;null!=e.get(t+i);)i++;t+=i}return e.set(t,!0),t}var y=function(t,e,n){p.isInstance(e)||(e=p.seriesDataToSource(e)),n=n||{},t=(t||[]).slice();for(var i=(n.dimsDef||[]).slice(),h=r(),y=r(),w=[],x=function(t,e,n,i){var r=Math.max(t.dimensionsDetectCount||1,e.length,n.length,i||0);return o(e,function(t){var e=t.dimsDef;e&&(r=Math.max(r,e.length))}),r}(e,t,i,n.dimCount),B=0;B<x;B++){var b=i[B]=A({},l(i[B])?i[B]:{name:i[B]}),C=b.name,_=w[B]=new m;null!=C&&null==h.get(C)&&(_.name=_.displayName=C,h.set(C,B)),null!=b.type&&(_.type=b.type),null!=b.displayName&&(_.displayName=b.displayName)}var S=n.encodeDef;!S&&n.encodeDefaulter&&(S=n.encodeDefaulter(e,x)),(S=r(S)).each(function(t,e){if(1===(t=u(t).slice()).length&&!a(t[0])&&t[0]<0)S.set(e,!1);else{var n=S.set(e,[]);o(t,function(t,i){a(t)&&(t=h.get(t)),null!=t&&t<x&&(n[i]=t,T(w[t],e,i))})}});var I=0;function T(t,e,n){null!=g.get(e)?t.otherDims[e]=n:(t.coordDim=e,t.coordDimIndex=n,y.set(e,!0))}o(t,function(t,e){var n,i,r;if(a(t))n=t,t={};else{n=t.name;var A=t.ordinalMeta;t.ordinalMeta=null,(t=c(t)).ordinalMeta=A,i=t.dimsDef,r=t.otherDims,t.name=t.coordDim=t.coordDimIndex=t.dimsDef=t.otherDims=null}if(!1!==(h=S.get(n))){var h;if(!(h=u(h)).length)for(var d=0;d<(i&&i.length||1);d++){for(;I<w.length&&null!=w[I].coordDim;)I++;I<w.length&&h.push(I++)}o(h,function(e,o){var a=w[e];if(T(s(a,t),n,o),null==a.name&&i){var A=i[o];!l(A)&&(A={name:A}),a.name=a.displayName=A.name,a.defaultTooltip=A.defaultTooltip}r&&s(a.otherDims,r)})}});var M=n.generateCoord,Q=n.generateCoordCount,F=null!=Q;Q=M?Q||1:0;for(var k=M||"value",D=0;D<x;D++)null==(_=w[D]=w[D]||new m).coordDim&&(_.coordDim=v(k,y,F),_.coordDimIndex=0,(!M||Q<=0)&&(_.isExtraCoord=!0),Q--),null==_.name&&(_.name=v(_.coordDim,h)),null!=_.type||d(e,D,_.name)!==f.Must&&(!_.isExtraCoord||null==_.otherDims.itemName&&null==_.otherDims.seriesName)||(_.type="ordinal");return w};t.exports=y},MJ75:function(t,e,n){var i=n("Oz4x");n("TJcz").register("parallel",{create:function(t,e){var n=[];return t.eachComponent("parallel",function(r,o){var a=new i(r,t,e);a.name="parallel_"+o,a.resize(r,e),r.coordinateSystem=a,a.model=r,n.push(a)}),t.eachSeries(function(e){if("parallel"===e.get("coordinateSystem")){var n=t.queryComponents({mainType:"parallel",index:e.get("parallelIndex"),id:e.get("parallelId")})[0];e.coordinateSystem=n.coordinateSystem}}),n}})},MPQ8:function(t,e,n){var i=n("A5tq"),r=n("9nPt"),o=n("viOj"),a=n("K3bJ"),s=n("U3tO").wrapTreePathInfo,A=r.extend({type:"series.sunburst",_viewRoot:null,getInitialData:function(t,e){var n={name:t.name,children:t.data};!function t(e){var n=0;i.each(e.children,function(e){t(e);var r=e.value;i.isArray(r)&&(r=r[0]),n+=r});var r=e.value;i.isArray(r)&&(r=r[0]);(null==r||isNaN(r))&&(r=n);r<0&&(r=0);i.isArray(e.value)?e.value[0]=r:e.value=r}(n);var r=i.map(t.levels||[],function(t){return new a(t,this,e)},this),s=o.createTree(n,this,function(t){t.wrapMethod("getItemModel",function(t,e){var n=s.getNodeByDataIndex(e),i=r[n.depth];return i&&(t.parentModel=i),t})});return s.data},optionUpdated:function(){this.resetViewRoot()},getDataParams:function(t){var e=r.prototype.getDataParams.apply(this,arguments),n=this.getData().tree.getNodeByDataIndex(t);return e.treePathInfo=s(n,this),e},defaultOption:{zlevel:0,z:2,center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,percentPrecision:2,stillShowZeroSum:!0,highlightPolicy:"descendant",nodeClick:"rootToNode",renderLabelForZeroData:!1,label:{rotate:"radial",show:!0,opacity:1,align:"center",position:"inside",distance:5,silent:!0},itemStyle:{borderWidth:1,borderColor:"white",borderType:"solid",shadowBlur:0,shadowColor:"rgba(0, 0, 0, 0.2)",shadowOffsetX:0,shadowOffsetY:0,opacity:1},highlight:{itemStyle:{opacity:1}},downplay:{itemStyle:{opacity:.5},label:{opacity:.6}},animationType:"expansion",animationDuration:1e3,animationDurationUpdate:500,animationEasing:"cubicOut",data:[],levels:[],sort:"desc"},getViewRoot:function(){return this._viewRoot},resetViewRoot:function(t){t?this._viewRoot=t:t=this._viewRoot;var e=this.getRawData().tree.root;t&&(t===e||e.contains(t))||(this._viewRoot=e)}});t.exports=A},Mw5P:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("TfMJ"),a=n("7iGl"),s=n("5P5h"),A=a.toolbox.dataView,l=new Array(60).join("-"),c="\t";function u(t){var e,n,i=function(t){var e={},n=[],i=[];return t.eachRawSeries(function(t){var r=t.coordinateSystem;if(!r||"cartesian2d"!==r.type&&"polar"!==r.type)n.push(t);else{var o=r.getBaseAxis();if("category"===o.type){var a=o.dim+"_"+o.index;e[a]||(e[a]={categoryAxis:o,valueAxis:r.getOtherAxis(o),series:[]},i.push({axisDim:o.dim,axisIndex:o.index})),e[a].series.push(t)}else n.push(t)}}),{seriesGroupByCategoryAxis:e,other:n,meta:i}}(t);return{value:r.filter([(e=i.seriesGroupByCategoryAxis,n=[],r.each(e,function(t,e){var i=t.categoryAxis,o=t.valueAxis.dim,a=[" "].concat(r.map(t.series,function(t){return t.name})),s=[i.model.getCategories()];r.each(t.series,function(t){var e=t.getRawData();s.push(t.getRawData().mapArray(e.mapDimension(o),function(t){return t}))});for(var A=[a.join(c)],l=0;l<s[0].length;l++){for(var u=[],h=0;h<s.length;h++)u.push(s[h][l]);A.push(u.join(c))}n.push(A.join("\n"))}),n.join("\n\n"+l+"\n\n")),function(t){return r.map(t,function(t){var e=t.getRawData(),n=[t.name],i=[];return e.each(e.dimensions,function(){for(var t=arguments.length,r=arguments[t-1],o=e.getName(r),a=0;a<t-1;a++)i[a]=arguments[a];n.push((o?o+c:"")+i.join(c))}),n.join("\n")}).join("\n\n"+l+"\n\n")}(i.other)],function(t){return t.replace(/[\n\t\s]/g,"")}).join("\n\n"+l+"\n\n"),meta:i.meta}}function h(t){return t.replace(/^\s\s*/,"").replace(/\s\s*$/,"")}var d=new RegExp("["+c+"]+","g");function f(t,e){var n=t.split(new RegExp("\n*"+l+"\n*","g")),i={series:[]};return r.each(n,function(t,n){if(function(t){if(t.slice(0,t.indexOf("\n")).indexOf(c)>=0)return!0}(t)){var o=function(t){for(var e=t.split(/\n+/g),n=h(e.shift()).split(d),i=[],o=r.map(n,function(t){return{name:t,data:[]}}),a=0;a<e.length;a++){var s=h(e[a]).split(d);i.push(s.shift());for(var A=0;A<s.length;A++)o[A]&&(o[A].data[a]=s[A])}return{series:o,categories:i}}(t),a=e[n],s=a.axisDim+"Axis";a&&(i[s]=i[s]||[],i[s][a.axisIndex]={data:o.categories},i.series=i.series.concat(o.series))}else{o=function(t){for(var e=t.split(/\n+/g),n=h(e.shift()),i=[],r=0;r<e.length;r++){var o=h(e[r]);if(o){var a,s=o.split(d),A="",l=!1;isNaN(s[0])?(l=!0,A=s[0],s=s.slice(1),i[r]={name:A,value:[]},a=i[r].value):a=i[r]=[];for(var c=0;c<s.length;c++)a.push(+s[c]);1===a.length&&(l?i[r].value=a[0]:i[r]=a[0])}}return{name:n,data:i}}(t);i.series.push(o)}}),i}function p(t){this._dom=null,this.model=t}p.defaultOption={show:!0,readOnly:!1,optionToContent:null,contentToOption:null,icon:"M17.5,17.3H33 M17.5,17.3H33 M45.4,29.5h-28 M11.5,2v56H51V14.8L38.4,2H11.5z M38.4,2.2v12.7H51 M45.4,41.7h-28",title:r.clone(A.title),lang:r.clone(A.lang),backgroundColor:"#fff",textColor:"#000",textareaColor:"#fff",textareaBorderColor:"#333",buttonColor:"#c23531",buttonTextColor:"#fff"},p.prototype.onclick=function(t,e){var n=e.getDom(),i=this.model;this._dom&&n.removeChild(this._dom);var a=document.createElement("div");a.style.cssText="position:absolute;left:5px;top:5px;bottom:5px;right:5px;",a.style.backgroundColor=i.get("backgroundColor")||"#fff";var s=document.createElement("h4"),A=i.get("lang")||[];s.innerHTML=A[0]||i.get("title"),s.style.cssText="margin: 10px 20px;",s.style.color=i.get("textColor");var l=document.createElement("div"),c=document.createElement("textarea");l.style.cssText="display:block;width:100%;overflow:auto;";var h=i.get("optionToContent"),d=i.get("contentToOption"),p=u(t);if("function"==typeof h){var g=h(e.getOption());"string"==typeof g?l.innerHTML=g:r.isDom(g)&&l.appendChild(g)}else l.appendChild(c),c.readOnly=i.get("readOnly"),c.style.cssText="width:100%;height:100%;font-family:monospace;font-size:14px;line-height:1.6rem;",c.style.color=i.get("textColor"),c.style.borderColor=i.get("textareaBorderColor"),c.style.backgroundColor=i.get("textareaColor"),c.value=p.value;var m=p.meta,v=document.createElement("div");v.style.cssText="position:absolute;bottom:0;left:0;right:0;";var y="float:right;margin-right:20px;border:none;cursor:pointer;padding:2px 5px;font-size:12px;border-radius:3px",w=document.createElement("div"),x=document.createElement("div");y+=";background-color:"+i.get("buttonColor"),y+=";color:"+i.get("buttonTextColor");var B=this;function b(){n.removeChild(a),B._dom=null}o.addEventListener(w,"click",b),o.addEventListener(x,"click",function(){var t;try{t="function"==typeof d?d(l,e.getOption()):f(c.value,m)}catch(t){throw b(),new Error("Data view format error "+t)}t&&e.dispatchAction({type:"changeDataView",newOption:t}),b()}),w.innerHTML=A[1],x.innerHTML=A[2],x.style.cssText=y,w.style.cssText=y,!i.get("readOnly")&&v.appendChild(x),v.appendChild(w),a.appendChild(s),a.appendChild(l),a.appendChild(v),l.style.height=n.clientHeight-80+"px",n.appendChild(a),this._dom=a},p.prototype.remove=function(t,e){this._dom&&e.getDom().removeChild(this._dom)},p.prototype.dispose=function(t,e){this.remove(t,e)},s.register("dataView",p),i.registerAction({type:"changeDataView",event:"dataViewChanged",update:"prepareAndUpdate"},function(t,e){var n=[];r.each(t.newOption.series,function(t){var i=e.getSeriesByName(t.name)[0];if(i){var o=i.get("data");n.push({name:t.name,data:function(t,e){return r.map(t,function(t,n){var i=e&&e[n];if(r.isObject(i)&&!r.isArray(i)){r.isObject(t)&&!r.isArray(t)||(t={value:t});var o=null!=i.name&&null==t.name;return t=r.defaults(t,i),o&&delete t.name,t}return t})}(t.data,o)})}else n.push(r.extend({type:"scatter"},t))}),e.mergeOption(r.defaults({series:n},t.newOption))});var g=p;t.exports=g},"Mx+x":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("NJ+n");i.registerAction("dataZoom",function(t,e){var n=o.createLinkedNodesFinder(r.bind(e.eachComponent,e,"dataZoom"),o.eachAxisDim,function(t,e){return t.get(e.axisIndex)}),i=[];e.eachComponent({mainType:"dataZoom",query:t},function(t,e){i.push.apply(i,n(t).nodes)}),r.each(i,function(e,n){e.setRawRange({start:t.start,end:t.end,startValue:t.startValue,endValue:t.endValue})})})},NIzM:function(t,e,n){var i=n("bDs9"),r=n("A5tq");function o(t,e,n){i.Group.call(this),this._createPolyline(t,e,n)}var a=o.prototype;a._createPolyline=function(t,e,n){var r=t.getItemLayout(e),o=new i.Polyline({shape:{points:r}});this.add(o),this._updateCommonStl(t,e,n)},a.updateData=function(t,e,n){var r=t.hostModel,o=this.childAt(0),a={shape:{points:t.getItemLayout(e)}};i.updateProps(o,a,r,e),this._updateCommonStl(t,e,n)},a._updateCommonStl=function(t,e,n){var o=this.childAt(0),a=t.getItemModel(e),s=t.getItemVisual(e,"color"),A=n&&n.lineStyle,l=n&&n.hoverLineStyle;n&&!t.hasItemOption||(A=a.getModel("lineStyle").getLineStyle(),l=a.getModel("emphasis.lineStyle").getLineStyle()),o.useStyle(r.defaults({strokeNoScale:!0,fill:"none",stroke:s},A)),o.hoverStyle=l,i.setHoverStyle(this)},a.updateLayout=function(t,e){this.childAt(0).setShape("points",t.getItemLayout(e))},r.inherits(o,i.Group);var s=o;t.exports=s},"NJ+n":function(t,e,n){var i=n("A5tq"),r=n("DWNL"),o=["cartesian2d","polar","singleAxis"];function a(t,e){t=t.slice();var n=i.map(t,r.capitalFirst);e=(e||[]).slice();var o=i.map(e,r.capitalFirst);return function(r,a){i.each(t,function(t,i){for(var s={name:t,capital:n[i]},A=0;A<e.length;A++)s[e[A]]=t+o[A];r.call(a,s)})}}var s=a(["x","y","z","radius","angle","single"],["axisIndex","axis","index","id"]);e.isCoordSupported=function(t){return i.indexOf(o,t)>=0},e.createNameEach=a,e.eachAxisDim=s,e.createLinkedNodesFinder=function(t,e,n){return function(o){var a,s={nodes:[],records:{}};if(e(function(t){s.records[t.name]={}}),!o)return s;r(o,s);do{a=!1,t(A)}while(a);function A(t){!function(t,e){return i.indexOf(e.nodes,t)>=0}(t,s)&&function(t,r){var o=!1;return e(function(e){i.each(n(t,e)||[],function(t){r.records[e.name][t]&&(o=!0)})}),o}(t,s)&&(r(t,s),a=!0)}return s};function r(t,r){r.nodes.push(t),e(function(e){i.each(n(t,e)||[],function(t){r.records[e.name][t]=!0})})}}},NKtA:function(t,e,n){var i=n("A5tq");function r(t,e){return e=e||[0,0],i.map(["x","y"],function(n,i){var r=this.getAxis(n),o=e[i],a=t[i]/2;return"category"===r.type?r.getBandWidth():Math.abs(r.dataToCoord(o-a)-r.dataToCoord(o+a))},this)}t.exports=function(t){var e=t.grid.getRect();return{coordSys:{type:"cartesian2d",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(e){return t.dataToPoint(e)},size:i.bind(r,t)}}}},NVem:function(t,e){t.exports=function(t,e,n,i,r,o){if(o>e&&o>i||o<e&&o<i)return 0;if(i===e)return 0;var a=i<e?1:-1,s=(o-e)/(i-e);1!==s&&0!==s||(a=i<e?.5:-.5);var A=s*(n-t)+t;return A===r?1/0:A>r?a:0}},NYRX:function(t,e,n){var i=n("A5tq"),r=n("h17e"),o=n("w9uD"),a=n("FIcu"),s=n("tRWJ"),A=n("wKp1"),l=n("fxHw").getStackedDimension,c=function(t,e,n,r){var o=t.getData(),s=r.type;if(!i.isArray(r)&&("min"===s||"max"===s||"average"===s||"median"===s||null!=r.xAxis||null!=r.yAxis)){var A,c;if(null!=r.yAxis||null!=r.xAxis)A=e.getAxis(null!=r.yAxis?"y":"x"),c=i.retrieve(r.yAxis,r.xAxis);else{var u=a.getAxisInfo(r,o,e,t);A=u.valueAxis;var h=l(o,u.valueDataDim);c=a.numCalculate(o,h,s)}var d="x"===A.dim?0:1,f=1-d,p=i.clone(r),g={};p.type=null,p.coord=[],g.coord=[],p.coord[f]=-1/0,g.coord[f]=1/0;var m=n.get("precision");m>=0&&"number"==typeof c&&(c=+c.toFixed(Math.min(m,20))),p.coord[d]=g.coord[d]=c,r=[p,g,{type:s,valueIndex:r.valueIndex,value:c}]}return(r=[a.dataTransform(t,r[0]),a.dataTransform(t,r[1]),i.extend({},r[2])])[2].type=r[2].type||"",i.merge(r[2],r[0]),i.merge(r[2],r[1]),r};function u(t){return!isNaN(t)&&!isFinite(t)}function h(t,e,n,i){var r=1-t,o=i.dimensions[t];return u(e[r])&&u(n[r])&&e[t]===n[t]&&i.getAxis(o).containData(e[t])}function d(t,e){if("cartesian2d"===t.type){var n=e[0].coord,i=e[1].coord;if(n&&i&&(h(1,n,i,t)||h(0,n,i,t)))return!0}return a.dataFilter(t,e[0])&&a.dataFilter(t,e[1])}function f(t,e,n,i,r){var a,s=i.coordinateSystem,A=t.getItemModel(e),l=o.parsePercent(A.get("x"),r.getWidth()),c=o.parsePercent(A.get("y"),r.getHeight());if(isNaN(l)||isNaN(c)){if(i.getMarkerPosition)a=i.getMarkerPosition(t.getValues(t.dimensions,e));else{var h=s.dimensions,d=t.get(h[0],e),f=t.get(h[1],e);a=s.dataToPoint([d,f])}if("cartesian2d"===s.type){var p=s.getAxis("x"),g=s.getAxis("y");h=s.dimensions;u(t.get(h[0],e))?a[0]=p.toGlobalCoord(p.getExtent()[n?0:1]):u(t.get(h[1],e))&&(a[1]=g.toGlobalCoord(g.getExtent()[n?0:1]))}isNaN(l)||(a[0]=l),isNaN(c)||(a[1]=c)}else a=[l,c];t.setItemLayout(e,a)}var p=A.extend({type:"markLine",updateTransform:function(t,e,n){e.eachSeries(function(t){var e=t.markLineModel;if(e){var i=e.getData(),r=e.__from,o=e.__to;r.each(function(e){f(r,e,!0,t,n),f(o,e,!1,t,n)}),i.each(function(t){i.setItemLayout(t,[r.getItemLayout(t),o.getItemLayout(t)])}),this.markerGroupMap.get(t.id).updateLayout()}},this)},renderSeries:function(t,e,n,o){var A=t.coordinateSystem,l=t.id,u=t.getData(),h=this.markerGroupMap,p=h.get(l)||h.set(l,new s);this.group.add(p.group);var g=function(t,e,n){var o;o=t?i.map(t&&t.dimensions,function(t){var n=e.getData().getDimensionInfo(e.getData().mapDimension(t))||{};return i.defaults({name:t},n)}):[{name:"value",type:"float"}];var s=new r(o,n),A=new r(o,n),l=new r([],n),u=i.map(n.get("data"),i.curry(c,e,t,n));t&&(u=i.filter(u,i.curry(d,t)));var h=t?a.dimValueGetter:function(t){return t.value};return s.initData(i.map(u,function(t){return t[0]}),null,h),A.initData(i.map(u,function(t){return t[1]}),null,h),l.initData(i.map(u,function(t){return t[2]})),l.hasItemOption=!0,{from:s,to:A,line:l}}(A,t,e),m=g.from,v=g.to,y=g.line;e.__from=m,e.__to=v,e.setData(y);var w=e.get("symbol"),x=e.get("symbolSize");function B(e,n,i){var r=e.getItemModel(n);f(e,n,i,t,o),e.setItemVisual(n,{symbolRotate:r.get("symbolRotate"),symbolSize:r.get("symbolSize")||x[i?0:1],symbol:r.get("symbol",!0)||w[i?0:1],color:r.get("itemStyle.color")||u.getVisual("color")})}i.isArray(w)||(w=[w,w]),"number"==typeof x&&(x=[x,x]),g.from.each(function(t){B(m,t,!0),B(v,t,!1)}),y.each(function(t){var e=y.getItemModel(t).get("lineStyle.color");y.setItemVisual(t,{color:e||m.getItemVisual(t,"color")}),y.setItemLayout(t,[m.getItemLayout(t),v.getItemLayout(t)]),y.setItemVisual(t,{fromSymbolRotate:m.getItemVisual(t,"symbolRotate"),fromSymbolSize:m.getItemVisual(t,"symbolSize"),fromSymbol:m.getItemVisual(t,"symbol"),toSymbolRotate:v.getItemVisual(t,"symbolRotate"),toSymbolSize:v.getItemVisual(t,"symbolSize"),toSymbol:v.getItemVisual(t,"symbol")})}),p.updateData(y),g.line.eachItemGraphicEl(function(t,n){t.traverse(function(t){t.dataModel=e})}),p.__keep=!0,p.group.silent=e.get("silent")||t.get("silent")}});t.exports=p},NYvz:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("n/EV"),o=n("bDs9"),a=n("wzMa"),s=n("+Pa4"),A=i.curry,l=i.each,c=i.map,u=Math.min,h=Math.max,d=Math.pow,f=1e4,p=6,g=6,m="globalPan",v={w:[0,0],e:[0,1],n:[1,0],s:[1,1]},y={w:"ew",e:"ew",n:"ns",s:"ns",ne:"nesw",sw:"nesw",nw:"nwse",se:"nwse"},w={brushStyle:{lineWidth:2,stroke:"rgba(0,0,0,0.3)",fill:"rgba(0,0,0,0.1)"},transformable:!0,brushMode:"single",removeOnClick:!1},x=0;function B(t){r.call(this),this._zr=t,this.group=new o.Group,this._brushType,this._brushOption,this._panels,this._track=[],this._dragging,this._covers=[],this._creatingCover,this._creatingPanel,this._enableGlobalPan,this._uid="brushController_"+x++,this._handlers={},l($,function(t,e){this._handlers[e]=i.bind(t,this)},this)}function b(t,e){var n=Y[e.brushType].createCover(t,e);return n.__brushOption=e,S(n,e),t.group.add(n),n}function C(t,e){var n=T(e);return n.endCreating&&(n.endCreating(t,e),S(e,e.__brushOption)),e}function _(t,e){var n=e.__brushOption;T(e).updateCoverShape(t,e,n.range,n)}function S(t,e){var n=e.z;null==n&&(n=f),t.traverse(function(t){t.z=n,t.z2=n})}function I(t,e){T(e).updateCommon(t,e),_(t,e)}function T(t){return Y[t.__brushOption.brushType]}function M(t,e,n){var i,r=t._panels;if(!r)return!0;var o=t._transform;return l(r,function(t){t.isTargetByCursor(e,n,o)&&(i=t)}),i}function Q(t,e){var n=t._panels;if(!n)return!0;var i=e.__brushOption.panelId;return null==i||n[i]}function F(t){var e=t._covers,n=e.length;return l(e,function(e){t.group.remove(e)},t),e.length=0,!!n}function k(t,e){var n=c(t._covers,function(t){var e=t.__brushOption,n=i.clone(e.range);return{brushType:e.brushType,panelId:e.panelId,range:n}});t.trigger("brush",n,{isEnd:!!e.isEnd,removeOnClick:!!e.removeOnClick})}function D(t){var e=t.length-1;return e<0&&(e=0),[t[0],t[e]]}function U(t,e,n,i){var r=new o.Group;return r.add(new o.Rect({name:"main",style:P(n),silent:!0,draggable:!0,cursor:"move",drift:A(t,e,r,"nswe"),ondragend:A(k,e,{isEnd:!0})})),l(i,function(n){r.add(new o.Rect({name:n,style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:A(t,e,r,n),ondragend:A(k,e,{isEnd:!0})}))}),r}function E(t,e,n,i){var r=i.brushStyle.lineWidth||0,o=h(r,g),a=n[0][0],s=n[1][0],A=a-r/2,l=s-r/2,c=n[0][1],u=n[1][1],d=c-o+r/2,f=u-o+r/2,p=c-a,m=u-s,v=p+r,y=m+r;O(t,e,"main",a,s,p,m),i.transformable&&(O(t,e,"w",A,l,o,y),O(t,e,"e",d,l,o,y),O(t,e,"n",A,l,v,o),O(t,e,"s",A,f,v,o),O(t,e,"nw",A,l,o,o),O(t,e,"ne",d,l,o,o),O(t,e,"sw",A,f,o,o),O(t,e,"se",d,f,o,o))}function L(t,e){var n=e.__brushOption,i=n.transformable,r=e.childAt(0);r.useStyle(P(n)),r.attr({silent:!i,cursor:i?"move":"default"}),l(["w","e","n","s","se","sw","ne","nw"],function(n){var r=e.childOfName(n),a=function t(e,n){if(n.length>1){n=n.split("");var i=[t(e,n[0]),t(e,n[1])];return("e"===i[0]||"w"===i[0])&&i.reverse(),i.join("")}var i=o.transformDirection({w:"left",e:"right",n:"top",s:"bottom"}[n],function(t){return o.getTransform(t.group)}(e));return{left:"w",right:"e",top:"n",bottom:"s"}[i]}(t,n);r&&r.attr({silent:!i,invisible:!i,cursor:i?y[a]+"-resize":null})})}function O(t,e,n,i,r,o,a){var s,A,l,c,d,f=e.childOfName(n);f&&f.setShape((s=z(t,e,[[i,r],[i+o,r+a]]),A=u(s[0][0],s[1][0]),l=u(s[0][1],s[1][1]),c=h(s[0][0],s[1][0]),d=h(s[0][1],s[1][1]),{x:A,y:l,width:c-A,height:d-l}))}function P(t){return i.defaults({strokeNoScale:!0},t.brushStyle)}function H(t,e,n,i){var r=[u(t,n),u(e,i)],o=[h(t,n),h(e,i)];return[[r[0],o[0]],[r[1],o[1]]]}function N(t,e,n,i,r,o,a,s){var A=i.__brushOption,c=t(A.range),u=V(n,o,a);l(r.split(""),function(t){var e=v[t];c[e[0]][e[1]]+=u[e[0]]}),A.range=e(H(c[0][0],c[1][0],c[0][1],c[1][1])),I(n,i),k(n,{isEnd:!1})}function R(t,e,n,i,r){var o=e.__brushOption.range,a=V(t,n,i);l(o,function(t){t[0]+=a[0],t[1]+=a[1]}),I(t,e),k(t,{isEnd:!1})}function V(t,e,n){var i=t.group,r=i.transformCoordToLocal(e,n),o=i.transformCoordToLocal(0,0);return[r[0]-o[0],r[1]-o[1]]}function z(t,e,n){var r=Q(t,e);return r&&!0!==r?r.clipPath(n,t._transform):i.clone(n)}function K(t){var e=t.event;e.preventDefault&&e.preventDefault()}function G(t,e,n){return t.childOfName("main").contain(e,n)}function W(t,e,n,r){var o,a=t._creatingCover,s=t._creatingPanel,A=t._brushOption;if(t._track.push(n.slice()),function(t){var e=t._track;if(!e.length)return!1;var n=e[e.length-1],i=e[0],r=n[0]-i[0],o=n[1]-i[1];return d(r*r+o*o,.5)>p}(t)||a){if(s&&!a){"single"===A.brushMode&&F(t);var l=i.clone(A);l.brushType=j(l.brushType,s),l.panelId=!0===s?null:s.panelId,a=t._creatingCover=b(t,l),t._covers.push(a)}if(a){var c=Y[j(t._brushType,s)];a.__brushOption.range=c.getCreatingRange(z(t,a,t._track)),r&&(C(t,a),c.updateCommon(t,a)),_(t,a),o={isEnd:r}}}else r&&"single"===A.brushMode&&A.removeOnClick&&M(t,e,n)&&F(t)&&(o={isEnd:r,removeOnClick:!0});return o}function j(t,e){return"auto"===t?e.defaultBrushType:t}B.prototype={constructor:B,enableBrush:function(t){var e,n;return this._brushType&&(n=(e=this)._zr,a.release(n,m,e._uid),function(t,e){l(e,function(e,n){t.off(n,e)})}(n,e._handlers),e._brushType=e._brushOption=null),t.brushType&&function(t,e){var n=t._zr;t._enableGlobalPan||a.take(n,m,t._uid);(function(t,e){l(e,function(e,n){t.on(n,e)})})(n,t._handlers),t._brushType=e.brushType,t._brushOption=i.merge(i.clone(w),e,!0)}(this,t),this},setPanels:function(t){if(t&&t.length){var e=this._panels={};i.each(t,function(t){e[t.panelId]=i.clone(t)})}else this._panels=null;return this},mount:function(t){t=t||{},this._enableGlobalPan=t.enableGlobalPan;var e=this.group;return this._zr.add(e),e.attr({position:t.position||[0,0],rotation:t.rotation||0,scale:t.scale||[1,1]}),this._transform=e.getLocalTransform(),this},eachCover:function(t,e){l(this._covers,t,e)},updateCovers:function(t){t=i.map(t,function(t){return i.merge(i.clone(w),t,!0)});var e="\0-brush-index-",n=this._covers,r=this._covers=[],o=this,a=this._creatingCover;return new s(n,t,function(t,e){return A(t.__brushOption,e)},A).add(l).update(l).remove(function(t){n[t]!==a&&o.group.remove(n[t])}).execute(),this;function A(t,n){return(null!=t.id?t.id:e+n)+"-"+t.brushType}function l(e,i){var s=t[e];if(null!=i&&n[i]===a)r[e]=n[i];else{var A=r[e]=null!=i?(n[i].__brushOption=s,n[i]):C(o,b(o,s));I(o,A)}}},unmount:function(){return this.enableBrush(!1),F(this),this._zr.remove(this.group),this},dispose:function(){this.unmount(),this.off()}},i.mixin(B,r);var $={mousedown:function(t){if(this._dragging)q(this,t);else if(!t.target||!t.target.draggable){K(t);var e=this.group.transformCoordToLocal(t.offsetX,t.offsetY);this._creatingCover=null,(this._creatingPanel=M(this,t,e))&&(this._dragging=!0,this._track=[e.slice()])}},mousemove:function(t){var e=t.offsetX,n=t.offsetY,i=this.group.transformCoordToLocal(e,n);if(function(t,e,n){if(t._brushType&&!function(t,e,n){var i=t._zr;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}(t,e)){var i=t._zr,r=t._covers,o=M(t,e,n);if(!t._dragging)for(var a=0;a<r.length;a++){var s=r[a].__brushOption;if(o&&(!0===o||s.panelId===o.panelId)&&Y[s.brushType].contain(r[a],n[0],n[1]))return}o&&i.setCursorStyle("crosshair")}}(this,t,i),this._dragging){K(t);var r=W(this,t,i,!1);r&&k(this,r)}},mouseup:function(t){q(this,t)}};function q(t,e){if(t._dragging){K(e);var n=e.offsetX,i=e.offsetY,r=W(t,e,t.group.transformCoordToLocal(n,i),!0);t._dragging=!1,t._track=[],t._creatingCover=null,r&&k(t,r)}}var Y={lineX:X(0),lineY:X(1),rect:{createCover:function(t,e){return U(A(N,function(t){return t},function(t){return t}),t,e,["w","e","n","s","se","sw","ne","nw"])},getCreatingRange:function(t){var e=D(t);return H(e[1][0],e[1][1],e[0][0],e[0][1])},updateCoverShape:function(t,e,n,i){E(t,e,n,i)},updateCommon:L,contain:G},polygon:{createCover:function(t,e){var n=new o.Group;return n.add(new o.Polyline({name:"main",style:P(e),silent:!0})),n},getCreatingRange:function(t){return t},endCreating:function(t,e){e.remove(e.childAt(0)),e.add(new o.Polygon({name:"main",draggable:!0,drift:A(R,t,e),ondragend:A(k,t,{isEnd:!0})}))},updateCoverShape:function(t,e,n,i){e.childAt(0).setShape({points:z(t,e,n)})},updateCommon:L,contain:G}};function X(t){return{createCover:function(e,n){return U(A(N,function(e){var n=[e,[0,100]];return t&&n.reverse(),n},function(e){return e[t]}),e,n,[["w","e"],["n","s"]][t])},getCreatingRange:function(e){var n=D(e);return[u(n[0][t],n[1][t]),h(n[0][t],n[1][t])]},updateCoverShape:function(e,n,i,r){var o,a=Q(e,n);if(!0!==a&&a.getLinearBrushOtherExtent)o=a.getLinearBrushOtherExtent(t,e._transform);else{var s=e._zr;o=[0,[s.getWidth(),s.getHeight()][1-t]]}var A=[i,o];t&&A.reverse(),E(e,n,A,r)},updateCommon:L,contain:G}}var J=B;t.exports=J},NhjP:function(t,e){function n(){}function i(t,e,n,i){for(var r=0,o=e.length,a=0,s=0;r<o;r++){var A=e[r];if(A.removed){for(l=[],c=s;c<s+A.count;c++)l.push(c);A.indices=l,s+=A.count}else{for(var l=[],c=a;c<a+A.count;c++)l.push(c);A.indices=l,a+=A.count,A.added||(s+=A.count)}}return e}n.prototype={diff:function(t,e,n){n||(n=function(t,e){return t===e}),this.equals=n;var r=this;t=t.slice();var o=(e=e.slice()).length,a=t.length,s=1,A=o+a,l=[{newPos:-1,components:[]}],c=this.extractCommon(l[0],e,t,0);if(l[0].newPos+1>=o&&c+1>=a){for(var u=[],h=0;h<e.length;h++)u.push(h);return[{indices:u,count:e.length}]}function d(){for(var n=-1*s;n<=s;n+=2){var A,c=l[n-1],u=l[n+1],h=(u?u.newPos:0)-n;c&&(l[n-1]=void 0);var d=c&&c.newPos+1<o,f=u&&0<=h&&h<a;if(d||f){if(!d||f&&c.newPos<u.newPos?(A={newPos:(p=u).newPos,components:p.components.slice(0)},r.pushComponent(A.components,void 0,!0)):((A=c).newPos++,r.pushComponent(A.components,!0,void 0)),h=r.extractCommon(A,e,t,n),A.newPos+1>=o&&h+1>=a)return i(r,A.components,e,t);l[n]=A}else l[n]=void 0}var p;s++}for(;s<=A;){var f=d();if(f)return f}},pushComponent:function(t,e,n){var i=t[t.length-1];i&&i.added===e&&i.removed===n?t[t.length-1]={count:i.count+1,added:e,removed:n}:t.push({count:1,added:e,removed:n})},extractCommon:function(t,e,n,i){for(var r=e.length,o=n.length,a=t.newPos,s=a-i,A=0;a+1<r&&s+1<o&&this.equals(e[a+1],n[s+1]);)a++,s++,A++;return A&&t.components.push({count:A}),t.newPos=a,s},tokenize:function(t){return t.slice()},join:function(t){return t.slice()}};var r=new n;t.exports=function(t,e,n){return r.diff(t,e,n)}},"Nkq/":function(t,e,n){var i=n("bDs9"),r=n("BQvh").getDefaultLabel;function o(t,e){"outside"===t.textPosition&&(t.textPosition=e)}e.setLabel=function(t,e,n,a,s,A,l){var c=n.getModel("label"),u=n.getModel("emphasis.label");i.setLabelStyle(t,e,c,u,{labelFetcher:s,labelDataIndex:A,defaultText:r(s.getData(),A),isRectText:!0,autoColor:a}),o(t),o(e)}},No8I:function(t,e){t.exports=function(t){var e=t.findComponents({mainType:"legend"});e&&e.length&&t.filterSeries(function(t){for(var n=0;n<e.length;n++)if(!e[n].isSelected(t.name))return!1;return!0})}},Npv3:function(t,e,n){var i=n("A5tq"),r=n("nWxm"),o=n("Lk3r"),a="\0_ec_dataZoom_roams";function s(t){var e=t.getZr();return e[a]||(e[a]={})}function A(t){i.each(t,function(e,n){e.count||(e.controller.dispose(),delete t[n])})}function l(t,e){t.dispatchAction({type:"dataZoom",batch:e})}e.register=function(t,e){var n=s(t),a=e.dataZoomId,c=e.coordId;i.each(n,function(t,n){var r=t.dataZoomInfos;r[a]&&i.indexOf(e.allCoordIds,c)<0&&(delete r[a],t.count--)}),A(n);var u=n[c];u||((u=n[c]={coordId:c,dataZoomInfos:{},count:0}).controller=function(t,e){var n=new r(t.getZr());return i.each(["pan","zoom","scrollMove"],function(t){n.on(t,function(n){var r=[];i.each(e.dataZoomInfos,function(i){if(n.isAvailableBehavior(i.dataZoomModel.option)){var o=(i.getRange||{})[t],a=o&&o(e.controller,n);!i.dataZoomModel.get("disabled",!0)&&a&&r.push({dataZoomId:i.dataZoomId,start:a[0],end:a[1]})}}),r.length&&e.dispatchAction(r)})}),n}(t,u),u.dispatchAction=i.curry(l,t)),!u.dataZoomInfos[a]&&u.count++,u.dataZoomInfos[a]=e;var h,d,f,p,g=(h=u.dataZoomInfos,f={type_true:2,type_move:1,type_false:0,type_undefined:-1},p=!0,i.each(h,function(t){var e=t.dataZoomModel,n=!e.get("disabled",!0)&&(!e.get("zoomLock",!0)||"move");f["type_"+n]>f["type_"+d]&&(d=n),p&=e.get("preventDefaultMouseMove",!0)}),{controlType:d,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!p}});u.controller.enable(g.controlType,g.opt),u.controller.setPointerChecker(e.containsPoint),o.createOrUpdate(u,"dispatchAction",e.dataZoomModel.get("throttle",!0),"fixRate")},e.unregister=function(t,e){var n=s(t);i.each(n,function(t){t.controller.dispose();var n=t.dataZoomInfos;n[e]&&(delete n[e],t.count--)}),A(n)},e.generateCoordId=function(t){return t.type+"\0_"+t.id}},O3CB:function(t,e,n){var i=n("sutA"),r=n("7iGl"),o=n("5P5h"),a=r.toolbox.saveAsImage;function s(t){this.model=t}s.defaultOption={show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:a.title,type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],pixelRatio:1,lang:a.lang.slice()},s.prototype.unusable=!i.canvasSupported,s.prototype.onclick=function(t,e){var n=this.model,r=n.get("name")||t.get("title.0.text")||"echarts",o="svg"===e.getZr().painter.getType()?"svg":n.get("type",!0)||"png",a=e.getConnectedDataURL({type:o,backgroundColor:n.get("backgroundColor",!0)||t.get("backgroundColor")||"#fff",connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")});if("function"!=typeof MouseEvent||i.browser.ie||i.browser.edge)if(window.navigator.msSaveOrOpenBlob){for(var s=atob(a.split(",")[1]),A=s.length,l=new Uint8Array(A);A--;)l[A]=s.charCodeAt(A);var c=new Blob([l]);window.navigator.msSaveOrOpenBlob(c,r+"."+o)}else{var u=n.get("lang"),h='<body style="margin:0;"><img src="'+a+'" style="max-width:100%;" title="'+(u&&u[0]||"")+'" /></body>';window.open().document.write(h)}else{var d=document.createElement("a");d.download=r+"."+o,d.target="_blank",d.href=a;var f=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});d.dispatchEvent(f)}},o.register("saveAsImage",s);var A=s;t.exports=A},O43R:function(t,e,n){var i=n("ogql");e.zrender=i;var r=n("yW06");e.matrix=r;var o=n("lbYD");e.vector=o;var a=n("A5tq"),s=n("dyFL");e.color=s;var A=n("bDs9"),l=n("w9uD");e.number=l;var c=n("DWNL");e.format=c;var u=n("Lk3r");u.throttle;e.throttle=u.throttle;var h=n("XJ9t");e.helper=h;var d=n("wFBG");e.parseGeoJSON=d;var f=n("h17e");e.List=f;var p=n("K3bJ");e.Model=p;var g=n("m9W5");e.Axis=g;var m=n("sutA");e.env=m;var v=d,y={};a.each(["map","each","filter","indexOf","inherits","reduce","filter","bind","curry","isArray","isString","isObject","isFunction","extend","defaults","clone","merge"],function(t){y[t]=a[t]});var w={};a.each(["extendShape","extendPath","makePath","makeImage","mergePath","resizePath","createIcon","setHoverStyle","setLabelStyle","setTextStyle","setText","getFont","updateProps","initProps","getTransform","clipPointsByRect","clipRectByRect","registerShape","getShapeClass","Group","Image","Text","Circle","Sector","Ring","Polygon","Polyline","Rect","Line","BezierCurve","Arc","IncrementalDisplayable","CompoundPath","LinearGradient","RadialGradient","BoundingRect"],function(t){w[t]=A[t]}),e.parseGeoJson=v,e.util=y,e.graphic=w},O8tp:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("t+aF"),a=n("65+t").defaultEmphasis,s=n("PVav").makeSeriesEncodeForNameBased,A=n("dBJA"),l=i.extendSeriesModel({type:"series.funnel",init:function(t){l.superApply(this,"init",arguments),this.legendVisualProvider=new A(r.bind(this.getData,this),r.bind(this.getRawData,this)),this._defaultLabelLine(t)},getInitialData:function(t,e){return o(this,{coordDimensions:["value"],encodeDefaulter:r.curry(s,this)})},_defaultLabelLine:function(t){a(t,"labelLine",["show"]);var e=t.labelLine,n=t.emphasis.labelLine;e.show=e.show&&t.label.show,n.show=n.show&&t.emphasis.label.show},getDataParams:function(t){var e=this.getData(),n=l.superCall(this,"getDataParams",t),i=e.mapDimension("value"),r=e.getSum(i);return n.percent=r?+(e.get(i,t)/r*100).toFixed(2):0,n.$vars.push("percent"),n},defaultOption:{zlevel:0,z:2,legendHoverLink:!0,left:80,top:60,right:80,bottom:60,minSize:"0%",maxSize:"100%",sort:"descending",orient:"vertical",gap:0,funnelAlign:"center",label:{show:!0,position:"outer"},labelLine:{show:!0,length:20,lineStyle:{width:1,type:"solid"}},itemStyle:{borderColor:"#fff",borderWidth:1},emphasis:{label:{show:!0}}}}),c=l;t.exports=c},OD9Z:function(t,e,n){var i=n("p+Y8"),r=n("0eFd");e.buildPath=function(t,e,n){var o=e.points,a=e.smooth;if(o&&o.length>=2){if(a&&"spline"!==a){var s=r(o,a,n,e.smoothConstraint);t.moveTo(o[0][0],o[0][1]);for(var A=o.length,l=0;l<(n?A:A-1);l++){var c=s[2*l],u=s[2*l+1],h=o[(l+1)%A];t.bezierCurveTo(c[0],c[1],u[0],u[1],h[0],h[1])}}else{"spline"===a&&(o=i(o,n)),t.moveTo(o[0][0],o[0][1]),l=1;for(var d=o.length;l<d;l++)t.lineTo(o[l][0],o[l][1])}n&&t.closePath()}}},OHxl:function(t,e,n){var i=n("A5tq"),r=n("f+YC").createSymbol,o=n("bDs9").Group,a=n("w9uD").parsePercent,s=n("2KC6");function A(t,e){var n=e.rippleEffectColor||e.color;t.eachChild(function(t){t.attr({z:e.z,zlevel:e.zlevel,style:{stroke:"stroke"===e.brushType?n:null,fill:"fill"===e.brushType?n:null}})})}function l(t,e){o.call(this);var n=new s(t,e),i=new o;this.add(n),this.add(i),i.beforeUpdate=function(){this.attr(n.getScale())},this.updateData(t,e)}var c=l.prototype;c.stopEffectAnimation=function(){this.childAt(1).removeAll()},c.startEffectAnimation=function(t){for(var e=t.symbolType,n=t.color,i=this.childAt(1),o=0;o<3;o++){var a=r(e,-1,-1,2,2,n);a.attr({style:{strokeNoScale:!0},z2:99,silent:!0,scale:[.5,.5]});var s=-o/3*t.period+t.effectOffset;a.animate("",!0).when(t.period,{scale:[t.rippleScale/2,t.rippleScale/2]}).delay(s).start(),a.animateStyle(!0).when(t.period,{opacity:0}).delay(s).start(),i.add(a)}A(i,t)},c.updateEffectAnimation=function(t){for(var e=this._effectCfg,n=this.childAt(1),i=["symbolType","period","rippleScale"],r=0;r<i.length;r++){var o=i[r];if(e[o]!==t[o])return this.stopEffectAnimation(),void this.startEffectAnimation(t)}A(n,t)},c.highlight=function(){this.trigger("emphasis")},c.downplay=function(){this.trigger("normal")},c.updateData=function(t,e){var n=t.hostModel;this.childAt(0).updateData(t,e);var r=this.childAt(1),o=t.getItemModel(e),s=t.getItemVisual(e,"symbol"),A=function(t){return i.isArray(t)||(t=[+t,+t]),t}(t.getItemVisual(e,"symbolSize")),l=t.getItemVisual(e,"color");r.attr("scale",A),r.traverse(function(t){t.attr({fill:l})});var c=o.getShallow("symbolOffset");if(c){var u=r.position;u[0]=a(c[0],A[0]),u[1]=a(c[1],A[1])}var h=t.getItemVisual(e,"symbolRotate");r.rotation=(h||0)*Math.PI/180||0;var d={};if(d.showEffectOn=n.get("showEffectOn"),d.rippleScale=o.get("rippleEffect.scale"),d.brushType=o.get("rippleEffect.brushType"),d.period=1e3*o.get("rippleEffect.period"),d.effectOffset=e/t.count(),d.z=o.getShallow("z")||0,d.zlevel=o.getShallow("zlevel")||0,d.symbolType=s,d.color=l,d.rippleEffectColor=o.get("rippleEffect.color"),this.off("mouseover").off("mouseout").off("emphasis").off("normal"),"render"===d.showEffectOn)this._effectCfg?this.updateEffectAnimation(d):this.startEffectAnimation(d),this._effectCfg=d;else{this._effectCfg=null,this.stopEffectAnimation();var f=this.childAt(0),p=function(){f.highlight(),"render"!==d.showEffectOn&&this.startEffectAnimation(d)},g=function(){f.downplay(),"render"!==d.showEffectOn&&this.stopEffectAnimation()};this.on("mouseover",p,this).on("mouseout",g,this).on("emphasis",p,this).on("normal",g,this)}this._effectCfg=d},c.fadeOut=function(t){this.off("mouseover").off("mouseout").off("emphasis").off("normal"),t&&t()},i.inherits(l,o);var u=l;t.exports=u},OK92:function(t,e){function n(t){return t instanceof Array||(t=[t,t]),t}t.exports=function(t){t.eachSeriesByType("graph",function(t){var e=t.getGraph(),i=t.getEdgeData(),r=n(t.get("edgeSymbol")),o=n(t.get("edgeSymbolSize")),a="lineStyle.color".split("."),s="lineStyle.opacity".split(".");i.setVisual("fromSymbol",r&&r[0]),i.setVisual("toSymbol",r&&r[1]),i.setVisual("fromSymbolSize",o&&o[0]),i.setVisual("toSymbolSize",o&&o[1]),i.setVisual("color",t.get(a)),i.setVisual("opacity",t.get(s)),i.each(function(t){var r=i.getItemModel(t),o=e.getEdgeByIndex(t),A=n(r.getShallow("symbol",!0)),l=n(r.getShallow("symbolSize",!0)),c=r.get(a),u=r.get(s);switch(c){case"source":c=o.node1.getVisual("color");break;case"target":c=o.node2.getVisual("color")}A[0]&&o.setVisual("fromSymbol",A[0]),A[1]&&o.setVisual("toSymbol",A[1]),l[0]&&o.setVisual("fromSymbolSize",l[0]),l[1]&&o.setVisual("toSymbolSize",l[1]),o.setVisual("color",c),o.setVisual("opacity",u)})})}},OVjb:function(t,e,n){"use strict";var i=n("ywUT");t.exports=function(t,e){i.forEach(t,function(n,i){i!==e&&i.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[i])})}},Oz4x:function(t,e,n){var i=n("A5tq"),r=n("yW06"),o=n("rhmo"),a=n("eII0"),s=n("Ir9s"),A=n("bDs9"),l=n("w9uD"),c=n("BGuy"),u=i.each,h=Math.min,d=Math.max,f=Math.floor,p=Math.ceil,g=l.round,m=Math.PI;function v(t,e,n){this._axesMap=i.createHashMap(),this._axesLayout={},this.dimensions=t.dimensions,this._rect,this._model=t,this._init(t,e,n)}function y(t,e){return h(d(t,e[0]),e[1])}v.prototype={type:"parallel",constructor:v,_init:function(t,e,n){var i=t.dimensions,r=t.parallelAxisIndex;u(i,function(t,n){var i=r[n],o=e.getComponent("parallelAxis",i),A=this._axesMap.set(t,new s(t,a.createScaleByModel(o),[0,0],o.get("type"),i)),l="category"===A.type;A.onBand=l&&o.get("boundaryGap"),A.inverse=o.get("inverse"),o.axis=A,A.model=o,A.coordinateSystem=o.coordinateSystem=this},this)},update:function(t,e){this._updateAxesFromSeries(this._model,t)},containPoint:function(t){var e=this._makeLayoutInfo(),n=e.axisBase,i=e.layoutBase,r=e.pixelDimIndex,o=t[1-r],a=t[r];return o>=n&&o<=n+e.axisLength&&a>=i&&a<=i+e.layoutLength},getModel:function(){return this._model},_updateAxesFromSeries:function(t,e){e.eachSeries(function(n){if(t.contains(n,e)){var i=n.getData();u(this.dimensions,function(t){var e=this._axesMap.get(t);e.scale.unionExtentFromData(i,i.mapDimension(t)),a.niceScaleExtent(e.scale,e.model)},this)}},this)},resize:function(t,e){this._rect=o.getLayoutRect(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()}),this._layoutAxes()},getRect:function(){return this._rect},_makeLayoutInfo:function(){var t,e=this._model,n=this._rect,i=["x","y"],r=["width","height"],o=e.get("layout"),a="horizontal"===o?0:1,s=n[r[a]],A=[0,s],l=this.dimensions.length,c=y(e.get("axisExpandWidth"),A),u=y(e.get("axisExpandCount")||0,[0,l]),h=e.get("axisExpandable")&&l>3&&l>u&&u>1&&c>0&&s>0,d=e.get("axisExpandWindow");d?(t=y(d[1]-d[0],A),d[1]=d[0]+t):(t=y(c*(u-1),A),(d=[c*(e.get("axisExpandCenter")||f(l/2))-t/2])[1]=d[0]+t);var m=(s-t)/(l-u);m<3&&(m=0);var v=[f(g(d[0]/c,1))+1,p(g(d[1]/c,1))-1],w=m/c*d[0];return{layout:o,pixelDimIndex:a,layoutBase:n[i[a]],layoutLength:s,axisBase:n[i[1-a]],axisLength:n[r[1-a]],axisExpandable:h,axisExpandWidth:c,axisCollapseWidth:m,axisExpandWindow:d,axisCount:l,winInnerIndices:v,axisExpandWindow0Pos:w}},_layoutAxes:function(){var t=this._rect,e=this._axesMap,n=this.dimensions,i=this._makeLayoutInfo(),o=i.layout;e.each(function(t){var e=[0,i.axisLength],n=t.inverse?1:0;t.setExtent(e[n],e[1-n])}),u(n,function(e,n){var a=(i.axisExpandable?function(t,e){var n,i,r=e.layoutLength,o=e.axisExpandWidth,a=e.axisCount,s=e.axisCollapseWidth,A=e.winInnerIndices,l=s,c=!1;t<A[0]?(n=t*s,i=s):t<=A[1]?(n=e.axisExpandWindow0Pos+t*o-e.axisExpandWindow[0],l=o,c=!0):(n=r-(a-1-t)*s,i=s);return{position:n,axisNameAvailableWidth:l,axisLabelShow:c,nameTruncateMaxWidth:i}}:function(t,e){var n=e.layoutLength/(e.axisCount-1);return{position:n*t,axisNameAvailableWidth:n,axisLabelShow:!0}})(n,i),s={horizontal:{x:a.position,y:i.axisLength},vertical:{x:0,y:a.position}},A={horizontal:m/2,vertical:0},l=[s[o].x+t.x,s[o].y+t.y],c=A[o],u=r.create();r.rotate(u,u,c),r.translate(u,u,l),this._axesLayout[e]={position:l,rotation:c,transform:u,axisNameAvailableWidth:a.axisNameAvailableWidth,axisLabelShow:a.axisLabelShow,nameTruncateMaxWidth:a.nameTruncateMaxWidth,tickDirection:1,labelDirection:1}},this)},getAxis:function(t){return this._axesMap.get(t)},dataToPoint:function(t,e){return this.axisCoordToPoint(this._axesMap.get(e).dataToCoord(t),e)},eachActiveState:function(t,e,n,r){null==n&&(n=0),null==r&&(r=t.count());var o=this._axesMap,a=this.dimensions,s=[],A=[];i.each(a,function(e){s.push(t.mapDimension(e)),A.push(o.get(e).model)});for(var l=this.hasAxisBrushed(),c=n;c<r;c++){var u;if(l){u="active";for(var h=t.getValues(s,c),d=0,f=a.length;d<f;d++){if("inactive"===A[d].getActiveState(h[d])){u="inactive";break}}}else u="normal";e(u,c)}},hasAxisBrushed:function(){for(var t=this.dimensions,e=this._axesMap,n=!1,i=0,r=t.length;i<r;i++)"normal"!==e.get(t[i]).model.getActiveState()&&(n=!0);return n},axisCoordToPoint:function(t,e){var n=this._axesLayout[e];return A.applyTransform([t,0],n.transform)},getAxisLayout:function(t){return i.clone(this._axesLayout[t])},getSlidedAxisExpandWindow:function(t){var e=this._makeLayoutInfo(),n=e.pixelDimIndex,i=e.axisExpandWindow.slice(),r=i[1]-i[0],o=[0,e.axisExpandWidth*(e.axisCount-1)];if(!this.containPoint(t))return{behavior:"none",axisExpandWindow:i};var a,s=t[n]-e.layoutBase-e.axisExpandWindow0Pos,A="slide",l=e.axisCollapseWidth,u=this._model.get("axisExpandSlideTriggerArea"),f=null!=u[0];if(l)f&&l&&s<r*u[0]?(A="jump",a=s-r*u[2]):f&&l&&s>r*(1-u[0])?(A="jump",a=s-r*(1-u[2])):(a=s-r*u[1])>=0&&(a=s-r*(1-u[1]))<=0&&(a=0),(a*=e.axisExpandWidth/l)?c(a,i,o,"all"):A="none";else{r=i[1]-i[0];(i=[d(0,o[1]*s/r-r/2)])[1]=h(o[1],i[0]+r),i[0]=i[1]-r}return{axisExpandWindow:i,behavior:A}}};var w=v;t.exports=w},P12f:function(t,e,n){var i=n("A5tq"),r=n("9nPt"),o=n("VQWz").seriesModelMixin,a=r.extend({type:"series.boxplot",dependencies:["xAxis","yAxis","grid"],defaultValueDimensions:[{name:"min",defaultTooltip:!0},{name:"Q1",defaultTooltip:!0},{name:"median",defaultTooltip:!0},{name:"Q3",defaultTooltip:!0},{name:"max",defaultTooltip:!0}],dimensions:null,defaultOption:{zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,hoverAnimation:!0,layout:null,boxWidth:[7,50],itemStyle:{color:"#fff",borderWidth:1},emphasis:{itemStyle:{borderWidth:2,shadowBlur:5,shadowOffsetX:2,shadowOffsetY:2,shadowColor:"rgba(0,0,0,0.4)"}},animationEasing:"elasticOut",animationDuration:800}});i.mixin(a,o,!0);var s=a;t.exports=s},P5TW:function(t,e,n){var i=n("loyO"),r=n("ZVMY"),o=n("7xhy"),a=n("BzcN");i.extendChartView({type:"scatter",render:function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).updateData(i,{clipShape:this._getClipShape(t)}),this._finished=!0},incrementalPrepareRender:function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).incrementalPrepareUpdate(i),this._finished=!1},incrementalRender:function(t,e,n){this._symbolDraw.incrementalUpdate(t,e.getData(),{clipShape:this._getClipShape(e)}),this._finished=t.end===e.getData().count()},updateTransform:function(t,e,n){var i=t.getData();if(this.group.dirty(),!this._finished||i.count()>1e4||!this._symbolDraw.isPersistent())return{update:!0};var r=a().reset(t);r.progress&&r.progress({start:0,end:i.count()},i),this._symbolDraw.updateLayout(i)},_getClipShape:function(t){var e=t.coordinateSystem,n=e&&e.getArea&&e.getArea();return t.get("clip",!0)?n:null},_updateSymbolDraw:function(t,e){var n=this._symbolDraw,i=e.pipelineContext.large;return n&&i===this._isLargeDraw||(n&&n.remove(),n=this._symbolDraw=i?new o:new r,this._isLargeDraw=i,this.group.removeAll()),this.group.add(n.group),n},remove:function(t,e){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},dispose:function(){}})},PN6Y:function(t,e){var n="http://www.w3.org/2000/svg";e.createElement=function(t){return document.createElementNS(n,t)}},PVav:function(t,e,n){n("roIn").__DEV__;var i=n("65+t"),r=i.makeInner,o=i.getDataItemValue,a=n("A5tq"),s=a.createHashMap,A=a.each,l=a.map,c=a.isArray,u=a.isString,h=a.isObject,d=a.isTypedArray,f=a.isArrayLike,p=a.extend,g=(a.assert,n("9i2m")),m=n("m1ec"),v=m.SOURCE_FORMAT_ORIGINAL,y=m.SOURCE_FORMAT_ARRAY_ROWS,w=m.SOURCE_FORMAT_OBJECT_ROWS,x=m.SOURCE_FORMAT_KEYED_COLUMNS,B=m.SOURCE_FORMAT_UNKNOWN,b=m.SOURCE_FORMAT_TYPED_ARRAY,C=m.SERIES_LAYOUT_BY_ROW,_={Must:1,Might:2,Not:3},S=r();function I(t){if(t){var e=s();return l(t,function(t,n){if(null==(t=p({},h(t)?t:{name:t})).name)return t;t.name+="",null==t.displayName&&(t.displayName=t.name);var i=e.get(t.name);return i?t.name+="-"+i.count++:e.set(t.name,{count:1}),t})}}function T(t,e,n,i){if(null==i&&(i=1/0),e===C)for(var r=0;r<n.length&&r<i;r++)t(n[r]?n[r][0]:null,r);else{var o=n[0]||[];for(r=0;r<o.length&&r<i;r++)t(o[r],r)}}function M(t){var e=t.option;if(!e.data)return t.ecModel.getComponent("dataset",e.datasetIndex||0)}function Q(t,e,n,i,r,a){var s,A,l;if(d(t))return _.Not;if(i){var f=i[a];h(f)?(A=f.name,l=f.type):u(f)&&(A=f)}if(null!=l)return"ordinal"===l?_.Must:_.Not;if(e===y)if(n===C){for(var p=t[a],g=0;g<(p||[]).length&&g<5;g++)if(null!=(s=S(p[r+g])))return s}else for(g=0;g<t.length&&g<5;g++){var m=t[r+g];if(m&&null!=(s=S(m[a])))return s}else if(e===w){if(!A)return _.Not;for(g=0;g<t.length&&g<5;g++){if((B=t[g])&&null!=(s=S(B[A])))return s}}else if(e===x){if(!A)return _.Not;if(!(p=t[A])||d(p))return _.Not;for(g=0;g<p.length&&g<5;g++)if(null!=(s=S(p[g])))return s}else if(e===v)for(g=0;g<t.length&&g<5;g++){var B=t[g],b=o(B);if(!c(b))return _.Not;if(null!=(s=S(b[a])))return s}function S(t){var e=u(t);return null!=t&&isFinite(t)&&""!==t?e?_.Might:_.Not:e&&"-"!==t?_.Must:void 0}return _.Not}e.BE_ORDINAL=_,e.detectSourceFormat=function(t){var e=t.option.source,n=B;if(d(e))n=b;else if(c(e)){0===e.length&&(n=y);for(var i=0,r=e.length;i<r;i++){var o=e[i];if(null!=o){if(c(o)){n=y;break}if(h(o)){n=w;break}}}}else if(h(e)){for(var a in e)if(e.hasOwnProperty(a)&&f(e[a])){n=x;break}}else if(null!=e)throw new Error("Invalid data");S(t).sourceFormat=n},e.getSource=function(t){return S(t).source},e.resetSourceDefaulter=function(t){S(t).datasetMap=s()},e.prepareSource=function(t){var e=t.option,n=e.data,i=d(n)?b:v,r=!1,a=e.seriesLayoutBy,s=e.sourceHeader,l=e.dimensions,h=M(t);if(h){var f=h.option;n=f.source,i=S(h).sourceFormat,r=!0,a=a||f.seriesLayoutBy,null==s&&(s=f.sourceHeader),l=l||f.dimensions}var p=function(t,e,n,i,r){if(!t)return{dimensionsDefine:I(r)};var a,s;if(e===y)"auto"===i||null==i?T(function(t){null!=t&&"-"!==t&&(u(t)?null==s&&(s=1):s=0)},n,t,10):s=i?1:0,r||1!==s||(r=[],T(function(t,e){r[e]=null!=t?t:""},n,t)),a=r?r.length:n===C?t.length:t[0]?t[0].length:null;else if(e===w)r||(r=function(t){for(var e,n=0;n<t.length&&!(e=t[n++]););if(e){var i=[];return A(e,function(t,e){i.push(e)}),i}}(t));else if(e===x)r||(r=[],A(t,function(t,e){r.push(e)}));else if(e===v){var l=o(t[0]);a=c(l)&&l.length||1}return{startIndex:s,dimensionsDefine:I(r),dimensionsDetectCount:a}}(n,i,a,s,l);S(t).source=new g({data:n,fromDataset:r,seriesLayoutBy:a,sourceFormat:i,dimensionsDefine:p.dimensionsDefine,startIndex:p.startIndex,dimensionsDetectCount:p.dimensionsDetectCount,encodeDefine:e.encode})},e.makeSeriesEncodeForAxisCoordSys=function(t,e,n){var i={},r=M(e);if(!r||!t)return i;var o,a,s=[],l=[],c=e.ecModel,u=S(c).datasetMap,d=r.uid+"_"+n.seriesLayoutBy;t=t.slice(),A(t,function(e,n){!h(e)&&(t[n]={name:e}),"ordinal"===e.type&&null==o&&(o=n,a=g(t[n])),i[e.name]=[]});var f=u.get(d)||u.set(d,{categoryWayDim:a,valueWayDim:0});function p(t,e,n){for(var i=0;i<n;i++)t.push(e+i)}function g(t){var e=t.dimsDef;return e?e.length:1}return A(t,function(t,e){var n=t.name,r=g(t);if(null==o){var a=f.valueWayDim;p(i[n],a,r),p(l,a,r),f.valueWayDim+=r}else o===e?(p(i[n],0,r),p(s,0,r)):(a=f.categoryWayDim,p(i[n],a,r),p(l,a,r),f.categoryWayDim+=r)}),s.length&&(i.itemName=s),l.length&&(i.seriesName=l),i},e.makeSeriesEncodeForNameBased=function(t,e,n){var i={};if(!M(t))return i;var r,o=e.sourceFormat,a=e.dimensionsDefine;o!==w&&o!==x||A(a,function(t,e){"name"===(h(t)?t.name:t)&&(r=e)});var s=function(){for(var t={},i={},s=[],A=0,l=Math.min(5,n);A<l;A++){var c=Q(e.data,o,e.seriesLayoutBy,a,e.startIndex,A);s.push(c);var u=c===_.Not;if(u&&null==t.v&&A!==r&&(t.v=A),(null==t.n||t.n===t.v||!u&&s[t.n]===_.Not)&&(t.n=A),h(t)&&s[t.n]!==_.Not)return t;u||(c===_.Might&&null==i.v&&A!==r&&(i.v=A),null!=i.n&&i.n!==i.v||(i.n=A))}function h(t){return null!=t.v&&null!=t.n}return h(t)?t:h(i)?i:null}();if(s){i.value=s.v;var l=null!=r?r:s.n;i.itemName=[l],i.seriesName=[l]}return i},e.guessOrdinal=function(t,e){return Q(t.data,t.sourceFormat,t.seriesLayoutBy,t.dimensionsDefine,t.startIndex,e)}},PY5U:function(t,e,n){var i=n("loyO");n("LlZA"),n("TEoi");var r=n("ETGR"),o=n("h5rJ");i.registerLayout(r),i.registerVisual(o)},PjV0:function(t,e,n){var i=n("A5tq"),r=n("Gkcz"),o=n("rhmo"),a=o.getLayoutParams,s=o.sizeCalculable,A=o.mergeLayoutParam,l=r.extend({type:"calendar",coordinateSystem:null,defaultOption:{zlevel:0,z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:"#000",width:1,type:"solid"}},itemStyle:{color:"#fff",borderWidth:1,borderColor:"#ccc"},dayLabel:{show:!0,firstDay:0,position:"start",margin:"50%",nameMap:"en",color:"#000"},monthLabel:{show:!0,position:"start",margin:5,align:"center",nameMap:"en",formatter:null,color:"#000"},yearLabel:{show:!0,position:null,margin:30,formatter:null,color:"#ccc",fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},init:function(t,e,n,i){var r=a(t);l.superApply(this,"init",arguments),c(t,r)},mergeOption:function(t,e){l.superApply(this,"mergeOption",arguments),c(this.option,t)}});function c(t,e){var n=t.cellSize;i.isArray(n)?1===n.length&&(n[1]=n[0]):n=t.cellSize=[n,n];var r=i.map([0,1],function(t){return s(e,t)&&(n[t]="auto"),null!=n[t]&&"auto"!==n[t]});A(t,e,{type:"box",ignoreSize:r})}var u=l;t.exports=u},Pkpq:function(t,e){var n={linear:function(t){return t},quadraticIn:function(t){return t*t},quadraticOut:function(t){return t*(2-t)},quadraticInOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)},cubicIn:function(t){return t*t*t},cubicOut:function(t){return--t*t*t+1},cubicInOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},quarticIn:function(t){return t*t*t*t},quarticOut:function(t){return 1- --t*t*t*t},quarticInOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)},quinticIn:function(t){return t*t*t*t*t},quinticOut:function(t){return--t*t*t*t*t+1},quinticInOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},sinusoidalIn:function(t){return 1-Math.cos(t*Math.PI/2)},sinusoidalOut:function(t){return Math.sin(t*Math.PI/2)},sinusoidalInOut:function(t){return.5*(1-Math.cos(Math.PI*t))},exponentialIn:function(t){return 0===t?0:Math.pow(1024,t-1)},exponentialOut:function(t){return 1===t?1:1-Math.pow(2,-10*t)},exponentialInOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))},circularIn:function(t){return 1-Math.sqrt(1-t*t)},circularOut:function(t){return Math.sqrt(1- --t*t)},circularInOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},elasticIn:function(t){var e,n=.1;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),-n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/.4))},elasticOut:function(t){var e,n=.1;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),n*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/.4)+1)},elasticInOut:function(t){var e,n=.1;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),(t*=2)<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/.4)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/.4)*.5+1)},backIn:function(t){var e=1.70158;return t*t*((e+1)*t-e)},backOut:function(t){var e=1.70158;return--t*t*((e+1)*t+e)+1},backInOut:function(t){var e=2.5949095;return(t*=2)<1?t*t*((e+1)*t-e)*.5:.5*((t-=2)*t*((e+1)*t+e)+2)},bounceIn:function(t){return 1-n.bounceOut(1-t)},bounceOut:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},bounceInOut:function(t){return t<.5?.5*n.bounceIn(2*t):.5*n.bounceOut(2*t-1)+.5}},i=n;t.exports=i},PrQC:function(t,e,n){var i=n("GhzX").retrieveRawValue,r=n("DWNL"),o=r.getTooltipMarker,a=r.formatTpl,s=n("65+t").getTooltipRenderMode,A=/\{@(.+?)\}/g,l={getDataParams:function(t,e){var n=this.getData(e),i=this.getRawValue(t,e),r=n.getRawIndex(t),a=n.getName(t),A=n.getRawDataItem(t),l=n.getItemVisual(t,"color"),c=n.getItemVisual(t,"borderColor"),u=this.ecModel.getComponent("tooltip"),h=u&&u.get("renderMode"),d=s(h),f=this.mainType,p="series"===f,g=n.userOutput;return{componentType:f,componentSubType:this.subType,componentIndex:this.componentIndex,seriesType:p?this.subType:null,seriesIndex:this.seriesIndex,seriesId:p?this.id:null,seriesName:p?this.name:null,name:a,dataIndex:r,data:A,dataType:e,value:i,color:l,borderColor:c,dimensionNames:g?g.dimensionNames:null,encode:g?g.encode:null,marker:o({color:l,renderMode:d}),$vars:["seriesName","name","value"]}},getFormattedLabel:function(t,e,n,r,o){e=e||"normal";var s=this.getData(n),l=s.getItemModel(t),c=this.getDataParams(t,n);null!=r&&c.value instanceof Array&&(c.value=c.value[r]);var u=l.get("normal"===e?[o||"label","formatter"]:[e,o||"label","formatter"]);return"function"==typeof u?(c.status=e,c.dimensionIndex=r,u(c)):"string"==typeof u?a(u,c).replace(A,function(e,n){var r=n.length;return"["===n.charAt(0)&&"]"===n.charAt(r-1)&&(n=+n.slice(1,r-1)),i(s,t,n)}):void 0},getRawValue:function(t,e){return i(this.getData(e),t)},formatTooltip:function(){}};t.exports=l},Q1ps:function(t,e,n){var i=n("A5tq"),r=n("rz0F"),o=n("r+KN"),a=function(t){for(var e in t=t||{},r.call(this,t),t)t.hasOwnProperty(e)&&(this[e]=t[e]);this._children=[],this.__storage=null,this.__dirty=!0};a.prototype={constructor:a,isGroup:!0,type:"group",silent:!1,children:function(){return this._children.slice()},childAt:function(t){return this._children[t]},childOfName:function(t){for(var e=this._children,n=0;n<e.length;n++)if(e[n].name===t)return e[n]},childCount:function(){return this._children.length},add:function(t){return t&&t!==this&&t.parent!==this&&(this._children.push(t),this._doAdd(t)),this},addBefore:function(t,e){if(t&&t!==this&&t.parent!==this&&e&&e.parent===this){var n=this._children,i=n.indexOf(e);i>=0&&(n.splice(i,0,t),this._doAdd(t))}return this},_doAdd:function(t){t.parent&&t.parent.remove(t),t.parent=this;var e=this.__storage,n=this.__zr;e&&e!==t.__storage&&(e.addToStorage(t),t instanceof a&&t.addChildrenToStorage(e)),n&&n.refresh()},remove:function(t){var e=this.__zr,n=this.__storage,r=this._children,o=i.indexOf(r,t);return o<0?this:(r.splice(o,1),t.parent=null,n&&(n.delFromStorage(t),t instanceof a&&t.delChildrenFromStorage(n)),e&&e.refresh(),this)},removeAll:function(){var t,e,n=this._children,i=this.__storage;for(e=0;e<n.length;e++)t=n[e],i&&(i.delFromStorage(t),t instanceof a&&t.delChildrenFromStorage(i)),t.parent=null;return n.length=0,this},eachChild:function(t,e){for(var n=this._children,i=0;i<n.length;i++){var r=n[i];t.call(e,r,i)}return this},traverse:function(t,e){for(var n=0;n<this._children.length;n++){var i=this._children[n];t.call(e,i),"group"===i.type&&i.traverse(t,e)}return this},addChildrenToStorage:function(t){for(var e=0;e<this._children.length;e++){var n=this._children[e];t.addToStorage(n),n instanceof a&&n.addChildrenToStorage(t)}},delChildrenFromStorage:function(t){for(var e=0;e<this._children.length;e++){var n=this._children[e];t.delFromStorage(n),n instanceof a&&n.delChildrenFromStorage(t)}},dirty:function(){return this.__dirty=!0,this.__zr&&this.__zr.refresh(),this},getBoundingRect:function(t){for(var e=null,n=new o(0,0,0,0),i=t||this._children,r=[],a=0;a<i.length;a++){var s=i[a];if(!s.ignore&&!s.invisible){var A=s.getBoundingRect(),l=s.getLocalTransform(r);l?(n.copy(A),n.applyTransform(l),(e=e||n.clone()).union(n)):(e=e||A.clone()).union(A)}}return e||n}},i.inherits(a,r);var s=a;t.exports=s},Q49S:function(t,e,n){var i=n("A5tq"),r=n("h17e"),o=n("uJ/S"),a=n("3mmk"),s=n("quuH"),A=n("TJcz"),l=n("kCsp");t.exports=function(t,e,n,c,u){for(var h=new o(c),d=0;d<t.length;d++)h.addNode(i.retrieve(t[d].id,t[d].name,d),d);var f=[],p=[],g=0;for(d=0;d<e.length;d++){var m=e[d],v=m.source,y=m.target;h.addEdge(v,y,g)&&(p.push(m),f.push(i.retrieve(m.id,v+" > "+y)),g++)}var w,x=n.get("coordinateSystem");if("cartesian2d"===x||"polar"===x)w=l(t,n);else{var B=A.get(x),b=B&&"view"!==B.type&&B.dimensions||[];i.indexOf(b,"value")<0&&b.concat(["value"]);var C=s(t,{coordDimensions:b});(w=new r(C,n)).initData(t)}var _=new r(["value"],n);return _.initData(p,f),u&&u(w,_),a({mainData:w,struct:h,structAttr:"graph",datas:{node:w,edge:_},datasAttr:{node:"data",edge:"edgeData"}}),h.update(),h}},QS40:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=i.createHashMap,o=(i.retrieve,i.each);var a={cartesian2d:function(t,e,n,i){var r=t.getReferringComponents("xAxis")[0],o=t.getReferringComponents("yAxis")[0];e.coordSysDims=["x","y"],n.set("x",r),n.set("y",o),s(r)&&(i.set("x",r),e.firstCategoryDimIndex=0),s(o)&&(i.set("y",o),e.firstCategoryDimIndex,e.firstCategoryDimIndex=1)},singleAxis:function(t,e,n,i){var r=t.getReferringComponents("singleAxis")[0];e.coordSysDims=["single"],n.set("single",r),s(r)&&(i.set("single",r),e.firstCategoryDimIndex=0)},polar:function(t,e,n,i){var r=t.getReferringComponents("polar")[0],o=r.findAxisModel("radiusAxis"),a=r.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),s(o)&&(i.set("radius",o),e.firstCategoryDimIndex=0),s(a)&&(i.set("angle",a),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},geo:function(t,e,n,i){e.coordSysDims=["lng","lat"]},parallel:function(t,e,n,i){var r=t.ecModel,a=r.getComponent("parallel",t.get("parallelIndex")),A=e.coordSysDims=a.dimensions.slice();o(a.parallelAxisIndex,function(t,o){var a=r.getComponent("parallelAxis",t),l=A[o];n.set(l,a),s(a)&&null==e.firstCategoryDimIndex&&(i.set(l,a),e.firstCategoryDimIndex=o)})}};function s(t){return"category"===t.get("type")}e.getCoordSysInfoBySeries=function(t){var e=t.get("coordinateSystem"),n=new function(t){this.coordSysName=t,this.coordSysDims=[],this.axisMap=r(),this.categoryAxisMap=r(),this.firstCategoryDimIndex=null}(e),i=a[e];if(i)return i(t,n,n.axisMap,n.categoryAxisMap),n}},Qd2j:function(t,e,n){var i=n("loyO"),r=n("H+Fz").Polygon,o=n("bDs9"),a=n("A5tq"),s=a.bind,A=a.extend,l=n("+Pa4"),c=i.extendChartView({type:"themeRiver",init:function(){this._layers=[]},render:function(t,e,n){var i=t.getData(),a=this.group,c=t.getLayerSeries(),u=i.getLayout("layoutInfo"),h=u.rect,d=u.boundaryGap;function f(t){return t.name}a.attr("position",[0,h.y+d[0]]);var p={};function g(e,n,s){var l=this._layers;if("remove"!==e){for(var u,h,d,f=[],g=[],m=c[n].indices,v=0;v<m.length;v++){var y=i.getItemLayout(m[v]),w=y.x,x=y.y0,B=y.y;f.push([w,x]),g.push([w,x+B]),u=i.getItemVisual(m[v],"color")}var b=i.getItemLayout(m[0]),C=i.getItemModel(m[v-1]),_=C.getModel("label"),S=_.get("margin");if("add"===e){var I=p[n]=new o.Group;h=new r({shape:{points:f,stackedOnPoints:g,smooth:.4,stackedOnSmooth:.4,smoothConstraint:!1},z2:0}),d=new o.Text({style:{x:b.x-S,y:b.y0+b.y/2}}),I.add(h),I.add(d),a.add(I),h.setClipPath(function(t,e,n){var i=new o.Rect({shape:{x:t.x-10,y:t.y-10,width:0,height:t.height+20}});return o.initProps(i,{shape:{width:t.width+20,height:t.height+20}},e,n),i}(h.getBoundingRect(),t,function(){h.removeClipPath()}))}else{I=l[s];h=I.childAt(0),d=I.childAt(1),a.add(I),p[n]=I,o.updateProps(h,{shape:{points:f,stackedOnPoints:g}},t),o.updateProps(d,{style:{x:b.x-S,y:b.y0+b.y/2}},t)}var T=C.getModel("emphasis.itemStyle"),M=C.getModel("itemStyle");o.setTextStyle(d.style,_,{text:_.get("show")?t.getFormattedLabel(m[v-1],"normal")||i.getName(m[v-1]):null,textVerticalAlign:"middle"}),h.setStyle(A({fill:u},M.getItemStyle(["color"]))),o.setHoverStyle(h,T.getItemStyle())}else a.remove(l[n])}new l(this._layersSeries||[],c,f,f).add(s(g,this,"add")).update(s(g,this,"update")).remove(s(g,this,"remove")).execute(),this._layersSeries=c,this._layers=p},dispose:function(){}});t.exports=c},"R+JX":function(t,e,n){var i=n("9nPt"),r=n("quuH"),o=n("F9js").getDimensionTypeByAxis,a=n("h17e"),s=n("A5tq"),A=n("65+t").groupData,l=n("DWNL").encodeHTML,c=n("dBJA"),u=i.extend({type:"series.themeRiver",dependencies:["singleAxis"],nameMap:null,init:function(t){u.superApply(this,"init",arguments),this.legendVisualProvider=new c(s.bind(this.getData,this),s.bind(this.getRawData,this))},fixData:function(t){var e=t.length,n={},i=[];A(t,function(t){return n.hasOwnProperty(t[0])||(n[t[0]]=-1),t[2]}).buckets.each(function(t,e){i.push({name:e,dataList:t})});for(var r=i.length,o=0;o<r;++o){for(var a=i[o].name,s=0;s<i[o].dataList.length;++s){var l=i[o].dataList[s][0];n[l]=o}for(var l in n)n.hasOwnProperty(l)&&n[l]!==o&&(n[l]=o,t[e]=[],t[e][0]=l,t[e][1]=0,t[e][2]=a,e++)}return t},getInitialData:function(t,e){for(var n=e.queryComponents({mainType:"singleAxis",index:this.get("singleAxisIndex"),id:this.get("singleAxisId")})[0].get("type"),i=s.filter(t.data,function(t){return void 0!==t[2]}),A=this.fixData(i||[]),l=[],c=this.nameMap=s.createHashMap(),u=0,h=0;h<A.length;++h)l.push(A[h][2]),c.get(A[h][2])||(c.set(A[h][2],u),u++);var d=r(A,{coordDimensions:["single"],dimensionsDefine:[{name:"time",type:o(n)},{name:"value",type:"float"},{name:"name",type:"ordinal"}],encodeDefine:{single:0,value:1,itemName:2}}),f=new a(d,this);return f.initData(A),f},getLayerSeries:function(){for(var t=this.getData(),e=t.count(),n=[],i=0;i<e;++i)n[i]=i;var r=t.mapDimension("single"),o=[];return A(n,function(e){return t.get("name",e)}).buckets.each(function(e,n){e.sort(function(e,n){return t.get(r,e)-t.get(r,n)}),o.push({name:n,indices:e})}),o},getAxisTooltipData:function(t,e,n){s.isArray(t)||(t=t?[t]:[]);for(var i,r=this.getData(),o=this.getLayerSeries(),a=[],A=o.length,l=0;l<A;++l){for(var c=Number.MAX_VALUE,u=-1,h=o[l].indices.length,d=0;d<h;++d){var f=r.get(t[0],o[l].indices[d]),p=Math.abs(f-e);p<=c&&(i=f,c=p,u=o[l].indices[d])}a.push(u)}return{dataIndices:a,nestestValue:i}},formatTooltip:function(t){var e=this.getData(),n=e.getName(t),i=e.get(e.mapDimension("value"),t);return(isNaN(i)||null==i)&&(i="-"),l(n+" : "+i)},defaultOption:{zlevel:0,z:2,coordinateSystem:"singleAxis",boundaryGap:["10%","10%"],singleAxisIndex:0,animationEasing:"linear",label:{margin:4,show:!0,position:"left",color:"#000",fontSize:11},emphasis:{label:{show:!0}}}}),h=u;t.exports=h},R33K:function(t,e,n){var i=n("lbYD"),r=i.create,o=i.distSquare,a=Math.pow,s=Math.sqrt,A=1e-8,l=1e-4,c=s(3),u=1/3,h=r(),d=r(),f=r();function p(t){return t>-A&&t<A}function g(t){return t>A||t<-A}function m(t,e,n,i,r){var o=1-r;return o*o*(o*t+3*r*e)+r*r*(r*i+3*o*n)}function v(t,e,n,i){var r=1-i;return r*(r*t+2*i*e)+i*i*n}e.cubicAt=m,e.cubicDerivativeAt=function(t,e,n,i,r){var o=1-r;return 3*(((e-t)*o+2*(n-e)*r)*o+(i-n)*r*r)},e.cubicRootAt=function(t,e,n,i,r,o){var A=i+3*(e-n)-t,l=3*(n-2*e+t),h=3*(e-t),d=t-r,f=l*l-3*A*h,g=l*h-9*A*d,m=h*h-3*l*d,v=0;if(p(f)&&p(g))p(l)?o[0]=0:(M=-h/l)>=0&&M<=1&&(o[v++]=M);else{var y=g*g-4*f*m;if(p(y)){var w=g/f,x=-w/2;(M=-l/A+w)>=0&&M<=1&&(o[v++]=M),x>=0&&x<=1&&(o[v++]=x)}else if(y>0){var B=s(y),b=f*l+1.5*A*(-g+B),C=f*l+1.5*A*(-g-B);(M=(-l-((b=b<0?-a(-b,u):a(b,u))+(C=C<0?-a(-C,u):a(C,u))))/(3*A))>=0&&M<=1&&(o[v++]=M)}else{var _=(2*f*l-3*A*g)/(2*s(f*f*f)),S=Math.acos(_)/3,I=s(f),T=Math.cos(S),M=(-l-2*I*T)/(3*A),Q=(x=(-l+I*(T+c*Math.sin(S)))/(3*A),(-l+I*(T-c*Math.sin(S)))/(3*A));M>=0&&M<=1&&(o[v++]=M),x>=0&&x<=1&&(o[v++]=x),Q>=0&&Q<=1&&(o[v++]=Q)}}return v},e.cubicExtrema=function(t,e,n,i,r){var o=6*n-12*e+6*t,a=9*e+3*i-3*t-9*n,A=3*e-3*t,l=0;if(p(a))g(o)&&(u=-A/o)>=0&&u<=1&&(r[l++]=u);else{var c=o*o-4*a*A;if(p(c))r[0]=-o/(2*a);else if(c>0){var u,h=s(c),d=(-o-h)/(2*a);(u=(-o+h)/(2*a))>=0&&u<=1&&(r[l++]=u),d>=0&&d<=1&&(r[l++]=d)}}return l},e.cubicSubdivide=function(t,e,n,i,r,o){var a=(e-t)*r+t,s=(n-e)*r+e,A=(i-n)*r+n,l=(s-a)*r+a,c=(A-s)*r+s,u=(c-l)*r+l;o[0]=t,o[1]=a,o[2]=l,o[3]=u,o[4]=u,o[5]=c,o[6]=A,o[7]=i},e.cubicProjectPoint=function(t,e,n,i,r,a,A,c,u,p,g){var v,y,w,x,B,b=.005,C=1/0;h[0]=u,h[1]=p;for(var _=0;_<1;_+=.05)d[0]=m(t,n,r,A,_),d[1]=m(e,i,a,c,_),(x=o(h,d))<C&&(v=_,C=x);C=1/0;for(var S=0;S<32&&!(b<l);S++)y=v-b,w=v+b,d[0]=m(t,n,r,A,y),d[1]=m(e,i,a,c,y),x=o(d,h),y>=0&&x<C?(v=y,C=x):(f[0]=m(t,n,r,A,w),f[1]=m(e,i,a,c,w),B=o(f,h),w<=1&&B<C?(v=w,C=B):b*=.5);return g&&(g[0]=m(t,n,r,A,v),g[1]=m(e,i,a,c,v)),s(C)},e.quadraticAt=v,e.quadraticDerivativeAt=function(t,e,n,i){return 2*((1-i)*(e-t)+i*(n-e))},e.quadraticRootAt=function(t,e,n,i,r){var o=t-2*e+n,a=2*(e-t),A=t-i,l=0;if(p(o))g(a)&&(u=-A/a)>=0&&u<=1&&(r[l++]=u);else{var c=a*a-4*o*A;if(p(c))(u=-a/(2*o))>=0&&u<=1&&(r[l++]=u);else if(c>0){var u,h=s(c),d=(-a-h)/(2*o);(u=(-a+h)/(2*o))>=0&&u<=1&&(r[l++]=u),d>=0&&d<=1&&(r[l++]=d)}}return l},e.quadraticExtremum=function(t,e,n){var i=t+n-2*e;return 0===i?.5:(t-e)/i},e.quadraticSubdivide=function(t,e,n,i,r){var o=(e-t)*i+t,a=(n-e)*i+e,s=(a-o)*i+o;r[0]=t,r[1]=o,r[2]=s,r[3]=s,r[4]=a,r[5]=n},e.quadraticProjectPoint=function(t,e,n,i,r,a,A,c,u){var p,g=.005,m=1/0;h[0]=A,h[1]=c;for(var y=0;y<1;y+=.05)d[0]=v(t,n,r,y),d[1]=v(e,i,a,y),(b=o(h,d))<m&&(p=y,m=b);m=1/0;for(var w=0;w<32&&!(g<l);w++){var x=p-g,B=p+g;d[0]=v(t,n,r,x),d[1]=v(e,i,a,x);var b=o(d,h);if(x>=0&&b<m)p=x,m=b;else{f[0]=v(t,n,r,B),f[1]=v(e,i,a,B);var C=o(f,h);B<=1&&C<m?(p=B,m=C):g*=.5}}return u&&(u[0]=v(t,n,r,p),u[1]=v(e,i,a,p)),s(m)}},R6u5:function(t,e,n){n("u9IZ"),(0,n("ogql").registerPainter)("svg",n("yB2I"))},RBIR:function(t,e,n){var i=n("A5tq"),r=n("9nPt"),o=n("viOj"),a=n("K3bJ"),s=n("DWNL"),A=s.encodeHTML,l=s.addCommas,c=n("U3tO").wrapTreePathInfo,u=r.extend({type:"series.treemap",layoutMode:"box",dependencies:["grid","polar"],preventUsingHoverLayer:!0,_viewRoot:null,defaultOption:{progressive:0,left:"center",top:"middle",right:null,bottom:null,width:"80%",height:"80%",sort:!0,clipWindow:"origin",squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:"鈻�",zoomToNodeRatio:.1024,roam:!0,nodeClick:"zoomToNode",animation:!0,animationDurationUpdate:900,animationEasing:"quinticInOut",breadcrumb:{show:!0,height:22,left:"center",top:"bottom",emptyItemWidth:25,itemStyle:{color:"rgba(0,0,0,0.7)",borderColor:"rgba(255,255,255,0.7)",borderWidth:1,shadowColor:"rgba(150,150,150,1)",shadowBlur:3,shadowOffsetX:0,shadowOffsetY:0,textStyle:{color:"#fff"}},emphasis:{textStyle:{}}},label:{show:!0,distance:0,padding:5,position:"inside",color:"#fff",ellipsis:!0},upperLabel:{show:!1,position:[0,"50%"],height:20,color:"#fff",ellipsis:!0,verticalAlign:"middle"},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:"#fff",borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,"50%"],color:"#fff",ellipsis:!0,verticalAlign:"middle"}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:"index",visibleMin:10,childrenVisibleMin:null,levels:[]},getInitialData:function(t,e){var n={name:t.name,children:t.data};!function t(e){var n=0;i.each(e.children,function(e){t(e);var r=e.value;i.isArray(r)&&(r=r[0]),n+=r});var r=e.value;i.isArray(r)&&(r=r[0]);(null==r||isNaN(r))&&(r=n);r<0&&(r=0);i.isArray(e.value)?e.value[0]=r:e.value=r}(n);var r=t.levels||[],s=this.designatedVisualItemStyle={},A=new a({itemStyle:s},this,e);r=t.levels=function(t,e){var n,r=e.get("color");if(!r)return;if(t=t||[],i.each(t,function(t){var e=new a(t),i=e.get("color");(e.get("itemStyle.color")||i&&"none"!==i)&&(n=!0)}),!n){var o=t[0]||(t[0]={});o.color=r.slice()}return t}(r,e);var l=i.map(r||[],function(t){return new a(t,A,e)},this),c=o.createTree(n,this,function(t){t.wrapMethod("getItemModel",function(t,e){var n=c.getNodeByDataIndex(e),i=l[n.depth];return t.parentModel=i||A,t})});return c.data},optionUpdated:function(){this.resetViewRoot()},formatTooltip:function(t){var e=this.getData(),n=this.getRawValue(t),r=i.isArray(n)?l(n[0]):l(n),o=e.getName(t);return A(o+": "+r)},getDataParams:function(t){var e=r.prototype.getDataParams.apply(this,arguments),n=this.getData().tree.getNodeByDataIndex(t);return e.treePathInfo=c(n,this),e},setLayoutInfo:function(t){this.layoutInfo=this.layoutInfo||{},i.extend(this.layoutInfo,t)},mapIdToIndex:function(t){var e=this._idIndexMap;e||(e=this._idIndexMap=i.createHashMap(),this._idIndexMapCount=0);var n=e.get(t);return null==n&&e.set(t,n=this._idIndexMapCount++),n},getViewRoot:function(){return this._viewRoot},resetViewRoot:function(t){t?this._viewRoot=t:t=this._viewRoot;var e=this.getRawData().tree.root;t&&(t===e||e.contains(t))||(this._viewRoot=e)}});t.exports=u},RQTy:function(t,e,n){var i=n("A5tq"),r=i.each;function o(t,e){return t&&t.hasOwnProperty&&t.hasOwnProperty(e)}t.exports=function(t){var e=t&&t.visualMap;i.isArray(e)||(e=e?[e]:[]),r(e,function(t){if(t){o(t,"splitList")&&!o(t,"pieces")&&(t.pieces=t.splitList,delete t.splitList);var e=t.pieces;e&&i.isArray(e)&&r(e,function(t){i.isObject(t)&&(o(t,"start")&&!o(t,"min")&&(t.min=t.start),o(t,"end")&&!o(t,"max")&&(t.max=t.end))})}})}},RaHm:function(t,e,n){var i=n("loyO");n("2VdS"),n("j9eJ");var r=n("HVRW"),o=n("BzcN");i.registerVisual(r("effectScatter","circle")),i.registerLayout(o("effectScatter"))},RpAW:function(t,e,n){var i=n("loyO");i.registerAction({type:"axisAreaSelect",event:"axisAreaSelected"},function(t,e){e.eachComponent({mainType:"parallelAxis",query:t},function(e){e.axis.model.setActiveIntervals(t.intervals)})}),i.registerAction("parallelAxisExpand",function(t,e){e.eachComponent({mainType:"parallel",query:t},function(e){e.setAxisExpand(t)})})},SDZ1:function(t,e,n){var i=n("A5tq"),r={get:function(t,e,n){var r=i.clone((o[t]||{})[e]);return n&&i.isArray(r)?r[r.length-1]:r}},o={color:{active:["#006edd","#e0ffff"],inactive:["rgba(0,0,0,0)"]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:["circle","roundRect","diamond"],inactive:["none"]},symbolSize:{active:[10,50],inactive:[0,0]}},a=r;t.exports=a},SJVT:function(t,e,n){var i=n("A5tq"),r=n("bDs9");e.rectCoordAxisBuildSplitArea=function(t,e,n,o){var a=n.axis;if(!a.scale.isBlank()){var s=n.getModel("splitArea"),A=s.getModel("areaStyle"),l=A.get("color"),c=o.coordinateSystem.getRect(),u=a.getTicksCoords({tickModel:s,clamp:!0});if(u.length){var h=l.length,d=t.__splitAreaColors,f=i.createHashMap(),p=0;if(d)for(var g=0;g<u.length;g++){var m=d.get(u[g].tickValue);if(null!=m){p=(m+(h-1)*g)%h;break}}var v=a.toGlobalCoord(u[0].coord),y=A.getAreaStyle();for(l=i.isArray(l)?l:[l],g=1;g<u.length;g++){var w,x,B,b,C=a.toGlobalCoord(u[g].coord);a.isHorizontal()?(w=v,x=c.y,B=C-w,b=c.height,v=w+B):(w=c.x,x=v,B=c.width,v=x+(b=C-x));var _=u[g-1].tickValue;null!=_&&f.set(_,p),e.add(new r.Rect({anid:null!=_?"area_"+_:null,shape:{x:w,y:x,width:B,height:b},style:i.defaults({fill:l[p]},y),silent:!0})),p=(p+1)%h}t.__splitAreaColors=f}}},e.rectCoordAxisHandleRemove=function(t){t.__splitAreaColors=null}},SOQc:function(t,e,n){var i=n("A5tq"),r=(i.assert,i.isArray);n("roIn").__DEV__;function o(t){t=t||{},this._reset=t.reset,this._plan=t.plan,this._count=t.count,this._onDirty=t.onDirty,this._dirty=!0,this.context}var a=o.prototype;a.perform=function(t){var e,n=this._upstream,i=t&&t.skip;if(this._dirty&&n){var o=this.context;o.data=o.outputData=n.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this),this._plan&&!i&&(e=this._plan(this.context));var a,s=h(this._modBy),l=this._modDataCount||0,c=h(t&&t.modBy),u=t&&t.modDataCount||0;function h(t){return!(t>=1)&&(t=1),t}s===c&&l===u||(e="reset"),(this._dirty||"reset"===e)&&(this._dirty=!1,a=function(t,e){var n,i;t._dueIndex=t._outputDueEnd=t._dueEnd=0,t._settedOutputEnd=null,!e&&t._reset&&((n=t._reset(t.context))&&n.progress&&(i=n.forceFirstProgress,n=n.progress),r(n)&&!n.length&&(n=null));t._progress=n,t._modBy=t._modDataCount=null;var o=t._downstream;return o&&o.dirty(),i}(this,i)),this._modBy=c,this._modDataCount=u;var d=t&&t.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var f=this._dueIndex,p=Math.min(null!=d?this._dueIndex+d:1/0,this._dueEnd);if(!i&&(a||f<p)){var g=this._progress;if(r(g))for(var m=0;m<g.length;m++)A(this,g[m],f,p,c,u);else A(this,g,f,p,c,u)}this._dueIndex=p;var v=null!=this._settedOutputEnd?this._settedOutputEnd:p;this._outputDueEnd=v}else this._dueIndex=this._outputDueEnd=null!=this._settedOutputEnd?this._settedOutputEnd:this._dueEnd;return this.unfinished()};var s=function(){var t,e,n,i,r,o={reset:function(A,l,c,u){e=A,t=l,n=c,i=u,r=Math.ceil(i/n),o.next=n>1&&i>0?s:a}};return o;function a(){return e<t?e++:null}function s(){var o=e%r*n+Math.ceil(e/r),a=e>=t?null:o<i?o:e;return e++,a}}();function A(t,e,n,i,r,o){s.reset(n,i,r,o),t._callingProgress=e,t._callingProgress({start:n,end:i,count:i-n,next:s.next},t.context)}a.dirty=function(){this._dirty=!0,this._onDirty&&this._onDirty(this.context)},a.unfinished=function(){return this._progress&&this._dueIndex<this._dueEnd},a.pipe=function(t){(this._downstream!==t||this._dirty)&&(this._downstream=t,t._upstream=this,t.dirty())},a.dispose=function(){this._disposed||(this._upstream&&(this._upstream._downstream=null),this._downstream&&(this._downstream._upstream=null),this._dirty=!1,this._disposed=!0)},a.getUpstream=function(){return this._upstream},a.getDownstream=function(){return this._downstream},a.setOutputEnd=function(t){this._outputDueEnd=this._settedOutputEnd=t},e.createTask=function(t){return new o(t)}},SZFm:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("rhmo"),a=n("47wN"),s=r.Group,A=["width","height"],l=["x","y"],c=a.extend({type:"legend.scroll",newlineDisabled:!0,init:function(){c.superCall(this,"init"),this._currentIndex=0,this.group.add(this._containerGroup=new s),this._containerGroup.add(this.getContentGroup()),this.group.add(this._controllerGroup=new s),this._showController},resetInner:function(){c.superCall(this,"resetInner"),this._controllerGroup.removeAll(),this._containerGroup.removeClipPath(),this._containerGroup.__rectSize=null},renderInner:function(t,e,n,o,a,s,A){var l=this;c.superCall(this,"renderInner",t,e,n,o,a,s,A);var u=this._controllerGroup,h=e.get("pageIconSize",!0);i.isArray(h)||(h=[h,h]),f("pagePrev",0);var d=e.getModel("pageTextStyle");function f(t,n){var a=t+"DataIndex",s=r.createIcon(e.get("pageIcons",!0)[e.getOrient().name][n],{onclick:i.bind(l._pageGo,l,a,e,o)},{x:-h[0]/2,y:-h[1]/2,width:h[0],height:h[1]});s.name=t,u.add(s)}u.add(new r.Text({name:"pageText",style:{textFill:d.getTextColor(),font:d.getFont(),textVerticalAlign:"middle",textAlign:"center"},silent:!0})),f("pageNext",1)},layoutInner:function(t,e,n,r,a,s){var c=this.getSelectorGroup(),u=t.getOrient().index,h=A[u],d=l[u],f=A[1-u],p=l[1-u];a&&o.box("horizontal",c,t.get("selectorItemGap",!0));var g=t.get("selectorButtonGap",!0),m=c.getBoundingRect(),v=[-m.x,-m.y],y=i.clone(n);a&&(y[h]=n[h]-m[h]-g);var w=this._layoutContentAndController(t,r,y,u,h,f,p);if(a){if("end"===s)v[u]+=w[h]+g;else{var x=m[h]+g;v[u]-=x,w[d]-=x}w[h]+=m[h]+g,v[1-u]+=w[p]+w[f]/2-m[f]/2,w[f]=Math.max(w[f],m[f]),w[p]=Math.min(w[p],m[p]+v[1-u]),c.attr("position",v)}return w},_layoutContentAndController:function(t,e,n,a,s,A,l){var c=this.getContentGroup(),u=this._containerGroup,h=this._controllerGroup;o.box(t.get("orient"),c,t.get("itemGap"),a?n.width:null,a?null:n.height),o.box("horizontal",h,t.get("pageButtonItemGap",!0));var d=c.getBoundingRect(),f=h.getBoundingRect(),p=this._showController=d[s]>n[s],g=[-d.x,-d.y];e||(g[a]=c.position[a]);var m=[0,0],v=[-f.x,-f.y],y=i.retrieve2(t.get("pageButtonGap",!0),t.get("itemGap",!0));p&&("end"===t.get("pageButtonPosition",!0)?v[a]+=n[s]-f[s]:m[a]+=f[s]+y);v[1-a]+=d[A]/2-f[A]/2,c.attr("position",g),u.attr("position",m),h.attr("position",v);var w={x:0,y:0};if(w[s]=p?n[s]:d[s],w[A]=Math.max(d[A],f[A]),w[l]=Math.min(0,f[l]+v[1-a]),u.__rectSize=n[s],p){var x={x:0,y:0};x[s]=Math.max(n[s]-f[s]-y,0),x[A]=w[A],u.setClipPath(new r.Rect({shape:x})),u.__rectSize=x[s]}else h.eachChild(function(t){t.attr({invisible:!0,silent:!0})});var B=this._getPageInfo(t);return null!=B.pageIndex&&r.updateProps(c,{position:B.contentPosition},!!p&&t),this._updatePageInfoView(t,B),w},_pageGo:function(t,e,n){var i=this._getPageInfo(e)[t];null!=i&&n.dispatchAction({type:"legendScroll",scrollDataIndex:i,legendId:e.id})},_updatePageInfoView:function(t,e){var n=this._controllerGroup;i.each(["pagePrev","pageNext"],function(i){var r=null!=e[i+"DataIndex"],o=n.childOfName(i);o&&(o.setStyle("fill",r?t.get("pageIconColor",!0):t.get("pageIconInactiveColor",!0)),o.cursor=r?"pointer":"default")});var r=n.childOfName("pageText"),o=t.get("pageFormatter"),a=e.pageIndex,s=null!=a?a+1:0,A=e.pageCount;r&&o&&r.setStyle("text",i.isString(o)?o.replace("{current}",s).replace("{total}",A):o({current:s,total:A}))},_getPageInfo:function(t){var e=t.get("scrollDataIndex",!0),n=this.getContentGroup(),i=this._containerGroup.__rectSize,r=t.getOrient().index,o=A[r],a=l[r],s=this._findTargetItemIndex(e),c=n.children(),u=c[s],h=c.length,d=h?1:0,f={contentPosition:n.position.slice(),pageCount:d,pageIndex:d-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!u)return f;var p=w(u);f.contentPosition[r]=-p.s;for(var g=s+1,m=p,v=p,y=null;g<=h;++g)(!(y=w(c[g]))&&v.e>m.s+i||y&&!x(y,m.s))&&(m=v.i>m.i?v:y)&&(null==f.pageNextDataIndex&&(f.pageNextDataIndex=m.i),++f.pageCount),v=y;for(g=s-1,m=p,v=p,y=null;g>=-1;--g)(y=w(c[g]))&&x(v,y.s)||!(m.i<v.i)||(v=m,null==f.pagePrevDataIndex&&(f.pagePrevDataIndex=m.i),++f.pageCount,++f.pageIndex),m=y;return f;function w(t){if(t){var e=t.getBoundingRect(),n=e[a]+t.position[r];return{s:n,e:n+e[o],i:t.__legendDataIndex}}}function x(t,e){return t.e>=e&&t.s<=e+i}},_findTargetItemIndex:function(t){return this._showController?(this.getContentGroup().eachChild(function(i,r){var o=i.__legendDataIndex;null==n&&null!=o&&(n=r),o===t&&(e=r)}),null!=e?e:n):0;var e,n}}),u=c;t.exports=u},SfFH:function(t,e,n){var i=n("bDs9"),r=n("lbYD"),o=i.Line.prototype,a=i.BezierCurve.prototype;function s(t){return isNaN(+t.cpx1)||isNaN(+t.cpy1)}var A=i.extendShape({type:"ec-line",style:{stroke:"#000",fill:null},shape:{x1:0,y1:0,x2:0,y2:0,percent:1,cpx1:null,cpy1:null},buildPath:function(t,e){this[s(e)?"_buildPathLine":"_buildPathCurve"](t,e)},_buildPathLine:o.buildPath,_buildPathCurve:a.buildPath,pointAt:function(t){return this[s(this.shape)?"_pointAtLine":"_pointAtCurve"](t)},_pointAtLine:o.pointAt,_pointAtCurve:a.pointAt,tangentAt:function(t){var e=this.shape,n=s(e)?[e.x2-e.x1,e.y2-e.y1]:this._tangentAtCurve(t);return r.normalize(n,n)},_tangentAtCurve:a.tangentAt});t.exports=A},SfJO:function(t,e,n){"use strict";var i=n("+p5o");function r(t){return function(e,n){return e&&"string"!=typeof e&&(n=e,e=""),""+(e=e?t+"__"+e:t)+function t(e,n){return n?"string"==typeof n?" "+e+"--"+n:Array.isArray(n)?n.reduce(function(n,i){return n+t(e,i)},""):Object.keys(n).reduce(function(i,r){return i+(n[r]?t(e,r):"")},""):""}(e,n)}}var o=n("b+6s"),a=n("Jeai"),s={methods:{slots:function(t,e){void 0===t&&(t="default");var n=this.$slots,i=this.$scopedSlots[t];return i?i(e):n[t]}}};function A(t){var e=this.name;t.component(e,this),t.component(Object(a.a)("-"+e),this)}function l(t){return{functional:!0,props:t.props,model:t.model,render:function(e,n){return t(e,n.props,function(t){var e=t.scopedSlots||t.data.scopedSlots||{},n=t.slots();return Object.keys(n).forEach(function(t){e[t]||(e[t]=function(){return n[t]})}),e}(n),n)}}}function c(t){return[function(t){return function(e){return f(e)&&(e=l(e)),e.functional||(e.mixins=e.mixins||[],e.mixins.push(s)),e.name=t,e.install=A,e}}(t="van-"+t),r(t),function(t){var e=Object(a.a)(t)+".";return function(t){for(var n=o.a.messages(),i=g(n,e+t)||g(n,t),r=arguments.length,a=new Array(r>1?r-1:0),s=1;s<r;s++)a[s-1]=arguments[s];return f(i)?i.apply(void 0,a):i}}(t)]}var u=n("w2Ju");n.d(e,"d",function(){return h}),n.d(e,"j",function(){return d}),e.k=function(){},e.e=function(t){return void 0!==t&&null!==t},e.g=f,e.h=p,e.i=function(t){return p(t)&&f(t.then)&&f(t.catch)},e.c=g,e.f=function(t){if(null==t)return!0;if("object"!=typeof t)return!0;return 0===Object.keys(t).length},n.d(e,"b",function(){return c}),n.d(e,"a",function(){return u.a});var h="undefined"!=typeof window,d=i.a.prototype.$isServer;function f(t){return"function"==typeof t}function p(t){return null!==t&&"object"==typeof t}function g(t,e){var n=t;return e.split(".").forEach(function(t){var e;n=p(n)&&null!=(e=n[t])?e:""}),n}},SgSL:function(t,e,n){var i=n("A5tq"),r=n("m9W5"),o=function(t,e,n,i){r.call(this,t,e,n),this.type=i||"value",this.model=null};o.prototype={constructor:o,getLabelModel:function(){return this.model.getModel("label")},isHorizontal:function(){return"horizontal"===this.model.get("orient")}},i.inherits(o,r);var a=o;t.exports=a},"SsH+":function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("zrBH");function a(t,e,n,i){var r=e.getData(),o=this.dataIndex,a=r.getName(o),A=e.get("selectedOffset");i.dispatchAction({type:"pieToggleSelect",from:t,name:a,seriesId:e.id}),r.each(function(t){s(r.getItemGraphicEl(t),r.getItemLayout(t),e.isSelected(r.getName(t)),A,n)})}function s(t,e,n,i,r){var o=(e.startAngle+e.endAngle)/2,a=Math.cos(o),s=Math.sin(o),A=n?i:0,l=[a*A,s*A];r?t.animate().when(200,{position:l}).start("bounceOut"):t.attr("position",l)}function A(t,e){r.Group.call(this);var n=new r.Sector({z2:2}),i=new r.Polyline,o=new r.Text;this.add(n),this.add(i),this.add(o),this.updateData(t,e,!0)}var l=A.prototype;l.updateData=function(t,e,n){var o=this.childAt(0),a=this.childAt(1),A=this.childAt(2),l=t.hostModel,c=t.getItemModel(e),u=t.getItemLayout(e),h=i.extend({},u);h.label=null;var d=l.getShallow("animationTypeUpdate");n?(o.setShape(h),"scale"===l.getShallow("animationType")?(o.shape.r=u.r0,r.initProps(o,{shape:{r:u.r}},l,e)):(o.shape.endAngle=u.startAngle,r.updateProps(o,{shape:{endAngle:u.endAngle}},l,e))):"expansion"===d?o.setShape(h):r.updateProps(o,{shape:h},l,e);var f=t.getItemVisual(e,"color");o.useStyle(i.defaults({lineJoin:"bevel",fill:f},c.getModel("itemStyle").getItemStyle())),o.hoverStyle=c.getModel("emphasis.itemStyle").getItemStyle();var p=c.getShallow("cursor");p&&o.attr("cursor",p),s(this,t.getItemLayout(e),l.isSelected(t.getName(e)),l.get("selectedOffset"),l.get("animation"));var g=!n&&"transition"===d;this._updateLabel(t,e,g),this.highDownOnUpdate=l.get("silent")?null:function(t,e){var n=l.isAnimationEnabled()&&c.get("hoverAnimation");"emphasis"===e?(a.ignore=a.hoverIgnore,A.ignore=A.hoverIgnore,n&&(o.stopAnimation(!0),o.animateTo({shape:{r:u.r+l.get("hoverOffset")}},300,"elasticOut"))):(a.ignore=a.normalIgnore,A.ignore=A.normalIgnore,n&&(o.stopAnimation(!0),o.animateTo({shape:{r:u.r}},300,"elasticOut")))},r.setHoverStyle(this)},l._updateLabel=function(t,e,n){var i=this.childAt(1),o=this.childAt(2),a=t.hostModel,s=t.getItemModel(e),A=t.getItemLayout(e).label,l=t.getItemVisual(e,"color");if(!A||isNaN(A.x)||isNaN(A.y))o.ignore=o.normalIgnore=o.hoverIgnore=i.ignore=i.normalIgnore=i.hoverIgnore=!0;else{var c={points:A.linePoints||[[A.x,A.y],[A.x,A.y],[A.x,A.y]]},u={x:A.x,y:A.y};n?(r.updateProps(i,{shape:c},a,e),r.updateProps(o,{style:u},a,e)):(i.attr({shape:c}),o.attr({style:u})),o.attr({rotation:A.rotation,origin:[A.x,A.y],z2:10});var h=s.getModel("label"),d=s.getModel("emphasis.label"),f=s.getModel("labelLine"),p=s.getModel("emphasis.labelLine");l=t.getItemVisual(e,"color");r.setLabelStyle(o.style,o.hoverStyle={},h,d,{labelFetcher:t.hostModel,labelDataIndex:e,defaultText:A.text,autoColor:l,useInsideStyle:!!A.inside},{textAlign:A.textAlign,textVerticalAlign:A.verticalAlign,opacity:t.getItemVisual(e,"opacity")}),o.ignore=o.normalIgnore=!h.get("show"),o.hoverIgnore=!d.get("show"),i.ignore=i.normalIgnore=!f.get("show"),i.hoverIgnore=!p.get("show"),i.setStyle({stroke:l,opacity:t.getItemVisual(e,"opacity")}),i.setStyle(f.getModel("lineStyle").getLineStyle()),i.hoverStyle=p.getModel("lineStyle").getLineStyle();var g=f.get("smooth");g&&!0===g&&(g=.4),i.setShape({smooth:g})}},i.inherits(A,r.Group);var c=o.extend({type:"pie",init:function(){var t=new r.Group;this._sectorGroup=t},render:function(t,e,n,r){if(!r||r.from!==this.uid){var o=t.getData(),s=this._data,l=this.group,c=e.get("animation"),u=!s,h=t.get("animationType"),d=t.get("animationTypeUpdate"),f=i.curry(a,this.uid,t,c,n),p=t.get("selectedMode");if(o.diff(s).add(function(t){var e=new A(o,t);u&&"scale"!==h&&e.eachChild(function(t){t.stopAnimation(!0)}),p&&e.on("click",f),o.setItemGraphicEl(t,e),l.add(e)}).update(function(t,e){var n=s.getItemGraphicEl(e);u||"transition"===d||n.eachChild(function(t){t.stopAnimation(!0)}),n.updateData(o,t),n.off("click"),p&&n.on("click",f),l.add(n),o.setItemGraphicEl(t,n)}).remove(function(t){var e=s.getItemGraphicEl(t);l.remove(e)}).execute(),c&&o.count()>0&&(u?"scale"!==h:"transition"!==d)){for(var g=o.getItemLayout(0),m=1;isNaN(g.startAngle)&&m<o.count();++m)g=o.getItemLayout(m);var v=Math.max(n.getWidth(),n.getHeight())/2,y=i.bind(l.removeClipPath,l);l.setClipPath(this._createClipPath(g.cx,g.cy,v,g.startAngle,g.clockwise,y,t,u))}else l.removeClipPath();this._data=o}},dispose:function(){},_createClipPath:function(t,e,n,i,o,a,s,A){var l=new r.Sector({shape:{cx:t,cy:e,r0:0,r:n,startAngle:i,endAngle:i,clockwise:o}});return(A?r.initProps:r.updateProps)(l,{shape:{endAngle:i+(o?1:-1)*Math.PI*2}},s,a),l},containPoint:function(t,e){var n=e.getData().getItemLayout(0);if(n){var i=t[0]-n.cx,r=t[1]-n.cy,o=Math.sqrt(i*i+r*r);return o<=n.r&&o>=n.r0}}});t.exports=c},SvgU:function(t,e,n){var i=n("A5tq"),r=n("rHid"),o=n("4GD6"),a=r.prototype,s=r.extend({type:"ordinal",init:function(t,e){t&&!i.isArray(t)||(t=new o({categories:t})),this._ordinalMeta=t,this._extent=e||[0,t.categories.length-1]},parse:function(t){return"string"==typeof t?this._ordinalMeta.getOrdinal(t):Math.round(t)},contain:function(t){return t=this.parse(t),a.contain.call(this,t)&&null!=this._ordinalMeta.categories[t]},normalize:function(t){return a.normalize.call(this,this.parse(t))},scale:function(t){return Math.round(a.scale.call(this,t))},getTicks:function(){for(var t=[],e=this._extent,n=e[0];n<=e[1];)t.push(n),n++;return t},getLabel:function(t){if(!this.isBlank())return this._ordinalMeta.categories[t]},count:function(){return this._extent[1]-this._extent[0]+1},unionExtentFromData:function(t,e){this.unionExtent(t.getApproximateExtent(e))},getOrdinalMeta:function(){return this._ordinalMeta},niceTicks:i.noop,niceExtent:i.noop});s.create=function(){return new s};var A=s;t.exports=A},T1f2:function(t,e,n){var i=n("loyO");n("P12f"),n("cgbH");var r=n("BvIE"),o=n("AITV");i.registerVisual(r),i.registerLayout(o)},T68X:function(t,e,n){
+/*!
+ * html2canvas 1.4.1 <https://html2canvas.hertzen.com>
+ * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>
+ * Released under MIT License
+ */var i;i=function(){"use strict";
+/*! *****************************************************************************
+    Copyright (c) Microsoft Corporation.
+
+    Permission to use, copy, modify, and/or distribute this software for any
+    purpose with or without fee is hereby granted.
+
+    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+    REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+    AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+    LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+    OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+    PERFORMANCE OF THIS SOFTWARE.
+    ***************************************************************************** */var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(e,n)};function e(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}var n=function(){return(n=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};function i(t,e,n,i){return new(n||(n=Promise))(function(r,o){function a(t){try{A(i.next(t))}catch(t){o(t)}}function s(t){try{A(i.throw(t))}catch(t){o(t)}}function A(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n(function(t){t(e)})).then(a,s)}A((i=i.apply(t,e||[])).next())})}function r(t,e){var n,i,r,o,a={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(o){return function(s){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,i&&(r=2&o[0]?i.return:o[0]?i.throw||((r=i.return)&&r.call(i),0):i.next)&&!(r=r.call(i,o[1])).done)return r;switch(i=0,r&&(o=[2&o[0],r.value]),o[0]){case 0:case 1:r=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,i=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(!(r=(r=a.trys).length>0&&r[r.length-1])&&(6===o[0]||2===o[0])){a=0;continue}if(3===o[0]&&(!r||o[1]>r[0]&&o[1]<r[3])){a.label=o[1];break}if(6===o[0]&&a.label<r[1]){a.label=r[1],r=o;break}if(r&&a.label<r[2]){a.label=r[2],a.ops.push(o);break}r[2]&&a.ops.pop(),a.trys.pop();continue}o=e.call(t,a)}catch(t){o=[6,t],i=0}finally{n=r=0}if(5&o[0])throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}([o,s])}}}function o(t,e,n){if(n||2===arguments.length)for(var i,r=0,o=e.length;r<o;r++)!i&&r in e||(i||(i=Array.prototype.slice.call(e,0,r)),i[r]=e[r]);return t.concat(i||e)}for(var a=function(){function t(t,e,n,i){this.left=t,this.top=e,this.width=n,this.height=i}return t.prototype.add=function(e,n,i,r){return new t(this.left+e,this.top+n,this.width+i,this.height+r)},t.fromClientRect=function(e,n){return new t(n.left+e.windowBounds.left,n.top+e.windowBounds.top,n.width,n.height)},t.fromDOMRectList=function(e,n){var i=Array.from(n).find(function(t){return 0!==t.width});return i?new t(i.left+e.windowBounds.left,i.top+e.windowBounds.top,i.width,i.height):t.EMPTY},t.EMPTY=new t(0,0,0,0),t}(),s=function(t,e){return a.fromClientRect(t,e.getBoundingClientRect())},A=function(t){for(var e=[],n=0,i=t.length;n<i;){var r=t.charCodeAt(n++);if(r>=55296&&r<=56319&&n<i){var o=t.charCodeAt(n++);56320==(64512&o)?e.push(((1023&r)<<10)+(1023&o)+65536):(e.push(r),n--)}else e.push(r)}return e},l=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,t);var n=t.length;if(!n)return"";for(var i=[],r=-1,o="";++r<n;){var a=t[r];a<=65535?i.push(a):(a-=65536,i.push(55296+(a>>10),a%1024+56320)),(r+1===n||i.length>16384)&&(o+=String.fromCharCode.apply(String,i),i.length=0)}return o},c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",u="undefined"==typeof Uint8Array?[]:new Uint8Array(256),h=0;h<c.length;h++)u[c.charCodeAt(h)]=h;for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",f="undefined"==typeof Uint8Array?[]:new Uint8Array(256),p=0;p<d.length;p++)f[d.charCodeAt(p)]=p;for(var g=function(t,e,n){return t.slice?t.slice(e,n):new Uint16Array(Array.prototype.slice.call(t,e,n))},m=function(){function t(t,e,n,i,r,o){this.initialValue=t,this.errorValue=e,this.highStart=n,this.highValueIndex=i,this.index=r,this.data=o}return t.prototype.get=function(t){var e;if(t>=0){if(t<55296||t>56319&&t<=65535)return e=((e=this.index[t>>5])<<2)+(31&t),this.data[e];if(t<=65535)return e=((e=this.index[2048+(t-55296>>5)])<<2)+(31&t),this.data[e];if(t<this.highStart)return e=2080+(t>>11),e=this.index[e],e+=t>>5&63,e=((e=this.index[e])<<2)+(31&t),this.data[e];if(t<=1114111)return this.data[this.highValueIndex]}return this.errorValue},t}(),v="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",y="undefined"==typeof Uint8Array?[]:new Uint8Array(256),w=0;w<v.length;w++)y[v.charCodeAt(w)]=w;var x=10,B=13,b=15,C=17,_=18,S=19,I=20,T=21,M=22,Q=24,F=25,k=26,D=27,U=28,E=30,L=32,O=33,P=34,H=35,N=37,R=38,V=39,z=40,K=42,G=[9001,65288],W="!",j=function(t,e){var n,i,r,o=function(t){var e,n,i,r,o,a=.75*t.length,s=t.length,A=0;"="===t[t.length-1]&&(a--,"="===t[t.length-2]&&a--);var l="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(a):new Array(a),c=Array.isArray(l)?l:new Uint8Array(l);for(e=0;e<s;e+=4)n=f[t.charCodeAt(e)],i=f[t.charCodeAt(e+1)],r=f[t.charCodeAt(e+2)],o=f[t.charCodeAt(e+3)],c[A++]=n<<2|i>>4,c[A++]=(15&i)<<4|r>>2,c[A++]=(3&r)<<6|63&o;return l}(t),a=Array.isArray(o)?function(t){for(var e=t.length,n=[],i=0;i<e;i+=4)n.push(t[i+3]<<24|t[i+2]<<16|t[i+1]<<8|t[i]);return n}(o):new Uint32Array(o),s=Array.isArray(o)?function(t){for(var e=t.length,n=[],i=0;i<e;i+=2)n.push(t[i+1]<<8|t[i]);return n}(o):new Uint16Array(o),A=g(s,12,a[4]/2),l=2===a[5]?g(s,(24+a[4])/2):(n=a,i=Math.ceil((24+a[4])/4),n.slice?n.slice(i,r):new Uint32Array(Array.prototype.slice.call(n,i,r)));return new m(a[0],a[1],a[2],a[3],A,l)}("KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),$=[E,36],q=[1,2,3,5],Y=[x,8],X=[D,k],J=q.concat(Y),Z=[R,V,z,P,H],tt=[b,B],et=function(t,e,n,i){var r=i[n];if(Array.isArray(t)?-1!==t.indexOf(r):t===r)for(var o=n;o<=i.length;){if((A=i[++o])===e)return!0;if(A!==x)break}if(r===x)for(o=n;o>0;){var a=i[--o];if(Array.isArray(t)?-1!==t.indexOf(a):t===a)for(var s=n;s<=i.length;){var A;if((A=i[++s])===e)return!0;if(A!==x)break}if(a!==x)break}return!1},nt=function(t,e){for(var n=t;n>=0;){var i=e[n];if(i!==x)return i;n--}return 0},it=function(t,e,n,i,r){if(0===n[i])return"脳";var o=i-1;if(Array.isArray(r)&&!0===r[o])return"脳";var a=o-1,s=o+1,A=e[o],l=a>=0?e[a]:0,c=e[s];if(2===A&&3===c)return"脳";if(-1!==q.indexOf(A))return W;if(-1!==q.indexOf(c))return"脳";if(-1!==Y.indexOf(c))return"脳";if(8===nt(o,e))return"梅";if(11===j.get(t[o]))return"脳";if((A===L||A===O)&&11===j.get(t[s]))return"脳";if(7===A||7===c)return"脳";if(9===A)return"脳";if(-1===[x,B,b].indexOf(A)&&9===c)return"脳";if(-1!==[C,_,S,Q,U].indexOf(c))return"脳";if(nt(o,e)===M)return"脳";if(et(23,M,o,e))return"脳";if(et([C,_],T,o,e))return"脳";if(et(12,12,o,e))return"脳";if(A===x)return"梅";if(23===A||23===c)return"脳";if(16===c||16===A)return"梅";if(-1!==[B,b,T].indexOf(c)||14===A)return"脳";if(36===l&&-1!==tt.indexOf(A))return"脳";if(A===U&&36===c)return"脳";if(c===I)return"脳";if(-1!==$.indexOf(c)&&A===F||-1!==$.indexOf(A)&&c===F)return"脳";if(A===D&&-1!==[N,L,O].indexOf(c)||-1!==[N,L,O].indexOf(A)&&c===k)return"脳";if(-1!==$.indexOf(A)&&-1!==X.indexOf(c)||-1!==X.indexOf(A)&&-1!==$.indexOf(c))return"脳";if(-1!==[D,k].indexOf(A)&&(c===F||-1!==[M,b].indexOf(c)&&e[s+1]===F)||-1!==[M,b].indexOf(A)&&c===F||A===F&&-1!==[F,U,Q].indexOf(c))return"脳";if(-1!==[F,U,Q,C,_].indexOf(c))for(var u=o;u>=0;){if((h=e[u])===F)return"脳";if(-1===[U,Q].indexOf(h))break;u--}if(-1!==[D,k].indexOf(c))for(u=-1!==[C,_].indexOf(A)?a:o;u>=0;){var h;if((h=e[u])===F)return"脳";if(-1===[U,Q].indexOf(h))break;u--}if(R===A&&-1!==[R,V,P,H].indexOf(c)||-1!==[V,P].indexOf(A)&&-1!==[V,z].indexOf(c)||-1!==[z,H].indexOf(A)&&c===z)return"脳";if(-1!==Z.indexOf(A)&&-1!==[I,k].indexOf(c)||-1!==Z.indexOf(c)&&A===D)return"脳";if(-1!==$.indexOf(A)&&-1!==$.indexOf(c))return"脳";if(A===Q&&-1!==$.indexOf(c))return"脳";if(-1!==$.concat(F).indexOf(A)&&c===M&&-1===G.indexOf(t[s])||-1!==$.concat(F).indexOf(c)&&A===_)return"脳";if(41===A&&41===c){for(var d=n[o],f=1;d>0&&41===e[--d];)f++;if(f%2!=0)return"脳"}return A===L&&c===O?"脳":"梅"},rt=function(t,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var n=function(t,e){void 0===e&&(e="strict");var n=[],i=[],r=[];return t.forEach(function(t,o){var a=j.get(t);if(a>50?(r.push(!0),a-=50):r.push(!1),-1!==["normal","auto","loose"].indexOf(e)&&-1!==[8208,8211,12316,12448].indexOf(t))return i.push(o),n.push(16);if(4===a||11===a){if(0===o)return i.push(o),n.push(E);var s=n[o-1];return-1===J.indexOf(s)?(i.push(i[o-1]),n.push(s)):(i.push(o),n.push(E))}return i.push(o),31===a?n.push("strict"===e?T:N):a===K?n.push(E):29===a?n.push(E):43===a?t>=131072&&t<=196605||t>=196608&&t<=262141?n.push(N):n.push(E):void n.push(a)}),[i,n,r]}(t,e.lineBreak),i=n[0],r=n[1],o=n[2];return"break-all"!==e.wordBreak&&"break-word"!==e.wordBreak||(r=r.map(function(t){return-1!==[F,E,K].indexOf(t)?N:t})),[i,r,"keep-all"===e.wordBreak?o.map(function(e,n){return e&&t[n]>=19968&&t[n]<=40959}):void 0]},ot=function(){function t(t,e,n,i){this.codePoints=t,this.required=e===W,this.start=n,this.end=i}return t.prototype.slice=function(){return l.apply(void 0,this.codePoints.slice(this.start,this.end))},t}(),at=function(t){return t>=48&&t<=57},st=function(t){return at(t)||t>=65&&t<=70||t>=97&&t<=102},At=function(t){return 10===t||9===t||32===t},lt=function(t){return function(t){return function(t){return t>=97&&t<=122}(t)||function(t){return t>=65&&t<=90}(t)}(t)||function(t){return t>=128}(t)||95===t},ct=function(t){return lt(t)||at(t)||45===t},ut=function(t){return t>=0&&t<=8||11===t||t>=14&&t<=31||127===t},ht=function(t,e){return 92===t&&10!==e},dt=function(t,e,n){return 45===t?lt(e)||ht(e,n):!!lt(t)||!(92!==t||!ht(t,e))},ft=function(t,e,n){return 43===t||45===t?!!at(e)||46===e&&at(n):at(46===t?e:t)},pt={type:2},gt={type:3},mt={type:4},vt={type:13},yt={type:8},wt={type:21},xt={type:9},Bt={type:10},bt={type:11},Ct={type:12},_t={type:14},St={type:23},It={type:1},Tt={type:25},Mt={type:24},Qt={type:26},Ft={type:27},kt={type:28},Dt={type:29},Ut={type:31},Et={type:32},Lt=function(){function t(){this._value=[]}return t.prototype.write=function(t){this._value=this._value.concat(A(t))},t.prototype.read=function(){for(var t=[],e=this.consumeToken();e!==Et;)t.push(e),e=this.consumeToken();return t},t.prototype.consumeToken=function(){var t=this.consumeCodePoint();switch(t){case 34:return this.consumeStringToken(34);case 35:var e=this.peekCodePoint(0),n=this.peekCodePoint(1),i=this.peekCodePoint(2);if(ct(e)||ht(n,i)){var r=dt(e,n,i)?2:1;return{type:5,value:this.consumeName(),flags:r}}break;case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),vt;break;case 39:return this.consumeStringToken(39);case 40:return pt;case 41:return gt;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),_t;break;case 43:if(ft(t,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(t),this.consumeNumericToken();break;case 44:return mt;case 45:var o=t,a=this.peekCodePoint(0),s=this.peekCodePoint(1);if(ft(o,a,s))return this.reconsumeCodePoint(t),this.consumeNumericToken();if(dt(o,a,s))return this.reconsumeCodePoint(t),this.consumeIdentLikeToken();if(45===a&&62===s)return this.consumeCodePoint(),this.consumeCodePoint(),Mt;break;case 46:if(ft(t,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(t),this.consumeNumericToken();break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){var A=this.consumeCodePoint();if(42===A&&47===(A=this.consumeCodePoint()))return this.consumeToken();if(-1===A)return this.consumeToken()}break;case 58:return Qt;case 59:return Ft;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),Tt;break;case 64:var c=this.peekCodePoint(0),u=this.peekCodePoint(1),h=this.peekCodePoint(2);if(dt(c,u,h))return{type:7,value:this.consumeName()};break;case 91:return kt;case 92:if(ht(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),this.consumeIdentLikeToken();break;case 93:return Dt;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),yt;break;case 123:return bt;case 125:return Ct;case 117:case 85:var d=this.peekCodePoint(0),f=this.peekCodePoint(1);return 43!==d||!st(f)&&63!==f||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(t),this.consumeIdentLikeToken();case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),xt;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),wt;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),Bt;break;case-1:return Et}return At(t)?(this.consumeWhiteSpace(),Ut):at(t)?(this.reconsumeCodePoint(t),this.consumeNumericToken()):lt(t)?(this.reconsumeCodePoint(t),this.consumeIdentLikeToken()):{type:6,value:l(t)}},t.prototype.consumeCodePoint=function(){var t=this._value.shift();return void 0===t?-1:t},t.prototype.reconsumeCodePoint=function(t){this._value.unshift(t)},t.prototype.peekCodePoint=function(t){return t>=this._value.length?-1:this._value[t]},t.prototype.consumeUnicodeRangeToken=function(){for(var t=[],e=this.consumeCodePoint();st(e)&&t.length<6;)t.push(e),e=this.consumeCodePoint();for(var n=!1;63===e&&t.length<6;)t.push(e),e=this.consumeCodePoint(),n=!0;if(n)return{type:30,start:parseInt(l.apply(void 0,t.map(function(t){return 63===t?48:t})),16),end:parseInt(l.apply(void 0,t.map(function(t){return 63===t?70:t})),16)};var i=parseInt(l.apply(void 0,t),16);if(45===this.peekCodePoint(0)&&st(this.peekCodePoint(1))){this.consumeCodePoint(),e=this.consumeCodePoint();for(var r=[];st(e)&&r.length<6;)r.push(e),e=this.consumeCodePoint();return{type:30,start:i,end:parseInt(l.apply(void 0,r),16)}}return{type:30,start:i,end:i}},t.prototype.consumeIdentLikeToken=function(){var t=this.consumeName();return"url"===t.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:t}):{type:20,value:t}},t.prototype.consumeUrlToken=function(){var t=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};var e=this.peekCodePoint(0);if(39===e||34===e){var n=this.consumeStringToken(this.consumeCodePoint());return 0===n.type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:n.value}):(this.consumeBadUrlRemnants(),St)}for(;;){var i=this.consumeCodePoint();if(-1===i||41===i)return{type:22,value:l.apply(void 0,t)};if(At(i))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:l.apply(void 0,t)}):(this.consumeBadUrlRemnants(),St);if(34===i||39===i||40===i||ut(i))return this.consumeBadUrlRemnants(),St;if(92===i){if(!ht(i,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),St;t.push(this.consumeEscapedCodePoint())}else t.push(i)}},t.prototype.consumeWhiteSpace=function(){for(;At(this.peekCodePoint(0));)this.consumeCodePoint()},t.prototype.consumeBadUrlRemnants=function(){for(;;){var t=this.consumeCodePoint();if(41===t||-1===t)return;ht(t,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},t.prototype.consumeStringSlice=function(t){for(var e="";t>0;){var n=Math.min(5e4,t);e+=l.apply(void 0,this._value.splice(0,n)),t-=n}return this._value.shift(),e},t.prototype.consumeStringToken=function(t){for(var e="",n=0;;){var i=this._value[n];if(-1===i||void 0===i||i===t)return{type:0,value:e+=this.consumeStringSlice(n)};if(10===i)return this._value.splice(0,n),It;if(92===i){var r=this._value[n+1];-1!==r&&void 0!==r&&(10===r?(e+=this.consumeStringSlice(n),n=-1,this._value.shift()):ht(i,r)&&(e+=this.consumeStringSlice(n),e+=l(this.consumeEscapedCodePoint()),n=-1))}n++}},t.prototype.consumeNumber=function(){var t=[],e=4,n=this.peekCodePoint(0);for(43!==n&&45!==n||t.push(this.consumeCodePoint());at(this.peekCodePoint(0));)t.push(this.consumeCodePoint());n=this.peekCodePoint(0);var i=this.peekCodePoint(1);if(46===n&&at(i))for(t.push(this.consumeCodePoint(),this.consumeCodePoint()),e=8;at(this.peekCodePoint(0));)t.push(this.consumeCodePoint());n=this.peekCodePoint(0),i=this.peekCodePoint(1);var r=this.peekCodePoint(2);if((69===n||101===n)&&((43===i||45===i)&&at(r)||at(i)))for(t.push(this.consumeCodePoint(),this.consumeCodePoint()),e=8;at(this.peekCodePoint(0));)t.push(this.consumeCodePoint());return[function(t){var e=0,n=1;43!==t[e]&&45!==t[e]||(45===t[e]&&(n=-1),e++);for(var i=[];at(t[e]);)i.push(t[e++]);var r=i.length?parseInt(l.apply(void 0,i),10):0;46===t[e]&&e++;for(var o=[];at(t[e]);)o.push(t[e++]);var a=o.length,s=a?parseInt(l.apply(void 0,o),10):0;69!==t[e]&&101!==t[e]||e++;var A=1;43!==t[e]&&45!==t[e]||(45===t[e]&&(A=-1),e++);for(var c=[];at(t[e]);)c.push(t[e++]);var u=c.length?parseInt(l.apply(void 0,c),10):0;return n*(r+s*Math.pow(10,-a))*Math.pow(10,A*u)}(t),e]},t.prototype.consumeNumericToken=function(){var t=this.consumeNumber(),e=t[0],n=t[1],i=this.peekCodePoint(0),r=this.peekCodePoint(1),o=this.peekCodePoint(2);return dt(i,r,o)?{type:15,number:e,flags:n,unit:this.consumeName()}:37===i?(this.consumeCodePoint(),{type:16,number:e,flags:n}):{type:17,number:e,flags:n}},t.prototype.consumeEscapedCodePoint=function(){var t=this.consumeCodePoint();if(st(t)){for(var e=l(t);st(this.peekCodePoint(0))&&e.length<6;)e+=l(this.consumeCodePoint());At(this.peekCodePoint(0))&&this.consumeCodePoint();var n=parseInt(e,16);return 0===n||function(t){return t>=55296&&t<=57343}(n)||n>1114111?65533:n}return-1===t?65533:t},t.prototype.consumeName=function(){for(var t="";;){var e=this.consumeCodePoint();if(ct(e))t+=l(e);else{if(!ht(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),t;t+=l(this.consumeEscapedCodePoint())}}},t}(),Ot=function(){function t(t){this._tokens=t}return t.create=function(e){var n=new Lt;return n.write(e),new t(n.read())},t.parseValue=function(e){return t.create(e).parseComponentValue()},t.parseValues=function(e){return t.create(e).parseComponentValues()},t.prototype.parseComponentValue=function(){for(var t=this.consumeToken();31===t.type;)t=this.consumeToken();if(32===t.type)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(t);var e=this.consumeComponentValue();do{t=this.consumeToken()}while(31===t.type);if(32===t.type)return e;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},t.prototype.parseComponentValues=function(){for(var t=[];;){var e=this.consumeComponentValue();if(32===e.type)return t;t.push(e),t.push()}},t.prototype.consumeComponentValue=function(){var t=this.consumeToken();switch(t.type){case 11:case 28:case 2:return this.consumeSimpleBlock(t.type);case 19:return this.consumeFunction(t)}return t},t.prototype.consumeSimpleBlock=function(t){for(var e={type:t,values:[]},n=this.consumeToken();;){if(32===n.type||Wt(n,t))return e;this.reconsumeToken(n),e.values.push(this.consumeComponentValue()),n=this.consumeToken()}},t.prototype.consumeFunction=function(t){for(var e={name:t.value,values:[],type:18};;){var n=this.consumeToken();if(32===n.type||3===n.type)return e;this.reconsumeToken(n),e.values.push(this.consumeComponentValue())}},t.prototype.consumeToken=function(){var t=this._tokens.shift();return void 0===t?Et:t},t.prototype.reconsumeToken=function(t){this._tokens.unshift(t)},t}(),Pt=function(t){return 15===t.type},Ht=function(t){return 17===t.type},Nt=function(t){return 20===t.type},Rt=function(t){return 0===t.type},Vt=function(t,e){return Nt(t)&&t.value===e},zt=function(t){return 31!==t.type},Kt=function(t){return 31!==t.type&&4!==t.type},Gt=function(t){var e=[],n=[];return t.forEach(function(t){if(4===t.type){if(0===n.length)throw new Error("Error parsing function args, zero tokens for arg");return e.push(n),void(n=[])}31!==t.type&&n.push(t)}),n.length&&e.push(n),e},Wt=function(t,e){return 11===e&&12===t.type||(28===e&&29===t.type||2===e&&3===t.type)},jt=function(t){return 17===t.type||15===t.type},$t=function(t){return 16===t.type||jt(t)},qt=function(t){return t.length>1?[t[0],t[1]]:[t[0]]},Yt={type:17,number:0,flags:4},Xt={type:16,number:50,flags:4},Jt={type:16,number:100,flags:4},Zt=function(t,e,n){var i=t[0],r=t[1];return[te(i,e),te(void 0!==r?r:i,n)]},te=function(t,e){if(16===t.type)return t.number/100*e;if(Pt(t))switch(t.unit){case"rem":case"em":return 16*t.number;case"px":default:return t.number}return t.number},ee=function(t,e){if(15===e.type)switch(e.unit){case"deg":return Math.PI*e.number/180;case"grad":return Math.PI/200*e.number;case"rad":return e.number;case"turn":return 2*Math.PI*e.number}throw new Error("Unsupported angle type")},ne=function(t){return 15===t.type&&("deg"===t.unit||"grad"===t.unit||"rad"===t.unit||"turn"===t.unit)},ie=function(t){switch(t.filter(Nt).map(function(t){return t.value}).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[Yt,Yt];case"to top":case"bottom":return re(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[Yt,Jt];case"to right":case"left":return re(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[Jt,Jt];case"to bottom":case"top":return re(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[Jt,Yt];case"to left":case"right":return re(270)}return 0},re=function(t){return Math.PI*t/180},oe=function(t,e){if(18===e.type){var n=de[e.name];if(void 0===n)throw new Error('Attempting to parse an unsupported color function "'+e.name+'"');return n(t,e.values)}if(5===e.type){if(3===e.value.length){var i=e.value.substring(0,1),r=e.value.substring(1,2),o=e.value.substring(2,3);return Ae(parseInt(i+i,16),parseInt(r+r,16),parseInt(o+o,16),1)}if(4===e.value.length){i=e.value.substring(0,1),r=e.value.substring(1,2),o=e.value.substring(2,3);var a=e.value.substring(3,4);return Ae(parseInt(i+i,16),parseInt(r+r,16),parseInt(o+o,16),parseInt(a+a,16)/255)}if(6===e.value.length){i=e.value.substring(0,2),r=e.value.substring(2,4),o=e.value.substring(4,6);return Ae(parseInt(i,16),parseInt(r,16),parseInt(o,16),1)}if(8===e.value.length){i=e.value.substring(0,2),r=e.value.substring(2,4),o=e.value.substring(4,6),a=e.value.substring(6,8);return Ae(parseInt(i,16),parseInt(r,16),parseInt(o,16),parseInt(a,16)/255)}}if(20===e.type){var s=pe[e.value.toUpperCase()];if(void 0!==s)return s}return pe.TRANSPARENT},ae=function(t){return 0==(255&t)},se=function(t){var e=255&t,n=255&t>>8,i=255&t>>16,r=255&t>>24;return e<255?"rgba("+r+","+i+","+n+","+e/255+")":"rgb("+r+","+i+","+n+")"},Ae=function(t,e,n,i){return(t<<24|e<<16|n<<8|Math.round(255*i)<<0)>>>0},le=function(t,e){if(17===t.type)return t.number;if(16===t.type){var n=3===e?1:255;return 3===e?t.number/100*n:Math.round(t.number/100*n)}return 0},ce=function(t,e){var n=e.filter(Kt);if(3===n.length){var i=n.map(le),r=i[0],o=i[1],a=i[2];return Ae(r,o,a,1)}if(4===n.length){var s=n.map(le),A=(r=s[0],o=s[1],a=s[2],s[3]);return Ae(r,o,a,A)}return 0};function ue(t,e,n){return n<0&&(n+=1),n>=1&&(n-=1),n<1/6?(e-t)*n*6+t:n<.5?e:n<2/3?6*(e-t)*(2/3-n)+t:t}var he=function(t,e){var n=e.filter(Kt),i=n[0],r=n[1],o=n[2],a=n[3],s=(17===i.type?re(i.number):ee(t,i))/(2*Math.PI),A=$t(r)?r.number/100:0,l=$t(o)?o.number/100:0,c=void 0!==a&&$t(a)?te(a,1):1;if(0===A)return Ae(255*l,255*l,255*l,1);var u=l<=.5?l*(A+1):l+A-l*A,h=2*l-u,d=ue(h,u,s+1/3),f=ue(h,u,s),p=ue(h,u,s-1/3);return Ae(255*d,255*f,255*p,c)},de={hsl:he,hsla:he,rgb:ce,rgba:ce},fe=function(t,e){return oe(t,Ot.create(e).parseComponentValue())},pe={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},ge={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(t,e){return e.map(function(t){if(Nt(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},me={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},ve=function(t,e){var n=oe(t,e[0]),i=e[1];return i&&$t(i)?{color:n,stop:i}:{color:n,stop:null}},ye=function(t,e){var n=t[0],i=t[t.length-1];null===n.stop&&(n.stop=Yt),null===i.stop&&(i.stop=Jt);for(var r=[],o=0,a=0;a<t.length;a++){var s=t[a].stop;if(null!==s){var A=te(s,e);A>o?r.push(A):r.push(o),o=A}else r.push(null)}var l=null;for(a=0;a<r.length;a++){var c=r[a];if(null===c)null===l&&(l=a);else if(null!==l){for(var u=a-l,h=(c-r[l-1])/(u+1),d=1;d<=u;d++)r[l+d-1]=h*d;l=null}}return t.map(function(t,n){return{color:t.color,stop:Math.max(Math.min(1,r[n]/e),0)}})},we=function(t,e,n){var i="number"==typeof t?t:function(t,e,n){var i=e/2,r=n/2,o=te(t[0],e)-i,a=r-te(t[1],n);return(Math.atan2(a,o)+2*Math.PI)%(2*Math.PI)}(t,e,n),r=Math.abs(e*Math.sin(i))+Math.abs(n*Math.cos(i)),o=e/2,a=n/2,s=r/2,A=Math.sin(i-Math.PI/2)*s,l=Math.cos(i-Math.PI/2)*s;return[r,o-l,o+l,a-A,a+A]},xe=function(t,e){return Math.sqrt(t*t+e*e)},Be=function(t,e,n,i,r){return[[0,0],[0,e],[t,0],[t,e]].reduce(function(t,e){var o=e[0],a=e[1],s=xe(n-o,i-a);return(r?s<t.optimumDistance:s>t.optimumDistance)?{optimumCorner:e,optimumDistance:s}:t},{optimumDistance:r?1/0:-1/0,optimumCorner:null}).optimumCorner},be=function(t,e){var n=re(180),i=[];return Gt(e).forEach(function(e,r){if(0===r){var o=e[0];if(20===o.type&&-1!==["top","left","right","bottom"].indexOf(o.value))return void(n=ie(e));if(ne(o))return void(n=(ee(t,o)+re(270))%re(360))}var a=ve(t,e);i.push(a)}),{angle:n,stops:i,type:1}},Ce=function(t,e){var n=0,i=3,r=[],o=[];return Gt(e).forEach(function(e,a){var s=!0;if(0===a?s=e.reduce(function(t,e){if(Nt(e))switch(e.value){case"center":return o.push(Xt),!1;case"top":case"left":return o.push(Yt),!1;case"right":case"bottom":return o.push(Jt),!1}else if($t(e)||jt(e))return o.push(e),!1;return t},s):1===a&&(s=e.reduce(function(t,e){if(Nt(e))switch(e.value){case"circle":return n=0,!1;case"ellipse":return n=1,!1;case"contain":case"closest-side":return i=0,!1;case"farthest-side":return i=1,!1;case"closest-corner":return i=2,!1;case"cover":case"farthest-corner":return i=3,!1}else if(jt(e)||$t(e))return Array.isArray(i)||(i=[]),i.push(e),!1;return t},s)),s){var A=ve(t,e);r.push(A)}}),{size:i,shape:n,stops:r,position:o,type:2}},_e=function(t,e){if(22===e.type){var n={url:e.value,type:0};return t.cache.addImage(e.value),n}if(18===e.type){var i=Ie[e.name];if(void 0===i)throw new Error('Attempting to parse an unsupported image function "'+e.name+'"');return i(t,e.values)}throw new Error("Unsupported image type "+e.type)};var Se,Ie={"linear-gradient":function(t,e){var n=re(180),i=[];return Gt(e).forEach(function(e,r){if(0===r){var o=e[0];if(20===o.type&&"to"===o.value)return void(n=ie(e));if(ne(o))return void(n=ee(t,o))}var a=ve(t,e);i.push(a)}),{angle:n,stops:i,type:1}},"-moz-linear-gradient":be,"-ms-linear-gradient":be,"-o-linear-gradient":be,"-webkit-linear-gradient":be,"radial-gradient":function(t,e){var n=0,i=3,r=[],o=[];return Gt(e).forEach(function(e,a){var s=!0;if(0===a){var A=!1;s=e.reduce(function(t,e){if(A)if(Nt(e))switch(e.value){case"center":return o.push(Xt),t;case"top":case"left":return o.push(Yt),t;case"right":case"bottom":return o.push(Jt),t}else($t(e)||jt(e))&&o.push(e);else if(Nt(e))switch(e.value){case"circle":return n=0,!1;case"ellipse":return n=1,!1;case"at":return A=!0,!1;case"closest-side":return i=0,!1;case"cover":case"farthest-side":return i=1,!1;case"contain":case"closest-corner":return i=2,!1;case"farthest-corner":return i=3,!1}else if(jt(e)||$t(e))return Array.isArray(i)||(i=[]),i.push(e),!1;return t},s)}if(s){var l=ve(t,e);r.push(l)}}),{size:i,shape:n,stops:r,position:o,type:2}},"-moz-radial-gradient":Ce,"-ms-radial-gradient":Ce,"-o-radial-gradient":Ce,"-webkit-radial-gradient":Ce,"-webkit-gradient":function(t,e){var n=re(180),i=[],r=1;return Gt(e).forEach(function(e,n){var o=e[0];if(0===n){if(Nt(o)&&"linear"===o.value)return void(r=1);if(Nt(o)&&"radial"===o.value)return void(r=2)}if(18===o.type)if("from"===o.name){var a=oe(t,o.values[0]);i.push({stop:Yt,color:a})}else if("to"===o.name)a=oe(t,o.values[0]),i.push({stop:Jt,color:a});else if("color-stop"===o.name){var s=o.values.filter(Kt);if(2===s.length){a=oe(t,s[1]);var A=s[0];Ht(A)&&i.push({stop:{type:16,number:100*A.number,flags:A.flags},color:a})}}}),1===r?{angle:(n+re(180))%re(360),stops:i,type:r}:{size:3,shape:0,stops:i,position:[],type:r}}},Te={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(t,e){if(0===e.length)return[];var n=e[0];return 20===n.type&&"none"===n.value?[]:e.filter(function(t){return Kt(t)&&function(t){return!(20===t.type&&"none"===t.value||18===t.type&&!Ie[t.name])}(t)}).map(function(e){return _e(t,e)})}},Me={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(t,e){return e.map(function(t){if(Nt(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},Qe={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(t,e){return Gt(e).map(function(t){return t.filter($t)}).map(qt)}},Fe={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(t,e){return Gt(e).map(function(t){return t.filter(Nt).map(function(t){return t.value}).join(" ")}).map(ke)}},ke=function(t){switch(t){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;case"repeat":default:return 0}};!function(t){t.AUTO="auto",t.CONTAIN="contain",t.COVER="cover"}(Se||(Se={}));var De,Ue={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(t,e){return Gt(e).map(function(t){return t.filter(Ee)})}},Ee=function(t){return Nt(t)||$t(t)},Le=function(t){return{name:"border-"+t+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},Oe=Le("top"),Pe=Le("right"),He=Le("bottom"),Ne=Le("left"),Re=function(t){return{name:"border-radius-"+t,initialValue:"0 0",prefix:!1,type:1,parse:function(t,e){return qt(e.filter($t))}}},Ve=Re("top-left"),ze=Re("top-right"),Ke=Re("bottom-right"),Ge=Re("bottom-left"),We=function(t){return{name:"border-"+t+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(t,e){switch(e){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},je=We("top"),$e=We("right"),qe=We("bottom"),Ye=We("left"),Xe=function(t){return{name:"border-"+t+"-width",initialValue:"0",type:0,prefix:!1,parse:function(t,e){return Pt(e)?e.number:0}}},Je=Xe("top"),Ze=Xe("right"),tn=Xe("bottom"),en=Xe("left"),nn={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},rn={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(t,e){switch(e){case"rtl":return 1;case"ltr":default:return 0}}},on={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(t,e){return e.filter(Nt).reduce(function(t,e){return t|an(e.value)},0)}},an=function(t){switch(t){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},sn={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(t,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},An={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(t,e){return 20===e.type&&"normal"===e.value?0:17===e.type?e.number:15===e.type?e.number:0}};!function(t){t.NORMAL="normal",t.STRICT="strict"}(De||(De={}));var ln,cn={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(t,e){switch(e){case"strict":return De.STRICT;case"normal":default:return De.NORMAL}}},un={name:"line-height",initialValue:"normal",prefix:!1,type:4},hn=function(t,e){return Nt(t)&&"normal"===t.value?1.2*e:17===t.type?e*t.number:$t(t)?te(t,e):e},dn={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(t,e){return 20===e.type&&"none"===e.value?null:_e(t,e)}},fn={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(t,e){switch(e){case"inside":return 0;case"outside":default:return 1}}},pn={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(t,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;case"none":default:return-1}}},gn=function(t){return{name:"margin-"+t,initialValue:"0",prefix:!1,type:4}},mn=gn("top"),vn=gn("right"),yn=gn("bottom"),wn=gn("left"),xn={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(t,e){return e.filter(Nt).map(function(t){switch(t.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;case"visible":default:return 0}})}},Bn={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(t,e){switch(e){case"break-word":return"break-word";case"normal":default:return"normal"}}},bn=function(t){return{name:"padding-"+t,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},Cn=bn("top"),_n=bn("right"),Sn=bn("bottom"),In=bn("left"),Tn={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(t,e){switch(e){case"right":return 2;case"center":case"justify":return 1;case"left":default:return 0}}},Mn={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(t,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},Qn={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(t,e){return 1===e.length&&Vt(e[0],"none")?[]:Gt(e).map(function(e){for(var n={color:pe.TRANSPARENT,offsetX:Yt,offsetY:Yt,blur:Yt},i=0,r=0;r<e.length;r++){var o=e[r];jt(o)?(0===i?n.offsetX=o:1===i?n.offsetY=o:n.blur=o,i++):n.color=oe(t,o)}return n})}},Fn={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(t,e){switch(e){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},kn={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(t,e){if(20===e.type&&"none"===e.value)return null;if(18===e.type){var n=Dn[e.name];if(void 0===n)throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return n(e.values)}return null}},Dn={matrix:function(t){var e=t.filter(function(t){return 17===t.type}).map(function(t){return t.number});return 6===e.length?e:null},matrix3d:function(t){var e=t.filter(function(t){return 17===t.type}).map(function(t){return t.number}),n=e[0],i=e[1];e[2],e[3];var r=e[4],o=e[5];e[6],e[7],e[8],e[9],e[10],e[11];var a=e[12],s=e[13];return e[14],e[15],16===e.length?[n,i,r,o,a,s]:null}},Un={type:16,number:50,flags:4},En=[Un,Un],Ln={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(t,e){var n=e.filter($t);return 2!==n.length?En:[n[0],n[1]]}},On={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(t,e){switch(e){case"hidden":return 1;case"collapse":return 2;case"visible":default:return 0}}};!function(t){t.NORMAL="normal",t.BREAK_ALL="break-all",t.KEEP_ALL="keep-all"}(ln||(ln={}));for(var Pn={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:function(t,e){switch(e){case"break-all":return ln.BREAK_ALL;case"keep-all":return ln.KEEP_ALL;case"normal":default:return ln.NORMAL}}},Hn={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(t,e){if(20===e.type)return{auto:!0,order:0};if(Ht(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},Nn=function(t,e){if(15===e.type)switch(e.unit.toLowerCase()){case"s":return 1e3*e.number;case"ms":return e.number}throw new Error("Unsupported time type")},Rn={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(t,e){return Ht(e)?e.number:1}},Vn={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},zn={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(t,e){return e.filter(Nt).map(function(t){switch(t.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(t){return 0!==t})}},Kn={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(t,e){var n=[],i=[];return e.forEach(function(t){switch(t.type){case 20:case 0:n.push(t.value);break;case 17:n.push(t.number.toString());break;case 4:i.push(n.join(" ")),n.length=0}}),n.length&&i.push(n.join(" ")),i.map(function(t){return-1===t.indexOf(" ")?t:"'"+t+"'"})}},Gn={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Wn={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(t,e){if(Ht(e))return e.number;if(Nt(e))switch(e.value){case"bold":return 700;case"normal":default:return 400}return 400}},jn={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(t,e){return e.filter(Nt).map(function(t){return t.value})}},$n={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(t,e){switch(e){case"oblique":return"oblique";case"italic":return"italic";case"normal":default:return"normal"}}},qn=function(t,e){return 0!=(t&e)},Yn={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(t,e){if(0===e.length)return[];var n=e[0];return 20===n.type&&"none"===n.value?[]:e}},Xn={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(t,e){if(0===e.length)return null;var n=e[0];if(20===n.type&&"none"===n.value)return null;for(var i=[],r=e.filter(zt),o=0;o<r.length;o++){var a=r[o],s=r[o+1];if(20===a.type){var A=s&&Ht(s)?s.number:1;i.push({counter:a.value,increment:A})}}return i}},Jn={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(t,e){if(0===e.length)return[];for(var n=[],i=e.filter(zt),r=0;r<i.length;r++){var o=i[r],a=i[r+1];if(Nt(o)&&"none"!==o.value){var s=a&&Ht(a)?a.number:0;n.push({counter:o.value,reset:s})}}return n}},Zn={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(t,e){return e.filter(Pt).map(function(e){return Nn(t,e)})}},ti={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(t,e){if(0===e.length)return null;var n=e[0];if(20===n.type&&"none"===n.value)return null;var i=[],r=e.filter(Rt);if(r.length%2!=0)return null;for(var o=0;o<r.length;o+=2){var a=r[o].value,s=r[o+1].value;i.push({open:a,close:s})}return i}},ei=function(t,e,n){if(!t)return"";var i=t[Math.min(e,t.length-1)];return i?n?i.open:i.close:""},ni={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(t,e){return 1===e.length&&Vt(e[0],"none")?[]:Gt(e).map(function(e){for(var n={color:255,offsetX:Yt,offsetY:Yt,blur:Yt,spread:Yt,inset:!1},i=0,r=0;r<e.length;r++){var o=e[r];Vt(o,"inset")?n.inset=!0:jt(o)?(0===i?n.offsetX=o:1===i?n.offsetY=o:2===i?n.blur=o:n.spread=o,i++):n.color=oe(t,o)}return n})}},ii={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(t,e){var n=[];return e.filter(Nt).forEach(function(t){switch(t.value){case"stroke":n.push(1);break;case"fill":n.push(0);break;case"markers":n.push(2)}}),[0,1,2].forEach(function(t){-1===n.indexOf(t)&&n.push(t)}),n}},ri={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},oi={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(t,e){return Pt(e)?e.number:0}},ai=function(){function t(t,e){var n,i;this.animationDuration=li(t,Zn,e.animationDuration),this.backgroundClip=li(t,ge,e.backgroundClip),this.backgroundColor=li(t,me,e.backgroundColor),this.backgroundImage=li(t,Te,e.backgroundImage),this.backgroundOrigin=li(t,Me,e.backgroundOrigin),this.backgroundPosition=li(t,Qe,e.backgroundPosition),this.backgroundRepeat=li(t,Fe,e.backgroundRepeat),this.backgroundSize=li(t,Ue,e.backgroundSize),this.borderTopColor=li(t,Oe,e.borderTopColor),this.borderRightColor=li(t,Pe,e.borderRightColor),this.borderBottomColor=li(t,He,e.borderBottomColor),this.borderLeftColor=li(t,Ne,e.borderLeftColor),this.borderTopLeftRadius=li(t,Ve,e.borderTopLeftRadius),this.borderTopRightRadius=li(t,ze,e.borderTopRightRadius),this.borderBottomRightRadius=li(t,Ke,e.borderBottomRightRadius),this.borderBottomLeftRadius=li(t,Ge,e.borderBottomLeftRadius),this.borderTopStyle=li(t,je,e.borderTopStyle),this.borderRightStyle=li(t,$e,e.borderRightStyle),this.borderBottomStyle=li(t,qe,e.borderBottomStyle),this.borderLeftStyle=li(t,Ye,e.borderLeftStyle),this.borderTopWidth=li(t,Je,e.borderTopWidth),this.borderRightWidth=li(t,Ze,e.borderRightWidth),this.borderBottomWidth=li(t,tn,e.borderBottomWidth),this.borderLeftWidth=li(t,en,e.borderLeftWidth),this.boxShadow=li(t,ni,e.boxShadow),this.color=li(t,nn,e.color),this.direction=li(t,rn,e.direction),this.display=li(t,on,e.display),this.float=li(t,sn,e.cssFloat),this.fontFamily=li(t,Kn,e.fontFamily),this.fontSize=li(t,Gn,e.fontSize),this.fontStyle=li(t,$n,e.fontStyle),this.fontVariant=li(t,jn,e.fontVariant),this.fontWeight=li(t,Wn,e.fontWeight),this.letterSpacing=li(t,An,e.letterSpacing),this.lineBreak=li(t,cn,e.lineBreak),this.lineHeight=li(t,un,e.lineHeight),this.listStyleImage=li(t,dn,e.listStyleImage),this.listStylePosition=li(t,fn,e.listStylePosition),this.listStyleType=li(t,pn,e.listStyleType),this.marginTop=li(t,mn,e.marginTop),this.marginRight=li(t,vn,e.marginRight),this.marginBottom=li(t,yn,e.marginBottom),this.marginLeft=li(t,wn,e.marginLeft),this.opacity=li(t,Rn,e.opacity);var r=li(t,xn,e.overflow);this.overflowX=r[0],this.overflowY=r[r.length>1?1:0],this.overflowWrap=li(t,Bn,e.overflowWrap),this.paddingTop=li(t,Cn,e.paddingTop),this.paddingRight=li(t,_n,e.paddingRight),this.paddingBottom=li(t,Sn,e.paddingBottom),this.paddingLeft=li(t,In,e.paddingLeft),this.paintOrder=li(t,ii,e.paintOrder),this.position=li(t,Mn,e.position),this.textAlign=li(t,Tn,e.textAlign),this.textDecorationColor=li(t,Vn,null!==(n=e.textDecorationColor)&&void 0!==n?n:e.color),this.textDecorationLine=li(t,zn,null!==(i=e.textDecorationLine)&&void 0!==i?i:e.textDecoration),this.textShadow=li(t,Qn,e.textShadow),this.textTransform=li(t,Fn,e.textTransform),this.transform=li(t,kn,e.transform),this.transformOrigin=li(t,Ln,e.transformOrigin),this.visibility=li(t,On,e.visibility),this.webkitTextStrokeColor=li(t,ri,e.webkitTextStrokeColor),this.webkitTextStrokeWidth=li(t,oi,e.webkitTextStrokeWidth),this.wordBreak=li(t,Pn,e.wordBreak),this.zIndex=li(t,Hn,e.zIndex)}return t.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&0===this.visibility},t.prototype.isTransparent=function(){return ae(this.backgroundColor)},t.prototype.isTransformed=function(){return null!==this.transform},t.prototype.isPositioned=function(){return 0!==this.position},t.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},t.prototype.isFloating=function(){return 0!==this.float},t.prototype.isInlineLevel=function(){return qn(this.display,4)||qn(this.display,33554432)||qn(this.display,268435456)||qn(this.display,536870912)||qn(this.display,67108864)||qn(this.display,134217728)},t}(),si=function(){return function(t,e){this.content=li(t,Yn,e.content),this.quotes=li(t,ti,e.quotes)}}(),Ai=function(){return function(t,e){this.counterIncrement=li(t,Xn,e.counterIncrement),this.counterReset=li(t,Jn,e.counterReset)}}(),li=function(t,e,n){var i=new Lt,r=null!==n&&void 0!==n?n.toString():e.initialValue;i.write(r);var o=new Ot(i.read());switch(e.type){case 2:var a=o.parseComponentValue();return e.parse(t,Nt(a)?a.value:e.initialValue);case 0:return e.parse(t,o.parseComponentValue());case 1:return e.parse(t,o.parseComponentValues());case 4:return o.parseComponentValue();case 3:switch(e.format){case"angle":return ee(t,o.parseComponentValue());case"color":return oe(t,o.parseComponentValue());case"image":return _e(t,o.parseComponentValue());case"length":var s=o.parseComponentValue();return jt(s)?s:Yt;case"length-percentage":var A=o.parseComponentValue();return $t(A)?A:Yt;case"time":return Nn(t,o.parseComponentValue())}}},ci=function(t,e){var n=function(t){switch(t.getAttribute("data-html2canvas-debug")){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}}(t);return 1===n||e===n},ui=function(){return function(t,e){this.context=t,this.textNodes=[],this.elements=[],this.flags=0,ci(e,3),this.styles=new ai(t,window.getComputedStyle(e,null)),pr(e)&&(this.styles.animationDuration.some(function(t){return t>0})&&(e.style.animationDuration="0s"),null!==this.styles.transform&&(e.style.transform="none")),this.bounds=s(this.context,e),ci(e,4)&&(this.flags|=16)}}(),hi="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",di="undefined"==typeof Uint8Array?[]:new Uint8Array(256),fi=0;fi<hi.length;fi++)di[hi.charCodeAt(fi)]=fi;for(var pi=function(t,e,n){return t.slice?t.slice(e,n):new Uint16Array(Array.prototype.slice.call(t,e,n))},gi=function(){function t(t,e,n,i,r,o){this.initialValue=t,this.errorValue=e,this.highStart=n,this.highValueIndex=i,this.index=r,this.data=o}return t.prototype.get=function(t){var e;if(t>=0){if(t<55296||t>56319&&t<=65535)return e=((e=this.index[t>>5])<<2)+(31&t),this.data[e];if(t<=65535)return e=((e=this.index[2048+(t-55296>>5)])<<2)+(31&t),this.data[e];if(t<this.highStart)return e=2080+(t>>11),e=this.index[e],e+=t>>5&63,e=((e=this.index[e])<<2)+(31&t),this.data[e];if(t<=1114111)return this.data[this.highValueIndex]}return this.errorValue},t}(),mi="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",vi="undefined"==typeof Uint8Array?[]:new Uint8Array(256),yi=0;yi<mi.length;yi++)vi[mi.charCodeAt(yi)]=yi;var wi,xi=8,Bi=9,bi=11,Ci=12,_i=function(t,e){var n,i,r,o=function(t){var e,n,i,r,o,a=.75*t.length,s=t.length,A=0;"="===t[t.length-1]&&(a--,"="===t[t.length-2]&&a--);var l="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(a):new Array(a),c=Array.isArray(l)?l:new Uint8Array(l);for(e=0;e<s;e+=4)n=di[t.charCodeAt(e)],i=di[t.charCodeAt(e+1)],r=di[t.charCodeAt(e+2)],o=di[t.charCodeAt(e+3)],c[A++]=n<<2|i>>4,c[A++]=(15&i)<<4|r>>2,c[A++]=(3&r)<<6|63&o;return l}(t),a=Array.isArray(o)?function(t){for(var e=t.length,n=[],i=0;i<e;i+=4)n.push(t[i+3]<<24|t[i+2]<<16|t[i+1]<<8|t[i]);return n}(o):new Uint32Array(o),s=Array.isArray(o)?function(t){for(var e=t.length,n=[],i=0;i<e;i+=2)n.push(t[i+1]<<8|t[i]);return n}(o):new Uint16Array(o),A=pi(s,12,a[4]/2),l=2===a[5]?pi(s,(24+a[4])/2):(n=a,i=Math.ceil((24+a[4])/4),n.slice?n.slice(i,r):new Uint32Array(Array.prototype.slice.call(n,i,r)));return new gi(a[0],a[1],a[2],a[3],A,l)}("AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),Si=function(t){return _i.get(t)},Ii=function(t,e,n){var i=n-2,r=e[i],o=e[n-1],a=e[n];if(2===o&&3===a)return"脳";if(2===o||3===o||4===o)return"梅";if(2===a||3===a||4===a)return"梅";if(o===xi&&-1!==[xi,Bi,bi,Ci].indexOf(a))return"脳";if(!(o!==bi&&o!==Bi||a!==Bi&&10!==a))return"脳";if((o===Ci||10===o)&&10===a)return"脳";if(13===a||5===a)return"脳";if(7===a)return"脳";if(1===o)return"脳";if(13===o&&14===a){for(;5===r;)r=e[--i];if(14===r)return"脳"}if(15===o&&15===a){for(var s=0;15===r;)s++,r=e[--i];if(s%2==0)return"脳"}return"梅"},Ti=function(t){var e=function(t){for(var e=[],n=0,i=t.length;n<i;){var r=t.charCodeAt(n++);if(r>=55296&&r<=56319&&n<i){var o=t.charCodeAt(n++);56320==(64512&o)?e.push(((1023&r)<<10)+(1023&o)+65536):(e.push(r),n--)}else e.push(r)}return e}(t),n=e.length,i=0,r=0,o=e.map(Si);return{next:function(){if(i>=n)return{done:!0,value:null};for(var t="脳";i<n&&"脳"===(t=Ii(0,o,++i)););if("脳"!==t||i===n){var a=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,t);var n=t.length;if(!n)return"";for(var i=[],r=-1,o="";++r<n;){var a=t[r];a<=65535?i.push(a):(a-=65536,i.push(55296+(a>>10),a%1024+56320)),(r+1===n||i.length>16384)&&(o+=String.fromCharCode.apply(String,i),i.length=0)}return o}.apply(null,e.slice(r,i));return r=i,{value:a,done:!1}}return{done:!0,value:null}}}},Mi=function(t){return 0===t[0]&&255===t[1]&&0===t[2]&&255===t[3]},Qi=function(t,e,n,i,r){var o="http://www.w3.org/2000/svg",a=document.createElementNS(o,"svg"),s=document.createElementNS(o,"foreignObject");return a.setAttributeNS(null,"width",t.toString()),a.setAttributeNS(null,"height",e.toString()),s.setAttributeNS(null,"width","100%"),s.setAttributeNS(null,"height","100%"),s.setAttributeNS(null,"x",n.toString()),s.setAttributeNS(null,"y",i.toString()),s.setAttributeNS(null,"externalResourcesRequired","true"),a.appendChild(s),s.appendChild(r),a},Fi=function(t){return new Promise(function(e,n){var i=new Image;i.onload=function(){return e(i)},i.onerror=n,i.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent((new XMLSerializer).serializeToString(t))})},ki={get SUPPORT_RANGE_BOUNDS(){var t=function(t){if(t.createRange){var e=t.createRange();if(e.getBoundingClientRect){var n=t.createElement("boundtest");n.style.height="123px",n.style.display="block",t.body.appendChild(n),e.selectNode(n);var i=e.getBoundingClientRect(),r=Math.round(i.height);if(t.body.removeChild(n),123===r)return!0}}return!1}(document);return Object.defineProperty(ki,"SUPPORT_RANGE_BOUNDS",{value:t}),t},get SUPPORT_WORD_BREAKING(){var t=ki.SUPPORT_RANGE_BOUNDS&&function(t){var e=t.createElement("boundtest");e.style.width="50px",e.style.display="block",e.style.fontSize="12px",e.style.letterSpacing="0px",e.style.wordSpacing="0px",t.body.appendChild(e);var n=t.createRange();e.innerHTML="function"==typeof"".repeat?"&#128104;".repeat(10):"";var i=e.firstChild,r=0,o={},a=A(i.data).map(function(t){return l(t)}).every(function(t,e){n.setStart(i,r),n.setEnd(i,r+t.length);var a=n.getBoundingClientRect();r+=t.length;var s=a.x>o.x||a.y>o.y;return o=a,0===e||s});return t.body.removeChild(e),a}(document);return Object.defineProperty(ki,"SUPPORT_WORD_BREAKING",{value:t}),t},get SUPPORT_SVG_DRAWING(){var t=function(t){var e=new Image,n=t.createElement("canvas"),i=n.getContext("2d");if(!i)return!1;e.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{i.drawImage(e,0,0),n.toDataURL()}catch(t){return!1}return!0}(document);return Object.defineProperty(ki,"SUPPORT_SVG_DRAWING",{value:t}),t},get SUPPORT_FOREIGNOBJECT_DRAWING(){var t="function"==typeof Array.from&&"function"==typeof window.fetch?function(t){var e=t.createElement("canvas");e.width=100,e.height=100;var n=e.getContext("2d");if(!n)return Promise.reject(!1);n.fillStyle="rgb(0, 255, 0)",n.fillRect(0,0,100,100);var i=new Image,r=e.toDataURL();i.src=r;var o=Qi(100,100,0,0,i);return n.fillStyle="red",n.fillRect(0,0,100,100),Fi(o).then(function(e){n.drawImage(e,0,0);var i=n.getImageData(0,0,100,100).data;n.fillStyle="red",n.fillRect(0,0,100,100);var o=t.createElement("div");return o.style.backgroundImage="url("+r+")",o.style.height="100px",Mi(i)?Fi(Qi(100,100,0,0,o)):Promise.reject(!1)}).then(function(t){return n.drawImage(t,0,0),Mi(n.getImageData(0,0,100,100).data)}).catch(function(){return!1})}(document):Promise.resolve(!1);return Object.defineProperty(ki,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:t}),t},get SUPPORT_CORS_IMAGES(){var t=void 0!==(new Image).crossOrigin;return Object.defineProperty(ki,"SUPPORT_CORS_IMAGES",{value:t}),t},get SUPPORT_RESPONSE_TYPE(){var t="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(ki,"SUPPORT_RESPONSE_TYPE",{value:t}),t},get SUPPORT_CORS_XHR(){var t="withCredentials"in new XMLHttpRequest;return Object.defineProperty(ki,"SUPPORT_CORS_XHR",{value:t}),t},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var t=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(ki,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:t}),t}},Di=function(){return function(t,e){this.text=t,this.bounds=e}}(),Ui=function(t,e,n,i){var r=[],o=0;return Pi(e,n).forEach(function(e){if(n.textDecorationLine.length||e.trim().length>0)if(ki.SUPPORT_RANGE_BOUNDS){var s=Li(i,o,e.length).getClientRects();if(s.length>1){var A=0;Oi(e).forEach(function(e){r.push(new Di(e,a.fromDOMRectList(t,Li(i,A+o,e.length).getClientRects()))),A+=e.length})}else r.push(new Di(e,a.fromDOMRectList(t,s)))}else{var l=i.splitText(e.length);r.push(new Di(e,Ei(t,i))),i=l}else ki.SUPPORT_RANGE_BOUNDS||(i=i.splitText(e.length));o+=e.length}),r},Ei=function(t,e){var n=e.ownerDocument;if(n){var i=n.createElement("html2canvaswrapper");i.appendChild(e.cloneNode(!0));var r=e.parentNode;if(r){r.replaceChild(i,e);var o=s(t,i);return i.firstChild&&r.replaceChild(i.firstChild,i),o}}return a.EMPTY},Li=function(t,e,n){var i=t.ownerDocument;if(!i)throw new Error("Node has no owner document");var r=i.createRange();return r.setStart(t,e),r.setEnd(t,e+n),r},Oi=function(t){if(ki.SUPPORT_NATIVE_TEXT_SEGMENTATION){var e=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(e.segment(t)).map(function(t){return t.segment})}return function(t){for(var e,n=Ti(t),i=[];!(e=n.next()).done;)e.value&&i.push(e.value.slice());return i}(t)},Pi=function(t,e){return 0!==e.letterSpacing?Oi(t):function(t,e){if(ki.SUPPORT_NATIVE_TEXT_SEGMENTATION){var n=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(n.segment(t)).map(function(t){return t.segment})}return Ni(t,e)}(t,e)},Hi=[32,160,4961,65792,65793,4153,4241],Ni=function(t,e){for(var n,i=function(t,e){var n=A(t),i=rt(n,e),r=i[0],o=i[1],a=i[2],s=n.length,l=0,c=0;return{next:function(){if(c>=s)return{done:!0,value:null};for(var t="脳";c<s&&"脳"===(t=it(n,o,r,++c,a)););if("脳"!==t||c===s){var e=new ot(n,t,l,c);return l=c,{value:e,done:!1}}return{done:!0,value:null}}}}(t,{lineBreak:e.lineBreak,wordBreak:"break-word"===e.overflowWrap?"break-word":e.wordBreak}),r=[],o=function(){if(n.value){var t=n.value.slice(),e="";A(t).forEach(function(t){-1===Hi.indexOf(t)?e+=l(t):(e.length&&r.push(e),r.push(l(t)),e="")}),e.length&&r.push(e)}};!(n=i.next()).done;)o();return r},Ri=function(){return function(t,e,n){this.text=Vi(e.data,n.textTransform),this.textBounds=Ui(t,this.text,n,e)}}(),Vi=function(t,e){switch(e){case 1:return t.toLowerCase();case 3:return t.replace(zi,Ki);case 2:return t.toUpperCase();default:return t}},zi=/(^|\s|:|-|\(|\))([a-z])/g,Ki=function(t,e,n){return t.length>0?e+n.toUpperCase():t},Gi=function(t){function n(e,n){var i=t.call(this,e,n)||this;return i.src=n.currentSrc||n.src,i.intrinsicWidth=n.naturalWidth,i.intrinsicHeight=n.naturalHeight,i.context.cache.addImage(i.src),i}return e(n,t),n}(ui),Wi=function(t){function n(e,n){var i=t.call(this,e,n)||this;return i.canvas=n,i.intrinsicWidth=n.width,i.intrinsicHeight=n.height,i}return e(n,t),n}(ui),ji=function(t){function n(e,n){var i=t.call(this,e,n)||this,r=new XMLSerializer,o=s(e,n);return n.setAttribute("width",o.width+"px"),n.setAttribute("height",o.height+"px"),i.svg="data:image/svg+xml,"+encodeURIComponent(r.serializeToString(n)),i.intrinsicWidth=n.width.baseVal.value,i.intrinsicHeight=n.height.baseVal.value,i.context.cache.addImage(i.svg),i}return e(n,t),n}(ui),$i=function(t){function n(e,n){var i=t.call(this,e,n)||this;return i.value=n.value,i}return e(n,t),n}(ui),qi=function(t){function n(e,n){var i=t.call(this,e,n)||this;return i.start=n.start,i.reversed="boolean"==typeof n.reversed&&!0===n.reversed,i}return e(n,t),n}(ui),Yi=[{type:15,flags:0,unit:"px",number:3}],Xi=[{type:16,flags:0,number:50}],Ji=function(t){return t.width>t.height?new a(t.left+(t.width-t.height)/2,t.top,t.height,t.height):t.width<t.height?new a(t.left,t.top+(t.height-t.width)/2,t.width,t.width):t},Zi=function(t){var e=t.type===nr?new Array(t.value.length+1).join("鈥�"):t.value;return 0===e.length?t.placeholder||"":e},tr="checkbox",er="radio",nr="password",ir=function(t){function n(e,n){var i=t.call(this,e,n)||this;switch(i.type=n.type.toLowerCase(),i.checked=n.checked,i.value=Zi(n),i.type!==tr&&i.type!==er||(i.styles.backgroundColor=3739148031,i.styles.borderTopColor=i.styles.borderRightColor=i.styles.borderBottomColor=i.styles.borderLeftColor=2779096575,i.styles.borderTopWidth=i.styles.borderRightWidth=i.styles.borderBottomWidth=i.styles.borderLeftWidth=1,i.styles.borderTopStyle=i.styles.borderRightStyle=i.styles.borderBottomStyle=i.styles.borderLeftStyle=1,i.styles.backgroundClip=[0],i.styles.backgroundOrigin=[0],i.bounds=Ji(i.bounds)),i.type){case tr:i.styles.borderTopRightRadius=i.styles.borderTopLeftRadius=i.styles.borderBottomRightRadius=i.styles.borderBottomLeftRadius=Yi;break;case er:i.styles.borderTopRightRadius=i.styles.borderTopLeftRadius=i.styles.borderBottomRightRadius=i.styles.borderBottomLeftRadius=Xi}return i}return e(n,t),n}(ui),rr=function(t){function n(e,n){var i=t.call(this,e,n)||this,r=n.options[n.selectedIndex||0];return i.value=r&&r.text||"",i}return e(n,t),n}(ui),or=function(t){function n(e,n){var i=t.call(this,e,n)||this;return i.value=n.value,i}return e(n,t),n}(ui),ar=function(t){function n(e,n){var i=t.call(this,e,n)||this;i.src=n.src,i.width=parseInt(n.width,10)||0,i.height=parseInt(n.height,10)||0,i.backgroundColor=i.styles.backgroundColor;try{if(n.contentWindow&&n.contentWindow.document&&n.contentWindow.document.documentElement){i.tree=cr(e,n.contentWindow.document.documentElement);var r=n.contentWindow.document.documentElement?fe(e,getComputedStyle(n.contentWindow.document.documentElement).backgroundColor):pe.TRANSPARENT,o=n.contentWindow.document.body?fe(e,getComputedStyle(n.contentWindow.document.body).backgroundColor):pe.TRANSPARENT;i.backgroundColor=ae(r)?ae(o)?i.styles.backgroundColor:o:r}}catch(t){}return i}return e(n,t),n}(ui),sr=["OL","UL","MENU"],Ar=function(t,e,n,i){for(var r=e.firstChild,o=void 0;r;r=o)if(o=r.nextSibling,dr(r)&&r.data.trim().length>0)n.textNodes.push(new Ri(t,r,n.styles));else if(fr(r))if(Mr(r)&&r.assignedNodes)r.assignedNodes().forEach(function(e){return Ar(t,e,n,i)});else{var a=lr(t,r);a.styles.isVisible()&&(ur(r,a,i)?a.flags|=4:hr(a.styles)&&(a.flags|=2),-1!==sr.indexOf(r.tagName)&&(a.flags|=8),n.elements.push(a),r.slot,r.shadowRoot?Ar(t,r.shadowRoot,a,i):Ir(r)||wr(r)||Tr(r)||Ar(t,r,a,i))}},lr=function(t,e){return Cr(e)?new Gi(t,e):Br(e)?new Wi(t,e):wr(e)?new ji(t,e):mr(e)?new $i(t,e):vr(e)?new qi(t,e):yr(e)?new ir(t,e):Tr(e)?new rr(t,e):Ir(e)?new or(t,e):_r(e)?new ar(t,e):new ui(t,e)},cr=function(t,e){var n=lr(t,e);return n.flags|=4,Ar(t,e,n,n),n},ur=function(t,e,n){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||xr(t)&&n.styles.isTransparent()},hr=function(t){return t.isPositioned()||t.isFloating()},dr=function(t){return t.nodeType===Node.TEXT_NODE},fr=function(t){return t.nodeType===Node.ELEMENT_NODE},pr=function(t){return fr(t)&&void 0!==t.style&&!gr(t)},gr=function(t){return"object"==typeof t.className},mr=function(t){return"LI"===t.tagName},vr=function(t){return"OL"===t.tagName},yr=function(t){return"INPUT"===t.tagName},wr=function(t){return"svg"===t.tagName},xr=function(t){return"BODY"===t.tagName},Br=function(t){return"CANVAS"===t.tagName},br=function(t){return"VIDEO"===t.tagName},Cr=function(t){return"IMG"===t.tagName},_r=function(t){return"IFRAME"===t.tagName},Sr=function(t){return"STYLE"===t.tagName},Ir=function(t){return"TEXTAREA"===t.tagName},Tr=function(t){return"SELECT"===t.tagName},Mr=function(t){return"SLOT"===t.tagName},Qr=function(t){return t.tagName.indexOf("-")>0},Fr=function(){function t(){this.counters={}}return t.prototype.getCounterValue=function(t){var e=this.counters[t];return e&&e.length?e[e.length-1]:1},t.prototype.getCounterValues=function(t){var e=this.counters[t];return e||[]},t.prototype.pop=function(t){var e=this;t.forEach(function(t){return e.counters[t].pop()})},t.prototype.parse=function(t){var e=this,n=t.counterIncrement,i=t.counterReset,r=!0;null!==n&&n.forEach(function(t){var n=e.counters[t.counter];n&&0!==t.increment&&(r=!1,n.length||n.push(1),n[Math.max(0,n.length-1)]+=t.increment)});var o=[];return r&&i.forEach(function(t){var n=e.counters[t.counter];o.push(t.counter),n||(n=e.counters[t.counter]=[]),n.push(t.reset)}),o},t}(),kr={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Dr={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["諗","論","諕","諔","諓","諒","諑","諐","諏","諎","諍","諌","請","諊","諉","諈","談","諆","諅","諄","諃","钥","跃","越","约","曰","院","怨","愿","苑","远","缘","源","猿","圆","员"]},Ur={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["讬壮","讟壮","讞壮","讝壮","讜壮","讛壮","讚壮","讙壮","讘壮","讗壮","转","砖","专","拽","爪","驻","注","住","谞","诪","诇","讻","讬讟","讬讞","讬讝","讟讝","讟讜","讬","讟","讞","讝","讜","讛","讚","讙","讘","讗"]},Er={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�","醿�"]},Lr=function(t,e,n,i,r,o){return t<e||t>n?Rr(t,r,o.length>0):i.integers.reduce(function(e,n,r){for(;t>=n;)t-=n,e+=i.values[r];return e},"")+o},Or=function(t,e,n,i){var r="";do{n||t--,r=i(t)+r,t/=e}while(t*e>=e);return r},Pr=function(t,e,n,i,r){var o=n-e+1;return(t<0?"-":"")+(Or(Math.abs(t),o,i,function(t){return l(Math.floor(t%o)+e)})+r)},Hr=function(t,e,n){void 0===n&&(n=". ");var i=e.length;return Or(Math.abs(t),i,!1,function(t){return e[Math.floor(t%i)]})+n},Nr=function(t,e,n,i,r,o){if(t<-9999||t>9999)return Rr(t,4,r.length>0);var a=Math.abs(t),s=r;if(0===a)return e[0]+s;for(var A=0;a>0&&A<=4;A++){var l=a%10;0===l&&qn(o,1)&&""!==s?s=e[l]+s:l>1||1===l&&0===A||1===l&&1===A&&qn(o,2)||1===l&&1===A&&qn(o,4)&&t>100||1===l&&A>1&&qn(o,8)?s=e[l]+(A>0?n[A-1]:"")+s:1===l&&A>0&&(s=n[A-1]+s),a=Math.floor(a/10)}return(t<0?i:"")+s},Rr=function(t,e,n){var i=n?". ":"",r=n?"銆�":"",o=n?", ":"",a=n?" ":"";switch(e){case 0:return"鈥�"+a;case 1:return"鈼�"+a;case 2:return"鈼�"+a;case 5:var s=Pr(t,48,57,!0,i);return s.length<4?"0"+s:s;case 4:return Hr(t,"銆囦竴浜屼笁鍥涗簲鍏竷鍏節",r);case 6:return Lr(t,1,3999,kr,3,i).toLowerCase();case 7:return Lr(t,1,3999,kr,3,i);case 8:return Pr(t,945,969,!1,i);case 9:return Pr(t,97,122,!1,i);case 10:return Pr(t,65,90,!1,i);case 11:return Pr(t,1632,1641,!0,i);case 12:case 49:return Lr(t,1,9999,Dr,3,i);case 35:return Lr(t,1,9999,Dr,3,i).toLowerCase();case 13:return Pr(t,2534,2543,!0,i);case 14:case 30:return Pr(t,6112,6121,!0,i);case 15:return Hr(t,"瀛愪笐瀵呭嵂杈板烦鍗堟湭鐢抽厜鎴屼亥",r);case 16:return Hr(t,"鐢蹭箼涓欎竵鎴婂繁搴氳緵澹櫢",r);case 17:case 48:return Nr(t,"闆朵竴浜屼笁鍥涗簲鍏竷鍏節","鍗佺櫨鍗冭惉","璨�",r,14);case 47:return Nr(t,"闆跺9璨冲弮鑲嗕紞闄告煉鎹岀帠","鎷句桨浠熻惉","璨�",r,15);case 42:return Nr(t,"闆朵竴浜屼笁鍥涗簲鍏竷鍏節","鍗佺櫨鍗冭惉","璐�",r,14);case 41:return Nr(t,"闆跺9璐板弫鑲嗕紞闄嗘煉鎹岀帠","鎷句桨浠熻惉","璐�",r,15);case 26:return Nr(t,"銆囦竴浜屼笁鍥涗簲鍏竷鍏節","鍗佺櫨鍗冧竾","銉炪偆銉娿偣",r,0);case 25:return Nr(t,"闆跺1寮愬弬鍥涗紞鍏竷鍏節","鎷剧櫨鍗冧竾","銉炪偆銉娿偣",r,7);case 31:return Nr(t,"鞓侅澕鞚挫偧靷槫鞙§範韺旉惮","鞁氨觳滊","毵堨澊雱堨姢",o,7);case 33:return Nr(t,"闆朵竴浜屼笁鍥涗簲鍏竷鍏節","鍗佺櫨鍗冭惉","毵堨澊雱堨姢",o,0);case 32:return Nr(t,"闆跺9璨冲弮鍥涗簲鍏竷鍏節","鎷剧櫨鍗�","毵堨澊雱堨姢",o,7);case 18:return Pr(t,2406,2415,!0,i);case 20:return Lr(t,1,19999,Er,3,i);case 21:return Pr(t,2790,2799,!0,i);case 22:return Pr(t,2662,2671,!0,i);case 22:return Lr(t,1,10999,Ur,3,i);case 23:return Hr(t,"銇傘亜銇嗐亪銇娿亱銇嶃亸銇戙亾銇曘仐銇欍仜銇濄仧銇°仱銇︺仺銇伀銇伃銇伅銇层伒銇搞伝銇俱伩銈�銈併倐銈勩倖銈堛倝銈娿倠銈屻倣銈忋倫銈戙倰銈�");case 24:return Hr(t,"銇勩倣銇伀銇汇伕銇ㄣ仭銈娿伂銈嬨倰銈忋亱銈堛仧銈屻仢銇ゃ伃銇倝銈�銇嗐倫銇亰銇忋倓銇俱亼銇点亾銇堛仸銇傘仌銇嶃倖銈併伩銇椼倯銇层倐銇涖仚");case 27:return Pr(t,3302,3311,!0,i);case 28:return Hr(t,"銈€偆銈︺偍銈偒銈偗銈便偝銈点偡銈广偦銈姐偪銉併儎銉嗐儓銉娿儖銉屻儘銉庛儚銉掋儠銉樸儧銉炪儫銉犮儭銉€儰銉︺儴銉┿儶銉儸銉儻銉般儽銉层兂",r);case 29:return Hr(t,"銈ゃ儹銉忋儖銉涖儤銉堛儊銉儗銉儾銉偒銉ㄣ偪銉偨銉勩儘銉娿儵銉犮偊銉般儙銈偗銉ゃ優銈便儠銈炽偍銉嗐偄銈点偔銉︺儭銉熴偡銉便儝銉€偦銈�",r);case 34:return Pr(t,3792,3801,!0,i);case 37:return Pr(t,6160,6169,!0,i);case 38:return Pr(t,4160,4169,!0,i);case 39:return Pr(t,2918,2927,!0,i);case 40:return Pr(t,1776,1785,!0,i);case 43:return Pr(t,3046,3055,!0,i);case 44:return Pr(t,3174,3183,!0,i);case 45:return Pr(t,3664,3673,!0,i);case 46:return Pr(t,3872,3881,!0,i);case 3:default:return Pr(t,48,57,!0,i)}},Vr=function(){function t(t,e,n){if(this.context=t,this.options=n,this.scrolledElements=[],this.referenceElement=e,this.counters=new Fr,this.quoteDepth=0,!e.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(e.ownerDocument.documentElement,!1)}return t.prototype.toIFrame=function(t,e){var n=this,o=Kr(t,e);if(!o.contentWindow)return Promise.reject("Unable to find iframe window");var a=t.defaultView.pageXOffset,s=t.defaultView.pageYOffset,A=o.contentWindow,l=A.document,c=jr(o).then(function(){return i(n,void 0,void 0,function(){var t,n;return r(this,function(i){switch(i.label){case 0:return this.scrolledElements.forEach(Jr),A&&(A.scrollTo(e.left,e.top),!/(iPad|iPhone|iPod)/g.test(navigator.userAgent)||A.scrollY===e.top&&A.scrollX===e.left||(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(A.scrollX-e.left,A.scrollY-e.top,0,0))),t=this.options.onclone,void 0===(n=this.clonedReferenceElement)?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:l.fonts&&l.fonts.ready?[4,l.fonts.ready]:[3,2];case 1:i.sent(),i.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,Wr(l)]:[3,4];case 3:i.sent(),i.label=4;case 4:return"function"==typeof t?[2,Promise.resolve().then(function(){return t(l,n)}).then(function(){return o})]:[2,o]}})})});return l.open(),l.write(Yr(document.doctype)+"<html></html>"),Xr(this.referenceElement.ownerDocument,a,s),l.replaceChild(l.adoptNode(this.documentElement),l.documentElement),l.close(),c},t.prototype.createElementClone=function(t){if(ci(t,2),Br(t))return this.createCanvasClone(t);if(br(t))return this.createVideoClone(t);if(Sr(t))return this.createStyleClone(t);var e=t.cloneNode(!1);return Cr(e)&&(Cr(t)&&t.currentSrc&&t.currentSrc!==t.src&&(e.src=t.currentSrc,e.srcset=""),"lazy"===e.loading&&(e.loading="eager")),Qr(e)?this.createCustomElementClone(e):e},t.prototype.createCustomElementClone=function(t){var e=document.createElement("html2canvascustomelement");return qr(t.style,e),e},t.prototype.createStyleClone=function(t){try{var e=t.sheet;if(e&&e.cssRules){var n=[].slice.call(e.cssRules,0).reduce(function(t,e){return e&&"string"==typeof e.cssText?t+e.cssText:t},""),i=t.cloneNode(!1);return i.textContent=n,i}}catch(t){if(this.context.logger.error("Unable to access cssRules property",t),"SecurityError"!==t.name)throw t}return t.cloneNode(!1)},t.prototype.createCanvasClone=function(t){var e;if(this.options.inlineImages&&t.ownerDocument){var n=t.ownerDocument.createElement("img");try{return n.src=t.toDataURL(),n}catch(e){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",t)}}var i=t.cloneNode(!1);try{i.width=t.width,i.height=t.height;var r=t.getContext("2d"),o=i.getContext("2d");if(o)if(!this.options.allowTaint&&r)o.putImageData(r.getImageData(0,0,t.width,t.height),0,0);else{var a=null!==(e=t.getContext("webgl2"))&&void 0!==e?e:t.getContext("webgl");if(a){var s=a.getContextAttributes();!1===(null===s||void 0===s?void 0:s.preserveDrawingBuffer)&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",t)}o.drawImage(t,0,0)}return i}catch(e){this.context.logger.info("Unable to clone canvas as it is tainted",t)}return i},t.prototype.createVideoClone=function(t){var e=t.ownerDocument.createElement("canvas");e.width=t.offsetWidth,e.height=t.offsetHeight;var n=e.getContext("2d");try{return n&&(n.drawImage(t,0,0,e.width,e.height),this.options.allowTaint||n.getImageData(0,0,e.width,e.height)),e}catch(e){this.context.logger.info("Unable to clone video as it is tainted",t)}var i=t.ownerDocument.createElement("canvas");return i.width=t.offsetWidth,i.height=t.offsetHeight,i},t.prototype.appendChildNode=function(t,e,n){fr(e)&&("SCRIPT"===e.tagName||e.hasAttribute("data-html2canvas-ignore")||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(e))||this.options.copyStyles&&fr(e)&&Sr(e)||t.appendChild(this.cloneNode(e,n))},t.prototype.cloneChildNodes=function(t,e,n){for(var i=this,r=t.shadowRoot?t.shadowRoot.firstChild:t.firstChild;r;r=r.nextSibling)if(fr(r)&&Mr(r)&&"function"==typeof r.assignedNodes){var o=r.assignedNodes();o.length&&o.forEach(function(t){return i.appendChildNode(e,t,n)})}else this.appendChildNode(e,r,n)},t.prototype.cloneNode=function(t,e){if(dr(t))return document.createTextNode(t.data);if(!t.ownerDocument)return t.cloneNode(!1);var n=t.ownerDocument.defaultView;if(n&&fr(t)&&(pr(t)||gr(t))){var i=this.createElementClone(t);i.style.transitionProperty="none";var r=n.getComputedStyle(t),o=n.getComputedStyle(t,":before"),a=n.getComputedStyle(t,":after");this.referenceElement===t&&pr(i)&&(this.clonedReferenceElement=i),xr(i)&&eo(i);var s=this.counters.parse(new Ai(this.context,r)),A=this.resolvePseudoContent(t,i,o,wi.BEFORE);Qr(t)&&(e=!0),br(t)||this.cloneChildNodes(t,i,e),A&&i.insertBefore(A,i.firstChild);var l=this.resolvePseudoContent(t,i,a,wi.AFTER);return l&&i.appendChild(l),this.counters.pop(s),(r&&(this.options.copyStyles||gr(t))&&!_r(t)||e)&&qr(r,i),0===t.scrollTop&&0===t.scrollLeft||this.scrolledElements.push([i,t.scrollLeft,t.scrollTop]),(Ir(t)||Tr(t))&&(Ir(i)||Tr(i))&&(i.value=t.value),i}return t.cloneNode(!1)},t.prototype.resolvePseudoContent=function(t,e,n,i){var r=this;if(n){var o=n.content,a=e.ownerDocument;if(a&&o&&"none"!==o&&"-moz-alt-content"!==o&&"none"!==n.display){this.counters.parse(new Ai(this.context,n));var s=new si(this.context,n),A=a.createElement("html2canvaspseudoelement");qr(n,A),s.content.forEach(function(e){if(0===e.type)A.appendChild(a.createTextNode(e.value));else if(22===e.type){var n=a.createElement("img");n.src=e.value,n.style.opacity="1",A.appendChild(n)}else if(18===e.type){if("attr"===e.name){var i=e.values.filter(Nt);i.length&&A.appendChild(a.createTextNode(t.getAttribute(i[0].value)||""))}else if("counter"===e.name){var o=e.values.filter(Kt),l=o[0],c=o[1];if(l&&Nt(l)){var u=r.counters.getCounterValue(l.value),h=c&&Nt(c)?pn.parse(r.context,c.value):3;A.appendChild(a.createTextNode(Rr(u,h,!1)))}}else if("counters"===e.name){var d=e.values.filter(Kt),f=(l=d[0],d[1]);c=d[2];if(l&&Nt(l)){var p=r.counters.getCounterValues(l.value),g=c&&Nt(c)?pn.parse(r.context,c.value):3,m=f&&0===f.type?f.value:"",v=p.map(function(t){return Rr(t,g,!1)}).join(m);A.appendChild(a.createTextNode(v))}}}else if(20===e.type)switch(e.value){case"open-quote":A.appendChild(a.createTextNode(ei(s.quotes,r.quoteDepth++,!0)));break;case"close-quote":A.appendChild(a.createTextNode(ei(s.quotes,--r.quoteDepth,!1)));break;default:A.appendChild(a.createTextNode(e.value))}}),A.className=Zr+" "+to;var l=i===wi.BEFORE?" "+Zr:" "+to;return gr(e)?e.className.baseValue+=l:e.className+=l,A}}},t.destroy=function(t){return!!t.parentNode&&(t.parentNode.removeChild(t),!0)},t}();!function(t){t[t.BEFORE=0]="BEFORE",t[t.AFTER=1]="AFTER"}(wi||(wi={}));var zr,Kr=function(t,e){var n=t.createElement("iframe");return n.className="html2canvas-container",n.style.visibility="hidden",n.style.position="fixed",n.style.left="-10000px",n.style.top="0px",n.style.border="0",n.width=e.width.toString(),n.height=e.height.toString(),n.scrolling="no",n.setAttribute("data-html2canvas-ignore","true"),t.body.appendChild(n),n},Gr=function(t){return new Promise(function(e){t.complete?e():t.src?(t.onload=e,t.onerror=e):e()})},Wr=function(t){return Promise.all([].slice.call(t.images,0).map(Gr))},jr=function(t){return new Promise(function(e,n){var i=t.contentWindow;if(!i)return n("No window assigned for iframe");var r=i.document;i.onload=t.onload=function(){i.onload=t.onload=null;var n=setInterval(function(){r.body.childNodes.length>0&&"complete"===r.readyState&&(clearInterval(n),e(t))},50)}})},$r=["all","d","content"],qr=function(t,e){for(var n=t.length-1;n>=0;n--){var i=t.item(n);-1===$r.indexOf(i)&&e.style.setProperty(i,t.getPropertyValue(i))}return e},Yr=function(t){var e="";return t&&(e+="<!DOCTYPE ",t.name&&(e+=t.name),t.internalSubset&&(e+=t.internalSubset),t.publicId&&(e+='"'+t.publicId+'"'),t.systemId&&(e+='"'+t.systemId+'"'),e+=">"),e},Xr=function(t,e,n){t&&t.defaultView&&(e!==t.defaultView.pageXOffset||n!==t.defaultView.pageYOffset)&&t.defaultView.scrollTo(e,n)},Jr=function(t){var e=t[0],n=t[1],i=t[2];e.scrollLeft=n,e.scrollTop=i},Zr="___html2canvas___pseudoelement_before",to="___html2canvas___pseudoelement_after",eo=function(t){no(t,"."+Zr+':before{\n    content: "" !important;\n    display: none !important;\n}\n         .'+to+':after{\n    content: "" !important;\n    display: none !important;\n}')},no=function(t,e){var n=t.ownerDocument;if(n){var i=n.createElement("style");i.textContent=e,t.appendChild(i)}},io=function(){function t(){}return t.getOrigin=function(e){var n=t._link;return n?(n.href=e,n.href=n.href,n.protocol+n.hostname+n.port):"about:blank"},t.isSameOrigin=function(e){return t.getOrigin(e)===t._origin},t.setContext=function(e){t._link=e.document.createElement("a"),t._origin=t.getOrigin(e.location.href)},t._origin="about:blank",t}(),ro=function(){function t(t,e){this.context=t,this._options=e,this._cache={}}return t.prototype.addImage=function(t){var e=Promise.resolve();return this.has(t)?e:uo(t)||Ao(t)?((this._cache[t]=this.loadImage(t)).catch(function(){}),e):e},t.prototype.match=function(t){return this._cache[t]},t.prototype.loadImage=function(t){return i(this,void 0,void 0,function(){var e,n,i,o,a=this;return r(this,function(r){switch(r.label){case 0:return e=io.isSameOrigin(t),n=!lo(t)&&!0===this._options.useCORS&&ki.SUPPORT_CORS_IMAGES&&!e,i=!lo(t)&&!e&&!uo(t)&&"string"==typeof this._options.proxy&&ki.SUPPORT_CORS_XHR&&!n,e||!1!==this._options.allowTaint||lo(t)||uo(t)||i||n?(o=t,i?[4,this.proxy(o)]:[3,2]):[2];case 1:o=r.sent(),r.label=2;case 2:return this.context.logger.debug("Added image "+t.substring(0,256)),[4,new Promise(function(t,e){var i=new Image;i.onload=function(){return t(i)},i.onerror=e,(co(o)||n)&&(i.crossOrigin="anonymous"),i.src=o,!0===i.complete&&setTimeout(function(){return t(i)},500),a._options.imageTimeout>0&&setTimeout(function(){return e("Timed out ("+a._options.imageTimeout+"ms) loading image")},a._options.imageTimeout)})];case 3:return[2,r.sent()]}})})},t.prototype.has=function(t){return void 0!==this._cache[t]},t.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},t.prototype.proxy=function(t){var e=this,n=this._options.proxy;if(!n)throw new Error("No proxy defined");var i=t.substring(0,256);return new Promise(function(r,o){var a=ki.SUPPORT_RESPONSE_TYPE?"blob":"text",s=new XMLHttpRequest;s.onload=function(){if(200===s.status)if("text"===a)r(s.response);else{var t=new FileReader;t.addEventListener("load",function(){return r(t.result)},!1),t.addEventListener("error",function(t){return o(t)},!1),t.readAsDataURL(s.response)}else o("Failed to proxy resource "+i+" with status code "+s.status)},s.onerror=o;var A=n.indexOf("?")>-1?"&":"?";if(s.open("GET",""+n+A+"url="+encodeURIComponent(t)+"&responseType="+a),"text"!==a&&s instanceof XMLHttpRequest&&(s.responseType=a),e._options.imageTimeout){var l=e._options.imageTimeout;s.timeout=l,s.ontimeout=function(){return o("Timed out ("+l+"ms) proxying "+i)}}s.send()})},t}(),oo=/^data:image\/svg\+xml/i,ao=/^data:image\/.*;base64,/i,so=/^data:image\/.*/i,Ao=function(t){return ki.SUPPORT_SVG_DRAWING||!ho(t)},lo=function(t){return so.test(t)},co=function(t){return ao.test(t)},uo=function(t){return"blob"===t.substr(0,4)},ho=function(t){return"svg"===t.substr(-3).toLowerCase()||oo.test(t)},fo=function(){function t(t,e){this.type=0,this.x=t,this.y=e}return t.prototype.add=function(e,n){return new t(this.x+e,this.y+n)},t}(),po=function(t,e,n){return new fo(t.x+(e.x-t.x)*n,t.y+(e.y-t.y)*n)},go=function(){function t(t,e,n,i){this.type=1,this.start=t,this.startControl=e,this.endControl=n,this.end=i}return t.prototype.subdivide=function(e,n){var i=po(this.start,this.startControl,e),r=po(this.startControl,this.endControl,e),o=po(this.endControl,this.end,e),a=po(i,r,e),s=po(r,o,e),A=po(a,s,e);return n?new t(this.start,i,a,A):new t(A,s,o,this.end)},t.prototype.add=function(e,n){return new t(this.start.add(e,n),this.startControl.add(e,n),this.endControl.add(e,n),this.end.add(e,n))},t.prototype.reverse=function(){return new t(this.end,this.endControl,this.startControl,this.start)},t}(),mo=function(t){return 1===t.type},vo=function(){return function(t){var e=t.styles,n=t.bounds,i=Zt(e.borderTopLeftRadius,n.width,n.height),r=i[0],o=i[1],a=Zt(e.borderTopRightRadius,n.width,n.height),s=a[0],A=a[1],l=Zt(e.borderBottomRightRadius,n.width,n.height),c=l[0],u=l[1],h=Zt(e.borderBottomLeftRadius,n.width,n.height),d=h[0],f=h[1],p=[];p.push((r+s)/n.width),p.push((d+c)/n.width),p.push((o+f)/n.height),p.push((A+u)/n.height);var g=Math.max.apply(Math,p);g>1&&(r/=g,o/=g,s/=g,A/=g,c/=g,u/=g,d/=g,f/=g);var m=n.width-s,v=n.height-u,y=n.width-c,w=n.height-f,x=e.borderTopWidth,B=e.borderRightWidth,b=e.borderBottomWidth,C=e.borderLeftWidth,_=te(e.paddingTop,t.bounds.width),S=te(e.paddingRight,t.bounds.width),I=te(e.paddingBottom,t.bounds.width),T=te(e.paddingLeft,t.bounds.width);this.topLeftBorderDoubleOuterBox=r>0||o>0?yo(n.left+C/3,n.top+x/3,r-C/3,o-x/3,zr.TOP_LEFT):new fo(n.left+C/3,n.top+x/3),this.topRightBorderDoubleOuterBox=r>0||o>0?yo(n.left+m,n.top+x/3,s-B/3,A-x/3,zr.TOP_RIGHT):new fo(n.left+n.width-B/3,n.top+x/3),this.bottomRightBorderDoubleOuterBox=c>0||u>0?yo(n.left+y,n.top+v,c-B/3,u-b/3,zr.BOTTOM_RIGHT):new fo(n.left+n.width-B/3,n.top+n.height-b/3),this.bottomLeftBorderDoubleOuterBox=d>0||f>0?yo(n.left+C/3,n.top+w,d-C/3,f-b/3,zr.BOTTOM_LEFT):new fo(n.left+C/3,n.top+n.height-b/3),this.topLeftBorderDoubleInnerBox=r>0||o>0?yo(n.left+2*C/3,n.top+2*x/3,r-2*C/3,o-2*x/3,zr.TOP_LEFT):new fo(n.left+2*C/3,n.top+2*x/3),this.topRightBorderDoubleInnerBox=r>0||o>0?yo(n.left+m,n.top+2*x/3,s-2*B/3,A-2*x/3,zr.TOP_RIGHT):new fo(n.left+n.width-2*B/3,n.top+2*x/3),this.bottomRightBorderDoubleInnerBox=c>0||u>0?yo(n.left+y,n.top+v,c-2*B/3,u-2*b/3,zr.BOTTOM_RIGHT):new fo(n.left+n.width-2*B/3,n.top+n.height-2*b/3),this.bottomLeftBorderDoubleInnerBox=d>0||f>0?yo(n.left+2*C/3,n.top+w,d-2*C/3,f-2*b/3,zr.BOTTOM_LEFT):new fo(n.left+2*C/3,n.top+n.height-2*b/3),this.topLeftBorderStroke=r>0||o>0?yo(n.left+C/2,n.top+x/2,r-C/2,o-x/2,zr.TOP_LEFT):new fo(n.left+C/2,n.top+x/2),this.topRightBorderStroke=r>0||o>0?yo(n.left+m,n.top+x/2,s-B/2,A-x/2,zr.TOP_RIGHT):new fo(n.left+n.width-B/2,n.top+x/2),this.bottomRightBorderStroke=c>0||u>0?yo(n.left+y,n.top+v,c-B/2,u-b/2,zr.BOTTOM_RIGHT):new fo(n.left+n.width-B/2,n.top+n.height-b/2),this.bottomLeftBorderStroke=d>0||f>0?yo(n.left+C/2,n.top+w,d-C/2,f-b/2,zr.BOTTOM_LEFT):new fo(n.left+C/2,n.top+n.height-b/2),this.topLeftBorderBox=r>0||o>0?yo(n.left,n.top,r,o,zr.TOP_LEFT):new fo(n.left,n.top),this.topRightBorderBox=s>0||A>0?yo(n.left+m,n.top,s,A,zr.TOP_RIGHT):new fo(n.left+n.width,n.top),this.bottomRightBorderBox=c>0||u>0?yo(n.left+y,n.top+v,c,u,zr.BOTTOM_RIGHT):new fo(n.left+n.width,n.top+n.height),this.bottomLeftBorderBox=d>0||f>0?yo(n.left,n.top+w,d,f,zr.BOTTOM_LEFT):new fo(n.left,n.top+n.height),this.topLeftPaddingBox=r>0||o>0?yo(n.left+C,n.top+x,Math.max(0,r-C),Math.max(0,o-x),zr.TOP_LEFT):new fo(n.left+C,n.top+x),this.topRightPaddingBox=s>0||A>0?yo(n.left+Math.min(m,n.width-B),n.top+x,m>n.width+B?0:Math.max(0,s-B),Math.max(0,A-x),zr.TOP_RIGHT):new fo(n.left+n.width-B,n.top+x),this.bottomRightPaddingBox=c>0||u>0?yo(n.left+Math.min(y,n.width-C),n.top+Math.min(v,n.height-b),Math.max(0,c-B),Math.max(0,u-b),zr.BOTTOM_RIGHT):new fo(n.left+n.width-B,n.top+n.height-b),this.bottomLeftPaddingBox=d>0||f>0?yo(n.left+C,n.top+Math.min(w,n.height-b),Math.max(0,d-C),Math.max(0,f-b),zr.BOTTOM_LEFT):new fo(n.left+C,n.top+n.height-b),this.topLeftContentBox=r>0||o>0?yo(n.left+C+T,n.top+x+_,Math.max(0,r-(C+T)),Math.max(0,o-(x+_)),zr.TOP_LEFT):new fo(n.left+C+T,n.top+x+_),this.topRightContentBox=s>0||A>0?yo(n.left+Math.min(m,n.width+C+T),n.top+x+_,m>n.width+C+T?0:s-C+T,A-(x+_),zr.TOP_RIGHT):new fo(n.left+n.width-(B+S),n.top+x+_),this.bottomRightContentBox=c>0||u>0?yo(n.left+Math.min(y,n.width-(C+T)),n.top+Math.min(v,n.height+x+_),Math.max(0,c-(B+S)),u-(b+I),zr.BOTTOM_RIGHT):new fo(n.left+n.width-(B+S),n.top+n.height-(b+I)),this.bottomLeftContentBox=d>0||f>0?yo(n.left+C+T,n.top+w,Math.max(0,d-(C+T)),f-(b+I),zr.BOTTOM_LEFT):new fo(n.left+C+T,n.top+n.height-(b+I))}}();!function(t){t[t.TOP_LEFT=0]="TOP_LEFT",t[t.TOP_RIGHT=1]="TOP_RIGHT",t[t.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",t[t.BOTTOM_LEFT=3]="BOTTOM_LEFT"}(zr||(zr={}));var yo=function(t,e,n,i,r){var o=(Math.sqrt(2)-1)/3*4,a=n*o,s=i*o,A=t+n,l=e+i;switch(r){case zr.TOP_LEFT:return new go(new fo(t,l),new fo(t,l-s),new fo(A-a,e),new fo(A,e));case zr.TOP_RIGHT:return new go(new fo(t,e),new fo(t+a,e),new fo(A,l-s),new fo(A,l));case zr.BOTTOM_RIGHT:return new go(new fo(A,e),new fo(A,e+s),new fo(t+a,l),new fo(t,l));case zr.BOTTOM_LEFT:default:return new go(new fo(A,l),new fo(A-a,l),new fo(t,e+s),new fo(t,e))}},wo=function(t){return[t.topLeftBorderBox,t.topRightBorderBox,t.bottomRightBorderBox,t.bottomLeftBorderBox]},xo=function(t){return[t.topLeftPaddingBox,t.topRightPaddingBox,t.bottomRightPaddingBox,t.bottomLeftPaddingBox]},Bo=function(){return function(t,e,n){this.offsetX=t,this.offsetY=e,this.matrix=n,this.type=0,this.target=6}}(),bo=function(){return function(t,e){this.path=t,this.target=e,this.type=1}}(),Co=function(){return function(t){this.opacity=t,this.type=2,this.target=6}}(),_o=function(t){return 1===t.type},So=function(t,e){return t.length===e.length&&t.some(function(t,n){return t===e[n]})},Io=function(){return function(t){this.element=t,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}}(),To=function(){function t(t,e){if(this.container=t,this.parent=e,this.effects=[],this.curves=new vo(this.container),this.container.styles.opacity<1&&this.effects.push(new Co(this.container.styles.opacity)),null!==this.container.styles.transform){var n=this.container.bounds.left+this.container.styles.transformOrigin[0].number,i=this.container.bounds.top+this.container.styles.transformOrigin[1].number,r=this.container.styles.transform;this.effects.push(new Bo(n,i,r))}if(0!==this.container.styles.overflowX){var o=wo(this.curves),a=xo(this.curves);So(o,a)?this.effects.push(new bo(o,6)):(this.effects.push(new bo(o,2)),this.effects.push(new bo(a,4)))}}return t.prototype.getEffects=function(t){for(var e=-1===[2,3].indexOf(this.container.styles.position),n=this.parent,i=this.effects.slice(0);n;){var r=n.effects.filter(function(t){return!_o(t)});if(e||0!==n.container.styles.position||!n.parent){if(i.unshift.apply(i,r),e=-1===[2,3].indexOf(n.container.styles.position),0!==n.container.styles.overflowX){var o=wo(n.curves),a=xo(n.curves);So(o,a)||i.unshift(new bo(a,6))}}else i.unshift.apply(i,r);n=n.parent}return i.filter(function(e){return qn(e.target,t)})},t}(),Mo=function(t,e,n,i){t.container.elements.forEach(function(r){var o=qn(r.flags,4),a=qn(r.flags,2),s=new To(r,t);qn(r.styles.display,2048)&&i.push(s);var A=qn(r.flags,8)?[]:i;if(o||a){var l=o||r.styles.isPositioned()?n:e,c=new Io(s);if(r.styles.isPositioned()||r.styles.opacity<1||r.styles.isTransformed()){var u=r.styles.zIndex.order;if(u<0){var h=0;l.negativeZIndex.some(function(t,e){return u>t.element.container.styles.zIndex.order?(h=e,!1):h>0}),l.negativeZIndex.splice(h,0,c)}else if(u>0){var d=0;l.positiveZIndex.some(function(t,e){return u>=t.element.container.styles.zIndex.order?(d=e+1,!1):d>0}),l.positiveZIndex.splice(d,0,c)}else l.zeroOrAutoZIndexOrTransformedOrOpacity.push(c)}else r.styles.isFloating()?l.nonPositionedFloats.push(c):l.nonPositionedInlineLevel.push(c);Mo(s,c,o?c:n,A)}else r.styles.isInlineLevel()?e.inlineLevel.push(s):e.nonInlineLevel.push(s),Mo(s,e,n,A);qn(r.flags,8)&&Qo(r,A)})},Qo=function(t,e){for(var n=t instanceof qi?t.start:1,i=t instanceof qi&&t.reversed,r=0;r<e.length;r++){var o=e[r];o.container instanceof $i&&"number"==typeof o.container.value&&0!==o.container.value&&(n=o.container.value),o.listValue=Rr(n,o.container.styles.listStyleType,!0),n+=i?-1:1}},Fo=function(t,e){switch(e){case 0:return Do(t.topLeftBorderBox,t.topLeftPaddingBox,t.topRightBorderBox,t.topRightPaddingBox);case 1:return Do(t.topRightBorderBox,t.topRightPaddingBox,t.bottomRightBorderBox,t.bottomRightPaddingBox);case 2:return Do(t.bottomRightBorderBox,t.bottomRightPaddingBox,t.bottomLeftBorderBox,t.bottomLeftPaddingBox);case 3:default:return Do(t.bottomLeftBorderBox,t.bottomLeftPaddingBox,t.topLeftBorderBox,t.topLeftPaddingBox)}},ko=function(t,e){var n=[];return mo(t)?n.push(t.subdivide(.5,!1)):n.push(t),mo(e)?n.push(e.subdivide(.5,!0)):n.push(e),n},Do=function(t,e,n,i){var r=[];return mo(t)?r.push(t.subdivide(.5,!1)):r.push(t),mo(n)?r.push(n.subdivide(.5,!0)):r.push(n),mo(i)?r.push(i.subdivide(.5,!0).reverse()):r.push(i),mo(e)?r.push(e.subdivide(.5,!1).reverse()):r.push(e),r},Uo=function(t){var e=t.bounds,n=t.styles;return e.add(n.borderLeftWidth,n.borderTopWidth,-(n.borderRightWidth+n.borderLeftWidth),-(n.borderTopWidth+n.borderBottomWidth))},Eo=function(t){var e=t.styles,n=t.bounds,i=te(e.paddingLeft,n.width),r=te(e.paddingRight,n.width),o=te(e.paddingTop,n.width),a=te(e.paddingBottom,n.width);return n.add(i+e.borderLeftWidth,o+e.borderTopWidth,-(e.borderRightWidth+e.borderLeftWidth+i+r),-(e.borderTopWidth+e.borderBottomWidth+o+a))},Lo=function(t,e,n){var i,r,o=(i=No(t.styles.backgroundOrigin,e),r=t,0===i?r.bounds:2===i?Eo(r):Uo(r)),a=function(t,e){return 0===t?e.bounds:2===t?Eo(e):Uo(e)}(No(t.styles.backgroundClip,e),t),s=Ho(No(t.styles.backgroundSize,e),n,o),A=s[0],l=s[1],c=Zt(No(t.styles.backgroundPosition,e),o.width-A,o.height-l);return[Ro(No(t.styles.backgroundRepeat,e),c,s,o,a),Math.round(o.left+c[0]),Math.round(o.top+c[1]),A,l]},Oo=function(t){return Nt(t)&&t.value===Se.AUTO},Po=function(t){return"number"==typeof t},Ho=function(t,e,n){var i=e[0],r=e[1],o=e[2],a=t[0],s=t[1];if(!a)return[0,0];if($t(a)&&s&&$t(s))return[te(a,n.width),te(s,n.height)];var A=Po(o);if(Nt(a)&&(a.value===Se.CONTAIN||a.value===Se.COVER))return Po(o)?n.width/n.height<o!=(a.value===Se.COVER)?[n.width,n.width/o]:[n.height*o,n.height]:[n.width,n.height];var l=Po(i),c=Po(r),u=l||c;if(Oo(a)&&(!s||Oo(s)))return l&&c?[i,r]:A||u?u&&A?[l?i:r*o,c?r:i/o]:[l?i:n.width,c?r:n.height]:[n.width,n.height];if(A){var h=0,d=0;return $t(a)?h=te(a,n.width):$t(s)&&(d=te(s,n.height)),Oo(a)?h=d*o:s&&!Oo(s)||(d=h/o),[h,d]}var f=null,p=null;if($t(a)?f=te(a,n.width):s&&$t(s)&&(p=te(s,n.height)),null===f||s&&!Oo(s)||(p=l&&c?f/i*r:n.height),null!==p&&Oo(a)&&(f=l&&c?p/r*i:n.width),null!==f&&null!==p)return[f,p];throw new Error("Unable to calculate background-size for element")},No=function(t,e){var n=t[e];return void 0===n?t[0]:n},Ro=function(t,e,n,i,r){var o=e[0],a=e[1],s=n[0],A=n[1];switch(t){case 2:return[new fo(Math.round(i.left),Math.round(i.top+a)),new fo(Math.round(i.left+i.width),Math.round(i.top+a)),new fo(Math.round(i.left+i.width),Math.round(A+i.top+a)),new fo(Math.round(i.left),Math.round(A+i.top+a))];case 3:return[new fo(Math.round(i.left+o),Math.round(i.top)),new fo(Math.round(i.left+o+s),Math.round(i.top)),new fo(Math.round(i.left+o+s),Math.round(i.height+i.top)),new fo(Math.round(i.left+o),Math.round(i.height+i.top))];case 1:return[new fo(Math.round(i.left+o),Math.round(i.top+a)),new fo(Math.round(i.left+o+s),Math.round(i.top+a)),new fo(Math.round(i.left+o+s),Math.round(i.top+a+A)),new fo(Math.round(i.left+o),Math.round(i.top+a+A))];default:return[new fo(Math.round(r.left),Math.round(r.top)),new fo(Math.round(r.left+r.width),Math.round(r.top)),new fo(Math.round(r.left+r.width),Math.round(r.height+r.top)),new fo(Math.round(r.left),Math.round(r.height+r.top))]}},Vo=function(){function t(t){this._data={},this._document=t}return t.prototype.parseMetrics=function(t,e){var n=this._document.createElement("div"),i=this._document.createElement("img"),r=this._document.createElement("span"),o=this._document.body;n.style.visibility="hidden",n.style.fontFamily=t,n.style.fontSize=e,n.style.margin="0",n.style.padding="0",n.style.whiteSpace="nowrap",o.appendChild(n),i.src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",i.width=1,i.height=1,i.style.margin="0",i.style.padding="0",i.style.verticalAlign="baseline",r.style.fontFamily=t,r.style.fontSize=e,r.style.margin="0",r.style.padding="0",r.appendChild(this._document.createTextNode("Hidden Text")),n.appendChild(r),n.appendChild(i);var a=i.offsetTop-r.offsetTop+2;n.removeChild(r),n.appendChild(this._document.createTextNode("Hidden Text")),n.style.lineHeight="normal",i.style.verticalAlign="super";var s=i.offsetTop-n.offsetTop+2;return o.removeChild(n),{baseline:a,middle:s}},t.prototype.getMetrics=function(t,e){var n=t+" "+e;return void 0===this._data[n]&&(this._data[n]=this.parseMetrics(t,e)),this._data[n]},t}(),zo=function(){return function(t,e){this.context=t,this.options=e}}(),Ko=function(t){function n(e,n){var i=t.call(this,e,n)||this;return i._activeEffects=[],i.canvas=n.canvas?n.canvas:document.createElement("canvas"),i.ctx=i.canvas.getContext("2d"),n.canvas||(i.canvas.width=Math.floor(n.width*n.scale),i.canvas.height=Math.floor(n.height*n.scale),i.canvas.style.width=n.width+"px",i.canvas.style.height=n.height+"px"),i.fontMetrics=new Vo(document),i.ctx.scale(i.options.scale,i.options.scale),i.ctx.translate(-n.x,-n.y),i.ctx.textBaseline="bottom",i._activeEffects=[],i.context.logger.debug("Canvas renderer initialized ("+n.width+"x"+n.height+") with scale "+n.scale),i}return e(n,t),n.prototype.applyEffects=function(t){for(var e=this;this._activeEffects.length;)this.popEffect();t.forEach(function(t){return e.applyEffect(t)})},n.prototype.applyEffect=function(t){this.ctx.save(),function(t){return 2===t.type}(t)&&(this.ctx.globalAlpha=t.opacity),function(t){return 0===t.type}(t)&&(this.ctx.translate(t.offsetX,t.offsetY),this.ctx.transform(t.matrix[0],t.matrix[1],t.matrix[2],t.matrix[3],t.matrix[4],t.matrix[5]),this.ctx.translate(-t.offsetX,-t.offsetY)),_o(t)&&(this.path(t.path),this.ctx.clip()),this._activeEffects.push(t)},n.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},n.prototype.renderStack=function(t){return i(this,void 0,void 0,function(){return r(this,function(e){switch(e.label){case 0:return t.element.container.styles.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:e.sent(),e.label=2;case 2:return[2]}})})},n.prototype.renderNode=function(t){return i(this,void 0,void 0,function(){return r(this,function(e){switch(e.label){case 0:return qn(t.container.flags,16),t.container.styles.isVisible()?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return e.sent(),[4,this.renderNodeContent(t)];case 2:e.sent(),e.label=3;case 3:return[2]}})})},n.prototype.renderTextWithLetterSpacing=function(t,e,n){var i=this;0===e?this.ctx.fillText(t.text,t.bounds.left,t.bounds.top+n):Oi(t.text).reduce(function(e,r){return i.ctx.fillText(r,e,t.bounds.top+n),e+i.ctx.measureText(r).width},t.bounds.left)},n.prototype.createFontStyle=function(t){var e=t.fontVariant.filter(function(t){return"normal"===t||"small-caps"===t}).join(""),n=qo(t.fontFamily).join(", "),i=Pt(t.fontSize)?""+t.fontSize.number+t.fontSize.unit:t.fontSize.number+"px";return[[t.fontStyle,e,t.fontWeight,i,n].join(" "),n,i]},n.prototype.renderTextNode=function(t,e){return i(this,void 0,void 0,function(){var n,i,o,a,s,A,l,c,u=this;return r(this,function(r){return n=this.createFontStyle(e),i=n[0],o=n[1],a=n[2],this.ctx.font=i,this.ctx.direction=1===e.direction?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",s=this.fontMetrics.getMetrics(o,a),A=s.baseline,l=s.middle,c=e.paintOrder,t.textBounds.forEach(function(t){c.forEach(function(n){switch(n){case 0:u.ctx.fillStyle=se(e.color),u.renderTextWithLetterSpacing(t,e.letterSpacing,A);var i=e.textShadow;i.length&&t.text.trim().length&&(i.slice(0).reverse().forEach(function(n){u.ctx.shadowColor=se(n.color),u.ctx.shadowOffsetX=n.offsetX.number*u.options.scale,u.ctx.shadowOffsetY=n.offsetY.number*u.options.scale,u.ctx.shadowBlur=n.blur.number,u.renderTextWithLetterSpacing(t,e.letterSpacing,A)}),u.ctx.shadowColor="",u.ctx.shadowOffsetX=0,u.ctx.shadowOffsetY=0,u.ctx.shadowBlur=0),e.textDecorationLine.length&&(u.ctx.fillStyle=se(e.textDecorationColor||e.color),e.textDecorationLine.forEach(function(e){switch(e){case 1:u.ctx.fillRect(t.bounds.left,Math.round(t.bounds.top+A),t.bounds.width,1);break;case 2:u.ctx.fillRect(t.bounds.left,Math.round(t.bounds.top),t.bounds.width,1);break;case 3:u.ctx.fillRect(t.bounds.left,Math.ceil(t.bounds.top+l),t.bounds.width,1)}}));break;case 1:e.webkitTextStrokeWidth&&t.text.trim().length&&(u.ctx.strokeStyle=se(e.webkitTextStrokeColor),u.ctx.lineWidth=e.webkitTextStrokeWidth,u.ctx.lineJoin=window.chrome?"miter":"round",u.ctx.strokeText(t.text,t.bounds.left,t.bounds.top+A)),u.ctx.strokeStyle="",u.ctx.lineWidth=0,u.ctx.lineJoin="miter"}})}),[2]})})},n.prototype.renderReplacedElement=function(t,e,n){if(n&&t.intrinsicWidth>0&&t.intrinsicHeight>0){var i=Eo(t),r=xo(e);this.path(r),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(n,0,0,t.intrinsicWidth,t.intrinsicHeight,i.left,i.top,i.width,i.height),this.ctx.restore()}},n.prototype.renderNodeContent=function(t){return i(this,void 0,void 0,function(){var e,i,o,s,A,l,c,u,h,d,f,p,g,m,v,y,w,x;return r(this,function(r){switch(r.label){case 0:this.applyEffects(t.getEffects(4)),e=t.container,i=t.curves,o=e.styles,s=0,A=e.textNodes,r.label=1;case 1:return s<A.length?(l=A[s],[4,this.renderTextNode(l,o)]):[3,4];case 2:r.sent(),r.label=3;case 3:return s++,[3,1];case 4:if(!(e instanceof Gi))return[3,8];r.label=5;case 5:return r.trys.push([5,7,,8]),[4,this.context.cache.match(e.src)];case 6:return v=r.sent(),this.renderReplacedElement(e,i,v),[3,8];case 7:return r.sent(),this.context.logger.error("Error loading image "+e.src),[3,8];case 8:if(e instanceof Wi&&this.renderReplacedElement(e,i,e.canvas),!(e instanceof ji))return[3,12];r.label=9;case 9:return r.trys.push([9,11,,12]),[4,this.context.cache.match(e.svg)];case 10:return v=r.sent(),this.renderReplacedElement(e,i,v),[3,12];case 11:return r.sent(),this.context.logger.error("Error loading svg "+e.svg.substring(0,255)),[3,12];case 12:return e instanceof ar&&e.tree?[4,new n(this.context,{scale:this.options.scale,backgroundColor:e.backgroundColor,x:0,y:0,width:e.width,height:e.height}).render(e.tree)]:[3,14];case 13:c=r.sent(),e.width&&e.height&&this.ctx.drawImage(c,0,0,e.width,e.height,e.bounds.left,e.bounds.top,e.bounds.width,e.bounds.height),r.label=14;case 14:if(e instanceof ir&&(u=Math.min(e.bounds.width,e.bounds.height),e.type===tr?e.checked&&(this.ctx.save(),this.path([new fo(e.bounds.left+.39363*u,e.bounds.top+.79*u),new fo(e.bounds.left+.16*u,e.bounds.top+.5549*u),new fo(e.bounds.left+.27347*u,e.bounds.top+.44071*u),new fo(e.bounds.left+.39694*u,e.bounds.top+.5649*u),new fo(e.bounds.left+.72983*u,e.bounds.top+.23*u),new fo(e.bounds.left+.84*u,e.bounds.top+.34085*u),new fo(e.bounds.left+.39363*u,e.bounds.top+.79*u)]),this.ctx.fillStyle=se(707406591),this.ctx.fill(),this.ctx.restore()):e.type===er&&e.checked&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.arc(e.bounds.left+u/2,e.bounds.top+u/2,u/4,0,2*Math.PI,!0),this.ctx.fillStyle=se(707406591),this.ctx.fill(),this.ctx.restore())),Go(e)&&e.value.length){switch(h=this.createFontStyle(o),w=h[0],d=h[1],f=this.fontMetrics.getMetrics(w,d).baseline,this.ctx.font=w,this.ctx.fillStyle=se(o.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=jo(e.styles.textAlign),x=Eo(e),p=0,e.styles.textAlign){case 1:p+=x.width/2;break;case 2:p+=x.width}g=x.add(p,0,0,-x.height/2+1),this.ctx.save(),this.path([new fo(x.left,x.top),new fo(x.left+x.width,x.top),new fo(x.left+x.width,x.top+x.height),new fo(x.left,x.top+x.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new Di(e.value,g),o.letterSpacing,f),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!qn(e.styles.display,2048))return[3,20];if(null===e.styles.listStyleImage)return[3,19];if(0!==(m=e.styles.listStyleImage).type)return[3,18];v=void 0,y=m.url,r.label=15;case 15:return r.trys.push([15,17,,18]),[4,this.context.cache.match(y)];case 16:return v=r.sent(),this.ctx.drawImage(v,e.bounds.left-(v.width+10),e.bounds.top),[3,18];case 17:return r.sent(),this.context.logger.error("Error loading list-style-image "+y),[3,18];case 18:return[3,20];case 19:t.listValue&&-1!==e.styles.listStyleType&&(w=this.createFontStyle(o)[0],this.ctx.font=w,this.ctx.fillStyle=se(o.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",x=new a(e.bounds.left,e.bounds.top+te(e.styles.paddingTop,e.bounds.width),e.bounds.width,hn(o.lineHeight,o.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new Di(t.listValue,x),o.letterSpacing,hn(o.lineHeight,o.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),r.label=20;case 20:return[2]}})})},n.prototype.renderStackContent=function(t){return i(this,void 0,void 0,function(){var e,n,i,o,a,s,A,l,c,u,h,d,f,p,g;return r(this,function(r){switch(r.label){case 0:return qn(t.element.container.flags,16),[4,this.renderNodeBackgroundAndBorders(t.element)];case 1:r.sent(),e=0,n=t.negativeZIndex,r.label=2;case 2:return e<n.length?(g=n[e],[4,this.renderStack(g)]):[3,5];case 3:r.sent(),r.label=4;case 4:return e++,[3,2];case 5:return[4,this.renderNodeContent(t.element)];case 6:r.sent(),i=0,o=t.nonInlineLevel,r.label=7;case 7:return i<o.length?(g=o[i],[4,this.renderNode(g)]):[3,10];case 8:r.sent(),r.label=9;case 9:return i++,[3,7];case 10:a=0,s=t.nonPositionedFloats,r.label=11;case 11:return a<s.length?(g=s[a],[4,this.renderStack(g)]):[3,14];case 12:r.sent(),r.label=13;case 13:return a++,[3,11];case 14:A=0,l=t.nonPositionedInlineLevel,r.label=15;case 15:return A<l.length?(g=l[A],[4,this.renderStack(g)]):[3,18];case 16:r.sent(),r.label=17;case 17:return A++,[3,15];case 18:c=0,u=t.inlineLevel,r.label=19;case 19:return c<u.length?(g=u[c],[4,this.renderNode(g)]):[3,22];case 20:r.sent(),r.label=21;case 21:return c++,[3,19];case 22:h=0,d=t.zeroOrAutoZIndexOrTransformedOrOpacity,r.label=23;case 23:return h<d.length?(g=d[h],[4,this.renderStack(g)]):[3,26];case 24:r.sent(),r.label=25;case 25:return h++,[3,23];case 26:f=0,p=t.positiveZIndex,r.label=27;case 27:return f<p.length?(g=p[f],[4,this.renderStack(g)]):[3,30];case 28:r.sent(),r.label=29;case 29:return f++,[3,27];case 30:return[2]}})})},n.prototype.mask=function(t){this.ctx.beginPath(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.canvas.width,0),this.ctx.lineTo(this.canvas.width,this.canvas.height),this.ctx.lineTo(0,this.canvas.height),this.ctx.lineTo(0,0),this.formatPath(t.slice(0).reverse()),this.ctx.closePath()},n.prototype.path=function(t){this.ctx.beginPath(),this.formatPath(t),this.ctx.closePath()},n.prototype.formatPath=function(t){var e=this;t.forEach(function(t,n){var i=mo(t)?t.start:t;0===n?e.ctx.moveTo(i.x,i.y):e.ctx.lineTo(i.x,i.y),mo(t)&&e.ctx.bezierCurveTo(t.startControl.x,t.startControl.y,t.endControl.x,t.endControl.y,t.end.x,t.end.y)})},n.prototype.renderRepeat=function(t,e,n,i){this.path(t),this.ctx.fillStyle=e,this.ctx.translate(n,i),this.ctx.fill(),this.ctx.translate(-n,-i)},n.prototype.resizeImage=function(t,e,n){var i;if(t.width===e&&t.height===n)return t;var r=(null!==(i=this.canvas.ownerDocument)&&void 0!==i?i:document).createElement("canvas");return r.width=Math.max(1,e),r.height=Math.max(1,n),r.getContext("2d").drawImage(t,0,0,t.width,t.height,0,0,e,n),r},n.prototype.renderBackgroundImage=function(t){return i(this,void 0,void 0,function(){var e,n,i,o,a,s;return r(this,function(A){switch(A.label){case 0:e=t.styles.backgroundImage.length-1,n=function(n){var o,a,s,A,l,c,u,h,d,f,p,g,m,v,y,w,x,B,b,C,_,S,I,T,M,Q,F,k,D,U,E;return r(this,function(r){switch(r.label){case 0:if(0!==n.type)return[3,5];o=void 0,a=n.url,r.label=1;case 1:return r.trys.push([1,3,,4]),[4,i.context.cache.match(a)];case 2:return o=r.sent(),[3,4];case 3:return r.sent(),i.context.logger.error("Error loading background-image "+a),[3,4];case 4:return o&&(s=Lo(t,e,[o.width,o.height,o.width/o.height]),w=s[0],S=s[1],I=s[2],b=s[3],C=s[4],v=i.ctx.createPattern(i.resizeImage(o,b,C),"repeat"),i.renderRepeat(w,v,S,I)),[3,6];case 5:1===n.type?(A=Lo(t,e,[null,null,null]),w=A[0],S=A[1],I=A[2],b=A[3],C=A[4],l=we(n.angle,b,C),c=l[0],u=l[1],h=l[2],d=l[3],f=l[4],(p=document.createElement("canvas")).width=b,p.height=C,g=p.getContext("2d"),m=g.createLinearGradient(u,d,h,f),ye(n.stops,c).forEach(function(t){return m.addColorStop(t.stop,se(t.color))}),g.fillStyle=m,g.fillRect(0,0,b,C),b>0&&C>0&&(v=i.ctx.createPattern(p,"repeat"),i.renderRepeat(w,v,S,I))):function(t){return 2===t.type}(n)&&(y=Lo(t,e,[null,null,null]),w=y[0],x=y[1],B=y[2],b=y[3],C=y[4],_=0===n.position.length?[Xt]:n.position,S=te(_[0],b),I=te(_[_.length-1],C),T=function(t,e,n,i,r){var o=0,a=0;switch(t.size){case 0:0===t.shape?o=a=Math.min(Math.abs(e),Math.abs(e-i),Math.abs(n),Math.abs(n-r)):1===t.shape&&(o=Math.min(Math.abs(e),Math.abs(e-i)),a=Math.min(Math.abs(n),Math.abs(n-r)));break;case 2:if(0===t.shape)o=a=Math.min(xe(e,n),xe(e,n-r),xe(e-i,n),xe(e-i,n-r));else if(1===t.shape){var s=Math.min(Math.abs(n),Math.abs(n-r))/Math.min(Math.abs(e),Math.abs(e-i)),A=Be(i,r,e,n,!0),l=A[0],c=A[1];a=s*(o=xe(l-e,(c-n)/s))}break;case 1:0===t.shape?o=a=Math.max(Math.abs(e),Math.abs(e-i),Math.abs(n),Math.abs(n-r)):1===t.shape&&(o=Math.max(Math.abs(e),Math.abs(e-i)),a=Math.max(Math.abs(n),Math.abs(n-r)));break;case 3:if(0===t.shape)o=a=Math.max(xe(e,n),xe(e,n-r),xe(e-i,n),xe(e-i,n-r));else if(1===t.shape){s=Math.max(Math.abs(n),Math.abs(n-r))/Math.max(Math.abs(e),Math.abs(e-i));var u=Be(i,r,e,n,!1);l=u[0],c=u[1],a=s*(o=xe(l-e,(c-n)/s))}}return Array.isArray(t.size)&&(o=te(t.size[0],i),a=2===t.size.length?te(t.size[1],r):o),[o,a]}(n,S,I,b,C),M=T[0],Q=T[1],M>0&&Q>0&&(F=i.ctx.createRadialGradient(x+S,B+I,0,x+S,B+I,M),ye(n.stops,2*M).forEach(function(t){return F.addColorStop(t.stop,se(t.color))}),i.path(w),i.ctx.fillStyle=F,M!==Q?(k=t.bounds.left+.5*t.bounds.width,D=t.bounds.top+.5*t.bounds.height,E=1/(U=Q/M),i.ctx.save(),i.ctx.translate(k,D),i.ctx.transform(1,0,0,U,0,0),i.ctx.translate(-k,-D),i.ctx.fillRect(x,E*(B-D)+D,b,C*E),i.ctx.restore()):i.ctx.fill())),r.label=6;case 6:return e--,[2]}})},i=this,o=0,a=t.styles.backgroundImage.slice(0).reverse(),A.label=1;case 1:return o<a.length?(s=a[o],[5,n(s)]):[3,4];case 2:A.sent(),A.label=3;case 3:return o++,[3,1];case 4:return[2]}})})},n.prototype.renderSolidBorder=function(t,e,n){return i(this,void 0,void 0,function(){return r(this,function(i){return this.path(Fo(n,e)),this.ctx.fillStyle=se(t),this.ctx.fill(),[2]})})},n.prototype.renderDoubleBorder=function(t,e,n,o){return i(this,void 0,void 0,function(){var i,a;return r(this,function(r){switch(r.label){case 0:return e<3?[4,this.renderSolidBorder(t,n,o)]:[3,2];case 1:return r.sent(),[2];case 2:return i=function(t,e){switch(e){case 0:return Do(t.topLeftBorderBox,t.topLeftBorderDoubleOuterBox,t.topRightBorderBox,t.topRightBorderDoubleOuterBox);case 1:return Do(t.topRightBorderBox,t.topRightBorderDoubleOuterBox,t.bottomRightBorderBox,t.bottomRightBorderDoubleOuterBox);case 2:return Do(t.bottomRightBorderBox,t.bottomRightBorderDoubleOuterBox,t.bottomLeftBorderBox,t.bottomLeftBorderDoubleOuterBox);case 3:default:return Do(t.bottomLeftBorderBox,t.bottomLeftBorderDoubleOuterBox,t.topLeftBorderBox,t.topLeftBorderDoubleOuterBox)}}(o,n),this.path(i),this.ctx.fillStyle=se(t),this.ctx.fill(),a=function(t,e){switch(e){case 0:return Do(t.topLeftBorderDoubleInnerBox,t.topLeftPaddingBox,t.topRightBorderDoubleInnerBox,t.topRightPaddingBox);case 1:return Do(t.topRightBorderDoubleInnerBox,t.topRightPaddingBox,t.bottomRightBorderDoubleInnerBox,t.bottomRightPaddingBox);case 2:return Do(t.bottomRightBorderDoubleInnerBox,t.bottomRightPaddingBox,t.bottomLeftBorderDoubleInnerBox,t.bottomLeftPaddingBox);case 3:default:return Do(t.bottomLeftBorderDoubleInnerBox,t.bottomLeftPaddingBox,t.topLeftBorderDoubleInnerBox,t.topLeftPaddingBox)}}(o,n),this.path(a),this.ctx.fill(),[2]}})})},n.prototype.renderNodeBackgroundAndBorders=function(t){return i(this,void 0,void 0,function(){var e,n,i,o,a,s,A,l,c=this;return r(this,function(r){switch(r.label){case 0:return this.applyEffects(t.getEffects(2)),e=t.container.styles,n=!ae(e.backgroundColor)||e.backgroundImage.length,i=[{style:e.borderTopStyle,color:e.borderTopColor,width:e.borderTopWidth},{style:e.borderRightStyle,color:e.borderRightColor,width:e.borderRightWidth},{style:e.borderBottomStyle,color:e.borderBottomColor,width:e.borderBottomWidth},{style:e.borderLeftStyle,color:e.borderLeftColor,width:e.borderLeftWidth}],o=Wo(No(e.backgroundClip,0),t.curves),n||e.boxShadow.length?(this.ctx.save(),this.path(o),this.ctx.clip(),ae(e.backgroundColor)||(this.ctx.fillStyle=se(e.backgroundColor),this.ctx.fill()),[4,this.renderBackgroundImage(t.container)]):[3,2];case 1:r.sent(),this.ctx.restore(),e.boxShadow.slice(0).reverse().forEach(function(e){c.ctx.save();var n,i,r,o,a,s=wo(t.curves),A=e.inset?0:1e4,l=(n=s,i=-A+(e.inset?1:-1)*e.spread.number,r=(e.inset?1:-1)*e.spread.number,o=e.spread.number*(e.inset?-2:2),a=e.spread.number*(e.inset?-2:2),n.map(function(t,e){switch(e){case 0:return t.add(i,r);case 1:return t.add(i+o,r);case 2:return t.add(i+o,r+a);case 3:return t.add(i,r+a)}return t}));e.inset?(c.path(s),c.ctx.clip(),c.mask(l)):(c.mask(s),c.ctx.clip(),c.path(l)),c.ctx.shadowOffsetX=e.offsetX.number+A,c.ctx.shadowOffsetY=e.offsetY.number,c.ctx.shadowColor=se(e.color),c.ctx.shadowBlur=e.blur.number,c.ctx.fillStyle=e.inset?se(e.color):"rgba(0,0,0,1)",c.ctx.fill(),c.ctx.restore()}),r.label=2;case 2:a=0,s=0,A=i,r.label=3;case 3:return s<A.length?0!==(l=A[s]).style&&!ae(l.color)&&l.width>0?2!==l.style?[3,5]:[4,this.renderDashedDottedBorder(l.color,l.width,a,t.curves,2)]:[3,11]:[3,13];case 4:return r.sent(),[3,11];case 5:return 3!==l.style?[3,7]:[4,this.renderDashedDottedBorder(l.color,l.width,a,t.curves,3)];case 6:return r.sent(),[3,11];case 7:return 4!==l.style?[3,9]:[4,this.renderDoubleBorder(l.color,l.width,a,t.curves)];case 8:return r.sent(),[3,11];case 9:return[4,this.renderSolidBorder(l.color,a,t.curves)];case 10:r.sent(),r.label=11;case 11:a++,r.label=12;case 12:return s++,[3,3];case 13:return[2]}})})},n.prototype.renderDashedDottedBorder=function(t,e,n,o,a){return i(this,void 0,void 0,function(){var i,s,A,l,c,u,h,d,f,p,g,m,v,y,w,x;return r(this,function(r){return this.ctx.save(),i=function(t,e){switch(e){case 0:return ko(t.topLeftBorderStroke,t.topRightBorderStroke);case 1:return ko(t.topRightBorderStroke,t.bottomRightBorderStroke);case 2:return ko(t.bottomRightBorderStroke,t.bottomLeftBorderStroke);case 3:default:return ko(t.bottomLeftBorderStroke,t.topLeftBorderStroke)}}(o,n),s=Fo(o,n),2===a&&(this.path(s),this.ctx.clip()),mo(s[0])?(A=s[0].start.x,l=s[0].start.y):(A=s[0].x,l=s[0].y),mo(s[1])?(c=s[1].end.x,u=s[1].end.y):(c=s[1].x,u=s[1].y),h=0===n||2===n?Math.abs(A-c):Math.abs(l-u),this.ctx.beginPath(),3===a?this.formatPath(i):this.formatPath(s.slice(0,2)),d=e<3?3*e:2*e,f=e<3?2*e:e,3===a&&(d=e,f=e),p=!0,h<=2*d?p=!1:h<=2*d+f?(d*=g=h/(2*d+f),f*=g):(m=Math.floor((h+f)/(d+f)),v=(h-m*d)/(m-1),f=(y=(h-(m+1)*d)/m)<=0||Math.abs(f-v)<Math.abs(f-y)?v:y),p&&(3===a?this.ctx.setLineDash([0,d+f]):this.ctx.setLineDash([d,f])),3===a?(this.ctx.lineCap="round",this.ctx.lineWidth=e):this.ctx.lineWidth=2*e+1.1,this.ctx.strokeStyle=se(t),this.ctx.stroke(),this.ctx.setLineDash([]),2===a&&(mo(s[0])&&(w=s[3],x=s[0],this.ctx.beginPath(),this.formatPath([new fo(w.end.x,w.end.y),new fo(x.start.x,x.start.y)]),this.ctx.stroke()),mo(s[1])&&(w=s[1],x=s[2],this.ctx.beginPath(),this.formatPath([new fo(w.end.x,w.end.y),new fo(x.start.x,x.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},n.prototype.render=function(t){return i(this,void 0,void 0,function(){var e;return r(this,function(n){switch(n.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=se(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),i=new To(t,null),r=new Io(i),Mo(i,r,r,o=[]),Qo(i.container,o),e=r,[4,this.renderStack(e)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}var i,r,o})})},n}(zo),Go=function(t){return t instanceof or||(t instanceof rr||t instanceof ir&&t.type!==er&&t.type!==tr)},Wo=function(t,e){switch(t){case 0:return wo(e);case 2:return function(t){return[t.topLeftContentBox,t.topRightContentBox,t.bottomRightContentBox,t.bottomLeftContentBox]}(e);case 1:default:return xo(e)}},jo=function(t){switch(t){case 1:return"center";case 2:return"right";case 0:default:return"left"}},$o=["-apple-system","system-ui"],qo=function(t){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?t.filter(function(t){return-1===$o.indexOf(t)}):t},Yo=function(t){function n(e,n){var i=t.call(this,e,n)||this;return i.canvas=n.canvas?n.canvas:document.createElement("canvas"),i.ctx=i.canvas.getContext("2d"),i.options=n,i.canvas.width=Math.floor(n.width*n.scale),i.canvas.height=Math.floor(n.height*n.scale),i.canvas.style.width=n.width+"px",i.canvas.style.height=n.height+"px",i.ctx.scale(i.options.scale,i.options.scale),i.ctx.translate(-n.x,-n.y),i.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized ("+n.width+"x"+n.height+" at "+n.x+","+n.y+") with scale "+n.scale),i}return e(n,t),n.prototype.render=function(t){return i(this,void 0,void 0,function(){var e,n;return r(this,function(i){switch(i.label){case 0:return e=Qi(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,t),[4,Xo(e)];case 1:return n=i.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=se(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(n,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},n}(zo),Xo=function(t){return new Promise(function(e,n){var i=new Image;i.onload=function(){e(i)},i.onerror=n,i.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent((new XMLSerializer).serializeToString(t))})},Jo=function(){function t(t){var e=t.id,n=t.enabled;this.id=e,this.enabled=n,this.start=Date.now()}return t.prototype.debug=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.debug?console.debug.apply(console,o([this.id,this.getTime()+"ms"],t)):this.info.apply(this,t))},t.prototype.getTime=function(){return Date.now()-this.start},t.prototype.info=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this.enabled&&"undefined"!=typeof window&&window.console&&"function"==typeof console.info&&console.info.apply(console,o([this.id,this.getTime()+"ms"],t))},t.prototype.warn=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.warn?console.warn.apply(console,o([this.id,this.getTime()+"ms"],t)):this.info.apply(this,t))},t.prototype.error=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.error?console.error.apply(console,o([this.id,this.getTime()+"ms"],t)):this.info.apply(this,t))},t.instances={},t}(),Zo=function(){function t(e,n){var i;this.windowBounds=n,this.instanceName="#"+t.instanceCount++,this.logger=new Jo({id:this.instanceName,enabled:e.logging}),this.cache=null!==(i=e.cache)&&void 0!==i?i:new ro(this,e)}return t.instanceCount=1,t}();"undefined"!=typeof window&&io.setContext(window);var ta=function(t,e){return i(void 0,void 0,void 0,function(){var i,o,A,l,c,u,h,d,f,p,g,m,v,y,w,x,B,b,C,_,S,I,T,M,Q,F,k,D,U,E,L,O,P,H,N,R,V,z;return r(this,function(r){switch(r.label){case 0:if(!t||"object"!=typeof t)return[2,Promise.reject("Invalid element provided as first argument")];if(!(i=t.ownerDocument))throw new Error("Element is not attached to a Document");if(!(o=i.defaultView))throw new Error("Document is not attached to a Window");return A={allowTaint:null!==(I=e.allowTaint)&&void 0!==I&&I,imageTimeout:null!==(T=e.imageTimeout)&&void 0!==T?T:15e3,proxy:e.proxy,useCORS:null!==(M=e.useCORS)&&void 0!==M&&M},l=n({logging:null===(Q=e.logging)||void 0===Q||Q,cache:e.cache},A),c={windowWidth:null!==(F=e.windowWidth)&&void 0!==F?F:o.innerWidth,windowHeight:null!==(k=e.windowHeight)&&void 0!==k?k:o.innerHeight,scrollX:null!==(D=e.scrollX)&&void 0!==D?D:o.pageXOffset,scrollY:null!==(U=e.scrollY)&&void 0!==U?U:o.pageYOffset},u=new a(c.scrollX,c.scrollY,c.windowWidth,c.windowHeight),h=new Zo(l,u),d=null!==(E=e.foreignObjectRendering)&&void 0!==E&&E,f={allowTaint:null!==(L=e.allowTaint)&&void 0!==L&&L,onclone:e.onclone,ignoreElements:e.ignoreElements,inlineImages:d,copyStyles:d},h.logger.debug("Starting document clone with size "+u.width+"x"+u.height+" scrolled to "+-u.left+","+-u.top),p=new Vr(h,t,f),(g=p.clonedReferenceElement)?[4,p.toIFrame(i,u)]:[2,Promise.reject("Unable to find element in cloned iframe")];case 1:return m=r.sent(),v=xr(g)||"HTML"===g.tagName?function(t){var e=t.body,n=t.documentElement;if(!e||!n)throw new Error("Unable to get document size");var i=Math.max(Math.max(e.scrollWidth,n.scrollWidth),Math.max(e.offsetWidth,n.offsetWidth),Math.max(e.clientWidth,n.clientWidth)),r=Math.max(Math.max(e.scrollHeight,n.scrollHeight),Math.max(e.offsetHeight,n.offsetHeight),Math.max(e.clientHeight,n.clientHeight));return new a(0,0,i,r)}(g.ownerDocument):s(h,g),y=v.width,w=v.height,x=v.left,B=v.top,b=ea(h,g,e.backgroundColor),C={canvas:e.canvas,backgroundColor:b,scale:null!==(P=null!==(O=e.scale)&&void 0!==O?O:o.devicePixelRatio)&&void 0!==P?P:1,x:(null!==(H=e.x)&&void 0!==H?H:0)+x,y:(null!==(N=e.y)&&void 0!==N?N:0)+B,width:null!==(R=e.width)&&void 0!==R?R:Math.ceil(y),height:null!==(V=e.height)&&void 0!==V?V:Math.ceil(w)},d?(h.logger.debug("Document cloned, using foreign object rendering"),[4,new Yo(h,C).render(g)]):[3,3];case 2:return _=r.sent(),[3,5];case 3:return h.logger.debug("Document cloned, element located at "+x+","+B+" with size "+y+"x"+w+" using computed rendering"),h.logger.debug("Starting DOM parsing"),S=cr(h,g),b===S.styles.backgroundColor&&(S.styles.backgroundColor=pe.TRANSPARENT),h.logger.debug("Starting renderer for element at "+C.x+","+C.y+" with size "+C.width+"x"+C.height),[4,new Ko(h,C).render(S)];case 4:_=r.sent(),r.label=5;case 5:return(null===(z=e.removeContainer)||void 0===z||z)&&(Vr.destroy(m)||h.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),h.logger.debug("Finished rendering"),[2,_]}})})},ea=function(t,e,n){var i=e.ownerDocument,r=i.documentElement?fe(t,getComputedStyle(i.documentElement).backgroundColor):pe.TRANSPARENT,o=i.body?fe(t,getComputedStyle(i.body).backgroundColor):pe.TRANSPARENT,a="string"==typeof n?fe(t,n):null===n?pe.TRANSPARENT:4294967295;return e===i.documentElement?ae(r)?ae(o)?a:o:r:a};return function(t,e){return void 0===e&&(e={}),ta(t,e)}},t.exports=i()},TBOh:function(t,e,n){var i=n("A5tq");e.createWrap=function(){var t,e=[],n={};return{add:function(t,r,o,a,s){return i.isString(a)&&(s=a,a=0),!n[t.id]&&(n[t.id]=1,e.push({el:t,target:r,time:o,delay:a,easing:s}),!0)},done:function(e){return t=e,this},start:function(){for(var i=e.length,r=0,o=e.length;r<o;r++){var a=e[r];a.el.animateTo(a.target,a.time,a.delay,a.easing,s)}return this;function s(){--i||(e.length=0,n={},t&&t())}}}}},TEoi:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("tRWJ"),o=n("B1kW"),a=n("oOY3"),s=n("NIzM"),A=n("yfgL"),l=n("sRj1"),c=n("ETGR"),u=n("+2Hi").createClipPath,h=i.extendChartView({type:"lines",init:function(){},render:function(t,e,n){var i=t.getData(),r=this._updateLineDraw(i,t),o=t.get("zlevel"),a=t.get("effect.trailLength"),s=n.getZr(),A="svg"===s.painter.getType();A||s.painter.getLayer(o).clear(!0),null==this._lastZlevel||A||s.configLayer(this._lastZlevel,{motionBlur:!1}),this._showEffect(t)&&a&&(A||s.configLayer(o,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(a/10+.9,1),0)})),r.updateData(i);var l=t.get("clip",!0)&&u(t.coordinateSystem,!1,t);l?this.group.setClipPath(l):this.group.removeClipPath(),this._lastZlevel=o,this._finished=!0},incrementalPrepareRender:function(t,e,n){var i=t.getData();this._updateLineDraw(i,t).incrementalPrepareUpdate(i),this._clearLayer(n),this._finished=!1},incrementalRender:function(t,e,n){this._lineDraw.incrementalUpdate(t,e.getData()),this._finished=t.end===e.getData().count()},updateTransform:function(t,e,n){var i=t.getData(),r=t.pipelineContext;if(!this._finished||r.large||r.progressiveRender)return{update:!0};var o=c.reset(t);o.progress&&o.progress({start:0,end:i.count()},i),this._lineDraw.updateLayout(),this._clearLayer(n)},_updateLineDraw:function(t,e){var n=this._lineDraw,i=this._showEffect(e),c=!!e.get("polyline"),u=e.pipelineContext.large;return n&&i===this._hasEffet&&c===this._isPolyline&&u===this._isLargeDraw||(n&&n.remove(),n=this._lineDraw=u?new l:new r(c?i?A:s:i?o:a),this._hasEffet=i,this._isPolyline=c,this._isLargeDraw=u,this.group.removeAll()),this.group.add(n.group),n},_showEffect:function(t){return!!t.get("effect.show")},_clearLayer:function(t){var e=t.getZr();"svg"===e.painter.getType()||null==this._lastZlevel||e.painter.getLayer(this._lastZlevel).clear(!0)},remove:function(t,e){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(e)},dispose:function(){}});t.exports=h},TJcz:function(t,e,n){var i=n("A5tq"),r={};function o(){this._coordinateSystems=[]}o.prototype={constructor:o,create:function(t,e){var n=[];i.each(r,function(i,r){var o=i.create(t,e);n=n.concat(o||[])}),this._coordinateSystems=n},update:function(t,e){i.each(this._coordinateSystems,function(n){n.update&&n.update(t,e)})},getCoordinateSystems:function(){return this._coordinateSystems.slice()}},o.register=function(t,e){r[t]=e},o.get=function(t){return r[t]};var a=o;t.exports=a},TWSN:function(t,e,n){var i=n("A5tq"),r=n("lbYD"),o=n("yW06"),a=n("r+KN"),s=n("A9v9"),A=r.applyTransform;function l(){s.call(this)}function c(t){this.name=t,this.zoomLimit,s.call(this),this._roamTransformable=new l,this._rawTransformable=new l,this._center,this._zoom}function u(t,e,n,i){var r=n.seriesModel,o=r?r.coordinateSystem:null;return o===this?o[t](i):null}i.mixin(l,s),c.prototype={constructor:c,type:"view",dimensions:["x","y"],setBoundingRect:function(t,e,n,i){return this._rect=new a(t,e,n,i),this._rect},getBoundingRect:function(){return this._rect},setViewRect:function(t,e,n,i){this.transformTo(t,e,n,i),this._viewRect=new a(t,e,n,i)},transformTo:function(t,e,n,i){var r=this.getBoundingRect(),o=this._rawTransformable;o.transform=r.calculateTransform(new a(t,e,n,i)),o.decomposeTransform(),this._updateTransform()},setCenter:function(t){t&&(this._center=t,this._updateCenterAndZoom())},setZoom:function(t){t=t||1;var e=this.zoomLimit;e&&(null!=e.max&&(t=Math.min(e.max,t)),null!=e.min&&(t=Math.max(e.min,t))),this._zoom=t,this._updateCenterAndZoom()},getDefaultCenter:function(){var t=this.getBoundingRect();return[t.x+t.width/2,t.y+t.height/2]},getCenter:function(){return this._center||this.getDefaultCenter()},getZoom:function(){return this._zoom||1},getRoamTransform:function(){return this._roamTransformable.getLocalTransform()},_updateCenterAndZoom:function(){var t=this._rawTransformable.getLocalTransform(),e=this._roamTransformable,n=this.getDefaultCenter(),i=this.getCenter(),o=this.getZoom();i=r.applyTransform([],i,t),n=r.applyTransform([],n,t),e.origin=i,e.position=[n[0]-i[0],n[1]-i[1]],e.scale=[o,o],this._updateTransform()},_updateTransform:function(){var t=this._roamTransformable,e=this._rawTransformable;e.parent=t,t.updateTransform(),e.updateTransform(),o.copy(this.transform||(this.transform=[]),e.transform||o.create()),this._rawTransform=e.getLocalTransform(),this.invTransform=this.invTransform||[],o.invert(this.invTransform,this.transform),this.decomposeTransform()},getTransformInfo:function(){var t=this._roamTransformable.transform,e=this._rawTransformable;return{roamTransform:t?i.slice(t):o.create(),rawScale:i.slice(e.scale),rawPosition:i.slice(e.position)}},getViewRect:function(){return this._viewRect},getViewRectAfterRoam:function(){var t=this.getBoundingRect().clone();return t.applyTransform(this.transform),t},dataToPoint:function(t,e,n){var i=e?this._rawTransform:this.transform;return n=n||[],i?A(n,t,i):r.copy(n,t)},pointToData:function(t){var e=this.invTransform;return e?A([],t,e):[t[0],t[1]]},convertToPixel:i.curry(u,"dataToPoint"),convertFromPixel:i.curry(u,"pointToData"),containPoint:function(t){return this.getViewRectAfterRoam().contain(t[0],t[1])}},i.mixin(c,s);var h=c;t.exports=h},TfMJ:function(t,e,n){var i=n("n/EV");e.Dispatcher=i;var r=n("sutA"),o=n("rVDn"),a=o.isCanvasEl,s=o.transformCoordWithViewport,A="undefined"!=typeof window&&!!window.addEventListener,l=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,c=[];function u(t,e,n,i){return n=n||{},i||!r.canvasSupported?h(t,e,n):r.browser.firefox&&null!=e.layerX&&e.layerX!==e.offsetX?(n.zrX=e.layerX,n.zrY=e.layerY):null!=e.offsetX?(n.zrX=e.offsetX,n.zrY=e.offsetY):h(t,e,n),n}function h(t,e,n){if(r.domSupported&&t.getBoundingClientRect){var i=e.clientX,o=e.clientY;if(a(t)){var A=t.getBoundingClientRect();return n.zrX=i-A.left,void(n.zrY=o-A.top)}if(s(c,t,i,o))return n.zrX=c[0],void(n.zrY=c[1])}n.zrX=n.zrY=0}function d(t){return t||window.event}var f=A?function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0}:function(t){t.returnValue=!1,t.cancelBubble=!0};e.clientToLocal=u,e.getNativeEvent=d,e.normalizeEvent=function(t,e,n){if(null!=(e=d(e)).zrX)return e;var i=e.type;if(i&&i.indexOf("touch")>=0){var r="touchend"!==i?e.targetTouches[0]:e.changedTouches[0];r&&u(t,r,e,n)}else u(t,e,e,n),e.zrDelta=e.wheelDelta?e.wheelDelta/120:-(e.detail||0)/3;var o=e.button;return null==e.which&&void 0!==o&&l.test(e.type)&&(e.which=1&o?1:2&o?3:4&o?2:0),e},e.addEventListener=function(t,e,n,i){A?t.addEventListener(e,n,i):t.attachEvent("on"+e,n)},e.removeEventListener=function(t,e,n,i){A?t.removeEventListener(e,n,i):t.detachEvent("on"+e,n)},e.stop=f,e.isMiddleOrRightButtonOnMouseUpDown=function(t){return 2===t.which||3===t.which},e.notLeftMouse=function(t){return t.which>1}},TiXa:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("sutA"),a=n("65+t"),s=n("NJ+n"),A=n("6hLx"),l=r.each,c=s.eachAxisDim;function u(t){var e={};return l(["start","end","startValue","endValue","throttle"],function(n){t.hasOwnProperty(n)&&(e[n]=t[n])}),e}function h(t,e){var n=t._rangePropMode,i=t.get("rangeMode");l([["start","startValue"],["end","endValue"]],function(t,r){var o=null!=e[t[0]],a=null!=e[t[1]];o&&!a?n[r]="percent":!o&&a?n[r]="value":i?n[r]=i[r]:o&&(n[r]="percent")})}var d=i.extendComponentModel({type:"dataZoom",dependencies:["xAxis","yAxis","zAxis","radiusAxis","angleAxis","singleAxis","series"],defaultOption:{zlevel:0,z:4,orient:null,xAxisIndex:null,yAxisIndex:null,filterMode:"filter",throttle:null,start:0,end:100,startValue:null,endValue:null,minSpan:null,maxSpan:null,minValueSpan:null,maxValueSpan:null,rangeMode:null},init:function(t,e,n){this._dataIntervalByAxis={},this._dataInfo={},this._axisProxies={},this.textStyleModel,this._autoThrottle=!0,this._rangePropMode=["percent","percent"];var i=u(t);this.settledOption=i,this.mergeDefaultAndTheme(t,n),this.doInit(i)},mergeOption:function(t){var e=u(t);r.merge(this.option,t,!0),r.merge(this.settledOption,e,!0),this.doInit(e)},doInit:function(t){var e=this.option;o.canvasSupported||(e.realtime=!1),this._setDefaultThrottle(t),h(this,t);var n=this.settledOption;l([["start","startValue"],["end","endValue"]],function(t,i){"value"===this._rangePropMode[i]&&(e[t[0]]=n[t[0]]=null)},this),this.textStyleModel=this.getModel("textStyle"),this._resetTarget(),this._giveAxisProxies()},_giveAxisProxies:function(){var t=this._axisProxies;this.eachTargetAxis(function(e,n,i,r){var o=this.dependentModels[e.axis][n],a=o.__dzAxisProxy||(o.__dzAxisProxy=new A(e.name,n,this,r));t[e.name+"_"+n]=a},this)},_resetTarget:function(){var t=this.option,e=this._judgeAutoMode();c(function(e){var n=e.axisIndex;t[n]=a.normalizeToArray(t[n])},this),"axisIndex"===e?this._autoSetAxisIndex():"orient"===e&&this._autoSetOrient()},_judgeAutoMode:function(){var t=this.option,e=!1;c(function(n){null!=t[n.axisIndex]&&(e=!0)},this);var n=t.orient;return null==n&&e?"orient":e?void 0:(null==n&&(t.orient="horizontal"),"axisIndex")},_autoSetAxisIndex:function(){var t=!0,e=this.get("orient",!0),n=this.option,i=this.dependentModels;if(t){var o="vertical"===e?"y":"x";i[o+"Axis"].length?(n[o+"AxisIndex"]=[0],t=!1):l(i.singleAxis,function(i){t&&i.get("orient",!0)===e&&(n.singleAxisIndex=[i.componentIndex],t=!1)})}t&&c(function(e){if(t){var i=[],r=this.dependentModels[e.axis];if(r.length&&!i.length)for(var o=0,a=r.length;o<a;o++)"category"===r[o].get("type")&&i.push(o);n[e.axisIndex]=i,i.length&&(t=!1)}},this),t&&this.ecModel.eachSeries(function(t){this._isSeriesHasAllAxesTypeOf(t,"value")&&c(function(e){var i=n[e.axisIndex],o=t.get(e.axisIndex),a=t.get(e.axisId);o=t.ecModel.queryComponents({mainType:e.axis,index:o,id:a})[0].componentIndex,r.indexOf(i,o)<0&&i.push(o)})},this)},_autoSetOrient:function(){var t;this.eachTargetAxis(function(e){!t&&(t=e.name)},this),this.option.orient="y"===t?"vertical":"horizontal"},_isSeriesHasAllAxesTypeOf:function(t,e){var n=!0;return c(function(i){var r=t.get(i.axisIndex),o=this.dependentModels[i.axis][r];o&&o.get("type")===e||(n=!1)},this),n},_setDefaultThrottle:function(t){if(t.hasOwnProperty("throttle")&&(this._autoThrottle=!1),this._autoThrottle){var e=this.ecModel.option;this.option.throttle=e.animation&&e.animationDurationUpdate>0?100:20}},getFirstTargetAxisModel:function(){var t;return c(function(e){if(null==t){var n=this.get(e.axisIndex);n.length&&(t=this.dependentModels[e.axis][n[0]])}},this),t},eachTargetAxis:function(t,e){var n=this.ecModel;c(function(i){l(this.get(i.axisIndex),function(r){t.call(e,i,r,this,n)},this)},this)},getAxisProxy:function(t,e){return this._axisProxies[t+"_"+e]},getAxisModel:function(t,e){var n=this.getAxisProxy(t,e);return n&&n.getAxisModel()},setRawRange:function(t){var e=this.option,n=this.settledOption;l([["start","startValue"],["end","endValue"]],function(i){null==t[i[0]]&&null==t[i[1]]||(e[i[0]]=n[i[0]]=t[i[0]],e[i[1]]=n[i[1]]=t[i[1]])},this),h(this,t)},setCalculatedRange:function(t){var e=this.option;l(["start","startValue","end","endValue"],function(n){e[n]=t[n]})},getPercentRange:function(){var t=this.findRepresentativeAxisProxy();if(t)return t.getDataPercentWindow()},getValueRange:function(t,e){if(null!=t||null!=e)return this.getAxisProxy(t,e).getDataValueWindow();var n=this.findRepresentativeAxisProxy();return n?n.getDataValueWindow():void 0},findRepresentativeAxisProxy:function(t){if(t)return t.__dzAxisProxy;var e=this._axisProxies;for(var n in e)if(e.hasOwnProperty(n)&&e[n].hostedBy(this))return e[n];for(var n in e)if(e.hasOwnProperty(n)&&!e[n].hostedBy(this))return e[n]},getRangePropMode:function(){return this._rangePropMode.slice()}});t.exports=d},Tn1s:function(t,e,n){var i=n("eUbH"),r=n("A5tq").isFunction,o={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData(),o=(t.visualColorAccessPath||"itemStyle.color").split("."),a=t.get(o),s=!r(a)||a instanceof i?null:a;a&&!s||(a=t.getColorFromPalette(t.name,null,e.getSeriesCount())),n.setVisual("color",a);var A=(t.visualBorderColorAccessPath||"itemStyle.borderColor").split("."),l=t.get(A);if(n.setVisual("borderColor",l),!e.isSeriesFiltered(t)){s&&n.each(function(e){n.setItemVisual(e,"color",s(t.getDataParams(e)))});return{dataEach:n.hasItemOption?function(t,e){var n=t.getItemModel(e),i=n.get(o,!0),r=n.get(A,!0);null!=i&&t.setItemVisual(e,"color",i),null!=r&&t.setItemVisual(e,"borderColor",r)}:null}}}};t.exports=o},TqJj:function(t,e,n){var i=n("76++"),r=n("Dz05"),o=function(t){this.name=t||"",this.cx=0,this.cy=0,this._radiusAxis=new i,this._angleAxis=new r,this._radiusAxis.polar=this._angleAxis.polar=this};o.prototype={type:"polar",axisPointerEnabled:!0,constructor:o,dimensions:["radius","angle"],model:null,containPoint:function(t){var e=this.pointToCoord(t);return this._radiusAxis.contain(e[0])&&this._angleAxis.contain(e[1])},containData:function(t){return this._radiusAxis.containData(t[0])&&this._angleAxis.containData(t[1])},getAxis:function(t){return this["_"+t+"Axis"]},getAxes:function(){return[this._radiusAxis,this._angleAxis]},getAxesByScale:function(t){var e=[],n=this._angleAxis,i=this._radiusAxis;return n.scale.type===t&&e.push(n),i.scale.type===t&&e.push(i),e},getAngleAxis:function(){return this._angleAxis},getRadiusAxis:function(){return this._radiusAxis},getOtherAxis:function(t){var e=this._angleAxis;return t===e?this._radiusAxis:e},getBaseAxis:function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAngleAxis()},getTooltipAxes:function(t){var e=null!=t&&"auto"!==t?this.getAxis(t):this.getBaseAxis();return{baseAxes:[e],otherAxes:[this.getOtherAxis(e)]}},dataToPoint:function(t,e){return this.coordToPoint([this._radiusAxis.dataToRadius(t[0],e),this._angleAxis.dataToAngle(t[1],e)])},pointToData:function(t,e){var n=this.pointToCoord(t);return[this._radiusAxis.radiusToData(n[0],e),this._angleAxis.angleToData(n[1],e)]},pointToCoord:function(t){var e=t[0]-this.cx,n=t[1]-this.cy,i=this.getAngleAxis(),r=i.getExtent(),o=Math.min(r[0],r[1]),a=Math.max(r[0],r[1]);i.inverse?o=a-360:a=o+360;var s=Math.sqrt(e*e+n*n);e/=s,n/=s;for(var A=Math.atan2(-n,e)/Math.PI*180,l=A<o?1:-1;A<o||A>a;)A+=360*l;return[s,A]},coordToPoint:function(t){var e=t[0],n=t[1]/180*Math.PI;return[Math.cos(n)*e+this.cx,-Math.sin(n)*e+this.cy]},getArea:function(){var t=this.getAngleAxis(),e=this.getRadiusAxis().getExtent().slice();e[0]>e[1]&&e.reverse();var n=t.getExtent(),i=Math.PI/180;return{cx:this.cx,cy:this.cy,r0:e[0],r:e[1],startAngle:-n[0]*i,endAngle:-n[1]*i,clockwise:t.inverse,contain:function(t,e){var n=t-this.cx,i=e-this.cy,r=n*n+i*i,o=this.r,a=this.r0;return r<=o*o&&r>=a*a}}}};var a=o;t.exports=a},TskJ:function(t,e,n){var i=n("A5tq"),r=n("Gkcz"),o=n("h17e"),a=n("65+t"),s=r.extend({type:"timeline",layoutMode:"box",defaultOption:{zlevel:0,z:4,show:!0,axisType:"time",realtime:!0,left:"20%",top:null,right:"20%",bottom:0,width:null,height:40,padding:5,controlPosition:"left",autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:"#000"},data:[]},init:function(t,e,n){this._data,this._names,this.mergeDefaultAndTheme(t,n),this._initData()},mergeOption:function(t){s.superApply(this,"mergeOption",arguments),this._initData()},setCurrentIndex:function(t){null==t&&(t=this.option.currentIndex);var e=this._data.count();this.option.loop?t=(t%e+e)%e:(t>=e&&(t=e-1),t<0&&(t=0)),this.option.currentIndex=t},getCurrentIndex:function(){return this.option.currentIndex},isIndexMax:function(){return this.getCurrentIndex()>=this._data.count()-1},setPlayState:function(t){this.option.autoPlay=!!t},getPlayState:function(){return!!this.option.autoPlay},_initData:function(){var t=this.option,e=t.data||[],n=t.axisType,r=this._names=[];if("category"===n){var s=[];i.each(e,function(t,e){var n,o=a.getDataItemValue(t);i.isObject(t)?(n=i.clone(t)).value=e:n=e,s.push(n),i.isString(o)||null!=o&&!isNaN(o)||(o=""),r.push(o+"")}),e=s}var A={category:"ordinal",time:"time"}[n]||"number";(this._data=new o([{name:"value",type:A}],this)).initData(e,r)},getData:function(){return this._data},getCategories:function(){if("category"===this.get("axisType"))return this._names.slice()}}),A=s;t.exports=A},Tvnq:function(t,e,n){n("Zm2K"),n("lJOK")},Tyw6:function(t,e,n){"use strict";var i=n("ywUT");function r(){this.handlers=[]}r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},"U+8u":function(t,e,n){var i=n("loyO"),r=n("bDs9"),o=n("A5tq"),a=n("f+YC");var s=i.extendChartView({type:"radar",render:function(t,e,n){var i=t.coordinateSystem,s=this.group,A=t.getData(),l=this._data;function c(t,e){var n=t.getItemVisual(e,"symbol")||"circle",i=t.getItemVisual(e,"color");if("none"!==n){var r=function(t){return o.isArray(t)||(t=[+t,+t]),t}(t.getItemVisual(e,"symbolSize")),s=a.createSymbol(n,-1,-1,2,2,i),A=t.getItemVisual(e,"symbolRotate")||0;return s.attr({style:{strokeNoScale:!0},z2:100,scale:[r[0]/2,r[1]/2],rotation:A*Math.PI/180||0}),s}}function u(e,n,i,o,a,s){i.removeAll();for(var A=0;A<n.length-1;A++){var l=c(o,a);l&&(l.__dimIdx=A,e[A]?(l.attr("position",e[A]),r[s?"initProps":"updateProps"](l,{position:n[A]},t,a)):l.attr("position",n[A]),i.add(l))}}function h(t){return o.map(t,function(t){return[i.cx,i.cy]})}A.diff(l).add(function(e){var n=A.getItemLayout(e);if(n){var i=new r.Polygon,o=new r.Polyline,a={shape:{points:n}};i.shape.points=h(n),o.shape.points=h(n),r.initProps(i,a,t,e),r.initProps(o,a,t,e);var s=new r.Group,l=new r.Group;s.add(o),s.add(i),s.add(l),u(o.shape.points,n,l,A,e,!0),A.setItemGraphicEl(e,s)}}).update(function(e,n){var i=l.getItemGraphicEl(n),o=i.childAt(0),a=i.childAt(1),s=i.childAt(2),c={shape:{points:A.getItemLayout(e)}};c.shape.points&&(u(o.shape.points,c.shape.points,s,A,e,!1),r.updateProps(o,c,t),r.updateProps(a,c,t),A.setItemGraphicEl(e,i))}).remove(function(t){s.remove(l.getItemGraphicEl(t))}).execute(),A.eachItemGraphicEl(function(t,e){var n=A.getItemModel(e),i=t.childAt(0),a=t.childAt(1),l=t.childAt(2),c=A.getItemVisual(e,"color");s.add(t),i.useStyle(o.defaults(n.getModel("lineStyle").getLineStyle(),{fill:"none",stroke:c})),i.hoverStyle=n.getModel("emphasis.lineStyle").getLineStyle();var u=n.getModel("areaStyle"),h=n.getModel("emphasis.areaStyle"),d=u.isEmpty()&&u.parentModel.isEmpty(),f=h.isEmpty()&&h.parentModel.isEmpty();f=f&&d,a.ignore=d,a.useStyle(o.defaults(u.getAreaStyle(),{fill:c,opacity:.7})),a.hoverStyle=h.getAreaStyle();var p=n.getModel("itemStyle").getItemStyle(["color"]),g=n.getModel("emphasis.itemStyle").getItemStyle(),m=n.getModel("label"),v=n.getModel("emphasis.label");l.eachChild(function(t){t.setStyle(p),t.hoverStyle=o.clone(g);var n=A.get(A.dimensions[t.__dimIdx],e);(null==n||isNaN(n))&&(n=""),r.setLabelStyle(t.style,t.hoverStyle,m,v,{labelFetcher:A.hostModel,labelDataIndex:e,labelDimIndex:t.__dimIdx,defaultText:n,autoColor:c,isRectText:!0})}),t.highDownOnUpdate=function(t,e){a.attr("ignore","emphasis"===e?f:d)},r.setHoverStyle(t)}),this._data=A},remove:function(){this.group.removeAll(),this._data=null},dispose:function(){}});t.exports=s},U2z9:function(t,e,n){var i=n("qhEh"),r=n("r+KN"),o=n("bDs9").linePolygonIntersect;function a(t){var e=["x","y"],n=["width","height"];return{point:function(e,n,i){if(e){var r=i.range;return s(e[t],r)}},rect:function(i,r,o){if(i){var a=o.range,A=[i[e[t]],i[e[t]]+i[n[t]]];return A[1]<A[0]&&A.reverse(),s(A[0],a)||s(A[1],a)||s(a[0],A)||s(a[1],A)}}}}function s(t,e){return e[0]<=t&&t<=e[1]}var A={lineX:a(0),lineY:a(1),rect:{point:function(t,e,n){return t&&n.boundingRect.contain(t[0],t[1])},rect:function(t,e,n){return t&&n.boundingRect.intersect(t)}},polygon:{point:function(t,e,n){return t&&n.boundingRect.contain(t[0],t[1])&&i.contain(n.range,t[0],t[1])},rect:function(t,e,n){var a=n.range;if(!t||a.length<=1)return!1;var s=t.x,A=t.y,l=t.width,c=t.height,u=a[0];return!!(i.contain(a,s,A)||i.contain(a,s+l,A)||i.contain(a,s,A+c)||i.contain(a,s+l,A+c)||r.create(t).contain(u[0],u[1])||o(s,A,s+l,A,a)||o(s,A,s,A+c,a)||o(s+l,A,s+l,A+c,a)||o(s,A+c,s+l,A+c,a))||void 0}}};t.exports=A},U3tO:function(t,e,n){var i=n("A5tq");function r(t){for(var e=[];t;)(t=t.parentNode)&&e.push(t);return e.reverse()}e.retrieveTargetInfo=function(t,e,n){if(t&&i.indexOf(e,t.type)>=0){var r=n.getData().tree.root,o=t.targetNode;if("string"==typeof o&&(o=r.getNodeById(o)),o&&r.contains(o))return{node:o};var a=t.targetNodeId;if(null!=a&&(o=r.getNodeById(a)))return{node:o}}},e.getPathToRoot=r,e.aboveViewRoot=function(t,e){var n=r(t);return i.indexOf(n,e)>=0},e.wrapTreePathInfo=function(t,e){for(var n=[];t;){var i=t.dataIndex;n.push({name:t.name,dataIndex:i,value:e.getRawValue(i)}),t=t.parentNode}return n.reverse(),n}},UKT6:function(t,e,n){var i=n("loyO");i.registerAction({type:"focusNodeAdjacency",event:"focusNodeAdjacency",update:"series:focusNodeAdjacency"},function(){}),i.registerAction({type:"unfocusNodeAdjacency",event:"unfocusNodeAdjacency",update:"series:unfocusNodeAdjacency"},function(){})},Ueez:function(t,e,n){var i=n("loyO"),r=n("zcw7");n("LRen"),n("wtxj"),n("Gvpk"),n("iF0v"),n("ojHS"),i.registerPreprocessor(r)},UfK9:function(t,e,n){var i=n("A5tq");e.layout=function(t,e,n){n=n||{};var r=t.coordinateSystem,o=e.axis,a={},s=o.getAxesOnZeroOf()[0],A=o.position,l=s?"onZero":A,c=o.dim,u=r.getRect(),h=[u.x,u.x+u.width,u.y,u.y+u.height],d={left:0,right:1,top:0,bottom:1,onZero:2},f=e.get("offset")||0,p="x"===c?[h[2]-f,h[3]+f]:[h[0]-f,h[1]+f];if(s){var g=s.toGlobalCoord(s.dataToCoord(0));p[d.onZero]=Math.max(Math.min(g,p[1]),p[0])}a.position=["y"===c?p[d[l]]:h[0],"x"===c?p[d[l]]:h[3]],a.rotation=Math.PI/2*("x"===c?0:1),a.labelDirection=a.tickDirection=a.nameDirection={top:-1,bottom:1,left:-1,right:1}[A],a.labelOffset=s?p[d[A]]-p[d.onZero]:0,e.get("axisTick.inside")&&(a.tickDirection=-a.tickDirection),i.retrieve(n.labelInside,e.get("axisLabel.inside"))&&(a.labelDirection=-a.labelDirection);var m=e.get("axisLabel.rotate");return a.labelRotate="top"===l?-m:m,a.z2=1,a}},UiYL:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("ixaL"),a=Math.PI;t.exports=function(t,e){e=e||{},i.defaults(e,{text:"loading",textColor:"#000",fontSize:"12px",maskColor:"rgba(255, 255, 255, 0.8)",showSpinner:!0,color:"#c23531",spinnerRadius:10,lineWidth:5,zlevel:0});var n=new r.Group,s=new r.Rect({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});n.add(s);var A=e.fontSize+" sans-serif",l=new r.Rect({style:{fill:"none",text:e.text,font:A,textPosition:"right",textDistance:10,textFill:e.textColor},zlevel:e.zlevel,z:10001});if(n.add(l),e.showSpinner){var c=new r.Arc({shape:{startAngle:-a/2,endAngle:-a/2+.1,r:e.spinnerRadius},style:{stroke:e.color,lineCap:"round",lineWidth:e.lineWidth},zlevel:e.zlevel,z:10001});c.animateShape(!0).when(1e3,{endAngle:3*a/2}).start("circularInOut"),c.animateShape(!0).when(1e3,{startAngle:3*a/2}).delay(300).start("circularInOut"),n.add(c)}return n.resize=function(){var n=o.getWidth(e.text,A),i=e.showSpinner?e.spinnerRadius:0,r=(t.getWidth()-2*i-(e.showSpinner&&n?10:0)-n)/2-(e.showSpinner?0:n/2),a=t.getHeight()/2;e.showSpinner&&c.setShape({cx:r,cy:a}),l.setShape({x:r-i,y:a-i,width:2*i,height:2*i}),s.setShape({x:0,y:0,width:t.getWidth(),height:t.getHeight()})},n.resize(),n}},UnJe:function(t,e,n){var i=n("a7jT"),r=n("A5tq"),o=n("3PS3"),a=n("+ZRj"),s=n("eEzf").prototype.getCanvasPattern,A=Math.abs,l=new o(!0);function c(t){i.call(this,t),this.path=null}c.prototype={constructor:c,type:"path",__dirtyPath:!0,strokeContainThreshold:5,segmentIgnoreThreshold:0,subPixelOptimize:!1,brush:function(t,e){var n,i=this.style,r=this.path||l,o=i.hasStroke(),a=i.hasFill(),A=i.fill,c=i.stroke,u=a&&!!A.colorStops,h=o&&!!c.colorStops,d=a&&!!A.image,f=o&&!!c.image;(i.bind(t,this,e),this.setTransform(t),this.__dirty)&&(u&&(n=n||this.getBoundingRect(),this._fillGradient=i.getGradient(t,A,n)),h&&(n=n||this.getBoundingRect(),this._strokeGradient=i.getGradient(t,c,n)));u?t.fillStyle=this._fillGradient:d&&(t.fillStyle=s.call(A,t)),h?t.strokeStyle=this._strokeGradient:f&&(t.strokeStyle=s.call(c,t));var p=i.lineDash,g=i.lineDashOffset,m=!!t.setLineDash,v=this.getGlobalScale();if(r.setScale(v[0],v[1],this.segmentIgnoreThreshold),this.__dirtyPath||p&&!m&&o?(r.beginPath(t),p&&!m&&(r.setLineDash(p),r.setLineDashOffset(g)),this.buildPath(r,this.shape,!1),this.path&&(this.__dirtyPath=!1)):(t.beginPath(),this.path.rebuildPath(t)),a)if(null!=i.fillOpacity){var y=t.globalAlpha;t.globalAlpha=i.fillOpacity*i.opacity,r.fill(t),t.globalAlpha=y}else r.fill(t);if(p&&m&&(t.setLineDash(p),t.lineDashOffset=g),o)if(null!=i.strokeOpacity){y=t.globalAlpha;t.globalAlpha=i.strokeOpacity*i.opacity,r.stroke(t),t.globalAlpha=y}else r.stroke(t);p&&m&&t.setLineDash([]),null!=i.text&&(this.restoreTransform(t),this.drawRectText(t,this.getBoundingRect()))},buildPath:function(t,e,n){},createPathProxy:function(){this.path=new o},getBoundingRect:function(){var t=this._rect,e=this.style,n=!t;if(n){var i=this.path;i||(i=this.path=new o),this.__dirtyPath&&(i.beginPath(),this.buildPath(i,this.shape,!1)),t=i.getBoundingRect()}if(this._rect=t,e.hasStroke()){var r=this._rectWithStroke||(this._rectWithStroke=t.clone());if(this.__dirty||n){r.copy(t);var a=e.lineWidth,s=e.strokeNoScale?this.getLineScale():1;e.hasFill()||(a=Math.max(a,this.strokeContainThreshold||4)),s>1e-10&&(r.width+=a/s,r.height+=a/s,r.x-=a/s/2,r.y-=a/s/2)}return r}return t},contain:function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect(),r=this.style;if(t=n[0],e=n[1],i.contain(t,e)){var o=this.path.data;if(r.hasStroke()){var s=r.lineWidth,A=r.strokeNoScale?this.getLineScale():1;if(A>1e-10&&(r.hasFill()||(s=Math.max(s,this.strokeContainThreshold)),a.containStroke(o,s/A,t,e)))return!0}if(r.hasFill())return a.contain(o,t,e)}return!1},dirty:function(t){null==t&&(t=!0),t&&(this.__dirtyPath=t,this._rect=null),this.__dirty=this.__dirtyText=!0,this.__zr&&this.__zr.refresh(),this.__clipTarget&&this.__clipTarget.dirty()},animateShape:function(t){return this.animate("shape",t)},attrKV:function(t,e){"shape"===t?(this.setShape(e),this.__dirtyPath=!0,this._rect=null):i.prototype.attrKV.call(this,t,e)},setShape:function(t,e){var n=this.shape;if(n){if(r.isObject(t))for(var i in t)t.hasOwnProperty(i)&&(n[i]=t[i]);else n[t]=e;this.dirty(!0)}return this},getLineScale:function(){var t=this.transform;return t&&A(t[0]-1)>1e-10&&A(t[3]-1)>1e-10?Math.sqrt(A(t[0]*t[3]-t[2]*t[1])):1}},c.extend=function(t){var e=function(e){c.call(this,e),t.style&&this.style.extendFrom(t.style,!1);var n=t.shape;if(n){this.shape=this.shape||{};var i=this.shape;for(var r in n)!i.hasOwnProperty(r)&&n.hasOwnProperty(r)&&(i[r]=n[r])}t.init&&t.init.call(this,e)};for(var n in r.inherits(e,c),t)"style"!==n&&"shape"!==n&&(e.prototype[n]=t[n]);return e},r.inherits(c,i);var u=c;t.exports=u},UvWp:function(t,e,n){var i=n("PN6Y").createElement,r=n("A5tq"),o=n("UnJe"),a=n("a+Y0"),s=n("g+7e"),A=n("u9IZ"),l=A.path,c=A.image,u=A.text;function h(t,e,n,i,r){this._zrId=t,this._svgRoot=e,this._tagNames="string"==typeof n?[n]:n,this._markLabel=i,this._domName=r||"_dom",this.nextId=0}h.prototype.createElement=i,h.prototype.getDefs=function(t){var e=this._svgRoot,n=this._svgRoot.getElementsByTagName("defs");return 0===n.length?t?((n=e.insertBefore(this.createElement("defs"),e.firstChild)).contains||(n.contains=function(t){var e=n.children;if(!e)return!1;for(var i=e.length-1;i>=0;--i)if(e[i]===t)return!0;return!1}),n):null:n[0]},h.prototype.update=function(t,e){if(t){var n=this.getDefs(!1);if(t[this._domName]&&n.contains(t[this._domName]))"function"==typeof e&&e(t);else{var i=this.add(t);i&&(t[this._domName]=i)}}},h.prototype.addDom=function(t){this.getDefs(!0).appendChild(t)},h.prototype.removeDom=function(t){var e=this.getDefs(!1);e&&t[this._domName]&&(e.removeChild(t[this._domName]),t[this._domName]=null)},h.prototype.getDoms=function(){var t=this.getDefs(!1);if(!t)return[];var e=[];return r.each(this._tagNames,function(n){var i=t.getElementsByTagName(n);e=e.concat([].slice.call(i))}),e},h.prototype.markAllUnused=function(){var t=this.getDoms(),e=this;r.each(t,function(t){t[e._markLabel]="0"})},h.prototype.markUsed=function(t){t&&(t[this._markLabel]="1")},h.prototype.removeUnused=function(){var t=this.getDefs(!1);if(t){var e=this.getDoms(),n=this;r.each(e,function(e){"1"!==e[n._markLabel]&&t.removeChild(e)})}},h.prototype.getSvgProxy=function(t){return t instanceof o?l:t instanceof a?c:t instanceof s?u:l},h.prototype.getTextSvgElement=function(t){return t.__textSvgEl},h.prototype.getSvgElement=function(t){return t.__svgEl};var d=h;t.exports=d},UxUh:function(t,e,n){var i=n("loyO");n("IKzd");var r=i.extendComponentModel({type:"polar",dependencies:["polarAxis","angleAxis"],coordinateSystem:null,findAxisModel:function(t){var e;return this.ecModel.eachComponent(t,function(t){t.getCoordSysModel()===this&&(e=t)},this),e},defaultOption:{zlevel:0,z:0,center:["50%","50%"],radius:"80%"}});t.exports=r},"V+If":function(t,e,n){var i=["itemStyle","borderColor"],r=["itemStyle","borderColor0"],o=["itemStyle","color"],a=["itemStyle","color0"],s={seriesType:"candlestick",plan:n("FiFn")(),performRawSeries:!0,reset:function(t,e){if(t.getData().setVisual({legendSymbol:"roundRect",colorP:n(1,t),colorN:n(-1,t),borderColorP:s(1,t),borderColorN:s(-1,t)}),!e.isSeriesFiltered(t))return!t.pipelineContext.large&&{progress:function(t,e){var i;for(;null!=(i=t.next());){var r=e.getItemModel(i),o=e.getItemLayout(i).sign;e.setItemVisual(i,{color:n(o,r),borderColor:s(o,r)})}}};function n(t,e){return e.get(t>0?o:a)}function s(t,e){return e.get(t>0?i:r)}}};t.exports=s},"V/Hk":function(t,e,n){var i=n("A5tq").createHashMap;t.exports=function(t){t.eachSeriesByType("themeRiver",function(t){var e=t.getData(),n=t.getRawData(),r=t.get("color"),o=i();e.each(function(t){o.set(e.getRawIndex(t),t)}),n.each(function(i){var a=n.getName(i),s=r[(t.nameMap.get(a)-1)%r.length];n.setItemVisual(i,"color",s);var A=o.get(i);null!=A&&e.setItemVisual(A,"color",s)})})}},V0EG:function(t,e){var n,i,r=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{i="function"==typeof clearTimeout?clearTimeout:a}catch(t){i=a}}();var A,l=[],c=!1,u=-1;function h(){c&&A&&(c=!1,A.length?l=A.concat(l):u=-1,l.length&&d())}function d(){if(!c){var t=s(h);c=!0;for(var e=l.length;e;){for(A=l,l=[];++u<e;)A&&A[u].run();u=-1,e=l.length}A=null,c=!1,function(t){if(i===clearTimeout)return clearTimeout(t);if((i===a||!i)&&clearTimeout)return i=clearTimeout,clearTimeout(t);try{i(t)}catch(e){try{return i.call(null,t)}catch(e){return i.call(this,t)}}}(t)}}function f(t,e){this.fun=t,this.array=e}function p(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];l.push(new f(t,e)),1!==l.length||c||s(d)},f.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=p,r.addListener=p,r.once=p,r.off=p,r.removeListener=p,r.removeAllListeners=p,r.emit=p,r.prependListener=p,r.prependOnceListener=p,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},V0pK:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("X/H0"),o=n("vuYU"),a=n("SDZ1"),s=n("w9uD").reformIntervals,A=r.extend({type:"visualMap.piecewise",defaultOption:{selected:null,minOpen:!1,maxOpen:!1,align:"auto",itemWidth:20,itemHeight:14,itemSymbol:"roundRect",pieceList:null,categories:null,splitNumber:5,selectedMode:"multiple",itemGap:10,hoverLink:!0,showLabel:null},optionUpdated:function(t,e){A.superApply(this,"optionUpdated",arguments),this._pieceList=[],this.resetExtent();var n=this._mode=this._determineMode();l[this._mode].call(this),this._resetSelected(t,e);var r=this.option.categories;this.resetVisual(function(t,e){"categories"===n?(t.mappingMethod="category",t.categories=i.clone(r)):(t.dataExtent=this.getExtent(),t.mappingMethod="piecewise",t.pieceList=i.map(this._pieceList,function(t){t=i.clone(t);return"inRange"!==e&&(t.visual=null),t}))})},completeVisualOption:function(){var t=this.option,e={},n=o.listVisualTypes(),s=this.isCategory();function A(t,e,n){return t&&t[e]&&(i.isObject(t[e])?t[e].hasOwnProperty(n):t[e]===n)}i.each(t.pieces,function(t){i.each(n,function(n){t.hasOwnProperty(n)&&(e[n]=1)})}),i.each(e,function(e,n){var r=0;i.each(this.stateList,function(e){r|=A(t,e,n)||A(t.target,e,n)},this),!r&&i.each(this.stateList,function(e){(t[e]||(t[e]={}))[n]=a.get(n,"inRange"===e?"active":"inactive",s)})},this),r.prototype.completeVisualOption.apply(this,arguments)},_resetSelected:function(t,e){var n=this.option,r=this._pieceList,o=(e?n:t).selected||{};if(n.selected=o,i.each(r,function(t,e){var n=this.getSelectedMapKey(t);o.hasOwnProperty(n)||(o[n]=!0)},this),"single"===n.selectedMode){var a=!1;i.each(r,function(t,e){var n=this.getSelectedMapKey(t);o[n]&&(a?o[n]=!1:a=!0)},this)}},getSelectedMapKey:function(t){return"categories"===this._mode?t.value+"":t.index+""},getPieceList:function(){return this._pieceList},_determineMode:function(){var t=this.option;return t.pieces&&t.pieces.length>0?"pieces":this.option.categories?"categories":"splitNumber"},setSelected:function(t){this.option.selected=i.clone(t)},getValueState:function(t){var e=o.findPieceIndex(t,this._pieceList);return null!=e&&this.option.selected[this.getSelectedMapKey(this._pieceList[e])]?"inRange":"outOfRange"},findTargetDataIndices:function(t){var e=[];return this.eachTargetSeries(function(n){var i=[],r=n.getData();r.each(this.getDataDimension(r),function(e,n){o.findPieceIndex(e,this._pieceList)===t&&i.push(n)},this),e.push({seriesId:n.id,dataIndex:i})},this),e},getRepresentValue:function(t){var e;if(this.isCategory())e=t.value;else if(null!=t.value)e=t.value;else{var n=t.interval||[];e=n[0]===-1/0&&n[1]===1/0?0:(n[0]+n[1])/2}return e},getVisualMeta:function(t){if(!this.isCategory()){var e=[],n=[],r=this,o=this._pieceList.slice();if(o.length){var a=o[0].interval[0];a!==-1/0&&o.unshift({interval:[-1/0,a]}),(a=o[o.length-1].interval[1])!==1/0&&o.push({interval:[a,1/0]})}else o.push({interval:[-1/0,1/0]});var s=-1/0;return i.each(o,function(t){var e=t.interval;e&&(e[0]>s&&A([s,e[0]],"outOfRange"),A(e.slice()),s=e[1])},this),{stops:e,outerColors:n}}function A(i,o){var a=r.getRepresentValue({interval:i});o||(o=r.getValueState(a));var s=t(a,o);i[0]===-1/0?n[0]=s:i[1]===1/0?n[1]=s:e.push({value:i[0],color:s},{value:i[1],color:s})}}}),l={splitNumber:function(){var t=this.option,e=this._pieceList,n=Math.min(t.precision,20),r=this.getExtent(),o=t.splitNumber;o=Math.max(parseInt(o,10),1),t.splitNumber=o;for(var a=(r[1]-r[0])/o;+a.toFixed(n)!==a&&n<5;)n++;t.precision=n,a=+a.toFixed(n),t.minOpen&&e.push({interval:[-1/0,r[0]],close:[0,0]});for(var A=0,l=r[0];A<o;l+=a,A++){var c=A===o-1?r[1]:l+a;e.push({interval:[l,c],close:[1,1]})}t.maxOpen&&e.push({interval:[r[1],1/0],close:[0,0]}),s(e),i.each(e,function(t,e){t.index=e,t.text=this.formatValueText(t.interval)},this)},categories:function(){var t=this.option;i.each(t.categories,function(t){this._pieceList.push({text:this.formatValueText(t,!0),value:t})},this),c(t,this._pieceList)},pieces:function(){var t=this.option,e=this._pieceList;i.each(t.pieces,function(t,n){i.isObject(t)||(t={value:t});var r={text:"",index:n};if(null!=t.label&&(r.text=t.label),t.hasOwnProperty("value")){var a=r.value=t.value;r.interval=[a,a],r.close=[1,1]}else{for(var s=r.interval=[],A=r.close=[0,0],l=[1,0,1],c=[-1/0,1/0],u=[],h=0;h<2;h++){for(var d=[["gte","gt","min"],["lte","lt","max"]][h],f=0;f<3&&null==s[h];f++)s[h]=t[d[f]],A[h]=l[f],u[h]=2===f;null==s[h]&&(s[h]=c[h])}u[0]&&s[1]===1/0&&(A[0]=0),u[1]&&s[0]===-1/0&&(A[1]=0),s[0]===s[1]&&A[0]&&A[1]&&(r.value=s[0])}r.visual=o.retrieveVisuals(t),e.push(r)},this),c(t,e),s(e),i.each(e,function(t){var e=t.close,n=[["<","鈮�"][e[1]],[">","鈮�"][e[0]]];t.text=t.text||this.formatValueText(null!=t.value?t.value:t.interval,!1,n)},this)}};function c(t,e){var n=t.inverse;("vertical"===t.orient?!n:n)&&e.reverse()}var u=A;t.exports=u},VQWz:function(t,e,n){var i=n("t+aF"),r=n("A5tq"),o=n("F9js").getDimensionTypeByAxis,a=n("PVav").makeSeriesEncodeForAxisCoordSys,s={_baseAxisDim:null,getInitialData:function(t,e){var n,s,A=e.getComponent("xAxis",this.get("xAxisIndex")),l=e.getComponent("yAxis",this.get("yAxisIndex")),c=A.get("type"),u=l.get("type");"category"===c?(t.layout="horizontal",n=A.getOrdinalMeta(),s=!0):"category"===u?(t.layout="vertical",n=l.getOrdinalMeta(),s=!0):t.layout=t.layout||"horizontal";var h=["x","y"],d="horizontal"===t.layout?0:1,f=this._baseAxisDim=h[d],p=h[1-d],g=[A,l],m=g[d].get("type"),v=g[1-d].get("type"),y=t.data;if(y&&s){var w=[];r.each(y,function(t,e){var n;t.value&&r.isArray(t.value)?(n=t.value.slice(),t.value.unshift(e)):r.isArray(t)?(n=t.slice(),t.unshift(e)):n=t,w.push(n)}),t.data=w}var x=this.defaultValueDimensions,B=[{name:f,type:o(m),ordinalMeta:n,otherDims:{tooltip:!1,itemName:0},dimsDef:["base"]},{name:p,type:o(v),dimsDef:x.slice()}];return i(this,{coordDimensions:B,dimensionsCount:x.length+1,encodeDefaulter:r.curry(a,B,this)})},getBaseAxis:function(){var t=this._baseAxisDim;return this.ecModel.getComponent(t+"Axis",this.get(t+"AxisIndex")).axis}};e.seriesModelMixin=s},VU1Y:function(t,e,n){var i=function(){};1===n("Lkz2").debugMode&&(i=console.error);var r=i;t.exports=r},VXHY:function(t,e,n){var i=n("A5tq"),r=n("65+t");t.exports=function(t){!function(t){if(!t.parallel){var e=!1;i.each(t.series,function(t){t&&"parallel"===t.type&&(e=!0)}),e&&(t.parallel=[{}])}}(t),function(t){var e=r.normalizeToArray(t.parallelAxis);i.each(e,function(e){if(i.isObject(e)){var n=e.parallelIndex||0,o=r.normalizeToArray(t.parallel)[n];o&&o.parallelAxisDefault&&i.merge(e,o.parallelAxisDefault,!1)}})}(t)}},Vede:function(t,e,n){var i=n("A5tq"),r=n("rHid"),o=n("w9uD"),a=n("0Hqv"),s=r.prototype,A=a.prototype,l=o.getPrecisionSafe,c=o.round,u=Math.floor,h=Math.ceil,d=Math.pow,f=Math.log,p=r.extend({type:"log",base:10,$constructor:function(){r.apply(this,arguments),this._originalScale=new a},getTicks:function(t){var e=this._originalScale,n=this._extent,r=e.getExtent();return i.map(A.getTicks.call(this,t),function(t){var i=o.round(d(this.base,t));return i=t===n[0]&&e.__fixMin?g(i,r[0]):i,i=t===n[1]&&e.__fixMax?g(i,r[1]):i},this)},getMinorTicks:A.getMinorTicks,getLabel:A.getLabel,scale:function(t){return t=s.scale.call(this,t),d(this.base,t)},setExtent:function(t,e){var n=this.base;t=f(t)/f(n),e=f(e)/f(n),A.setExtent.call(this,t,e)},getExtent:function(){var t=this.base,e=s.getExtent.call(this);e[0]=d(t,e[0]),e[1]=d(t,e[1]);var n=this._originalScale,i=n.getExtent();return n.__fixMin&&(e[0]=g(e[0],i[0])),n.__fixMax&&(e[1]=g(e[1],i[1])),e},unionExtent:function(t){this._originalScale.unionExtent(t);var e=this.base;t[0]=f(t[0])/f(e),t[1]=f(t[1])/f(e),s.unionExtent.call(this,t)},unionExtentFromData:function(t,e){this.unionExtent(t.getApproximateExtent(e))},niceTicks:function(t){t=t||10;var e=this._extent,n=e[1]-e[0];if(!(n===1/0||n<=0)){var i=o.quantity(n);for(t/n*i<=.5&&(i*=10);!isNaN(i)&&Math.abs(i)<1&&Math.abs(i)>0;)i*=10;var r=[o.round(h(e[0]/i)*i),o.round(u(e[1]/i)*i)];this._interval=i,this._niceExtent=r}},niceExtent:function(t){A.niceExtent.call(this,t);var e=this._originalScale;e.__fixMin=t.fixMin,e.__fixMax=t.fixMax}});function g(t,e){return c(t,l(e))}i.each(["contain","normalize"],function(t){p.prototype[t]=function(e){return e=f(e)/f(this.base),s[t].call(this,e)}}),p.create=function(){return new p};var m=p;t.exports=m},W9IS:function(t,e,n){var i=n("loyO");n("vpgz"),n("mILt"),n("YFM+");var r=n("Y0cd"),o=n("HVRW"),a=n("Y5hD"),s=n("OK92"),A=n("xePU"),l=n("fs8b"),c=n("WwqU"),u=n("hCl9");i.registerProcessor(r),i.registerVisual(o("graph","circle",null)),i.registerVisual(a),i.registerVisual(s),i.registerLayout(A),i.registerLayout(i.PRIORITY.VISUAL.POST_CHART_LAYOUT,l),i.registerLayout(c),i.registerCoordinateSystem("graphView",{create:u})},WI8i:function(t,e,n){var i=n("A5tq");t.exports=function(t){var e={};t.eachSeriesByType("map",function(t){var n=t.getHostGeoModel(),i=n?"o"+n.id:"i"+t.getMapType();(e[i]=e[i]||[]).push(t)}),i.each(e,function(t,e){for(var n,r,o,a=(n=i.map(t,function(t){return t.getData()}),r=t[0].get("mapValueCalculation"),o={},i.each(n,function(t){t.each(t.mapDimension("value"),function(e,n){var i="ec-"+t.getName(n);o[i]=o[i]||[],isNaN(e)||o[i].push(e)})}),n[0].map(n[0].mapDimension("value"),function(t,e){for(var i,a="ec-"+n[0].getName(e),s=0,A=1/0,l=-1/0,c=o[a].length,u=0;u<c;u++)A=Math.min(A,o[a][u]),l=Math.max(l,o[a][u]),s+=o[a][u];return i="min"===r?A:"max"===r?l:"average"===r?s/c:s,0===c?NaN:i})),s=0;s<t.length;s++)t[s].originalData=t[s].getData();for(s=0;s<t.length;s++)t[s].seriesGroup=t,t[s].needsDrawMap=0===s&&!t[s].getHostGeoModel(),t[s].setData(a.cloneShallow()),t[s].mainSeries=t[0]})}},WIjj:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("K3bJ"),a=n("gj94"),s=n("cLid"),A=["axisLine","axisLabel","axisTick","minorTick","splitLine","minorSplitLine","splitArea"];function l(t,e,n){e[1]>e[0]&&(e=e.slice().reverse());var i=t.coordToPoint([e[0],n]),r=t.coordToPoint([e[1],n]);return{x1:i[0],y1:i[1],x2:r[0],y2:r[1]}}function c(t){return t.getRadiusAxis().inverse?0:1}function u(t){var e=t[0],n=t[t.length-1];e&&n&&Math.abs(Math.abs(e.coord-n.coord)-360)<1e-4&&t.pop()}var h=a.extend({type:"angleAxis",axisPointerClass:"PolarAxisPointer",render:function(t,e){if(this.group.removeAll(),t.get("show")){var n=t.axis,r=n.polar,o=r.getRadiusAxis().getExtent(),a=n.getTicksCoords(),s=n.getMinorTicksCoords(),l=i.map(n.getViewLabels(),function(t){return(t=i.clone(t)).coord=n.dataToCoord(t.tickValue),t});u(l),u(a),i.each(A,function(e){!t.get(e+".show")||n.scale.isBlank()&&"axisLine"!==e||this["_"+e](t,r,a,s,o,l)},this)}},_axisLine:function(t,e,n,i,o){var a,s=t.getModel("axisLine.lineStyle"),A=c(e),l=A?0:1;(a=0===o[l]?new r.Circle({shape:{cx:e.cx,cy:e.cy,r:o[A]},style:s.getLineStyle(),z2:1,silent:!0}):new r.Ring({shape:{cx:e.cx,cy:e.cy,r:o[A],r0:o[l]},style:s.getLineStyle(),z2:1,silent:!0})).style.fill=null,this.group.add(a)},_axisTick:function(t,e,n,o,a){var s=t.getModel("axisTick"),A=(s.get("inside")?-1:1)*s.get("length"),u=a[c(e)],h=i.map(n,function(t){return new r.Line({shape:l(e,[u,u+A],t.coord)})});this.group.add(r.mergePath(h,{style:i.defaults(s.getModel("lineStyle").getLineStyle(),{stroke:t.get("axisLine.lineStyle.color")})}))},_minorTick:function(t,e,n,o,a){if(o.length){for(var s=t.getModel("axisTick"),A=t.getModel("minorTick"),u=(s.get("inside")?-1:1)*A.get("length"),h=a[c(e)],d=[],f=0;f<o.length;f++)for(var p=0;p<o[f].length;p++)d.push(new r.Line({shape:l(e,[h,h+u],o[f][p].coord)}));this.group.add(r.mergePath(d,{style:i.defaults(A.getModel("lineStyle").getLineStyle(),i.defaults(s.getLineStyle(),{stroke:t.get("axisLine.lineStyle.color")}))}))}},_axisLabel:function(t,e,n,a,A,l){var u=t.getCategories(!0),h=t.getModel("axisLabel"),d=h.get("margin"),f=t.get("triggerEvent");i.each(l,function(n,i){var a=h,l=n.tickValue,p=A[c(e)],g=e.coordToPoint([p+d,n.coord]),m=e.cx,v=e.cy,y=Math.abs(g[0]-m)/p<.3?"center":g[0]>m?"left":"right",w=Math.abs(g[1]-v)/p<.3?"middle":g[1]>v?"top":"bottom";u&&u[l]&&u[l].textStyle&&(a=new o(u[l].textStyle,h,h.ecModel));var x=new r.Text({silent:s.isLabelSilent(t)});this.group.add(x),r.setTextStyle(x.style,a,{x:g[0],y:g[1],textFill:a.getTextColor()||t.get("axisLine.lineStyle.color"),text:n.formattedLabel,textAlign:y,textVerticalAlign:w}),f&&(x.eventData=s.makeAxisEventDataBase(t),x.eventData.targetType="axisLabel",x.eventData.value=n.rawLabel)},this)},_splitLine:function(t,e,n,o,a){var s=t.getModel("splitLine").getModel("lineStyle"),A=s.get("color"),c=0;A=A instanceof Array?A:[A];for(var u=[],h=0;h<n.length;h++){var d=c++%A.length;u[d]=u[d]||[],u[d].push(new r.Line({shape:l(e,a,n[h].coord)}))}for(h=0;h<u.length;h++)this.group.add(r.mergePath(u[h],{style:i.defaults({stroke:A[h%A.length]},s.getLineStyle()),silent:!0,z:t.get("z")}))},_minorSplitLine:function(t,e,n,i,o){if(i.length){for(var a=t.getModel("minorSplitLine").getModel("lineStyle"),s=[],A=0;A<i.length;A++)for(var c=0;c<i[A].length;c++)s.push(new r.Line({shape:l(e,o,i[A][c].coord)}));this.group.add(r.mergePath(s,{style:a.getLineStyle(),silent:!0,z:t.get("z")}))}},_splitArea:function(t,e,n,o,a){if(n.length){var s=t.getModel("splitArea").getModel("areaStyle"),A=s.get("color"),l=0;A=A instanceof Array?A:[A];for(var c=[],u=Math.PI/180,h=-n[0].coord*u,d=Math.min(a[0],a[1]),f=Math.max(a[0],a[1]),p=t.get("clockwise"),g=1;g<n.length;g++){var m=l++%A.length;c[m]=c[m]||[],c[m].push(new r.Sector({shape:{cx:e.cx,cy:e.cy,r0:d,r:f,startAngle:h,endAngle:-n[g].coord*u,clockwise:p},silent:!0})),h=-n[g].coord*u}for(g=0;g<c.length;g++)this.group.add(r.mergePath(c[g],{style:i.defaults({fill:A[g%A.length]},s.getAreaStyle()),silent:!0}))}}});t.exports=h},WOl7:function(t,e,n){var i=n("A5tq"),r=n("7iGl"),o=n("GhzX").retrieveRawValue;t.exports=function(t,e){var n=e.getModel("aria");if(n.get("show"))if(n.get("description"))t.setAttribute("aria-label",n.get("description"));else{var a=0;e.eachSeries(function(t,e){++a},this);var s,A=n.get("data.maxCount")||10,l=n.get("series.maxCount")||10,c=Math.min(a,l);if(!(a<1)){var u=function(){var t=e.getModel("title").option;return t&&t.length&&(t=t[0]),t&&t.text}();s=u?d(f("general.withTitle"),{title:u}):f("general.withoutTitle");var h=[];s+=d(f(a>1?"series.multiple.prefix":"series.single.prefix"),{seriesCount:a}),e.eachSeries(function(t,e){if(e<c){var n,i=t.get("name"),s="series."+(a>1?"multiple":"single")+".";n=d(n=f(i?s+"withName":s+"withoutName"),{seriesId:t.seriesIndex,seriesName:t.get("name"),seriesType:(v=t.subType,r.series.typeNames[v]||"鑷畾涔夊浘")});var l=t.getData();window.data=l,l.count()>A?n+=d(f("data.partialData"),{displayCnt:A}):n+=f("data.allData");for(var u=[],p=0;p<l.count();p++)if(p<A){var g=l.getName(p),m=o(l,p);u.push(d(f(g?"data.withName":"data.withoutName"),{name:g,value:m}))}n+=u.join(f("data.separator.middle"))+f("data.separator.end"),h.push(n)}var v}),s+=h.join(f("series.multiple.separator.middle"))+f("series.multiple.separator.end"),t.setAttribute("aria-label",s)}}function d(t,e){if("string"!=typeof t)return t;var n=t;return i.each(e,function(t,e){n=n.replace(new RegExp("\\{\\s*"+e+"\\s*\\}","g"),t)}),n}function f(t){var e=n.get(t);if(null==e){for(var i=t.split("."),o=r.aria,a=0;a<i.length;++a)o=o[i[a]];return o}return e}}},Wksv:function(t,e){var n=Math.log(2);function i(t,e,r,o,a,s){var A=o+"-"+a,l=t.length;if(s.hasOwnProperty(A))return s[A];if(1===e){var c=Math.round(Math.log((1<<l)-1&~a)/n);return t[r][c]}for(var u=o|1<<r,h=r+1;o&1<<h;)h++;for(var d=0,f=0,p=0;f<l;f++){var g=1<<f;g&a||(d+=(p%2?-1:1)*t[r][f]*i(t,e-1,h,u,a|g,s),p++)}return s[A]=d,d}e.buildTransformer=function(t,e){var n=[[t[0],t[1],1,0,0,0,-e[0]*t[0],-e[0]*t[1]],[0,0,0,t[0],t[1],1,-e[1]*t[0],-e[1]*t[1]],[t[2],t[3],1,0,0,0,-e[2]*t[2],-e[2]*t[3]],[0,0,0,t[2],t[3],1,-e[3]*t[2],-e[3]*t[3]],[t[4],t[5],1,0,0,0,-e[4]*t[4],-e[4]*t[5]],[0,0,0,t[4],t[5],1,-e[5]*t[4],-e[5]*t[5]],[t[6],t[7],1,0,0,0,-e[6]*t[6],-e[6]*t[7]],[0,0,0,t[6],t[7],1,-e[7]*t[6],-e[7]*t[7]]],r={},o=i(n,8,0,0,0,r);if(0!==o){for(var a=[],s=0;s<8;s++)for(var A=0;A<8;A++)null==a[A]&&(a[A]=0),a[A]+=((s+A)%2?-1:1)*i(n,7,0===s?1:0,1<<s,1<<A,r)/o*e[s];return function(t,e,n){var i=e*a[6]+n*a[7]+1;t[0]=(e*a[0]+n*a[1]+a[2])/i,t[1]=(e*a[3]+n*a[4]+a[5])/i}}}},"WmT+":function(t,e,n){var i=n("loyO");n("15y3"),n("qHUL"),i.registerPreprocessor(function(t){t.markArea=t.markArea||{}})},WwqU:function(t,e,n){var i=n("AgKT").forceLayout,r=n("80oK").simpleLayout,o=n("lkON").circularLayout,a=n("w9uD").linearMap,s=n("lbYD"),A=n("A5tq"),l=n("pLcR").getCurvenessForEdge;t.exports=function(t){t.eachSeriesByType("graph",function(t){if(!(v=t.coordinateSystem)||"view"===v.type)if("force"===t.get("layout")){var e=t.preservedPoints||{},n=t.getGraph(),c=n.data,u=n.edgeData,h=t.getModel("force"),d=h.get("initLayout");t.preservedPoints?c.each(function(t){var n=c.getId(t);c.setItemLayout(t,e[n]||[NaN,NaN])}):d&&"none"!==d?"circular"===d&&o(t,"value"):r(t);var f=c.getDataExtent("value"),p=u.getDataExtent("value"),g=h.get("repulsion"),m=h.get("edgeLength");A.isArray(g)||(g=[g,g]),A.isArray(m)||(m=[m,m]),m=[m[1],m[0]];var v,y=c.mapArray("value",function(t,e){var n=c.getItemLayout(e),i=a(t,f,g);return isNaN(i)&&(i=(g[0]+g[1])/2),{w:i,rep:i,fixed:c.getItemModel(e).get("fixed"),p:!n||isNaN(n[0])||isNaN(n[1])?null:n}}),w=u.mapArray("value",function(e,i){var r=n.getEdgeByIndex(i),o=a(e,p,m);isNaN(o)&&(o=(m[0]+m[1])/2);var s=r.getModel(),c=A.retrieve3(s.get("lineStyle.curveness"),-l(r,t,i,!0),0);return{n1:y[r.node1.dataIndex],n2:y[r.node2.dataIndex],d:o,curveness:c,ignoreForceLayout:s.get("ignoreForceLayout")}}),x=(v=t.coordinateSystem).getBoundingRect(),B=i(y,w,{rect:x,gravity:h.get("gravity"),friction:h.get("friction")}),b=B.step;B.step=function(t){for(var i=0,r=y.length;i<r;i++)y[i].fixed&&s.copy(y[i].p,n.getNodeByIndex(i).getLayout());b(function(i,r,o){for(var a=0,A=i.length;a<A;a++)i[a].fixed||n.getNodeByIndex(a).setLayout(i[a].p),e[c.getId(a)]=i[a].p;for(a=0,A=r.length;a<A;a++){var l=r[a],u=n.getEdgeByIndex(a),h=l.n1.p,d=l.n2.p,f=u.getLayout();(f=f?f.slice():[])[0]=f[0]||[],f[1]=f[1]||[],s.copy(f[0],h),s.copy(f[1],d),+l.curveness&&(f[2]=[(h[0]+d[0])/2-(h[1]-d[1])*l.curveness,(h[1]+d[1])/2-(d[0]-h[0])*l.curveness]),u.setLayout(f)}t&&t(o)})},t.forceLayout=B,t.preservedPoints=e,B.step()}else t.forceLayout=null})}},"X/H0":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("sutA"),a=n("SDZ1"),s=n("vuYU"),A=n("jSer"),l=n("65+t"),c=n("w9uD"),u=s.mapVisual,h=s.eachVisual,d=r.isArray,f=r.each,p=c.asc,g=c.linearMap,m=r.noop,v=i.extendComponentModel({type:"visualMap",dependencies:["series"],stateList:["inRange","outOfRange"],replacableOptionKeys:["inRange","outOfRange","target","controller","color"],dataBound:[-1/0,1/0],layoutMode:{type:"box",ignoreSize:!0},defaultOption:{show:!0,zlevel:0,z:4,seriesIndex:"all",min:0,max:200,dimension:null,inRange:null,outOfRange:null,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:"vertical",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",contentColor:"#5793f3",inactiveColor:"#aaa",borderWidth:0,padding:5,textGap:10,precision:0,color:null,formatter:null,text:null,textStyle:{color:"#333"}},init:function(t,e,n){this._dataExtent,this.targetVisuals={},this.controllerVisuals={},this.textStyleModel,this.itemSize,this.mergeDefaultAndTheme(t,n)},optionUpdated:function(t,e){var n=this.option;o.canvasSupported||(n.realtime=!1),!e&&A.replaceVisualOption(n,t,this.replacableOptionKeys),this.textStyleModel=this.getModel("textStyle"),this.resetItemSize(),this.completeVisualOption()},resetVisual:function(t){var e=this.stateList;t=r.bind(t,this),this.controllerVisuals=A.createVisualMappings(this.option.controller,e,t),this.targetVisuals=A.createVisualMappings(this.option.target,e,t)},getTargetSeriesIndices:function(){var t=this.option.seriesIndex,e=[];return null==t||"all"===t?this.ecModel.eachSeries(function(t,n){e.push(n)}):e=l.normalizeToArray(t),e},eachTargetSeries:function(t,e){r.each(this.getTargetSeriesIndices(),function(n){t.call(e,this.ecModel.getSeriesByIndex(n))},this)},isTargetSeries:function(t){var e=!1;return this.eachTargetSeries(function(n){n===t&&(e=!0)}),e},formatValueText:function(t,e,n){var i,o,a=this.option,s=a.precision,A=this.dataBound,l=a.formatter;return n=n||["<",">"],r.isArray(t)&&(t=t.slice(),i=!0),o=e?t:i?[c(t[0]),c(t[1])]:c(t),r.isString(l)?l.replace("{value}",i?o[0]:o).replace("{value2}",i?o[1]:o):r.isFunction(l)?i?l(t[0],t[1]):l(t):i?t[0]===A[0]?n[0]+" "+o[1]:t[1]===A[1]?n[1]+" "+o[0]:o[0]+" - "+o[1]:o;function c(t){return t===A[0]?"min":t===A[1]?"max":(+t).toFixed(Math.min(s,20))}},resetExtent:function(){var t=this.option,e=p([t.min,t.max]);this._dataExtent=e},getDataDimension:function(t){var e=this.option.dimension,n=t.dimensions;if(null!=e||n.length){if(null!=e)return t.getDimension(e);for(var i=t.dimensions,r=i.length-1;r>=0;r--){var o=i[r];if(!t.getDimensionInfo(o).isCalculationCoord)return o}}},getExtent:function(){return this._dataExtent.slice()},completeVisualOption:function(){var t=this.ecModel,e=this.option,n={inRange:e.inRange,outOfRange:e.outOfRange},i=e.target||(e.target={}),o=e.controller||(e.controller={});r.merge(i,n),r.merge(o,n);var A=this.isCategory();function l(n){d(e.color)&&!n.inRange&&(n.inRange={color:e.color.slice().reverse()}),n.inRange=n.inRange||{color:t.get("gradientColor")},f(this.stateList,function(t){var e=n[t];if(r.isString(e)){var i=a.get(e,"active",A);i?(n[t]={},n[t][e]=i):delete n[t]}},this)}l.call(this,i),l.call(this,o),function(t,e,n){var i=t[e],r=t[n];i&&!r&&(r=t[n]={},f(i,function(t,e){if(s.isValidType(e)){var n=a.get(e,"inactive",A);null!=n&&(r[e]=n,"color"!==e||r.hasOwnProperty("opacity")||r.hasOwnProperty("colorAlpha")||(r.opacity=[0,0]))}}))}.call(this,i,"inRange","outOfRange"),function(t){var e=(t.inRange||{}).symbol||(t.outOfRange||{}).symbol,n=(t.inRange||{}).symbolSize||(t.outOfRange||{}).symbolSize,i=this.get("inactiveColor");f(this.stateList,function(o){var a=this.itemSize,s=t[o];s||(s=t[o]={color:A?i:[i]}),null==s.symbol&&(s.symbol=e&&r.clone(e)||(A?"roundRect":["roundRect"])),null==s.symbolSize&&(s.symbolSize=n&&r.clone(n)||(A?a[0]:[a[0],a[0]])),s.symbol=u(s.symbol,function(t){return"none"===t||"square"===t?"roundRect":t});var l=s.symbolSize;if(null!=l){var c=-1/0;h(l,function(t){t>c&&(c=t)}),s.symbolSize=u(l,function(t){return g(t,[0,c],[0,a[0]],!0)})}},this)}.call(this,o)},resetItemSize:function(){this.itemSize=[parseFloat(this.get("itemWidth")),parseFloat(this.get("itemHeight"))]},isCategory:function(){return!!this.option.categories},setSelected:m,getValueState:m,getVisualMeta:m});t.exports=v},X8EE:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("cLid"),a=n("gj94"),s=n("UfK9"),A=n("SJVT"),l=A.rectCoordAxisBuildSplitArea,c=A.rectCoordAxisHandleRemove,u=["axisLine","axisTickLabel","axisName"],h=["splitArea","splitLine","minorSplitLine"],d=a.extend({type:"cartesianAxis",axisPointerClass:"CartesianAxisPointer",render:function(t,e,n,a){this.group.removeAll();var A=this._axisGroup;if(this._axisGroup=new r.Group,this.group.add(this._axisGroup),t.get("show")){var l=t.getCoordSysModel(),c=s.layout(l,t),f=new o(t,c);i.each(u,f.add,f),this._axisGroup.add(f.getGroup()),i.each(h,function(e){t.get(e+".show")&&this["_"+e](t,l)},this),r.groupTransition(A,this._axisGroup,t),d.superCall(this,"render",t,e,n,a)}},remove:function(){c(this)},_splitLine:function(t,e){var n=t.axis;if(!n.scale.isBlank()){var o=t.getModel("splitLine"),a=o.getModel("lineStyle"),s=a.get("color");s=i.isArray(s)?s:[s];for(var A=e.coordinateSystem.getRect(),l=n.isHorizontal(),c=0,u=n.getTicksCoords({tickModel:o}),h=[],d=[],f=a.getLineStyle(),p=0;p<u.length;p++){var g=n.toGlobalCoord(u[p].coord);l?(h[0]=g,h[1]=A.y,d[0]=g,d[1]=A.y+A.height):(h[0]=A.x,h[1]=g,d[0]=A.x+A.width,d[1]=g);var m=c++%s.length,v=u[p].tickValue;this._axisGroup.add(new r.Line({anid:null!=v?"line_"+u[p].tickValue:null,subPixelOptimize:!0,shape:{x1:h[0],y1:h[1],x2:d[0],y2:d[1]},style:i.defaults({stroke:s[m]},f),silent:!0}))}}},_minorSplitLine:function(t,e){var n=t.axis,i=t.getModel("minorSplitLine").getModel("lineStyle"),o=e.coordinateSystem.getRect(),a=n.isHorizontal(),s=n.getMinorTicksCoords();if(s.length)for(var A=[],l=[],c=i.getLineStyle(),u=0;u<s.length;u++)for(var h=0;h<s[u].length;h++){var d=n.toGlobalCoord(s[u][h].coord);a?(A[0]=d,A[1]=o.y,l[0]=d,l[1]=o.y+o.height):(A[0]=o.x,A[1]=d,l[0]=o.x+o.width,l[1]=d),this._axisGroup.add(new r.Line({anid:"minor_line_"+s[u][h].tickValue,subPixelOptimize:!0,shape:{x1:A[0],y1:A[1],x2:l[0],y2:l[1]},style:c,silent:!0}))}},_splitArea:function(t,e){l(this,this._axisGroup,t,e)}});d.extend({type:"xAxis"}),d.extend({type:"yAxis"})},XBB0:function(t,e,n){var i=n("A5tq"),r=n("nWxm"),o=n("/A6Y"),a=n("vvOW").onIrrelevantElement,s=n("bDs9"),A=n("llN/"),l=n("5NhH").getUID,c=n("A9v9");function u(t){var e=t.getItemStyle(),n=t.get("areaColor");return null!=n&&(e.fill=n),e}function h(t,e){e.eachChild(function(e){i.each(e.__regions,function(n){e.trigger(t.isSelected(n.name)?"emphasis":"normal")})})}function d(t,e){var n=new s.Group;this.uid=l("ec_map_draw"),this._controller=new r(t.getZr()),this._controllerHost={target:e?n:null},this.group=n,this._updateGroup=e,this._mouseDownFlag,this._mapName,this._initialized,n.add(this._regionsGroup=new s.Group),n.add(this._backgroundGroup=new s.Group)}d.prototype={constructor:d,draw:function(t,e,n,r,o){var a="geo"===t.mainType,A=t.getData&&t.getData();a&&e.eachComponent({mainType:"series",subType:"map"},function(e){A||e.getHostGeoModel()!==t||(A=e.getData())});var l=t.coordinateSystem;this._updateBackground(l);var d,f=this._regionsGroup,p=this.group,g=l.getTransformInfo(),m=!f.childAt(0)||o;if(m)p.transform=g.roamTransform,p.decomposeTransform(),p.dirty();else{var v=new c;v.transform=g.roamTransform,v.decomposeTransform();var y={scale:v.scale,position:v.position};d=v.scale,s.updateProps(p,y,t)}var w=g.rawScale,x=g.rawPosition;f.removeAll();var B=["itemStyle"],b=["emphasis","itemStyle"],C=["label"],_=["emphasis","label"],S=i.createHashMap();i.each(l.regions,function(e){var n=S.get(e.name)||S.set(e.name,new s.Group),r=new s.CompoundPath({segmentIgnoreThreshold:1,shape:{paths:[]}});n.add(r);var o,l=(O=t.getRegionModel(e.name)||t).getModel(B),c=O.getModel(b),h=u(l),g=u(c),v=O.getModel(C),y=O.getModel(_);if(A){o=A.indexOfName(e.name);var I=A.getItemVisual(o,"color",!0);I&&(h.fill=I)}var T=function(t){return[t[0]*w[0]+x[0],t[1]*w[1]+x[1]]};i.each(e.geometries,function(t){if("polygon"===t.type){for(var e=[],n=0;n<t.exterior.length;++n)e.push(T(t.exterior[n]));r.shape.paths.push(new s.Polygon({segmentIgnoreThreshold:1,shape:{points:e}}));for(n=0;n<(t.interiors?t.interiors.length:0);++n){for(var i=t.interiors[n],o=(e=[],0);o<i.length;++o)e.push(T(i[o]));r.shape.paths.push(new s.Polygon({segmentIgnoreThreshold:1,shape:{points:e}}))}}}),r.setStyle(h),r.style.strokeNoScale=!0,r.culling=!0;var M=v.get("show"),Q=y.get("show"),F=A&&isNaN(A.get(A.mapDimension("value"),o)),k=A&&A.getItemLayout(o);if(a||F&&(M||Q)||k&&k.showLabel){var D,U=a?e.name:o;(!A||o>=0)&&(D=t);var E=new s.Text({position:T(e.center.slice()),scale:[1/p.scale[0],1/p.scale[1]],z2:10,silent:!0});if(s.setLabelStyle(E.style,E.hoverStyle={},v,y,{labelFetcher:D,labelDataIndex:U,defaultText:e.name,useInsideStyle:!1},{textAlign:"center",textVerticalAlign:"middle"}),!m){var L=[1/d[0],1/d[1]];s.updateProps(E,{scale:L},t)}n.add(E)}if(A)A.setItemGraphicEl(o,n);else{var O=t.getRegionModel(e.name);r.eventData={componentType:"geo",componentIndex:t.componentIndex,geoIndex:t.componentIndex,name:e.name,region:O&&O.option||{}}}(n.__regions||(n.__regions=[])).push(e),n.highDownSilentOnTouch=!!t.get("selectedMode"),s.setHoverStyle(n,g),f.add(n)}),this._updateController(t,e,n),function(t,e,n,r,o){n.off("click"),n.off("mousedown"),e.get("selectedMode")&&(n.on("mousedown",function(){t._mouseDownFlag=!0}),n.on("click",function(a){if(t._mouseDownFlag){t._mouseDownFlag=!1;for(var s=a.target;!s.__regions;)s=s.parent;if(s){var A={type:("geo"===e.mainType?"geo":"map")+"ToggleSelect",batch:i.map(s.__regions,function(t){return{name:t.name,from:o.uid}})};A[e.mainType+"Id"]=e.id,r.dispatchAction(A),h(e,n)}}}))}(this,t,f,n,r),h(t,f)},remove:function(){this._regionsGroup.removeAll(),this._backgroundGroup.removeAll(),this._controller.dispose(),this._mapName&&A.removeGraphic(this._mapName,this.uid),this._mapName=null,this._controllerHost={}},_updateBackground:function(t){var e=t.map;this._mapName!==e&&i.each(A.makeGraphic(e,this.uid),function(t){this._backgroundGroup.add(t)},this),this._mapName=e},_updateController:function(t,e,n){var r=t.coordinateSystem,s=this._controller,A=this._controllerHost;A.zoomLimit=t.get("scaleLimit"),A.zoom=r.getZoom(),s.enable(t.get("roam")||!1);var l=t.mainType;function c(){var e={type:"geoRoam",componentType:l};return e[l+"Id"]=t.id,e}s.off("pan").on("pan",function(t){this._mouseDownFlag=!1,o.updateViewOnPan(A,t.dx,t.dy),n.dispatchAction(i.extend(c(),{dx:t.dx,dy:t.dy}))},this),s.off("zoom").on("zoom",function(t){if(this._mouseDownFlag=!1,o.updateViewOnZoom(A,t.scale,t.originX,t.originY),n.dispatchAction(i.extend(c(),{zoom:t.scale,originX:t.originX,originY:t.originY})),this._updateGroup){var e=this.group.scale;this._regionsGroup.traverse(function(t){"text"===t.type&&t.attr("scale",[1/e[0],1/e[1]])})}},this),s.setPointerChecker(function(e,i,o){return r.getViewRectAfterRoam().contain(i,o)&&!a(e,n,t)})}};var f=d;t.exports=f},XJ9t:function(t,e,n){var i=n("A5tq"),r=n("kCsp"),o=n("eII0"),a=n("r8bK"),s=n("K3bJ"),A=n("rhmo");A.getLayoutRect;e.getLayoutRect=A.getLayoutRect;var l=n("fxHw"),c=l.enableDataStack,u=l.isDimensionStacked,h=l.getStackedDimension,d=n("MCZU");e.completeDimensions=d;var f=n("quuH");e.createDimensions=f;var p=n("f+YC");e.createSymbol=p.createSymbol;var g={isDimensionStacked:u,enableDataStack:c,getStackedDimension:h};e.createList=function(t){return r(t.getSource(),t)},e.dataStack=g,e.createScale=function(t,e){var n=e;s.isInstance(e)||(n=new s(e),i.mixin(n,a));var r=o.createScaleByModel(n);return r.setExtent(t[0],t[1]),o.niceScaleExtent(r,n),r},e.mixinAxisModelCommonMethods=function(t){i.mixin(t,a)}},Xczu:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("jSer"),a=n("vuYU"),s=i.PRIORITY.VISUAL.COMPONENT;function A(t,e,n,i){for(var r=e.targetVisuals[i],o=a.prepareVisualTypes(r),s={color:t.getData().getVisual("color")},A=0,l=o.length;A<l;A++){var c=o[A],u=r["opacity"===c?"__alphaForOpacity":c];u&&u.applyVisual(n,h,d)}return s.color;function h(t){return s[t]}function d(t,e){s[t]=e}}i.registerVisual(s,{createOnAllSeries:!0,reset:function(t,e){var n=[];return e.eachComponent("visualMap",function(e){var i=t.pipelineContext;!e.isTargetSeries(t)||i&&i.large||n.push(o.incrementalApplyVisual(e.stateList,e.targetVisuals,r.bind(e.getValueState,e),e.getDataDimension(t.getData())))}),n}}),i.registerVisual(s,{createOnAllSeries:!0,reset:function(t,e){var n=t.getData(),i=[];e.eachComponent("visualMap",function(e){if(e.isTargetSeries(t)){var o=e.getVisualMeta(r.bind(A,null,t,e))||{stops:[],outerColors:[]},a=e.getDataDimension(n),s=n.getDimensionInfo(a);null!=s&&(o.dimension=s.index,i.push(o))}}),t.getData().setVisual("visualMeta",i)}})},XrgS:function(t,e,n){var i=n("A5tq"),r=i.createHashMap,o=i.each;function a(t){o(t,function(e,n){var i=[],r=[NaN,NaN],o=[e.stackResultDimension,e.stackedOverDimension],a=e.data,s=e.isStackedByIndex,A=a.map(o,function(o,A,l){var c,u,h=a.get(e.stackedDimension,l);if(isNaN(h))return r;s?u=a.getRawIndex(l):c=a.get(e.stackedByDimension,l);for(var d=NaN,f=n-1;f>=0;f--){var p=t[f];if(s||(u=p.data.rawIndexOf(p.stackedByDimension,c)),u>=0){var g=p.data.getByRawIndex(p.stackResultDimension,u);if(h>=0&&g>0||h<=0&&g<0){h+=g,d=g;break}}}return i[0]=h,i[1]=d,i});a.hostModel.setData(A),e.data=A})}t.exports=function(t){var e=r();t.eachSeries(function(t){var n=t.get("stack");if(n){var i=e.get(n)||e.set(n,[]),r=t.getData(),o={stackResultDimension:r.getCalculationInfo("stackResultDimension"),stackedOverDimension:r.getCalculationInfo("stackedOverDimension"),stackedDimension:r.getCalculationInfo("stackedDimension"),stackedByDimension:r.getCalculationInfo("stackedByDimension"),isStackedByIndex:r.getCalculationInfo("isStackedByIndex"),data:r,seriesModel:t};if(!o.stackedDimension||!o.isStackedByIndex&&!o.stackedByDimension)return;i.length&&r.setCalculationInfo("stackedOnSeries",i[i.length-1].seriesModel),i.push(o)}}),e.each(a)}},XsB2:function(t,e,n){var i=n("loyO"),r=n("v9Fq"),o=i.extendComponentView({type:"axisPointer",render:function(t,e,n){var i=e.getComponent("tooltip"),o=t.get("triggerOn")||i&&i.get("triggerOn")||"mousemove|click";r.register("axisPointer",n,function(t,e,n){"none"!==o&&("leave"===t||o.indexOf(t)>=0)&&n({type:"updateAxisPointer",currTrigger:t,x:e&&e.offsetX,y:e&&e.offsetY})})},remove:function(t,e){r.unregister(e.getZr(),"axisPointer"),o.superApply(this._model,"remove",arguments)},dispose:function(t,e){r.unregister("axisPointer",e),o.superApply(this._model,"dispose",arguments)}}),a=o;t.exports=a},XwP3:function(t,e,n){var i=n("A5tq"),r=n("X/H0"),o=n("w9uD"),a=[20,140],s=r.extend({type:"visualMap.continuous",defaultOption:{align:"auto",calculable:!1,range:null,realtime:!0,itemHeight:null,itemWidth:null,hoverLink:!0,hoverLinkDataSize:null,hoverLinkOnHandle:null},optionUpdated:function(t,e){s.superApply(this,"optionUpdated",arguments),this.resetExtent(),this.resetVisual(function(t){t.mappingMethod="linear",t.dataExtent=this.getExtent()}),this._resetRange()},resetItemSize:function(){s.superApply(this,"resetItemSize",arguments);var t=this.itemSize;"horizontal"===this._orient&&t.reverse(),(null==t[0]||isNaN(t[0]))&&(t[0]=a[0]),(null==t[1]||isNaN(t[1]))&&(t[1]=a[1])},_resetRange:function(){var t=this.getExtent(),e=this.option.range;!e||e.auto?(t.auto=1,this.option.range=t):i.isArray(e)&&(e[0]>e[1]&&e.reverse(),e[0]=Math.max(e[0],t[0]),e[1]=Math.min(e[1],t[1]))},completeVisualOption:function(){r.prototype.completeVisualOption.apply(this,arguments),i.each(this.stateList,function(t){var e=this.option.controller[t].symbolSize;e&&e[0]!==e[1]&&(e[0]=0)},this)},setSelected:function(t){this.option.range=t.slice(),this._resetRange()},getSelected:function(){var t=this.getExtent(),e=o.asc((this.get("range")||[]).slice());return e[0]>t[1]&&(e[0]=t[1]),e[1]>t[1]&&(e[1]=t[1]),e[0]<t[0]&&(e[0]=t[0]),e[1]<t[0]&&(e[1]=t[0]),e},getValueState:function(t){var e=this.option.range,n=this.getExtent();return(e[0]<=n[0]||e[0]<=t)&&(e[1]>=n[1]||t<=e[1])?"inRange":"outOfRange"},findTargetDataIndices:function(t){var e=[];return this.eachTargetSeries(function(n){var i=[],r=n.getData();r.each(this.getDataDimension(r),function(e,n){t[0]<=e&&e<=t[1]&&i.push(n)},this),e.push({seriesId:n.id,dataIndex:i})},this),e},getVisualMeta:function(t){var e=A(this,"outOfRange",this.getExtent()),n=A(this,"inRange",this.option.range.slice()),i=[];function r(e,n){i.push({value:e,color:t(e,n)})}for(var o=0,a=0,s=n.length,l=e.length;a<l&&(!n.length||e[a]<=n[0]);a++)e[a]<n[o]&&r(e[a],"outOfRange");for(var c=1;o<s;o++,c=0)c&&i.length&&r(n[o],"outOfRange"),r(n[o],"inRange");for(c=1;a<l;a++)(!n.length||n[n.length-1]<e[a])&&(c&&(i.length&&r(i[i.length-1].value,"outOfRange"),c=0),r(e[a],"outOfRange"));var u=i.length;return{stops:i,outerColors:[u?i[0].color:"transparent",u?i[u-1].color:"transparent"]}}});function A(t,e,n){if(n[0]===n[1])return n.slice();for(var i=(n[1]-n[0])/200,r=n[0],o=[],a=0;a<=200&&r<n[1];a++)o.push(r),r+=i;return o.push(n[1]),o}var l=s;t.exports=l},XyZZ:function(t,e,n){var i=n("ixaL"),r=n("bDs9"),o=["textStyle","color"],a={getTextColor:function(t){var e=this.ecModel;return this.getShallow("color")||(!t&&e?e.get(o):null)},getFont:function(){return r.getFont({fontStyle:this.getShallow("fontStyle"),fontWeight:this.getShallow("fontWeight"),fontSize:this.getShallow("fontSize"),fontFamily:this.getShallow("fontFamily")},this.ecModel)},getTextRect:function(t){return i.getBoundingRect(t,this.getFont(),this.getShallow("align"),this.getShallow("verticalAlign")||this.getShallow("baseline"),this.getShallow("padding"),this.getShallow("lineHeight"),this.getShallow("rich"),this.getShallow("truncateText"))}};t.exports=a},Y0cd:function(t,e){t.exports=function(t){var e=t.findComponents({mainType:"legend"});e&&e.length&&t.eachSeriesByType("graph",function(t){var n=t.getCategoriesData(),i=t.getGraph().data,r=n.mapArray(n.getName);i.filterSelf(function(t){var n=i.getItemModel(t).getShallow("category");if(null!=n){"number"==typeof n&&(n=r[n]);for(var o=0;o<e.length;o++)if(!e[o].isSelected(n))return!1}return!0})},this)}},Y5hD:function(t,e){t.exports=function(t){var e={};t.eachSeriesByType("graph",function(t){var n=t.getCategoriesData(),i=t.getData(),r={};n.each(function(i){var o=n.getName(i);r["ec-"+o]=i;var a=n.getItemModel(i),s=a.get("itemStyle.color")||t.getColorFromPalette(o,e);n.setItemVisual(i,"color",s);for(var A=["opacity","symbol","symbolSize","symbolKeepAspect"],l=0;l<A.length;l++){var c=a.getShallow(A[l],!0);null!=c&&n.setItemVisual(i,A[l],c)}}),n.count()&&i.each(function(t){var e=i.getItemModel(t).getShallow("category");if(null!=e){"string"==typeof e&&(e=r["ec-"+e]);for(var o=["color","opacity","symbol","symbolSize","symbolKeepAspect"],a=0;a<o.length;a++)null==i.getItemVisual(t,o[a],!0)&&i.setItemVisual(t,o[a],n.getItemVisual(e,o[a]))}})})}},YCGQ:function(t,e){e.eachAfter=function(t,e,n){for(var i,r=[t],o=[];i=r.pop();)if(o.push(i),i.isExpand){var a=i.children;if(a.length)for(var s=0;s<a.length;s++)r.push(a[s])}for(;i=o.pop();)e(i,n)},e.eachBefore=function(t,e){for(var n,i=[t];n=i.pop();)if(e(n),n.isExpand){var r=n.children;if(r.length)for(var o=r.length-1;o>=0;o--)i.push(r[o])}}},YEh7:function(t,e){var n={"鍗楁捣璇稿矝":[32,80],"骞夸笢":[0,-10],"棣欐腐":[10,5],"婢抽棬":[-10,10],"澶╂触":[5,5]};t.exports=function(t,e){if("china"===t){var i=n[e.name];if(i){var r=e.center;r[0]+=i[0]/10.5,r[1]+=-i[1]/14}}}},"YFM+":function(t,e,n){var i=n("loyO"),r=n("1ZnN").updateCenterAndZoom;n("UKT6");i.registerAction({type:"graphRoam",event:"graphRoam",update:"none"},function(t,e){e.eachComponent({mainType:"series",query:t},function(e){var n=e.coordinateSystem,i=r(n,t);e.setCenter&&e.setCenter(i.center),e.setZoom&&e.setZoom(i.zoom)})})},YH1I:function(t,e){var n;n=window,t.exports=function(t,e){if(!t.jWeixin){var n,i={config:"preVerifyJSAPI",onMenuShareTimeline:"menu:share:timeline",onMenuShareAppMessage:"menu:share:appmessage",onMenuShareQQ:"menu:share:qq",onMenuShareWeibo:"menu:share:weiboApp",onMenuShareQZone:"menu:share:QZone",previewImage:"imagePreview",getLocation:"geoLocation",openProductSpecificView:"openProductViewWithPid",addCard:"batchAddCard",openCard:"batchViewCard",chooseWXPay:"getBrandWCPayRequest",openEnterpriseRedPacket:"getRecevieBizHongBaoRequest",startSearchBeacons:"startMonitoringBeacons",stopSearchBeacons:"stopMonitoringBeacons",onSearchBeacons:"onBeaconsInRange",consumeAndShareCard:"consumedShareCard",openAddress:"editAddress"},r=function(){var t={};for(var e in i)t[i[e]]=e;return t}(),o=t.document,a=o.title,s=navigator.userAgent.toLowerCase(),A=navigator.platform.toLowerCase(),l=!(!A.match("mac")&&!A.match("win")),c=-1!=s.indexOf("wxdebugger"),u=-1!=s.indexOf("micromessenger"),h=-1!=s.indexOf("android"),d=-1!=s.indexOf("iphone")||-1!=s.indexOf("ipad"),f=(n=s.match(/micromessenger\/(\d+\.\d+\.\d+)/)||s.match(/micromessenger\/(\d+\.\d+)/))?n[1]:"",p={initStartTime:k(),initEndTime:0,preVerifyStartTime:0,preVerifyEndTime:0},g={version:1,appId:"",initTime:0,preVerifyTime:0,networkType:"",isPreVerifyOk:1,systemType:d?1:h?2:-1,clientVersion:f,url:encodeURIComponent(location.href)},m={},v={_completes:[]},y={state:0,data:{}};D(function(){p.initEndTime=k()});var w=!1,x=[],B={config:function(e){F("config",m=e);var n=!1!==m.check;D(function(){if(n)_(i.config,{verifyJsApiList:Q(m.jsApiList),verifyOpenTagList:Q(m.openTagList)},function(){v._complete=function(t){p.preVerifyEndTime=k(),y.state=1,y.data=t},v.success=function(t){g.isPreVerifyOk=0},v.fail=function(t){v._fail?v._fail(t):y.state=-1};var t=v._completes;return t.push(function(){!function(){if(!(l||c||m.debug||f<"6.0.2"||g.systemType<0)){var t=new Image;g.appId=m.appId,g.initTime=p.initEndTime-p.initStartTime,g.preVerifyTime=p.preVerifyEndTime-p.preVerifyStartTime,B.getNetworkType({isInnerInvoke:!0,success:function(e){g.networkType=e.networkType;var n="https://open.weixin.qq.com/sdk/report?v="+g.version+"&o="+g.isPreVerifyOk+"&s="+g.systemType+"&c="+g.clientVersion+"&a="+g.appId+"&n="+g.networkType+"&i="+g.initTime+"&p="+g.preVerifyTime+"&u="+g.url;t.src=n}})}}()}),v.complete=function(e){for(var n=0,i=t.length;n<i;++n)t[n]();v._completes=[]},v}()),p.preVerifyStartTime=k();else{y.state=1;for(var t=v._completes,e=0,r=t.length;e<r;++e)t[e]();v._completes=[]}}),B.invoke||(B.invoke=function(e,n,i){t.WeixinJSBridge&&WeixinJSBridge.invoke(e,I(n),i)},B.on=function(e,n){t.WeixinJSBridge&&WeixinJSBridge.on(e,n)})},ready:function(t){0!=y.state?t():(v._completes.push(t),!u&&m.debug&&t())},error:function(t){f<"6.0.2"||(-1==y.state?t(y.data):v._fail=t)},checkJsApi:function(t){_("checkJsApi",{jsApiList:Q(t.jsApiList)},(t._complete=function(t){if(h){var e=t.checkResult;e&&(t.checkResult=JSON.parse(e))}t=function(t){var e=t.checkResult;for(var n in e){var i=r[n];i&&(e[i]=e[n],delete e[n])}return t}(t)},t))},onMenuShareTimeline:function(t){S(i.onMenuShareTimeline,{complete:function(){_("shareTimeline",{title:t.title||a,desc:t.title||a,img_url:t.imgUrl||"",link:t.link||location.href,type:t.type||"link",data_url:t.dataUrl||""},t)}},t)},onMenuShareAppMessage:function(t){S(i.onMenuShareAppMessage,{complete:function(e){"favorite"===e.scene?_("sendAppMessage",{title:t.title||a,desc:t.desc||"",link:t.link||location.href,img_url:t.imgUrl||"",type:t.type||"link",data_url:t.dataUrl||""}):_("sendAppMessage",{title:t.title||a,desc:t.desc||"",link:t.link||location.href,img_url:t.imgUrl||"",type:t.type||"link",data_url:t.dataUrl||""},t)}},t)},onMenuShareQQ:function(t){S(i.onMenuShareQQ,{complete:function(){_("shareQQ",{title:t.title||a,desc:t.desc||"",img_url:t.imgUrl||"",link:t.link||location.href},t)}},t)},onMenuShareWeibo:function(t){S(i.onMenuShareWeibo,{complete:function(){_("shareWeiboApp",{title:t.title||a,desc:t.desc||"",img_url:t.imgUrl||"",link:t.link||location.href},t)}},t)},onMenuShareQZone:function(t){S(i.onMenuShareQZone,{complete:function(){_("shareQZone",{title:t.title||a,desc:t.desc||"",img_url:t.imgUrl||"",link:t.link||location.href},t)}},t)},updateTimelineShareData:function(t){_("updateTimelineShareData",{title:t.title,link:t.link,imgUrl:t.imgUrl},t)},updateAppMessageShareData:function(t){_("updateAppMessageShareData",{title:t.title,desc:t.desc,link:t.link,imgUrl:t.imgUrl},t)},startRecord:function(t){_("startRecord",{},t)},stopRecord:function(t){_("stopRecord",{},t)},onVoiceRecordEnd:function(t){S("onVoiceRecordEnd",t)},playVoice:function(t){_("playVoice",{localId:t.localId},t)},pauseVoice:function(t){_("pauseVoice",{localId:t.localId},t)},stopVoice:function(t){_("stopVoice",{localId:t.localId},t)},onVoicePlayEnd:function(t){S("onVoicePlayEnd",t)},uploadVoice:function(t){_("uploadVoice",{localId:t.localId,isShowProgressTips:0==t.isShowProgressTips?0:1},t)},downloadVoice:function(t){_("downloadVoice",{serverId:t.serverId,isShowProgressTips:0==t.isShowProgressTips?0:1},t)},translateVoice:function(t){_("translateVoice",{localId:t.localId,isShowProgressTips:0==t.isShowProgressTips?0:1},t)},chooseImage:function(t){_("chooseImage",{scene:"1|2",count:t.count||9,sizeType:t.sizeType||["original","compressed"],sourceType:t.sourceType||["album","camera"]},(t._complete=function(t){if(h){var e=t.localIds;try{e&&(t.localIds=JSON.parse(e))}catch(t){}}},t))},getLocation:function(t){},previewImage:function(t){_(i.previewImage,{current:t.current,urls:t.urls},t)},uploadImage:function(t){_("uploadImage",{localId:t.localId,isShowProgressTips:0==t.isShowProgressTips?0:1},t)},downloadImage:function(t){_("downloadImage",{serverId:t.serverId,isShowProgressTips:0==t.isShowProgressTips?0:1},t)},getLocalImgData:function(t){!1===w?(w=!0,_("getLocalImgData",{localId:t.localId},(t._complete=function(t){if(w=!1,0<x.length){var e=x.shift();wx.getLocalImgData(e)}},t))):x.push(t)},getNetworkType:function(t){_("getNetworkType",{},(t._complete=function(t){t=function(t){var e=t.errMsg;t.errMsg="getNetworkType:ok";var n=t.subtype;if(delete t.subtype,n)t.networkType=n;else{var i=e.indexOf(":"),r=e.substring(i+1);switch(r){case"wifi":case"edge":case"wwan":t.networkType=r;break;default:t.errMsg="getNetworkType:fail"}}return t}(t)},t))},openLocation:function(t){_("openLocation",{latitude:t.latitude,longitude:t.longitude,name:t.name||"",address:t.address||"",scale:t.scale||28,infoUrl:t.infoUrl||""},t)},getLocation:function(t){_(i.getLocation,{type:(t=t||{}).type||"wgs84"},(t._complete=function(t){delete t.type},t))},hideOptionMenu:function(t){_("hideOptionMenu",{},t)},showOptionMenu:function(t){_("showOptionMenu",{},t)},closeWindow:function(t){_("closeWindow",{},t=t||{})},hideMenuItems:function(t){_("hideMenuItems",{menuList:t.menuList},t)},showMenuItems:function(t){_("showMenuItems",{menuList:t.menuList},t)},hideAllNonBaseMenuItem:function(t){_("hideAllNonBaseMenuItem",{},t)},showAllNonBaseMenuItem:function(t){_("showAllNonBaseMenuItem",{},t)},scanQRCode:function(t){_("scanQRCode",{needResult:(t=t||{}).needResult||0,scanType:t.scanType||["qrCode","barCode"]},(t._complete=function(t){if(d){var e=t.resultStr;if(e){var n=JSON.parse(e);t.resultStr=n&&n.scan_code&&n.scan_code.scan_result}}},t))},openAddress:function(t){_(i.openAddress,{},(t._complete=function(t){t=function(t){return t.postalCode=t.addressPostalCode,delete t.addressPostalCode,t.provinceName=t.proviceFirstStageName,delete t.proviceFirstStageName,t.cityName=t.addressCitySecondStageName,delete t.addressCitySecondStageName,t.countryName=t.addressCountiesThirdStageName,delete t.addressCountiesThirdStageName,t.detailInfo=t.addressDetailInfo,delete t.addressDetailInfo,t}(t)},t))},openProductSpecificView:function(t){_(i.openProductSpecificView,{pid:t.productId,view_type:t.viewType||0,ext_info:t.extInfo},t)},addCard:function(t){for(var e=t.cardList,n=[],r=0,o=e.length;r<o;++r){var a=e[r],s={card_id:a.cardId,card_ext:a.cardExt};n.push(s)}_(i.addCard,{card_list:n},(t._complete=function(t){var e=t.card_list;if(e){for(var n=0,i=(e=JSON.parse(e)).length;n<i;++n){var r=e[n];r.cardId=r.card_id,r.cardExt=r.card_ext,r.isSuccess=!!r.is_succ,delete r.card_id,delete r.card_ext,delete r.is_succ}t.cardList=e,delete t.card_list}},t))},chooseCard:function(t){_("chooseCard",{app_id:m.appId,location_id:t.shopId||"",sign_type:t.signType||"SHA1",card_id:t.cardId||"",card_type:t.cardType||"",card_sign:t.cardSign,time_stamp:t.timestamp+"",nonce_str:t.nonceStr},(t._complete=function(t){t.cardList=t.choose_card_info,delete t.choose_card_info},t))},openCard:function(t){for(var e=t.cardList,n=[],r=0,o=e.length;r<o;++r){var a=e[r],s={card_id:a.cardId,code:a.code};n.push(s)}_(i.openCard,{card_list:n},t)},consumeAndShareCard:function(t){_(i.consumeAndShareCard,{consumedCardId:t.cardId,consumedCode:t.code},t)},chooseWXPay:function(t){_(i.chooseWXPay,T(t),t)},openEnterpriseRedPacket:function(t){_(i.openEnterpriseRedPacket,T(t),t)},startSearchBeacons:function(t){_(i.startSearchBeacons,{ticket:t.ticket},t)},stopSearchBeacons:function(t){_(i.stopSearchBeacons,{},t)},onSearchBeacons:function(t){S(i.onSearchBeacons,t)},openEnterpriseChat:function(t){_("openEnterpriseChat",{useridlist:t.userIds,chatname:t.groupName},t)},launchMiniProgram:function(t){_("launchMiniProgram",{targetAppId:t.targetAppId,path:function(t){if("string"==typeof t&&0<t.length){var e=t.split("?")[0],n=t.split("?")[1];return e+=".html",void 0!==n?e+"?"+n:e}}(t.path),envVersion:t.envVersion},t)},openBusinessView:function(t){_("openBusinessView",{businessType:t.businessType,queryString:t.queryString||"",envVersion:t.envVersion},(t._complete=function(t){if(h){var e=t.extraData;if(e)try{t.extraData=JSON.parse(e)}catch(e){t.extraData={}}}},t))},miniProgram:{navigateBack:function(t){t=t||{},D(function(){_("invokeMiniProgramAPI",{name:"navigateBack",arg:{delta:t.delta||1}},t)})},navigateTo:function(t){D(function(){_("invokeMiniProgramAPI",{name:"navigateTo",arg:{url:t.url}},t)})},redirectTo:function(t){D(function(){_("invokeMiniProgramAPI",{name:"redirectTo",arg:{url:t.url}},t)})},switchTab:function(t){D(function(){_("invokeMiniProgramAPI",{name:"switchTab",arg:{url:t.url}},t)})},reLaunch:function(t){D(function(){_("invokeMiniProgramAPI",{name:"reLaunch",arg:{url:t.url}},t)})},postMessage:function(t){D(function(){_("invokeMiniProgramAPI",{name:"postMessage",arg:t.data||{}},t)})},getEnv:function(e){D(function(){e({miniprogram:"miniprogram"===t.__wxjs_environment})})}}},b=1,C={};return o.addEventListener("error",function(t){if(!h){var e=t.target,n=e.tagName,i=e.src;if(("IMG"==n||"VIDEO"==n||"AUDIO"==n||"SOURCE"==n)&&-1!=i.indexOf("wxlocalresource://")){t.preventDefault(),t.stopPropagation();var r=e["wx-id"];if(r||(r=b++,e["wx-id"]=r),C[r])return;C[r]=!0,wx.ready(function(){wx.getLocalImgData({localId:i,success:function(t){e.src=t.localData}})})}}},!0),o.addEventListener("load",function(t){if(!h){var e=t.target,n=e.tagName;if(e.src,"IMG"==n||"VIDEO"==n||"AUDIO"==n||"SOURCE"==n){var i=e["wx-id"];i&&(C[i]=!1)}}},!0),e&&(t.wx=t.jWeixin=B),B}function _(e,n,i){t.WeixinJSBridge?WeixinJSBridge.invoke(e,I(n),function(t){M(e,t,i)}):F(e,i)}function S(e,n,i){t.WeixinJSBridge?WeixinJSBridge.on(e,function(t){i&&i.trigger&&i.trigger(t),M(e,t,n)}):F(e,i||n)}function I(t){return(t=t||{}).appId=m.appId,t.verifyAppId=m.appId,t.verifySignType="sha1",t.verifyTimestamp=m.timestamp+"",t.verifyNonceStr=m.nonceStr,t.verifySignature=m.signature,t}function T(t){return{timeStamp:t.timestamp+"",nonceStr:t.nonceStr,package:t.package,paySign:t.paySign,signType:t.signType||"SHA1"}}function M(t,e,n){"openEnterpriseChat"!=t&&"openBusinessView"!==t||(e.errCode=e.err_code),delete e.err_code,delete e.err_desc,delete e.err_detail;var i=e.errMsg;i||(i=e.err_msg,delete e.err_msg,i=function(t,e){var n=t,i=r[n];i&&(n=i);var o="ok";if(e){var a=e.indexOf(":");"confirm"==(o=e.substring(a+1))&&(o="ok"),"failed"==o&&(o="fail"),-1!=o.indexOf("failed_")&&(o=o.substring(7)),-1!=o.indexOf("fail_")&&(o=o.substring(5)),"access denied"!=(o=(o=o.replace(/_/g," ")).toLowerCase())&&"no permission to execute"!=o||(o="permission denied"),"config"==n&&"function not exist"==o&&(o="ok"),""==o&&(o="fail")}return e=n+":"+o}(t,i),e.errMsg=i),(n=n||{})._complete&&(n._complete(e),delete n._complete),i=e.errMsg||"",m.debug&&!n.isInnerInvoke&&alert(JSON.stringify(e));var o=i.indexOf(":");switch(i.substring(o+1)){case"ok":n.success&&n.success(e);break;case"cancel":n.cancel&&n.cancel(e);break;default:n.fail&&n.fail(e)}n.complete&&n.complete(e)}function Q(t){if(t){for(var e=0,n=t.length;e<n;++e){var r=t[e],o=i[r];o&&(t[e]=o)}return t}}function F(t,e){if(!(!m.debug||e&&e.isInnerInvoke)){var n=r[t];n&&(t=n),e&&e._complete&&delete e._complete,console.log('"'+t+'",',e||"")}}function k(){return(new Date).getTime()}function D(e){u&&(t.WeixinJSBridge?e():o.addEventListener&&o.addEventListener("WeixinJSBridgeReady",e,!1))}}(n)},YU4x:function(t,e,n){var i=n("loyO");n("UKT6"),i.registerAction({type:"dragNode",event:"dragnode",update:"update"},function(t,e){e.eachComponent({mainType:"series",subType:"sankey",query:t},function(e){e.setNodePosition(t.dataIndex,[t.localX,t.localY])})})},YjnO:function(t,e){var n=32,i=7;function r(t,e,n,i){var r=e+1;if(r===n)return 1;if(i(t[r++],t[e])<0){for(;r<n&&i(t[r],t[r-1])<0;)r++;!function(t,e,n){n--;for(;e<n;){var i=t[e];t[e++]=t[n],t[n--]=i}}(t,e,r)}else for(;r<n&&i(t[r],t[r-1])>=0;)r++;return r-e}function o(t,e,n,i,r){for(i===e&&i++;i<n;i++){for(var o,a=t[i],s=e,A=i;s<A;)r(a,t[o=s+A>>>1])<0?A=o:s=o+1;var l=i-s;switch(l){case 3:t[s+3]=t[s+2];case 2:t[s+2]=t[s+1];case 1:t[s+1]=t[s];break;default:for(;l>0;)t[s+l]=t[s+l-1],l--}t[s]=a}}function a(t,e,n,i,r,o){var a=0,s=0,A=1;if(o(t,e[n+r])>0){for(s=i-r;A<s&&o(t,e[n+r+A])>0;)a=A,(A=1+(A<<1))<=0&&(A=s);A>s&&(A=s),a+=r,A+=r}else{for(s=r+1;A<s&&o(t,e[n+r-A])<=0;)a=A,(A=1+(A<<1))<=0&&(A=s);A>s&&(A=s);var l=a;a=r-A,A=r-l}for(a++;a<A;){var c=a+(A-a>>>1);o(t,e[n+c])>0?a=c+1:A=c}return A}function s(t,e,n,i,r,o){var a=0,s=0,A=1;if(o(t,e[n+r])<0){for(s=r+1;A<s&&o(t,e[n+r-A])<0;)a=A,(A=1+(A<<1))<=0&&(A=s);A>s&&(A=s);var l=a;a=r-A,A=r-l}else{for(s=i-r;A<s&&o(t,e[n+r+A])>=0;)a=A,(A=1+(A<<1))<=0&&(A=s);A>s&&(A=s),a+=r,A+=r}for(a++;a<A;){var c=a+(A-a>>>1);o(t,e[n+c])<0?A=c:a=c+1}return A}function A(t,e){var n,r,o,A=i,l=0;n=t.length;var c=[];function u(n){var u=r[n],h=o[n],d=r[n+1],f=o[n+1];o[n]=h+f,n===l-3&&(r[n+1]=r[n+2],o[n+1]=o[n+2]),l--;var p=s(t[d],t,u,h,0,e);u+=p,0!==(h-=p)&&0!==(f=a(t[u+h-1],t,d,f,f-1,e))&&(h<=f?function(n,r,o,l){var u=0;for(u=0;u<r;u++)c[u]=t[n+u];var h=0,d=o,f=n;if(t[f++]=t[d++],0==--l){for(u=0;u<r;u++)t[f+u]=c[h+u];return}if(1===r){for(u=0;u<l;u++)t[f+u]=t[d+u];return void(t[f+l]=c[h])}var p,g,m,v=A;for(;;){p=0,g=0,m=!1;do{if(e(t[d],c[h])<0){if(t[f++]=t[d++],g++,p=0,0==--l){m=!0;break}}else if(t[f++]=c[h++],p++,g=0,1==--r){m=!0;break}}while((p|g)<v);if(m)break;do{if(0!==(p=s(t[d],c,h,r,0,e))){for(u=0;u<p;u++)t[f+u]=c[h+u];if(f+=p,h+=p,(r-=p)<=1){m=!0;break}}if(t[f++]=t[d++],0==--l){m=!0;break}if(0!==(g=a(c[h],t,d,l,0,e))){for(u=0;u<g;u++)t[f+u]=t[d+u];if(f+=g,d+=g,0===(l-=g)){m=!0;break}}if(t[f++]=c[h++],1==--r){m=!0;break}v--}while(p>=i||g>=i);if(m)break;v<0&&(v=0),v+=2}if((A=v)<1&&(A=1),1===r){for(u=0;u<l;u++)t[f+u]=t[d+u];t[f+l]=c[h]}else{if(0===r)throw new Error;for(u=0;u<r;u++)t[f+u]=c[h+u]}}(u,h,d,f):function(n,r,o,l){var u=0;for(u=0;u<l;u++)c[u]=t[o+u];var h=n+r-1,d=l-1,f=o+l-1,p=0,g=0;if(t[f--]=t[h--],0==--r){for(p=f-(l-1),u=0;u<l;u++)t[p+u]=c[u];return}if(1===l){for(g=(f-=r)+1,p=(h-=r)+1,u=r-1;u>=0;u--)t[g+u]=t[p+u];return void(t[f]=c[d])}var m=A;for(;;){var v=0,y=0,w=!1;do{if(e(c[d],t[h])<0){if(t[f--]=t[h--],v++,y=0,0==--r){w=!0;break}}else if(t[f--]=c[d--],y++,v=0,1==--l){w=!0;break}}while((v|y)<m);if(w)break;do{if(0!==(v=r-s(c[d],t,n,r,r-1,e))){for(r-=v,g=(f-=v)+1,p=(h-=v)+1,u=v-1;u>=0;u--)t[g+u]=t[p+u];if(0===r){w=!0;break}}if(t[f--]=c[d--],1==--l){w=!0;break}if(0!==(y=l-a(t[h],c,0,l,l-1,e))){for(l-=y,g=(f-=y)+1,p=(d-=y)+1,u=0;u<y;u++)t[g+u]=c[p+u];if(l<=1){w=!0;break}}if(t[f--]=t[h--],0==--r){w=!0;break}m--}while(v>=i||y>=i);if(w)break;m<0&&(m=0),m+=2}(A=m)<1&&(A=1);if(1===l){for(g=(f-=r)+1,p=(h-=r)+1,u=r-1;u>=0;u--)t[g+u]=t[p+u];t[f]=c[d]}else{if(0===l)throw new Error;for(p=f-(l-1),u=0;u<l;u++)t[p+u]=c[u]}}(u,h,d,f))}r=[],o=[],this.mergeRuns=function(){for(;l>1;){var t=l-2;if(t>=1&&o[t-1]<=o[t]+o[t+1]||t>=2&&o[t-2]<=o[t]+o[t-1])o[t-1]<o[t+1]&&t--;else if(o[t]>o[t+1])break;u(t)}},this.forceMergeRuns=function(){for(;l>1;){var t=l-2;t>0&&o[t-1]<o[t+1]&&t--,u(t)}},this.pushRun=function(t,e){r[l]=t,o[l]=e,l+=1}}t.exports=function(t,e,i,a){i||(i=0),a||(a=t.length);var s=a-i;if(!(s<2)){var l=0;if(s<n)o(t,i,a,i+(l=r(t,i,a,e)),e);else{var c=new A(t,e),u=function(t){for(var e=0;t>=n;)e|=1&t,t>>=1;return t+e}(s);do{if((l=r(t,i,a,e))<u){var h=s;h>u&&(h=u),o(t,i,i+h,i+l,e),l=h}c.pushRun(i,l),c.mergeRuns(),s-=l,i+=l}while(0!==s);c.forceMergeRuns()}}}},"Ym+9":function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=".",o="___EC__COMPONENT__CONTAINER___";function a(t){var e={main:"",sub:""};return t&&(t=t.split(r),e.main=t[0]||"",e.sub=t[1]||""),e}var s=0;function A(t,e){var n=i.slice(arguments,2);return this.superClass.prototype[e].apply(t,n)}function l(t,e,n){return this.superClass.prototype[e].apply(t,n)}e.parseClassType=a,e.enableClassExtend=function(t,e){t.$constructor=t,t.extend=function(t){var e=this,n=function(){t.$constructor?t.$constructor.apply(this,arguments):e.apply(this,arguments)};return i.extend(n.prototype,t),n.extend=this.extend,n.superCall=A,n.superApply=l,i.inherits(n,this),n.superClass=e,n}},e.enableClassCheck=function(t){var e=["__\0is_clz",s++,Math.random().toFixed(3)].join("_");t.prototype[e]=!0,t.isInstance=function(t){return!(!t||!t[e])}},e.enableClassManagement=function(t,e){e=e||{};var n={};if(t.registerClass=function(t,e){return e&&(function(t){i.assert(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(t),'componentType "'+t+'" illegal')}(e),(e=a(e)).sub?e.sub!==o&&((function(t){var e=n[t.main];return e&&e[o]||((e=n[t.main]={})[o]=!0),e}(e))[e.sub]=t):n[e.main]=t),t},t.getClass=function(t,e,i){var r=n[t];if(r&&r[o]&&(r=e?r[e]:null),i&&!r)throw new Error(e?"Component "+t+"."+(e||"")+" not exists. Load it first.":t+".type should be specified.");return r},t.getClassesByMainType=function(t){t=a(t);var e=[],r=n[t.main];return r&&r[o]?i.each(r,function(t,n){n!==o&&e.push(t)}):e.push(r),e},t.hasClass=function(t){return t=a(t),!!n[t.main]},t.getAllClassMainTypes=function(){var t=[];return i.each(n,function(e,n){t.push(n)}),t},t.hasSubTypes=function(t){t=a(t);var e=n[t.main];return e&&e[o]},t.parseClassType=a,e.registerWhenExtend){var r=t.extend;r&&(t.extend=function(e){var n=r.call(this,e);return t.registerClass(n,e.type)})}return t},e.setReadOnly=function(t,e){}},YoHB:function(t,e,n){n("zW0e"),n("TiXa"),n("e6hA"),n("xd6S"),n("bdcs"),n("cbvn"),n("Mx+x")},YpO4:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("cLid"),a=n("NYvz"),s=n("alaG"),A=n("bDs9"),l=["axisLine","axisTickLabel","axisName"],c=i.extendComponentView({type:"parallelAxis",init:function(t,e){c.superApply(this,"init",arguments),(this._brushController=new a(e.getZr())).on("brush",r.bind(this._onBrush,this))},render:function(t,e,n,i){if(!function(t,e,n){return n&&"axisAreaSelect"===n.type&&e.findComponents({mainType:"parallelAxis",query:n})[0]===t}(t,e,i)){this.axisModel=t,this.api=n,this.group.removeAll();var a=this._axisGroup;if(this._axisGroup=new A.Group,this.group.add(this._axisGroup),t.get("show")){var s=function(t,e){return e.getComponent("parallel",t.get("parallelIndex"))}(t,e),c=s.coordinateSystem,u=t.getAreaSelectStyle(),h=u.width,d=t.axis.dim,f=c.getAxisLayout(d),p=r.extend({strokeContainThreshold:h},f),g=new o(t,p);r.each(l,g.add,g),this._axisGroup.add(g.getGroup()),this._refreshBrushController(p,u,t,s,h,n);var m=i&&!1===i.animation?null:t;A.groupTransition(a,this._axisGroup,m)}}},_refreshBrushController:function(t,e,n,i,o,a){var l=n.axis.getExtent(),c=l[1]-l[0],u=Math.min(30,.1*Math.abs(c)),h=A.BoundingRect.create({x:l[0],y:-o/2,width:c,height:o});h.x-=u,h.width+=2*u,this._brushController.mount({enableGlobalPan:!0,rotation:t.rotation,position:t.position}).setPanels([{panelId:"pl",clipPath:s.makeRectPanelClipPath(h),isTargetByCursor:s.makeRectIsTargetByCursor(h,a,i),getLinearBrushOtherExtent:s.makeLinearBrushOtherExtent(h,0)}]).enableBrush({brushType:"lineX",brushStyle:e,removeOnClick:!0}).updateCovers(function(t){var e=t.axis;return r.map(t.activeIntervals,function(t){return{brushType:"lineX",panelId:"pl",range:[e.dataToCoord(t[0],!0),e.dataToCoord(t[1],!0)]}})}(n))},_onBrush:function(t,e){var n=this.axisModel,i=n.axis,o=r.map(t,function(t){return[i.coordToData(t.range[0],!0),i.coordToData(t.range[1],!0)]});(!n.option.realtime===e.isEnd||e.removeOnClick)&&this.api.dispatchAction({type:"axisAreaSelect",parallelAxisId:n.id,intervals:o})},dispose:function(){this._brushController.dispose()}});var u=c;t.exports=u},YyE5:function(t,e,n){var i=n("A5tq"),r=n("niuy"),o=n("Gkcz"),a=n("rhmo"),s=a.getLayoutParams,A=a.mergeLayoutParam,l=n("4GD6"),c=["value","category","time","log"];t.exports=function(t,e,n,a){i.each(c,function(o){e.extend({type:t+"Axis."+o,mergeDefaultAndTheme:function(e,r){var a=this.layoutMode,l=a?s(e):{},c=r.getTheme();i.merge(e,c.get(o+"Axis")),i.merge(e,this.getDefaultOption()),e.type=n(t,e),a&&A(e,l,a)},optionUpdated:function(){"category"===this.option.type&&(this.__ordinalMeta=l.createByAxisModel(this))},getCategories:function(t){var e=this.option;if("category"===e.type)return t?e.data:this.__ordinalMeta.categories},getOrdinalMeta:function(){return this.__ordinalMeta},defaultOption:i.mergeAll([{},r[o+"Axis"],a],!0)})}),o.registerSubTypeDefaulter(t+"Axis",i.curry(n,t))}},ZVMY:function(t,e,n){var i=n("bDs9"),r=n("2KC6"),o=n("A5tq").isObject;function a(t){this.group=new i.Group,this._symbolCtor=t||r}var s=a.prototype;function A(t,e,n,i){return e&&!isNaN(e[0])&&!isNaN(e[1])&&!(i.isIgnore&&i.isIgnore(n))&&!(i.clipShape&&!i.clipShape.contain(e[0],e[1]))&&"none"!==t.getItemVisual(n,"symbol")}function l(t){return null==t||o(t)||(t={isIgnore:t}),t||{}}function c(t){var e=t.hostModel;return{itemStyle:e.getModel("itemStyle").getItemStyle(["color"]),hoverItemStyle:e.getModel("emphasis.itemStyle").getItemStyle(),symbolRotate:e.get("symbolRotate"),symbolOffset:e.get("symbolOffset"),hoverAnimation:e.get("hoverAnimation"),labelModel:e.getModel("label"),hoverLabelModel:e.getModel("emphasis.label"),cursorStyle:e.get("cursor")}}s.updateData=function(t,e){e=l(e);var n=this.group,r=t.hostModel,o=this._data,a=this._symbolCtor,s=c(t);o||n.removeAll(),t.diff(o).add(function(i){var r=t.getItemLayout(i);if(A(t,r,i,e)){var o=new a(t,i,s);o.attr("position",r),t.setItemGraphicEl(i,o),n.add(o)}}).update(function(l,c){var u=o.getItemGraphicEl(c),h=t.getItemLayout(l);A(t,h,l,e)?(u?(u.updateData(t,l,s),i.updateProps(u,{position:h},r)):(u=new a(t,l)).attr("position",h),n.add(u),t.setItemGraphicEl(l,u)):n.remove(u)}).remove(function(t){var e=o.getItemGraphicEl(t);e&&e.fadeOut(function(){n.remove(e)})}).execute(),this._data=t},s.isPersistent=function(){return!0},s.updateLayout=function(){var t=this._data;t&&t.eachItemGraphicEl(function(e,n){var i=t.getItemLayout(n);e.attr("position",i)})},s.incrementalPrepareUpdate=function(t){this._seriesScope=c(t),this._data=null,this.group.removeAll()},s.incrementalUpdate=function(t,e,n){function i(t){t.isGroup||(t.incremental=t.useHoverLayer=!0)}n=l(n);for(var r=t.start;r<t.end;r++){var o=e.getItemLayout(r);if(A(e,o,r,n)){var a=new this._symbolCtor(e,r,this._seriesScope);a.traverse(i),a.attr("position",o),this.group.add(a),e.setItemGraphicEl(r,a)}}},s.remove=function(t){var e=this.group,n=this._data;n&&t?n.eachItemGraphicEl(function(t){t.fadeOut(function(){e.remove(t)})}):e.removeAll()};var u=a;t.exports=u},Zm2K:function(t,e,n){var i=n("9nPt"),r=n("kCsp"),o=n("TJcz"),a=i.extend({type:"series.heatmap",getInitialData:function(t,e){return r(this.getSource(),this,{generateCoord:"value"})},preventIncremental:function(){var t=o.get(this.get("coordinateSystem"));if(t&&t.dimensions)return"lng"===t.dimensions[0]&&"lat"===t.dimensions[1]},defaultOption:{coordinateSystem:"cartesian2d",zlevel:0,z:2,geoIndex:0,blurSize:30,pointSize:20,maxOpacity:1,minOpacity:0}});t.exports=a},ZvM2:function(t,e,n){var i=n("R33K");e.containStroke=function(t,e,n,r,o,a,s,A,l,c,u){if(0===l)return!1;var h=l;return!(u>e+h&&u>r+h&&u>a+h&&u>A+h||u<e-h&&u<r-h&&u<a-h&&u<A-h||c>t+h&&c>n+h&&c>o+h&&c>s+h||c<t-h&&c<n-h&&c<o-h&&c<s-h)&&i.cubicProjectPoint(t,e,n,r,o,a,s,A,c,u,null)<=h/2}},"a+Y0":function(t,e,n){var i=n("a7jT"),r=n("r+KN"),o=n("A5tq"),a=n("vnMr");function s(t){i.call(this,t)}s.prototype={constructor:s,type:"image",brush:function(t,e){var n=this.style,i=n.image;n.bind(t,this,e);var r=this._image=a.createOrUpdateImage(i,this._image,this,this.onload);if(r&&a.isImageReady(r)){var o=n.x||0,s=n.y||0,A=n.width,l=n.height,c=r.width/r.height;if(null==A&&null!=l?A=l*c:null==l&&null!=A?l=A/c:null==A&&null==l&&(A=r.width,l=r.height),this.setTransform(t),n.sWidth&&n.sHeight){var u=n.sx||0,h=n.sy||0;t.drawImage(r,u,h,n.sWidth,n.sHeight,o,s,A,l)}else if(n.sx&&n.sy){var d=A-(u=n.sx),f=l-(h=n.sy);t.drawImage(r,u,h,d,f,o,s,A,l)}else t.drawImage(r,o,s,A,l);null!=n.text&&(this.restoreTransform(t),this.drawRectText(t,this.getBoundingRect()))}},getBoundingRect:function(){var t=this.style;return this._rect||(this._rect=new r(t.x||0,t.y||0,t.width||0,t.height||0)),this._rect}},o.inherits(s,i);var A=s;t.exports=A},a2NG:function(t,e,n){n("zW0e"),n("TiXa"),n("e6hA"),n("IBjP"),n("q9RD"),n("cbvn"),n("Mx+x")},a7jT:function(t,e,n){var i=n("A5tq"),r=n("1yLv"),o=n("rz0F"),a=n("izE0");function s(t){for(var e in t=t||{},o.call(this,t),t)t.hasOwnProperty(e)&&"style"!==e&&(this[e]=t[e]);this.style=new r(t.style,this),this._rect=null,this.__clipPaths=null}s.prototype={constructor:s,type:"displayable",__dirty:!0,invisible:!1,z:0,z2:0,zlevel:0,draggable:!1,dragging:!1,silent:!1,culling:!1,cursor:"pointer",rectHover:!1,progressive:!1,incremental:!1,globalScaleRatio:1,beforeBrush:function(t){},afterBrush:function(t){},brush:function(t,e){},getBoundingRect:function(){},contain:function(t,e){return this.rectContain(t,e)},traverse:function(t,e){t.call(e,this)},rectContain:function(t,e){var n=this.transformCoordToLocal(t,e);return this.getBoundingRect().contain(n[0],n[1])},dirty:function(){this.__dirty=this.__dirtyText=!0,this._rect=null,this.__zr&&this.__zr.refresh()},animateStyle:function(t){return this.animate("style",t)},attrKV:function(t,e){"style"!==t?o.prototype.attrKV.call(this,t,e):this.style.set(e)},setStyle:function(t,e){return this.style.set(t,e),this.dirty(!1),this},useStyle:function(t){return this.style=new r(t,this),this.dirty(!1),this},calculateTextPosition:null},i.inherits(s,o),i.mixin(s,a);var A=s;t.exports=A},aGqJ:function(t,e,n){n("t57F"),n("gydn")},aI3E:function(t,e){e.containStroke=function(t,e,n,i,r,o,a){if(0===r)return!1;var s=r,A=0;if(a>e+s&&a>i+s||a<e-s&&a<i-s||o>t+s&&o>n+s||o<t-s&&o<n-s)return!1;if(t===n)return Math.abs(o-t)<=s/2;var l=(A=(e-i)/(t-n))*o-a+(t*i-n*e)/(t-n);return l*l/(A*A+1)<=s/2*s/2}},aNYc:function(t,e,n){var i=n("A5tq"),r=n("Fd4b"),o=n("0Hqv"),a=n("w9uD"),s=n("eII0"),A=s.getScaleExtent,l=s.niceScaleExtent,c=n("TJcz"),u=n("Vede");function h(t,e,n){this._model=t,this.dimensions=[],this._indicatorAxes=i.map(t.getIndicatorModels(),function(t,e){var n="indicator_"+e,i=new r(n,"log"===t.get("axisType")?new u:new o);return i.name=t.get("name"),i.model=t,t.axis=i,this.dimensions.push(n),i},this),this.resize(t,n),this.cx,this.cy,this.r,this.r0,this.startAngle}h.prototype.getIndicatorAxes=function(){return this._indicatorAxes},h.prototype.dataToPoint=function(t,e){var n=this._indicatorAxes[e];return this.coordToPoint(n.dataToCoord(t),e)},h.prototype.coordToPoint=function(t,e){var n=this._indicatorAxes[e].angle;return[this.cx+t*Math.cos(n),this.cy-t*Math.sin(n)]},h.prototype.pointToData=function(t){var e=t[0]-this.cx,n=t[1]-this.cy,i=Math.sqrt(e*e+n*n);e/=i,n/=i;for(var r,o=Math.atan2(-n,e),a=1/0,s=-1,A=0;A<this._indicatorAxes.length;A++){var l=this._indicatorAxes[A],c=Math.abs(o-l.angle);c<a&&(r=l,s=A,a=c)}return[s,+(r&&r.coordToData(i))]},h.prototype.resize=function(t,e){var n=t.get("center"),r=e.getWidth(),o=e.getHeight(),s=Math.min(r,o)/2;this.cx=a.parsePercent(n[0],r),this.cy=a.parsePercent(n[1],o),this.startAngle=t.get("startAngle")*Math.PI/180;var A=t.get("radius");"string"!=typeof A&&"number"!=typeof A||(A=[0,A]),this.r0=a.parsePercent(A[0],s),this.r=a.parsePercent(A[1],s),i.each(this._indicatorAxes,function(t,e){t.setExtent(this.r0,this.r);var n=this.startAngle+e*Math.PI*2/this._indicatorAxes.length;n=Math.atan2(Math.sin(n),Math.cos(n)),t.angle=n},this)},h.prototype.update=function(t,e){var n=this._indicatorAxes,r=this._model;i.each(n,function(t){t.scale.setExtent(1/0,-1/0)}),t.eachSeriesByType("radar",function(e,o){if("radar"===e.get("coordinateSystem")&&t.getComponent("radar",e.get("radarIndex"))===r){var a=e.getData();i.each(n,function(t){t.scale.unionExtentFromData(a,a.mapDimension(t.dim))})}},this);var o=r.get("splitNumber");function s(t){var e=Math.pow(10,Math.floor(Math.log(t)/Math.LN10)),n=t/e;return 2===n?n=5:n*=2,n*e}i.each(n,function(t,e){var n=A(t.scale,t.model).extent;l(t.scale,t.model);var i=t.model,r=t.scale,c=i.getMin(),u=i.getMax(),h=r.getInterval();if(null!=c&&null!=u)r.setExtent(+c,+u),r.setInterval((u-c)/o);else if(null!=c){do{d=c+h*o,r.setExtent(+c,d),r.setInterval(h),h=s(h)}while(d<n[1]&&isFinite(d)&&isFinite(n[1]))}else if(null!=u){do{f=u-h*o,r.setExtent(f,+u),r.setInterval(h),h=s(h)}while(f>n[0]&&isFinite(f)&&isFinite(n[0]))}else{r.getTicks().length-1>o&&(h=s(h));var d=Math.ceil(n[1]/h)*h,f=a.round(d-h*o);r.setExtent(f,d),r.setInterval(h)}})},h.dimensions=[],h.create=function(t,e){var n=[];return t.eachComponent("radar",function(i){var r=new h(i,t,e);n.push(r),i.coordinateSystem=r}),t.eachSeriesByType("radar",function(t){"radar"===t.get("coordinateSystem")&&(t.coordinateSystem=n[t.get("radarIndex")||0])}),n},c.register("radar",h);var d=h;t.exports=d},abFj:function(t,e,n){var i=n("A5tq"),r=n("rhmo"),o=n("w9uD"),a=n("TJcz");function s(t,e,n){this._model=t}function A(t,e,n,i){var r=n.calendarModel,o=n.seriesModel,a=r?r.coordinateSystem:o?o.coordinateSystem:null;return a===this?a[t](i):null}s.prototype={constructor:s,type:"calendar",dimensions:["time","value"],getDimensionsInfo:function(){return[{name:"time",type:"time"},"value"]},getRangeInfo:function(){return this._rangeInfo},getModel:function(){return this._model},getRect:function(){return this._rect},getCellWidth:function(){return this._sw},getCellHeight:function(){return this._sh},getOrient:function(){return this._orient},getFirstDayOfWeek:function(){return this._firstDayOfWeek},getDateInfo:function(t){var e=(t=o.parseDate(t)).getFullYear(),n=t.getMonth()+1;n=n<10?"0"+n:n;var i=t.getDate();i=i<10?"0"+i:i;var r=t.getDay();return{y:e,m:n,d:i,day:r=Math.abs((r+7-this.getFirstDayOfWeek())%7),time:t.getTime(),formatedDate:e+"-"+n+"-"+i,date:t}},getNextNDay:function(t,e){return 0===(e=e||0)?this.getDateInfo(t):((t=new Date(this.getDateInfo(t).time)).setDate(t.getDate()+e),this.getDateInfo(t))},update:function(t,e){this._firstDayOfWeek=+this._model.getModel("dayLabel").get("firstDay"),this._orient=this._model.get("orient"),this._lineWidth=this._model.getModel("itemStyle").getItemStyle().lineWidth||0,this._rangeInfo=this._getRangeInfo(this._initRangeOption());var n=this._rangeInfo.weeks||1,o=["width","height"],a=this._model.get("cellSize").slice(),s=this._model.getBoxLayoutParams(),A="horizontal"===this._orient?[n,7]:[7,n];i.each([0,1],function(t){u(a,t)&&(s[o[t]]=a[t]*A[t])});var l={width:e.getWidth(),height:e.getHeight()},c=this._rect=r.getLayoutRect(s,l);function u(t,e){return null!=t[e]&&"auto"!==t[e]}i.each([0,1],function(t){u(a,t)||(a[t]=c[o[t]]/A[t])}),this._sw=a[0],this._sh=a[1]},dataToPoint:function(t,e){i.isArray(t)&&(t=t[0]),null==e&&(e=!0);var n=this.getDateInfo(t),r=this._rangeInfo,o=n.formatedDate;if(e&&!(n.time>=r.start.time&&n.time<r.end.time+864e5))return[NaN,NaN];var a=n.day,s=this._getRangeInfo([r.start.time,o]).nthWeek;return"vertical"===this._orient?[this._rect.x+a*this._sw+this._sw/2,this._rect.y+s*this._sh+this._sh/2]:[this._rect.x+s*this._sw+this._sw/2,this._rect.y+a*this._sh+this._sh/2]},pointToData:function(t){var e=this.pointToDate(t);return e&&e.time},dataToRect:function(t,e){var n=this.dataToPoint(t,e);return{contentShape:{x:n[0]-(this._sw-this._lineWidth)/2,y:n[1]-(this._sh-this._lineWidth)/2,width:this._sw-this._lineWidth,height:this._sh-this._lineWidth},center:n,tl:[n[0]-this._sw/2,n[1]-this._sh/2],tr:[n[0]+this._sw/2,n[1]-this._sh/2],br:[n[0]+this._sw/2,n[1]+this._sh/2],bl:[n[0]-this._sw/2,n[1]+this._sh/2]}},pointToDate:function(t){var e=Math.floor((t[0]-this._rect.x)/this._sw)+1,n=Math.floor((t[1]-this._rect.y)/this._sh)+1,i=this._rangeInfo.range;return"vertical"===this._orient?this._getDateByWeeksAndDay(n,e-1,i):this._getDateByWeeksAndDay(e,n-1,i)},convertToPixel:i.curry(A,"dataToPoint"),convertFromPixel:i.curry(A,"pointToData"),_initRangeOption:function(){var t=this._model.get("range"),e=t;if(i.isArray(e)&&1===e.length&&(e=e[0]),/^\d{4}$/.test(e)&&(t=[e+"-01-01",e+"-12-31"]),/^\d{4}[\/|-]\d{1,2}$/.test(e)){var n=this.getDateInfo(e),r=n.date;r.setMonth(r.getMonth()+1);var o=this.getNextNDay(r,-1);t=[n.formatedDate,o.formatedDate]}/^\d{4}[\/|-]\d{1,2}[\/|-]\d{1,2}$/.test(e)&&(t=[e,e]);var a=this._getRangeInfo(t);return a.start.time>a.end.time&&t.reverse(),t},_getRangeInfo:function(t){var e;(t=[this.getDateInfo(t[0]),this.getDateInfo(t[1])])[0].time>t[1].time&&(e=!0,t.reverse());var n=Math.floor(t[1].time/864e5)-Math.floor(t[0].time/864e5)+1,i=new Date(t[0].time),r=i.getDate(),o=t[1].date.getDate();i.setDate(r+n-1);var a=i.getDate();if(a!==o)for(var s=i.getTime()-t[1].time>0?1:-1;(a=i.getDate())!==o&&(i.getTime()-t[1].time)*s>0;)n-=s,i.setDate(a-s);var A=Math.floor((n+t[0].day+6)/7),l=e?1-A:A-1;return e&&t.reverse(),{range:[t[0].formatedDate,t[1].formatedDate],start:t[0],end:t[1],allDay:n,weeks:A,nthWeek:l,fweek:t[0].day,lweek:t[1].day}},_getDateByWeeksAndDay:function(t,e,n){var i=this._getRangeInfo(n);if(t>i.weeks||0===t&&e<i.fweek||t===i.weeks&&e>i.lweek)return!1;var r=7*(t-1)-i.fweek+e,o=new Date(i.start.time);return o.setDate(i.start.d+r),this.getDateInfo(o)}},s.dimensions=s.prototype.dimensions,s.getDimensionsInfo=s.prototype.getDimensionsInfo,s.create=function(t,e){var n=[];return t.eachComponent("calendar",function(i){var r=new s(i,t,e);n.push(r),i.coordinateSystem=r}),t.eachSeries(function(t){"calendar"===t.get("coordinateSystem")&&(t.coordinateSystem=n[t.get("calendarIndex")||0])}),n},a.register("calendar",s);var l=s;t.exports=l},afh2:function(t,e,n){"use strict";var i=n("ywUT"),r=n("fh+U"),o=n("Tyw6"),a=n("t/Q4"),s=n("fA9A");function A(t){this.defaults=t,this.interceptors={request:new o,response:new o}}A.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=[a,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach(function(t){e.unshift(t.fulfilled,t.rejected)}),this.interceptors.response.forEach(function(t){e.push(t.fulfilled,t.rejected)});e.length;)n=n.then(e.shift(),e.shift());return n},A.prototype.getUri=function(t){return t=s(this.defaults,t),r(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},i.forEach(["delete","get","head","options"],function(t){A.prototype[t]=function(e,n){return this.request(i.merge(n||{},{method:t,url:e}))}}),i.forEach(["post","put","patch"],function(t){A.prototype[t]=function(e,n,r){return this.request(i.merge(r||{},{method:t,url:e,data:n}))}}),t.exports=A},alaG:function(t,e,n){var i=n("r+KN"),r=n("vvOW").onIrrelevantElement,o=n("bDs9");function a(t){return i.create(t)}e.makeRectPanelClipPath=function(t){return t=a(t),function(e,n){return o.clipPointsByRect(e,t)}},e.makeLinearBrushOtherExtent=function(t,e){return t=a(t),function(n){var i=null!=e?e:n,r=i?t.width:t.height,o=i?t.x:t.y;return[o,o+(r||0)]}},e.makeRectIsTargetByCursor=function(t,e,n){return t=a(t),function(i,o,a){return t.contain(o[0],o[1])&&!r(i,e,n)}}},"b+6s":function(t,e,n){"use strict";var i=n("+p5o"),r=n("SfJO"),o=Object.prototype.hasOwnProperty;function a(t,e){return Object.keys(e).forEach(function(n){!function(t,e,n){var i=e[n];Object(r.e)(i)&&(o.call(t,n)&&Object(r.h)(i)?t[n]=a(Object(t[n]),e[n]):t[n]=i)}(t,e,n)}),t}var s=i.a.prototype,A=i.a.util.defineReactive;A(s,"$vantLang","zh-CN"),A(s,"$vantMessages",{"zh-CN":{name:"濮撳悕",tel:"鐢佃瘽",save:"淇濆瓨",confirm:"纭",cancel:"鍙栨秷",delete:"鍒犻櫎",complete:"瀹屾垚",loading:"鍔犺浇涓�...",telEmpty:"璇峰~鍐欑數璇�",nameEmpty:"璇峰~鍐欏鍚�",nameInvalid:"璇疯緭鍏ユ纭殑濮撳悕",confirmDelete:"纭畾瑕佸垹闄ゅ悧",telInvalid:"璇疯緭鍏ユ纭殑鎵嬫満鍙�",vanCalendar:{end:"缁撴潫",start:"寮�濮�",title:"鏃ユ湡閫夋嫨",confirm:"纭畾",startEnd:"寮�濮�/缁撴潫",weekdays:["鏃�","涓�","浜�","涓�","鍥�","浜�","鍏�"],monthTitle:function(t,e){return t+"骞�"+e+"鏈�"},rangePrompt:function(t){return"閫夋嫨澶╂暟涓嶈兘瓒呰繃 "+t+" 澶�"}},vanCascader:{select:"璇烽�夋嫨"},vanContactCard:{addText:"娣诲姞鑱旂郴浜�"},vanContactList:{addText:"鏂板缓鑱旂郴浜�"},vanPagination:{prev:"涓婁竴椤�",next:"涓嬩竴椤�"},vanPullRefresh:{pulling:"涓嬫媺鍗冲彲鍒锋柊...",loosing:"閲婃斁鍗冲彲鍒锋柊..."},vanSubmitBar:{label:"鍚堣锛�"},vanCoupon:{unlimited:"鏃犱娇鐢ㄩ棬妲�",discount:function(t){return t+"鎶�"},condition:function(t){return"婊�"+t+"鍏冨彲鐢�"}},vanCouponCell:{title:"浼樻儬鍒�",tips:"鏆傛棤鍙敤",count:function(t){return t+"寮犲彲鐢�"}},vanCouponList:{empty:"鏆傛棤浼樻儬鍒�",exchange:"鍏戞崲",close:"涓嶄娇鐢ㄤ紭鎯犲埜",enable:"鍙敤",disabled:"涓嶅彲鐢�",placeholder:"璇疯緭鍏ヤ紭鎯犵爜"},vanAddressEdit:{area:"鍦板尯",postal:"閭斂缂栫爜",areaEmpty:"璇烽�夋嫨鍦板尯",addressEmpty:"璇峰~鍐欒缁嗗湴鍧�",postalEmpty:"閭斂缂栫爜鏍煎紡涓嶆纭�",defaultAddress:"璁句负榛樿鏀惰揣鍦板潃",telPlaceholder:"鏀惰揣浜烘墜鏈哄彿",namePlaceholder:"鏀惰揣浜哄鍚�",areaPlaceholder:"閫夋嫨鐪� / 甯� / 鍖�"},vanAddressEditDetail:{label:"璇︾粏鍦板潃",placeholder:"琛楅亾闂ㄧ墝銆佹ゼ灞傛埧闂村彿绛変俊鎭�"},vanAddressList:{add:"鏂板鍦板潃"}}});e.a={messages:function(){return s.$vantMessages[s.$vantLang]},use:function(t,e){var n;s.$vantLang=t,this.add(((n={})[t]=e,n))},add:function(t){void 0===t&&(t={}),a(s.$vantMessages,t)}}},bDs9:function(t,e,n){var i=n("A5tq"),r=n("D2gI"),o=n("dyFL"),a=n("yW06"),s=n("lbYD"),A=n("UnJe"),l=n("A9v9"),c=n("a+Y0");e.Image=c;var u=n("Q1ps");e.Group=u;var h=n("g+7e");e.Text=h;var d=n("q/hq");e.Circle=d;var f=n("ftP0");e.Sector=f;var p=n("x0y8");e.Ring=p;var g=n("HF2S");e.Polygon=g;var m=n("lGpf");e.Polyline=m;var v=n("/Qj9");e.Rect=v;var y=n("pRbu");e.Line=y;var w=n("KtVb");e.BezierCurve=w;var x=n("05Cp");e.Arc=x;var B=n("xXc/");e.CompoundPath=B;var b=n("fUtP");e.LinearGradient=b;var C=n("uGGd");e.RadialGradient=C;var _=n("r+KN");e.BoundingRect=_;var S=n("ehtc");e.IncrementalDisplayable=S;var I=n("s7i0"),T=Math.max,M=Math.min,Q={},F=1,k="emphasis",D="normal",U=1,E={},L={};function O(t,e){L[t]=e}function P(t,e,n,i){var o=r.createFromString(t,e);return n&&("center"===i&&(n=H(n,o.getBoundingRect())),R(o,n)),o}function H(t,e){var n,i=e.width/e.height,r=t.height*i;return n=r<=t.width?t.height:(r=t.width)/i,{x:t.x+t.width/2-r/2,y:t.y+t.height/2-n/2,width:r,height:n}}var N=r.mergePath;function R(t,e){if(t.applyTransform){var n=t.getBoundingRect().calculateTransform(e);t.applyTransform(n)}}var V=I.subPixelOptimize;function z(t){return null!=t&&"none"!==t}var K=i.createHashMap(),G=0;function W(t){var e=t.__hoverStl;if(e&&!t.__highlighted){var n=t.__zr,i=t.useHoverLayer&&n&&"canvas"===n.painter.type;if(t.__highlighted=i?"layer":"plain",!(t.isGroup||!n&&t.useHoverLayer)){var r=t,o=t.style;i&&(o=(r=n.addHover(t)).style),At(o),i||function(t){if(t.__hoverStlDirty){t.__hoverStlDirty=!1;var e=t.__hoverStl;if(e){var n=t.__cachedNormalStl={};t.__cachedNormalZ2=t.z2;var i=t.style;for(var r in e)null!=e[r]&&(n[r]=i[r]);n.fill=i.fill,n.stroke=i.stroke}else t.__cachedNormalStl=t.__cachedNormalZ2=null}}(r),o.extendFrom(e),j(o,e,"fill"),j(o,e,"stroke"),st(o),i||(t.dirty(!1),t.z2+=F)}}}function j(t,e,n){!z(e[n])&&z(t[n])&&(t[n]=function(t){if("string"!=typeof t)return t;var e=K.get(t);return e||(e=o.lift(t,-.1),G<1e4&&(K.set(t,e),G++)),e}(t[n]))}function $(t){var e=t.__highlighted;if(e&&(t.__highlighted=!1,!t.isGroup))if("layer"===e)t.__zr&&t.__zr.removeHover(t);else{var n=t.style,i=t.__cachedNormalStl;i&&(At(n),t.setStyle(i),st(n));var r=t.__cachedNormalZ2;null!=r&&t.z2-r===F&&(t.z2=r)}}function q(t,e,n){var i,r=D,o=D;t.__highlighted&&(r=k,i=!0),e(t,n),t.__highlighted&&(o=k,i=!0),t.isGroup&&t.traverse(function(t){!t.isGroup&&e(t,n)}),i&&t.__highDownOnUpdate&&t.__highDownOnUpdate(r,o)}function Y(t,e){e=t.__hoverStl=!1!==e&&(t.hoverStyle||e||{}),t.__hoverStlDirty=!0,t.__highlighted&&(t.__cachedNormalStl=null,$(t),W(t))}function X(t){!et(this,t)&&!this.__highByOuter&&q(this,W)}function J(t){!et(this,t)&&!this.__highByOuter&&q(this,$)}function Z(t){this.__highByOuter|=1<<(t||0),q(this,W)}function tt(t){!(this.__highByOuter&=~(1<<(t||0)))&&q(this,$)}function et(t,e){return t.__highDownSilentOnTouch&&e.zrByTouch}function nt(t,e){var n=!1===e;if(t.__highDownSilentOnTouch=t.highDownSilentOnTouch,t.__highDownOnUpdate=t.highDownOnUpdate,!n||t.__highDownDispatcher){var i=n?"off":"on";t[i]("mouseover",X)[i]("mouseout",J),t[i]("emphasis",Z)[i]("normal",tt),t.__highByOuter=t.__highByOuter||0,t.__highDownDispatcher=!n}}function it(t,e,n,r,o){return rt(t,e,r,o),n&&i.extend(t,n),t}function rt(t,e,n,r){if((n=n||Q).isRectText){var o;n.getTextPosition?o=n.getTextPosition(e,r):"outside"===(o=e.getShallow("position")||(r?null:"inside"))&&(o="top"),t.textPosition=o,t.textOffset=e.getShallow("offset");var a=e.getShallow("rotate");null!=a&&(a*=Math.PI/180),t.textRotation=a,t.textDistance=i.retrieve2(e.getShallow("distance"),r?null:5)}var s,A=e.ecModel,l=A&&A.option.textStyle,c=function(t){var e;for(;t&&t!==t.ecModel;){var n=(t.option||Q).rich;if(n)for(var i in e=e||{},n)n.hasOwnProperty(i)&&(e[i]=1);t=t.parentModel}return e}(e);if(c)for(var u in s={},c)if(c.hasOwnProperty(u)){var h=e.getModel(["rich",u]);ot(s[u]={},h,l,n,r)}return t.rich=s,ot(t,e,l,n,r,!0),n.forceRich&&!n.textStyle&&(n.textStyle={}),t}function ot(t,e,n,r,o,a){n=!o&&n||Q,t.textFill=at(e.getShallow("color"),r)||n.color,t.textStroke=at(e.getShallow("textBorderColor"),r)||n.textBorderColor,t.textStrokeWidth=i.retrieve2(e.getShallow("textBorderWidth"),n.textBorderWidth),o||(a&&(t.insideRollbackOpt=r,st(t)),null==t.textFill&&(t.textFill=r.autoColor)),t.fontStyle=e.getShallow("fontStyle")||n.fontStyle,t.fontWeight=e.getShallow("fontWeight")||n.fontWeight,t.fontSize=e.getShallow("fontSize")||n.fontSize,t.fontFamily=e.getShallow("fontFamily")||n.fontFamily,t.textAlign=e.getShallow("align"),t.textVerticalAlign=e.getShallow("verticalAlign")||e.getShallow("baseline"),t.textLineHeight=e.getShallow("lineHeight"),t.textWidth=e.getShallow("width"),t.textHeight=e.getShallow("height"),t.textTag=e.getShallow("tag"),a&&r.disableBox||(t.textBackgroundColor=at(e.getShallow("backgroundColor"),r),t.textPadding=e.getShallow("padding"),t.textBorderColor=at(e.getShallow("borderColor"),r),t.textBorderWidth=e.getShallow("borderWidth"),t.textBorderRadius=e.getShallow("borderRadius"),t.textBoxShadowColor=e.getShallow("shadowColor"),t.textBoxShadowBlur=e.getShallow("shadowBlur"),t.textBoxShadowOffsetX=e.getShallow("shadowOffsetX"),t.textBoxShadowOffsetY=e.getShallow("shadowOffsetY")),t.textShadowColor=e.getShallow("textShadowColor")||n.textShadowColor,t.textShadowBlur=e.getShallow("textShadowBlur")||n.textShadowBlur,t.textShadowOffsetX=e.getShallow("textShadowOffsetX")||n.textShadowOffsetX,t.textShadowOffsetY=e.getShallow("textShadowOffsetY")||n.textShadowOffsetY}function at(t,e){return"auto"!==t?t:e&&e.autoColor?e.autoColor:null}function st(t){var e,n=t.textPosition,i=t.insideRollbackOpt;if(i&&null==t.textFill){var r=i.autoColor,o=i.isRectText,a=i.useInsideStyle,s=!1!==a&&(!0===a||o&&n&&"string"==typeof n&&n.indexOf("inside")>=0),A=!s&&null!=r;(s||A)&&(e={textFill:t.textFill,textStroke:t.textStroke,textStrokeWidth:t.textStrokeWidth}),s&&(t.textFill="#fff",null==t.textStroke&&(t.textStroke=r,null==t.textStrokeWidth&&(t.textStrokeWidth=2))),A&&(t.textFill=r)}t.insideRollback=e}function At(t){var e=t.insideRollback;e&&(t.textFill=e.textFill,t.textStroke=e.textStroke,t.textStrokeWidth=e.textStrokeWidth,t.insideRollback=null)}function lt(t,e,n,i,r,o){if("function"==typeof r&&(o=r,r=null),i&&i.isAnimationEnabled()){var a=t?"Update":"",s=i.getShallow("animationDuration"+a),A=i.getShallow("animationEasing"+a),l=i.getShallow("animationDelay"+a);"function"==typeof l&&(l=l(r,i.getAnimationDelayParams?i.getAnimationDelayParams(e,r):null)),"function"==typeof s&&(s=s(r)),s>0?e.animateTo(n,s,l||0,A,o,!!o):(e.stopAnimation(),e.attr(n),o&&o())}else e.stopAnimation(),e.attr(n),o&&o()}function ct(t,e,n,i,r){lt(!0,t,e,n,i,r)}function ut(t,e,n){return e&&!i.isArrayLike(e)&&(e=l.getLocalTransform(e)),n&&(e=a.invert([],e)),s.applyTransform([],t,e)}function ht(t,e,n,i,r,o,a,s){var A,l=n-t,c=i-e,u=a-r,h=s-o,d=dt(u,h,l,c);if((A=d)<=1e-6&&A>=-1e-6)return!1;var f=t-r,p=e-o,g=dt(f,p,l,c)/d;if(g<0||g>1)return!1;var m=dt(f,p,u,h)/d;return!(m<0||m>1)}function dt(t,e,n,i){return t*i-n*e}O("circle",d),O("sector",f),O("ring",p),O("polygon",g),O("polyline",m),O("rect",v),O("line",y),O("bezierCurve",w),O("arc",x),e.Z2_EMPHASIS_LIFT=F,e.CACHED_LABEL_STYLE_PROPERTIES={color:"textFill",textBorderColor:"textStroke",textBorderWidth:"textStrokeWidth"},e.extendShape=function(t){return A.extend(t)},e.extendPath=function(t,e){return r.extendFromString(t,e)},e.registerShape=O,e.getShapeClass=function(t){if(L.hasOwnProperty(t))return L[t]},e.makePath=P,e.makeImage=function(t,e,n){var i=new c({style:{image:t,x:e.x,y:e.y,width:e.width,height:e.height},onload:function(t){if("center"===n){var r={width:t.width,height:t.height};i.setStyle(H(e,r))}}});return i},e.mergePath=N,e.resizePath=R,e.subPixelOptimizeLine=function(t){return I.subPixelOptimizeLine(t.shape,t.shape,t.style),t},e.subPixelOptimizeRect=function(t){return I.subPixelOptimizeRect(t.shape,t.shape,t.style),t},e.subPixelOptimize=V,e.setElementHoverStyle=Y,e.setHoverStyle=function(t,e){nt(t,!0),q(t,Y,e)},e.setAsHighDownDispatcher=nt,e.isHighDownDispatcher=function(t){return!(!t||!t.__highDownDispatcher)},e.getHighlightDigit=function(t){var e=E[t];return null==e&&U<=32&&(e=E[t]=U++),e},e.setLabelStyle=function(t,e,n,r,o,a,s){var A,l=(o=o||Q).labelFetcher,c=o.labelDataIndex,u=o.labelDimIndex,h=o.labelProp,d=n.getShallow("show"),f=r.getShallow("show");(d||f)&&(l&&(A=l.getFormattedLabel(c,"normal",null,u,h)),null==A&&(A=i.isFunction(o.defaultText)?o.defaultText(c,o):o.defaultText));var p=d?A:null,g=f?i.retrieve2(l?l.getFormattedLabel(c,"emphasis",null,u,h):null,A):null;null==p&&null==g||(it(t,n,a,o),it(e,r,s,o,!0)),t.text=p,e.text=g},e.modifyLabelStyle=function(t,e,n){var r=t.style;e&&(At(r),t.setStyle(e),st(r)),r=t.__hoverStl,n&&r&&(At(r),i.extend(r,n),st(r))},e.setTextStyle=it,e.setText=function(t,e,n){var i,r={isRectText:!0};!1===n?i=!0:r.autoColor=n,rt(t,e,r,i)},e.getFont=function(t,e){var n=e&&e.getModel("textStyle");return i.trim([t.fontStyle||n&&n.getShallow("fontStyle")||"",t.fontWeight||n&&n.getShallow("fontWeight")||"",(t.fontSize||n&&n.getShallow("fontSize")||12)+"px",t.fontFamily||n&&n.getShallow("fontFamily")||"sans-serif"].join(" "))},e.updateProps=ct,e.initProps=function(t,e,n,i,r){lt(!1,t,e,n,i,r)},e.getTransform=function(t,e){for(var n=a.identity([]);t&&t!==e;)a.mul(n,t.getLocalTransform(),n),t=t.parent;return n},e.applyTransform=ut,e.transformDirection=function(t,e,n){var i=0===e[4]||0===e[5]||0===e[0]?1:Math.abs(2*e[4]/e[0]),r=0===e[4]||0===e[5]||0===e[2]?1:Math.abs(2*e[4]/e[2]),o=["left"===t?-i:"right"===t?i:0,"top"===t?-r:"bottom"===t?r:0];return o=ut(o,e,n),Math.abs(o[0])>Math.abs(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"},e.groupTransition=function(t,e,n,r){if(t&&e){var o,a=(o={},t.traverse(function(t){!t.isGroup&&t.anid&&(o[t.anid]=t)}),o);e.traverse(function(t){if(!t.isGroup&&t.anid){var e=a[t.anid];if(e){var i=A(t);t.attr(A(e)),ct(t,i,n,t.dataIndex)}}})}function A(t){var e={position:s.clone(t.position),rotation:t.rotation};return t.shape&&(e.shape=i.extend({},t.shape)),e}},e.clipPointsByRect=function(t,e){return i.map(t,function(t){var n=t[0];n=T(n,e.x),n=M(n,e.x+e.width);var i=t[1];return i=T(i,e.y),[n,i=M(i,e.y+e.height)]})},e.clipRectByRect=function(t,e){var n=T(t.x,e.x),i=M(t.x+t.width,e.x+e.width),r=T(t.y,e.y),o=M(t.y+t.height,e.y+e.height);if(i>=n&&o>=r)return{x:n,y:r,width:i-n,height:o-r}},e.createIcon=function(t,e,n){var r=(e=i.extend({rectHover:!0},e)).style={strokeNoScale:!0};if(n=n||{x:-1,y:-1,width:2,height:2},t)return 0===t.indexOf("image://")?(r.image=t.slice(8),i.defaults(r,n),new c(e)):P(t.replace("path://",""),e,n,"center")},e.linePolygonIntersect=function(t,e,n,i,r){for(var o=0,a=r[r.length-1];o<r.length;o++){var s=r[o];if(ht(t,e,n,i,s[0],s[1],a[0],a[1]))return!0;a=s}},e.lineLineIntersect=ht},bEqG:function(t,e,n){var i=n("63Q/"),r=i.prepareDataCoordInfo,o=i.getStackedOnPoint;t.exports=function(t,e,n,i,a,s,A,l){for(var c=function(t,e){var n=[];return e.diff(t).add(function(t){n.push({cmd:"+",idx:t})}).update(function(t,e){n.push({cmd:"=",idx:e,idx1:t})}).remove(function(t){n.push({cmd:"-",idx:t})}).execute(),n}(t,e),u=[],h=[],d=[],f=[],p=[],g=[],m=[],v=r(a,e,A),y=r(s,t,l),w=0;w<c.length;w++){var x=c[w],B=!0;switch(x.cmd){case"=":var b=t.getItemLayout(x.idx),C=e.getItemLayout(x.idx1);(isNaN(b[0])||isNaN(b[1]))&&(b=C.slice()),u.push(b),h.push(C),d.push(n[x.idx]),f.push(i[x.idx1]),m.push(e.getRawIndex(x.idx1));break;case"+":var _=x.idx;u.push(a.dataToPoint([e.get(v.dataDimsForPoint[0],_),e.get(v.dataDimsForPoint[1],_)])),h.push(e.getItemLayout(_).slice()),d.push(o(v,a,e,_)),f.push(i[_]),m.push(e.getRawIndex(_));break;case"-":_=x.idx;var S=t.getRawIndex(_);S!==_?(u.push(t.getItemLayout(_)),h.push(s.dataToPoint([t.get(y.dataDimsForPoint[0],_),t.get(y.dataDimsForPoint[1],_)])),d.push(n[_]),f.push(o(y,s,t,_)),m.push(S)):B=!1}B&&(p.push(x),g.push(g.length))}g.sort(function(t,e){return m[t]-m[e]});var I=[],T=[],M=[],Q=[],F=[];for(w=0;w<g.length;w++)_=g[w],I[w]=u[_],T[w]=h[_],M[w]=d[_],Q[w]=f[_],F[w]=p[_];return{current:I,next:T,stackedOnCurrent:M,stackedOnNext:Q,status:F}}},"bSk/":function(t,e,n){var i=n("A5tq"),r=n("Gkcz"),o=n("YyE5"),a=n("r8bK"),s=r.extend({type:"cartesian2dAxis",axis:null,init:function(){s.superApply(this,"init",arguments),this.resetRange()},mergeOption:function(){s.superApply(this,"mergeOption",arguments),this.resetRange()},restoreData:function(){s.superApply(this,"restoreData",arguments),this.resetRange()},getCoordSysModel:function(){return this.ecModel.queryComponents({mainType:"grid",index:this.option.gridIndex,id:this.option.gridId})[0]}});function A(t,e){return e.type||(e.data?"category":"value")}i.merge(s.prototype,a);var l={offset:0};o("x",s,A,l),o("y",s,A,l);var c=s;t.exports=c},bZnl:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("bDs9"),a=n("Nkq/").setLabel,s=n("K3bJ"),A=n("JQrN"),l=n("UnJe"),c=n("Q1ps"),u=n("Lk3r").throttle,h=n("+2Hi").createClipPath,d=n("ejPS"),f=["itemStyle","barBorderWidth"],p=[0,0];r.extend(s.prototype,A);var g=i.extendChartView({type:"bar",render:function(t,e,n){this._updateDrawMode(t);var i=t.get("coordinateSystem");return"cartesian2d"!==i&&"polar"!==i||(this._isLargeDraw?this._renderLarge(t,e,n):this._renderNormal(t,e,n)),this.group},incrementalPrepareRender:function(t,e,n){this._clear(),this._updateDrawMode(t)},incrementalRender:function(t,e,n,i){this._incrementalRenderLarge(t,e)},_updateDrawMode:function(t){var e=t.pipelineContext.large;(null==this._isLargeDraw||e^this._isLargeDraw)&&(this._isLargeDraw=e,this._clear())},_renderNormal:function(t,e,n){var i,r=this.group,a=t.getData(),s=this._data,A=t.coordinateSystem,l=A.getBaseAxis();"cartesian2d"===A.type?i=l.isHorizontal():"polar"===A.type&&(i="angle"===l.dim);var u=t.isAnimationEnabled()?t:null,h=t.get("clip",!0),d=function(t,e){var n=t.getArea&&t.getArea();if("cartesian2d"===t.type){var i=t.getBaseAxis();if("category"!==i.type||!i.onBand){var r=e.getLayout("bandWidth");i.isHorizontal()?(n.x-=r,n.width+=2*r):(n.y-=r,n.height+=2*r)}}return n}(A,a);r.removeClipPath();var f=t.get("roundCap",!0),p=t.get("showBackground",!0),g=t.getModel("backgroundStyle"),m=g.get("barBorderRadius")||0,v=[],C=this._backgroundEls||[],S=function(t){var e=b[A.type](a,t),n=function(t,e,n){return new("polar"===t.type?o.Sector:o.Rect)({shape:M(e,n,t),silent:!0,z2:0})}(A,i,e);return n.useStyle(g.getBarItemStyle()),"cartesian2d"===A.type&&n.setShape("r",m),v[t]=n,n};a.diff(s).add(function(e){var n=a.getItemModel(e),o=b[A.type](a,e,n);if(p&&S(e),a.hasValue(e)){if(h)if(y[A.type](d,o))return void r.remove(s);var s=w[A.type](e,o,i,u,!1,f);a.setItemGraphicEl(e,s),r.add(s),_(s,a,e,n,o,t,i,"polar"===A.type)}}).update(function(e,n){var l=a.getItemModel(e),c=b[A.type](a,e,l);if(p){var x;0===C.length?x=S(n):((x=C[n]).useStyle(g.getBarItemStyle()),"cartesian2d"===A.type&&x.setShape("r",m),v[e]=x);var B=b[A.type](a,e),I=M(i,B,A);o.updateProps(x,{shape:I},u,e)}var T=s.getItemGraphicEl(n);if(a.hasValue(e)){if(h)if(y[A.type](d,c))return void r.remove(T);T?o.updateProps(T,{shape:c},u,e):T=w[A.type](e,c,i,u,!0,f),a.setItemGraphicEl(e,T),r.add(T),_(T,a,e,l,c,t,i,"polar"===A.type)}else r.remove(T)}).remove(function(t){var e=s.getItemGraphicEl(t);"cartesian2d"===A.type?e&&x(t,u,e):e&&B(t,u,e)}).execute();var I=this._backgroundGroup||(this._backgroundGroup=new c);I.removeAll();for(var T=0;T<v.length;++T)I.add(v[T]);r.add(I),this._backgroundEls=v,this._data=a},_renderLarge:function(t,e,n){this._clear(),I(t,this.group);var i=t.get("clip",!0)?h(t.coordinateSystem,!1,t):null;i?this.group.setClipPath(i):this.group.removeClipPath()},_incrementalRenderLarge:function(t,e){this._removeBackground(),I(e,this.group,!0)},dispose:r.noop,remove:function(t){this._clear(t)},_clear:function(t){var e=this.group,n=this._data;t&&t.get("animation")&&n&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],n.eachItemGraphicEl(function(e){"sector"===e.type?B(e.dataIndex,t,e):x(e.dataIndex,t,e)})):e.removeAll(),this._data=null},_removeBackground:function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null}}),m=Math.max,v=Math.min,y={cartesian2d:function(t,e){var n=e.width<0?-1:1,i=e.height<0?-1:1;n<0&&(e.x+=e.width,e.width=-e.width),i<0&&(e.y+=e.height,e.height=-e.height);var r=m(e.x,t.x),o=v(e.x+e.width,t.x+t.width),a=m(e.y,t.y),s=v(e.y+e.height,t.y+t.height);e.x=r,e.y=a,e.width=o-r,e.height=s-a;var A=e.width<0||e.height<0;return n<0&&(e.x+=e.width,e.width=-e.width),i<0&&(e.y+=e.height,e.height=-e.height),A},polar:function(t,e){var n=e.r0<=e.r?1:-1;if(n<0){var i=e.r;e.r=e.r0,e.r0=i}i=v(e.r,t.r);var r=m(e.r0,t.r0);e.r=i,e.r0=r;var o=i-r<0;if(n<0){i=e.r;e.r=e.r0,e.r0=i}return o}},w={cartesian2d:function(t,e,n,i,a){var s=new o.Rect({shape:r.extend({},e),z2:1});if(s.name="item",i){var A=s.shape,l=n?"height":"width",c={};A[l]=0,c[l]=e[l],o[a?"updateProps":"initProps"](s,{shape:c},i,t)}return s},polar:function(t,e,n,i,a,s){var A=e.startAngle<e.endAngle,l=new(!n&&s?d:o.Sector)({shape:r.defaults({clockwise:A},e),z2:1});if(l.name="item",i){var c=l.shape,u=n?"r":"endAngle",h={};c[u]=n?0:e.startAngle,h[u]=e[u],o[a?"updateProps":"initProps"](l,{shape:h},i,t)}return l}};function x(t,e,n){n.style.text=null,o.updateProps(n,{shape:{width:0}},e,t,function(){n.parent&&n.parent.remove(n)})}function B(t,e,n){n.style.text=null,o.updateProps(n,{shape:{r:n.shape.r0}},e,t,function(){n.parent&&n.parent.remove(n)})}var b={cartesian2d:function(t,e,n){var i=t.getItemLayout(e),r=n?function(t,e){var n=t.get(f)||0,i=isNaN(e.width)?Number.MAX_VALUE:Math.abs(e.width),r=isNaN(e.height)?Number.MAX_VALUE:Math.abs(e.height);return Math.min(n,i,r)}(n,i):0,o=i.width>0?1:-1,a=i.height>0?1:-1;return{x:i.x+o*r/2,y:i.y+a*r/2,width:i.width-o*r,height:i.height-a*r}},polar:function(t,e,n){var i=t.getItemLayout(e);return{cx:i.cx,cy:i.cy,r0:i.r0,r:i.r,startAngle:i.startAngle,endAngle:i.endAngle}}};function C(t){return null!=t.startAngle&&null!=t.endAngle&&t.startAngle===t.endAngle}function _(t,e,n,i,s,A,l,c){var u=e.getItemVisual(n,"color"),h=e.getItemVisual(n,"opacity"),d=e.getVisual("borderColor"),f=i.getModel("itemStyle"),p=i.getModel("emphasis.itemStyle").getBarItemStyle();c||t.setShape("r",f.get("barBorderRadius")||0),t.useStyle(r.defaults({stroke:C(s)?"none":d,fill:C(s)?"none":u,opacity:h},f.getBarItemStyle()));var g=i.getShallow("cursor");g&&t.attr("cursor",g);var m=l?s.height>0?"bottom":"top":s.width>0?"left":"right";c||a(t.style,p,i,u,A,n,m),C(s)&&(p.fill=p.stroke="none"),o.setHoverStyle(t,p)}var S=l.extend({type:"largeBar",shape:{points:[]},buildPath:function(t,e){for(var n=e.points,i=this.__startPoint,r=this.__baseDimIdx,o=0;o<n.length;o+=2)i[r]=n[o+r],t.moveTo(i[0],i[1]),t.lineTo(n[o],n[o+1])}});function I(t,e,n){var i=t.getData(),r=[],o=i.getLayout("valueAxisHorizontal")?1:0;r[1-o]=i.getLayout("valueAxisStart");var a=i.getLayout("largeDataIndices"),s=i.getLayout("barWidth"),A=t.getModel("backgroundStyle");if(t.get("showBackground",!0)){var l=i.getLayout("largeBackgroundPoints"),c=[];c[1-o]=i.getLayout("backgroundStart");var u=new S({shape:{points:l},incremental:!!n,__startPoint:c,__baseDimIdx:o,__largeDataIndices:a,__barWidth:s,silent:!0,z2:0});!function(t,e,n){var i=e.get("borderColor")||e.get("color"),r=e.getItemStyle(["color","borderColor"]);t.useStyle(r),t.style.fill=null,t.style.stroke=i,t.style.lineWidth=n.getLayout("barWidth")}(u,A,i),e.add(u)}var h=new S({shape:{points:i.getLayout("largePoints")},incremental:!!n,__startPoint:r,__baseDimIdx:o,__largeDataIndices:a,__barWidth:s});e.add(h),function(t,e,n){var i=n.getVisual("borderColor")||n.getVisual("color"),r=e.getModel("itemStyle").getItemStyle(["color","borderColor"]);t.useStyle(r),t.style.fill=null,t.style.stroke=i,t.style.lineWidth=n.getLayout("barWidth")}(h,t,i),h.seriesIndex=t.seriesIndex,t.get("silent")||(h.on("mousedown",T),h.on("mousemove",T))}var T=u(function(t){var e=function(t,e,n){var i=t.__baseDimIdx,r=1-i,o=t.shape.points,a=t.__largeDataIndices,s=Math.abs(t.__barWidth/2),A=t.__startPoint[r];p[0]=e,p[1]=n;for(var l=p[i],c=p[1-i],u=l-s,h=l+s,d=0,f=o.length/2;d<f;d++){var g=2*d,m=o[g+i],v=o[g+r];if(m>=u&&m<=h&&(A<=v?c>=A&&c<=v:c>=v&&c<=A))return a[d]}return-1}(this,t.offsetX,t.offsetY);this.dataIndex=e>=0?e:null},30,!1);function M(t,e,n){var i,r="polar"===n.type;return i=r?n.getArea():n.grid.getRect(),r?{cx:i.cx,cy:i.cy,r0:t?i.r0:e.r0,r:t?i.r:e.r,startAngle:t?e.startAngle:0,endAngle:t?e.endAngle:2*Math.PI}:{x:t?e.x:i.x,y:t?i.y:e.y,width:t?e.width:i.width,height:t?i.height:e.height}}t.exports=g},bdcs:function(t,e,n){var i=n("A5tq"),r=n("e6hA"),o=n("BGuy"),a=n("Npv3"),s=i.bind,A=r.extend({type:"dataZoom.inside",init:function(t,e){this._range},render:function(t,e,n,r){A.superApply(this,"render",arguments),this._range=t.getPercentRange(),i.each(this.getTargetCoordInfo(),function(e,r){var o=i.map(e,function(t){return a.generateCoordId(t.model)});i.each(e,function(e){var A=e.model,c={};i.each(["pan","zoom","scrollMove"],function(t){c[t]=s(l[t],this,e,r)},this),a.register(n,{coordId:a.generateCoordId(A),allCoordIds:o,containsPoint:function(t,e,n){return A.coordinateSystem.containPoint([e,n])},dataZoomId:t.id,dataZoomModel:t,getRange:c})},this)},this)},dispose:function(){a.unregister(this.api,this.dataZoomModel.id),A.superApply(this,"dispose",arguments),this._range=null}}),l={zoom:function(t,e,n,i){var r=this._range,a=r.slice(),s=t.axisModels[0];if(s){var A=u[e](null,[i.originX,i.originY],s,n,t),l=(A.signal>0?A.pixelStart+A.pixelLength-A.pixel:A.pixel-A.pixelStart)/A.pixelLength*(a[1]-a[0])+a[0],c=Math.max(1/i.scale,0);a[0]=(a[0]-l)*c+l,a[1]=(a[1]-l)*c+l;var h=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();return o(0,a,[0,100],0,h.minSpan,h.maxSpan),this._range=a,r[0]!==a[0]||r[1]!==a[1]?a:void 0}},pan:c(function(t,e,n,i,r,o){var a=u[i]([o.oldX,o.oldY],[o.newX,o.newY],e,r,n);return a.signal*(t[1]-t[0])*a.pixel/a.pixelLength}),scrollMove:c(function(t,e,n,i,r,o){return u[i]([0,0],[o.scrollDelta,o.scrollDelta],e,r,n).signal*(t[1]-t[0])*o.scrollDelta})};function c(t){return function(e,n,i,r){var a=this._range,s=a.slice(),A=e.axisModels[0];if(A){var l=t(s,A,e,n,i,r);return o(l,s,[0,100],"all"),this._range=s,a[0]!==s[0]||a[1]!==s[1]?s:void 0}}}var u={grid:function(t,e,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem.getRect();return t=t||[0,0],"x"===o.dim?(a.pixel=e[0]-t[0],a.pixelLength=s.width,a.pixelStart=s.x,a.signal=o.inverse?1:-1):(a.pixel=e[1]-t[1],a.pixelLength=s.height,a.pixelStart=s.y,a.signal=o.inverse?-1:1),a},polar:function(t,e,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem,A=s.getRadiusAxis().getExtent(),l=s.getAngleAxis().getExtent();return t=t?s.pointToCoord(t):[0,0],e=s.pointToCoord(e),"radiusAxis"===n.mainType?(a.pixel=e[0]-t[0],a.pixelLength=A[1]-A[0],a.pixelStart=A[0],a.signal=o.inverse?1:-1):(a.pixel=e[1]-t[1],a.pixelLength=l[1]-l[0],a.pixelStart=l[0],a.signal=o.inverse?-1:1),a},singleAxis:function(t,e,n,i,r){var o=n.axis,a=r.model.coordinateSystem.getRect(),s={};return t=t||[0,0],"horizontal"===o.orient?(s.pixel=e[0]-t[0],s.pixelLength=a.width,s.pixelStart=a.x,s.signal=o.inverse?1:-1):(s.pixel=e[1]-t[1],s.pixelLength=a.height,s.pixelStart=a.y,s.signal=o.inverse?-1:1),s}},h=A;t.exports=h},c51n:function(t,e,n){n("LhGV"),(0,n("ogql").registerPainter)("vml",n("EvYG"))},cEZL:function(t,e,n){var i=n("A5tq"),r=n("lbYD"),o=n("rG8S"),a=n("n/EV"),s=n("TfMJ"),A=n("9F28"),l="silent";function c(){s.stop(this.event)}function u(){}u.prototype.dispose=function(){};var h=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],d=function(t,e,n,i){a.call(this),this.storage=t,this.painter=e,this.painterRoot=i,n=n||new u,this.proxy=null,this._hovered={},this._lastTouchMoment,this._lastX,this._lastY,this._gestureMgr,o.call(this),this.setHandlerProxy(n)};function f(t,e,n){if(t[t.rectHover?"rectContain":"contain"](e,n)){for(var i,r=t;r;){if(r.clipPath&&!r.clipPath.contain(e,n))return!1;r.silent&&(i=!0),r=r.parent}return!i||l}return!1}function p(t,e,n){var i=t.painter;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}d.prototype={constructor:d,setHandlerProxy:function(t){this.proxy&&this.proxy.dispose(),t&&(i.each(h,function(e){t.on&&t.on(e,this[e],this)},this),t.handler=this),this.proxy=t},mousemove:function(t){var e=t.zrX,n=t.zrY,i=p(this,e,n),r=this._hovered,o=r.target;o&&!o.__zr&&(o=(r=this.findHover(r.x,r.y)).target);var a=this._hovered=i?{x:e,y:n}:this.findHover(e,n),s=a.target,A=this.proxy;A.setCursor&&A.setCursor(s?s.cursor:"default"),o&&s!==o&&this.dispatchToElement(r,"mouseout",t),this.dispatchToElement(a,"mousemove",t),s&&s!==o&&this.dispatchToElement(a,"mouseover",t)},mouseout:function(t){var e=t.zrEventControl,n=t.zrIsToLocalDOM;"only_globalout"!==e&&this.dispatchToElement(this._hovered,"mouseout",t),"no_globalout"!==e&&!n&&this.trigger("globalout",{type:"globalout",event:t})},resize:function(t){this._hovered={}},dispatch:function(t,e){var n=this[t];n&&n.call(this,e)},dispose:function(){this.proxy.dispose(),this.storage=this.proxy=this.painter=null},setCursorStyle:function(t){var e=this.proxy;e.setCursor&&e.setCursor(t)},dispatchToElement:function(t,e,n){var i=(t=t||{}).target;if(!i||!i.silent){for(var r="on"+e,o=function(t,e,n){return{type:t,event:n,target:e.target,topTarget:e.topTarget,cancelBubble:!1,offsetX:n.zrX,offsetY:n.zrY,gestureEvent:n.gestureEvent,pinchX:n.pinchX,pinchY:n.pinchY,pinchScale:n.pinchScale,wheelDelta:n.zrDelta,zrByTouch:n.zrByTouch,which:n.which,stop:c}}(e,t,n);i&&(i[r]&&(o.cancelBubble=i[r].call(i,o)),i.trigger(e,o),i=i.parent,!o.cancelBubble););o.cancelBubble||(this.trigger(e,o),this.painter&&this.painter.eachOtherLayer(function(t){"function"==typeof t[r]&&t[r].call(t,o),t.trigger&&t.trigger(e,o)}))}},findHover:function(t,e,n){for(var i=this.storage.getDisplayList(),r={x:t,y:e},o=i.length-1;o>=0;o--){var a;if(i[o]!==n&&!i[o].ignore&&(a=f(i[o],t,e))&&(!r.topTarget&&(r.topTarget=i[o]),a!==l)){r.target=i[o];break}}return r},processGesture:function(t,e){this._gestureMgr||(this._gestureMgr=new A);var n=this._gestureMgr;"start"===e&&n.clear();var i=n.recognize(t,this.findHover(t.zrX,t.zrY,null).target,this.proxy.dom);if("end"===e&&n.clear(),i){var r=i.type;t.gestureEvent=r,this.dispatchToElement({target:i.target},r,i.event)}}},i.each(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],function(t){d.prototype[t]=function(e){var n,i,o=e.zrX,a=e.zrY,s=p(this,o,a);if("mouseup"===t&&s||(i=(n=this.findHover(o,a)).target),"mousedown"===t)this._downEl=i,this._downPoint=[e.zrX,e.zrY],this._upEl=i;else if("mouseup"===t)this._upEl=i;else if("click"===t){if(this._downEl!==this._upEl||!this._downPoint||r.dist(this._downPoint,[e.zrX,e.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,t,e)}}),i.mixin(d,a),i.mixin(d,o);var g=d;t.exports=g},"cJ/l":function(t,e,n){var i=n("A5tq"),r=n("zrBH"),o=n("bDs9"),a=n("UnJe"),s=n("+2Hi").createClipPath,A=["itemStyle"],l=["emphasis","itemStyle"],c=["color","color0","borderColor","borderColor0"],u=r.extend({type:"candlestick",render:function(t,e,n){this.group.removeClipPath(),this._updateDrawMode(t),this._isLargeDraw?this._renderLarge(t):this._renderNormal(t)},incrementalPrepareRender:function(t,e,n){this._clear(),this._updateDrawMode(t)},incrementalRender:function(t,e,n,i){this._isLargeDraw?this._incrementalRenderLarge(t,e):this._incrementalRenderNormal(t,e)},_updateDrawMode:function(t){var e=t.pipelineContext.large;(null==this._isLargeDraw||e^this._isLargeDraw)&&(this._isLargeDraw=e,this._clear())},_renderNormal:function(t){var e=t.getData(),n=this._data,i=this.group,r=e.getLayout("isSimpleBox"),a=t.get("clip",!0),s=t.coordinateSystem,A=s.getArea&&s.getArea();this._data||i.removeAll(),e.diff(n).add(function(n){if(e.hasValue(n)){var s,l=e.getItemLayout(n);if(a&&f(A,l))return;s=d(l,n,!0),o.initProps(s,{shape:{points:l.ends}},t,n),p(s,e,n,r),i.add(s),e.setItemGraphicEl(n,s)}}).update(function(s,l){var c=n.getItemGraphicEl(l);if(e.hasValue(s)){var u=e.getItemLayout(s);a&&f(A,u)?i.remove(c):(c?o.updateProps(c,{shape:{points:u.ends}},t,s):c=d(u,s),p(c,e,s,r),i.add(c),e.setItemGraphicEl(s,c))}else i.remove(c)}).remove(function(t){var e=n.getItemGraphicEl(t);e&&i.remove(e)}).execute(),this._data=e},_renderLarge:function(t){this._clear(),m(t,this.group);var e=t.get("clip",!0)?s(t.coordinateSystem,!1,t):null;e?this.group.setClipPath(e):this.group.removeClipPath()},_incrementalRenderNormal:function(t,e){for(var n,i=e.getData(),r=i.getLayout("isSimpleBox");null!=(n=t.next());){var o;p(o=d(i.getItemLayout(n),n),i,n,r),o.incremental=!0,this.group.add(o)}},_incrementalRenderLarge:function(t,e){m(e,this.group,!0)},remove:function(t){this._clear()},_clear:function(){this.group.removeAll(),this._data=null},dispose:i.noop}),h=a.extend({type:"normalCandlestickBox",shape:{},buildPath:function(t,e){var n=e.points;this.__simpleBox?(t.moveTo(n[4][0],n[4][1]),t.lineTo(n[6][0],n[6][1])):(t.moveTo(n[0][0],n[0][1]),t.lineTo(n[1][0],n[1][1]),t.lineTo(n[2][0],n[2][1]),t.lineTo(n[3][0],n[3][1]),t.closePath(),t.moveTo(n[4][0],n[4][1]),t.lineTo(n[5][0],n[5][1]),t.moveTo(n[6][0],n[6][1]),t.lineTo(n[7][0],n[7][1]))}});function d(t,e,n){var r=t.ends;return new h({shape:{points:n?function(t,e){return i.map(t,function(t){return(t=t.slice())[1]=e.initBaseline,t})}(r,t):r},z2:100})}function f(t,e){for(var n=!0,i=0;i<e.ends.length;i++)if(t.contain(e.ends[i][0],e.ends[i][1])){n=!1;break}return n}function p(t,e,n,i){var r=e.getItemModel(n),a=r.getModel(A),s=e.getItemVisual(n,"color"),u=e.getItemVisual(n,"borderColor")||s,h=a.getItemStyle(c);t.useStyle(h),t.style.strokeNoScale=!0,t.style.fill=s,t.style.stroke=u,t.__simpleBox=i;var d=r.getModel(l).getItemStyle();o.setHoverStyle(t,d)}var g=a.extend({type:"largeCandlestickBox",shape:{},buildPath:function(t,e){for(var n=e.points,i=0;i<n.length;)if(this.__sign===n[i++]){var r=n[i++];t.moveTo(r,n[i++]),t.lineTo(r,n[i++])}else i+=3}});function m(t,e,n){var i=t.getData(),r=i.getLayout("largePoints"),o=new g({shape:{points:r},__sign:1});e.add(o);var a=new g({shape:{points:r},__sign:-1});e.add(a),v(1,o,t,i),v(-1,a,t,i),n&&(o.incremental=!0,a.incremental=!0)}function v(t,e,n,i){var r=t>0?"P":"N",o=i.getVisual("borderColor"+r)||i.getVisual("color"+r),a=n.getModel(A).getItemStyle(c);e.useStyle(a),e.style.fill=null,e.style.stroke=o}var y=u;t.exports=y},cLid:function(t,e,n){var i=n("A5tq"),r=i.retrieve,o=i.defaults,a=i.extend,s=i.each,A=n("DWNL"),l=n("bDs9"),c=n("K3bJ"),u=n("w9uD"),h=u.isRadianAroundZero,d=u.remRadian,f=n("f+YC").createSymbol,p=n("yW06"),g=n("lbYD").applyTransform,m=n("eII0").shouldShowAllLabels,v=Math.PI,y=function(t,e){this.opt=e,this.axisModel=t,o(e,{labelOffset:0,nameDirection:1,tickDirection:1,labelDirection:1,silent:!0}),this.group=new l.Group;var n=new l.Group({position:e.position.slice(),rotation:e.rotation});n.updateTransform(),this._transform=n.transform,this._dumbGroup=n};y.prototype={constructor:y,hasBuilder:function(t){return!!w[t]},add:function(t){w[t].call(this)},getGroup:function(){return this.group}};var w={axisLine:function(){var t=this.opt,e=this.axisModel;if(e.get("axisLine.show")){var n=this.axisModel.axis.getExtent(),i=this._transform,r=[n[0],0],o=[n[1],0];i&&(g(r,r,i),g(o,o,i));var A=a({lineCap:"round"},e.getModel("axisLine.lineStyle").getLineStyle());this.group.add(new l.Line({anid:"line",subPixelOptimize:!0,shape:{x1:r[0],y1:r[1],x2:o[0],y2:o[1]},style:A,strokeContainThreshold:t.strokeContainThreshold||5,silent:!0,z2:1}));var c=e.get("axisLine.symbol"),u=e.get("axisLine.symbolSize"),h=e.get("axisLine.symbolOffset")||0;if("number"==typeof h&&(h=[h,h]),null!=c){"string"==typeof c&&(c=[c,c]),"string"!=typeof u&&"number"!=typeof u||(u=[u,u]);var d=u[0],p=u[1];s([{rotate:t.rotation+Math.PI/2,offset:h[0],r:0},{rotate:t.rotation-Math.PI/2,offset:h[1],r:Math.sqrt((r[0]-o[0])*(r[0]-o[0])+(r[1]-o[1])*(r[1]-o[1]))}],function(e,n){if("none"!==c[n]&&null!=c[n]){var i=f(c[n],-d/2,-p/2,d,p,A.stroke,!0),o=e.r+e.offset,a=[r[0]+o*Math.cos(t.rotation),r[1]-o*Math.sin(t.rotation)];i.attr({rotation:e.rotate,position:a,silent:!0,z2:11}),this.group.add(i)}},this)}}},axisTickLabel:function(){var t=this.axisModel,e=this.opt,n=function(t,e,n){var i=e.axis,r=e.getModel("axisTick");if(!r.get("show")||i.scale.isBlank())return;for(var a=r.getModel("lineStyle"),s=n.tickDirection*r.get("length"),A=I(i.getTicksCoords(),t._transform,s,o(a.getLineStyle(),{stroke:e.get("axisLine.lineStyle.color")}),"ticks"),l=0;l<A.length;l++)t.group.add(A[l]);return A}(this,t,e);!function(t,e,n){if(m(t.axis))return;var i=t.get("axisLabel.showMinLabel"),r=t.get("axisLabel.showMaxLabel");e=e||[],n=n||[];var o=e[0],a=e[1],s=e[e.length-1],A=e[e.length-2],l=n[0],c=n[1],u=n[n.length-1],h=n[n.length-2];!1===i?(C(o),C(l)):_(o,a)&&(i?(C(a),C(c)):(C(o),C(l)));!1===r?(C(s),C(u)):_(A,s)&&(r?(C(A),C(h)):(C(s),C(u)))}(t,function(t,e,n){var i=e.axis;if(!r(n.axisLabelShow,e.get("axisLabel.show"))||i.scale.isBlank())return;var o=e.getModel("axisLabel"),a=o.get("margin"),A=i.getViewLabels(),u=(r(n.labelRotate,o.get("rotate"))||0)*v/180,h=B(n.rotation,u,n.labelDirection),d=e.getCategories&&e.getCategories(!0),f=[],p=b(e),g=e.get("triggerEvent");return s(A,function(r,s){var A=r.tickValue,u=r.formattedLabel,m=r.rawLabel,v=o;d&&d[A]&&d[A].textStyle&&(v=new c(d[A].textStyle,o,e.ecModel));var y=v.getTextColor()||e.get("axisLine.lineStyle.color"),w=[i.dataToCoord(A),n.labelOffset+n.labelDirection*a],B=new l.Text({anid:"label_"+A,position:w,rotation:h.rotation,silent:p,z2:10});l.setTextStyle(B.style,v,{text:u,textAlign:v.getShallow("align",!0)||h.textAlign,textVerticalAlign:v.getShallow("verticalAlign",!0)||v.getShallow("baseline",!0)||h.textVerticalAlign,textFill:"function"==typeof y?y("category"===i.type?m:"value"===i.type?A+"":A,s):y}),g&&(B.eventData=x(e),B.eventData.targetType="axisLabel",B.eventData.value=m),t._dumbGroup.add(B),B.updateTransform(),f.push(B),t.group.add(B),B.decomposeTransform()}),f}(this,t,e),n),function(t,e,n){var i=e.axis,r=e.getModel("minorTick");if(!r.get("show")||i.scale.isBlank())return;var a=i.getMinorTicksCoords();if(!a.length)return;for(var s=r.getModel("lineStyle"),A=n.tickDirection*r.get("length"),l=o(s.getLineStyle(),o(e.getModel("axisTick").getLineStyle(),{stroke:e.get("axisLine.lineStyle.color")})),c=0;c<a.length;c++)for(var u=I(a[c],t._transform,A,l,"minorticks_"+c),h=0;h<u.length;h++)t.group.add(u[h])}(this,t,e)},axisName:function(){var t=this.opt,e=this.axisModel,n=r(t.axisName,e.get("name"));if(n){var i,o,s=e.get("nameLocation"),c=t.nameDirection,u=e.getModel("nameTextStyle"),f=e.get("nameGap")||0,p=this.axisModel.axis.getExtent(),g=p[0]>p[1]?-1:1,m=["start"===s?p[0]-g*f:"end"===s?p[1]+g*f:(p[0]+p[1])/2,S(s)?t.labelOffset+c*f:0],y=e.get("nameRotate");null!=y&&(y=y*v/180),S(s)?i=B(t.rotation,null!=y?y:t.rotation,c):(i=function(t,e,n,i){var r,o,a=d(n-t.rotation),s=i[0]>i[1],A="start"===e&&!s||"start"!==e&&s;h(a-v/2)?(o=A?"bottom":"top",r="center"):h(a-1.5*v)?(o=A?"top":"bottom",r="center"):(o="middle",r=a<1.5*v&&a>v/2?A?"left":"right":A?"right":"left");return{rotation:a,textAlign:r,textVerticalAlign:o}}(t,s,y||0,p),null!=(o=t.axisNameAvailableWidth)&&(o=Math.abs(o/Math.sin(i.rotation)),!isFinite(o)&&(o=null)));var w=u.getFont(),C=e.get("nameTruncate",!0)||{},_=C.ellipsis,I=r(t.nameTruncateMaxWidth,C.maxWidth,o),T=null!=_&&null!=I?A.truncateText(n,I,w,_,{minChar:2,placeholder:C.placeholder}):n,M=e.get("tooltip",!0),Q=e.mainType,F={componentType:Q,name:n,$vars:["name"]};F[Q+"Index"]=e.componentIndex;var k=new l.Text({anid:"name",__fullText:n,__truncatedText:T,position:m,rotation:i.rotation,silent:b(e),z2:1,tooltip:M&&M.show?a({content:n,formatter:function(){return n},formatterParams:F},M):null});l.setTextStyle(k.style,u,{text:T,textFont:w,textFill:u.getTextColor()||e.get("axisLine.lineStyle.color"),textAlign:u.get("align")||i.textAlign,textVerticalAlign:u.get("verticalAlign")||i.textVerticalAlign}),e.get("triggerEvent")&&(k.eventData=x(e),k.eventData.targetType="axisName",k.eventData.name=n),this._dumbGroup.add(k),k.updateTransform(),this.group.add(k),k.decomposeTransform()}}},x=y.makeAxisEventDataBase=function(t){var e={componentType:t.mainType,componentIndex:t.componentIndex};return e[t.mainType+"Index"]=t.componentIndex,e},B=y.innerTextLayout=function(t,e,n){var i,r,o=d(e-t);return h(o)?(r=n>0?"top":"bottom",i="center"):h(o-v)?(r=n>0?"bottom":"top",i="center"):(r="middle",i=o>0&&o<v?n>0?"right":"left":n>0?"left":"right"),{rotation:o,textAlign:i,textVerticalAlign:r}};var b=y.isLabelSilent=function(t){var e=t.get("tooltip");return t.get("silent")||!(t.get("triggerEvent")||e&&e.show)};function C(t){t&&(t.ignore=!0)}function _(t,e,n){var i=t&&t.getBoundingRect().clone(),r=e&&e.getBoundingRect().clone();if(i&&r){var o=p.identity([]);return p.rotate(o,o,-t.rotation),i.applyTransform(p.mul([],o,t.getLocalTransform())),r.applyTransform(p.mul([],o,e.getLocalTransform())),i.intersect(r)}}function S(t){return"middle"===t||"center"===t}function I(t,e,n,i,r){for(var o=[],a=[],s=[],A=0;A<t.length;A++){var c=t[A].coord;a[0]=c,a[1]=0,s[0]=c,s[1]=n,e&&(g(a,a,e),g(s,s,e));var u=new l.Line({anid:r+"_"+t[A].tickValue,subPixelOptimize:!0,shape:{x1:a[0],y1:a[1],x2:s[0],y2:s[1]},style:i,z2:2,silent:!0});o.push(u)}return o}var T=y;t.exports=T},cbvn:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=r.createHashMap,a=r.each;i.registerProcessor({getTargetSeries:function(t){var e=o();return t.eachComponent("dataZoom",function(t){t.eachTargetAxis(function(t,n,i){var r=i.getAxisProxy(t.name,n);a(r.getTargetSeriesModels(),function(t){e.set(t.uid,t)})})}),e},modifyOutputEnd:!0,overallReset:function(t,e){t.eachComponent("dataZoom",function(t){t.eachTargetAxis(function(t,n,i){i.getAxisProxy(t.name,n).reset(i,e)}),t.eachTargetAxis(function(t,n,i){i.getAxisProxy(t.name,n).filterData(i,e)})}),t.eachComponent("dataZoom",function(t){var e=t.findRepresentativeAxisProxy(),n=e.getDataPercentWindow(),i=e.getDataValueWindow();t.setCalculatedRange({start:n[0],end:n[1],startValue:i[0],endValue:i[1]})})}})},cgbH:function(t,e,n){var i=n("A5tq"),r=n("zrBH"),o=n("bDs9"),a=n("UnJe"),s=["itemStyle"],A=["emphasis","itemStyle"],l=r.extend({type:"boxplot",render:function(t,e,n){var i=t.getData(),r=this.group,o=this._data;this._data||r.removeAll();var a="horizontal"===t.get("layout")?1:0;i.diff(o).add(function(t){if(i.hasValue(t)){var e=u(i.getItemLayout(t),i,t,a,!0);i.setItemGraphicEl(t,e),r.add(e)}}).update(function(t,e){var n=o.getItemGraphicEl(e);if(i.hasValue(t)){var s=i.getItemLayout(t);n?h(s,n,i,t):n=u(s,i,t,a),r.add(n),i.setItemGraphicEl(t,n)}else r.remove(n)}).remove(function(t){var e=o.getItemGraphicEl(t);e&&r.remove(e)}).execute(),this._data=i},remove:function(t){var e=this.group,n=this._data;this._data=null,n&&n.eachItemGraphicEl(function(t){t&&e.remove(t)})},dispose:i.noop}),c=a.extend({type:"boxplotBoxPath",shape:{},buildPath:function(t,e){var n=e.points,i=0;for(t.moveTo(n[i][0],n[i][1]),i++;i<4;i++)t.lineTo(n[i][0],n[i][1]);for(t.closePath();i<n.length;i++)t.moveTo(n[i][0],n[i][1]),i++,t.lineTo(n[i][0],n[i][1])}});function u(t,e,n,r,o){var a=t.ends,s=new c({shape:{points:o?function(t,e,n){return i.map(t,function(t){return(t=t.slice())[e]=n.initBaseline,t})}(a,r,t):a}});return h(t,s,e,n,o),s}function h(t,e,n,i,r){var a=n.hostModel;(0,o[r?"initProps":"updateProps"])(e,{shape:{points:t.ends}},a,i);var l=n.getItemModel(i),c=l.getModel(s),u=n.getItemVisual(i,"color"),h=c.getItemStyle(["borderColor"]);h.stroke=u,h.strokeNoScale=!0,e.useStyle(h),e.z2=100;var d=l.getModel(A).getItemStyle();o.setHoverStyle(e,d)}var d=l;t.exports=d},ciBU:function(t,e,n){"use strict";function i(){return(i=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t}).apply(this,arguments)}var r=n("vRMc"),o=n.n(r),a=n("+p5o"),s=n("SfJO"),A=["ref","key","style","class","attrs","refInFor","nativeOn","directives","staticClass","staticStyle"],l={nativeOn:"on"};function c(t,e){var n=A.reduce(function(e,n){return t.data[n]&&(e[l[n]||n]=t.data[n]),e},{});return e&&(n.on=n.on||{},i(n.on,t.data.on)),n}function u(t,e){for(var n=arguments.length,i=new Array(n>2?n-2:0),r=2;r<n;r++)i[r-2]=arguments[r];var o=t.listeners[e];o&&(Array.isArray(o)?o.forEach(function(t){t.apply(void 0,i)}):o.apply(void 0,i))}function h(t,e){var n=new a.a({el:document.createElement("div"),props:t.props,render:function(n){return n(t,i({props:this.$props},e))}});return document.body.appendChild(n.$el),n}var d={zIndex:2e3,lockCount:0,stack:[],find:function(t){return this.stack.filter(function(e){return e.vm===t})[0]},remove:function(t){var e=this.find(t);if(e){e.vm=null,e.overlay=null;var n=this.stack.indexOf(e);this.stack.splice(n,1)}}},f=!1;if(!s.j)try{var p={};Object.defineProperty(p,"passive",{get:function(){f=!0}}),window.addEventListener("test-passive",null,p)}catch(t){}function g(t,e,n,i){void 0===i&&(i=!1),s.j||t.addEventListener(e,n,!!f&&{capture:!1,passive:i})}function m(t,e,n){s.j||t.removeEventListener(e,n)}function v(t){t.stopPropagation()}function y(t,e){("boolean"!=typeof t.cancelable||t.cancelable)&&t.preventDefault(),e&&v(t)}var w=Object(s.b)("overlay"),x=w[0],B=w[1];function b(t){y(t,!0)}function C(t,e,n,r){var a=i({zIndex:e.zIndex},e.customStyle);return Object(s.e)(e.duration)&&(a.animationDuration=e.duration+"s"),t("transition",{attrs:{name:"van-fade"}},[t("div",o()([{directives:[{name:"show",value:e.show}],style:a,class:[B(),e.className],on:{touchmove:e.lockScroll?b:s.k}},c(r,!0)]),[null==n.default?void 0:n.default()])])}C.props={show:Boolean,zIndex:[Number,String],duration:[Number,String],className:null,customStyle:Object,lockScroll:{type:Boolean,default:!0}};var _=x(C);function S(t){var e=t.parentNode;e&&e.removeChild(t)}var I={className:"",customStyle:{}};function T(t){var e=d.find(t);if(e){var n=t.$el,r=e.config,o=e.overlay;n&&n.parentNode&&n.parentNode.insertBefore(o.$el,n),i(o,I,r,{show:!0})}}function M(t,e){var n=d.find(t);if(n)n.config=e;else{var i=function(t){return h(_,{on:{click:function(){t.$emit("click-overlay"),t.closeOnClickOverlay&&(t.onClickOverlay?t.onClickOverlay():t.close())}}})}(t);d.stack.push({vm:t,config:e,overlay:i})}T(t)}function Q(t){var e=d.find(t);e&&(e.overlay.show=!1)}function F(t){return t===window}var k=/scroll|auto|overlay/i;function D(t,e){void 0===e&&(e=window);for(var n=t;n&&"HTML"!==n.tagName&&"BODY"!==n.tagName&&1===n.nodeType&&n!==e;){var i=window.getComputedStyle(n).overflowY;if(k.test(i))return n;n=n.parentNode}return e}function U(t){var e="scrollTop"in t?t.scrollTop:t.pageYOffset;return Math.max(e,0)}function E(t,e){"scrollTop"in t?t.scrollTop=e:t.scrollTo(t.scrollX,e)}function L(){return window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0}function O(t){E(window,t),E(document.body,t)}function P(t,e){if(F(t))return 0;var n=e?U(e):L();return t.getBoundingClientRect().top+n}var H={data:function(){return{direction:""}},methods:{touchStart:function(t){this.resetTouchStatus(),this.startX=t.touches[0].clientX,this.startY=t.touches[0].clientY},touchMove:function(t){var e=t.touches[0];this.deltaX=e.clientX<0?0:e.clientX-this.startX,this.deltaY=e.clientY-this.startY,this.offsetX=Math.abs(this.deltaX),this.offsetY=Math.abs(this.deltaY);var n,i;(!this.direction||this.offsetX<10&&this.offsetY<10)&&(this.direction=(n=this.offsetX,i=this.offsetY,n>i?"horizontal":i>n?"vertical":""))},resetTouchStatus:function(){this.direction="",this.deltaX=0,this.deltaY=0,this.offsetX=0,this.offsetY=0},bindTouchEvent:function(t){var e=this.onTouchStart,n=this.onTouchMove,i=this.onTouchEnd;g(t,"touchstart",e),g(t,"touchmove",n),i&&(g(t,"touchend",i),g(t,"touchcancel",i))}}};function N(t){var e=void 0===t?{}:t,n=e.ref,i=e.afterPortal;return{props:{getContainer:[String,Function]},watch:{getContainer:"portal"},mounted:function(){this.getContainer&&this.portal()},methods:{portal:function(){var t,e,r=this.getContainer,o=n?this.$refs[n]:this.$el;r?t="string"==typeof(e=r)?document.querySelector(e):e():this.$parent&&(t=this.$parent.$el),t&&t!==o.parentNode&&t.appendChild(o),i&&i.call(this)}}}}var R=0;function V(t){var e="binded_"+R++;function n(){this[e]||(t.call(this,g,!0),this[e]=!0)}function i(){this[e]&&(t.call(this,m,!1),this[e]=!1)}return{mounted:n,activated:n,deactivated:i,beforeDestroy:i}}var z={mixins:[V(function(t,e){this.handlePopstate(e&&this.closeOnPopstate)})],props:{closeOnPopstate:Boolean},data:function(){return{bindStatus:!1}},watch:{closeOnPopstate:function(t){this.handlePopstate(t)}},methods:{onPopstate:function(){this.close(),this.shouldReopen=!1},handlePopstate:function(t){this.$isServer||this.bindStatus!==t&&(this.bindStatus=t,(t?g:m)(window,"popstate",this.onPopstate))}}},K={transitionAppear:Boolean,value:Boolean,overlay:Boolean,overlayStyle:Object,overlayClass:String,closeOnClickOverlay:Boolean,zIndex:[Number,String],lockScroll:{type:Boolean,default:!0},lazyRender:{type:Boolean,default:!0}};function G(t){return void 0===t&&(t={}),{mixins:[H,z,N({afterPortal:function(){this.overlay&&T()}})],provide:function(){return{vanPopup:this}},props:K,data:function(){return this.onReopenCallback=[],{inited:this.value}},computed:{shouldRender:function(){return this.inited||!this.lazyRender}},watch:{value:function(e){var n=e?"open":"close";this.inited=this.inited||this.value,this[n](),t.skipToggleEvent||this.$emit(n)},overlay:"renderOverlay"},mounted:function(){this.value&&this.open()},activated:function(){this.shouldReopen&&(this.$emit("input",!0),this.shouldReopen=!1)},beforeDestroy:function(){var t,e;t=this,(e=d.find(t))&&(S(e.overlay.$el),d.remove(t)),this.opened&&this.removeLock(),this.getContainer&&S(this.$el)},deactivated:function(){this.value&&(this.close(),this.shouldReopen=!0)},methods:{open:function(){this.$isServer||this.opened||(void 0!==this.zIndex&&(d.zIndex=this.zIndex),this.opened=!0,this.renderOverlay(),this.addLock(),this.onReopenCallback.forEach(function(t){t()}))},addLock:function(){this.lockScroll&&(g(document,"touchstart",this.touchStart),g(document,"touchmove",this.onTouchMove),d.lockCount||document.body.classList.add("van-overflow-hidden"),d.lockCount++)},removeLock:function(){this.lockScroll&&d.lockCount&&(d.lockCount--,m(document,"touchstart",this.touchStart),m(document,"touchmove",this.onTouchMove),d.lockCount||document.body.classList.remove("van-overflow-hidden"))},close:function(){this.opened&&(Q(this),this.opened=!1,this.removeLock(),this.$emit("input",!1))},onTouchMove:function(t){this.touchMove(t);var e=this.deltaY>0?"10":"01",n=D(t.target,this.$el),i=n.scrollHeight,r=n.offsetHeight,o=n.scrollTop,a="11";0===o?a=r>=i?"00":"01":o+r>=i&&(a="10"),"11"===a||"vertical"!==this.direction||parseInt(a,2)&parseInt(e,2)||y(t,!0)},renderOverlay:function(){var t=this;!this.$isServer&&this.value&&this.$nextTick(function(){t.updateZIndex(t.overlay?1:0),t.overlay?M(t,{zIndex:d.zIndex++,duration:t.duration,className:t.overlayClass,customStyle:t.overlayStyle}):Q(t)})},updateZIndex:function(t){void 0===t&&(t=0),this.$el.style.zIndex=++d.zIndex+t},onReopen:function(t){this.onReopenCallback.push(t)}}}}var W=Object(s.b)("info"),j=W[0],$=W[1];function q(t,e,n,i){var r=e.dot,a=e.info,A=Object(s.e)(a)&&""!==a;if(r||A)return t("div",o()([{class:$({dot:r})},c(i,!0)]),[r?"":e.info])}q.props={dot:Boolean,info:[Number,String]};var Y=j(q),X=Object(s.b)("icon"),J=X[0],Z=X[1];var tt={medel:"medal","medel-o":"medal-o","calender-o":"calendar-o"};function et(t,e,n,i){var r,a=function(t){return t&&tt[t]||t}(e.name),A=function(t){return!!t&&-1!==t.indexOf("/")}(a);return t(e.tag,o()([{class:[e.classPrefix,A?"":e.classPrefix+"-"+a],style:{color:e.color,fontSize:Object(s.a)(e.size)}},c(i,!0)]),[n.default&&n.default(),A&&t("img",{class:Z("image"),attrs:{src:a}}),t(Y,{attrs:{dot:e.dot,info:null!=(r=e.badge)?r:e.info}})])}et.props={dot:Boolean,name:String,size:[Number,String],info:[Number,String],badge:[Number,String],color:String,tag:{type:String,default:"i"},classPrefix:{type:String,default:Z()}};var nt=J(et),it=Object(s.b)("popup"),rt=it[0],ot=it[1],at=rt({mixins:[G()],props:{round:Boolean,duration:[Number,String],closeable:Boolean,transition:String,safeAreaInsetBottom:Boolean,closeIcon:{type:String,default:"cross"},closeIconPosition:{type:String,default:"top-right"},position:{type:String,default:"center"},overlay:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!0}},beforeCreate:function(){var t=this,e=function(e){return function(n){return t.$emit(e,n)}};this.onClick=e("click"),this.onOpened=e("opened"),this.onClosed=e("closed")},methods:{onClickCloseIcon:function(t){this.$emit("click-close-icon",t),this.close()}},render:function(){var t,e=arguments[0];if(this.shouldRender){var n=this.round,i=this.position,r=this.duration,o="center"===i,a=this.transition||(o?"van-fade":"van-popup-slide-"+i),A={};if(Object(s.e)(r))A[o?"animationDuration":"transitionDuration"]=r+"s";return e("transition",{attrs:{appear:this.transitionAppear,name:a},on:{afterEnter:this.onOpened,afterLeave:this.onClosed}},[e("div",{directives:[{name:"show",value:this.value}],style:A,class:ot((t={round:n},t[i]=i,t["safe-area-inset-bottom"]=this.safeAreaInsetBottom,t)),on:{click:this.onClick}},[this.slots(),this.closeable&&e(nt,{attrs:{role:"button",tabindex:"0",name:this.closeIcon},class:ot("close-icon",this.closeIconPosition),on:{click:this.onClickCloseIcon}})])])}}}),st=Object(s.b)("loading"),At=st[0],lt=st[1];function ct(t,e,n,i){var r=e.color,a=e.size,A=e.type,l={color:r};if(a){var u=Object(s.a)(a);l.width=u,l.height=u}return t("div",o()([{class:lt([A,{vertical:e.vertical}])},c(i,!0)]),[t("span",{class:lt("spinner",A),style:l},[function(t,e){if("spinner"===e.type){for(var n=[],i=0;i<12;i++)n.push(t("i"));return n}return t("svg",{class:lt("circular"),attrs:{viewBox:"25 25 50 50"}},[t("circle",{attrs:{cx:"50",cy:"50",r:"20",fill:"none"}})])}(t,e)]),function(t,e,n){if(n.default){var i,r={fontSize:Object(s.a)(e.textSize),color:null!=(i=e.textColor)?i:e.color};return t("span",{class:lt("text"),style:r},[n.default()])}}(t,e,n)])}ct.props={color:String,size:[Number,String],vertical:Boolean,textSize:[Number,String],textColor:String,type:{type:String,default:"circular"}};var ut=At(ct),ht=Object(s.b)("action-sheet"),dt=ht[0],ft=ht[1];function pt(t,e,n,i){var r=e.title,s=e.cancelText,A=e.closeable;function l(){u(i,"input",!1),u(i,"cancel")}return t(at,o()([{class:ft(),attrs:{position:"bottom",round:e.round,value:e.value,overlay:e.overlay,duration:e.duration,lazyRender:e.lazyRender,lockScroll:e.lockScroll,getContainer:e.getContainer,closeOnPopstate:e.closeOnPopstate,closeOnClickOverlay:e.closeOnClickOverlay,safeAreaInsetBottom:e.safeAreaInsetBottom}},c(i,!0)]),[function(){if(r)return t("div",{class:ft("header")},[r,A&&t(nt,{attrs:{name:e.closeIcon},class:ft("close"),on:{click:l}})])}(),function(){var i=(null==n.description?void 0:n.description())||e.description;if(i)return t("div",{class:ft("description")},[i])}(),t("div",{class:ft("content")},[e.actions&&e.actions.map(function(n,r){var o=n.disabled,s=n.loading,A=n.callback;return t("button",{attrs:{type:"button"},class:[ft("item",{disabled:o,loading:s}),n.className],style:{color:n.color},on:{click:function(t){t.stopPropagation(),o||s||(A&&A(n),e.closeOnClickAction&&u(i,"input",!1),a.a.nextTick(function(){u(i,"select",n,r)}))}}},[s?t(ut,{class:ft("loading-icon")}):[t("span",{class:ft("name")},[n.name]),n.subname&&t("div",{class:ft("subname")},[n.subname])]])}),null==n.default?void 0:n.default()]),function(){if(s)return[t("div",{class:ft("gap")}),t("button",{attrs:{type:"button"},class:ft("cancel"),on:{click:l}},[s])]}()])}pt.props=i({},K,{title:String,actions:Array,duration:[Number,String],cancelText:String,description:String,getContainer:[String,Function],closeOnPopstate:Boolean,closeOnClickAction:Boolean,round:{type:Boolean,default:!0},closeable:{type:Boolean,default:!0},closeIcon:{type:String,default:"cross"},safeAreaInsetBottom:{type:Boolean,default:!0},overlay:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!0}});var gt=dt(pt);function mt(t){return t=t.replace(/[^-|\d]/g,""),/^((\+86)|(86))?(1)\d{10}$/.test(t)||/^0[0-9-]{10,13}$/.test(t)}var vt={title:String,loading:Boolean,readonly:Boolean,itemHeight:[Number,String],showToolbar:Boolean,cancelButtonText:String,confirmButtonText:String,allowHtml:{type:Boolean,default:!0},visibleItemCount:{type:[Number,String],default:6},swipeDuration:{type:[Number,String],default:1e3}},yt="#ee0a24",wt="van-hairline",xt=wt+"--top",Bt=wt+"--left",bt=wt+"--bottom",Ct=wt+"--surround",_t=wt+"--top-bottom",St=n("w2Ju");function It(t){if(!Object(s.e)(t))return t;if(Array.isArray(t))return t.map(function(t){return It(t)});if("object"==typeof t){var e={};return Object.keys(t).forEach(function(n){e[n]=It(t[n])}),e}return t}function Tt(t,e,n){return Math.min(Math.max(t,e),n)}function Mt(t,e,n){var i=t.indexOf(e),r="";return-1===i?t:"-"===e&&0!==i?t.slice(0,i):("."===e&&t.match(/^(\.|-\.)/)&&(r=i?"-0":"0"),r+t.slice(0,i+1)+t.slice(i).replace(n,""))}function Qt(t,e,n){void 0===e&&(e=!0),void 0===n&&(n=!0),t=e?Mt(t,".",/\./g):t.split(".")[0],t=n?Mt(t,"-",/-/g):t.replace(/-/,"");var i=e?/[^-0-9.]/g:/[^-0-9]/g;return t.replace(i,"")}function Ft(t,e){var n=Math.pow(10,10);return Math.round((t+e)*n)/n}var kt=Object(s.b)("picker-column"),Dt=kt[0],Ut=kt[1];function Et(t){var e=window.getComputedStyle(t),n=e.transform||e.webkitTransform,i=n.slice(7,n.length-1).split(", ")[5];return Number(i)}function Lt(t){return Object(s.h)(t)&&t.disabled}var Ot=s.d&&"onwheel"in window,Pt=null,Ht=Dt({mixins:[H],props:{valueKey:String,readonly:Boolean,allowHtml:Boolean,className:String,itemHeight:Number,defaultIndex:Number,swipeDuration:[Number,String],visibleItemCount:[Number,String],initialOptions:{type:Array,default:function(){return[]}}},data:function(){return{offset:0,duration:0,options:It(this.initialOptions),currentIndex:this.defaultIndex}},created:function(){this.$parent.children&&this.$parent.children.push(this),this.setIndex(this.currentIndex)},mounted:function(){this.bindTouchEvent(this.$el),Ot&&g(this.$el,"wheel",this.onMouseWheel,!1)},destroyed:function(){var t=this.$parent.children;t&&t.splice(t.indexOf(this),1),Ot&&m(this.$el,"wheel")},watch:{initialOptions:"setOptions",defaultIndex:function(t){this.setIndex(t)}},computed:{count:function(){return this.options.length},baseOffset:function(){return this.itemHeight*(this.visibleItemCount-1)/2}},methods:{setOptions:function(t){JSON.stringify(t)!==JSON.stringify(this.options)&&(this.options=It(t),this.setIndex(this.defaultIndex))},onTouchStart:function(t){if(!this.readonly){if(this.touchStart(t),this.moving){var e=Et(this.$refs.wrapper);this.offset=Math.min(0,e-this.baseOffset),this.startOffset=this.offset}else this.startOffset=this.offset;this.duration=0,this.transitionEndTrigger=null,this.touchStartTime=Date.now(),this.momentumOffset=this.startOffset}},onTouchMove:function(t){if(!this.readonly){this.touchMove(t),"vertical"===this.direction&&(this.moving=!0,y(t,!0)),this.offset=Tt(this.startOffset+this.deltaY,-this.count*this.itemHeight,this.itemHeight);var e=Date.now();e-this.touchStartTime>300&&(this.touchStartTime=e,this.momentumOffset=this.offset)}},onTouchEnd:function(){var t=this;if(!this.readonly){var e=this.offset-this.momentumOffset,n=Date.now()-this.touchStartTime;if(n<300&&Math.abs(e)>15)this.momentum(e,n);else{var i=this.getIndexByOffset(this.offset);this.duration=200,this.setIndex(i,!0),setTimeout(function(){t.moving=!1},0)}}},onMouseWheel:function(t){var e=this;if(!this.readonly){y(t,!0);var n=Et(this.$refs.wrapper);this.startOffset=Math.min(0,n-this.baseOffset),this.momentumOffset=this.startOffset,this.transitionEndTrigger=null;var i=t.deltaY;if(!(0===this.startOffset&&i<0)){var r=-i;this.offset=Tt(this.startOffset+r,-this.count*this.itemHeight,this.itemHeight),Pt&&clearTimeout(Pt),Pt=setTimeout(function(){e.onTouchEnd(),e.touchStartTime=0},300)}}},onTransitionEnd:function(){this.stopMomentum()},onClickItem:function(t){this.moving||this.readonly||(this.transitionEndTrigger=null,this.duration=200,this.setIndex(t,!0))},adjustIndex:function(t){for(var e=t=Tt(t,0,this.count);e<this.count;e++)if(!Lt(this.options[e]))return e;for(var n=t-1;n>=0;n--)if(!Lt(this.options[n]))return n},getOptionText:function(t){return Object(s.h)(t)&&this.valueKey in t?t[this.valueKey]:t},setIndex:function(t,e){var n=this,i=-(t=this.adjustIndex(t)||0)*this.itemHeight,r=function(){t!==n.currentIndex&&(n.currentIndex=t,e&&n.$emit("change",t))};this.moving&&i!==this.offset?this.transitionEndTrigger=r:r(),this.offset=i},setValue:function(t){for(var e=this.options,n=0;n<e.length;n++)if(this.getOptionText(e[n])===t)return this.setIndex(n)},getValue:function(){return this.options[this.currentIndex]},getIndexByOffset:function(t){return Tt(Math.round(-t/this.itemHeight),0,this.count-1)},momentum:function(t,e){var n=Math.abs(t/e);t=this.offset+n/.003*(t<0?-1:1);var i=this.getIndexByOffset(t);this.duration=+this.swipeDuration,this.setIndex(i,!0)},stopMomentum:function(){this.moving=!1,this.duration=0,this.transitionEndTrigger&&(this.transitionEndTrigger(),this.transitionEndTrigger=null)},genOptions:function(){var t=this,e=this.$createElement,n={height:this.itemHeight+"px"};return this.options.map(function(i,r){var a,s=t.getOptionText(i),A=Lt(i),l={style:n,attrs:{role:"button",tabindex:A?-1:0},class:[Ut("item",{disabled:A,selected:r===t.currentIndex})],on:{click:function(){t.onClickItem(r)}}},c={class:"van-ellipsis",domProps:(a={},a[t.allowHtml?"innerHTML":"textContent"]=s,a)};return e("li",o()([{},l]),[t.slots("option",i)||e("div",o()([{},c]))])})}},render:function(){var t=arguments[0],e={transform:"translate3d(0, "+(this.offset+this.baseOffset)+"px, 0)",transitionDuration:this.duration+"ms",transitionProperty:this.duration?"all":"none"};return t("div",{class:[Ut(),this.className]},[t("ul",{ref:"wrapper",style:e,class:Ut("wrapper"),on:{transitionend:this.onTransitionEnd}},[this.genOptions()])])}}),Nt=Object(s.b)("picker"),Rt=Nt[0],Vt=Nt[1],zt=Nt[2],Kt=Rt({props:i({},vt,{defaultIndex:{type:[Number,String],default:0},columns:{type:Array,default:function(){return[]}},toolbarPosition:{type:String,default:"top"},valueKey:{type:String,default:"text"}}),data:function(){return{children:[],formattedColumns:[]}},computed:{itemPxHeight:function(){return this.itemHeight?Object(St.b)(this.itemHeight):44},dataType:function(){var t=this.columns[0]||{};return t.children?"cascade":t.values?"object":"text"}},watch:{columns:{handler:"format",immediate:!0}},methods:{format:function(){var t=this.columns,e=this.dataType;"text"===e?this.formattedColumns=[{values:t}]:"cascade"===e?this.formatCascade():this.formattedColumns=t},formatCascade:function(){for(var t=[],e={children:this.columns};e&&e.children;){for(var n,i=e.children,r=null!=(n=e.defaultIndex)?n:+this.defaultIndex;i[r]&&i[r].disabled;){if(!(r<i.length-1)){r=0;break}r++}t.push({values:e.children,className:e.className,defaultIndex:r}),e=i[r]}this.formattedColumns=t},emit:function(t){var e=this;if("text"===this.dataType)this.$emit(t,this.getColumnValue(0),this.getColumnIndex(0));else{var n=this.getValues();"cascade"===this.dataType&&(n=n.map(function(t){return t[e.valueKey]})),this.$emit(t,n,this.getIndexes())}},onCascadeChange:function(t){for(var e={children:this.columns},n=this.getIndexes(),i=0;i<=t;i++)e=e.children[n[i]];for(;e&&e.children;)t++,this.setColumnValues(t,e.children),e=e.children[e.defaultIndex||0]},onChange:function(t){var e=this;if("cascade"===this.dataType&&this.onCascadeChange(t),"text"===this.dataType)this.$emit("change",this,this.getColumnValue(0),this.getColumnIndex(0));else{var n=this.getValues();"cascade"===this.dataType&&(n=n.map(function(t){return t[e.valueKey]})),this.$emit("change",this,n,t)}},getColumn:function(t){return this.children[t]},getColumnValue:function(t){var e=this.getColumn(t);return e&&e.getValue()},setColumnValue:function(t,e){var n=this.getColumn(t);n&&(n.setValue(e),"cascade"===this.dataType&&this.onCascadeChange(t))},getColumnIndex:function(t){return(this.getColumn(t)||{}).currentIndex},setColumnIndex:function(t,e){var n=this.getColumn(t);n&&(n.setIndex(e),"cascade"===this.dataType&&this.onCascadeChange(t))},getColumnValues:function(t){return(this.children[t]||{}).options},setColumnValues:function(t,e){var n=this.children[t];n&&n.setOptions(e)},getValues:function(){return this.children.map(function(t){return t.getValue()})},setValues:function(t){var e=this;t.forEach(function(t,n){e.setColumnValue(n,t)})},getIndexes:function(){return this.children.map(function(t){return t.currentIndex})},setIndexes:function(t){var e=this;t.forEach(function(t,n){e.setColumnIndex(n,t)})},confirm:function(){this.children.forEach(function(t){return t.stopMomentum()}),this.emit("confirm")},cancel:function(){this.emit("cancel")},genTitle:function(){var t=this.$createElement,e=this.slots("title");return e||(this.title?t("div",{class:["van-ellipsis",Vt("title")]},[this.title]):void 0)},genCancel:function(){return(0,this.$createElement)("button",{attrs:{type:"button"},class:Vt("cancel"),on:{click:this.cancel}},[this.slots("cancel")||this.cancelButtonText||zt("cancel")])},genConfirm:function(){return(0,this.$createElement)("button",{attrs:{type:"button"},class:Vt("confirm"),on:{click:this.confirm}},[this.slots("confirm")||this.confirmButtonText||zt("confirm")])},genToolbar:function(){var t=this.$createElement;if(this.showToolbar)return t("div",{class:Vt("toolbar")},[this.slots()||[this.genCancel(),this.genTitle(),this.genConfirm()]])},genColumns:function(){var t=this.$createElement,e=this.itemPxHeight,n=e*this.visibleItemCount,i={height:e+"px"},r={height:n+"px"},o={backgroundSize:"100% "+(n-e)/2+"px"};return t("div",{class:Vt("columns"),style:r,on:{touchmove:y}},[this.genColumnItems(),t("div",{class:Vt("mask"),style:o}),t("div",{class:["van-hairline-unset--top-bottom",Vt("frame")],style:i})])},genColumnItems:function(){var t=this,e=this.$createElement;return this.formattedColumns.map(function(n,i){var r;return e(Ht,{attrs:{readonly:t.readonly,valueKey:t.valueKey,allowHtml:t.allowHtml,className:n.className,itemHeight:t.itemPxHeight,defaultIndex:null!=(r=n.defaultIndex)?r:+t.defaultIndex,swipeDuration:t.swipeDuration,visibleItemCount:t.visibleItemCount,initialOptions:n.values},scopedSlots:{option:t.$scopedSlots.option},on:{change:function(){t.onChange(i)}}})})}},render:function(t){return t("div",{class:Vt()},["top"===this.toolbarPosition?this.genToolbar():t(),this.loading?t(ut,{class:Vt("loading")}):t(),this.slots("columns-top"),this.genColumns(),this.slots("columns-bottom"),"bottom"===this.toolbarPosition?this.genToolbar():t()])}}),Gt=Object(s.b)("area"),Wt=Gt[0],jt=Gt[1];var $t=Wt({props:i({},vt,{value:String,areaList:{type:Object,default:function(){return{}}},columnsNum:{type:[Number,String],default:3},isOverseaCode:{type:Function,default:function(t){return"9"===t[0]}},columnsPlaceholder:{type:Array,default:function(){return[]}}}),data:function(){return{code:this.value,columns:[{values:[]},{values:[]},{values:[]}]}},computed:{province:function(){return this.areaList.province_list||{}},city:function(){return this.areaList.city_list||{}},county:function(){return this.areaList.county_list||{}},displayColumns:function(){return this.columns.slice(0,+this.columnsNum)},placeholderMap:function(){return{province:this.columnsPlaceholder[0]||"",city:this.columnsPlaceholder[1]||"",county:this.columnsPlaceholder[2]||""}}},watch:{value:function(t){this.code=t,this.setValues()},areaList:{deep:!0,handler:"setValues"},columnsNum:function(){var t=this;this.$nextTick(function(){t.setValues()})}},mounted:function(){this.setValues()},methods:{getList:function(t,e){var n=[];if("province"!==t&&!e)return n;var i=this[t];if(n=Object.keys(i).map(function(t){return{code:t,name:i[t]}}),e&&(this.isOverseaCode(e)&&"city"===t&&(e="9"),n=n.filter(function(t){return 0===t.code.indexOf(e)})),this.placeholderMap[t]&&n.length){var r="";"city"===t?r="000000".slice(2,4):"county"===t&&(r="000000".slice(4,6)),n.unshift({code:""+e+r,name:this.placeholderMap[t]})}return n},getIndex:function(t,e){var n="province"===t?2:"city"===t?4:6,i=this.getList(t,e.slice(0,n-2));this.isOverseaCode(e)&&"province"===t&&(n=1),e=e.slice(0,n);for(var r=0;r<i.length;r++)if(i[r].code.slice(0,n)===e)return r;return 0},parseOutputValues:function(t){var e=this;return t.map(function(t,n){return t?((t=JSON.parse(JSON.stringify(t))).code&&t.name!==e.columnsPlaceholder[n]||(t.code="",t.name=""),t):t})},onChange:function(t,e,n){this.code=e[n].code,this.setValues();var i=this.parseOutputValues(t.getValues());this.$emit("change",t,i,n)},onConfirm:function(t,e){t=this.parseOutputValues(t),this.setValues(),this.$emit("confirm",t,e)},getDefaultCode:function(){if(this.columnsPlaceholder.length)return"000000";var t=Object.keys(this.county);if(t[0])return t[0];var e=Object.keys(this.city);return e[0]?e[0]:""},setValues:function(){var t=this.code;t||(t=this.getDefaultCode());var e=this.$refs.picker,n=this.getList("province"),i=this.getList("city",t.slice(0,2));e&&(e.setColumnValues(0,n),e.setColumnValues(1,i),i.length&&"00"===t.slice(2,4)&&!this.isOverseaCode(t)&&(t=i[0].code),e.setColumnValues(2,this.getList("county",t.slice(0,4))),e.setIndexes([this.getIndex("province",t),this.getIndex("city",t),this.getIndex("county",t)]))},getValues:function(){var t=this.$refs.picker,e=t?t.getValues().filter(function(t){return!!t}):[];return e=this.parseOutputValues(e),e},getArea:function(){var t=this.getValues(),e={code:"",country:"",province:"",city:"",county:""};if(!t.length)return e;var n=t.map(function(t){return t.name}),i=t.filter(function(t){return!!t.code});return e.code=i.length?i[i.length-1].code:"",this.isOverseaCode(e.code)?(e.country=n[1]||"",e.province=n[2]||""):(e.province=n[0]||"",e.city=n[1]||"",e.county=n[2]||""),e},reset:function(t){this.code=t||"",this.setValues()}},render:function(){var t,e,n,r,o,a=arguments[0],s=i({},this.$listeners,{change:this.onChange,confirm:this.onConfirm});return a(Kt,{ref:"picker",class:jt(),attrs:{showToolbar:!0,valueKey:"name",title:this.title,columns:this.displayColumns,loading:this.loading,readonly:this.readonly,itemHeight:this.itemHeight,swipeDuration:this.swipeDuration,visibleItemCount:this.visibleItemCount,cancelButtonText:this.cancelButtonText,confirmButtonText:this.confirmButtonText},scopedSlots:(t=this,e=["title","columns-top","columns-bottom"],n=t.$slots,r=t.$scopedSlots,o={},e.forEach(function(t){r[t]?o[t]=r[t]:n[t]&&(o[t]=function(){return n[t]})}),o),on:i({},s)})}});function qt(t,e){var n=e.to,i=e.url,r=e.replace;if(n&&t){var o=t[r?"replace":"push"](n);o&&o.catch&&o.catch(function(t){if(t&&!function(t){return"NavigationDuplicated"===t.name||t.message&&-1!==t.message.indexOf("redundant navigation")}(t))throw t})}else i&&(r?location.replace(i):location.href=i)}function Yt(t){qt(t.parent&&t.parent.$router,t.props)}var Xt={url:String,replace:Boolean,to:[String,Object]},Jt={icon:String,size:String,center:Boolean,isLink:Boolean,required:Boolean,iconPrefix:String,titleStyle:null,titleClass:null,valueClass:null,labelClass:null,title:[Number,String],value:[Number,String],label:[Number,String],arrowDirection:String,border:{type:Boolean,default:!0},clickable:{type:Boolean,default:null}},Zt=Object(s.b)("cell"),te=Zt[0],ee=Zt[1];function ne(t,e,n,i){var r,a=e.icon,A=e.size,l=e.title,h=e.label,d=e.value,f=e.isLink,p=n.title||Object(s.e)(l);var g=null!=(r=e.clickable)?r:f,m={clickable:g,center:e.center,required:e.required,borderless:!e.border};return A&&(m[A]=A),t("div",o()([{class:ee(m),attrs:{role:g?"button":null,tabindex:g?0:null},on:{click:function(t){u(i,"click",t),Yt(i)}}},c(i)]),[n.icon?n.icon():a?t(nt,{class:ee("left-icon"),attrs:{name:a,classPrefix:e.iconPrefix}}):void 0,function(){if(p)return t("div",{class:[ee("title"),e.titleClass],style:e.titleStyle},[n.title?n.title():t("span",[l]),function(){if(n.label||Object(s.e)(h))return t("div",{class:[ee("label"),e.labelClass]},[n.label?n.label():h])}()])}(),function(){if(n.default||Object(s.e)(d))return t("div",{class:[ee("value",{alone:!p}),e.valueClass]},[n.default?n.default():t("span",[d])])}(),function(){var i=n["right-icon"];if(i)return i();if(f){var r=e.arrowDirection;return t(nt,{class:ee("right-icon"),attrs:{name:r?"arrow-"+r:"arrow"}})}}(),null==n.extra?void 0:n.extra()])}ne.props=i({},Jt,Xt);var ie=te(ne);var re=!s.j&&/ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase());function oe(){re&&O(L())}var ae=Object(s.b)("field"),se=ae[0],Ae=ae[1],le=se({inheritAttrs:!1,provide:function(){return{vanField:this}},inject:{vanForm:{default:null}},props:i({},Jt,{name:String,rules:Array,disabled:{type:Boolean,default:null},readonly:{type:Boolean,default:null},autosize:[Boolean,Object],leftIcon:String,rightIcon:String,clearable:Boolean,formatter:Function,maxlength:[Number,String],labelWidth:[Number,String],labelClass:null,labelAlign:String,inputAlign:String,placeholder:String,errorMessage:String,errorMessageAlign:String,showWordLimit:Boolean,value:{type:[Number,String],default:""},type:{type:String,default:"text"},error:{type:Boolean,default:null},colon:{type:Boolean,default:null},clearTrigger:{type:String,default:"focus"},formatTrigger:{type:String,default:"onChange"}}),data:function(){return{focused:!1,validateFailed:!1,validateMessage:""}},watch:{value:function(){this.updateValue(this.value),this.resetValidation(),this.validateWithTrigger("onChange"),this.$nextTick(this.adjustSize)}},mounted:function(){this.updateValue(this.value,this.formatTrigger),this.$nextTick(this.adjustSize),this.vanForm&&this.vanForm.addField(this)},beforeDestroy:function(){this.vanForm&&this.vanForm.removeField(this)},computed:{showClear:function(){var t=this.getProp("readonly");if(this.clearable&&!t){var e=Object(s.e)(this.value)&&""!==this.value,n="always"===this.clearTrigger||"focus"===this.clearTrigger&&this.focused;return e&&n}},showError:function(){return null!==this.error?this.error:!!(this.vanForm&&this.vanForm.showError&&this.validateFailed)||void 0},listeners:function(){return i({},this.$listeners,{blur:this.onBlur,focus:this.onFocus,input:this.onInput,click:this.onClickInput,keypress:this.onKeypress})},labelStyle:function(){var t=this.getProp("labelWidth");if(t)return{width:Object(s.a)(t)}},formValue:function(){return this.children&&(this.$scopedSlots.input||this.$slots.input)?this.children.value:this.value}},methods:{focus:function(){this.$refs.input&&this.$refs.input.focus()},blur:function(){this.$refs.input&&this.$refs.input.blur()},runValidator:function(t,e){return new Promise(function(n){var i=e.validator(t,e);if(Object(s.i)(i))return i.then(n);n(i)})},isEmptyValue:function(t){return Array.isArray(t)?!t.length:0!==t&&!t},runSyncRule:function(t,e){return(!e.required||!this.isEmptyValue(t))&&!(e.pattern&&!e.pattern.test(t))},getRuleMessage:function(t,e){var n=e.message;return Object(s.g)(n)?n(t,e):n},runRules:function(t){var e=this;return t.reduce(function(t,n){return t.then(function(){if(!e.validateFailed){var t=e.formValue;return n.formatter&&(t=n.formatter(t,n)),e.runSyncRule(t,n)?n.validator?e.runValidator(t,n).then(function(i){!1===i&&(e.validateFailed=!0,e.validateMessage=e.getRuleMessage(t,n))}):void 0:(e.validateFailed=!0,void(e.validateMessage=e.getRuleMessage(t,n)))}})},Promise.resolve())},validate:function(t){var e=this;return void 0===t&&(t=this.rules),new Promise(function(n){t||n(),e.resetValidation(),e.runRules(t).then(function(){e.validateFailed?n({name:e.name,message:e.validateMessage}):n()})})},validateWithTrigger:function(t){if(this.vanForm&&this.rules){var e=this.vanForm.validateTrigger===t,n=this.rules.filter(function(n){return n.trigger?n.trigger===t:e});n.length&&this.validate(n)}},resetValidation:function(){this.validateFailed&&(this.validateFailed=!1,this.validateMessage="")},updateValue:function(t,e){void 0===e&&(e="onChange"),t=Object(s.e)(t)?String(t):"";var n=this.maxlength;if(Object(s.e)(n)&&t.length>n&&(t=this.value&&this.value.length===+n?this.value:t.slice(0,n)),"number"===this.type||"digit"===this.type){var i="number"===this.type;t=Qt(t,i,i)}this.formatter&&e===this.formatTrigger&&(t=this.formatter(t));var r=this.$refs.input;r&&t!==r.value&&(r.value=t),t!==this.value&&this.$emit("input",t)},onInput:function(t){t.target.composing||this.updateValue(t.target.value)},onFocus:function(t){this.focused=!0,this.$emit("focus",t),this.$nextTick(this.adjustSize),this.getProp("readonly")&&this.blur()},onBlur:function(t){this.getProp("readonly")||(this.focused=!1,this.updateValue(this.value,"onBlur"),this.$emit("blur",t),this.validateWithTrigger("onBlur"),this.$nextTick(this.adjustSize),oe())},onClick:function(t){this.$emit("click",t)},onClickInput:function(t){this.$emit("click-input",t)},onClickLeftIcon:function(t){this.$emit("click-left-icon",t)},onClickRightIcon:function(t){this.$emit("click-right-icon",t)},onClear:function(t){y(t),this.$emit("input",""),this.$emit("clear",t)},onKeypress:function(t){13===t.keyCode&&(this.getProp("submitOnEnter")||"textarea"===this.type||y(t),"search"===this.type&&this.blur());this.$emit("keypress",t)},adjustSize:function(){var t=this.$refs.input;if("textarea"===this.type&&this.autosize&&t){var e=L();t.style.height="auto";var n=t.scrollHeight;if(Object(s.h)(this.autosize)){var i=this.autosize,r=i.maxHeight,o=i.minHeight;r&&(n=Math.min(n,r)),o&&(n=Math.max(n,o))}n&&(t.style.height=n+"px",O(e))}},genInput:function(){var t=this.$createElement,e=this.type,n=this.getProp("disabled"),r=this.getProp("readonly"),a=this.slots("input"),s=this.getProp("inputAlign");if(a)return t("div",{class:Ae("control",[s,"custom"]),on:{click:this.onClickInput}},[a]);var A={ref:"input",class:Ae("control",s),domProps:{value:this.value},attrs:i({},this.$attrs,{name:this.name,disabled:n,readonly:r,placeholder:this.placeholder}),on:this.listeners,directives:[{name:"model",value:this.value}]};if("textarea"===e)return t("textarea",o()([{},A]));var l,c=e;return"number"===e&&(c="text",l="decimal"),"digit"===e&&(c="tel",l="numeric"),t("input",o()([{attrs:{type:c,inputmode:l}},A]))},genLeftIcon:function(){var t=this.$createElement;if(this.slots("left-icon")||this.leftIcon)return t("div",{class:Ae("left-icon"),on:{click:this.onClickLeftIcon}},[this.slots("left-icon")||t(nt,{attrs:{name:this.leftIcon,classPrefix:this.iconPrefix}})])},genRightIcon:function(){var t=this.$createElement,e=this.slots;if(e("right-icon")||this.rightIcon)return t("div",{class:Ae("right-icon"),on:{click:this.onClickRightIcon}},[e("right-icon")||t(nt,{attrs:{name:this.rightIcon,classPrefix:this.iconPrefix}})])},genWordLimit:function(){var t=this.$createElement;if(this.showWordLimit&&this.maxlength){var e=(this.value||"").length;return t("div",{class:Ae("word-limit")},[t("span",{class:Ae("word-num")},[e]),"/",this.maxlength])}},genMessage:function(){var t=this.$createElement;if(!this.vanForm||!1!==this.vanForm.showErrorMessage){var e=this.errorMessage||this.validateMessage;if(e){var n=this.getProp("errorMessageAlign");return t("div",{class:Ae("error-message",n)},[e])}}},getProp:function(t){return Object(s.e)(this[t])?this[t]:this.vanForm&&Object(s.e)(this.vanForm[t])?this.vanForm[t]:void 0},genLabel:function(){var t=this.$createElement,e=this.getProp("colon")?":":"";return this.slots("label")?[this.slots("label"),e]:this.label?t("span",[this.label+e]):void 0}},render:function(){var t,e=arguments[0],n=this.slots,i=this.getProp("disabled"),r=this.getProp("labelAlign"),o={icon:this.genLeftIcon},a=this.genLabel();a&&(o.title=function(){return a});var s=this.slots("extra");return s&&(o.extra=function(){return s}),e(ie,{attrs:{icon:this.leftIcon,size:this.size,center:this.center,border:this.border,isLink:this.isLink,required:this.required,clickable:this.clickable,titleStyle:this.labelStyle,valueClass:Ae("value"),titleClass:[Ae("label",r),this.labelClass],arrowDirection:this.arrowDirection},scopedSlots:o,class:Ae((t={error:this.showError,disabled:i},t["label-"+r]=r,t["min-height"]="textarea"===this.type&&!this.autosize,t)),on:{click:this.onClick}},[e("div",{class:Ae("body")},[this.genInput(),this.showClear&&e(nt,{attrs:{name:"clear"},class:Ae("clear"),on:{touchstart:this.onClear}}),this.genRightIcon(),n("button")&&e("div",{class:Ae("button")},[n("button")])]),this.genWordLimit(),this.genMessage()])}}),ce=0;var ue=Object(s.b)("toast"),he=ue[0],de=ue[1],fe=he({mixins:[G()],props:{icon:String,className:null,iconPrefix:String,loadingType:String,forbidClick:Boolean,closeOnClick:Boolean,message:[Number,String],type:{type:String,default:"text"},position:{type:String,default:"middle"},transition:{type:String,default:"van-fade"},lockScroll:{type:Boolean,default:!1}},data:function(){return{clickable:!1}},mounted:function(){this.toggleClickable()},destroyed:function(){this.toggleClickable()},watch:{value:"toggleClickable",forbidClick:"toggleClickable"},methods:{onClick:function(){this.closeOnClick&&this.close()},toggleClickable:function(){var t=this.value&&this.forbidClick;this.clickable!==t&&(this.clickable=t,t?(ce||document.body.classList.add("van-toast--unclickable"),ce++):--ce||document.body.classList.remove("van-toast--unclickable"))},onAfterEnter:function(){this.$emit("opened"),this.onOpened&&this.onOpened()},onAfterLeave:function(){this.$emit("closed")},genIcon:function(){var t=this.$createElement,e=this.icon,n=this.type,i=this.iconPrefix,r=this.loadingType;return e||"success"===n||"fail"===n?t(nt,{class:de("icon"),attrs:{classPrefix:i,name:e||n}}):"loading"===n?t(ut,{class:de("loading"),attrs:{type:r}}):void 0},genMessage:function(){var t=this.$createElement,e=this.type,n=this.message;if(Object(s.e)(n)&&""!==n)return"html"===e?t("div",{class:de("text"),domProps:{innerHTML:n}}):t("div",{class:de("text")},[n])}},render:function(){var t,e=arguments[0];return e("transition",{attrs:{name:this.transition},on:{afterEnter:this.onAfterEnter,afterLeave:this.onAfterLeave}},[e("div",{directives:[{name:"show",value:this.value}],class:[de([this.position,(t={},t[this.type]=!this.icon,t)]),this.className],on:{click:this.onClick}},[this.genIcon(),this.genMessage()])])}}),pe={icon:"",type:"text",mask:!1,value:!0,message:"",className:"",overlay:!1,onClose:null,onOpened:null,duration:2e3,iconPrefix:void 0,position:"middle",transition:"van-fade",forbidClick:!1,loadingType:void 0,getContainer:"body",overlayStyle:null,closeOnClick:!1,closeOnClickOverlay:!1},ge={},me=[],ve=!1,ye=i({},pe);function we(t){return Object(s.h)(t)?t:{message:t}}function xe(){if(s.j)return{};if(!(me=me.filter(function(t){return!t.$el.parentNode||(e=t.$el,document.body.contains(e));var e})).length||ve){var t=new(a.a.extend(fe))({el:document.createElement("div")});t.$on("input",function(e){t.value=e}),me.push(t)}return me[me.length-1]}function Be(t){void 0===t&&(t={});var e=xe();return e.value&&e.updateZIndex(),t=we(t),(t=i({},ye,ge[t.type||ye.type],t)).clear=function(){e.value=!1,t.onClose&&(t.onClose(),t.onClose=null),ve&&!s.j&&e.$on("closed",function(){clearTimeout(e.timer),me=me.filter(function(t){return t!==e}),S(e.$el),e.$destroy()})},i(e,function(t){return i({},t,{overlay:t.mask||t.overlay,mask:void 0,duration:void 0})}(t)),clearTimeout(e.timer),t.duration>0&&(e.timer=setTimeout(function(){e.clear()},t.duration)),e}["loading","success","fail"].forEach(function(t){var e;Be[t]=(e=t,function(t){return Be(i({type:e},we(t)))})}),Be.clear=function(t){me.length&&(t?(me.forEach(function(t){t.clear()}),me=[]):ve?me.shift().clear():me[0].clear())},Be.setDefaultOptions=function(t,e){"string"==typeof t?ge[t]=e:i(ye,t)},Be.resetDefaultOptions=function(t){"string"==typeof t?ge[t]=null:(ye=i({},pe),ge={})},Be.allowMultiple=function(t){void 0===t&&(t=!0),ve=t},Be.install=function(){a.a.use(fe)},a.a.prototype.$toast=Be;var be=Be,Ce=Object(s.b)("button"),_e=Ce[0],Se=Ce[1];function Ie(t,e,n,i){var r,a=e.tag,s=e.icon,A=e.type,l=e.color,h=e.plain,d=e.disabled,f=e.loading,p=e.hairline,g=e.loadingText,m=e.iconPosition,v={};l&&(v.color=h?l:"white",h||(v.background=l),-1!==l.indexOf("gradient")?v.border=0:v.borderColor=l);var y,w,x=[Se([A,e.size,{plain:h,loading:f,disabled:d,hairline:p,block:e.block,round:e.round,square:e.square}]),(r={},r[Ct]=p,r)];function B(){return f?n.loading?n.loading():t(ut,{class:Se("loading"),attrs:{size:e.loadingSize,type:e.loadingType,color:"currentColor"}}):n.icon?t("div",{class:Se("icon")},[n.icon()]):s?t(nt,{attrs:{name:s,classPrefix:e.iconPrefix},class:Se("icon")}):void 0}return t(a,o()([{style:v,class:x,attrs:{type:e.nativeType,disabled:d},on:{click:function(t){e.loading&&t.preventDefault(),f||d||(u(i,"click",t),Yt(i))},touchstart:function(t){u(i,"touchstart",t)}}},c(i)]),[t("div",{class:Se("content")},[(w=[],"left"===m&&w.push(B()),(y=f?g:n.default?n.default():e.text)&&w.push(t("span",{class:Se("text")},[y])),"right"===m&&w.push(B()),w)])])}Ie.props=i({},Xt,{text:String,icon:String,color:String,block:Boolean,plain:Boolean,round:Boolean,square:Boolean,loading:Boolean,hairline:Boolean,disabled:Boolean,iconPrefix:String,nativeType:String,loadingText:String,loadingType:String,tag:{type:String,default:"button"},type:{type:String,default:"default"},size:{type:String,default:"normal"},loadingSize:{type:String,default:"20px"},iconPosition:{type:String,default:"left"}});var Te=_e(Ie);function Me(t,e){var n=e.$vnode.componentOptions;if(n&&n.children){var i=function(t){var e=[];return function t(n){n.forEach(function(n){e.push(n),n.componentInstance&&t(n.componentInstance.$children.map(function(t){return t.$vnode})),n.children&&t(n.children)})}(t),e}(n.children);t.sort(function(t,e){return i.indexOf(t.$vnode)-i.indexOf(e.$vnode)})}}function Qe(t,e){var n,i;void 0===e&&(e={});var r=e.indexKey||"index";return{inject:(n={},n[t]={default:null},n),computed:(i={parent:function(){return this.disableBindRelation?null:this[t]}},i[r]=function(){return this.bindRelation(),this.parent?this.parent.children.indexOf(this):null},i),watch:{disableBindRelation:function(t){t||this.bindRelation()}},mounted:function(){this.bindRelation()},beforeDestroy:function(){var t=this;this.parent&&(this.parent.children=this.parent.children.filter(function(e){return e!==t}))},methods:{bindRelation:function(){if(this.parent&&-1===this.parent.children.indexOf(this)){var t=[].concat(this.parent.children,[this]);Me(t,this.parent),this.parent.children=t}}}}}function Fe(t){return{provide:function(){var e;return(e={})[t]=this,e},data:function(){return{children:[]}}}}var ke,De=Object(s.b)("goods-action"),Ue=De[0],Ee=De[1],Le=Ue({mixins:[Fe("vanGoodsAction")],props:{safeAreaInsetBottom:{type:Boolean,default:!0}},render:function(){return(0,arguments[0])("div",{class:Ee({unfit:!this.safeAreaInsetBottom})},[this.slots()])}}),Oe=Object(s.b)("goods-action-button"),Pe=Oe[0],He=Oe[1],Ne=Pe({mixins:[Qe("vanGoodsAction")],props:i({},Xt,{type:String,text:String,icon:String,color:String,loading:Boolean,disabled:Boolean}),computed:{isFirst:function(){var t=this.parent&&this.parent.children[this.index-1];return!t||t.$options.name!==this.$options.name},isLast:function(){var t=this.parent&&this.parent.children[this.index+1];return!t||t.$options.name!==this.$options.name}},methods:{onClick:function(t){this.$emit("click",t),qt(this.$router,this)}},render:function(){return(0,arguments[0])(Te,{class:He([{first:this.isFirst,last:this.isLast},this.type]),attrs:{size:"large",type:this.type,icon:this.icon,color:this.color,loading:this.loading,disabled:this.disabled},on:{click:this.onClick}},[this.slots()||this.text])}}),Re=Object(s.b)("dialog"),Ve=Re[0],ze=Re[1],Ke=Re[2],Ge=Ve({mixins:[G()],props:{title:String,theme:String,width:[Number,String],message:String,className:null,callback:Function,beforeClose:Function,messageAlign:String,cancelButtonText:String,cancelButtonColor:String,confirmButtonText:String,confirmButtonColor:String,showCancelButton:Boolean,overlay:{type:Boolean,default:!0},allowHtml:{type:Boolean,default:!0},transition:{type:String,default:"van-dialog-bounce"},showConfirmButton:{type:Boolean,default:!0},closeOnPopstate:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!1}},data:function(){return{loading:{confirm:!1,cancel:!1}}},methods:{onClickOverlay:function(){this.handleAction("overlay")},handleAction:function(t){var e=this;this.$emit(t),this.value&&(this.beforeClose?(this.loading[t]=!0,this.beforeClose(t,function(n){!1!==n&&e.loading[t]&&e.onClose(t),e.loading.confirm=!1,e.loading.cancel=!1})):this.onClose(t))},onClose:function(t){this.close(),this.callback&&this.callback(t)},onOpened:function(){var t=this;this.$emit("opened"),this.$nextTick(function(){var e;null==(e=t.$refs.dialog)||e.focus()})},onClosed:function(){this.$emit("closed")},onKeydown:function(t){var e=this;if("Escape"===t.key||"Enter"===t.key){if(t.target!==this.$refs.dialog)return;({Enter:this.showConfirmButton?function(){return e.handleAction("confirm")}:s.k,Escape:this.showCancelButton?function(){return e.handleAction("cancel")}:s.k})[t.key](),this.$emit("keydown",t)}},genRoundButtons:function(){var t=this,e=this.$createElement;return e(Le,{class:ze("footer")},[this.showCancelButton&&e(Ne,{attrs:{size:"large",type:"warning",text:this.cancelButtonText||Ke("cancel"),color:this.cancelButtonColor,loading:this.loading.cancel},class:ze("cancel"),on:{click:function(){t.handleAction("cancel")}}}),this.showConfirmButton&&e(Ne,{attrs:{size:"large",type:"danger",text:this.confirmButtonText||Ke("confirm"),color:this.confirmButtonColor,loading:this.loading.confirm},class:ze("confirm"),on:{click:function(){t.handleAction("confirm")}}})])},genButtons:function(){var t,e=this,n=this.$createElement,i=this.showCancelButton&&this.showConfirmButton;return n("div",{class:[xt,ze("footer")]},[this.showCancelButton&&n(Te,{attrs:{size:"large",loading:this.loading.cancel,text:this.cancelButtonText||Ke("cancel"),nativeType:"button"},class:ze("cancel"),style:{color:this.cancelButtonColor},on:{click:function(){e.handleAction("cancel")}}}),this.showConfirmButton&&n(Te,{attrs:{size:"large",loading:this.loading.confirm,text:this.confirmButtonText||Ke("confirm"),nativeType:"button"},class:[ze("confirm"),(t={},t[Bt]=i,t)],style:{color:this.confirmButtonColor},on:{click:function(){e.handleAction("confirm")}}})])},genContent:function(t,e){var n=this.$createElement;if(e)return n("div",{class:ze("content")},[e]);var i=this.message,r=this.messageAlign;if(i){var a,s,A={class:ze("message",(a={"has-title":t},a[r]=r,a)),domProps:(s={},s[this.allowHtml?"innerHTML":"textContent"]=i,s)};return n("div",{class:ze("content",{isolated:!t})},[n("div",o()([{},A]))])}}},render:function(){var t=arguments[0];if(this.shouldRender){var e=this.message,n=this.slots(),i=this.slots("title")||this.title,r=i&&t("div",{class:ze("header",{isolated:!e&&!n})},[i]);return t("transition",{attrs:{name:this.transition},on:{afterEnter:this.onOpened,afterLeave:this.onClosed}},[t("div",{directives:[{name:"show",value:this.value}],attrs:{role:"dialog","aria-labelledby":this.title||e,tabIndex:0},class:[ze([this.theme]),this.className],style:{width:Object(s.a)(this.width)},ref:"dialog",on:{keydown:this.onKeydown}},[r,this.genContent(i,n),"round-button"===this.theme?this.genRoundButtons():this.genButtons()])])}}});function We(t){return s.j?Promise.resolve():new Promise(function(e,n){var r;ke&&(r=ke.$el,document.body.contains(r))||(ke&&ke.$destroy(),(ke=new(a.a.extend(Ge))({el:document.createElement("div"),propsData:{lazyRender:!1}})).$on("input",function(t){ke.value=t})),i(ke,We.currentOptions,t,{resolve:e,reject:n})})}We.defaultOptions={value:!0,title:"",width:"",theme:null,message:"",overlay:!0,className:"",allowHtml:!0,lockScroll:!0,transition:"van-dialog-bounce",beforeClose:null,overlayClass:"",overlayStyle:null,messageAlign:"",getContainer:"body",cancelButtonText:"",cancelButtonColor:null,confirmButtonText:"",confirmButtonColor:null,showConfirmButton:!0,showCancelButton:!1,closeOnPopstate:!0,closeOnClickOverlay:!1,callback:function(t){ke["confirm"===t?"resolve":"reject"](t)}},We.alert=We,We.confirm=function(t){return We(i({showCancelButton:!0},t))},We.close=function(){ke&&(ke.value=!1)},We.setDefaultOptions=function(t){i(We.currentOptions,t)},We.resetDefaultOptions=function(){We.currentOptions=i({},We.defaultOptions)},We.resetDefaultOptions(),We.install=function(){a.a.use(Ge)},We.Component=Ge,a.a.prototype.$dialog=We;var je=We,$e=Object(s.b)("address-edit-detail"),qe=$e[0],Ye=$e[1],Xe=$e[2],Je=!s.j&&/android/.test(navigator.userAgent.toLowerCase()),Ze=qe({props:{value:String,errorMessage:String,focused:Boolean,detailRows:[Number,String],searchResult:Array,detailMaxlength:[Number,String],showSearchResult:Boolean},computed:{shouldShowSearchResult:function(){return this.focused&&this.searchResult&&this.showSearchResult}},methods:{onSelect:function(t){this.$emit("select-search",t),this.$emit("input",((t.address||"")+" "+(t.name||"")).trim())},onFinish:function(){this.$refs.field.blur()},genFinish:function(){var t=this.$createElement;if(this.value&&this.focused&&Je)return t("div",{class:Ye("finish"),on:{click:this.onFinish}},[Xe("complete")])},genSearchResult:function(){var t=this,e=this.$createElement,n=this.value,i=this.shouldShowSearchResult,r=this.searchResult;if(i)return r.map(function(i){return e(ie,{key:i.name+i.address,attrs:{clickable:!0,border:!1,icon:"location-o",label:i.address},class:Ye("search-item"),on:{click:function(){t.onSelect(i)}},scopedSlots:{title:function(){if(i.name){var t=i.name.replace(n,"<span class="+Ye("keyword")+">"+n+"</span>");return e("div",{domProps:{innerHTML:t}})}}}})})}},render:function(){var t=arguments[0];return t(ie,{class:Ye()},[t(le,{attrs:{autosize:!0,rows:this.detailRows,clearable:!Je,type:"textarea",value:this.value,errorMessage:this.errorMessage,border:!this.shouldShowSearchResult,label:Xe("label"),maxlength:this.detailMaxlength,placeholder:Xe("placeholder")},ref:"field",scopedSlots:{icon:this.genFinish},on:i({},this.$listeners)}),this.genSearchResult()])}}),tn={size:[Number,String],value:null,loading:Boolean,disabled:Boolean,activeColor:String,inactiveColor:String,activeValue:{type:null,default:!0},inactiveValue:{type:null,default:!1}},en={inject:{vanField:{default:null}},watch:{value:function(){var t=this.vanField;t&&(t.resetValidation(),t.validateWithTrigger("onChange"))}},created:function(){var t=this.vanField;t&&!t.children&&(t.children=this)}},nn=Object(s.b)("switch"),rn=nn[0],on=nn[1],an=rn({mixins:[en],props:tn,computed:{checked:function(){return this.value===this.activeValue},style:function(){return{fontSize:Object(s.a)(this.size),backgroundColor:this.checked?this.activeColor:this.inactiveColor}}},methods:{onClick:function(t){if(this.$emit("click",t),!this.disabled&&!this.loading){var e=this.checked?this.inactiveValue:this.activeValue;this.$emit("input",e),this.$emit("change",e)}},genLoading:function(){var t=this.$createElement;if(this.loading){var e=this.checked?this.activeColor:this.inactiveColor;return t(ut,{class:on("loading"),attrs:{color:e}})}}},render:function(){var t=arguments[0],e=this.checked,n=this.loading,i=this.disabled;return t("div",{class:on({on:e,loading:n,disabled:i}),attrs:{role:"switch","aria-checked":String(e)},style:this.style,on:{click:this.onClick}},[t("div",{class:on("node")},[this.genLoading()])])}}),sn=Object(s.b)("address-edit"),An=sn[0],ln=sn[1],cn=sn[2],un={name:"",tel:"",country:"",province:"",city:"",county:"",areaCode:"",postalCode:"",addressDetail:"",isDefault:!1};var hn=An({props:{areaList:Object,isSaving:Boolean,isDeleting:Boolean,validator:Function,showDelete:Boolean,showPostal:Boolean,searchResult:Array,telMaxlength:[Number,String],showSetDefault:Boolean,saveButtonText:String,areaPlaceholder:String,deleteButtonText:String,showSearchResult:Boolean,showArea:{type:Boolean,default:!0},showDetail:{type:Boolean,default:!0},disableArea:Boolean,detailRows:{type:[Number,String],default:1},detailMaxlength:{type:[Number,String],default:200},addressInfo:{type:Object,default:function(){return i({},un)}},telValidator:{type:Function,default:mt},postalValidator:{type:Function,default:function(t){return/^\d{6}$/.test(t)}},areaColumnsPlaceholder:{type:Array,default:function(){return[]}}},data:function(){return{data:{},showAreaPopup:!1,detailFocused:!1,errorInfo:{tel:"",name:"",areaCode:"",postalCode:"",addressDetail:""}}},computed:{areaListLoaded:function(){return Object(s.h)(this.areaList)&&Object.keys(this.areaList).length},areaText:function(){var t=this.data,e=t.country,n=t.province,i=t.city,r=t.county;if(t.areaCode){var o=[e,n,i,r];return n&&n===i&&o.splice(1,1),o.filter(function(t){return t}).join("/")}return""},hideBottomFields:function(){var t=this.searchResult;return t&&t.length&&this.detailFocused}},watch:{addressInfo:{handler:function(t){this.data=i({},un,t),this.setAreaCode(t.areaCode)},deep:!0,immediate:!0},areaList:function(){this.setAreaCode(this.data.areaCode)}},methods:{onFocus:function(t){this.errorInfo[t]="",this.detailFocused="addressDetail"===t,this.$emit("focus",t)},onChangeDetail:function(t){this.data.addressDetail=t,this.$emit("change-detail",t)},onAreaConfirm:function(t){(t=t.filter(function(t){return!!t})).some(function(t){return!t.code})?be(cn("areaEmpty")):(this.showAreaPopup=!1,this.assignAreaValues(),this.$emit("change-area",t))},assignAreaValues:function(){var t=this.$refs.area;if(t){var e=t.getArea();e.areaCode=e.code,delete e.code,i(this.data,e)}},onSave:function(){var t=this,e=["name","tel"];this.showArea&&e.push("areaCode"),this.showDetail&&e.push("addressDetail"),this.showPostal&&e.push("postalCode"),e.every(function(e){var n=t.getErrorMessage(e);return n&&(t.errorInfo[e]=n),!n})&&!this.isSaving&&this.$emit("save",this.data)},getErrorMessage:function(t){var e=String(this.data[t]||"").trim();if(this.validator){var n=this.validator(t,e);if(n)return n}switch(t){case"name":return e?"":cn("nameEmpty");case"tel":return this.telValidator(e)?"":cn("telInvalid");case"areaCode":return e?"":cn("areaEmpty");case"addressDetail":return e?"":cn("addressEmpty");case"postalCode":return e&&!this.postalValidator(e)?cn("postalEmpty"):""}},onDelete:function(){var t=this;je.confirm({title:cn("confirmDelete")}).then(function(){t.$emit("delete",t.data)}).catch(function(){t.$emit("cancel-delete",t.data)})},getArea:function(){return this.$refs.area?this.$refs.area.getValues():[]},setAreaCode:function(t){this.data.areaCode=t||"",t&&this.$nextTick(this.assignAreaValues)},setAddressDetail:function(t){this.data.addressDetail=t},onDetailBlur:function(){var t=this;setTimeout(function(){t.detailFocused=!1})},genSetDefaultCell:function(t){var e=this;if(this.showSetDefault){var n={"right-icon":function(){return t(an,{attrs:{size:"24"},on:{change:function(t){e.$emit("change-default",t)}},model:{value:e.data.isDefault,callback:function(t){e.$set(e.data,"isDefault",t)}}})}};return t(ie,{directives:[{name:"show",value:!this.hideBottomFields}],attrs:{center:!0,title:cn("defaultAddress")},class:ln("default"),scopedSlots:n})}return t()}},render:function(t){var e=this,n=this.data,i=this.errorInfo,r=this.disableArea,o=this.hideBottomFields,a=function(t){return function(){return e.onFocus(t)}};return t("div",{class:ln()},[t("div",{class:ln("fields")},[t(le,{attrs:{clearable:!0,label:cn("name"),placeholder:cn("namePlaceholder"),errorMessage:i.name},on:{focus:a("name")},model:{value:n.name,callback:function(t){e.$set(n,"name",t)}}}),t(le,{attrs:{clearable:!0,type:"tel",label:cn("tel"),maxlength:this.telMaxlength,placeholder:cn("telPlaceholder"),errorMessage:i.tel},on:{focus:a("tel")},model:{value:n.tel,callback:function(t){e.$set(n,"tel",t)}}}),t(le,{directives:[{name:"show",value:this.showArea}],attrs:{readonly:!0,clickable:!r,label:cn("area"),placeholder:this.areaPlaceholder||cn("areaPlaceholder"),errorMessage:i.areaCode,rightIcon:r?null:"arrow",value:this.areaText},on:{focus:a("areaCode"),click:function(){e.$emit("click-area"),e.showAreaPopup=!r}}}),t(Ze,{directives:[{name:"show",value:this.showDetail}],attrs:{focused:this.detailFocused,value:n.addressDetail,errorMessage:i.addressDetail,detailRows:this.detailRows,detailMaxlength:this.detailMaxlength,searchResult:this.searchResult,showSearchResult:this.showSearchResult},on:{focus:a("addressDetail"),blur:this.onDetailBlur,input:this.onChangeDetail,"select-search":function(t){e.$emit("select-search",t)}}}),this.showPostal&&t(le,{directives:[{name:"show",value:!o}],attrs:{type:"tel",maxlength:"6",label:cn("postal"),placeholder:cn("postal"),errorMessage:i.postalCode},on:{focus:a("postalCode")},model:{value:n.postalCode,callback:function(t){e.$set(n,"postalCode",t)}}}),this.slots()]),this.genSetDefaultCell(t),t("div",{directives:[{name:"show",value:!o}],class:ln("buttons")},[t(Te,{attrs:{block:!0,round:!0,loading:this.isSaving,type:"danger",text:this.saveButtonText||cn("save")},on:{click:this.onSave}}),this.showDelete&&t(Te,{attrs:{block:!0,round:!0,loading:this.isDeleting,text:this.deleteButtonText||cn("delete")},on:{click:this.onDelete}})]),t(at,{attrs:{round:!0,position:"bottom",lazyRender:!1,getContainer:"body"},model:{value:e.showAreaPopup,callback:function(t){e.showAreaPopup=t}}},[t($t,{ref:"area",attrs:{value:n.areaCode,loading:!this.areaListLoaded,areaList:this.areaList,columnsPlaceholder:this.areaColumnsPlaceholder},on:{confirm:this.onAreaConfirm,cancel:function(){e.showAreaPopup=!1}}})])])}}),dn=Object(s.b)("radio-group"),fn=dn[0],pn=dn[1],gn=fn({mixins:[Fe("vanRadio"),en],props:{value:null,disabled:Boolean,direction:String,checkedColor:String,iconSize:[Number,String]},watch:{value:function(t){this.$emit("change",t)}},render:function(){return(0,arguments[0])("div",{class:pn([this.direction]),attrs:{role:"radiogroup"}},[this.slots()])}}),mn=Object(s.b)("tag"),vn=mn[0],yn=mn[1];function wn(t,e,n,i){var r,a=e.type,s=e.mark,A=e.plain,l=e.color,h=e.round,d=e.size,f=e.textColor,p=((r={})[A?"color":"backgroundColor"]=l,r);A?(p.color=f||l,p.borderColor=l):(p.color=f,p.background=l);var g={mark:s,plain:A,round:h};d&&(g[d]=d);var m=e.closeable&&t(nt,{attrs:{name:"cross"},class:yn("close"),on:{click:function(t){t.stopPropagation(),u(i,"close")}}});return t("transition",{attrs:{name:e.closeable?"van-fade":null}},[t("span",o()([{key:"content",style:p,class:yn([g,a])},c(i,!0)]),[null==n.default?void 0:n.default(),m])])}wn.props={size:String,mark:Boolean,color:String,plain:Boolean,round:Boolean,textColor:String,closeable:Boolean,type:{type:String,default:"default"}};var xn=vn(wn),Bn=function(t){var e=t.parent,n=t.bem,i=t.role;return{mixins:[Qe(e),en],props:{name:null,value:null,disabled:Boolean,iconSize:[Number,String],checkedColor:String,labelPosition:String,labelDisabled:Boolean,shape:{type:String,default:"round"},bindGroup:{type:Boolean,default:!0}},computed:{disableBindRelation:function(){return!this.bindGroup},isDisabled:function(){return this.parent&&this.parent.disabled||this.disabled},direction:function(){return this.parent&&this.parent.direction||null},iconStyle:function(){var t=this.checkedColor||this.parent&&this.parent.checkedColor;if(t&&this.checked&&!this.isDisabled)return{borderColor:t,backgroundColor:t}},tabindex:function(){return this.isDisabled||"radio"===i&&!this.checked?-1:0}},methods:{onClick:function(t){var e=this,n=t.target,i=this.$refs.icon,r=i===n||(null==i?void 0:i.contains(n));this.isDisabled||!r&&this.labelDisabled?this.$emit("click",t):(this.toggle(),setTimeout(function(){e.$emit("click",t)}))},genIcon:function(){var t=this.$createElement,e=this.checked,i=this.iconSize||this.parent&&this.parent.iconSize;return t("div",{ref:"icon",class:n("icon",[this.shape,{disabled:this.isDisabled,checked:e}]),style:{fontSize:Object(s.a)(i)}},[this.slots("icon",{checked:e})||t(nt,{attrs:{name:"success"},style:this.iconStyle})])},genLabel:function(){var t=this.$createElement,e=this.slots();if(e)return t("span",{class:n("label",[this.labelPosition,{disabled:this.isDisabled}])},[e])}},render:function(){var t=arguments[0],e=[this.genIcon()];return"left"===this.labelPosition?e.unshift(this.genLabel()):e.push(this.genLabel()),t("div",{attrs:{role:i,tabindex:this.tabindex,"aria-checked":String(this.checked)},class:n([{disabled:this.isDisabled,"label-disabled":this.labelDisabled},this.direction]),on:{click:this.onClick}},[e])}}},bn=Object(s.b)("radio"),Cn=(0,bn[0])({mixins:[Bn({bem:bn[1],role:"radio",parent:"vanRadio"})],computed:{currentValue:{get:function(){return this.parent?this.parent.value:this.value},set:function(t){(this.parent||this).$emit("input",t)}},checked:function(){return this.currentValue===this.name}},methods:{toggle:function(){this.currentValue=this.name}}}),_n=Object(s.b)("address-item"),Sn=_n[0],In=_n[1];function Tn(t,e,n,r){var a=e.disabled,s=e.switchable;return t("div",{class:In({disabled:a}),on:{click:function(){s&&u(r,"select"),u(r,"click")}}},[t(ie,o()([{attrs:{border:!1,valueClass:In("value")},scopedSlots:{default:function(){var r=e.data,o=[t("div",{class:In("name")},[r.name+" "+r.tel,n.tag?n.tag(i({},e.data)):e.data.isDefault&&e.defaultTagText?t(xn,{attrs:{type:"danger",round:!0},class:In("tag")},[e.defaultTagText]):void 0]),t("div",{class:In("address")},[r.address])];return s&&!a?t(Cn,{attrs:{name:r.id,iconSize:18}},[o]):o},"right-icon":function(){return t(nt,{attrs:{name:"edit"},class:In("edit"),on:{click:function(t){t.stopPropagation(),u(r,"edit"),u(r,"click")}}})}}},c(r)])),null==n.bottom?void 0:n.bottom(i({},e.data,{disabled:a}))])}Tn.props={data:Object,disabled:Boolean,switchable:Boolean,defaultTagText:String};var Mn=Sn(Tn),Qn=Object(s.b)("address-list"),Fn=Qn[0],kn=Qn[1],Dn=Qn[2];function Un(t,e,n,i){function r(r,o){if(r)return r.map(function(r,a){return t(Mn,{attrs:{data:r,disabled:o,switchable:e.switchable,defaultTagText:e.defaultTagText},key:r.id,scopedSlots:{bottom:n["item-bottom"],tag:n.tag},on:{select:function(){u(i,o?"select-disabled":"select",r,a),o||u(i,"input",r.id)},edit:function(){u(i,o?"edit-disabled":"edit",r,a)},click:function(){u(i,"click-item",r,a)}}})})}var a=r(e.list),s=r(e.disabledList,!0);return t("div",o()([{class:kn()},c(i)]),[null==n.top?void 0:n.top(),t(gn,{attrs:{value:e.value}},[a]),e.disabledText&&t("div",{class:kn("disabled-text")},[e.disabledText]),s,null==n.default?void 0:n.default(),t("div",{class:kn("bottom")},[t(Te,{attrs:{round:!0,block:!0,type:"danger",text:e.addButtonText||Dn("add")},class:kn("add"),on:{click:function(){u(i,"add")}}})])])}Un.props={list:Array,value:[Number,String],disabledList:Array,disabledText:String,addButtonText:String,defaultTagText:String,switchable:{type:Boolean,default:!0}};var En=Fn(Un),Ln=n("3EQU"),On=Object(s.b)("badge"),Pn=On[0],Hn=On[1],Nn=Pn({props:{dot:Boolean,max:[Number,String],color:String,content:[Number,String],tag:{type:String,default:"div"}},methods:{hasContent:function(){return!!(this.$scopedSlots.content||Object(s.e)(this.content)&&""!==this.content)},renderContent:function(){var t=this.dot,e=this.max,n=this.content;if(!t&&this.hasContent())return this.$scopedSlots.content?this.$scopedSlots.content():Object(s.e)(e)&&Object(Ln.b)(n)&&+n>e?e+"+":n},renderBadge:function(){var t=this.$createElement;if(this.hasContent()||this.dot)return t("div",{class:Hn({dot:this.dot,fixed:!!this.$scopedSlots.default}),style:{background:this.color}},[this.renderContent()])}},render:function(){var t=arguments[0];return this.$scopedSlots.default?t(this.tag,{class:Hn("wrapper")},[this.$scopedSlots.default(),this.renderBadge()]):this.renderBadge()}}),Rn=n("qVE5");function Vn(t){return"[object Date]"===Object.prototype.toString.call(t)&&!Object(Ln.a)(t.getTime())}var zn=Object(s.b)("calendar"),Kn=zn[0],Gn=zn[1],Wn=zn[2];function jn(t,e){var n=t.getFullYear(),i=e.getFullYear(),r=t.getMonth(),o=e.getMonth();return n===i?r===o?0:r>o?1:-1:n>i?1:-1}function $n(t,e){var n=jn(t,e);if(0===n){var i=t.getDate(),r=e.getDate();return i===r?0:i>r?1:-1}return n}function qn(t,e){return(t=new Date(t)).setDate(t.getDate()+e),t}function Yn(t){return qn(t,1)}function Xn(t){return new Date(t)}function Jn(t){return Array.isArray(t)?t.map(function(t){return null===t?t:Xn(t)}):Xn(t)}function Zn(t){if(!t)return 0;for(;Object(Ln.a)(parseInt(t,10));){if(!(t.length>1))return 0;t=t.slice(1)}return parseInt(t,10)}function ti(t,e){return 32-new Date(t,e-1,32).getDate()}var ei=(0,Object(s.b)("calendar-month")[0])({props:{date:Date,type:String,color:String,minDate:Date,maxDate:Date,showMark:Boolean,rowHeight:[Number,String],formatter:Function,lazyRender:Boolean,currentDate:[Date,Array],allowSameDay:Boolean,showSubtitle:Boolean,showMonthTitle:Boolean,firstDayOfWeek:Number},data:function(){return{visible:!1}},computed:{title:function(){return t=this.date,Wn("monthTitle",t.getFullYear(),t.getMonth()+1);var t},rowHeightWithUnit:function(){return Object(s.a)(this.rowHeight)},offset:function(){var t=this.firstDayOfWeek,e=this.date.getDay();return t?(e+7-this.firstDayOfWeek)%7:e},totalDay:function(){return ti(this.date.getFullYear(),this.date.getMonth()+1)},shouldRender:function(){return this.visible||!this.lazyRender},placeholders:function(){for(var t=[],e=Math.ceil((this.totalDay+this.offset)/7),n=1;n<=e;n++)t.push({type:"placeholder"});return t},days:function(){for(var t=[],e=this.date.getFullYear(),n=this.date.getMonth(),i=1;i<=this.totalDay;i++){var r=new Date(e,n,i),o=this.getDayType(r),a={date:r,type:o,text:i,bottomInfo:this.getBottomInfo(o)};this.formatter&&(a=this.formatter(a)),t.push(a)}return t}},methods:{getHeight:function(){var t;return(null==(t=this.$el)?void 0:t.getBoundingClientRect().height)||0},scrollIntoView:function(t){var e=this.$refs,n=e.days,i=e.month;E(t,(this.showSubtitle?n:i).getBoundingClientRect().top-t.getBoundingClientRect().top+t.scrollTop)},getMultipleDayType:function(t){var e=this,n=function(t){return e.currentDate.some(function(e){return 0===$n(e,t)})};if(n(t)){var i=qn(t,-1),r=Yn(t),o=n(i),a=n(r);return o&&a?"multiple-middle":o?"end":a?"start":"multiple-selected"}return""},getRangeDayType:function(t){var e=this.currentDate,n=e[0],i=e[1];if(!n)return"";var r=$n(t,n);if(!i)return 0===r?"start":"";var o=$n(t,i);return 0===r&&0===o&&this.allowSameDay?"start-end":0===r?"start":0===o?"end":r>0&&o<0?"middle":void 0},getDayType:function(t){var e=this.type,n=this.minDate,i=this.maxDate,r=this.currentDate;return $n(t,n)<0||$n(t,i)>0?"disabled":null!==r?"single"===e?0===$n(t,r)?"selected":"":"multiple"===e?this.getMultipleDayType(t):"range"===e?this.getRangeDayType(t):void 0:void 0},getBottomInfo:function(t){if("range"===this.type){if("start"===t||"end"===t)return Wn(t);if("start-end"===t)return Wn("startEnd")}},getDayStyle:function(t,e){var n={height:this.rowHeightWithUnit};return"placeholder"===t?(n.width="100%",n):(0===e&&(n.marginLeft=100*this.offset/7+"%"),this.color&&("start"===t||"end"===t||"start-end"===t||"multiple-selected"===t||"multiple-middle"===t?n.background=this.color:"middle"===t&&(n.color=this.color)),n)},genTitle:function(){var t=this.$createElement;if(this.showMonthTitle)return t("div",{class:Gn("month-title")},[this.title])},genMark:function(){var t=this.$createElement;if(this.showMark&&this.shouldRender)return t("div",{class:Gn("month-mark")},[this.date.getMonth()+1])},genDays:function(){var t=this.$createElement,e=this.shouldRender?this.days:this.placeholders;return t("div",{ref:"days",attrs:{role:"grid"},class:Gn("days")},[this.genMark(),e.map(this.genDay)])},genTopInfo:function(t){var e=this.$createElement,n=this.$scopedSlots["top-info"];if(t.topInfo||n)return e("div",{class:Gn("top-info")},[n?n(t):t.topInfo])},genBottomInfo:function(t){var e=this.$createElement,n=this.$scopedSlots["bottom-info"];if(t.bottomInfo||n)return e("div",{class:Gn("bottom-info")},[n?n(t):t.bottomInfo])},genDay:function(t,e){var n=this,i=this.$createElement,r=t.type,o=this.getDayStyle(r,e),a="disabled"===r,s=function(){a||n.$emit("click",t)};return"selected"===r?i("div",{attrs:{role:"gridcell",tabindex:-1},style:o,class:[Gn("day"),t.className],on:{click:s}},[i("div",{class:Gn("selected-day"),style:{width:this.rowHeightWithUnit,height:this.rowHeightWithUnit,background:this.color}},[this.genTopInfo(t),t.text,this.genBottomInfo(t)])]):i("div",{attrs:{role:"gridcell",tabindex:a?null:-1},style:o,class:[Gn("day",r),t.className],on:{click:s}},[this.genTopInfo(t),t.text,this.genBottomInfo(t)])}},render:function(){return(0,arguments[0])("div",{class:Gn("month"),ref:"month"},[this.genTitle(),this.genDays()])}}),ni=(0,Object(s.b)("calendar-header")[0])({props:{title:String,subtitle:String,showTitle:Boolean,showSubtitle:Boolean,firstDayOfWeek:Number},methods:{genTitle:function(){var t=this.$createElement;if(this.showTitle){var e=this.slots("title")||this.title||Wn("title");return t("div",{class:Gn("header-title")},[e])}},genSubtitle:function(){var t=this.$createElement;if(this.showSubtitle)return t("div",{class:Gn("header-subtitle")},[this.subtitle])},genWeekDays:function(){var t=this.$createElement,e=Wn("weekdays"),n=this.firstDayOfWeek,i=[].concat(e.slice(n,7),e.slice(0,n));return t("div",{class:Gn("weekdays")},[i.map(function(e){return t("span",{class:Gn("weekday")},[e])})])}},render:function(){return(0,arguments[0])("div",{class:Gn("header")},[this.genTitle(),this.genSubtitle(),this.genWeekDays()])}}),ii=Kn({props:{title:String,color:String,value:Boolean,readonly:Boolean,formatter:Function,rowHeight:[Number,String],confirmText:String,rangePrompt:String,defaultDate:[Date,Array],getContainer:[String,Function],allowSameDay:Boolean,confirmDisabledText:String,type:{type:String,default:"single"},round:{type:Boolean,default:!0},position:{type:String,default:"bottom"},poppable:{type:Boolean,default:!0},maxRange:{type:[Number,String],default:null},lazyRender:{type:Boolean,default:!0},showMark:{type:Boolean,default:!0},showTitle:{type:Boolean,default:!0},showConfirm:{type:Boolean,default:!0},showSubtitle:{type:Boolean,default:!0},closeOnPopstate:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!0},minDate:{type:Date,validator:Vn,default:function(){return new Date}},maxDate:{type:Date,validator:Vn,default:function(){var t=new Date;return new Date(t.getFullYear(),t.getMonth()+6,t.getDate())}},firstDayOfWeek:{type:[Number,String],default:0,validator:function(t){return t>=0&&t<=6}}},inject:{vanPopup:{default:null}},data:function(){return{subtitle:"",currentDate:this.getInitialDate()}},computed:{months:function(){var t=[],e=new Date(this.minDate);e.setDate(1);do{t.push(new Date(e)),e.setMonth(e.getMonth()+1)}while(1!==jn(e,this.maxDate));return t},buttonDisabled:function(){var t=this.type,e=this.currentDate;if(e){if("range"===t)return!e[0]||!e[1];if("multiple"===t)return!e.length}return!e},dayOffset:function(){return this.firstDayOfWeek?this.firstDayOfWeek%7:0}},watch:{value:"init",type:function(){this.reset()},defaultDate:function(t){this.currentDate=t,this.scrollIntoView()}},mounted:function(){var t;(this.init(),this.poppable)||(null==(t=this.vanPopup)||t.$on("opened",this.onScroll))},activated:function(){this.init()},methods:{reset:function(t){void 0===t&&(t=this.getInitialDate()),this.currentDate=t,this.scrollIntoView()},init:function(){var t=this;this.poppable&&!this.value||this.$nextTick(function(){t.bodyHeight=Math.floor(t.$refs.body.getBoundingClientRect().height),t.onScroll(),t.scrollIntoView()})},scrollToDate:function(t){var e=this;Object(Rn.c)(function(){var n=e.value||!e.poppable;t&&n&&(e.months.some(function(n,i){if(0===jn(n,t)){var r=e.$refs,o=r.body;return r.months[i].scrollIntoView(o),!0}return!1}),e.onScroll())})},scrollIntoView:function(){var t=this.currentDate;if(t){var e="single"===this.type?t:t[0];this.scrollToDate(e)}},getInitialDate:function(){var t=this.type,e=this.minDate,n=this.maxDate,i=this.defaultDate;if(null===i)return i;var r=new Date;if(-1===$n(r,e)?r=e:1===$n(r,n)&&(r=n),"range"===t){var o=i||[],a=o[0],s=o[1];return[a||r,s||Yn(r)]}return"multiple"===t?i||[r]:i||r},onScroll:function(){var t=this.$refs,e=t.body,n=t.months,i=U(e),r=i+this.bodyHeight,o=n.map(function(t){return t.getHeight()});if(!(r>o.reduce(function(t,e){return t+e},0)&&i>0)){for(var a,s=0,A=[-1,-1],l=0;l<n.length;l++){s<=r&&s+o[l]>=i&&(A[1]=l,a||(a=n[l],A[0]=l),n[l].showed||(n[l].showed=!0,this.$emit("month-show",{date:n[l].date,title:n[l].title}))),s+=o[l]}n.forEach(function(t,e){t.visible=e>=A[0]-1&&e<=A[1]+1}),a&&(this.subtitle=a.title)}},onClickDay:function(t){if(!this.readonly){var e=t.date,n=this.type,i=this.currentDate;if("range"===n){if(!i)return void this.select([e,null]);var r=i[0],o=i[1];if(r&&!o){var a=$n(e,r);1===a?this.select([r,e],!0):-1===a?this.select([e,null]):this.allowSameDay&&this.select([e,e],!0)}else this.select([e,null])}else if("multiple"===n){if(!i)return void this.select([e]);var s;if(this.currentDate.some(function(t,n){var i=0===$n(t,e);return i&&(s=n),i})){var A=i.splice(s,1)[0];this.$emit("unselect",Xn(A))}else this.maxRange&&i.length>=this.maxRange?be(this.rangePrompt||Wn("rangePrompt",this.maxRange)):this.select([].concat(i,[e]))}else this.select(e,!0)}},togglePopup:function(t){this.$emit("input",t)},select:function(t,e){var n=this,i=function(t){n.currentDate=t,n.$emit("select",Jn(n.currentDate))};if(e&&"range"===this.type&&!this.checkRange(t))return void(this.showConfirm?i([t[0],qn(t[0],this.maxRange-1)]):i(t));i(t),e&&!this.showConfirm&&this.onConfirm()},checkRange:function(t){var e=this.maxRange,n=this.rangePrompt;return!(e&&function(t){var e=t[0].getTime();return(t[1].getTime()-e)/864e5+1}(t)>e)||(be(n||Wn("rangePrompt",e)),!1)},onConfirm:function(){this.$emit("confirm",Jn(this.currentDate))},genMonth:function(t,e){var n=this.$createElement,i=0!==e||!this.showSubtitle;return n(ei,{ref:"months",refInFor:!0,attrs:{date:t,type:this.type,color:this.color,minDate:this.minDate,maxDate:this.maxDate,showMark:this.showMark,formatter:this.formatter,rowHeight:this.rowHeight,lazyRender:this.lazyRender,currentDate:this.currentDate,showSubtitle:this.showSubtitle,allowSameDay:this.allowSameDay,showMonthTitle:i,firstDayOfWeek:this.dayOffset},scopedSlots:{"top-info":this.$scopedSlots["top-info"],"bottom-info":this.$scopedSlots["bottom-info"]},on:{click:this.onClickDay}})},genFooterContent:function(){var t=this.$createElement,e=this.slots("footer");if(e)return e;if(this.showConfirm){var n=this.buttonDisabled?this.confirmDisabledText:this.confirmText;return t(Te,{attrs:{round:!0,block:!0,type:"danger",color:this.color,disabled:this.buttonDisabled,nativeType:"button"},class:Gn("confirm"),on:{click:this.onConfirm}},[n||Wn("confirm")])}},genFooter:function(){return(0,this.$createElement)("div",{class:Gn("footer",{unfit:!this.safeAreaInsetBottom})},[this.genFooterContent()])},genCalendar:function(){var t=this,e=this.$createElement;return e("div",{class:Gn()},[e(ni,{attrs:{title:this.title,showTitle:this.showTitle,subtitle:this.subtitle,showSubtitle:this.showSubtitle,firstDayOfWeek:this.dayOffset},scopedSlots:{title:function(){return t.slots("title")}}}),e("div",{ref:"body",class:Gn("body"),on:{scroll:this.onScroll}},[this.months.map(this.genMonth)]),this.genFooter()])}},render:function(){var t=this,e=arguments[0];if(this.poppable){var n,i=function(e){return function(){return t.$emit(e)}};return e(at,{attrs:(n={round:!0,value:this.value},n.round=this.round,n.position=this.position,n.closeable=this.showTitle||this.showSubtitle,n.getContainer=this.getContainer,n.closeOnPopstate=this.closeOnPopstate,n.closeOnClickOverlay=this.closeOnClickOverlay,n),class:Gn("popup"),on:{input:this.togglePopup,open:i("open"),opened:i("opened"),close:i("close"),closed:i("closed")}},[this.genCalendar()])}return this.genCalendar()}}),ri=Object(s.b)("image"),oi=ri[0],ai=ri[1],si=oi({props:{src:String,fit:String,alt:String,round:Boolean,width:[Number,String],height:[Number,String],radius:[Number,String],lazyLoad:Boolean,iconPrefix:String,showError:{type:Boolean,default:!0},showLoading:{type:Boolean,default:!0},errorIcon:{type:String,default:"photo-fail"},loadingIcon:{type:String,default:"photo"}},data:function(){return{loading:!0,error:!1}},watch:{src:function(){this.loading=!0,this.error=!1}},computed:{style:function(){var t={};return Object(s.e)(this.width)&&(t.width=Object(s.a)(this.width)),Object(s.e)(this.height)&&(t.height=Object(s.a)(this.height)),Object(s.e)(this.radius)&&(t.overflow="hidden",t.borderRadius=Object(s.a)(this.radius)),t}},created:function(){var t=this.$Lazyload;t&&s.d&&(t.$on("loaded",this.onLazyLoaded),t.$on("error",this.onLazyLoadError))},beforeDestroy:function(){var t=this.$Lazyload;t&&(t.$off("loaded",this.onLazyLoaded),t.$off("error",this.onLazyLoadError))},methods:{onLoad:function(t){this.loading=!1,this.$emit("load",t)},onLazyLoaded:function(t){t.el===this.$refs.image&&this.loading&&this.onLoad()},onLazyLoadError:function(t){t.el!==this.$refs.image||this.error||this.onError()},onError:function(t){this.error=!0,this.loading=!1,this.$emit("error",t)},onClick:function(t){this.$emit("click",t)},genPlaceholder:function(){var t=this.$createElement;return this.loading&&this.showLoading?t("div",{class:ai("loading")},[this.slots("loading")||t(nt,{attrs:{name:this.loadingIcon,classPrefix:this.iconPrefix},class:ai("loading-icon")})]):this.error&&this.showError?t("div",{class:ai("error")},[this.slots("error")||t(nt,{attrs:{name:this.errorIcon,classPrefix:this.iconPrefix},class:ai("error-icon")})]):void 0},genImage:function(){var t=this.$createElement,e={class:ai("img"),attrs:{alt:this.alt},style:{objectFit:this.fit}};if(!this.error)return this.lazyLoad?t("img",o()([{ref:"image",directives:[{name:"lazy",value:this.src}]},e])):t("img",o()([{attrs:{src:this.src},on:{load:this.onLoad,error:this.onError}},e]))}},render:function(){return(0,arguments[0])("div",{class:ai({round:this.round}),style:this.style,on:{click:this.onClick}},[this.genImage(),this.genPlaceholder(),this.slots()])}}),Ai=Object(s.b)("card"),li=Ai[0],ci=Ai[1];function ui(t,e,n,i){var r,a=e.thumb,A=n.num||Object(s.e)(e.num),l=n.price||Object(s.e)(e.price),h=n["origin-price"]||Object(s.e)(e.originPrice),d=A||l||h||n.bottom;function f(t){u(i,"click-thumb",t)}return t("div",o()([{class:ci()},c(i,!0)]),[t("div",{class:ci("header")},[function(){if(n.thumb||a)return t("a",{attrs:{href:e.thumbLink},class:ci("thumb"),on:{click:f}},[n.thumb?n.thumb():t(si,{attrs:{src:a,width:"100%",height:"100%",fit:"cover","lazy-load":e.lazyLoad}}),function(){if(n.tag||e.tag)return t("div",{class:ci("tag")},[n.tag?n.tag():t(xn,{attrs:{mark:!0,type:"danger"}},[e.tag])])}()])}(),t("div",{class:ci("content",{centered:e.centered})},[t("div",[n.title?n.title():e.title?t("div",{class:[ci("title"),"van-multi-ellipsis--l2"]},[e.title]):void 0,n.desc?n.desc():e.desc?t("div",{class:[ci("desc"),"van-ellipsis"]},[e.desc]):void 0,null==n.tags?void 0:n.tags()]),d&&t("div",{class:"van-card__bottom"},[null==(r=n["price-top"])?void 0:r.call(n),function(){if(l)return t("div",{class:ci("price")},[n.price?n.price():(i=e.price.toString().split("."),t("div",[t("span",{class:ci("price-currency")},[e.currency]),t("span",{class:ci("price-integer")},[i[0]]),".",t("span",{class:ci("price-decimal")},[i[1]])]))]);var i}(),function(){if(h){var i=n["origin-price"];return t("div",{class:ci("origin-price")},[i?i():e.currency+" "+e.originPrice])}}(),function(){if(A)return t("div",{class:ci("num")},[n.num?n.num():"x"+e.num])}(),null==n.bottom?void 0:n.bottom()])])]),function(){if(n.footer)return t("div",{class:ci("footer")},[n.footer()])}()])}ui.props={tag:String,desc:String,thumb:String,title:String,centered:Boolean,lazyLoad:Boolean,thumbLink:String,num:[Number,String],price:[Number,String],originPrice:[Number,String],currency:{type:String,default:"楼"}};var hi=li(ui),di=Object(s.b)("tab"),fi=di[0],pi=di[1],gi=fi({mixins:[Qe("vanTabs")],props:i({},Xt,{dot:Boolean,name:[Number,String],info:[Number,String],badge:[Number,String],title:String,titleStyle:null,titleClass:null,disabled:Boolean}),data:function(){return{inited:!1}},computed:{computedName:function(){var t;return null!=(t=this.name)?t:this.index},isActive:function(){var t=this.computedName===this.parent.currentName;return t&&(this.inited=!0),t}},watch:{title:function(){this.parent.setLine(),this.parent.scrollIntoView()},inited:function(t){var e=this;this.parent.lazyRender&&t&&this.$nextTick(function(){e.parent.$emit("rendered",e.computedName,e.title)})}},render:function(t){var e=this.slots,n=this.parent,i=this.isActive,r=e();if(r||n.animated){var o=n.scrollspy||i,a=this.inited||n.scrollspy||!n.lazyRender?r:t();return n.animated?t("div",{attrs:{role:"tabpanel","aria-hidden":!i},class:pi("pane-wrapper",{inactive:!i})},[t("div",{class:pi("pane")},[a])]):t("div",{directives:[{name:"show",value:o}],attrs:{role:"tabpanel"},class:pi("pane")},[a])}}});function mi(t){var e=window.getComputedStyle(t),n="none"===e.display,i=null===t.offsetParent&&"fixed"!==e.position;return n||i}function vi(t){var e=t.interceptor,n=t.args,i=t.done;if(e){var r=e.apply(void 0,n);Object(s.i)(r)?r.then(function(t){t&&i()}).catch(s.k):r&&i()}else i()}var yi=Object(s.b)("tab"),wi=yi[0],xi=yi[1],Bi=wi({props:{dot:Boolean,type:String,info:[Number,String],color:String,title:String,isActive:Boolean,disabled:Boolean,scrollable:Boolean,activeColor:String,inactiveColor:String},computed:{style:function(){var t={},e=this.color,n=this.isActive,i="card"===this.type;e&&i&&(t.borderColor=e,this.disabled||(n?t.backgroundColor=e:t.color=e));var r=n?this.activeColor:this.inactiveColor;return r&&(t.color=r),t}},methods:{onClick:function(){this.$emit("click")},genText:function(){var t=this.$createElement,e=t("span",{class:xi("text",{ellipsis:!this.scrollable})},[this.slots()||this.title]);return this.dot||Object(s.e)(this.info)&&""!==this.info?t("span",{class:xi("text-wrapper")},[e,t(Y,{attrs:{dot:this.dot,info:this.info}})]):e}},render:function(){return(0,arguments[0])("div",{attrs:{role:"tab","aria-selected":this.isActive},class:[xi({active:this.isActive,disabled:this.disabled})],style:this.style,on:{click:this.onClick}},[this.genText()])}}),bi=Object(s.b)("sticky"),Ci=bi[0],_i=bi[1],Si=Ci({mixins:[V(function(t,e){if(this.scroller||(this.scroller=D(this.$el)),this.observer){var n=e?"observe":"unobserve";this.observer[n](this.$el)}t(this.scroller,"scroll",this.onScroll,!0),this.onScroll()})],props:{zIndex:[Number,String],container:null,offsetTop:{type:[Number,String],default:0}},data:function(){return{fixed:!1,height:0,transform:0}},computed:{offsetTopPx:function(){return Object(St.b)(this.offsetTop)},style:function(){if(this.fixed){var t={};return Object(s.e)(this.zIndex)&&(t.zIndex=this.zIndex),this.offsetTopPx&&this.fixed&&(t.top=this.offsetTopPx+"px"),this.transform&&(t.transform="translate3d(0, "+this.transform+"px, 0)"),t}}},watch:{fixed:function(t){this.$emit("change",t)}},created:function(){var t=this;!s.j&&window.IntersectionObserver&&(this.observer=new IntersectionObserver(function(e){e[0].intersectionRatio>0&&t.onScroll()},{root:document.body}))},methods:{onScroll:function(){var t=this;if(!mi(this.$el)){this.height=this.$el.offsetHeight;var e=this.container,n=this.offsetTopPx,i=U(window),r=P(this.$el),o=function(){t.$emit("scroll",{scrollTop:i,isFixed:t.fixed})};if(e){var a=r+e.offsetHeight;if(i+n+this.height>a){var s=this.height+i-a;return s<this.height?(this.fixed=!0,this.transform=-(s+n)):this.fixed=!1,void o()}}i+n>r?(this.fixed=!0,this.transform=0):this.fixed=!1,o()}}},render:function(){var t=arguments[0],e=this.fixed;return t("div",{style:{height:e?this.height+"px":null}},[t("div",{class:_i({fixed:e}),style:this.style},[this.slots()])])}}),Ii=Object(s.b)("tabs"),Ti=Ii[0],Mi=Ii[1],Qi=Ti({mixins:[H],props:{count:Number,duration:[Number,String],animated:Boolean,swipeable:Boolean,currentIndex:Number},computed:{style:function(){if(this.animated)return{transform:"translate3d("+-1*this.currentIndex*100+"%, 0, 0)",transitionDuration:this.duration+"s"}},listeners:function(){if(this.swipeable)return{touchstart:this.touchStart,touchmove:this.touchMove,touchend:this.onTouchEnd,touchcancel:this.onTouchEnd}}},methods:{onTouchEnd:function(){var t=this.direction,e=this.deltaX,n=this.currentIndex;"horizontal"===t&&this.offsetX>=50&&(e>0&&0!==n?this.$emit("change",n-1):e<0&&n!==this.count-1&&this.$emit("change",n+1))},genChildren:function(){var t=this.$createElement;return this.animated?t("div",{class:Mi("track"),style:this.style},[this.slots()]):this.slots()}},render:function(){return(0,arguments[0])("div",{class:Mi("content",{animated:this.animated}),on:i({},this.listeners)},[this.genChildren()])}}),Fi=Object(s.b)("tabs"),ki=Fi[0],Di=Fi[1],Ui=ki({mixins:[Fe("vanTabs"),V(function(t){this.scroller||(this.scroller=D(this.$el)),t(window,"resize",this.resize,!0),this.scrollspy&&t(this.scroller,"scroll",this.onScroll,!0)})],inject:{vanPopup:{default:null}},model:{prop:"active"},props:{color:String,border:Boolean,sticky:Boolean,animated:Boolean,swipeable:Boolean,scrollspy:Boolean,background:String,lineWidth:[Number,String],lineHeight:[Number,String],beforeChange:Function,titleActiveColor:String,titleInactiveColor:String,type:{type:String,default:"line"},active:{type:[Number,String],default:0},ellipsis:{type:Boolean,default:!0},duration:{type:[Number,String],default:.3},offsetTop:{type:[Number,String],default:0},lazyRender:{type:Boolean,default:!0},swipeThreshold:{type:[Number,String],default:5}},data:function(){return{position:"",currentIndex:null,lineStyle:{backgroundColor:this.color}}},computed:{scrollable:function(){return this.children.length>this.swipeThreshold||!this.ellipsis},navStyle:function(){return{borderColor:this.color,background:this.background}},currentName:function(){var t=this.children[this.currentIndex];if(t)return t.computedName},offsetTopPx:function(){return Object(St.b)(this.offsetTop)},scrollOffset:function(){return this.sticky?this.offsetTopPx+this.tabHeight:0}},watch:{color:"setLine",active:function(t){t!==this.currentName&&this.setCurrentIndexByName(t)},children:function(){var t=this;this.setCurrentIndexByName(this.active),this.setLine(),this.$nextTick(function(){t.scrollIntoView(!0)})},currentIndex:function(){this.scrollIntoView(),this.setLine(),this.stickyFixed&&!this.scrollspy&&O(Math.ceil(P(this.$el)-this.offsetTopPx))},scrollspy:function(t){t?g(this.scroller,"scroll",this.onScroll,!0):m(this.scroller,"scroll",this.onScroll)}},mounted:function(){var t=this;this.init(),this.vanPopup&&this.vanPopup.onReopen(function(){t.setLine()})},activated:function(){this.init(),this.setLine()},methods:{resize:function(){this.setLine()},init:function(){var t=this;this.$nextTick(function(){var e;t.inited=!0,t.tabHeight=F(e=t.$refs.wrap)?e.innerHeight:e.getBoundingClientRect().height,t.scrollIntoView(!0)})},setLine:function(){var t=this,e=this.inited;this.$nextTick(function(){var n=t.$refs.titles;if(n&&n[t.currentIndex]&&"line"===t.type&&!mi(t.$el)){var i=n[t.currentIndex].$el,r=t.lineWidth,o=t.lineHeight,a=i.offsetLeft+i.offsetWidth/2,A={width:Object(s.a)(r),backgroundColor:t.color,transform:"translateX("+a+"px) translateX(-50%)"};if(e&&(A.transitionDuration=t.duration+"s"),Object(s.e)(o)){var l=Object(s.a)(o);A.height=l,A.borderRadius=l}t.lineStyle=A}})},setCurrentIndexByName:function(t){var e=this.children.filter(function(e){return e.computedName===t}),n=(this.children[0]||{}).index||0;this.setCurrentIndex(e.length?e[0].index:n)},setCurrentIndex:function(t){var e=this.findAvailableTab(t);if(Object(s.e)(e)){var n=this.children[e],i=n.computedName,r=null!==this.currentIndex;this.currentIndex=e,i!==this.active&&(this.$emit("input",i),r&&this.$emit("change",i,n.title))}},findAvailableTab:function(t){for(var e=t<this.currentIndex?-1:1;t>=0&&t<this.children.length;){if(!this.children[t].disabled)return t;t+=e}},onClick:function(t,e){var n=this,i=this.children[e],r=i.title,o=i.disabled,a=i.computedName;o?this.$emit("disabled",a,r):(vi({interceptor:this.beforeChange,args:[a],done:function(){n.setCurrentIndex(e),n.scrollToCurrentContent()}}),this.$emit("click",a,r),qt(t.$router,t))},scrollIntoView:function(t){var e=this.$refs.titles;if(this.scrollable&&e&&e[this.currentIndex]){var n=this.$refs.nav,i=e[this.currentIndex].$el;!function(t,e,n){var i=0,r=t.scrollLeft,o=0===n?1:Math.round(1e3*n/16);!function n(){t.scrollLeft+=(e-r)/o,++i<o&&Object(Rn.c)(n)}()}(n,i.offsetLeft-(n.offsetWidth-i.offsetWidth)/2,t?0:+this.duration)}},onSticktScroll:function(t){this.stickyFixed=t.isFixed,this.$emit("scroll",t)},scrollTo:function(t){var e=this;this.$nextTick(function(){e.setCurrentIndexByName(t),e.scrollToCurrentContent(!0)})},scrollToCurrentContent:function(t){var e=this;if(void 0===t&&(t=!1),this.scrollspy){var n=this.children[this.currentIndex],i=null==n?void 0:n.$el;if(i){var r=P(i,this.scroller)-this.scrollOffset;this.lockScroll=!0,function(t,e,n,i){var r=U(t),o=r<e,a=0===n?1:Math.round(1e3*n/16),s=(e-r)/a;!function n(){r+=s,(o&&r>e||!o&&r<e)&&(r=e),E(t,r),o&&r<e||!o&&r>e?Object(Rn.c)(n):i&&Object(Rn.c)(i)}()}(this.scroller,r,t?0:+this.duration,function(){e.lockScroll=!1})}}},onScroll:function(){if(this.scrollspy&&!this.lockScroll){var t=this.getCurrentIndexOnScroll();this.setCurrentIndex(t)}},getCurrentIndexOnScroll:function(){for(var t,e=this.children,n=0;n<e.length;n++){if((F(t=e[n].$el)?0:t.getBoundingClientRect().top)>this.scrollOffset)return 0===n?0:n-1}return e.length-1}},render:function(){var t,e=this,n=arguments[0],i=this.type,r=this.animated,o=this.scrollable,a=this.children.map(function(t,r){var a;return n(Bi,{ref:"titles",refInFor:!0,attrs:{type:i,dot:t.dot,info:null!=(a=t.badge)?a:t.info,title:t.title,color:e.color,isActive:r===e.currentIndex,disabled:t.disabled,scrollable:o,activeColor:e.titleActiveColor,inactiveColor:e.titleInactiveColor},style:t.titleStyle,class:t.titleClass,scopedSlots:{default:function(){return t.slots("title")}},on:{click:function(){e.onClick(t,r)}}})}),s=n("div",{ref:"wrap",class:[Di("wrap",{scrollable:o}),(t={},t[_t]="line"===i&&this.border,t)]},[n("div",{ref:"nav",attrs:{role:"tablist"},class:Di("nav",[i,{complete:this.scrollable}]),style:this.navStyle},[this.slots("nav-left"),a,"line"===i&&n("div",{class:Di("line"),style:this.lineStyle}),this.slots("nav-right")])]);return n("div",{class:Di([i])},[this.sticky?n(Si,{attrs:{container:this.$el,offsetTop:this.offsetTop},on:{scroll:this.onSticktScroll}},[s]):s,n(Qi,{attrs:{count:this.children.length,animated:r,duration:this.duration,swipeable:this.swipeable,currentIndex:this.currentIndex},on:{change:this.setCurrentIndex}},[this.slots()])])}}),Ei=Object(s.b)("cascader"),Li=Ei[0],Oi=Ei[1],Pi=Ei[2],Hi=Li({props:{title:String,value:[Number,String],fieldNames:Object,placeholder:String,activeColor:String,options:{type:Array,default:function(){return[]}},closeable:{type:Boolean,default:!0},showHeader:{type:Boolean,default:!0}},data:function(){return{tabs:[],activeTab:0}},computed:{textKey:function(){var t;return(null==(t=this.fieldNames)?void 0:t.text)||"text"},valueKey:function(){var t;return(null==(t=this.fieldNames)?void 0:t.value)||"value"},childrenKey:function(){var t;return(null==(t=this.fieldNames)?void 0:t.children)||"children"}},watch:{options:{deep:!0,handler:"updateTabs"},value:function(t){var e=this;if((t||0===t)&&-1!==this.tabs.map(function(t){var n;return null==(n=t.selectedOption)?void 0:n[e.valueKey]}).indexOf(t))return;this.updateTabs()}},created:function(){this.updateTabs()},methods:{getSelectedOptionsByValue:function(t,e){for(var n=0;n<t.length;n++){var i=t[n];if(i[this.valueKey]===e)return[i];if(i[this.childrenKey]){var r=this.getSelectedOptionsByValue(i[this.childrenKey],e);if(r)return[i].concat(r)}}},updateTabs:function(){var t=this;if(this.value||0===this.value){var e=this.getSelectedOptionsByValue(this.options,this.value);if(e){var n=this.options;return this.tabs=e.map(function(e){var i={options:n,selectedOption:e},r=n.filter(function(n){return n[t.valueKey]===e[t.valueKey]});return r.length&&(n=r[0][t.childrenKey]),i}),n&&this.tabs.push({options:n,selectedOption:null}),void this.$nextTick(function(){t.activeTab=t.tabs.length-1})}}this.tabs=[{options:this.options,selectedOption:null}]},onSelect:function(t,e){var n=this;if(this.tabs[e].selectedOption=t,this.tabs.length>e+1&&(this.tabs=this.tabs.slice(0,e+1)),t[this.childrenKey]){var i={options:t[this.childrenKey],selectedOption:null};this.tabs[e+1]?this.$set(this.tabs,e+1,i):this.tabs.push(i),this.$nextTick(function(){n.activeTab++})}var r=this.tabs.map(function(t){return t.selectedOption}).filter(function(t){return!!t}),o={value:t[this.valueKey],tabIndex:e,selectedOptions:r};this.$emit("input",t[this.valueKey]),this.$emit("change",o),t[this.childrenKey]||this.$emit("finish",o)},onClose:function(){this.$emit("close")},renderHeader:function(){var t=this.$createElement;if(this.showHeader)return t("div",{class:Oi("header")},[t("h2",{class:Oi("title")},[this.slots("title")||this.title]),this.closeable?t(nt,{attrs:{name:"cross"},class:Oi("close-icon"),on:{click:this.onClose}}):null])},renderOptions:function(t,e,n){var i=this,r=this.$createElement;return r("ul",{class:Oi("options")},[t.map(function(t){var o=e&&t[i.valueKey]===e[i.valueKey],a=i.slots("option",{option:t,selected:o})||r("span",[t[i.textKey]]);return r("li",{class:Oi("option",{selected:o}),style:{color:o?i.activeColor:null},on:{click:function(){i.onSelect(t,n)}}},[a,o?r(nt,{attrs:{name:"success"},class:Oi("selected-icon")}):null])})])},renderTab:function(t,e){var n=this.$createElement,i=t.options,r=t.selectedOption,o=r?r[this.textKey]:this.placeholder||Pi("select");return n(gi,{attrs:{title:o,titleClass:Oi("tab",{unselected:!r})}},[this.renderOptions(i,r,e)])},renderTabs:function(){var t=this;return(0,this.$createElement)(Ui,{attrs:{animated:!0,swipeable:!0,swipeThreshold:0,color:this.activeColor},class:Oi("tabs"),model:{value:t.activeTab,callback:function(e){t.activeTab=e}}},[this.tabs.map(this.renderTab)])}},render:function(){return(0,arguments[0])("div",{class:Oi()},[this.renderHeader(),this.renderTabs()])}}),Ni=Object(s.b)("cell-group"),Ri=Ni[0],Vi=Ni[1];function zi(t,e,n,i){var r,a=t("div",o()([{class:[Vi({inset:e.inset}),(r={},r[_t]=e.border,r)]},c(i,!0)]),[null==n.default?void 0:n.default()]);return e.title||n.title?t("div",{key:i.data.key},[t("div",{class:Vi("title",{inset:e.inset})},[n.title?n.title():e.title]),a]):a}zi.props={title:String,inset:Boolean,border:{type:Boolean,default:!0}};var Ki=Ri(zi),Gi=Object(s.b)("checkbox"),Wi=(0,Gi[0])({mixins:[Bn({bem:Gi[1],role:"checkbox",parent:"vanCheckbox"})],computed:{checked:{get:function(){return this.parent?-1!==this.parent.value.indexOf(this.name):this.value},set:function(t){this.parent?this.setParentValue(t):this.$emit("input",t)}}},watch:{value:function(t){this.$emit("change",t)}},methods:{toggle:function(t){var e=this;void 0===t&&(t=!this.checked),clearTimeout(this.toggleTask),this.toggleTask=setTimeout(function(){e.checked=t})},setParentValue:function(t){var e=this.parent,n=e.value.slice();if(t){if(e.max&&n.length>=e.max)return;-1===n.indexOf(this.name)&&(n.push(this.name),e.$emit("input",n))}else{var i=n.indexOf(this.name);-1!==i&&(n.splice(i,1),e.$emit("input",n))}}}}),ji=Object(s.b)("checkbox-group"),$i=ji[0],qi=ji[1],Yi=$i({mixins:[Fe("vanCheckbox"),en],props:{max:[Number,String],disabled:Boolean,direction:String,iconSize:[Number,String],checkedColor:String,value:{type:Array,default:function(){return[]}}},watch:{value:function(t){this.$emit("change",t)}},methods:{toggleAll:function(t){void 0===t&&(t={}),"boolean"==typeof t&&(t={checked:t});var e=t,n=e.checked,i=e.skipDisabled,r=this.children.filter(function(t){return t.disabled&&i?t.checked:null!=n?n:!t.checked}).map(function(t){return t.name});this.$emit("input",r)}},render:function(){return(0,arguments[0])("div",{class:qi([this.direction])},[this.slots()])}}),Xi=Object(s.b)("circle"),Ji=Xi[0],Zi=Xi[1],tr=0;function er(t){return Math.min(Math.max(t,0),100)}var nr=Ji({props:{text:String,size:[Number,String],color:[String,Object],layerColor:String,strokeLinecap:String,value:{type:Number,default:0},speed:{type:[Number,String],default:0},fill:{type:String,default:"none"},rate:{type:[Number,String],default:100},strokeWidth:{type:[Number,String],default:40},clockwise:{type:Boolean,default:!0}},beforeCreate:function(){this.uid="van-circle-gradient-"+tr++},computed:{style:function(){var t=Object(s.a)(this.size);return{width:t,height:t}},path:function(){return t=this.clockwise,"M "+(e=this.viewBoxSize)/2+" "+e/2+" m 0, -500 a 500, 500 0 1, "+(n=t?1:0)+" 0, 1000 a 500, 500 0 1, "+n+" 0, -1000";var t,e,n},viewBoxSize:function(){return+this.strokeWidth+1e3},layerStyle:function(){return{fill:""+this.fill,stroke:""+this.layerColor,strokeWidth:this.strokeWidth+"px"}},hoverStyle:function(){var t=3140*this.value/100;return{stroke:""+(this.gradient?"url(#"+this.uid+")":this.color),strokeWidth:+this.strokeWidth+1+"px",strokeLinecap:this.strokeLinecap,strokeDasharray:t+"px 3140px"}},gradient:function(){return Object(s.h)(this.color)},LinearGradient:function(){var t=this,e=this.$createElement;if(this.gradient){var n=Object.keys(this.color).sort(function(t,e){return parseFloat(t)-parseFloat(e)}).map(function(n,i){return e("stop",{key:i,attrs:{offset:n,"stop-color":t.color[n]}})});return e("defs",[e("linearGradient",{attrs:{id:this.uid,x1:"100%",y1:"0%",x2:"0%",y2:"0%"}},[n])])}}},watch:{rate:{handler:function(t){this.startTime=Date.now(),this.startRate=this.value,this.endRate=er(t),this.increase=this.endRate>this.startRate,this.duration=Math.abs(1e3*(this.startRate-this.endRate)/this.speed),this.speed?(Object(Rn.a)(this.rafId),this.rafId=Object(Rn.c)(this.animate)):this.$emit("input",this.endRate)},immediate:!0}},methods:{animate:function(){var t=Date.now(),e=Math.min((t-this.startTime)/this.duration,1)*(this.endRate-this.startRate)+this.startRate;this.$emit("input",er(parseFloat(e.toFixed(1)))),(this.increase?e<this.endRate:e>this.endRate)&&(this.rafId=Object(Rn.c)(this.animate))}},render:function(){var t=arguments[0];return t("div",{class:Zi(),style:this.style},[t("svg",{attrs:{viewBox:"0 0 "+this.viewBoxSize+" "+this.viewBoxSize}},[this.LinearGradient,t("path",{class:Zi("layer"),style:this.layerStyle,attrs:{d:this.path}}),t("path",{attrs:{d:this.path},class:Zi("hover"),style:this.hoverStyle})]),this.slots()||this.text&&t("div",{class:Zi("text")},[this.text])])}}),ir=Object(s.b)("col"),rr=ir[0],or=ir[1],ar=rr({mixins:[Qe("vanRow")],props:{span:[Number,String],offset:[Number,String],tag:{type:String,default:"div"}},computed:{style:function(){var t=this.index,e=(this.parent||{}).spaces;if(e&&e[t]){var n=e[t],i=n.left,r=n.right;return{paddingLeft:i?i+"px":null,paddingRight:r?r+"px":null}}}},methods:{onClick:function(t){this.$emit("click",t)}},render:function(){var t,e=arguments[0],n=this.span,i=this.offset;return e(this.tag,{style:this.style,class:or((t={},t[n]=n,t["offset-"+i]=i,t)),on:{click:this.onClick}},[this.slots()])}}),sr=Object(s.b)("collapse"),Ar=sr[0],lr=sr[1],cr=Ar({mixins:[Fe("vanCollapse")],props:{accordion:Boolean,value:[String,Number,Array],border:{type:Boolean,default:!0}},methods:{switch:function(t,e){this.accordion||(t=e?this.value.concat(t):this.value.filter(function(e){return e!==t})),this.$emit("change",t),this.$emit("input",t)}},render:function(){var t;return(0,arguments[0])("div",{class:[lr(),(t={},t[_t]=this.border,t)]},[this.slots()])}}),ur=Object(s.b)("collapse-item"),hr=ur[0],dr=ur[1],fr=["title","icon","right-icon"],pr=hr({mixins:[Qe("vanCollapse")],props:i({},Jt,{name:[Number,String],disabled:Boolean,lazyRender:{type:Boolean,default:!0},isLink:{type:Boolean,default:!0}}),data:function(){return{show:null,inited:null}},computed:{currentName:function(){var t;return null!=(t=this.name)?t:this.index},expanded:function(){var t=this;if(!this.parent)return null;var e=this.parent,n=e.value;return e.accordion?n===this.currentName:n.some(function(e){return e===t.currentName})}},created:function(){this.show=this.expanded,this.inited=this.expanded},watch:{expanded:function(t,e){var n=this;null!==e&&(t&&(this.show=!0,this.inited=!0),(t?this.$nextTick:Rn.c)(function(){var e=n.$refs,i=e.content,r=e.wrapper;if(i&&r){var o=i.offsetHeight;if(o){var a=o+"px";r.style.height=t?0:a,Object(Rn.b)(function(){r.style.height=t?a:0})}else n.onTransitionEnd()}}))}},methods:{onClick:function(){this.disabled||this.toggle()},toggle:function(t){void 0===t&&(t=!this.expanded);var e=this.parent,n=this.currentName,i=e.accordion&&n===e.value?"":n;this.parent.switch(i,t)},onTransitionEnd:function(){this.expanded?this.$refs.wrapper.style.height="":this.show=!1},genTitle:function(){var t=this,e=this.$createElement,n=this.border,r=this.disabled,o=this.expanded,a=fr.reduce(function(e,n){return t.slots(n)&&(e[n]=function(){return t.slots(n)}),e},{});return this.slots("value")&&(a.default=function(){return t.slots("value")}),e(ie,{attrs:{role:"button",tabindex:r?-1:0,"aria-expanded":String(o)},class:dr("title",{disabled:r,expanded:o,borderless:!n}),on:{click:this.onClick},scopedSlots:a,props:i({},this.$props)})},genContent:function(){var t=this.$createElement;if(this.inited||!this.lazyRender)return t("div",{directives:[{name:"show",value:this.show}],ref:"wrapper",class:dr("wrapper"),on:{transitionend:this.onTransitionEnd}},[t("div",{ref:"content",class:dr("content")},[this.slots()])])}},render:function(){return(0,arguments[0])("div",{class:[dr({border:this.index&&this.border})]},[this.genTitle(),this.genContent()])}}),gr=Object(s.b)("contact-card"),mr=gr[0],vr=gr[1],yr=gr[2];function wr(t,e,n,i){var r=e.type,a=e.editable;return t(ie,o()([{attrs:{center:!0,border:!1,isLink:a,valueClass:vr("value"),icon:"edit"===r?"contact":"add-square"},class:vr([r]),on:{click:function(t){a&&u(i,"click",t)}}},c(i)]),["add"===r?e.addText||yr("addText"):[t("div",[yr("name")+"锛�"+e.name]),t("div",[yr("tel")+"锛�"+e.tel])]])}wr.props={tel:String,name:String,addText:String,editable:{type:Boolean,default:!0},type:{type:String,default:"add"}};var xr=mr(wr),Br=Object(s.b)("contact-edit"),br=Br[0],Cr=Br[1],_r=Br[2],Sr={tel:"",name:""},Ir=br({props:{isEdit:Boolean,isSaving:Boolean,isDeleting:Boolean,showSetDefault:Boolean,setDefaultLabel:String,contactInfo:{type:Object,default:function(){return i({},Sr)}},telValidator:{type:Function,default:mt}},data:function(){return{data:i({},Sr,this.contactInfo),errorInfo:{name:"",tel:""}}},watch:{contactInfo:function(t){this.data=i({},Sr,t)}},methods:{onFocus:function(t){this.errorInfo[t]=""},getErrorMessageByKey:function(t){var e=this.data[t].trim();switch(t){case"name":return e?"":_r("nameInvalid");case"tel":return this.telValidator(e)?"":_r("telInvalid")}},onSave:function(){var t=this;["name","tel"].every(function(e){var n=t.getErrorMessageByKey(e);return n&&(t.errorInfo[e]=n),!n})&&!this.isSaving&&this.$emit("save",this.data)},onDelete:function(){var t=this;je.confirm({title:_r("confirmDelete")}).then(function(){t.$emit("delete",t.data)})}},render:function(){var t=this,e=arguments[0],n=this.data,i=this.errorInfo,r=function(e){return function(){return t.onFocus(e)}};return e("div",{class:Cr()},[e("div",{class:Cr("fields")},[e(le,{attrs:{clearable:!0,maxlength:"30",label:_r("name"),placeholder:_r("nameEmpty"),errorMessage:i.name},on:{focus:r("name")},model:{value:n.name,callback:function(e){t.$set(n,"name",e)}}}),e(le,{attrs:{clearable:!0,type:"tel",label:_r("tel"),placeholder:_r("telEmpty"),errorMessage:i.tel},on:{focus:r("tel")},model:{value:n.tel,callback:function(e){t.$set(n,"tel",e)}}})]),this.showSetDefault&&e(ie,{attrs:{title:this.setDefaultLabel,border:!1},class:Cr("switch-cell")},[e(an,{attrs:{size:24},slot:"right-icon",on:{change:function(e){t.$emit("change-default",e)}},model:{value:n.isDefault,callback:function(e){t.$set(n,"isDefault",e)}}})]),e("div",{class:Cr("buttons")},[e(Te,{attrs:{block:!0,round:!0,type:"danger",text:_r("save"),loading:this.isSaving},on:{click:this.onSave}}),this.isEdit&&e(Te,{attrs:{block:!0,round:!0,text:_r("delete"),loading:this.isDeleting},on:{click:this.onDelete}})])])}}),Tr=Object(s.b)("contact-list"),Mr=Tr[0],Qr=Tr[1],Fr=Tr[2];function kr(t,e,n,i){var r=e.list&&e.list.map(function(n,r){function o(){u(i,"input",n.id),u(i,"select",n,r)}return t(ie,{key:n.id,attrs:{isLink:!0,center:!0,valueClass:Qr("item-value")},class:Qr("item"),scopedSlots:{icon:function(){return t(nt,{attrs:{name:"edit"},class:Qr("edit"),on:{click:function(t){t.stopPropagation(),u(i,"edit",n,r)}}})},default:function(){var i=[n.name+"锛�"+n.tel];return n.isDefault&&e.defaultTagText&&i.push(t(xn,{attrs:{type:"danger",round:!0},class:Qr("item-tag")},[e.defaultTagText])),i},"right-icon":function(){return t(Cn,{attrs:{name:n.id,iconSize:16,checkedColor:yt},on:{click:o}})}},on:{click:o}})});return t("div",o()([{class:Qr()},c(i)]),[t(gn,{attrs:{value:e.value},class:Qr("group")},[r]),t("div",{class:Qr("bottom")},[t(Te,{attrs:{round:!0,block:!0,type:"danger",text:e.addText||Fr("addText")},class:Qr("add"),on:{click:function(){u(i,"add")}}})])])}kr.props={value:null,list:Array,addText:String,defaultTagText:String};var Dr=Mr(kr),Ur=n("Jeai"),Er=1e3,Lr=60*Er,Or=60*Lr,Pr=24*Or;var Hr=Object(s.b)("count-down"),Nr=Hr[0],Rr=Hr[1],Vr=Nr({props:{millisecond:Boolean,time:{type:[Number,String],default:0},format:{type:String,default:"HH:mm:ss"},autoStart:{type:Boolean,default:!0}},data:function(){return{remain:0}},computed:{timeData:function(){return t=this.remain,{days:Math.floor(t/Pr),hours:Math.floor(t%Pr/Or),minutes:Math.floor(t%Or/Lr),seconds:Math.floor(t%Lr/Er),milliseconds:Math.floor(t%Er)};var t},formattedTime:function(){return function(t,e){var n=e.days,i=e.hours,r=e.minutes,o=e.seconds,a=e.milliseconds;if(-1===t.indexOf("DD")?i+=24*n:t=t.replace("DD",Object(Ur.b)(n)),-1===t.indexOf("HH")?r+=60*i:t=t.replace("HH",Object(Ur.b)(i)),-1===t.indexOf("mm")?o+=60*r:t=t.replace("mm",Object(Ur.b)(r)),-1===t.indexOf("ss")?a+=1e3*o:t=t.replace("ss",Object(Ur.b)(o)),-1!==t.indexOf("S")){var s=Object(Ur.b)(a,3);t=-1!==t.indexOf("SSS")?t.replace("SSS",s):-1!==t.indexOf("SS")?t.replace("SS",s.slice(0,2)):t.replace("S",s.charAt(0))}return t}(this.format,this.timeData)}},watch:{time:{immediate:!0,handler:"reset"}},activated:function(){this.keepAlivePaused&&(this.counting=!0,this.keepAlivePaused=!1,this.tick())},deactivated:function(){this.counting&&(this.pause(),this.keepAlivePaused=!0)},beforeDestroy:function(){this.pause()},methods:{start:function(){this.counting||(this.counting=!0,this.endTime=Date.now()+this.remain,this.tick())},pause:function(){this.counting=!1,Object(Rn.a)(this.rafId)},reset:function(){this.pause(),this.remain=+this.time,this.autoStart&&this.start()},tick:function(){s.d&&(this.millisecond?this.microTick():this.macroTick())},microTick:function(){var t=this;this.rafId=Object(Rn.c)(function(){t.counting&&(t.setRemain(t.getRemain()),t.remain>0&&t.microTick())})},macroTick:function(){var t=this;this.rafId=Object(Rn.c)(function(){if(t.counting){var e,n,i=t.getRemain();e=i,n=t.remain,(Math.floor(e/1e3)!==Math.floor(n/1e3)||0===i)&&t.setRemain(i),t.remain>0&&t.macroTick()}})},getRemain:function(){return Math.max(this.endTime-Date.now(),0)},setRemain:function(t){this.remain=t,this.$emit("change",this.timeData),0===t&&(this.pause(),this.$emit("finish"))}},render:function(){return(0,arguments[0])("div",{class:Rr()},[this.slots("default",this.timeData)||this.formattedTime])}}),zr=Object(s.b)("coupon"),Kr=zr[0],Gr=zr[1],Wr=zr[2];function jr(t){var e=new Date(function(t){return t<Math.pow(10,12)?1e3*t:+t}(t));return e.getFullYear()+"."+Object(Ur.b)(e.getMonth()+1)+"."+Object(Ur.b)(e.getDate())}function $r(t){return(t/100).toFixed(t%100==0?0:t%10==0?1:2)}var qr=Kr({props:{coupon:Object,chosen:Boolean,disabled:Boolean,currency:{type:String,default:"楼"}},computed:{validPeriod:function(){var t=this.coupon,e=t.startAt,n=t.endAt;return t.customValidPeriod||jr(e)+" - "+jr(n)},faceAmount:function(){var t,e=this.coupon;if(e.valueDesc)return e.valueDesc+"<span>"+(e.unitDesc||"")+"</span>";if(e.denominations){var n=$r(e.denominations);return"<span>"+this.currency+"</span> "+n}return e.discount?Wr("discount",((t=e.discount)/10).toFixed(t%10==0?0:1)):""},conditionMessage:function(){var t=$r(this.coupon.originCondition);return"0"===t?Wr("unlimited"):Wr("condition",t)}},render:function(){var t=arguments[0],e=this.coupon,n=this.disabled,i=n&&e.reason||e.description;return t("div",{class:Gr({disabled:n})},[t("div",{class:Gr("content")},[t("div",{class:Gr("head")},[t("h2",{class:Gr("amount"),domProps:{innerHTML:this.faceAmount}}),t("p",{class:Gr("condition")},[this.coupon.condition||this.conditionMessage])]),t("div",{class:Gr("body")},[t("p",{class:Gr("name")},[e.name]),t("p",{class:Gr("valid")},[this.validPeriod]),!this.disabled&&t(Wi,{attrs:{size:18,value:this.chosen,checkedColor:yt},class:Gr("corner")})])]),i&&t("p",{class:Gr("description")},[i])])}}),Yr=Object(s.b)("coupon-cell"),Xr=Yr[0],Jr=Yr[1],Zr=Yr[2];function to(t,e,n,i){var r=e.coupons[+e.chosenCoupon],a=function(t){var e=t.coupons,n=t.chosenCoupon,i=t.currency,r=e[+n];if(r){var o=0;return Object(s.e)(r.value)?o=r.value:Object(s.e)(r.denominations)&&(o=r.denominations),"-"+i+" "+(o/100).toFixed(2)}return 0===e.length?Zr("tips"):Zr("count",e.length)}(e);return t(ie,o()([{class:Jr(),attrs:{value:a,title:e.title||Zr("title"),border:e.border,isLink:e.editable,valueClass:Jr("value",{selected:r})}},c(i,!0)]))}to.model={prop:"chosenCoupon"},to.props={title:String,coupons:{type:Array,default:function(){return[]}},currency:{type:String,default:"楼"},border:{type:Boolean,default:!0},editable:{type:Boolean,default:!0},chosenCoupon:{type:[Number,String],default:-1}};var eo=Xr(to),no=Object(s.b)("coupon-list"),io=no[0],ro=no[1],oo=no[2],ao=io({model:{prop:"code"},props:{code:String,closeButtonText:String,inputPlaceholder:String,enabledTitle:String,disabledTitle:String,exchangeButtonText:String,exchangeButtonLoading:Boolean,exchangeButtonDisabled:Boolean,exchangeMinLength:{type:Number,default:1},chosenCoupon:{type:Number,default:-1},coupons:{type:Array,default:function(){return[]}},disabledCoupons:{type:Array,default:function(){return[]}},displayedCouponIndex:{type:Number,default:-1},showExchangeBar:{type:Boolean,default:!0},showCloseButton:{type:Boolean,default:!0},showCount:{type:Boolean,default:!0},currency:{type:String,default:"楼"},emptyImage:{type:String,default:"https://img01.yzcdn.cn/vant/coupon-empty.png"}},data:function(){return{tab:0,winHeight:window.innerHeight,currentCode:this.code||""}},computed:{buttonDisabled:function(){return!this.exchangeButtonLoading&&(this.exchangeButtonDisabled||!this.currentCode||this.currentCode.length<this.exchangeMinLength)},listStyle:function(){return{height:this.winHeight-(this.showExchangeBar?140:94)+"px"}}},watch:{code:function(t){this.currentCode=t},currentCode:function(t){this.$emit("input",t)},displayedCouponIndex:"scrollToShowCoupon"},mounted:function(){this.scrollToShowCoupon(this.displayedCouponIndex)},methods:{onClickExchangeButton:function(){this.$emit("exchange",this.currentCode),this.code||(this.currentCode="")},scrollToShowCoupon:function(t){var e=this;-1!==t&&this.$nextTick(function(){var n=e.$refs,i=n.card,r=n.list;r&&i&&i[t]&&(r.scrollTop=i[t].$el.offsetTop-100)})},genEmpty:function(){var t=this.$createElement;return t("div",{class:ro("empty")},[t("img",{attrs:{src:this.emptyImage}}),t("p",[oo("empty")])])},genExchangeButton:function(){return(0,this.$createElement)(Te,{attrs:{plain:!0,type:"danger",text:this.exchangeButtonText||oo("exchange"),loading:this.exchangeButtonLoading,disabled:this.buttonDisabled},class:ro("exchange"),on:{click:this.onClickExchangeButton}})}},render:function(){var t=this,e=arguments[0],n=this.coupons,i=this.disabledCoupons,r=this.showCount?" ("+n.length+")":"",o=(this.enabledTitle||oo("enable"))+r,a=this.showCount?" ("+i.length+")":"",s=(this.disabledTitle||oo("disabled"))+a,A=this.showExchangeBar&&e("div",{class:ro("exchange-bar")},[e(le,{attrs:{clearable:!0,border:!1,placeholder:this.inputPlaceholder||oo("placeholder"),maxlength:"20"},class:ro("field"),model:{value:t.currentCode,callback:function(e){t.currentCode=e}}}),this.genExchangeButton()]),l=function(e){return function(){return t.$emit("change",e)}},c=e(gi,{attrs:{title:o}},[e("div",{class:ro("list",{"with-bottom":this.showCloseButton}),style:this.listStyle},[n.map(function(n,i){return e(qr,{ref:"card",key:n.id,attrs:{coupon:n,currency:t.currency,chosen:i===t.chosenCoupon},nativeOn:{click:l(i)}})}),!n.length&&this.genEmpty(),this.slots("list-footer")])]),u=e(gi,{attrs:{title:s}},[e("div",{class:ro("list",{"with-bottom":this.showCloseButton}),style:this.listStyle},[i.map(function(n){return e(qr,{attrs:{disabled:!0,coupon:n,currency:t.currency},key:n.id})}),!i.length&&this.genEmpty(),this.slots("disabled-list-footer")])]);return e("div",{class:ro()},[A,e(Ui,{class:ro("tab"),attrs:{border:!1},model:{value:t.tab,callback:function(e){t.tab=e}}},[c,u]),e("div",{class:ro("bottom")},[e(Te,{directives:[{name:"show",value:this.showCloseButton}],attrs:{round:!0,type:"danger",block:!0,text:this.closeButtonText||oo("close")},class:ro("close"),on:{click:l(-1)}})])])}}),so=i({},vt,{value:null,filter:Function,columnsOrder:Array,showToolbar:{type:Boolean,default:!0},formatter:{type:Function,default:function(t,e){return e}}}),Ao={data:function(){return{innerValue:this.formatValue(this.value)}},computed:{originColumns:function(){var t=this;return this.ranges.map(function(e){var n=e.type,i=e.range,r=function(t,e){if(t<0)return[];for(var n=-1,i=Array(t);++n<t;)i[n]=e(n);return i}(i[1]-i[0]+1,function(t){return Object(Ur.b)(i[0]+t)});return t.filter&&(r=t.filter(n,r)),{type:n,values:r}})},columns:function(){var t=this;return this.originColumns.map(function(e){return{values:e.values.map(function(n){return t.formatter(e.type,n)})}})}},watch:{columns:"updateColumnValue",innerValue:function(t,e){e?this.$emit("input",t):this.$emit("input",null)}},mounted:function(){var t=this;this.updateColumnValue(),this.$nextTick(function(){t.updateInnerValue()})},methods:{getPicker:function(){return this.$refs.picker},getProxiedPicker:function(){var t=this,e=this.$refs.picker;if(e){var n=function(n){return function(){e[n].apply(e,arguments),t.updateInnerValue()}};return i({},e,{setValues:n("setValues"),setIndexes:n("setIndexes"),setColumnIndex:n("setColumnIndex"),setColumnValue:n("setColumnValue")})}},onConfirm:function(){this.$emit("input",this.innerValue),this.$emit("confirm",this.innerValue)},onCancel:function(){this.$emit("cancel")}},render:function(){var t=this,e=arguments[0],n={};return Object.keys(vt).forEach(function(e){n[e]=t[e]}),e(Kt,{ref:"picker",attrs:{columns:this.columns,readonly:this.readonly},scopedSlots:this.$scopedSlots,on:{change:this.onChange,confirm:this.onConfirm,cancel:this.onCancel},props:i({},n)})}},lo=(0,Object(s.b)("time-picker")[0])({mixins:[Ao],props:i({},so,{minHour:{type:[Number,String],default:0},maxHour:{type:[Number,String],default:23},minMinute:{type:[Number,String],default:0},maxMinute:{type:[Number,String],default:59}}),computed:{ranges:function(){return[{type:"hour",range:[+this.minHour,+this.maxHour]},{type:"minute",range:[+this.minMinute,+this.maxMinute]}]}},watch:{filter:"updateInnerValue",minHour:function(){var t=this;this.$nextTick(function(){t.updateInnerValue()})},maxHour:function(t){var e=this.innerValue.split(":"),n=e[0],i=e[1];n>=t?(this.innerValue=this.formatValue(t+":"+i),this.updateColumnValue()):this.updateInnerValue()},minMinute:"updateInnerValue",maxMinute:function(t){var e=this.innerValue.split(":"),n=e[0];e[1]>=t?(this.innerValue=this.formatValue(n+":"+t),this.updateColumnValue()):this.updateInnerValue()},value:function(t){(t=this.formatValue(t))!==this.innerValue&&(this.innerValue=t,this.updateColumnValue())}},methods:{formatValue:function(t){t||(t=Object(Ur.b)(this.minHour)+":"+Object(Ur.b)(this.minMinute));var e=t.split(":"),n=e[0],i=e[1];return(n=Object(Ur.b)(Tt(n,this.minHour,this.maxHour)))+":"+(i=Object(Ur.b)(Tt(i,this.minMinute,this.maxMinute)))},updateInnerValue:function(){var t=this.getPicker().getIndexes(),e=t[0],n=t[1],i=this.originColumns,r=i[0],o=i[1],a=r.values[e]||r.values[0],s=o.values[n]||o.values[0];this.innerValue=this.formatValue(a+":"+s),this.updateColumnValue()},onChange:function(t){var e=this;this.updateInnerValue(),this.$nextTick(function(){e.$nextTick(function(){e.updateInnerValue(),e.$emit("change",t)})})},updateColumnValue:function(){var t=this,e=this.formatter,n=this.innerValue.split(":"),i=[e("hour",n[0]),e("minute",n[1])];this.$nextTick(function(){t.getPicker().setValues(i)})}}});function co(t,e){return(co=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t})(t,e)}function uo(t,e,n){return(uo=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}()?Reflect.construct.bind():function(t,e,n){var i=[null];i.push.apply(i,e);var r=new(Function.bind.apply(t,i));return n&&co(r,n.prototype),r}).apply(null,arguments)}var ho=(new Date).getFullYear(),fo=(0,Object(s.b)("date-picker")[0])({mixins:[Ao],props:i({},so,{type:{type:String,default:"datetime"},minDate:{type:Date,default:function(){return new Date(ho-10,0,1)},validator:Vn},maxDate:{type:Date,default:function(){return new Date(ho+10,11,31)},validator:Vn}}),watch:{filter:"updateInnerValue",minDate:function(){var t=this;this.$nextTick(function(){t.updateInnerValue()})},maxDate:function(t){this.innerValue.valueOf()>=t.valueOf()?this.innerValue=t:this.updateInnerValue()},value:function(t){(t=this.formatValue(t))&&t.valueOf()!==this.innerValue.valueOf()&&(this.innerValue=t)}},computed:{ranges:function(){var t=this.getBoundary("max",this.innerValue?this.innerValue:this.minDate),e=t.maxYear,n=t.maxDate,i=t.maxMonth,r=t.maxHour,o=t.maxMinute,a=this.getBoundary("min",this.innerValue?this.innerValue:this.minDate),s=a.minYear,A=a.minDate,l=[{type:"year",range:[s,e]},{type:"month",range:[a.minMonth,i]},{type:"day",range:[A,n]},{type:"hour",range:[a.minHour,r]},{type:"minute",range:[a.minMinute,o]}];switch(this.type){case"date":l=l.slice(0,3);break;case"year-month":l=l.slice(0,2);break;case"month-day":l=l.slice(1,3);break;case"datehour":l=l.slice(0,4)}if(this.columnsOrder){var c=this.columnsOrder.concat(l.map(function(t){return t.type}));l.sort(function(t,e){return c.indexOf(t.type)-c.indexOf(e.type)})}return l}},methods:{formatValue:function(t){var e=this;if(!Vn(t))return null;var n=new Date(this.minDate),i=new Date(this.maxDate),r={year:"getFullYear",month:"getMonth",day:"getDate",hour:"getHours",minute:"getMinutes"};if(this.originColumns){var o=this.originColumns.map(function(t,o){var a=t.type,s=t.values,A=e.ranges[o].range,l=n[r[a]](),c=i[r[a]](),u="month"===a?+s[0]-1:+s[0],h="month"===a?+s[s.length-1]-1:+s[s.length-1];return{type:a,values:[l<A[0]?Math.max(l,u):u||l,c>A[1]?Math.min(c,h):h||c]}});if("month-day"===this.type){var a=(this.innerValue||this.minDate).getFullYear();o.unshift({type:"year",values:[a,a]})}var s=Object.keys(r).map(function(t){var e;return null==(e=o.filter(function(e){return e.type===t})[0])?void 0:e.values}).filter(function(t){return t});n=uo(Date,s.map(function(t){return Zn(t[0])})),i=uo(Date,s.map(function(t){return Zn(t[1])}))}return t=Math.max(t,n.getTime()),t=Math.min(t,i.getTime()),new Date(t)},getBoundary:function(t,e){var n,i=this[t+"Date"],r=i.getFullYear(),o=1,a=1,s=0,A=0;return"max"===t&&(o=12,a=ti(e.getFullYear(),e.getMonth()+1),s=23,A=59),e.getFullYear()===r&&(o=i.getMonth()+1,e.getMonth()+1===o&&(a=i.getDate(),e.getDate()===a&&(s=i.getHours(),e.getHours()===s&&(A=i.getMinutes())))),(n={})[t+"Year"]=r,n[t+"Month"]=o,n[t+"Date"]=a,n[t+"Hour"]=s,n[t+"Minute"]=A,n},updateInnerValue:function(){var t,e,n,i=this,r=this.type,o=this.getPicker().getIndexes(),a=function(t){var e=0;return i.originColumns.forEach(function(n,i){t===n.type&&(e=i)}),Zn(i.originColumns[e].values[o[e]])};"month-day"===r?(t=(this.innerValue||this.minDate).getFullYear(),e=a("month"),n=a("day")):(t=a("year"),e=a("month"),n="year-month"===r?1:a("day"));var s=ti(t,e);n=n>s?s:n;var A=0,l=0;"datehour"===r&&(A=a("hour")),"datetime"===r&&(A=a("hour"),l=a("minute"));var c=new Date(t,e-1,n,A,l);this.innerValue=this.formatValue(c)},onChange:function(t){var e=this;this.updateInnerValue(),this.$nextTick(function(){e.$nextTick(function(){e.updateInnerValue(),e.$emit("change",t)})})},updateColumnValue:function(){var t=this,e=this.innerValue?this.innerValue:this.minDate,n=this.formatter,i=this.originColumns.map(function(t){switch(t.type){case"year":return n("year",""+e.getFullYear());case"month":return n("month",Object(Ur.b)(e.getMonth()+1));case"day":return n("day",Object(Ur.b)(e.getDate()));case"hour":return n("hour",Object(Ur.b)(e.getHours()));case"minute":return n("minute",Object(Ur.b)(e.getMinutes()));default:return null}});this.$nextTick(function(){t.getPicker().setValues(i)})}}}),po=Object(s.b)("datetime-picker"),go=po[0],mo=po[1],vo=go({props:i({},lo.props,fo.props),methods:{getPicker:function(){return this.$refs.root.getProxiedPicker()}},render:function(){return(0,arguments[0])("time"===this.type?lo:fo,{ref:"root",class:mo(),scopedSlots:this.$scopedSlots,props:i({},this.$props),on:i({},this.$listeners)})}}),yo=Object(s.b)("divider"),wo=yo[0],xo=yo[1];function Bo(t,e,n,i){var r;return t("div",o()([{attrs:{role:"separator"},style:{borderColor:e.borderColor},class:xo((r={dashed:e.dashed,hairline:e.hairline},r["content-"+e.contentPosition]=n.default,r))},c(i,!0)]),[n.default&&n.default()])}Bo.props={dashed:Boolean,hairline:{type:Boolean,default:!0},contentPosition:{type:String,default:"center"}};var bo=wo(Bo),Co=Object(s.b)("dropdown-item"),_o=Co[0],So=Co[1],Io=_o({mixins:[N({ref:"wrapper"}),Qe("vanDropdownMenu")],props:{value:null,title:String,disabled:Boolean,titleClass:String,options:{type:Array,default:function(){return[]}},lazyRender:{type:Boolean,default:!0}},data:function(){return{transition:!0,showPopup:!1,showWrapper:!1}},computed:{displayTitle:function(){var t=this;if(this.title)return this.title;var e=this.options.filter(function(e){return e.value===t.value});return e.length?e[0].text:""}},watch:{showPopup:function(t){this.bindScroll(t)}},beforeCreate:function(){var t=this,e=function(e){return function(){return t.$emit(e)}};this.onOpen=e("open"),this.onClose=e("close"),this.onOpened=e("opened")},methods:{toggle:function(t,e){void 0===t&&(t=!this.showPopup),void 0===e&&(e={}),t!==this.showPopup&&(this.transition=!e.immediate,this.showPopup=t,t&&(this.parent.updateOffset(),this.showWrapper=!0))},bindScroll:function(t){var e=this.parent.scroller;(t?g:m)(e,"scroll",this.onScroll,!0)},onScroll:function(){this.parent.updateOffset()},onClickWrapper:function(t){this.getContainer&&t.stopPropagation()}},render:function(){var t=this,e=arguments[0],n=this.parent,i=n.zIndex,r=n.offset,o=n.overlay,a=n.duration,s=n.direction,A=n.activeColor,l=n.closeOnClickOverlay,c=this.options.map(function(n){var i=n.value===t.value;return e(ie,{attrs:{clickable:!0,icon:n.icon,title:n.text},key:n.value,class:So("option",{active:i}),style:{color:i?A:""},on:{click:function(){t.showPopup=!1,n.value!==t.value&&(t.$emit("input",n.value),t.$emit("change",n.value))}}},[i&&e(nt,{class:So("icon"),attrs:{color:A,name:"success"}})])}),u={zIndex:i};return"down"===s?u.top=r+"px":u.bottom=r+"px",e("div",[e("div",{directives:[{name:"show",value:this.showWrapper}],ref:"wrapper",style:u,class:So([s]),on:{click:this.onClickWrapper}},[e(at,{attrs:{overlay:o,position:"down"===s?"top":"bottom",duration:this.transition?a:0,lazyRender:this.lazyRender,overlayStyle:{position:"absolute"},closeOnClickOverlay:l},class:So("content"),on:{open:this.onOpen,close:this.onClose,opened:this.onOpened,closed:function(){t.showWrapper=!1,t.$emit("closed")}},model:{value:t.showPopup,callback:function(e){t.showPopup=e}}},[c,this.slots("default")])])])}}),To=function(t){return{props:{closeOnClickOutside:{type:Boolean,default:!0}},data:function(){var e=this;return{clickOutsideHandler:function(n){e.closeOnClickOutside&&!e.$el.contains(n.target)&&e[t.method]()}}},mounted:function(){g(document,t.event,this.clickOutsideHandler)},beforeDestroy:function(){m(document,t.event,this.clickOutsideHandler)}}},Mo=Object(s.b)("dropdown-menu"),Qo=Mo[0],Fo=Mo[1],ko=Qo({mixins:[Fe("vanDropdownMenu"),To({event:"click",method:"onClickOutside"})],props:{zIndex:[Number,String],activeColor:String,overlay:{type:Boolean,default:!0},duration:{type:[Number,String],default:.2},direction:{type:String,default:"down"},closeOnClickOverlay:{type:Boolean,default:!0}},data:function(){return{offset:0}},computed:{scroller:function(){return D(this.$el)},opened:function(){return this.children.some(function(t){return t.showWrapper})},barStyle:function(){if(this.opened&&Object(s.e)(this.zIndex))return{zIndex:1+this.zIndex}}},methods:{updateOffset:function(){if(this.$refs.bar){var t=this.$refs.bar.getBoundingClientRect();"down"===this.direction?this.offset=t.bottom:this.offset=window.innerHeight-t.top}},toggleItem:function(t){this.children.forEach(function(e,n){n===t?e.toggle():e.showPopup&&e.toggle(!1,{immediate:!0})})},onClickOutside:function(){this.children.forEach(function(t){t.toggle(!1)})}},render:function(){var t=this,e=arguments[0],n=this.children.map(function(n,i){return e("div",{attrs:{role:"button",tabindex:n.disabled?-1:0},class:Fo("item",{disabled:n.disabled}),on:{click:function(){n.disabled||t.toggleItem(i)}}},[e("span",{class:[Fo("title",{active:n.showPopup,down:n.showPopup===("down"===t.direction)}),n.titleClass],style:{color:n.showPopup?t.activeColor:""}},[e("div",{class:"van-ellipsis"},[n.slots("title")||n.displayTitle])])])});return e("div",{class:Fo()},[e("div",{ref:"bar",style:this.barStyle,class:Fo("bar",{opened:this.opened})},[n]),this.slots("default")])}}),Do="van-empty-network-",Uo={render:function(){var t=arguments[0],e=function(e,n,i){return t("stop",{attrs:{"stop-color":e,offset:n+"%","stop-opacity":i}})};return t("svg",{attrs:{viewBox:"0 0 160 160",xmlns:"http://www.w3.org/2000/svg"}},[t("defs",[t("linearGradient",{attrs:{id:Do+"1",x1:"64.022%",y1:"100%",x2:"64.022%",y2:"0%"}},[e("#FFF",0,.5),e("#F2F3F5",100)]),t("linearGradient",{attrs:{id:Do+"2",x1:"50%",y1:"0%",x2:"50%",y2:"84.459%"}},[e("#EBEDF0",0),e("#DCDEE0",100,0)]),t("linearGradient",{attrs:{id:Do+"3",x1:"100%",y1:"0%",x2:"100%",y2:"100%"}},[e("#EAEDF0",0),e("#DCDEE0",100)]),t("linearGradient",{attrs:{id:Do+"4",x1:"100%",y1:"100%",x2:"100%",y2:"0%"}},[e("#EAEDF0",0),e("#DCDEE0",100)]),t("linearGradient",{attrs:{id:Do+"5",x1:"0%",y1:"43.982%",x2:"100%",y2:"54.703%"}},[e("#EAEDF0",0),e("#DCDEE0",100)]),t("linearGradient",{attrs:{id:Do+"6",x1:"94.535%",y1:"43.837%",x2:"5.465%",y2:"54.948%"}},[e("#EAEDF0",0),e("#DCDEE0",100)]),t("radialGradient",{attrs:{id:Do+"7",cx:"50%",cy:"0%",fx:"50%",fy:"0%",r:"100%",gradientTransform:"matrix(0 1 -.54835 0 .5 -.5)"}},[e("#EBEDF0",0),e("#FFF",100,0)])]),t("g",{attrs:{fill:"none","fill-rule":"evenodd"}},[t("g",{attrs:{opacity:".8"}},[t("path",{attrs:{d:"M0 124V46h20v20h14v58H0z",fill:"url(#"+Do+"1)",transform:"matrix(-1 0 0 1 36 7)"}}),t("path",{attrs:{d:"M121 8h22.231v14H152v77.37h-31V8z",fill:"url(#"+Do+"1)",transform:"translate(2 7)"}})]),t("path",{attrs:{fill:"url(#"+Do+"7)",d:"M0 139h160v21H0z"}}),t("path",{attrs:{d:"M37 18a7 7 0 013 13.326v26.742c0 1.23-.997 2.227-2.227 2.227h-1.546A2.227 2.227 0 0134 58.068V31.326A7 7 0 0137 18z",fill:"url(#"+Do+"2)","fill-rule":"nonzero",transform:"translate(43 36)"}}),t("g",{attrs:{opacity:".6","stroke-linecap":"round","stroke-width":"7"}},[t("path",{attrs:{d:"M20.875 11.136a18.868 18.868 0 00-5.284 13.121c0 5.094 2.012 9.718 5.284 13.12",stroke:"url(#"+Do+"3)",transform:"translate(43 36)"}}),t("path",{attrs:{d:"M9.849 0C3.756 6.225 0 14.747 0 24.146c0 9.398 3.756 17.92 9.849 24.145",stroke:"url(#"+Do+"3)",transform:"translate(43 36)"}}),t("path",{attrs:{d:"M57.625 11.136a18.868 18.868 0 00-5.284 13.121c0 5.094 2.012 9.718 5.284 13.12",stroke:"url(#"+Do+"4)",transform:"rotate(-180 76.483 42.257)"}}),t("path",{attrs:{d:"M73.216 0c-6.093 6.225-9.849 14.747-9.849 24.146 0 9.398 3.756 17.92 9.849 24.145",stroke:"url(#"+Do+"4)",transform:"rotate(-180 89.791 42.146)"}})]),t("g",{attrs:{transform:"translate(31 105)","fill-rule":"nonzero"}},[t("rect",{attrs:{fill:"url(#"+Do+"5)",width:"98",height:"34",rx:"2"}}),t("rect",{attrs:{fill:"#FFF",x:"9",y:"8",width:"80",height:"18",rx:"1.114"}}),t("rect",{attrs:{fill:"url(#"+Do+"6)",x:"15",y:"12",width:"18",height:"6",rx:"1.114"}})])])])}},Eo=Object(s.b)("empty"),Lo=Eo[0],Oo=Eo[1],Po=["error","search","default"],Ho=Lo({props:{imageSize:[Number,String],description:String,image:{type:String,default:"default"}},methods:{genImageContent:function(){var t=this.$createElement,e=this.slots("image");if(e)return e;if("network"===this.image)return t(Uo);var n=this.image;return-1!==Po.indexOf(n)&&(n="https://img01.yzcdn.cn/vant/empty-image-"+n+".png"),t("img",{attrs:{src:n}})},genImage:function(){var t=this.$createElement,e={width:Object(s.a)(this.imageSize),height:Object(s.a)(this.imageSize)};return t("div",{class:Oo("image"),style:e},[this.genImageContent()])},genDescription:function(){var t=this.$createElement,e=this.slots("description")||this.description;if(e)return t("p",{class:Oo("description")},[e])},genBottom:function(){var t=this.$createElement,e=this.slots();if(e)return t("div",{class:Oo("bottom")},[e])}},render:function(){return(0,arguments[0])("div",{class:Oo()},[this.genImage(),this.genDescription(),this.genBottom()])}}),No=Object(s.b)("form"),Ro=No[0],Vo=No[1],zo=Ro({props:{colon:Boolean,disabled:Boolean,readonly:Boolean,labelWidth:[Number,String],labelAlign:String,inputAlign:String,scrollToError:Boolean,validateFirst:Boolean,errorMessageAlign:String,submitOnEnter:{type:Boolean,default:!0},validateTrigger:{type:String,default:"onBlur"},showError:{type:Boolean,default:!0},showErrorMessage:{type:Boolean,default:!0}},provide:function(){return{vanForm:this}},data:function(){return{fields:[]}},methods:{getFieldsByNames:function(t){return t?this.fields.filter(function(e){return-1!==t.indexOf(e.name)}):this.fields},validateSeq:function(t){var e=this;return new Promise(function(n,i){var r=[];e.getFieldsByNames(t).reduce(function(t,e){return t.then(function(){if(!r.length)return e.validate().then(function(t){t&&r.push(t)})})},Promise.resolve()).then(function(){r.length?i(r):n()})})},validateFields:function(t){var e=this;return new Promise(function(n,i){var r=e.getFieldsByNames(t);Promise.all(r.map(function(t){return t.validate()})).then(function(t){(t=t.filter(function(t){return t})).length?i(t):n()})})},validate:function(t){return t&&!Array.isArray(t)?this.validateField(t):this.validateFirst?this.validateSeq(t):this.validateFields(t)},validateField:function(t){var e=this.fields.filter(function(e){return e.name===t});return e.length?new Promise(function(t,n){e[0].validate().then(function(e){e?n(e):t()})}):Promise.reject()},resetValidation:function(t){t&&!Array.isArray(t)&&(t=[t]),this.getFieldsByNames(t).forEach(function(t){t.resetValidation()})},scrollToField:function(t,e){this.fields.some(function(n){return n.name===t&&(n.$el.scrollIntoView(e),!0)})},addField:function(t){this.fields.push(t),Me(this.fields,this)},removeField:function(t){this.fields=this.fields.filter(function(e){return e!==t})},getValues:function(){return this.fields.reduce(function(t,e){return t[e.name]=e.formValue,t},{})},onSubmit:function(t){t.preventDefault(),this.submit()},submit:function(){var t=this,e=this.getValues();this.validate().then(function(){t.$emit("submit",e)}).catch(function(n){t.$emit("failed",{values:e,errors:n}),t.scrollToError&&t.scrollToField(n[0].name)})}},render:function(){return(0,arguments[0])("form",{class:Vo(),on:{submit:this.onSubmit}},[this.slots()])}}),Ko=Object(s.b)("goods-action-icon"),Go=Ko[0],Wo=Ko[1],jo=Go({mixins:[Qe("vanGoodsAction")],props:i({},Xt,{dot:Boolean,text:String,icon:String,color:String,info:[Number,String],badge:[Number,String],iconClass:null}),methods:{onClick:function(t){this.$emit("click",t),qt(this.$router,this)},genIcon:function(){var t,e=this.$createElement,n=this.slots("icon"),i=null!=(t=this.badge)?t:this.info;return n?e("div",{class:Wo("icon")},[n,e(Y,{attrs:{dot:this.dot,info:i}})]):e(nt,{class:[Wo("icon"),this.iconClass],attrs:{tag:"div",dot:this.dot,name:this.icon,badge:i,color:this.color}})}},render:function(){return(0,arguments[0])("div",{attrs:{role:"button",tabindex:"0"},class:Wo(),on:{click:this.onClick}},[this.genIcon(),this.slots()||this.text])}}),$o=Object(s.b)("grid"),qo=$o[0],Yo=$o[1],Xo=qo({mixins:[Fe("vanGrid")],props:{square:Boolean,gutter:[Number,String],iconSize:[Number,String],direction:String,clickable:Boolean,columnNum:{type:[Number,String],default:4},center:{type:Boolean,default:!0},border:{type:Boolean,default:!0}},computed:{style:function(){var t=this.gutter;if(t)return{paddingLeft:Object(s.a)(t)}}},render:function(){var t;return(0,arguments[0])("div",{style:this.style,class:[Yo(),(t={},t[xt]=this.border&&!this.gutter,t)]},[this.slots()])}}),Jo=Object(s.b)("grid-item"),Zo=Jo[0],ta=Jo[1],ea=Zo({mixins:[Qe("vanGrid")],props:i({},Xt,{dot:Boolean,text:String,icon:String,iconPrefix:String,info:[Number,String],badge:[Number,String]}),computed:{style:function(){var t=this.parent,e=t.square,n=t.gutter,i=t.columnNum,r=100/i+"%",o={flexBasis:r};if(e)o.paddingTop=r;else if(n){var a=Object(s.a)(n);o.paddingRight=a,this.index>=i&&(o.marginTop=a)}return o},contentStyle:function(){var t=this.parent,e=t.square,n=t.gutter;if(e&&n){var i=Object(s.a)(n);return{right:i,bottom:i,height:"auto"}}}},methods:{onClick:function(t){this.$emit("click",t),qt(this.$router,this)},genIcon:function(){var t,e=this.$createElement,n=this.slots("icon"),i=null!=(t=this.badge)?t:this.info;return n?e("div",{class:ta("icon-wrapper")},[n,e(Y,{attrs:{dot:this.dot,info:i}})]):this.icon?e(nt,{attrs:{name:this.icon,dot:this.dot,badge:i,size:this.parent.iconSize,classPrefix:this.iconPrefix},class:ta("icon")}):void 0},getText:function(){var t=this.$createElement,e=this.slots("text");return e||(this.text?t("span",{class:ta("text")},[this.text]):void 0)},genContent:function(){var t=this.slots();return t||[this.genIcon(),this.getText()]}},render:function(){var t,e=arguments[0],n=this.parent,i=n.center,r=n.border,o=n.square,a=n.gutter,s=n.direction,A=n.clickable;return e("div",{class:[ta({square:o})],style:this.style},[e("div",{style:this.contentStyle,attrs:{role:A?"button":null,tabindex:A?0:null},class:[ta("content",[s,{center:i,square:o,clickable:A,surround:r&&a}]),(t={},t[wt]=r,t)],on:{click:this.onClick}},[this.genContent()])])}}),na=Object(s.b)("image-preview"),ia=na[0],ra=na[1],oa=Object(s.b)("swipe"),aa=oa[0],sa=oa[1],Aa=aa({mixins:[H,Fe("vanSwipe"),V(function(t,e){t(window,"resize",this.resize,!0),t(window,"orientationchange",this.resize,!0),t(window,"visibilitychange",this.onVisibilityChange),e?this.initialize():this.clear()})],props:{width:[Number,String],height:[Number,String],autoplay:[Number,String],vertical:Boolean,lazyRender:Boolean,indicatorColor:String,loop:{type:Boolean,default:!0},duration:{type:[Number,String],default:500},touchable:{type:Boolean,default:!0},initialSwipe:{type:[Number,String],default:0},showIndicators:{type:Boolean,default:!0},stopPropagation:{type:Boolean,default:!0}},data:function(){return{rect:null,offset:0,active:0,deltaX:0,deltaY:0,swiping:!1,computedWidth:0,computedHeight:0}},watch:{children:function(){this.initialize()},initialSwipe:function(){this.initialize()},autoplay:function(t){t>0?this.autoPlay():this.clear()}},computed:{count:function(){return this.children.length},maxCount:function(){return Math.ceil(Math.abs(this.minOffset)/this.size)},delta:function(){return this.vertical?this.deltaY:this.deltaX},size:function(){return this[this.vertical?"computedHeight":"computedWidth"]},trackSize:function(){return this.count*this.size},activeIndicator:function(){return(this.active+this.count)%this.count},isCorrectDirection:function(){var t=this.vertical?"vertical":"horizontal";return this.direction===t},trackStyle:function(){var t={transitionDuration:(this.swiping?0:this.duration)+"ms",transform:"translate"+(this.vertical?"Y":"X")+"("+this.offset+"px)"};if(this.size){var e=this.vertical?"height":"width",n=this.vertical?"width":"height";t[e]=this.trackSize+"px",t[n]=this[n]?this[n]+"px":""}return t},indicatorStyle:function(){return{backgroundColor:this.indicatorColor}},minOffset:function(){return(this.vertical?this.rect.height:this.rect.width)-this.size*this.count}},mounted:function(){this.bindTouchEvent(this.$refs.track)},methods:{initialize:function(t){if(void 0===t&&(t=+this.initialSwipe),this.$el&&!mi(this.$el)){clearTimeout(this.timer);var e={width:this.$el.offsetWidth,height:this.$el.offsetHeight};this.rect=e,this.swiping=!0,this.active=t,this.computedWidth=+this.width||e.width,this.computedHeight=+this.height||e.height,this.offset=this.getTargetOffset(t),this.children.forEach(function(t){t.offset=0}),this.autoPlay()}},resize:function(){this.initialize(this.activeIndicator)},onVisibilityChange:function(){document.hidden?this.clear():this.autoPlay()},onTouchStart:function(t){this.touchable&&(this.clear(),this.touchStartTime=Date.now(),this.touchStart(t),this.correctPosition())},onTouchMove:function(t){this.touchable&&this.swiping&&(this.touchMove(t),this.isCorrectDirection&&(y(t,this.stopPropagation),this.move({offset:this.delta})))},onTouchEnd:function(){if(this.touchable&&this.swiping){var t=this.size,e=this.delta,n=e/(Date.now()-this.touchStartTime);if((Math.abs(n)>.25||Math.abs(e)>t/2)&&this.isCorrectDirection){var i=this.vertical?this.offsetY:this.offsetX,r=0;r=this.loop?i>0?e>0?-1:1:0:-Math[e>0?"ceil":"floor"](e/t),this.move({pace:r,emitChange:!0})}else e&&this.move({pace:0});this.swiping=!1,this.autoPlay()}},getTargetActive:function(t){var e=this.active,n=this.count,i=this.maxCount;return t?this.loop?Tt(e+t,-1,n):Tt(e+t,0,i):e},getTargetOffset:function(t,e){void 0===e&&(e=0);var n=t*this.size;this.loop||(n=Math.min(n,-this.minOffset));var i=e-n;return this.loop||(i=Tt(i,this.minOffset,0)),i},move:function(t){var e=t.pace,n=void 0===e?0:e,i=t.offset,r=void 0===i?0:i,o=t.emitChange,a=this.loop,s=this.count,A=this.active,l=this.children,c=this.trackSize,u=this.minOffset;if(!(s<=1)){var h=this.getTargetActive(n),d=this.getTargetOffset(h,r);if(a){if(l[0]&&d!==u){var f=d<u;l[0].offset=f?c:0}if(l[s-1]&&0!==d){var p=d>0;l[s-1].offset=p?-c:0}}this.active=h,this.offset=d,o&&h!==A&&this.$emit("change",this.activeIndicator)}},prev:function(){var t=this;this.correctPosition(),this.resetTouchStatus(),Object(Rn.b)(function(){t.swiping=!1,t.move({pace:-1,emitChange:!0})})},next:function(){var t=this;this.correctPosition(),this.resetTouchStatus(),Object(Rn.b)(function(){t.swiping=!1,t.move({pace:1,emitChange:!0})})},swipeTo:function(t,e){var n=this;void 0===e&&(e={}),this.correctPosition(),this.resetTouchStatus(),Object(Rn.b)(function(){var i;i=n.loop&&t===n.count?0===n.active?0:t:t%n.count,e.immediate?Object(Rn.b)(function(){n.swiping=!1}):n.swiping=!1,n.move({pace:i-n.active,emitChange:!0})})},correctPosition:function(){this.swiping=!0,this.active<=-1&&this.move({pace:this.count}),this.active>=this.count&&this.move({pace:-this.count})},clear:function(){clearTimeout(this.timer)},autoPlay:function(){var t=this,e=this.autoplay;e>0&&this.count>1&&(this.clear(),this.timer=setTimeout(function(){t.next(),t.autoPlay()},e))},genIndicator:function(){var t=this,e=this.$createElement,n=this.count,i=this.activeIndicator,r=this.slots("indicator");return r||(this.showIndicators&&n>1?e("div",{class:sa("indicators",{vertical:this.vertical})},[Array.apply(void 0,Array(n)).map(function(n,r){return e("i",{class:sa("indicator",{active:r===i}),style:r===i?t.indicatorStyle:null})})]):void 0)}},render:function(){var t=arguments[0];return t("div",{class:sa()},[t("div",{ref:"track",style:this.trackStyle,class:sa("track",{vertical:this.vertical})},[this.slots()]),this.genIndicator()])}}),la=Object(s.b)("swipe-item"),ca=la[0],ua=la[1],ha=ca({mixins:[Qe("vanSwipe")],data:function(){return{offset:0,inited:!1,mounted:!1}},mounted:function(){var t=this;this.$nextTick(function(){t.mounted=!0})},computed:{style:function(){var t={},e=this.parent,n=e.size,i=e.vertical;return n&&(t[i?"height":"width"]=n+"px"),this.offset&&(t.transform="translate"+(i?"Y":"X")+"("+this.offset+"px)"),t},shouldRender:function(){var t=this.index,e=this.inited,n=this.parent,i=this.mounted;if(!n.lazyRender||e)return!0;if(!i)return!1;var r=n.activeIndicator,o=n.count-1,a=0===r&&n.loop?o:r-1,s=r===o&&n.loop?0:r+1,A=t===r||t===a||t===s;return A&&(this.inited=!0),A}},render:function(){return(0,arguments[0])("div",{class:ua(),style:this.style,on:i({},this.$listeners)},[this.shouldRender&&this.slots()])}});function da(t){return Math.sqrt(Math.pow(t[0].clientX-t[1].clientX,2)+Math.pow(t[0].clientY-t[1].clientY,2))}var fa,pa={mixins:[H],props:{src:String,show:Boolean,active:Number,minZoom:[Number,String],maxZoom:[Number,String],rootWidth:Number,rootHeight:Number},data:function(){return{scale:1,moveX:0,moveY:0,moving:!1,zooming:!1,imageRatio:0,displayWidth:0,displayHeight:0}},computed:{vertical:function(){var t=this.rootWidth,e=this.rootHeight/t;return this.imageRatio>e},imageStyle:function(){var t=this.scale,e={transitionDuration:this.zooming||this.moving?"0s":".3s"};if(1!==t){var n=this.moveX/t,i=this.moveY/t;e.transform="scale("+t+", "+t+") translate("+n+"px, "+i+"px)"}return e},maxMoveX:function(){if(this.imageRatio){var t=this.vertical?this.rootHeight/this.imageRatio:this.rootWidth;return Math.max(0,(this.scale*t-this.rootWidth)/2)}return 0},maxMoveY:function(){if(this.imageRatio){var t=this.vertical?this.rootHeight:this.rootWidth*this.imageRatio;return Math.max(0,(this.scale*t-this.rootHeight)/2)}return 0}},watch:{active:"resetScale",show:function(t){t||this.resetScale()}},mounted:function(){this.bindTouchEvent(this.$el)},methods:{resetScale:function(){this.setScale(1),this.moveX=0,this.moveY=0},setScale:function(t){(t=Tt(t,+this.minZoom,+this.maxZoom))!==this.scale&&(this.scale=t,this.$emit("scale",{scale:this.scale,index:this.active}))},toggleScale:function(){var t=this.scale>1?1:2;this.setScale(t),this.moveX=0,this.moveY=0},onTouchStart:function(t){var e=t.touches,n=this.offsetX,i=void 0===n?0:n;this.touchStart(t),this.touchStartTime=new Date,this.fingerNum=e.length,this.startMoveX=this.moveX,this.startMoveY=this.moveY,this.moving=1===this.fingerNum&&1!==this.scale,this.zooming=2===this.fingerNum&&!i,this.zooming&&(this.startScale=this.scale,this.startDistance=da(t.touches))},onTouchMove:function(t){var e=t.touches;if(this.touchMove(t),(this.moving||this.zooming)&&y(t,!0),this.moving){var n=this.deltaX+this.startMoveX,i=this.deltaY+this.startMoveY;this.moveX=Tt(n,-this.maxMoveX,this.maxMoveX),this.moveY=Tt(i,-this.maxMoveY,this.maxMoveY)}if(this.zooming&&2===e.length){var r=da(e),o=this.startScale*r/this.startDistance;this.setScale(o)}},onTouchEnd:function(t){var e=!1;(this.moving||this.zooming)&&(e=!0,this.moving&&this.startMoveX===this.moveX&&this.startMoveY===this.moveY&&(e=!1),t.touches.length||(this.zooming&&(this.moveX=Tt(this.moveX,-this.maxMoveX,this.maxMoveX),this.moveY=Tt(this.moveY,-this.maxMoveY,this.maxMoveY),this.zooming=!1),this.moving=!1,this.startMoveX=0,this.startMoveY=0,this.startScale=1,this.scale<1&&this.resetScale())),y(t,e),this.checkTap(),this.resetTouchStatus()},checkTap:function(){var t=this;if(!(this.fingerNum>1)){var e=this.offsetX,n=void 0===e?0:e,i=this.offsetY,r=void 0===i?0:i,o=new Date-this.touchStartTime;n<5&&r<5&&o<250&&(this.doubleTapTimer?(clearTimeout(this.doubleTapTimer),this.doubleTapTimer=null,this.toggleScale()):this.doubleTapTimer=setTimeout(function(){t.$emit("close"),t.doubleTapTimer=null},250))}},onLoad:function(t){var e=t.target,n=e.naturalWidth,i=e.naturalHeight;this.imageRatio=i/n}},render:function(){var t=arguments[0],e={loading:function(){return t(ut,{attrs:{type:"spinner"}})}};return t(ha,{class:ra("swipe-item")},[t(si,{attrs:{src:this.src,fit:"contain"},class:ra("image",{vertical:this.vertical}),style:this.imageStyle,scopedSlots:e,on:{load:this.onLoad}})])}},ga=ia({mixins:[H,G({skipToggleEvent:!0}),V(function(t){t(window,"resize",this.resize,!0),t(window,"orientationchange",this.resize,!0)})],props:{className:null,closeable:Boolean,asyncClose:Boolean,overlayStyle:Object,showIndicators:Boolean,images:{type:Array,default:function(){return[]}},loop:{type:Boolean,default:!0},overlay:{type:Boolean,default:!0},minZoom:{type:[Number,String],default:1/3},maxZoom:{type:[Number,String],default:3},transition:{type:String,default:"van-fade"},showIndex:{type:Boolean,default:!0},swipeDuration:{type:[Number,String],default:300},startPosition:{type:[Number,String],default:0},overlayClass:{type:String,default:ra("overlay")},closeIcon:{type:String,default:"clear"},closeOnPopstate:{type:Boolean,default:!0},closeIconPosition:{type:String,default:"top-right"}},data:function(){return{active:0,rootWidth:0,rootHeight:0,doubleClickTimer:null}},mounted:function(){this.resize()},watch:{startPosition:"setActive",value:function(t){var e=this;t?(this.setActive(+this.startPosition),this.$nextTick(function(){e.resize(),e.$refs.swipe.swipeTo(+e.startPosition,{immediate:!0})})):this.$emit("close",{index:this.active,url:this.images[this.active]})}},methods:{resize:function(){if(this.$el&&this.$el.getBoundingClientRect){var t=this.$el.getBoundingClientRect();this.rootWidth=t.width,this.rootHeight=t.height}},emitClose:function(){this.asyncClose||this.$emit("input",!1)},emitScale:function(t){this.$emit("scale",t)},setActive:function(t){t!==this.active&&(this.active=t,this.$emit("change",t))},genIndex:function(){var t=this.$createElement;if(this.showIndex)return t("div",{class:ra("index")},[this.slots("index",{index:this.active})||this.active+1+" / "+this.images.length])},genCover:function(){var t=this.$createElement,e=this.slots("cover");if(e)return t("div",{class:ra("cover")},[e])},genImages:function(){var t=this,e=this.$createElement;return e(Aa,{ref:"swipe",attrs:{lazyRender:!0,loop:this.loop,duration:this.swipeDuration,initialSwipe:this.startPosition,showIndicators:this.showIndicators,indicatorColor:"white"},class:ra("swipe"),on:{change:this.setActive}},[this.images.map(function(n){return e(pa,{attrs:{src:n,show:t.value,active:t.active,maxZoom:t.maxZoom,minZoom:t.minZoom,rootWidth:t.rootWidth,rootHeight:t.rootHeight},on:{scale:t.emitScale,close:t.emitClose}})})])},genClose:function(){var t=this.$createElement;if(this.closeable)return t(nt,{attrs:{role:"button",name:this.closeIcon},class:ra("close-icon",this.closeIconPosition),on:{click:this.emitClose}})},onClosed:function(){this.$emit("closed")},swipeTo:function(t,e){this.$refs.swipe&&this.$refs.swipe.swipeTo(t,e)}},render:function(){var t=arguments[0];return t("transition",{attrs:{name:this.transition},on:{afterLeave:this.onClosed}},[this.shouldRender?t("div",{directives:[{name:"show",value:this.value}],class:[ra(),this.className]},[this.genClose(),this.genImages(),this.genIndex(),this.genCover()]):null])}}),ma={loop:!0,value:!0,images:[],maxZoom:3,minZoom:1/3,onClose:null,onChange:null,className:"",showIndex:!0,closeable:!1,closeIcon:"clear",asyncClose:!1,transition:"van-fade",getContainer:"body",overlayStyle:null,startPosition:0,swipeDuration:300,showIndicators:!1,closeOnPopstate:!0,closeIconPosition:"top-right"},va=function(t,e){if(void 0===e&&(e=0),!s.j){fa||(fa=new(a.a.extend(ga))({el:document.createElement("div")}),document.body.appendChild(fa.$el),fa.$on("change",function(t){fa.onChange&&fa.onChange(t)}),fa.$on("scale",function(t){fa.onScale&&fa.onScale(t)}));var n=Array.isArray(t)?{images:t,startPosition:e}:t;return i(fa,ma,n),fa.$once("input",function(t){fa.value=t}),fa.$once("closed",function(){fa.images=[]}),n.onClose&&(fa.$off("close"),fa.$once("close",n.onClose)),fa}};va.Component=ga,va.install=function(){a.a.use(ga)};var ya=va,wa=Object(s.b)("index-anchor"),xa=wa[0],Ba=wa[1],ba=xa({mixins:[Qe("vanIndexBar",{indexKey:"childrenIndex"})],props:{index:[Number,String]},data:function(){return{top:0,left:null,rect:{top:0,height:0},width:null,active:!1}},computed:{sticky:function(){return this.active&&this.parent.sticky},anchorStyle:function(){if(this.sticky)return{zIndex:""+this.parent.zIndex,left:this.left?this.left+"px":null,width:this.width?this.width+"px":null,transform:"translate3d(0, "+this.top+"px, 0)",color:this.parent.highlightColor}}},mounted:function(){var t=this.$el.getBoundingClientRect();this.rect.height=t.height},methods:{scrollIntoView:function(){this.$el.scrollIntoView()},getRect:function(t,e){var n=this.$el.getBoundingClientRect();return this.rect.height=n.height,t===window||t===document.body?this.rect.top=n.top+L():this.rect.top=n.top+U(t)-e.top,this.rect}},render:function(){var t,e=arguments[0],n=this.sticky;return e("div",{style:{height:n?this.rect.height+"px":null}},[e("div",{style:this.anchorStyle,class:[Ba({sticky:n}),(t={},t[bt]=n,t)]},[this.slots("default")||this.index])])}});var Ca=Object(s.b)("index-bar"),_a=Ca[0],Sa=Ca[1],Ia=_a({mixins:[H,Fe("vanIndexBar"),V(function(t){this.scroller||(this.scroller=D(this.$el)),t(this.scroller,"scroll",this.onScroll)})],props:{zIndex:[Number,String],highlightColor:String,sticky:{type:Boolean,default:!0},stickyOffsetTop:{type:Number,default:0},indexList:{type:Array,default:function(){for(var t=[],e="A".charCodeAt(0),n=0;n<26;n++)t.push(String.fromCharCode(e+n));return t}}},data:function(){return{activeAnchorIndex:null}},computed:{sidebarStyle:function(){if(Object(s.e)(this.zIndex))return{zIndex:this.zIndex+1}},highlightStyle:function(){var t=this.highlightColor;if(t)return{color:t}}},watch:{indexList:function(){this.$nextTick(this.onScroll)},activeAnchorIndex:function(t){t&&this.$emit("change",t)}},methods:{onScroll:function(){var t=this;if(!mi(this.$el)){var e=U(this.scroller),n=this.getScrollerRect(),i=this.children.map(function(e){return e.getRect(t.scroller,n)}),r=this.getActiveAnchorIndex(e,i);this.activeAnchorIndex=this.indexList[r],this.sticky&&this.children.forEach(function(o,a){if(a===r||a===r-1){var s=o.$el.getBoundingClientRect();o.left=s.left,o.width=s.width}else o.left=null,o.width=null;if(a===r)o.active=!0,o.top=Math.max(t.stickyOffsetTop,i[a].top-e)+n.top;else if(a===r-1){var A=i[r].top-e;o.active=A>0,o.top=A+n.top-i[a].height}else o.active=!1})}},getScrollerRect:function(){return this.scroller.getBoundingClientRect?this.scroller.getBoundingClientRect():{top:0,left:0}},getActiveAnchorIndex:function(t,e){for(var n=this.children.length-1;n>=0;n--){var i=n>0?e[n-1].height:0;if(t+(this.sticky?i+this.stickyOffsetTop:0)>=e[n].top)return n}return-1},onClick:function(t){this.scrollToElement(t.target)},onTouchMove:function(t){if(this.touchMove(t),"vertical"===this.direction){y(t);var e=t.touches[0],n=e.clientX,i=e.clientY,r=document.elementFromPoint(n,i);if(r){var o=r.dataset.index;this.touchActiveIndex!==o&&(this.touchActiveIndex=o,this.scrollToElement(r))}}},scrollTo:function(t){var e=this.children.filter(function(e){return String(e.index)===t});e[0]&&(e[0].scrollIntoView(),this.sticky&&this.stickyOffsetTop&&O(L()-this.stickyOffsetTop),this.$emit("select",e[0].index))},scrollToElement:function(t){var e=t.dataset.index;this.scrollTo(e)},onTouchEnd:function(){this.active=null}},render:function(){var t=this,e=arguments[0],n=this.indexList.map(function(n){var i=n===t.activeAnchorIndex;return e("span",{class:Sa("index",{active:i}),style:i?t.highlightStyle:null,attrs:{"data-index":n}},[n])});return e("div",{class:Sa()},[e("div",{class:Sa("sidebar"),style:this.sidebarStyle,on:{click:this.onClick,touchstart:this.touchStart,touchmove:this.onTouchMove,touchend:this.onTouchEnd,touchcancel:this.onTouchEnd}},[n]),this.slots("default")])}}),Ta=n("lJzc"),Ma=n.n(Ta).a,Qa=Object(s.b)("list"),Fa=Qa[0],ka=Qa[1],Da=Qa[2],Ua=Fa({mixins:[V(function(t){this.scroller||(this.scroller=D(this.$el)),t(this.scroller,"scroll",this.check)})],model:{prop:"loading"},props:{error:Boolean,loading:Boolean,finished:Boolean,errorText:String,loadingText:String,finishedText:String,immediateCheck:{type:Boolean,default:!0},offset:{type:[Number,String],default:300},direction:{type:String,default:"down"}},data:function(){return{innerLoading:this.loading}},updated:function(){this.innerLoading=this.loading},mounted:function(){this.immediateCheck&&this.check()},watch:{loading:"check",finished:"check"},methods:{check:function(){var t=this;this.$nextTick(function(){if(!(t.innerLoading||t.finished||t.error)){var e,n=t.$el,i=t.scroller,r=t.offset,o=t.direction;if(!((e=i.getBoundingClientRect?i.getBoundingClientRect():{top:0,bottom:i.innerHeight}).bottom-e.top)||mi(n))return!1;var a=t.$refs.placeholder.getBoundingClientRect();("up"===o?e.top-a.top<=r:a.bottom-e.bottom<=r)&&(t.innerLoading=!0,t.$emit("input",!0),t.$emit("load"))}})},clickErrorText:function(){this.$emit("update:error",!1),this.check()},genLoading:function(){var t=this.$createElement;if(this.innerLoading&&!this.finished)return t("div",{key:"loading",class:ka("loading")},[this.slots("loading")||t(ut,{attrs:{size:"16"}},[this.loadingText||Da("loading")])])},genFinishedText:function(){var t=this.$createElement;if(this.finished){var e=this.slots("finished")||this.finishedText;if(e)return t("div",{class:ka("finished-text")},[e])}},genErrorText:function(){var t=this.$createElement;if(this.error){var e=this.slots("error")||this.errorText;if(e)return t("div",{on:{click:this.clickErrorText},class:ka("error-text")},[e])}}},render:function(){var t=arguments[0],e=t("div",{ref:"placeholder",key:"placeholder",class:ka("placeholder")});return t("div",{class:ka(),attrs:{role:"feed","aria-busy":this.innerLoading}},["down"===this.direction?this.slots():e,this.genLoading(),this.genFinishedText(),this.genErrorText(),"up"===this.direction?this.slots():e])}}),Ea=n("b+6s"),La=Object(s.b)("nav-bar"),Oa=La[0],Pa=La[1],Ha=Oa({props:{title:String,fixed:Boolean,zIndex:[Number,String],leftText:String,rightText:String,leftArrow:Boolean,placeholder:Boolean,safeAreaInsetTop:Boolean,border:{type:Boolean,default:!0}},data:function(){return{height:null}},mounted:function(){var t=this;if(this.placeholder&&this.fixed){var e=function(){t.height=t.$refs.navBar.getBoundingClientRect().height};e(),setTimeout(e,100)}},methods:{genLeft:function(){var t=this.$createElement,e=this.slots("left");return e||[this.leftArrow&&t(nt,{class:Pa("arrow"),attrs:{name:"arrow-left"}}),this.leftText&&t("span",{class:Pa("text")},[this.leftText])]},genRight:function(){var t=this.$createElement,e=this.slots("right");return e||(this.rightText?t("span",{class:Pa("text")},[this.rightText]):void 0)},genNavBar:function(){var t,e=this.$createElement;return e("div",{ref:"navBar",style:{zIndex:this.zIndex},class:[Pa({fixed:this.fixed,"safe-area-inset-top":this.safeAreaInsetTop}),(t={},t[bt]=this.border,t)]},[e("div",{class:Pa("content")},[this.hasLeft()&&e("div",{class:Pa("left"),on:{click:this.onClickLeft}},[this.genLeft()]),e("div",{class:[Pa("title"),"van-ellipsis"]},[this.slots("title")||this.title]),this.hasRight()&&e("div",{class:Pa("right"),on:{click:this.onClickRight}},[this.genRight()])])])},hasLeft:function(){return this.leftArrow||this.leftText||this.slots("left")},hasRight:function(){return this.rightText||this.slots("right")},onClickLeft:function(t){this.$emit("click-left",t)},onClickRight:function(t){this.$emit("click-right",t)}},render:function(){var t=arguments[0];return this.placeholder&&this.fixed?t("div",{class:Pa("placeholder"),style:{height:this.height+"px"}},[this.genNavBar()]):this.genNavBar()}}),Na=Object(s.b)("notice-bar"),Ra=Na[0],Va=Na[1],za=Ra({mixins:[V(function(t){t(window,"pageshow",this.reset)})],inject:{vanPopup:{default:null}},props:{text:String,mode:String,color:String,leftIcon:String,wrapable:Boolean,background:String,scrollable:{type:Boolean,default:null},delay:{type:[Number,String],default:1},speed:{type:[Number,String],default:60}},data:function(){return{show:!0,offset:0,duration:0,wrapWidth:0,contentWidth:0}},watch:{scrollable:"reset",text:{handler:"reset",immediate:!0}},created:function(){this.vanPopup&&this.vanPopup.onReopen(this.reset)},activated:function(){this.reset()},methods:{onClickIcon:function(t){"closeable"===this.mode&&(this.show=!1,this.$emit("close",t))},onTransitionEnd:function(){var t=this;this.offset=this.wrapWidth,this.duration=0,Object(Rn.c)(function(){Object(Rn.b)(function(){t.offset=-t.contentWidth,t.duration=(t.contentWidth+t.wrapWidth)/t.speed,t.$emit("replay")})})},start:function(){this.reset()},reset:function(){var t=this,e=Object(s.e)(this.delay)?1e3*this.delay:0;this.offset=0,this.duration=0,this.wrapWidth=0,this.contentWidth=0,clearTimeout(this.startTimer),this.startTimer=setTimeout(function(){var e=t.$refs,n=e.wrap,i=e.content;if(n&&i&&!1!==t.scrollable){var r=n.getBoundingClientRect().width,o=i.getBoundingClientRect().width;(t.scrollable||o>r)&&Object(Rn.b)(function(){t.offset=-o,t.duration=o/t.speed,t.wrapWidth=r,t.contentWidth=o})}},e)}},render:function(){var t,e=this,n=arguments[0],i=this.slots,r=this.mode,o=this.leftIcon,a=this.onClickIcon,s={color:this.color,background:this.background},A={transform:this.offset?"translateX("+this.offset+"px)":"",transitionDuration:this.duration+"s"};return n("div",{attrs:{role:"alert"},directives:[{name:"show",value:this.show}],class:Va({wrapable:this.wrapable}),style:s,on:{click:function(t){e.$emit("click",t)}}},[(t=i("left-icon"),t||(o?n(nt,{class:Va("left-icon"),attrs:{name:o}}):void 0)),n("div",{ref:"wrap",class:Va("wrap"),attrs:{role:"marquee"}},[n("div",{ref:"content",class:[Va("content"),{"van-ellipsis":!1===this.scrollable&&!this.wrapable}],style:A,on:{transitionend:this.onTransitionEnd}},[this.slots()||this.text])]),function(){var t,e=i("right-icon");return e||("closeable"===r?t="cross":"link"===r&&(t="arrow"),t?n(nt,{class:Va("right-icon"),attrs:{name:t},on:{click:a}}):void 0)}()])}}),Ka=Object(s.b)("notify"),Ga=Ka[0],Wa=Ka[1];function ja(t,e,n,i){var r={color:e.color,background:e.background};return t(at,o()([{attrs:{value:e.value,position:"top",overlay:!1,duration:.2,lockScroll:!1},style:r,class:[Wa([e.type]),e.className]},c(i,!0)]),[(null==n.default?void 0:n.default())||e.message])}ja.props=i({},K,{color:String,message:[Number,String],duration:[Number,String],className:null,background:String,getContainer:[String,Function],type:{type:String,default:"danger"}});var $a,qa,Ya=Ga(ja);function Xa(t){var e;if(!s.j)return qa||(qa=h(Ya,{on:{click:function(t){qa.onClick&&qa.onClick(t)},close:function(){qa.onClose&&qa.onClose()},opened:function(){qa.onOpened&&qa.onOpened()}}})),t=i({},Xa.currentOptions,(e=t,Object(s.h)(e)?e:{message:e})),i(qa,t),clearTimeout($a),t.duration&&t.duration>0&&($a=setTimeout(Xa.clear,t.duration)),qa}Xa.clear=function(){qa&&(qa.value=!1)},Xa.currentOptions={type:"danger",value:!0,message:"",color:void 0,background:void 0,duration:3e3,className:"",onClose:null,onClick:null,onOpened:null},Xa.setDefaultOptions=function(t){i(Xa.currentOptions,t)},Xa.resetDefaultOptions=function(){Xa.currentOptions={type:"danger",value:!0,message:"",color:void 0,background:void 0,duration:3e3,className:"",onClose:null,onClick:null,onOpened:null}},Xa.install=function(){a.a.use(Ya)},Xa.Component=Ya,a.a.prototype.$notify=Xa;var Ja=Xa,Za={render:function(){var t=arguments[0];return t("svg",{attrs:{viewBox:"0 0 32 22",xmlns:"http://www.w3.org/2000/svg"}},[t("path",{attrs:{d:"M28.016 0A3.991 3.991 0 0132 3.987v14.026c0 2.2-1.787 3.987-3.98 3.987H10.382c-.509 0-.996-.206-1.374-.585L.89 13.09C.33 12.62 0 11.84 0 11.006c0-.86.325-1.62.887-2.08L9.01.585A1.936 1.936 0 0110.383 0zm0 1.947H10.368L2.24 10.28c-.224.226-.312.432-.312.73 0 .287.094.51.312.729l8.128 8.333h17.648a2.041 2.041 0 002.037-2.04V3.987c0-1.127-.915-2.04-2.037-2.04zM23.028 6a.96.96 0 01.678.292.95.95 0 01-.003 1.377l-3.342 3.348 3.326 3.333c.189.188.292.43.292.679 0 .248-.103.49-.292.679a.96.96 0 01-.678.292.959.959 0 01-.677-.292L18.99 12.36l-3.343 3.345a.96.96 0 01-.677.292.96.96 0 01-.678-.292.962.962 0 01-.292-.68c0-.248.104-.49.292-.679l3.342-3.348-3.342-3.348A.963.963 0 0114 6.971c0-.248.104-.49.292-.679A.96.96 0 0114.97 6a.96.96 0 01.677.292l3.358 3.348 3.345-3.348A.96.96 0 0123.028 6z",fill:"currentColor"}})])}},ts={render:function(){var t=arguments[0];return t("svg",{attrs:{viewBox:"0 0 30 24",xmlns:"http://www.w3.org/2000/svg"}},[t("path",{attrs:{d:"M25.877 12.843h-1.502c-.188 0-.188 0-.188.19v1.512c0 .188 0 .188.188.188h1.5c.187 0 .187 0 .187-.188v-1.511c0-.19 0-.191-.185-.191zM17.999 10.2c0 .188 0 .188.188.188h1.687c.188 0 .188 0 .188-.188V8.688c0-.187.004-.187-.186-.19h-1.69c-.187 0-.187 0-.187.19V10.2zm2.25-3.967h1.5c.188 0 .188 0 .188-.188v-1.7c0-.19 0-.19-.188-.19h-1.5c-.189 0-.189 0-.189.19v1.7c0 .188 0 .188.19.188zm2.063 4.157h3.563c.187 0 .187 0 .187-.189V4.346c0-.19.004-.19-.185-.19h-1.69c-.187 0-.187 0-.187.188v4.155h-1.688c-.187 0-.187 0-.187.189v1.514c0 .19 0 .19.187.19zM14.812 24l2.812-3.4H12l2.813 3.4zm-9-11.157H4.31c-.188 0-.188 0-.188.19v1.512c0 .188 0 .188.188.188h1.502c.187 0 .187 0 .187-.188v-1.511c0-.19.01-.191-.189-.191zm15.937 0H8.25c-.188 0-.188 0-.188.19v1.512c0 .188 0 .188.188.188h13.5c.188 0 .188 0 .188-.188v-1.511c0-.19 0-.191-.188-.191zm-11.438-2.454h1.5c.188 0 .188 0 .188-.188V8.688c0-.187 0-.187-.188-.189h-1.5c-.187 0-.187 0-.187.189V10.2c0 .188 0 .188.187.188zM27.94 0c.563 0 .917.21 1.313.567.518.466.748.757.748 1.51v14.92c0 .567-.188 1.134-.562 1.512-.376.378-.938.566-1.313.566H2.063c-.563 0-.938-.188-1.313-.566-.562-.378-.75-.945-.75-1.511V2.078C0 1.51.188.944.562.567.938.189 1.5 0 1.875 0zm-.062 2H2v14.92h25.877V2zM5.81 4.157c.19 0 .19 0 .19.189v1.762c-.003.126-.024.126-.188.126H4.249c-.126-.003-.126-.023-.126-.188v-1.7c-.187-.19 0-.19.188-.19zm10.5 2.077h1.503c.187 0 .187 0 .187-.188v-1.7c0-.19 0-.19-.187-.19h-1.502c-.188 0-.188.001-.188.19v1.7c0 .188 0 .188.188.188zM7.875 8.5c.187 0 .187.002.187.189V10.2c0 .188 0 .188-.187.188H4.249c-.126-.002-.126-.023-.126-.188V8.625c.003-.126.024-.126.188-.126zm7.875 0c.19.002.19.002.19.189v1.575c-.003.126-.024.126-.19.126h-1.563c-.126-.002-.126-.023-.126-.188V8.625c.002-.126.023-.126.189-.126zm-6-4.342c.187 0 .187 0 .187.189v1.7c0 .188 0 .188-.187.188H8.187c-.126-.003-.126-.023-.126-.188V4.283c.003-.126.024-.126.188-.126zm3.94 0c.185 0 .372 0 .372.189v1.762c-.002.126-.023.126-.187.126h-1.75C12 6.231 12 6.211 12 6.046v-1.7c0-.19.187-.19.187-.19z",fill:"currentColor"}})])}},es=Object(s.b)("key"),ns=es[0],is=es[1],rs=ns({mixins:[H],props:{type:String,text:[Number,String],color:String,wider:Boolean,large:Boolean,loading:Boolean},data:function(){return{active:!1}},mounted:function(){this.bindTouchEvent(this.$el)},methods:{onTouchStart:function(t){t.stopPropagation(),this.touchStart(t),this.active=!0},onTouchMove:function(t){this.touchMove(t),this.direction&&(this.active=!1)},onTouchEnd:function(t){this.active&&(this.slots("default")||t.preventDefault(),this.active=!1,this.$emit("press",this.text,this.type))},genContent:function(){var t=this.$createElement,e="extra"===this.type,n="delete"===this.type,i=this.slots("default")||this.text;return this.loading?t(ut,{class:is("loading-icon")}):n?i||t(Za,{class:is("delete-icon")}):e?i||t(ts,{class:is("collapse-icon")}):i}},render:function(){var t=arguments[0];return t("div",{class:is("wrapper",{wider:this.wider})},[t("div",{attrs:{role:"button",tabindex:"0"},class:is([this.color,{large:this.large,active:this.active,delete:"delete"===this.type}])},[this.genContent()])])}}),os=Object(s.b)("number-keyboard"),as=os[0],ss=os[1],As=as({mixins:[N(),V(function(t){this.hideOnClickOutside&&t(document.body,"touchstart",this.onBlur)})],model:{event:"update:value"},props:{show:Boolean,title:String,zIndex:[Number,String],randomKeyOrder:Boolean,closeButtonText:String,deleteButtonText:String,closeButtonLoading:Boolean,theme:{type:String,default:"default"},value:{type:String,default:""},extraKey:{type:[String,Array],default:""},maxlength:{type:[Number,String],default:Number.MAX_VALUE},transition:{type:Boolean,default:!0},showDeleteKey:{type:Boolean,default:!0},hideOnClickOutside:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!0}},watch:{show:function(t){this.transition||this.$emit(t?"show":"hide")}},computed:{keys:function(){return"custom"===this.theme?this.genCustomKeys():this.genDefaultKeys()}},methods:{genBasicKeys:function(){for(var t=[],e=1;e<=9;e++)t.push({text:e});return this.randomKeyOrder&&t.sort(function(){return Math.random()>.5?1:-1}),t},genDefaultKeys:function(){return[].concat(this.genBasicKeys(),[{text:this.extraKey,type:"extra"},{text:0},{text:this.showDeleteKey?this.deleteButtonText:"",type:this.showDeleteKey?"delete":""}])},genCustomKeys:function(){var t=this.genBasicKeys(),e=this.extraKey,n=Array.isArray(e)?e:[e];return 1===n.length?t.push({text:0,wider:!0},{text:n[0],type:"extra"}):2===n.length&&t.push({text:n[0],type:"extra"},{text:0},{text:n[1],type:"extra"}),t},onBlur:function(){this.show&&this.$emit("blur")},onClose:function(){this.$emit("close"),this.onBlur()},onAnimationEnd:function(){this.$emit(this.show?"show":"hide")},onPress:function(t,e){if(""!==t){var n=this.value;"delete"===e?(this.$emit("delete"),this.$emit("update:value",n.slice(0,n.length-1))):"close"===e?this.onClose():n.length<this.maxlength&&(this.$emit("input",t),this.$emit("update:value",n+t))}else"extra"===e&&this.onBlur()},genTitle:function(){var t=this.$createElement,e=this.title,n=this.theme,i=this.closeButtonText,r=this.slots("title-left"),o=i&&"default"===n;if(e||o||r)return t("div",{class:ss("header")},[r&&t("span",{class:ss("title-left")},[r]),e&&t("h2",{class:ss("title")},[e]),o&&t("button",{attrs:{type:"button"},class:ss("close"),on:{click:this.onClose}},[i])])},genKeys:function(){var t=this,e=this.$createElement;return this.keys.map(function(n){return e(rs,{key:n.text,attrs:{text:n.text,type:n.type,wider:n.wider,color:n.color},on:{press:t.onPress}},["delete"===n.type&&t.slots("delete"),"extra"===n.type&&t.slots("extra-key")])})},genSidebar:function(){var t=this.$createElement;if("custom"===this.theme)return t("div",{class:ss("sidebar")},[this.showDeleteKey&&t(rs,{attrs:{large:!0,text:this.deleteButtonText,type:"delete"},on:{press:this.onPress}},[this.slots("delete")]),t(rs,{attrs:{large:!0,text:this.closeButtonText,type:"close",color:"blue",loading:this.closeButtonLoading},on:{press:this.onPress}})])}},render:function(){var t=arguments[0],e=this.genTitle();return t("transition",{attrs:{name:this.transition?"van-slide-up":""}},[t("div",{directives:[{name:"show",value:this.show}],style:{zIndex:this.zIndex},class:ss({unfit:!this.safeAreaInsetBottom,"with-title":e}),on:{touchstart:v,animationend:this.onAnimationEnd,webkitAnimationEnd:this.onAnimationEnd}},[e,t("div",{class:ss("body")},[t("div",{class:ss("keys")},[this.genKeys()]),this.genSidebar()])])])}}),ls=Object(s.b)("pagination"),cs=ls[0],us=ls[1],hs=ls[2];function ds(t,e,n){return{number:t,text:e,active:n}}var fs=cs({props:{prevText:String,nextText:String,forceEllipses:Boolean,mode:{type:String,default:"multi"},value:{type:Number,default:0},pageCount:{type:[Number,String],default:0},totalItems:{type:[Number,String],default:0},itemsPerPage:{type:[Number,String],default:10},showPageSize:{type:[Number,String],default:5}},computed:{count:function(){var t=this.pageCount||Math.ceil(this.totalItems/this.itemsPerPage);return Math.max(1,t)},pages:function(){var t=[],e=this.count,n=+this.showPageSize;if("multi"!==this.mode)return t;var i=1,r=e,o=n<e;o&&(r=(i=Math.max(this.value-Math.floor(n/2),1))+n-1)>e&&(i=(r=e)-n+1);for(var a=i;a<=r;a++){var s=ds(a,a,a===this.value);t.push(s)}if(o&&n>0&&this.forceEllipses){if(i>1){var A=ds(i-1,"...",!1);t.unshift(A)}if(r<e){var l=ds(r+1,"...",!1);t.push(l)}}return t}},watch:{value:{handler:function(t){this.select(t||this.value)},immediate:!0}},methods:{select:function(t,e){t=Math.min(this.count,Math.max(1,t)),this.value!==t&&(this.$emit("input",t),e&&this.$emit("change",t))}},render:function(){var t,e,n=this,i=arguments[0],r=this.value,o="multi"!==this.mode,a=function(t){return function(){n.select(t,!0)}};return i("ul",{class:us({simple:o})},[i("li",{class:[us("item",{disabled:1===r}),us("prev"),wt],on:{click:a(r-1)}},[(null!=(t=this.slots("prev-text"))?t:this.prevText)||hs("prev")]),this.pages.map(function(t){var e;return i("li",{class:[us("item",{active:t.active}),us("page"),wt],on:{click:a(t.number)}},[null!=(e=n.slots("page",t))?e:t.text])}),o&&i("li",{class:us("page-desc")},[this.slots("pageDesc")||r+"/"+this.count]),i("li",{class:[us("item",{disabled:r===this.count}),us("next"),wt],on:{click:a(r+1)}},[(null!=(e=this.slots("next-text"))?e:this.nextText)||hs("next")])])}}),ps=Object(s.b)("panel"),gs=ps[0],ms=ps[1];function vs(t,e,n,i){return t(Ki,o()([{class:ms(),scopedSlots:{default:function(){return[n.header?n.header():t(ie,{attrs:{icon:e.icon,label:e.desc,title:e.title,value:e.status,valueClass:ms("header-value")},class:ms("header")}),t("div",{class:ms("content")},[n.default&&n.default()]),n.footer&&t("div",{class:[ms("footer"),xt]},[n.footer()])]}}},c(i,!0)]))}vs.props={icon:String,desc:String,title:String,status:String};var ys=gs(vs),ws=Object(s.b)("password-input"),xs=ws[0],Bs=ws[1];function bs(t,e,n,i){for(var r,a=e.mask,A=e.value,l=e.length,h=e.gutter,d=e.focused,f=e.errorInfo,p=f||e.info,g=[],m=0;m<l;m++){var v,y=A[m],w=0!==m&&!h,x=d&&m===A.length,B=void 0;0!==m&&h&&(B={marginLeft:Object(s.a)(h)}),g.push(t("li",{class:[(v={},v[Bt]=w,v),Bs("item",{focus:x})],style:B},[a?t("i",{style:{visibility:y?"visible":"hidden"}}):y,x&&t("div",{class:Bs("cursor")})]))}return t("div",{class:Bs()},[t("ul",o()([{class:[Bs("security"),(r={},r[Ct]=!h,r)],on:{touchstart:function(t){t.stopPropagation(),u(i,"focus",t)}}},c(i,!0)]),[g]),p&&t("div",{class:Bs(f?"error-info":"info")},[p])])}bs.props={info:String,gutter:[Number,String],focused:Boolean,errorInfo:String,mask:{type:Boolean,default:!0},value:{type:String,default:""},length:{type:[Number,String],default:6}};var Cs=xs(bs),_s=n("kcbN"),Ss=Object(s.b)("popover"),Is=Ss[0],Ts=Ss[1],Ms=Is({mixins:[To({event:"touchstart",method:"onClickOutside"})],props:{value:Boolean,trigger:String,overlay:Boolean,offset:{type:Array,default:function(){return[0,8]}},theme:{type:String,default:"light"},actions:{type:Array,default:function(){return[]}},placement:{type:String,default:"bottom"},getContainer:{type:[String,Function],default:"body"},closeOnClickAction:{type:Boolean,default:!0}},watch:{value:"updateLocation",placement:"updateLocation"},mounted:function(){this.updateLocation()},beforeDestroy:function(){this.popper&&(this.popper.destroy(),this.popper=null)},methods:{createPopper:function(){return Object(_s.a)(this.$refs.wrapper,this.$refs.popover.$el,{placement:this.placement,modifiers:[{name:"computeStyles",options:{adaptive:!1,gpuAcceleration:!1}},i({},_s.b,{options:{offset:this.offset}})]})},updateLocation:function(){var t=this;this.$nextTick(function(){t.value&&(t.popper?t.popper.setOptions({placement:t.placement}):t.popper=t.createPopper())})},renderAction:function(t,e){var n=this,i=this.$createElement,r=t.icon,o=t.text,a=t.disabled,s=t.className;return i("div",{attrs:{role:"menuitem"},class:[Ts("action",{disabled:a,"with-icon":r}),s],on:{click:function(){return n.onClickAction(t,e)}}},[r&&i(nt,{attrs:{name:r},class:Ts("action-icon")}),i("div",{class:[Ts("action-text"),bt]},[o])])},onToggle:function(t){this.$emit("input",t)},onClickWrapper:function(){"click"===this.trigger&&this.onToggle(!this.value)},onTouchstart:function(t){t.stopPropagation(),this.$emit("touchstart",t)},onClickAction:function(t,e){t.disabled||(this.$emit("select",t,e),this.closeOnClickAction&&this.$emit("input",!1))},onClickOutside:function(){this.$emit("input",!1)},onOpen:function(){this.$emit("open")},onOpened:function(){this.$emit("opened")},onClose:function(){this.$emit("close")},onClosed:function(){this.$emit("closed")}},render:function(){var t=arguments[0];return t("span",{ref:"wrapper",class:Ts("wrapper"),on:{click:this.onClickWrapper}},[t(at,{ref:"popover",attrs:{value:this.value,overlay:this.overlay,position:null,transition:"van-popover-zoom",lockScroll:!1,getContainer:this.getContainer},class:Ts([this.theme]),on:{open:this.onOpen,close:this.onClose,input:this.onToggle,opened:this.onOpened,closed:this.onClosed},nativeOn:{touchstart:this.onTouchstart}},[t("div",{class:Ts("arrow")}),t("div",{class:Ts("content"),attrs:{role:"menu"}},[this.slots("default")||this.actions.map(this.renderAction)])]),this.slots("reference")])}}),Qs=Object(s.b)("progress"),Fs=Qs[0],ks=Qs[1],Ds=Fs({mixins:[V(function(t){t(window,"resize",this.resize,!0),t(window,"orientationchange",this.resize,!0)})],props:{color:String,inactive:Boolean,pivotText:String,textColor:String,pivotColor:String,trackColor:String,strokeWidth:[Number,String],percentage:{type:[Number,String],required:!0,validator:function(t){return t>=0&&t<=100}},showPivot:{type:Boolean,default:!0}},data:function(){return{pivotWidth:0,progressWidth:0}},mounted:function(){this.resize()},watch:{showPivot:"resize",pivotText:"resize"},methods:{resize:function(){var t=this;this.$nextTick(function(){t.progressWidth=t.$el.offsetWidth,t.pivotWidth=t.$refs.pivot?t.$refs.pivot.offsetWidth:0})}},render:function(){var t=arguments[0],e=this.pivotText,n=this.percentage,i=null!=e?e:n+"%",r=this.showPivot&&i,o=this.inactive?"#cacaca":this.color,a={color:this.textColor,left:(this.progressWidth-this.pivotWidth)*n/100+"px",background:this.pivotColor||o},A={background:o,width:this.progressWidth*n/100+"px"},l={background:this.trackColor,height:Object(s.a)(this.strokeWidth)};return t("div",{class:ks(),style:l},[t("span",{class:ks("portion"),style:A},[r&&t("span",{ref:"pivot",style:a,class:ks("pivot")},[i])])])}}),Us=Object(s.b)("pull-refresh"),Es=Us[0],Ls=Us[1],Os=Us[2],Ps=["pulling","loosing","success"],Hs=Es({mixins:[H],props:{disabled:Boolean,successText:String,pullingText:String,loosingText:String,loadingText:String,pullDistance:[Number,String],value:{type:Boolean,required:!0},successDuration:{type:[Number,String],default:500},animationDuration:{type:[Number,String],default:300},headHeight:{type:[Number,String],default:50}},data:function(){return{status:"normal",distance:0,duration:0}},computed:{touchable:function(){return"loading"!==this.status&&"success"!==this.status&&!this.disabled},headStyle:function(){if(50!==this.headHeight)return{height:this.headHeight+"px"}}},watch:{value:function(t){this.duration=this.animationDuration,t?this.setStatus(+this.headHeight,!0):this.slots("success")||this.successText?this.showSuccessTip():this.setStatus(0,!1)}},mounted:function(){this.bindTouchEvent(this.$refs.track),this.scrollEl=D(this.$el)},methods:{checkPullStart:function(t){this.ceiling=0===U(this.scrollEl),this.ceiling&&(this.duration=0,this.touchStart(t))},onTouchStart:function(t){this.touchable&&this.checkPullStart(t)},onTouchMove:function(t){this.touchable&&(this.ceiling||this.checkPullStart(t),this.touchMove(t),this.ceiling&&this.deltaY>=0&&"vertical"===this.direction&&(y(t),this.setStatus(this.ease(this.deltaY))))},onTouchEnd:function(){var t=this;this.touchable&&this.ceiling&&this.deltaY&&(this.duration=this.animationDuration,"loosing"===this.status?(this.setStatus(+this.headHeight,!0),this.$emit("input",!0),this.$nextTick(function(){t.$emit("refresh")})):this.setStatus(0))},ease:function(t){var e=+(this.pullDistance||this.headHeight);return t>e&&(t=t<2*e?e+(t-e)/2:1.5*e+(t-2*e)/4),Math.round(t)},setStatus:function(t,e){var n;n=e?"loading":0===t?"normal":t<(this.pullDistance||this.headHeight)?"pulling":"loosing",this.distance=t,n!==this.status&&(this.status=n)},genStatus:function(){var t=this.$createElement,e=this.status,n=this.distance,i=this.slots(e,{distance:n});if(i)return i;var r=[],o=this[e+"Text"]||Os(e);return-1!==Ps.indexOf(e)&&r.push(t("div",{class:Ls("text")},[o])),"loading"===e&&r.push(t(ut,{attrs:{size:"16"}},[o])),r},showSuccessTip:function(){var t=this;this.status="success",setTimeout(function(){t.setStatus(0)},this.successDuration)}},render:function(){var t=arguments[0],e={transitionDuration:this.duration+"ms",transform:this.distance?"translate3d(0,"+this.distance+"px, 0)":""};return t("div",{class:Ls()},[t("div",{ref:"track",class:Ls("track"),style:e},[t("div",{class:Ls("head"),style:this.headStyle},[this.genStatus()]),this.slots()])])}}),Ns=Object(s.b)("rate"),Rs=Ns[0],Vs=Ns[1];var zs=Rs({mixins:[H,en],props:{size:[Number,String],color:String,gutter:[Number,String],readonly:Boolean,disabled:Boolean,allowHalf:Boolean,voidColor:String,iconPrefix:String,disabledColor:String,value:{type:Number,default:0},icon:{type:String,default:"star"},voidIcon:{type:String,default:"star-o"},count:{type:[Number,String],default:5},touchable:{type:Boolean,default:!0}},computed:{list:function(){for(var t,e,n,i=[],r=1;r<=this.count;r++)i.push((t=this.value,e=r,n=this.allowHalf,t>=e?"full":t+.5>=e&&n?"half":"void"));return i},sizeWithUnit:function(){return Object(s.a)(this.size)},gutterWithUnit:function(){return Object(s.a)(this.gutter)}},mounted:function(){this.bindTouchEvent(this.$el)},methods:{select:function(t){this.disabled||this.readonly||t===this.value||(this.$emit("input",t),this.$emit("change",t))},onTouchStart:function(t){var e=this;if(!this.readonly&&!this.disabled&&this.touchable){this.touchStart(t);var n=[];this.$refs.items.map(function(t){return t.getBoundingClientRect()}).forEach(function(t,i){e.allowHalf?n.push({score:i+.5,left:t.left},{score:i+1,left:t.left+t.width/2}):n.push({score:i+1,left:t.left})}),this.ranges=n}},onTouchMove:function(t){if(!this.readonly&&!this.disabled&&this.touchable&&(this.touchMove(t),"horizontal"===this.direction)){y(t);var e=t.touches[0].clientX;this.select(this.getScoreByPosition(e))}},getScoreByPosition:function(t){for(var e=this.ranges.length-1;e>0;e--)if(t>this.ranges[e].left)return this.ranges[e].score;return this.allowHalf?.5:1},genStar:function(t,e){var n,i=this,r=this.$createElement,o=this.icon,a=this.color,s=this.count,A=this.voidIcon,l=this.disabled,c=this.voidColor,u=this.disabledColor,h=e+1,d="full"===t,f="void"===t;return this.gutterWithUnit&&h!==+s&&(n={paddingRight:this.gutterWithUnit}),r("div",{ref:"items",refInFor:!0,key:e,attrs:{role:"radio",tabindex:"0","aria-setsize":s,"aria-posinset":h,"aria-checked":String(!f)},style:n,class:Vs("item")},[r(nt,{attrs:{size:this.sizeWithUnit,name:d?o:A,color:l?u:d?a:c,classPrefix:this.iconPrefix,"data-score":h},class:Vs("icon",{disabled:l,full:d}),on:{click:function(){i.select(h)}}}),this.allowHalf&&r(nt,{attrs:{size:this.sizeWithUnit,name:f?A:o,color:l?u:f?c:a,classPrefix:this.iconPrefix,"data-score":h-.5},class:Vs("icon",["half",{disabled:l,full:!f}]),on:{click:function(){i.select(h-.5)}}})])}},render:function(){var t=this;return(0,arguments[0])("div",{class:Vs({readonly:this.readonly,disabled:this.disabled}),attrs:{tabindex:"0",role:"radiogroup"}},[this.list.map(function(e,n){return t.genStar(e,n)})])}}),Ks=Object(s.b)("row"),Gs=Ks[0],Ws=Ks[1],js=Gs({mixins:[Fe("vanRow")],props:{type:String,align:String,justify:String,tag:{type:String,default:"div"},gutter:{type:[Number,String],default:0}},computed:{spaces:function(){var t=Number(this.gutter);if(t){var e=[],n=[[]],i=0;return this.children.forEach(function(t,e){(i+=Number(t.span))>24?(n.push([e]),i-=24):n[n.length-1].push(e)}),n.forEach(function(n){var i=t*(n.length-1)/n.length;n.forEach(function(n,r){if(0===r)e.push({right:i});else{var o=t-e[n-1].right,a=i-o;e.push({left:o,right:a})}})}),e}}},methods:{onClick:function(t){this.$emit("click",t)}},render:function(){var t,e=arguments[0],n=this.align,i=this.justify,r="flex"===this.type;return e(this.tag,{class:Ws((t={flex:r},t["align-"+n]=r&&n,t["justify-"+i]=r&&i,t)),on:{click:this.onClick}},[this.slots()])}}),$s=Object(s.b)("search"),qs=$s[0],Ys=$s[1],Xs=$s[2];function Js(t,e,n,r){var a={attrs:r.data.attrs,on:i({},r.listeners,{keypress:function(t){13===t.keyCode&&(y(t),u(r,"search",e.value)),u(r,"keypress",t)}})},s=c(r);return s.attrs=void 0,t("div",o()([{class:Ys({"show-action":e.showAction}),style:{background:e.background}},s]),[null==n.left?void 0:n.left(),t("div",{class:Ys("content",e.shape)},[function(){if(n.label||e.label)return t("div",{class:Ys("label")},[n.label?n.label():e.label])}(),t(le,o()([{attrs:{type:"search",border:!1,value:e.value,leftIcon:e.leftIcon,rightIcon:e.rightIcon,clearable:e.clearable,clearTrigger:e.clearTrigger},scopedSlots:{"left-icon":n["left-icon"],"right-icon":n["right-icon"]}},a]))]),function(){if(e.showAction)return t("div",{class:Ys("action"),attrs:{role:"button",tabindex:"0"},on:{click:function(){n.action||(u(r,"input",""),u(r,"cancel"))}}},[n.action?n.action():e.actionText||Xs("cancel")])}()])}Js.props={value:String,label:String,rightIcon:String,actionText:String,background:String,showAction:Boolean,clearTrigger:String,shape:{type:String,default:"square"},clearable:{type:Boolean,default:!0},leftIcon:{type:String,default:"search"}};var Zs=qs(Js),tA=["qq","link","weibo","wechat","poster","qrcode","weapp-qrcode","wechat-moments"],eA=Object(s.b)("share-sheet"),nA=eA[0],iA=eA[1],rA=eA[2],oA=nA({props:i({},K,{title:String,duration:String,cancelText:String,description:String,getContainer:[String,Function],options:{type:Array,default:function(){return[]}},overlay:{type:Boolean,default:!0},closeOnPopstate:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!0}}),methods:{onCancel:function(){this.toggle(!1),this.$emit("cancel")},onSelect:function(t,e){this.$emit("select",t,e)},toggle:function(t){this.$emit("input",t)},getIconURL:function(t){return-1!==tA.indexOf(t)?"https://img01.yzcdn.cn/vant/share-sheet-"+t+".png":t},genHeader:function(){var t=this.$createElement,e=this.slots("title")||this.title,n=this.slots("description")||this.description;if(e||n)return t("div",{class:iA("header")},[e&&t("h2",{class:iA("title")},[e]),n&&t("span",{class:iA("description")},[n])])},genOptions:function(t,e){var n=this,i=this.$createElement;return i("div",{class:iA("options",{border:e})},[t.map(function(t,e){return i("div",{attrs:{role:"button",tabindex:"0"},class:[iA("option"),t.className],on:{click:function(){n.onSelect(t,e)}}},[i("img",{attrs:{src:n.getIconURL(t.icon)},class:iA("icon")}),t.name&&i("span",{class:iA("name")},[t.name]),t.description&&i("span",{class:iA("option-description")},[t.description])])})])},genRows:function(){var t=this,e=this.options;return Array.isArray(e[0])?e.map(function(e,n){return t.genOptions(e,0!==n)}):this.genOptions(e)},genCancelText:function(){var t,e=this.$createElement,n=null!=(t=this.cancelText)?t:rA("cancel");if(n)return e("button",{attrs:{type:"button"},class:iA("cancel"),on:{click:this.onCancel}},[n])},onClickOverlay:function(){this.$emit("click-overlay")}},render:function(){return(0,arguments[0])(at,{attrs:{round:!0,value:this.value,position:"bottom",overlay:this.overlay,duration:this.duration,lazyRender:this.lazyRender,lockScroll:this.lockScroll,getContainer:this.getContainer,closeOnPopstate:this.closeOnPopstate,closeOnClickOverlay:this.closeOnClickOverlay,safeAreaInsetBottom:this.safeAreaInsetBottom},class:iA(),on:{input:this.toggle,"click-overlay":this.onClickOverlay}},[this.genHeader(),this.genRows(),this.genCancelText()])}}),aA=Object(s.b)("sidebar"),sA=aA[0],AA=aA[1],lA=sA({mixins:[Fe("vanSidebar")],model:{prop:"activeKey"},props:{activeKey:{type:[Number,String],default:0}},data:function(){return{index:+this.activeKey}},watch:{activeKey:function(){this.setIndex(+this.activeKey)}},methods:{setIndex:function(t){t!==this.index&&(this.index=t,this.$emit("change",t))}},render:function(){return(0,arguments[0])("div",{class:AA()},[this.slots()])}}),cA=Object(s.b)("sidebar-item"),uA=cA[0],hA=cA[1],dA=uA({mixins:[Qe("vanSidebar")],props:i({},Xt,{dot:Boolean,info:[Number,String],badge:[Number,String],title:String,disabled:Boolean}),computed:{select:function(){return this.index===+this.parent.activeKey}},methods:{onClick:function(){this.disabled||(this.$emit("click",this.index),this.parent.$emit("input",this.index),this.parent.setIndex(this.index),qt(this.$router,this))}},render:function(){var t,e,n=arguments[0];return n("a",{class:hA({select:this.select,disabled:this.disabled}),on:{click:this.onClick}},[n("div",{class:hA("text")},[null!=(t=this.slots("title"))?t:this.title,n(Y,{attrs:{dot:this.dot,info:null!=(e=this.badge)?e:this.info},class:hA("info")})])])}}),fA=Object(s.b)("skeleton"),pA=fA[0],gA=fA[1],mA="100%",vA="60%";function yA(t,e,n,i){if(!e.loading)return n.default&&n.default();return t("div",o()([{class:gA({animate:e.animate,round:e.round})},c(i)]),[function(){if(e.avatar){var n=Object(s.a)(e.avatarSize);return t("div",{class:gA("avatar",e.avatarShape),style:{width:n,height:n}})}}(),t("div",{class:gA("content")},[function(){if(e.title)return t("h3",{class:gA("title"),style:{width:Object(s.a)(e.titleWidth)}})}(),function(){for(var n,i=[],r=e.rowWidth,o=0;o<e.row;o++)i.push(t("div",{class:gA("row"),style:{width:Object(s.a)((n=o,r===mA&&n===+e.row-1?vA:Array.isArray(r)?r[n]:r))}}));return i}()])])}yA.props={title:Boolean,round:Boolean,avatar:Boolean,titleWidth:[Number,String],avatarSize:[Number,String],row:{type:[Number,String],default:0},loading:{type:Boolean,default:!0},animate:{type:Boolean,default:!0},avatarShape:{type:String,default:"round"},rowWidth:{type:[Number,String,Array],default:mA}};var wA=pA(yA),xA={QUOTA_LIMIT:0,STOCK_LIMIT:1},BA={LIMIT_TYPE:xA,UNSELECTED_SKU_VALUE_ID:""},bA=function(t){var e={};return t.forEach(function(t){e[t.k_s]=t.v}),e},CA=function(t,e){var n=Object.keys(e).filter(function(t){return""!==e[t]});return t.length===n.length},_A=function(t,e){return t.filter(function(t){return Object.keys(e).every(function(n){return String(t[n])===String(e[n])})})[0]},SA=function(t,e){var n=bA(t);return Object.keys(e).reduce(function(t,i){var r=n[i]||[],o=e[i];if(""!==o&&r.length>0){var a=r.filter(function(t){return t.id===o})[0];a&&t.push(a)}return t},[])},IA=function(t,e,n){var r,o=n.key,a=n.valueId,s=i({},e,((r={})[o]=a,r)),A=Object.keys(s).filter(function(t){return""!==s[t]});return t.filter(function(t){return A.every(function(e){return String(s[e])===String(t[e])})}).reduce(function(t,e){return t+=e.stock_num},0)>0},TA=function(t,e){var n=function(t){var e={};return t.forEach(function(t){var n={};t.v.forEach(function(t){n[t.id]=t}),e[t.k_id]=n}),e}(t);return Object.keys(e).reduce(function(t,r){return e[r].forEach(function(e){t.push(i({},n[r][e]))}),t},[])},MA=function(t,e){var n=[];return(t||[]).forEach(function(t){if(e[t.k_id]&&e[t.k_id].length>0){var r=[];t.v.forEach(function(n){e[t.k_id].indexOf(n.id)>-1&&r.push(i({},n))}),n.push(i({},t,{v:r}))}}),n},QA={normalizeSkuTree:bA,getSkuComb:_A,getSelectedSkuValues:SA,isAllSelected:CA,isSkuChoosable:IA,getSelectedPropValues:TA,getSelectedProperties:MA},FA=Object(s.b)("sku-header"),kA=FA[0],DA=FA[1];function UA(t,e,n,r){var a,s=e.sku,A=e.goods,l=e.skuEventBus,u=e.selectedSku,h=e.showHeaderImage,d=void 0===h||h,f=function(t,e){var n;return t.tree.some(function(t){var r=e[t.k_s];if(r&&t.v){var o=t.v.filter(function(t){return t.id===r})[0]||{},a=o.previewImgUrl||o.imgUrl||o.img_url;if(a)return n=i({},o,{ks:t.k_s,imgUrl:a}),!0}return!1}),n}(s,u),p=f?f.imgUrl:A.picture;return t("div",o()([{class:[DA(),bt]},c(r)]),[d&&t(si,{attrs:{fit:"cover",src:p},class:DA("img-wrap"),on:{click:function(){l.$emit("sku:previewImage",f)}}},[null==(a=n["sku-header-image-extra"])?void 0:a.call(n)]),t("div",{class:DA("goods-info")},[null==n.default?void 0:n.default()])])}UA.props={sku:Object,goods:Object,skuEventBus:Object,selectedSku:Object,showHeaderImage:Boolean};var EA=kA(UA),LA=Object(s.b)("sku-header-item"),OA=LA[0],PA=LA[1];var HA=OA(function(t,e,n,i){return t("div",o()([{class:PA()},c(i)]),[n.default&&n.default()])}),NA=Object(s.b)("sku-row"),RA=NA[0],VA=NA[1],zA=NA[2],KA=RA({mixins:[Fe("vanSkuRows"),V(function(t){this.scrollable&&this.$refs.scroller&&t(this.$refs.scroller,"scroll",this.onScroll)})],props:{skuRow:Object},data:function(){return{progress:0}},computed:{scrollable:function(){return this.skuRow.largeImageMode&&this.skuRow.v.length>6}},methods:{onScroll:function(){var t=this.$refs,e=t.scroller,n=t.row.offsetWidth-e.offsetWidth;this.progress=e.scrollLeft/n},genTitle:function(){var t=this.$createElement;return t("div",{class:VA("title")},[this.skuRow.k,this.skuRow.is_multiple&&t("span",{class:VA("title-multiple")},["锛�",zA("multiple"),"锛�"])])},genIndicator:function(){var t=this.$createElement;if(this.scrollable){var e={transform:"translate3d("+20*this.progress+"px, 0, 0)"};return t("div",{class:VA("indicator-wrapper")},[t("div",{class:VA("indicator")},[t("div",{class:VA("indicator-slider"),style:e})])])}},genContent:function(){var t=this.$createElement,e=this.slots();if(this.skuRow.largeImageMode){var n=[],i=[];return e.forEach(function(t,e){(Math.floor(e/3)%2==0?n:i).push(t)}),t("div",{class:VA("scroller"),ref:"scroller"},[t("div",{class:VA("row"),ref:"row"},[n]),i.length?t("div",{class:VA("row")},[i]):null])}return e},centerItem:function(t){if(this.skuRow.largeImageMode&&t){var e=this.children,n=void 0===e?[]:e,i=this.$refs,r=i.scroller,o=i.row,a=n.find(function(e){return+e.skuValue.id==+t});if(r&&o&&a&&a.$el){var s=a.$el,A=s.offsetLeft-(r.offsetWidth-s.offsetWidth)/2;r.scrollLeft=A}}}},render:function(){return(0,arguments[0])("div",{class:[VA(),bt]},[this.genTitle(),this.genContent(),this.genIndicator()])}}),GA=(0,Object(s.b)("sku-row-item")[0])({mixins:[Qe("vanSkuRows")],props:{lazyLoad:Boolean,skuValue:Object,skuKeyStr:String,skuEventBus:Object,selectedSku:Object,largeImageMode:Boolean,disableSoldoutSku:Boolean,skuList:{type:Array,default:function(){return[]}}},computed:{imgUrl:function(){var t=this.skuValue.imgUrl||this.skuValue.img_url;return this.largeImageMode?t||"https://img01.yzcdn.cn/upload_files/2020/06/24/FmKWDg0bN9rMcTp9ne8MXiQWGtLn.png":t},choosable:function(){return!this.disableSoldoutSku||IA(this.skuList,this.selectedSku,{key:this.skuKeyStr,valueId:this.skuValue.id})}},methods:{onSelect:function(){this.choosable&&this.skuEventBus.$emit("sku:select",i({},this.skuValue,{skuKeyStr:this.skuKeyStr}))},onPreviewImg:function(t){t.stopPropagation();var e=this.skuValue,n=this.skuKeyStr;this.skuEventBus.$emit("sku:previewImage",i({},e,{ks:n,imgUrl:e.imgUrl||e.img_url}))},genImage:function(t){var e=this.$createElement;if(this.imgUrl)return e(si,{attrs:{fit:"cover",src:this.imgUrl,lazyLoad:this.lazyLoad},class:t+"-img"})}},render:function(){var t=arguments[0],e=this.skuValue.id===this.selectedSku[this.skuKeyStr],n=this.largeImageMode?VA("image-item"):VA("item");return t("span",{class:[n,e?n+"--active":"",this.choosable?"":n+"--disabled"],on:{click:this.onSelect}},[this.genImage(n),t("div",{class:n+"-name"},[this.largeImageMode?t("span",{class:{"van-multi-ellipsis--l2":this.largeImageMode}},[this.skuValue.name]):this.skuValue.name]),this.largeImageMode&&t(nt,{attrs:{name:"enlarge"},class:n+"-img-icon",on:{click:this.onPreviewImg}})])}}),WA=(0,Object(s.b)("sku-row-prop-item")[0])({props:{skuValue:Object,skuKeyStr:String,skuEventBus:Object,selectedProp:Object,multiple:Boolean},computed:{choosed:function(){var t=this.selectedProp,e=this.skuKeyStr,n=this.skuValue;return!(!t||!t[e])&&t[e].indexOf(n.id)>-1}},methods:{onSelect:function(){this.skuEventBus.$emit("sku:propSelect",i({},this.skuValue,{skuKeyStr:this.skuKeyStr,multiple:this.multiple}))}},render:function(){var t=arguments[0];return t("span",{class:["van-sku-row__item",{"van-sku-row__item--active":this.choosed}],on:{click:this.onSelect}},[t("span",{class:"van-sku-row__item-name"},[this.skuValue.name])])}}),jA=Object(s.b)("stepper"),$A=jA[0],qA=jA[1];function YA(t,e){return String(t)===String(e)}var XA=$A({mixins:[en],props:{value:null,theme:String,integer:Boolean,disabled:Boolean,allowEmpty:Boolean,inputWidth:[Number,String],buttonSize:[Number,String],asyncChange:Boolean,placeholder:String,disablePlus:Boolean,disableMinus:Boolean,disableInput:Boolean,decimalLength:[Number,String],name:{type:[Number,String],default:""},min:{type:[Number,String],default:1},max:{type:[Number,String],default:1/0},step:{type:[Number,String],default:1},defaultValue:{type:[Number,String],default:1},showPlus:{type:Boolean,default:!0},showMinus:{type:Boolean,default:!0},showInput:{type:Boolean,default:!0},longPress:{type:Boolean,default:!0}},data:function(){var t,e=null!=(t=this.value)?t:this.defaultValue,n=this.format(e);return YA(n,this.value)||this.$emit("input",n),{currentValue:n}},computed:{minusDisabled:function(){return this.disabled||this.disableMinus||this.currentValue<=+this.min},plusDisabled:function(){return this.disabled||this.disablePlus||this.currentValue>=+this.max},inputStyle:function(){var t={};return this.inputWidth&&(t.width=Object(s.a)(this.inputWidth)),this.buttonSize&&(t.height=Object(s.a)(this.buttonSize)),t},buttonStyle:function(){if(this.buttonSize){var t=Object(s.a)(this.buttonSize);return{width:t,height:t}}}},watch:{max:"check",min:"check",integer:"check",decimalLength:"check",value:function(t){YA(t,this.currentValue)||(this.currentValue=this.format(t))},currentValue:function(t){this.$emit("input",t),this.$emit("change",t,{name:this.name})}},methods:{check:function(){var t=this.format(this.currentValue);YA(t,this.currentValue)||(this.currentValue=t)},formatNumber:function(t){return Qt(String(t),!this.integer)},format:function(t){return this.allowEmpty&&""===t?t:(t=""===(t=this.formatNumber(t))?0:+t,t=Object(Ln.a)(t)?this.min:t,t=Math.max(Math.min(this.max,t),this.min),Object(s.e)(this.decimalLength)&&(t=t.toFixed(this.decimalLength)),t)},onInput:function(t){var e=t.target.value,n=this.formatNumber(e);if(Object(s.e)(this.decimalLength)&&-1!==n.indexOf(".")){var i=n.split(".");n=i[0]+"."+i[1].slice(0,this.decimalLength)}YA(e,n)||(t.target.value=n),n===String(+n)&&(n=+n),this.emitChange(n)},emitChange:function(t){this.asyncChange?(this.$emit("input",t),this.$emit("change",t,{name:this.name})):this.currentValue=t},onChange:function(){var t=this.type;if(this[t+"Disabled"])this.$emit("overlimit",t);else{var e="minus"===t?-this.step:+this.step,n=this.format(Ft(+this.currentValue,e));this.emitChange(n),this.$emit(t)}},onFocus:function(t){this.disableInput&&this.$refs.input?this.$refs.input.blur():this.$emit("focus",t)},onBlur:function(t){var e=this.format(t.target.value);t.target.value=e,this.emitChange(e),this.$emit("blur",t),oe()},longPressStep:function(){var t=this;this.longPressTimer=setTimeout(function(){t.onChange(),t.longPressStep(t.type)},200)},onTouchStart:function(){var t=this;this.longPress&&(clearTimeout(this.longPressTimer),this.isLongPress=!1,this.longPressTimer=setTimeout(function(){t.isLongPress=!0,t.onChange(),t.longPressStep()},600))},onTouchEnd:function(t){this.longPress&&(clearTimeout(this.longPressTimer),this.isLongPress&&y(t))},onMousedown:function(t){this.disableInput&&t.preventDefault()}},render:function(){var t=this,e=arguments[0],n=function(e){return{on:{click:function(n){n.preventDefault(),t.type=e,t.onChange()},touchstart:function(){t.type=e,t.onTouchStart()},touchend:t.onTouchEnd,touchcancel:t.onTouchEnd}}};return e("div",{class:qA([this.theme])},[e("button",o()([{directives:[{name:"show",value:this.showMinus}],attrs:{type:"button"},style:this.buttonStyle,class:qA("minus",{disabled:this.minusDisabled})},n("minus")])),e("input",{directives:[{name:"show",value:this.showInput}],ref:"input",attrs:{type:this.integer?"tel":"text",role:"spinbutton",disabled:this.disabled,readonly:this.disableInput,inputmode:this.integer?"numeric":"decimal",placeholder:this.placeholder,"aria-valuemax":this.max,"aria-valuemin":this.min,"aria-valuenow":this.currentValue},class:qA("input"),domProps:{value:this.currentValue},style:this.inputStyle,on:{input:this.onInput,focus:this.onFocus,blur:this.onBlur,mousedown:this.onMousedown}}),e("button",o()([{directives:[{name:"show",value:this.showPlus}],attrs:{type:"button"},style:this.buttonStyle,class:qA("plus",{disabled:this.plusDisabled})},n("plus")]))])}}),JA=Object(s.b)("sku-stepper"),ZA=JA[0],tl=JA[2],el=xA.QUOTA_LIMIT,nl=xA.STOCK_LIMIT,il=ZA({props:{stock:Number,skuEventBus:Object,skuStockNum:Number,selectedNum:Number,stepperTitle:String,disableStepperInput:Boolean,customStepperConfig:Object,hideQuotaText:Boolean,quota:{type:Number,default:0},quotaUsed:{type:Number,default:0},startSaleNum:{type:Number,default:1}},data:function(){return{currentNum:this.selectedNum,limitType:nl}},watch:{currentNum:function(t){var e=parseInt(t,10);e>=this.stepperMinLimit&&e<=this.stepperLimit&&this.skuEventBus.$emit("sku:numChange",e)},stepperLimit:function(t){t<this.currentNum&&this.stepperMinLimit<=t&&(this.currentNum=t),this.checkState(this.stepperMinLimit,t)},stepperMinLimit:function(t){(t>this.currentNum||t>this.stepperLimit)&&(this.currentNum=t),this.checkState(t,this.stepperLimit)}},computed:{stepperLimit:function(){var t,e=this.quota-this.quotaUsed;return this.quota>0&&e<=this.stock?(t=e<0?0:e,this.limitType=el):(t=this.stock,this.limitType=nl),t},stepperMinLimit:function(){return this.startSaleNum<1?1:this.startSaleNum},quotaText:function(){var t=this.customStepperConfig,e=t.quotaText;if(t.hideQuotaText)return"";var n="";if(e)n=e;else{var i=[];this.startSaleNum>1&&i.push(tl("quotaStart",this.startSaleNum)),this.quota>0&&i.push(tl("quotaLimit",this.quota)),n=i.join(tl("comma"))}return n}},created:function(){this.checkState(this.stepperMinLimit,this.stepperLimit)},methods:{setCurrentNum:function(t){this.currentNum=t,this.checkState(this.stepperMinLimit,this.stepperLimit)},onOverLimit:function(t){this.skuEventBus.$emit("sku:overLimit",{action:t,limitType:this.limitType,quota:this.quota,quotaUsed:this.quotaUsed,startSaleNum:this.startSaleNum})},onChange:function(t){var e=parseInt(t,10),n=this.customStepperConfig.handleStepperChange;n&&n(e),this.$emit("change",e)},checkState:function(t,e){this.currentNum<t||t>e?this.currentNum=t:this.currentNum>e&&(this.currentNum=e),this.skuEventBus.$emit("sku:stepperState",{valid:t<=e,min:t,max:e,limitType:this.limitType,quota:this.quota,quotaUsed:this.quotaUsed,startSaleNum:this.startSaleNum})}},render:function(){var t=this,e=arguments[0];return e("div",{class:"van-sku-stepper-stock"},[e("div",{class:"van-sku__stepper-title"},[this.stepperTitle||tl("num")]),e(XA,{attrs:{integer:!0,min:this.stepperMinLimit,max:this.stepperLimit,disableInput:this.disableStepperInput},class:"van-sku__stepper",on:{overlimit:this.onOverLimit,change:this.onChange},model:{value:t.currentNum,callback:function(e){t.currentNum=e}}}),!this.hideQuotaText&&this.quotaText&&e("span",{class:"van-sku__stepper-quota"},["(",this.quotaText,")"])])}});function rl(t){return/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/.test(t.trim())}function ol(t){return Array.isArray(t)?t:[t]}function al(t,e){return new Promise(function(n){if("file"!==e){var i=new FileReader;i.onload=function(t){n(t.target.result)},"dataUrl"===e?i.readAsDataURL(t):"text"===e&&i.readAsText(t)}else n(null)})}function sl(t,e){return ol(t).some(function(t){return!!t&&(Object(s.g)(e)?e(t):t.size>e)})}var Al=/\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i;function ll(t){return!!t.isImage||(t.file&&t.file.type?0===t.file.type.indexOf("image"):t.url?(e=t.url,Al.test(e)):!!t.content&&0===t.content.indexOf("data:image"));var e}var cl=Object(s.b)("uploader"),ul=cl[0],hl=cl[1],dl=ul({inheritAttrs:!1,mixins:[en],model:{prop:"fileList"},props:{disabled:Boolean,readonly:Boolean,lazyLoad:Boolean,uploadText:String,afterRead:Function,beforeRead:Function,beforeDelete:Function,previewSize:[Number,String],previewOptions:Object,name:{type:[Number,String],default:""},accept:{type:String,default:"image/*"},fileList:{type:Array,default:function(){return[]}},maxSize:{type:[Number,String,Function],default:Number.MAX_VALUE},maxCount:{type:[Number,String],default:Number.MAX_VALUE},deletable:{type:Boolean,default:!0},showUpload:{type:Boolean,default:!0},previewImage:{type:Boolean,default:!0},previewFullImage:{type:Boolean,default:!0},imageFit:{type:String,default:"cover"},resultType:{type:String,default:"dataUrl"},uploadIcon:{type:String,default:"photograph"}},computed:{previewSizeWithUnit:function(){return Object(s.a)(this.previewSize)},value:function(){return this.fileList}},created:function(){this.urls=[]},beforeDestroy:function(){this.urls.forEach(function(t){return URL.revokeObjectURL(t)})},methods:{getDetail:function(t){return void 0===t&&(t=this.fileList.length),{name:this.name,index:t}},onChange:function(t){var e=this,n=t.target.files;if(!this.disabled&&n.length){if(n=1===n.length?n[0]:[].slice.call(n),this.beforeRead){var i=this.beforeRead(n,this.getDetail());if(!i)return void this.resetInput();if(Object(s.i)(i))return void i.then(function(t){t?e.readFile(t):e.readFile(n)}).catch(this.resetInput)}this.readFile(n)}},readFile:function(t){var e=this,n=sl(t,this.maxSize);if(Array.isArray(t)){var i=this.maxCount-this.fileList.length;t.length>i&&(t=t.slice(0,i)),Promise.all(t.map(function(t){return al(t,e.resultType)})).then(function(i){var r=t.map(function(t,e){var n={file:t,status:"",message:""};return i[e]&&(n.content=i[e]),n});e.onAfterRead(r,n)})}else al(t,this.resultType).then(function(i){var r={file:t,status:"",message:""};i&&(r.content=i),e.onAfterRead(r,n)})},onAfterRead:function(t,e){var n=this;this.resetInput();var i=t;if(e){var r=t;Array.isArray(t)?(r=[],i=[],t.forEach(function(t){t.file&&(sl(t.file,n.maxSize)?r.push(t):i.push(t))})):i=null,this.$emit("oversize",r,this.getDetail())}(Array.isArray(i)?Boolean(i.length):Boolean(i))&&(this.$emit("input",[].concat(this.fileList,ol(i))),this.afterRead&&this.afterRead(i,this.getDetail()))},onDelete:function(t,e){var n,i=this,r=null!=(n=t.beforeDelete)?n:this.beforeDelete;if(r){var o=r(t,this.getDetail(e));if(!o)return;if(Object(s.i)(o))return void o.then(function(){i.deleteFile(t,e)}).catch(s.k)}this.deleteFile(t,e)},deleteFile:function(t,e){var n=this.fileList.slice(0);n.splice(e,1),this.$emit("input",n),this.$emit("delete",t,this.getDetail(e))},resetInput:function(){this.$refs.input&&(this.$refs.input.value="")},onClickUpload:function(t){this.$emit("click-upload",t)},onPreviewImage:function(t){var e=this;if(this.previewFullImage){var n=this.fileList.filter(function(t){return ll(t)}),r=n.map(function(t){return t.file&&!t.url&&"failed"!==t.status&&(t.url=URL.createObjectURL(t.file),e.urls.push(t.url)),t.url});this.imagePreview=ya(i({images:r,startPosition:n.indexOf(t),onClose:function(){e.$emit("close-preview")}},this.previewOptions))}},closeImagePreview:function(){this.imagePreview&&this.imagePreview.close()},chooseFile:function(){this.disabled||this.$refs.input&&this.$refs.input.click()},genPreviewMask:function(t){var e=this.$createElement,n=t.status,i=t.message;if("uploading"===n||"failed"===n){var r="failed"===n?e(nt,{attrs:{name:"close"},class:hl("mask-icon")}):e(ut,{class:hl("loading")}),o=Object(s.e)(i)&&""!==i;return e("div",{class:hl("mask")},[r,o&&e("div",{class:hl("mask-message")},[i])])}},genPreviewItem:function(t,e){var n,r,o,a=this,s=this.$createElement,A=null!=(n=t.deletable)?n:this.deletable,l="uploading"!==t.status&&A&&s("div",{class:hl("preview-delete"),on:{click:function(n){n.stopPropagation(),a.onDelete(t,e)}}},[s(nt,{attrs:{name:"cross"},class:hl("preview-delete-icon")})]),c=this.slots("preview-cover",i({index:e},t)),u=c&&s("div",{class:hl("preview-cover")},[c]),h=null!=(r=t.previewSize)?r:this.previewSize,d=null!=(o=t.imageFit)?o:this.imageFit,f=ll(t)?s(si,{attrs:{fit:d,src:t.content||t.url,width:h,height:h,lazyLoad:this.lazyLoad},class:hl("preview-image"),on:{click:function(){a.onPreviewImage(t)}}},[u]):s("div",{class:hl("file"),style:{width:this.previewSizeWithUnit,height:this.previewSizeWithUnit}},[s(nt,{class:hl("file-icon"),attrs:{name:"description"}}),s("div",{class:[hl("file-name"),"van-ellipsis"]},[t.file?t.file.name:t.url]),u]);return s("div",{class:hl("preview"),on:{click:function(){a.$emit("click-preview",t,a.getDetail(e))}}},[f,this.genPreviewMask(t),l])},genPreviewList:function(){if(this.previewImage)return this.fileList.map(this.genPreviewItem)},genUpload:function(){var t=this.$createElement;if(!(this.fileList.length>=this.maxCount)&&this.showUpload){var e,n=this.slots(),r=this.readonly?null:t("input",{attrs:i({},this.$attrs,{type:"file",accept:this.accept,disabled:this.disabled}),ref:"input",class:hl("input"),on:{change:this.onChange}});if(n)return t("div",{class:hl("input-wrapper"),key:"input-wrapper",on:{click:this.onClickUpload}},[n,r]);if(this.previewSize){var o=this.previewSizeWithUnit;e={width:o,height:o}}return t("div",{class:hl("upload",{readonly:this.readonly}),style:e,on:{click:this.onClickUpload}},[t(nt,{attrs:{name:this.uploadIcon},class:hl("upload-icon")}),this.uploadText&&t("span",{class:hl("upload-text")},[this.uploadText]),r])}}},render:function(){var t=arguments[0];return t("div",{class:hl()},[t("div",{class:hl("wrapper",{disabled:this.disabled})},[this.genPreviewList(),this.genUpload()])])}}),fl=Object(s.b)("sku-img-uploader"),pl=fl[0],gl=fl[2],ml=pl({props:{value:String,uploadImg:Function,customUpload:Function,maxSize:{type:Number,default:6}},data:function(){return{fileList:[]}},watch:{value:function(t){this.fileList=t?[{url:t,isImage:!0}]:[]}},methods:{afterReadFile:function(t){var e=this;t.status="uploading",t.message=gl("uploading"),this.uploadImg(t.file,t.content).then(function(n){t.status="done",e.$emit("input",n)}).catch(function(){t.status="failed",t.message=gl("fail")})},onOversize:function(){this.$toast(gl("oversize",this.maxSize))},onDelete:function(){this.$emit("input","")},onClickUpload:function(){var t=this;this.customUpload&&this.customUpload().then(function(e){t.fileList.push({url:e}),t.$emit("input",e)})}},render:function(){var t=this;return(0,arguments[0])(dl,{attrs:{maxCount:1,readonly:!!this.customUpload,maxSize:1024*this.maxSize*1024,afterRead:this.afterReadFile},on:{oversize:this.onOversize,delete:this.onDelete,"click-upload":this.onClickUpload},model:{value:t.fileList,callback:function(e){t.fileList=e}}})}});var vl=Object(s.b)("sku-datetime-field"),yl=vl[0],wl=vl[2],xl=yl({props:{value:String,label:String,required:Boolean,placeholder:String,type:{type:String,default:"date"}},data:function(){return{showDatePicker:!1,currentDate:"time"===this.type?"":new Date,minDate:new Date((new Date).getFullYear()-60,0,1)}},watch:{value:function(t){switch(this.type){case"time":this.currentDate=t;break;case"date":case"datetime":this.currentDate=((e=t)?new Date(e.replace(/-/g,"/")):null)||new Date}var e}},computed:{title:function(){return wl("title."+this.type)}},methods:{onClick:function(){this.showDatePicker=!0},onConfirm:function(t){var e=t;"time"!==this.type&&(e=function(t,e){if(void 0===e&&(e="date"),!t)return"";var n=t.getFullYear(),i=t.getMonth()+1,r=t.getDate(),o=n+"-"+Object(Ur.b)(i)+"-"+Object(Ur.b)(r);if("datetime"===e){var a=t.getHours(),s=t.getMinutes();o+=" "+Object(Ur.b)(a)+":"+Object(Ur.b)(s)}return o}(t,this.type)),this.$emit("input",e),this.showDatePicker=!1},onCancel:function(){this.showDatePicker=!1},formatter:function(t,e){return""+e+wl("format."+t)}},render:function(){var t=this,e=arguments[0];return e(le,{attrs:{readonly:!0,"is-link":!0,center:!0,value:this.value,label:this.label,required:this.required,placeholder:this.placeholder},on:{click:this.onClick}},[e(at,{attrs:{round:!0,position:"bottom",getContainer:"body"},slot:"extra",model:{value:t.showDatePicker,callback:function(e){t.showDatePicker=e}}},[e(vo,{attrs:{type:this.type,title:this.title,value:this.currentDate,minDate:this.minDate,formatter:this.formatter},on:{cancel:this.onCancel,confirm:this.onConfirm}})])])}}),Bl=Object(s.b)("sku-messages"),bl=Bl[0],Cl=Bl[1],_l=Bl[2],Sl=bl({props:{messageConfig:Object,goodsId:[Number,String],messages:{type:Array,default:function(){return[]}}},data:function(){return{messageValues:this.resetMessageValues(this.messages)}},watch:{messages:function(t){this.messageValues=this.resetMessageValues(t)}},methods:{resetMessageValues:function(t){var e=this.messageConfig.initialMessages,n=void 0===e?{}:e;return(t||[]).map(function(t){return{value:n[t.name]||""}})},getType:function(t){return 1==+t.multiple?"textarea":"id_no"===t.type?"text":t.datetime>0?"datetime":t.type},getMessages:function(){var t={};return this.messageValues.forEach(function(e,n){t["message_"+n]=e.value}),t},getCartMessages:function(){var t=this,e={};return this.messageValues.forEach(function(n,i){var r=t.messages[i];e[r.name]=n.value}),e},getPlaceholder:function(t){var e=1==+t.multiple?"textarea":t.type,n=this.messageConfig.placeholderMap||{};return t.placeholder||n[e]||_l("placeholder."+e)},validateMessages:function(){for(var t=this.messageValues,e=0;e<t.length;e++){var n=t[e].value,i=this.messages[e];if(""===n){if("1"===String(i.required))return _l("image"===i.type?"upload":"fill")+i.name}else{if("tel"===i.type&&!Object(Ln.b)(n))return _l("invalid.tel");if("mobile"===i.type&&!/^\d{6,20}$/.test(n))return _l("invalid.mobile");if("email"===i.type&&!rl(n))return _l("invalid.email");if("id_no"===i.type&&(n.length<15||n.length>18))return _l("invalid.id_no")}}},getFormatter:function(t){return function(e){return"mobile"===t.type||"tel"===t.type?e.replace(/[^\d.]/g,""):e}},getExtraDesc:function(t){var e=this.$createElement,n=t.extraDesc;if(n)return e("div",{class:Cl("extra-message")},[n])},genMessage:function(t,e){var n=this,i=this.$createElement;return"image"===t.type?i(ie,{key:this.goodsId+"-"+e,attrs:{title:t.name,required:"1"===String(t.required),valueClass:Cl("image-cell-value")},class:Cl("image-cell")},[i(ml,{attrs:{maxSize:this.messageConfig.uploadMaxSize,uploadImg:this.messageConfig.uploadImg,customUpload:this.messageConfig.customUpload},model:{value:n.messageValues[e].value,callback:function(t){n.$set(n.messageValues[e],"value",t)}}}),i("div",{class:Cl("image-cell-label")},[_l("imageLabel")])]):["date","time"].indexOf(t.type)>-1?i(xl,{attrs:{label:t.name,required:"1"===String(t.required),placeholder:this.getPlaceholder(t),type:this.getType(t)},key:this.goodsId+"-"+e,model:{value:n.messageValues[e].value,callback:function(t){n.$set(n.messageValues[e],"value",t)}}}):i("div",{class:Cl("cell-block")},[i(le,{attrs:{maxlength:"200",center:!t.multiple,label:t.name,required:"1"===String(t.required),placeholder:this.getPlaceholder(t),type:this.getType(t),formatter:this.getFormatter(t),border:!1},key:this.goodsId+"-"+e,model:{value:n.messageValues[e].value,callback:function(t){n.$set(n.messageValues[e],"value",t)}}}),this.getExtraDesc(t)])}},render:function(){return(0,arguments[0])("div",{class:Cl()},[this.messages.map(this.genMessage)])}}),Il=Object(s.b)("sku-actions"),Tl=Il[0],Ml=Il[1],Ql=Il[2];function Fl(t,e,n,i){var r=function(t){return function(){e.skuEventBus.$emit(t)}};return t("div",o()([{class:Ml()},c(i)]),[e.showAddCartBtn&&t(Te,{attrs:{size:"large",type:"warning",text:e.addCartText||Ql("addCart")},on:{click:r("sku:addCart")}}),t(Te,{attrs:{size:"large",type:"danger",text:e.buyText||Ql("buy")},on:{click:r("sku:buy")}})])}Fl.props={buyText:String,addCartText:String,skuEventBus:Object,showAddCartBtn:Boolean};var kl=Tl(Fl),Dl=Object(s.b)("sku"),Ul=Dl[0],El=Dl[1],Ll=Dl[2],Ol=xA.QUOTA_LIMIT,Pl=Ul({props:{sku:Object,goods:Object,value:Boolean,buyText:String,goodsId:[Number,String],priceTag:String,lazyLoad:Boolean,hideStock:Boolean,properties:Array,addCartText:String,stepperTitle:String,getContainer:[String,Function],hideQuotaText:Boolean,hideSelectedText:Boolean,resetStepperOnHide:Boolean,customSkuValidator:Function,disableStepperInput:Boolean,resetSelectedSkuOnHide:Boolean,quota:{type:Number,default:0},quotaUsed:{type:Number,default:0},startSaleNum:{type:Number,default:1},initialSku:{type:Object,default:function(){return{}}},stockThreshold:{type:Number,default:50},showSoldoutSku:{type:Boolean,default:!0},showAddCartBtn:{type:Boolean,default:!0},disableSoldoutSku:{type:Boolean,default:!0},customStepperConfig:{type:Object,default:function(){return{}}},showHeaderImage:{type:Boolean,default:!0},previewOnClickImage:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!0},bodyOffsetTop:{type:Number,default:200},messageConfig:{type:Object,default:function(){return{initialMessages:{},placeholderMap:{},uploadImg:function(){return Promise.resolve()},uploadMaxSize:5}}}},data:function(){return{selectedSku:{},selectedProp:{},selectedNum:1,show:this.value}},watch:{show:function(t){this.$emit("input",t),t||(this.$emit("sku-close",{selectedSkuValues:this.selectedSkuValues,selectedNum:this.selectedNum,selectedSkuComb:this.selectedSkuComb}),this.resetStepperOnHide&&this.resetStepper(),this.resetSelectedSkuOnHide&&this.resetSelectedSku())},value:function(t){this.show=t},skuTree:"resetSelectedSku",initialSku:function(){this.resetStepper(),this.resetSelectedSku()}},computed:{skuGroupClass:function(){return["van-sku-group-container",{"van-sku-group-container--hide-soldout":!this.showSoldoutSku}]},bodyStyle:function(){if(!this.$isServer)return{maxHeight:window.innerHeight-this.bodyOffsetTop+"px"}},isSkuCombSelected:function(){var t=this;return!(this.hasSku&&!CA(this.skuTree,this.selectedSku))&&!this.propList.filter(function(t){return!1!==t.is_necessary}).some(function(e){return 0===(t.selectedProp[e.k_id]||[]).length})},isSkuEmpty:function(){return 0===Object.keys(this.sku).length},hasSku:function(){return!this.sku.none_sku},hasSkuOrAttr:function(){return this.hasSku||this.propList.length>0},selectedSkuComb:function(){var t=null;return this.isSkuCombSelected&&(t=this.hasSku?_A(this.skuList,this.selectedSku):{id:this.sku.collection_id,price:Math.round(100*this.sku.price),stock_num:this.sku.stock_num})&&(t.properties=MA(this.propList,this.selectedProp),t.property_price=this.selectedPropValues.reduce(function(t,e){return t+(e.price||0)},0)),t},selectedSkuValues:function(){return SA(this.skuTree,this.selectedSku)},selectedPropValues:function(){return TA(this.propList,this.selectedProp)},price:function(){return this.selectedSkuComb?((this.selectedSkuComb.price+this.selectedSkuComb.property_price)/100).toFixed(2):this.sku.price},originPrice:function(){return this.selectedSkuComb&&this.selectedSkuComb.origin_price?((this.selectedSkuComb.origin_price+this.selectedSkuComb.property_price)/100).toFixed(2):this.sku.origin_price},skuTree:function(){return this.sku.tree||[]},skuList:function(){return this.sku.list||[]},propList:function(){return this.properties||[]},imageList:function(){var t=[this.goods.picture];return this.skuTree.length>0&&this.skuTree.forEach(function(e){e.v&&e.v.forEach(function(e){var n=e.previewImgUrl||e.imgUrl||e.img_url;n&&-1===t.indexOf(n)&&t.push(n)})}),t},stock:function(){var t=this.customStepperConfig.stockNum;return void 0!==t?t:this.selectedSkuComb?this.selectedSkuComb.stock_num:this.sku.stock_num},stockText:function(){var t=this.$createElement,e=this.customStepperConfig.stockFormatter;return e?e(this.stock):[Ll("stock")+" ",t("span",{class:El("stock-num",{highlight:this.stock<this.stockThreshold})},[this.stock])," "+Ll("stockUnit")]},selectedText:function(){var t=this;if(this.selectedSkuComb){var e=this.selectedSkuValues.concat(this.selectedPropValues);return Ll("selected")+" "+e.map(function(t){return t.name}).join(" ")}var n=this.skuTree.filter(function(e){return""===t.selectedSku[e.k_s]}).map(function(t){return t.k}),i=this.propList.filter(function(e){return(t.selectedProp[e.k_id]||[]).length<1}).map(function(t){return t.k});return Ll("select")+" "+n.concat(i).join(" ")}},created:function(){var t=new a.a;this.skuEventBus=t,t.$on("sku:select",this.onSelect),t.$on("sku:propSelect",this.onPropSelect),t.$on("sku:numChange",this.onNumChange),t.$on("sku:previewImage",this.onPreviewImage),t.$on("sku:overLimit",this.onOverLimit),t.$on("sku:stepperState",this.onStepperState),t.$on("sku:addCart",this.onAddCart),t.$on("sku:buy",this.onBuy),this.resetStepper(),this.resetSelectedSku(),this.$emit("after-sku-create",t)},methods:{resetStepper:function(){var t=this.$refs.skuStepper,e=this.initialSku.selectedNum,n=null!=e?e:this.startSaleNum;this.stepperError=null,t?t.setCurrentNum(n):this.selectedNum=n},resetSelectedSku:function(){var t=this;this.selectedSku={},this.skuTree.forEach(function(e){t.selectedSku[e.k_s]=""}),this.skuTree.forEach(function(e){var n=e.k_s,i=1===e.v.length?e.v[0].id:t.initialSku[n];i&&IA(t.skuList,t.selectedSku,{key:n,valueId:i})&&(t.selectedSku[n]=i)});var e=this.selectedSkuValues;e.length>0&&this.$nextTick(function(){t.$emit("sku-selected",{skuValue:e[e.length-1],selectedSku:t.selectedSku,selectedSkuComb:t.selectedSkuComb})}),this.selectedProp={};var n=this.initialSku.selectedProp,i=void 0===n?{}:n;this.propList.forEach(function(e){i[e.k_id]&&(t.selectedProp[e.k_id]=i[e.k_id])}),Object(s.f)(this.selectedProp)&&this.propList.forEach(function(e){var n;if((null==e?void 0:null==(n=e.v)?void 0:n.length)>0){var i=e.v,r=e.k_id;i.some(function(t){return 0!=+t.price})||(t.selectedProp[r]=[i[0].id])}});var r=this.selectedPropValues;r.length>0&&this.$emit("sku-prop-selected",{propValue:r[r.length-1],selectedProp:this.selectedProp,selectedSkuComb:this.selectedSkuComb}),this.$emit("sku-reset",{selectedSku:this.selectedSku,selectedProp:this.selectedProp,selectedSkuComb:this.selectedSkuComb}),this.centerInitialSku()},getSkuMessages:function(){return this.$refs.skuMessages?this.$refs.skuMessages.getMessages():{}},getSkuCartMessages:function(){return this.$refs.skuMessages?this.$refs.skuMessages.getCartMessages():{}},validateSkuMessages:function(){return this.$refs.skuMessages?this.$refs.skuMessages.validateMessages():""},validateSku:function(){if(0===this.selectedNum)return Ll("unavailable");if(this.isSkuCombSelected)return this.validateSkuMessages();if(this.customSkuValidator){var t=this.customSkuValidator(this);if(t)return t}return Ll("selectSku")},onSelect:function(t){var e,n;this.selectedSku=this.selectedSku[t.skuKeyStr]===t.id?i({},this.selectedSku,((e={})[t.skuKeyStr]="",e)):i({},this.selectedSku,((n={})[t.skuKeyStr]=t.id,n)),this.$emit("sku-selected",{skuValue:t,selectedSku:this.selectedSku,selectedSkuComb:this.selectedSkuComb})},onPropSelect:function(t){var e,n=this.selectedProp[t.skuKeyStr]||[],r=n.indexOf(t.id);r>-1?n.splice(r,1):t.multiple?n.push(t.id):n.splice(0,1,t.id),this.selectedProp=i({},this.selectedProp,((e={})[t.skuKeyStr]=n,e)),this.$emit("sku-prop-selected",{propValue:t,selectedProp:this.selectedProp,selectedSkuComb:this.selectedSkuComb})},onNumChange:function(t){this.selectedNum=t},onPreviewImage:function(t){var e=this,n=0,r=this.imageList[0];t&&t.imgUrl&&(this.imageList.some(function(e,i){return e===t.imgUrl&&(n=i,!0)}),r=t.imgUrl);var o=i({},t,{index:n,imageList:this.imageList,indexImage:r});this.$emit("open-preview",o),this.previewOnClickImage&&ya({images:this.imageList,startPosition:n,onClose:function(){e.$emit("close-preview",o)}})},onOverLimit:function(t){var e=t.action,n=t.limitType,i=t.quota,r=t.quotaUsed,o=this.customStepperConfig.handleOverLimit;o?o(t):"minus"===e?this.startSaleNum>1?be(Ll("minusStartTip",this.startSaleNum)):be(Ll("minusTip")):"plus"===e&&be(n===Ol?r>0?Ll("quotaUsedTip",i,r):Ll("quotaTip",i):Ll("soldout"))},onStepperState:function(t){this.stepperError=t.valid?null:i({},t,{action:"plus"})},onAddCart:function(){this.onBuyOrAddCart("add-cart")},onBuy:function(){this.onBuyOrAddCart("buy-clicked")},onBuyOrAddCart:function(t){if(this.stepperError)return this.onOverLimit(this.stepperError);var e=this.validateSku();e?be(e):this.$emit(t,this.getSkuData())},getSkuData:function(){return{goodsId:this.goodsId,messages:this.getSkuMessages(),selectedNum:this.selectedNum,cartMessages:this.getSkuCartMessages(),selectedSkuComb:this.selectedSkuComb}},onOpened:function(){this.centerInitialSku()},centerInitialSku:function(){var t=this;(this.$refs.skuRows||[]).forEach(function(e){var n=(e.skuRow||{}).k_s;e.centerItem(t.initialSku[n])})}},render:function(){var t=this,e=arguments[0];if(!this.isSkuEmpty){var n=this.sku,i=this.skuList,r=this.goods,o=this.price,a=this.lazyLoad,s=this.originPrice,A=this.skuEventBus,l=this.selectedSku,c=this.selectedProp,u=this.selectedNum,h=this.stepperTitle,d=this.selectedSkuComb,f=this.showHeaderImage,p=this.disableSoldoutSku,g={price:o,originPrice:s,selectedNum:u,skuEventBus:A,selectedSku:l,selectedSkuComb:d},m=function(e){return t.slots(e,g)},v=m("sku-header")||e(EA,{attrs:{sku:n,goods:r,skuEventBus:A,selectedSku:l,showHeaderImage:f}},[e("template",{slot:"sku-header-image-extra"},[m("sku-header-image-extra")]),m("sku-header-price")||e("div",{class:"van-sku__goods-price"},[e("span",{class:"van-sku__price-symbol"},["锟�"]),e("span",{class:"van-sku__price-num"},[o]),this.priceTag&&e("span",{class:"van-sku__price-tag"},[this.priceTag])]),m("sku-header-origin-price")||s&&e(HA,[Ll("originPrice")," 锟�",s]),!this.hideStock&&e(HA,[e("span",{class:"van-sku__stock"},[this.stockText])]),this.hasSkuOrAttr&&!this.hideSelectedText&&e(HA,[this.selectedText]),m("sku-header-extra")]),y=m("sku-group")||this.hasSkuOrAttr&&e("div",{class:this.skuGroupClass},[this.skuTree.map(function(t){return e(KA,{attrs:{skuRow:t},ref:"skuRows",refInFor:!0},[t.v.map(function(n){return e(GA,{attrs:{skuList:i,lazyLoad:a,skuValue:n,skuKeyStr:t.k_s,selectedSku:l,skuEventBus:A,disableSoldoutSku:p,largeImageMode:t.largeImageMode}})})])}),this.propList.map(function(t){return e(KA,{attrs:{skuRow:t}},[t.v.map(function(n){return e(WA,{attrs:{skuValue:n,skuKeyStr:t.k_id+"",selectedProp:c,skuEventBus:A,multiple:t.is_multiple}})})])})]),w=m("sku-stepper")||e(il,{ref:"skuStepper",attrs:{stock:this.stock,quota:this.quota,quotaUsed:this.quotaUsed,startSaleNum:this.startSaleNum,skuEventBus:A,selectedNum:u,stepperTitle:h,skuStockNum:n.stock_num,disableStepperInput:this.disableStepperInput,customStepperConfig:this.customStepperConfig,hideQuotaText:this.hideQuotaText},on:{change:function(e){t.$emit("stepper-change",e)}}}),x=m("sku-messages")||e(Sl,{ref:"skuMessages",attrs:{goodsId:this.goodsId,messageConfig:this.messageConfig,messages:n.messages}}),B=m("sku-actions")||e(kl,{attrs:{buyText:this.buyText,skuEventBus:A,addCartText:this.addCartText,showAddCartBtn:this.showAddCartBtn}});return e(at,{attrs:{round:!0,closeable:!0,position:"bottom",getContainer:this.getContainer,closeOnClickOverlay:this.closeOnClickOverlay,safeAreaInsetBottom:this.safeAreaInsetBottom},class:"van-sku-container",on:{opened:this.onOpened},model:{value:t.show,callback:function(e){t.show=e}}},[v,e("div",{class:"van-sku-body",style:this.bodyStyle},[m("sku-body-top"),y,m("extra-sku-group"),w,x]),m("sku-actions-top"),B])}}});Ea.a.add({"zh-CN":{vanSku:{select:"璇烽�夋嫨",selected:"宸查��",selectSku:"璇峰厛閫夋嫨鍟嗗搧瑙勬牸",soldout:"搴撳瓨涓嶈冻",originPrice:"鍘熶环",minusTip:"鑷冲皯閫夋嫨涓�浠�",minusStartTip:function(t){return t+"浠惰捣鍞�"},unavailable:"鍟嗗搧宸茬粡鏃犳硶璐拱鍟�",stock:"鍓╀綑",stockUnit:"浠�",quotaTip:function(t){return"姣忎汉闄愯喘"+t+"浠�"},quotaUsedTip:function(t,e){return"姣忎汉闄愯喘"+t+"浠讹紝浣犲凡璐拱"+e+"浠�"}},vanSkuActions:{buy:"绔嬪嵆璐拱",addCart:"鍔犲叆璐墿杞�"},vanSkuImgUploader:{oversize:function(t){return"鏈�澶у彲涓婁紶鍥剧墖涓�"+t+"MB锛岃灏濊瘯鍘嬬缉鍥剧墖灏哄"},fail:"涓婁紶澶辫触",uploading:"涓婁紶涓�..."},vanSkuStepper:{quotaLimit:function(t){return"闄愯喘"+t+"浠�"},quotaStart:function(t){return t+"浠惰捣鍞�"},comma:"锛�",num:"璐拱鏁伴噺"},vanSkuMessages:{fill:"璇峰~鍐�",upload:"璇蜂笂浼�",imageLabel:"浠呴檺涓�寮�",invalid:{tel:"璇峰~鍐欐纭殑鏁板瓧鏍煎紡鐣欒█",mobile:"鎵嬫満鍙烽暱搴︿负6-20浣嶆暟瀛�",email:"璇峰~鍐欐纭殑閭",id_no:"璇峰~鍐欐纭殑韬唤璇佸彿鐮�"},placeholder:{id_no:"璇峰~鍐欒韩浠借瘉鍙�",text:"璇峰~鍐欑暀瑷�",tel:"璇峰~鍐欐暟瀛�",email:"璇峰~鍐欓偖绠�",date:"璇烽�夋嫨鏃ユ湡",time:"璇烽�夋嫨鏃堕棿",textarea:"璇峰~鍐欑暀瑷�",mobile:"璇峰~鍐欐墜鏈哄彿"}},vanSkuRow:{multiple:"鍙閫�"},vanSkuDatetimeField:{title:{date:"閫夋嫨骞存湀鏃�",time:"閫夋嫨鏃堕棿",datetime:"閫夋嫨鏃ユ湡鏃堕棿"},format:{year:"骞�",month:"鏈�",day:"鏃�",hour:"鏃�",minute:"鍒�"}}}}),Pl.SkuActions=kl,Pl.SkuHeader=EA,Pl.SkuHeaderItem=HA,Pl.SkuMessages=Sl,Pl.SkuStepper=il,Pl.SkuRow=KA,Pl.SkuRowItem=GA,Pl.SkuRowPropItem=WA,Pl.skuHelper=QA,Pl.skuConstants=BA;var Hl=Pl,Nl=Object(s.b)("slider"),Rl=Nl[0],Vl=Nl[1],zl=function(t,e){return JSON.stringify(t)===JSON.stringify(e)},Kl=Rl({mixins:[H,en],props:{disabled:Boolean,vertical:Boolean,range:Boolean,barHeight:[Number,String],buttonSize:[Number,String],activeColor:String,inactiveColor:String,min:{type:[Number,String],default:0},max:{type:[Number,String],default:100},step:{type:[Number,String],default:1},value:{type:[Number,Array],default:0}},data:function(){return{dragStatus:""}},computed:{scope:function(){return this.max-this.min},buttonStyle:function(){if(this.buttonSize){var t=Object(s.a)(this.buttonSize);return{width:t,height:t}}}},created:function(){this.updateValue(this.value)},mounted:function(){this.range?(this.bindTouchEvent(this.$refs.wrapper0),this.bindTouchEvent(this.$refs.wrapper1)):this.bindTouchEvent(this.$refs.wrapper)},methods:{onTouchStart:function(t){this.disabled||(this.touchStart(t),this.currentValue=this.value,this.range?this.startValue=this.value.map(this.format):this.startValue=this.format(this.value),this.dragStatus="start")},onTouchMove:function(t){if(!this.disabled){"start"===this.dragStatus&&this.$emit("drag-start"),y(t,!0),this.touchMove(t),this.dragStatus="draging";var e=this.$el.getBoundingClientRect(),n=(this.vertical?this.deltaY:this.deltaX)/(this.vertical?e.height:e.width)*this.scope;this.range?this.currentValue[this.index]=this.startValue[this.index]+n:this.currentValue=this.startValue+n,this.updateValue(this.currentValue)}},onTouchEnd:function(){this.disabled||("draging"===this.dragStatus&&(this.updateValue(this.currentValue,!0),this.$emit("drag-end")),this.dragStatus="")},onClick:function(t){if(t.stopPropagation(),!this.disabled){var e=this.$el.getBoundingClientRect(),n=this.vertical?t.clientY-e.top:t.clientX-e.left,i=this.vertical?e.height:e.width,r=+this.min+n/i*this.scope;if(this.range){var o=this.value,a=o[0],s=o[1];r<=(a+s)/2?a=r:s=r,r=[a,s]}this.startValue=this.value,this.updateValue(r,!0)}},handleOverlap:function(t){return t[0]>t[1]?(t=It(t)).reverse():t},updateValue:function(t,e){t=this.range?this.handleOverlap(t).map(this.format):this.format(t),zl(t,this.value)||this.$emit("input",t),e&&!zl(t,this.startValue)&&this.$emit("change",t)},format:function(t){var e=+this.min,n=+this.max,i=+this.step;return t=Tt(t,e,n),Ft(e,Math.round((t-e)/i)*i)}},render:function(){var t,e,n,i,r,o,a=this,A=arguments[0],l=this.vertical,c=l?"height":"width",u=l?"width":"height",h=((t={background:this.inactiveColor})[u]=Object(s.a)(this.barHeight),t),d=function(){var t=a.value,e=a.min,n=a.range,i=a.scope;return n?100*(t[0]-e)/i+"%":null},f=((e={})[c]=(n=a.value,i=a.min,r=a.range,o=a.scope,r?100*(n[1]-n[0])/o+"%":100*(n-i)/o+"%"),e.left=this.vertical?null:d(),e.top=this.vertical?d():null,e.background=this.activeColor,e);this.dragStatus&&(f.transition="none");var p=function(t){var e=["left","right"],n="number"==typeof t,i=n?a.value[t]:a.value;return A("div",{ref:n?"wrapper"+t:"wrapper",attrs:{role:"slider",tabindex:a.disabled?-1:0,"aria-valuemin":a.min,"aria-valuenow":a.value,"aria-valuemax":a.max,"aria-orientation":a.vertical?"vertical":"horizontal"},class:Vl(n?"button-wrapper-"+e[t]:"button-wrapper"),on:{touchstart:function(){n&&(a.index=t)},click:function(t){return t.stopPropagation()}}},[function(){if(n){var e=a.slots(0===t?"left-button":"right-button",{value:i});if(e)return e}return a.slots("button")?a.slots("button"):A("div",{class:Vl("button"),style:a.buttonStyle})}()])};return A("div",{style:h,class:Vl({disabled:this.disabled,vertical:l}),on:{click:this.onClick}},[A("div",{class:Vl("bar"),style:f},[this.range?[p(0),p(1)]:p()])])}}),Gl=Object(s.b)("step"),Wl=Gl[0],jl=Gl[1],$l=Wl({mixins:[Qe("vanSteps")],computed:{status:function(){return this.index<this.parent.active?"finish":this.index===+this.parent.active?"process":void 0},active:function(){return"process"===this.status},lineStyle:function(){var t=this.parent,e=t.activeColor,n=t.inactiveColor,i=t.center,r=t.direction,o={background:"finish"===this.status?e:n};return i&&"vertical"===r&&(o.top="50%"),o},circleContainerStyle:function(){if(this.parent.center&&"vertical"===this.parent.direction)return{top:"50%"}},titleStyle:function(){return this.active?{color:this.parent.activeColor}:this.status?void 0:{color:this.parent.inactiveColor}}},methods:{genCircle:function(){var t=this.$createElement,e=this.parent,n=e.activeIcon,i=e.iconPrefix,r=e.activeColor,o=e.finishIcon,a=e.inactiveIcon;if(this.active)return this.slots("active-icon")||t(nt,{class:jl("icon","active"),attrs:{name:n,color:r,classPrefix:i}});var s=this.slots("finish-icon");if("finish"===this.status&&(o||s))return s||t(nt,{class:jl("icon","finish"),attrs:{name:o,color:r,classPrefix:i}});var A=this.slots("inactive-icon");return a||A?A||t(nt,{class:jl("icon"),attrs:{name:a,classPrefix:i}}):t("i",{class:jl("circle"),style:this.lineStyle})},onClickStep:function(){this.parent.$emit("click-step",this.index)}},render:function(){var t,e=arguments[0],n=this.status,i=this.active,r=this.parent.direction;return e("div",{class:[wt,jl([r,(t={},t[n]=n,t)])]},[e("div",{class:jl("title",{active:i}),style:this.titleStyle,on:{click:this.onClickStep}},[this.slots()]),e("div",{class:jl("circle-container"),on:{click:this.onClickStep},style:this.circleContainerStyle},[this.genCircle()]),e("div",{class:jl("line"),style:this.lineStyle})])}}),ql=Object(s.b)("steps"),Yl=ql[0],Xl=ql[1],Jl=Yl({mixins:[Fe("vanSteps")],props:{center:Boolean,iconPrefix:String,finishIcon:String,activeColor:String,inactiveIcon:String,inactiveColor:String,active:{type:[Number,String],default:0},direction:{type:String,default:"horizontal"},activeIcon:{type:String,default:"checked"}},render:function(){var t=arguments[0];return t("div",{class:Xl([this.direction])},[t("div",{class:Xl("items")},[this.slots()])])}}),Zl=Object(s.b)("submit-bar"),tc=Zl[0],ec=Zl[1],nc=Zl[2];function ic(t,e,n,i){var r=e.tip,a=e.price,s=e.tipIcon;return t("div",o()([{class:ec({unfit:!e.safeAreaInsetBottom})},c(i)]),[n.top&&n.top(),function(){if(n.tip||r)return t("div",{class:ec("tip")},[s&&t(nt,{class:ec("tip-icon"),attrs:{name:s}}),r&&t("span",{class:ec("tip-text")},[r]),n.tip&&n.tip()])}(),t("div",{class:ec("bar")},[n.default&&n.default(),function(){if("number"==typeof a){var n=(a/100).toFixed(e.decimalLength).split("."),i=e.decimalLength?"."+n[1]:"";return t("div",{style:{textAlign:e.textAlign?e.textAlign:""},class:ec("text")},[t("span",[e.label||nc("label")]),t("span",{class:ec("price")},[e.currency,t("span",{class:ec("price","integer")},[n[0]]),i]),e.suffixLabel&&t("span",{class:ec("suffix-label")},[e.suffixLabel])])}}(),n.button?n.button():t(Te,{attrs:{round:!0,type:e.buttonType,text:e.loading?"":e.buttonText,color:e.buttonColor,loading:e.loading,disabled:e.disabled},class:ec("button",e.buttonType),on:{click:function(){u(i,"submit")}}})])])}ic.props={tip:String,label:String,price:Number,tipIcon:String,loading:Boolean,disabled:Boolean,textAlign:String,buttonText:String,buttonColor:String,suffixLabel:String,safeAreaInsetBottom:{type:Boolean,default:!0},decimalLength:{type:[Number,String],default:2},currency:{type:String,default:"楼"},buttonType:{type:String,default:"danger"}};var rc=tc(ic),oc=Object(s.b)("swipe-cell"),ac=oc[0],sc=oc[1],Ac=ac({mixins:[H,To({event:"touchstart",method:"onClick"})],props:{onClose:Function,disabled:Boolean,leftWidth:[Number,String],rightWidth:[Number,String],beforeClose:Function,stopPropagation:Boolean,name:{type:[Number,String],default:""}},data:function(){return{offset:0,dragging:!1}},computed:{computedLeftWidth:function(){return+this.leftWidth||this.getWidthByRef("left")},computedRightWidth:function(){return+this.rightWidth||this.getWidthByRef("right")}},mounted:function(){this.bindTouchEvent(this.$el)},methods:{getWidthByRef:function(t){return this.$refs[t]?this.$refs[t].getBoundingClientRect().width:0},open:function(t){var e="left"===t?this.computedLeftWidth:-this.computedRightWidth;this.opened=!0,this.offset=e,this.$emit("open",{position:t,name:this.name,detail:this.name})},close:function(t){this.offset=0,this.opened&&(this.opened=!1,this.$emit("close",{position:t,name:this.name}))},onTouchStart:function(t){this.disabled||(this.startOffset=this.offset,this.touchStart(t))},onTouchMove:function(t){this.disabled||(this.touchMove(t),"horizontal"===this.direction&&(this.dragging=!0,this.lockClick=!0,(!this.opened||this.deltaX*this.startOffset<0)&&y(t,this.stopPropagation),this.offset=Tt(this.deltaX+this.startOffset,-this.computedRightWidth,this.computedLeftWidth)))},onTouchEnd:function(){var t=this;this.disabled||this.dragging&&(this.toggle(this.offset>0?"left":"right"),this.dragging=!1,setTimeout(function(){t.lockClick=!1},0))},toggle:function(t){var e=Math.abs(this.offset),n=this.opened?.85:.15,i=this.computedLeftWidth,r=this.computedRightWidth;r&&"right"===t&&e>r*n?this.open("right"):i&&"left"===t&&e>i*n?this.open("left"):this.close()},onClick:function(t){void 0===t&&(t="outside"),this.$emit("click",t),this.opened&&!this.lockClick&&(this.beforeClose?this.beforeClose({position:t,name:this.name,instance:this}):this.onClose?this.onClose(t,this,{name:this.name}):this.close(t))},getClickHandler:function(t,e){var n=this;return function(i){e&&i.stopPropagation(),n.onClick(t)}},genLeftPart:function(){var t=this.$createElement,e=this.slots("left");if(e)return t("div",{ref:"left",class:sc("left"),on:{click:this.getClickHandler("left",!0)}},[e])},genRightPart:function(){var t=this.$createElement,e=this.slots("right");if(e)return t("div",{ref:"right",class:sc("right"),on:{click:this.getClickHandler("right",!0)}},[e])}},render:function(){var t=arguments[0],e={transform:"translate3d("+this.offset+"px, 0, 0)",transitionDuration:this.dragging?"0s":".6s"};return t("div",{class:sc(),on:{click:this.getClickHandler("cell")}},[t("div",{class:sc("wrapper"),style:e},[this.genLeftPart(),this.slots(),this.genRightPart()])])}}),lc=Object(s.b)("switch-cell"),cc=lc[0],uc=lc[1];function hc(t,e,n,r){return t(ie,o()([{attrs:{center:!0,size:e.cellSize,title:e.title,border:e.border},class:uc([e.cellSize])},c(r)]),[t(an,{props:i({},e),on:i({},r.listeners)})])}hc.props=i({},tn,{title:String,cellSize:String,border:{type:Boolean,default:!0},size:{type:String,default:"24px"}});var dc=cc(hc),fc=Object(s.b)("tabbar"),pc=fc[0],gc=fc[1],mc=pc({mixins:[Fe("vanTabbar")],props:{route:Boolean,zIndex:[Number,String],placeholder:Boolean,activeColor:String,beforeChange:Function,inactiveColor:String,value:{type:[Number,String],default:0},border:{type:Boolean,default:!0},fixed:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:null}},data:function(){return{height:null}},computed:{fit:function(){return null!==this.safeAreaInsetBottom?this.safeAreaInsetBottom:this.fixed}},watch:{value:"setActiveItem",children:"setActiveItem"},mounted:function(){var t=this;if(this.placeholder&&this.fixed){var e=function(){t.height=t.$refs.tabbar.getBoundingClientRect().height};e(),setTimeout(e,100)}},methods:{setActiveItem:function(){var t=this;this.children.forEach(function(e,n){e.nameMatched=e.name===t.value||n===t.value})},triggerChange:function(t,e){var n=this;vi({interceptor:this.beforeChange,args:[t],done:function(){n.$emit("input",t),n.$emit("change",t),e()}})},genTabbar:function(){var t;return(0,this.$createElement)("div",{ref:"tabbar",style:{zIndex:this.zIndex},class:[(t={},t[_t]=this.border,t),gc({unfit:!this.fit,fixed:this.fixed})]},[this.slots()])}},render:function(){var t=arguments[0];return this.placeholder&&this.fixed?t("div",{class:gc("placeholder"),style:{height:this.height+"px"}},[this.genTabbar()]):this.genTabbar()}}),vc=Object(s.b)("tabbar-item"),yc=vc[0],wc=vc[1],xc=yc({mixins:[Qe("vanTabbar")],props:i({},Xt,{dot:Boolean,icon:String,name:[Number,String],info:[Number,String],badge:[Number,String],iconPrefix:String}),data:function(){return{nameMatched:!1}},computed:{active:function(){if(this.parent.route&&"$route"in this){var t=this.to,e=this.$route,n=Object(s.h)(t)?t:{path:t};return!!e.matched.find(function(t){var e=""===t.path?"/":t.path,i=n.path===e,r=Object(s.e)(n.name)&&n.name===t.name;return i||r})}return this.nameMatched}},methods:{onClick:function(t){var e=this;this.active||this.parent.triggerChange(this.name||this.index,function(){qt(e.$router,e)}),this.$emit("click",t)},genIcon:function(){var t=this.$createElement,e=this.slots("icon",{active:this.active});return e||(this.icon?t(nt,{attrs:{name:this.icon,classPrefix:this.iconPrefix}}):void 0)}},render:function(){var t,e=arguments[0],n=this.active,i=this.parent[n?"activeColor":"inactiveColor"];return e("div",{class:wc({active:n}),style:{color:i},on:{click:this.onClick}},[e("div",{class:wc("icon")},[this.genIcon(),e(Y,{attrs:{dot:this.dot,info:null!=(t=this.badge)?t:this.info}})]),e("div",{class:wc("text")},[this.slots("default",{active:n})])])}}),Bc=Object(s.b)("tree-select"),bc=Bc[0],Cc=Bc[1];function _c(t,e,n,i){var r=e.items,a=e.height,A=e.activeId,l=e.selectedIcon,h=e.mainActiveIndex;var d=(r[+h]||{}).children||[],f=Array.isArray(A);function p(t){return f?-1!==A.indexOf(t):A===t}var g=r.map(function(e){var n;return t(dA,{attrs:{dot:e.dot,info:null!=(n=e.badge)?n:e.info,title:e.text,disabled:e.disabled},class:[Cc("nav-item"),e.className]})});return t("div",o()([{class:Cc(),style:{height:Object(s.a)(a)}},c(i)]),[t(lA,{class:Cc("nav"),attrs:{activeKey:h},on:{change:function(t){u(i,"update:main-active-index",t),u(i,"click-nav",t),u(i,"navclick",t)}}},[g]),t("div",{class:Cc("content")},[n.content?n.content():d.map(function(n){return t("div",{key:n.id,class:["van-ellipsis",Cc("item",{active:p(n.id),disabled:n.disabled})],on:{click:function(){if(!n.disabled){var t=n.id;if(f){var r=(t=A.slice()).indexOf(n.id);-1!==r?t.splice(r,1):t.length<e.max&&t.push(n.id)}u(i,"update:active-id",t),u(i,"click-item",n),u(i,"itemclick",n)}}}},[n.text,p(n.id)&&t(nt,{attrs:{name:l},class:Cc("selected")})])})])])}_c.props={max:{type:[Number,String],default:1/0},items:{type:Array,default:function(){return[]}},height:{type:[Number,String],default:300},activeId:{type:[Number,String,Array],default:0},selectedIcon:{type:String,default:"success"},mainActiveIndex:{type:[Number,String],default:0}};var Sc=bc(_c);n.d(e,!1,function(){return gt}),n.d(e,!1,function(){return hn}),n.d(e,!1,function(){return En}),n.d(e,!1,function(){return $t}),n.d(e,!1,function(){return Nn}),n.d(e,!1,function(){return Te}),n.d(e,!1,function(){return ii}),n.d(e,!1,function(){return hi}),n.d(e,!1,function(){return Hi}),n.d(e,!1,function(){return ie}),n.d(e,!1,function(){return Ki}),n.d(e,!1,function(){return Wi}),n.d(e,!1,function(){return Yi}),n.d(e,"a",function(){return nr}),n.d(e,!1,function(){return ar}),n.d(e,!1,function(){return cr}),n.d(e,!1,function(){return pr}),n.d(e,!1,function(){return xr}),n.d(e,!1,function(){return Ir}),n.d(e,!1,function(){return Dr}),n.d(e,!1,function(){return Vr}),n.d(e,!1,function(){return qr}),n.d(e,!1,function(){return eo}),n.d(e,!1,function(){return ao}),n.d(e,!1,function(){return vo}),n.d(e,!1,function(){return je}),n.d(e,!1,function(){return bo}),n.d(e,!1,function(){return Io}),n.d(e,!1,function(){return ko}),n.d(e,!1,function(){return Ho}),n.d(e,!1,function(){return le}),n.d(e,!1,function(){return zo}),n.d(e,!1,function(){return Le}),n.d(e,!1,function(){return Ne}),n.d(e,!1,function(){return jo}),n.d(e,!1,function(){return Xo}),n.d(e,!1,function(){return ea}),n.d(e,!1,function(){return nt}),n.d(e,!1,function(){return si}),n.d(e,!1,function(){return ya}),n.d(e,!1,function(){return ba}),n.d(e,!1,function(){return Ia}),n.d(e,!1,function(){return Y}),n.d(e,!1,function(){return Ma}),n.d(e,!1,function(){return Ua}),n.d(e,"b",function(){return ut}),n.d(e,!1,function(){return Ea.a}),n.d(e,!1,function(){return Ha}),n.d(e,!1,function(){return za}),n.d(e,"c",function(){return Ja}),n.d(e,!1,function(){return As}),n.d(e,!1,function(){return _}),n.d(e,!1,function(){return fs}),n.d(e,!1,function(){return ys}),n.d(e,!1,function(){return Cs}),n.d(e,!1,function(){return Kt}),n.d(e,!1,function(){return Ms}),n.d(e,"d",function(){return at}),n.d(e,!1,function(){return Ds}),n.d(e,!1,function(){return Hs}),n.d(e,!1,function(){return Cn}),n.d(e,!1,function(){return gn}),n.d(e,!1,function(){return zs}),n.d(e,!1,function(){return js}),n.d(e,!1,function(){return Zs}),n.d(e,!1,function(){return oA}),n.d(e,!1,function(){return lA}),n.d(e,!1,function(){return dA}),n.d(e,!1,function(){return wA}),n.d(e,!1,function(){return Hl}),n.d(e,!1,function(){return Kl}),n.d(e,!1,function(){return $l}),n.d(e,!1,function(){return XA}),n.d(e,!1,function(){return Jl}),n.d(e,"e",function(){return Si}),n.d(e,!1,function(){return rc}),n.d(e,!1,function(){return Aa}),n.d(e,!1,function(){return Ac}),n.d(e,!1,function(){return ha}),n.d(e,!1,function(){return an}),n.d(e,!1,function(){return dc}),n.d(e,!1,function(){return gi}),n.d(e,!1,function(){return mc}),n.d(e,!1,function(){return xc}),n.d(e,!1,function(){return Ui}),n.d(e,!1,function(){return xn}),n.d(e,!1,function(){return be}),n.d(e,!1,function(){return Sc}),n.d(e,!1,function(){return dl});function Ic(t){[gt,hn,En,$t,Nn,Te,ii,hi,Hi,ie,Ki,Wi,Yi,nr,ar,cr,pr,xr,Ir,Dr,Vr,qr,eo,ao,vo,je,bo,Io,ko,Ho,le,zo,Le,Ne,jo,Xo,ea,nt,si,ya,ba,Ia,Y,Ua,ut,Ea.a,Ha,za,Ja,As,_,fs,ys,Cs,Kt,Ms,at,Ds,Hs,Cn,gn,zs,js,Zs,oA,lA,dA,wA,Hl,Kl,$l,XA,Jl,Si,rc,Aa,Ac,ha,an,dc,gi,mc,xc,Ui,xn,be,Sc,dl].forEach(function(e){e.install?t.use(e):e.name&&t.component(e.name,e)})}"undefined"!=typeof window&&window.Vue&&Ic(window.Vue);e.f={install:Ic,version:"2.12.51"}},cjnF:function(t,e,n){"use strict";var i=n("ywUT");t.exports=i.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function r(t){var i=t;return e&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=r(window.location.href),function(e){var n=i.isString(e)?r(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},cnxE:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("niuy"),a=n("K3bJ"),s=n("r8bK"),A=o.valueAxis;function l(t,e){return r.defaults({show:e},t)}var c=i.extendComponentModel({type:"radar",optionUpdated:function(){var t=this.get("boundaryGap"),e=this.get("splitNumber"),n=this.get("scale"),i=this.get("axisLine"),o=this.get("axisTick"),A=this.get("axisType"),l=this.get("axisLabel"),c=this.get("name"),u=this.get("name.show"),h=this.get("name.formatter"),d=this.get("nameGap"),f=this.get("triggerEvent"),p=r.map(this.get("indicator")||[],function(p){null!=p.max&&p.max>0&&!p.min?p.min=0:null!=p.min&&p.min<0&&!p.max&&(p.max=0);var g=c;if(null!=p.color&&(g=r.defaults({color:p.color},c)),p=r.merge(r.clone(p),{boundaryGap:t,splitNumber:e,scale:n,axisLine:i,axisTick:o,axisType:A,axisLabel:l,name:p.text,nameLocation:"end",nameGap:d,nameTextStyle:g,triggerEvent:f},!1),u||(p.name=""),"string"==typeof h){var m=p.name;p.name=h.replace("{value}",null!=m?m:"")}else"function"==typeof h&&(p.name=h(p.name,p));var v=r.extend(new a(p,null,this.ecModel),s);return v.mainType="radar",v.componentIndex=this.componentIndex,v},this);this.getIndicatorModels=function(){return p}},defaultOption:{zlevel:0,z:0,center:["50%","50%"],radius:"75%",startAngle:90,name:{show:!0},boundaryGap:[0,0],splitNumber:5,nameGap:15,scale:!1,shape:"polygon",axisLine:r.merge({lineStyle:{color:"#bbb"}},A.axisLine),axisLabel:l(A.axisLabel,!1),axisTick:l(A.axisTick,!1),axisType:"interval",splitLine:l(A.splitLine,!0),splitArea:l(A.splitArea,!0),indicator:[]}});t.exports=c},d5FO:function(t,e,n){var i=n("A5tq"),r=n("sutA"),o=n("Q1ps"),a=n("YjnO");function s(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t.zlevel-e.zlevel}var A=function(){this._roots=[],this._displayList=[],this._displayListLen=0};A.prototype={constructor:A,traverse:function(t,e){for(var n=0;n<this._roots.length;n++)this._roots[n].traverse(t,e)},getDisplayList:function(t,e){return e=e||!1,t&&this.updateDisplayList(e),this._displayList},updateDisplayList:function(t){this._displayListLen=0;for(var e=this._roots,n=this._displayList,i=0,o=e.length;i<o;i++)this._updateAndAddDisplayable(e[i],null,t);n.length=this._displayListLen,r.canvasSupported&&a(n,s)},_updateAndAddDisplayable:function(t,e,n){if(!t.ignore||n){t.beforeUpdate(),t.__dirty&&t.update(),t.afterUpdate();var i=t.clipPath;if(i){e=e?e.slice():[];for(var r=i,o=t;r;)r.parent=o,r.updateTransform(),e.push(r),o=r,r=r.clipPath}if(t.isGroup){for(var a=t._children,s=0;s<a.length;s++){var A=a[s];t.__dirty&&(A.__dirty=!0),this._updateAndAddDisplayable(A,e,n)}t.__dirty=!1}else t.__clipPaths=e,this._displayList[this._displayListLen++]=t}},addRoot:function(t){t.__storage!==this&&(t instanceof o&&t.addChildrenToStorage(this),this.addToStorage(t),this._roots.push(t))},delRoot:function(t){if(null==t){for(var e=0;e<this._roots.length;e++){var n=this._roots[e];n instanceof o&&n.delChildrenFromStorage(this)}return this._roots=[],this._displayList=[],void(this._displayListLen=0)}if(t instanceof Array){e=0;for(var r=t.length;e<r;e++)this.delRoot(t[e])}else{var a=i.indexOf(this._roots,t);a>=0&&(this.delFromStorage(t),this._roots.splice(a,1),t instanceof o&&t.delChildrenFromStorage(this))}},addToStorage:function(t){return t&&(t.__storage=this,t.dirty(!1)),this},delFromStorage:function(t){return t&&(t.__storage=null),this},dispose:function(){this._renderList=this._roots=null},displayableSortFunc:s};var l=A;t.exports=l},dBJA:function(t,e){var n=function(t,e){this.getAllNames=function(){var t=e();return t.mapArray(t.getName)},this.containName=function(t){return e().indexOfName(t)>=0},this.indexOfName=function(e){return t().indexOfName(e)},this.getItemVisual=function(e,n){return t().getItemVisual(e,n)}};t.exports=n},dGMU:function(t,e,n){var i=n("65+t"),r=i.makeInner,o=i.normalizeToArray,a=r();var s={clearColorPalette:function(){a(this).colorIdx=0,a(this).colorNameMap={}},getColorFromPalette:function(t,e,n){var i=a(e=e||this),r=i.colorIdx||0,s=i.colorNameMap=i.colorNameMap||{};if(s.hasOwnProperty(t))return s[t];var A=o(this.get("color",!0)),l=this.get("colorLayer",!0),c=null!=n&&l?function(t,e){for(var n=t.length,i=0;i<n;i++)if(t[i].length>e)return t[i];return t[n-1]}(l,n):A;if((c=c||A)&&c.length){var u=c[r];return t&&(s[t]=u),i.colorIdx=(r+1)%c.length,u}}};t.exports=s},drN1:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("bDs9"),a=n("DWNL"),s=n("w9uD"),A={EN:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],CN:["涓�鏈�","浜屾湀","涓夋湀","鍥涙湀","浜旀湀","鍏湀","涓冩湀","鍏湀","涔濇湀","鍗佹湀","鍗佷竴鏈�","鍗佷簩鏈�"]},l={EN:["S","M","T","W","T","F","S"],CN:["鏃�","涓�","浜�","涓�","鍥�","浜�","鍏�"]},c=i.extendComponentView({type:"calendar",_tlpoints:null,_blpoints:null,_firstDayOfMonth:null,_firstDayPoints:null,render:function(t,e,n){var i=this.group;i.removeAll();var r=t.coordinateSystem,o=r.getRangeInfo(),a=r.getOrient();this._renderDayRect(t,o,i),this._renderLines(t,o,a,i),this._renderYearText(t,o,a,i),this._renderMonthText(t,a,i),this._renderWeekText(t,o,a,i)},_renderDayRect:function(t,e,n){for(var i=t.coordinateSystem,r=t.getModel("itemStyle").getItemStyle(),a=i.getCellWidth(),s=i.getCellHeight(),A=e.start.time;A<=e.end.time;A=i.getNextNDay(A,1).time){var l=i.dataToRect([A],!1).tl,c=new o.Rect({shape:{x:l[0],y:l[1],width:a,height:s},cursor:"default",style:r});n.add(c)}},_renderLines:function(t,e,n,i){var r=this,o=t.coordinateSystem,a=t.getModel("splitLine.lineStyle").getLineStyle(),s=t.get("splitLine.show"),A=a.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var l=e.start,c=0;l.time<=e.end.time;c++){h(l.formatedDate),0===c&&(l=o.getDateInfo(e.start.y+"-"+e.start.m));var u=l.date;u.setMonth(u.getMonth()+1),l=o.getDateInfo(u)}function h(e){r._firstDayOfMonth.push(o.getDateInfo(e)),r._firstDayPoints.push(o.dataToRect([e],!1).tl);var A=r._getLinePointsOfOneWeek(t,e,n);r._tlpoints.push(A[0]),r._blpoints.push(A[A.length-1]),s&&r._drawSplitline(A,a,i)}h(o.getNextNDay(e.end.time,1).formatedDate),s&&this._drawSplitline(r._getEdgesPoints(r._tlpoints,A,n),a,i),s&&this._drawSplitline(r._getEdgesPoints(r._blpoints,A,n),a,i)},_getEdgesPoints:function(t,e,n){var i=[t[0].slice(),t[t.length-1].slice()],r="horizontal"===n?0:1;return i[0][r]=i[0][r]-e/2,i[1][r]=i[1][r]+e/2,i},_drawSplitline:function(t,e,n){var i=new o.Polyline({z2:20,shape:{points:t},style:e});n.add(i)},_getLinePointsOfOneWeek:function(t,e,n){var i=t.coordinateSystem;e=i.getDateInfo(e);for(var r=[],o=0;o<7;o++){var a=i.getNextNDay(e.time,o),s=i.dataToRect([a.time],!1);r[2*a.day]=s.tl,r[2*a.day+1]=s["horizontal"===n?"bl":"tr"]}return r},_formatterLabel:function(t,e){return"string"==typeof t&&t?a.formatTplSimple(t,e):"function"==typeof t?t(e):e.nameMap},_yearTextPositionControl:function(t,e,n,i,r){e=e.slice();var o=["center","bottom"];"bottom"===i?(e[1]+=r,o=["center","top"]):"left"===i?e[0]-=r:"right"===i?(e[0]+=r,o=["center","top"]):e[1]-=r;var a=0;return"left"!==i&&"right"!==i||(a=Math.PI/2),{rotation:a,position:e,style:{textAlign:o[0],textVerticalAlign:o[1]}}},_renderYearText:function(t,e,n,i){var r=t.getModel("yearLabel");if(r.get("show")){var a=r.get("margin"),s=r.get("position");s||(s="horizontal"!==n?"top":"left");var A=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],l=(A[0][0]+A[1][0])/2,c=(A[0][1]+A[1][1])/2,u="horizontal"===n?0:1,h={top:[l,A[u][1]],bottom:[l,A[1-u][1]],left:[A[1-u][0],c],right:[A[u][0],c]},d=e.start.y;+e.end.y>+e.start.y&&(d=d+"-"+e.end.y);var f=r.get("formatter"),p={start:e.start.y,end:e.end.y,nameMap:d},g=this._formatterLabel(f,p),m=new o.Text({z2:30});o.setTextStyle(m.style,r,{text:g}),m.attr(this._yearTextPositionControl(m,h[s],n,s,a)),i.add(m)}},_monthTextPositionControl:function(t,e,n,i,r){var o="left",a="top",s=t[0],A=t[1];return"horizontal"===n?(A+=r,e&&(o="center"),"start"===i&&(a="bottom")):(s+=r,e&&(a="middle"),"start"===i&&(o="right")),{x:s,y:A,textAlign:o,textVerticalAlign:a}},_renderMonthText:function(t,e,n){var i=t.getModel("monthLabel");if(i.get("show")){var a=i.get("nameMap"),s=i.get("margin"),l=i.get("position"),c=i.get("align"),u=[this._tlpoints,this._blpoints];r.isString(a)&&(a=A[a.toUpperCase()]||[]);var h="start"===l?0:1,d="horizontal"===e?0:1;s="start"===l?-s:s;for(var f="center"===c,p=0;p<u[h].length-1;p++){var g=u[h][p].slice(),m=this._firstDayOfMonth[p];if(f){var v=this._firstDayPoints[p];g[d]=(v[d]+u[0][p+1][d])/2}var y=i.get("formatter"),w=a[+m.m-1],x={yyyy:m.y,yy:(m.y+"").slice(2),MM:m.m,M:+m.m,nameMap:w},B=this._formatterLabel(y,x),b=new o.Text({z2:30});r.extend(o.setTextStyle(b.style,i,{text:B}),this._monthTextPositionControl(g,f,e,l,s)),n.add(b)}}},_weekTextPositionControl:function(t,e,n,i,r){var o="center",a="middle",s=t[0],A=t[1],l="start"===n;return"horizontal"===e?(s=s+i+(l?1:-1)*r[0]/2,o=l?"right":"left"):(A=A+i+(l?1:-1)*r[1]/2,a=l?"bottom":"top"),{x:s,y:A,textAlign:o,textVerticalAlign:a}},_renderWeekText:function(t,e,n,i){var a=t.getModel("dayLabel");if(a.get("show")){var A=t.coordinateSystem,c=a.get("position"),u=a.get("nameMap"),h=a.get("margin"),d=A.getFirstDayOfWeek();r.isString(u)&&(u=l[u.toUpperCase()]||[]);var f=A.getNextNDay(e.end.time,7-e.lweek).time,p=[A.getCellWidth(),A.getCellHeight()];h=s.parsePercent(h,p["horizontal"===n?0:1]),"start"===c&&(f=A.getNextNDay(e.start.time,-(7+e.fweek)).time,h=-h);for(var g=0;g<7;g++){var m,v=A.getNextNDay(f,g),y=A.dataToRect([v.time],!1).center;m=Math.abs((g+d)%7);var w=new o.Text({z2:30});r.extend(o.setTextStyle(w.style,a,{text:u[m]}),this._weekTextPositionControl(y,n,c,h,p)),i.add(w)}}}});t.exports=c},dwOH:function(t,e,n){var i=n("UnJe").extend({type:"echartsGaugePointer",shape:{angle:0,width:10,r:10,x:0,y:0},buildPath:function(t,e){var n=Math.cos,i=Math.sin,r=e.r,o=e.width,a=e.angle,s=e.x-n(a)*o*(o>=r/3?1:2),A=e.y-i(a)*o*(o>=r/3?1:2);a=e.angle-Math.PI/2,t.moveTo(s,A),t.lineTo(e.x+n(a)*o,e.y+i(a)*o),t.lineTo(e.x+n(e.angle)*r,e.y+i(e.angle)*r),t.lineTo(e.x-n(a)*o,e.y-i(a)*o),t.lineTo(s,A)}});t.exports=i},dyFL:function(t,e,n){var i={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function r(t){return(t=Math.round(t))<0?0:t>255?255:t}function o(t){return t<0?0:t>1?1:t}function a(t){return t.length&&"%"===t.charAt(t.length-1)?r(parseFloat(t)/100*255):r(parseInt(t,10))}function s(t){return t.length&&"%"===t.charAt(t.length-1)?o(parseFloat(t)/100):o(parseFloat(t))}function A(t,e,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?t+(e-t)*n*6:2*n<1?e:3*n<2?t+(e-t)*(2/3-n)*6:t}function l(t,e,n){return t+(e-t)*n}function c(t,e,n,i,r){return t[0]=e,t[1]=n,t[2]=i,t[3]=r,t}function u(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}var h=new(n("mmXW"))(20),d=null;function f(t,e){d&&u(d,e),d=h.put(t,d||e.slice())}function p(t,e){if(t){e=e||[];var n=h.get(t);if(n)return u(e,n);var r,o=(t+="").replace(/ /g,"").toLowerCase();if(o in i)return u(e,i[o]),f(t,e),e;if("#"===o.charAt(0))return 4===o.length?(r=parseInt(o.substr(1),16))>=0&&r<=4095?(c(e,(3840&r)>>4|(3840&r)>>8,240&r|(240&r)>>4,15&r|(15&r)<<4,1),f(t,e),e):void c(e,0,0,0,1):7===o.length?(r=parseInt(o.substr(1),16))>=0&&r<=16777215?(c(e,(16711680&r)>>16,(65280&r)>>8,255&r,1),f(t,e),e):void c(e,0,0,0,1):void 0;var A=o.indexOf("("),l=o.indexOf(")");if(-1!==A&&l+1===o.length){var d=o.substr(0,A),p=o.substr(A+1,l-(A+1)).split(","),m=1;switch(d){case"rgba":if(4!==p.length)return void c(e,0,0,0,1);m=s(p.pop());case"rgb":return 3!==p.length?void c(e,0,0,0,1):(c(e,a(p[0]),a(p[1]),a(p[2]),m),f(t,e),e);case"hsla":return 4!==p.length?void c(e,0,0,0,1):(p[3]=s(p[3]),g(p,e),f(t,e),e);case"hsl":return 3!==p.length?void c(e,0,0,0,1):(g(p,e),f(t,e),e);default:return}}c(e,0,0,0,1)}}function g(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=s(t[1]),o=s(t[2]),a=o<=.5?o*(i+1):o+i-o*i,l=2*o-a;return c(e=e||[],r(255*A(l,a,n+1/3)),r(255*A(l,a,n)),r(255*A(l,a,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function m(t,e,n){if(e&&e.length&&t>=0&&t<=1){n=n||[];var i=t*(e.length-1),a=Math.floor(i),s=Math.ceil(i),A=e[a],c=e[s],u=i-a;return n[0]=r(l(A[0],c[0],u)),n[1]=r(l(A[1],c[1],u)),n[2]=r(l(A[2],c[2],u)),n[3]=o(l(A[3],c[3],u)),n}}var v=m;function y(t,e,n){if(e&&e.length&&t>=0&&t<=1){var i=t*(e.length-1),a=Math.floor(i),s=Math.ceil(i),A=p(e[a]),c=p(e[s]),u=i-a,h=x([r(l(A[0],c[0],u)),r(l(A[1],c[1],u)),r(l(A[2],c[2],u)),o(l(A[3],c[3],u))],"rgba");return n?{color:h,leftIndex:a,rightIndex:s,value:i}:h}}var w=y;function x(t,e){if(t&&t.length){var n=t[0]+","+t[1]+","+t[2];return"rgba"!==e&&"hsva"!==e&&"hsla"!==e||(n+=","+t[3]),e+"("+n+")"}}e.parse=p,e.lift=function(t,e){var n=p(t);if(n){for(var i=0;i<3;i++)n[i]=e<0?n[i]*(1-e)|0:(255-n[i])*e+n[i]|0,n[i]>255?n[i]=255:t[i]<0&&(n[i]=0);return x(n,4===n.length?"rgba":"rgb")}},e.toHex=function(t){var e=p(t);if(e)return((1<<24)+(e[0]<<16)+(e[1]<<8)+ +e[2]).toString(16).slice(1)},e.fastLerp=m,e.fastMapToColor=v,e.lerp=y,e.mapToColor=w,e.modifyHSL=function(t,e,n,i){if(t=p(t))return t=function(t){if(t){var e,n,i=t[0]/255,r=t[1]/255,o=t[2]/255,a=Math.min(i,r,o),s=Math.max(i,r,o),A=s-a,l=(s+a)/2;if(0===A)e=0,n=0;else{n=l<.5?A/(s+a):A/(2-s-a);var c=((s-i)/6+A/2)/A,u=((s-r)/6+A/2)/A,h=((s-o)/6+A/2)/A;i===s?e=h-u:r===s?e=1/3+c-h:o===s&&(e=2/3+u-c),e<0&&(e+=1),e>1&&(e-=1)}var d=[360*e,n,l];return null!=t[3]&&d.push(t[3]),d}}(t),null!=e&&(t[0]=(r=e,(r=Math.round(r))<0?0:r>360?360:r)),null!=n&&(t[1]=s(n)),null!=i&&(t[2]=s(i)),x(g(t),"rgba");var r},e.modifyAlpha=function(t,e){if((t=p(t))&&null!=e)return t[3]=o(e),x(t,"rgba")},e.stringify=x},"e+8j":function(t,e,n){var i=n("loyO");n("pxa4"),n("gl0p");var r=n("HVRW"),o=n("BzcN"),a=n("6n+O");n("7KEw"),i.registerVisual(r("line","circle","line")),i.registerLayout(o("line")),i.registerProcessor(i.PRIORITY.PROCESSOR.STATISTIC,a("line"))},e6hA:function(t,e,n){var i=n("xfK8").extend({type:"dataZoom",render:function(t,e,n,i){this.dataZoomModel=t,this.ecModel=e,this.api=n},getTargetCoordInfo:function(){var t=this.dataZoomModel,e=this.ecModel,n={};return t.eachTargetAxis(function(t,i){var r=e.getComponent(t.axis,i);if(r){var o=r.getCoordSysModel();o&&function(t,e,n,i){for(var r,o=0;o<n.length;o++)if(n[o].model===t){r=n[o];break}r||n.push(r={model:t,axisModels:[],coordIndex:i});r.axisModels.push(e)}(o,r,n[o.mainType]||(n[o.mainType]=[]),o.componentIndex)}},this),n}});t.exports=i},e85P:function(t,e,n){var i=n("A5tq"),r=n("r+KN"),o=n("qgTf");function a(t){o.call(this,t)}a.prototype={constructor:a,type:"cartesian2d",dimensions:["x","y"],getBaseAxis:function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAxis("x")},containPoint:function(t){var e=this.getAxis("x"),n=this.getAxis("y");return e.contain(e.toLocalCoord(t[0]))&&n.contain(n.toLocalCoord(t[1]))},containData:function(t){return this.getAxis("x").containData(t[0])&&this.getAxis("y").containData(t[1])},dataToPoint:function(t,e,n){var i=this.getAxis("x"),r=this.getAxis("y");return(n=n||[])[0]=i.toGlobalCoord(i.dataToCoord(t[0])),n[1]=r.toGlobalCoord(r.dataToCoord(t[1])),n},clampData:function(t,e){var n=this.getAxis("x").scale,i=this.getAxis("y").scale,r=n.getExtent(),o=i.getExtent(),a=n.parse(t[0]),s=i.parse(t[1]);return(e=e||[])[0]=Math.min(Math.max(Math.min(r[0],r[1]),a),Math.max(r[0],r[1])),e[1]=Math.min(Math.max(Math.min(o[0],o[1]),s),Math.max(o[0],o[1])),e},pointToData:function(t,e){var n=this.getAxis("x"),i=this.getAxis("y");return(e=e||[])[0]=n.coordToData(n.toLocalCoord(t[0])),e[1]=i.coordToData(i.toLocalCoord(t[1])),e},getOtherAxis:function(t){return this.getAxis("x"===t.dim?"y":"x")},getArea:function(){var t=this.getAxis("x").getGlobalExtent(),e=this.getAxis("y").getGlobalExtent(),n=Math.min(t[0],t[1]),i=Math.min(e[0],e[1]),o=Math.max(t[0],t[1])-n,a=Math.max(e[0],e[1])-i;return new r(n,i,o,a)}},i.inherits(a,o);var s=a;t.exports=s},e8iJ:function(t,e,n){var i=n("A5tq");e.layout=function(t,e){e=e||{};var n=t.coordinateSystem,r=t.axis,o={},a=r.position,s=r.orient,A=n.getRect(),l=[A.x,A.x+A.width,A.y,A.y+A.height],c={horizontal:{top:l[2],bottom:l[3]},vertical:{left:l[0],right:l[1]}};o.position=["vertical"===s?c.vertical[a]:l[0],"horizontal"===s?c.horizontal[a]:l[3]],o.rotation=Math.PI/2*{horizontal:0,vertical:1}[s],o.labelDirection=o.tickDirection=o.nameDirection={top:-1,bottom:1,right:1,left:-1}[a],t.get("axisTick.inside")&&(o.tickDirection=-o.tickDirection),i.retrieve(e.labelInside,t.get("axisLabel.inside"))&&(o.labelDirection=-o.labelDirection);var u=e.rotate;return null==u&&(u=t.get("axisLabel.rotate")),o.labelRotation="top"===a?-u:u,o.z2=1,o}},eEzf:function(t,e){var n=function(t,e){this.image=t,this.repeat=e,this.type="pattern"};n.prototype.getCanvasPattern=function(t){return t.createPattern(this.image,this.repeat||"repeat")};var i=n;t.exports=i},eII0:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("SvgU"),o=n("0Hqv"),a=n("rHid"),s=n("w9uD"),A=n("H164"),l=A.prepareLayoutBarSeries,c=A.makeColumnLayout,u=A.retrieveColumnLayout,h=n("r+KN");function d(t,e){var n,r,o,a=t.type,A=e.getMin(),h=e.getMax(),d=t.getExtent();"ordinal"===a?n=e.getCategories().length:(r=e.get("boundaryGap"),i.isArray(r)||(r=[r||0,r||0]),"boolean"==typeof r[0]&&(r=[0,0]),r[0]=s.parsePercent(r[0],1),r[1]=s.parsePercent(r[1],1),o=d[1]-d[0]||Math.abs(d[0])),"dataMin"===A?A=d[0]:"function"==typeof A&&(A=A({min:d[0],max:d[1]})),"dataMax"===h?h=d[1]:"function"==typeof h&&(h=h({min:d[0],max:d[1]}));var f=null!=A,p=null!=h;null==A&&(A="ordinal"===a?n?0:NaN:d[0]-r[0]*o),null==h&&(h="ordinal"===a?n?n-1:NaN:d[1]+r[1]*o),(null==A||!isFinite(A))&&(A=NaN),(null==h||!isFinite(h))&&(h=NaN),t.setBlank(i.eqNaN(A)||i.eqNaN(h)||"ordinal"===a&&!t.getOrdinalMeta().categories.length),e.getNeedCrossZero()&&(A>0&&h>0&&!f&&(A=0),A<0&&h<0&&!p&&(h=0));var g=e.ecModel;if(g&&"time"===a){var m,v=l("bar",g);if(i.each(v,function(t){m|=t.getBaseAxis()===e.axis}),m){var y=c(v),w=function(t,e,n,r){var o=n.axis.getExtent(),a=o[1]-o[0],s=u(r,n.axis);if(void 0===s)return{min:t,max:e};var A=1/0;i.each(s,function(t){A=Math.min(t.offset,A)});var l=-1/0;i.each(s,function(t){l=Math.max(t.offset+t.width,l)}),A=Math.abs(A),l=Math.abs(l);var c=A+l,h=e-t,d=h/(1-(A+l)/a)-h;return{min:t-=d*(A/c),max:e+=d*(l/c)}}(A,h,e,y);A=w.min,h=w.max}}return{extent:[A,h],fixMin:f,fixMax:p}}function f(t){var e,n=t.getLabelModel().get("formatter"),i="category"===t.type?t.scale.getExtent()[0]:null;return"string"==typeof n?(e=n,n=function(n){return n=t.scale.getLabel(n),e.replace("{value}",null!=n?n:"")}):"function"==typeof n?function(e,r){return null!=i&&(r=e-i),n(p(t,e),r)}:function(e){return t.scale.getLabel(e)}}function p(t,e){return"category"===t.type?t.scale.getLabel(e):e}function g(t){var e=t.get("interval");return null==e?"auto":e}n("1d4C"),n("Vede"),e.getScaleExtent=d,e.niceScaleExtent=function(t,e){var n=d(t,e),i=n.extent,r=e.get("splitNumber");"log"===t.type&&(t.base=e.get("logBase"));var o=t.type;t.setExtent(i[0],i[1]),t.niceExtent({splitNumber:r,fixMin:n.fixMin,fixMax:n.fixMax,minInterval:"interval"===o||"time"===o?e.get("minInterval"):null,maxInterval:"interval"===o||"time"===o?e.get("maxInterval"):null});var a=e.get("interval");null!=a&&t.setInterval&&t.setInterval(a)},e.createScaleByModel=function(t,e){if(e=e||t.get("type"))switch(e){case"category":return new r(t.getOrdinalMeta?t.getOrdinalMeta():t.getCategories(),[1/0,-1/0]);case"value":return new o;default:return(a.getClass(e)||o).create(t)}},e.ifAxisCrossZero=function(t){var e=t.scale.getExtent(),n=e[0],i=e[1];return!(n>0&&i>0||n<0&&i<0)},e.makeLabelFormatter=f,e.getAxisRawValue=p,e.estimateLabelUnionRect=function(t){var e=t.model,n=t.scale;if(e.get("axisLabel.show")&&!n.isBlank()){var i,r,o="category"===t.type,a=n.getExtent();r=o?n.count():(i=n.getTicks()).length;var s,A,l,c,u,d,p,g,m,v=t.getLabelModel(),y=f(t),w=1;r>40&&(w=Math.ceil(r/40));for(var x=0;x<r;x+=w){var B=y(i?i[x]:a[0]+x),b=v.getTextRect(B),C=(A=b,l=v.get("rotate")||0,c=l*Math.PI/180,u=A.plain(),d=u.width,p=u.height,g=d*Math.abs(Math.cos(c))+Math.abs(p*Math.sin(c)),m=d*Math.abs(Math.sin(c))+Math.abs(p*Math.cos(c)),new h(u.x,u.y,g,m));s?s.union(C):s=C}return s}},e.getOptionCategoryInterval=g,e.shouldShowAllLabels=function(t){return"category"===t.type&&0===g(t.getLabelModel())}},eUbH:function(t,e){var n=function(t){this.colorStops=t||[]};n.prototype={constructor:n,addColorStop:function(t,e){this.colorStops.push({offset:t,color:e})}};var i=n;t.exports=i},ehtc:function(t,e,n){var i=n("A5tq").inherits,r=n("a7jT"),o=n("r+KN");function a(t){r.call(this,t),this._displayables=[],this._temporaryDisplayables=[],this._cursor=0,this.notClear=!0}a.prototype.incremental=!0,a.prototype.clearDisplaybles=function(){this._displayables=[],this._temporaryDisplayables=[],this._cursor=0,this.dirty(),this.notClear=!1},a.prototype.addDisplayable=function(t,e){e?this._temporaryDisplayables.push(t):this._displayables.push(t),this.dirty()},a.prototype.addDisplayables=function(t,e){e=e||!1;for(var n=0;n<t.length;n++)this.addDisplayable(t[n],e)},a.prototype.eachPendingDisplayable=function(t){for(var e=this._cursor;e<this._displayables.length;e++)t&&t(this._displayables[e]);for(e=0;e<this._temporaryDisplayables.length;e++)t&&t(this._temporaryDisplayables[e])},a.prototype.update=function(){this.updateTransform();for(var t=this._cursor;t<this._displayables.length;t++){(e=this._displayables[t]).parent=this,e.update(),e.parent=null}for(t=0;t<this._temporaryDisplayables.length;t++){var e;(e=this._temporaryDisplayables[t]).parent=this,e.update(),e.parent=null}},a.prototype.brush=function(t,e){for(var n=this._cursor;n<this._displayables.length;n++){(i=this._displayables[n]).beforeBrush&&i.beforeBrush(t),i.brush(t,n===this._cursor?null:this._displayables[n-1]),i.afterBrush&&i.afterBrush(t)}this._cursor=n;for(n=0;n<this._temporaryDisplayables.length;n++){var i;(i=this._temporaryDisplayables[n]).beforeBrush&&i.beforeBrush(t),i.brush(t,0===n?null:this._temporaryDisplayables[n-1]),i.afterBrush&&i.afterBrush(t)}this._temporaryDisplayables=[],this.notClear=!0};var s=[];a.prototype.getBoundingRect=function(){if(!this._rect){for(var t=new o(1/0,1/0,-1/0,-1/0),e=0;e<this._displayables.length;e++){var n=this._displayables[e],i=n.getBoundingRect().clone();n.needLocalTransform()&&i.applyTransform(n.getLocalTransform(s)),t.union(i)}this._rect=t}return this._rect},a.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e);if(this.getBoundingRect().contain(n[0],n[1]))for(var i=0;i<this._displayables.length;i++){if(this._displayables[i].contain(t,e))return!0}return!1},i(a,r);var A=a;t.exports=A},ejPS:function(t,e,n){var i=(0,n("bDs9").extendShape)({type:"sausage",shape:{cx:0,cy:0,r0:0,r:0,startAngle:0,endAngle:2*Math.PI,clockwise:!0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r0||0,0),o=Math.max(e.r,0),a=.5*(o-r),s=r+a,A=e.startAngle,l=e.endAngle,c=e.clockwise,u=Math.cos(A),h=Math.sin(A),d=Math.cos(l),f=Math.sin(l);(c?l-A<2*Math.PI:A-l<2*Math.PI)&&(t.moveTo(u*r+n,h*r+i),t.arc(u*s+n,h*s+i,a,-Math.PI+A,A,!c)),t.arc(n,i,o,A,l,!c),t.moveTo(d*o+n,f*o+i),t.arc(d*s+n,f*s+i,a,l-2*Math.PI,l-Math.PI,!c),0!==r&&(t.arc(n,i,r,l,A,c),t.moveTo(u*r+n,f*r+i)),t.closePath()}});t.exports=i},"f+YC":function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("r+KN"),a=n("ixaL").calculateTextPosition,s=r.extendShape({type:"triangle",shape:{cx:0,cy:0,width:0,height:0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=e.width/2,o=e.height/2;t.moveTo(n,i-o),t.lineTo(n+r,i+o),t.lineTo(n-r,i+o),t.closePath()}}),A=r.extendShape({type:"diamond",shape:{cx:0,cy:0,width:0,height:0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=e.width/2,o=e.height/2;t.moveTo(n,i-o),t.lineTo(n+r,i),t.lineTo(n,i+o),t.lineTo(n-r,i),t.closePath()}}),l=r.extendShape({type:"pin",shape:{x:0,y:0,width:0,height:0},buildPath:function(t,e){var n=e.x,i=e.y,r=e.width/5*3,o=Math.max(r,e.height),a=r/2,s=a*a/(o-a),A=i-o+a+s,l=Math.asin(s/a),c=Math.cos(l)*a,u=Math.sin(l),h=Math.cos(l),d=.6*a,f=.7*a;t.moveTo(n-c,A+s),t.arc(n,A,a,Math.PI-l,2*Math.PI+l),t.bezierCurveTo(n+c-u*d,A+s+h*d,n,i-f,n,i),t.bezierCurveTo(n,i-f,n-c+u*d,A+s+h*d,n-c,A+s),t.closePath()}}),c=r.extendShape({type:"arrow",shape:{x:0,y:0,width:0,height:0},buildPath:function(t,e){var n=e.height,i=e.width,r=e.x,o=e.y,a=i/3*2;t.moveTo(r,o),t.lineTo(r+a,o+n),t.lineTo(r,o+n/4*3),t.lineTo(r-a,o+n),t.lineTo(r,o),t.closePath()}}),u={line:r.Line,rect:r.Rect,roundRect:r.Rect,square:r.Rect,circle:r.Circle,diamond:A,pin:l,arrow:c,triangle:s},h={line:function(t,e,n,i,r){r.x1=t,r.y1=e+i/2,r.x2=t+n,r.y2=e+i/2},rect:function(t,e,n,i,r){r.x=t,r.y=e,r.width=n,r.height=i},roundRect:function(t,e,n,i,r){r.x=t,r.y=e,r.width=n,r.height=i,r.r=Math.min(n,i)/4},square:function(t,e,n,i,r){var o=Math.min(n,i);r.x=t,r.y=e,r.width=o,r.height=o},circle:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.r=Math.min(n,i)/2},diamond:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.width=n,r.height=i},pin:function(t,e,n,i,r){r.x=t+n/2,r.y=e+i/2,r.width=n,r.height=i},arrow:function(t,e,n,i,r){r.x=t+n/2,r.y=e+i/2,r.width=n,r.height=i},triangle:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.width=n,r.height=i}},d={};i.each(u,function(t,e){d[e]=new t});var f=r.extendShape({type:"symbol",shape:{symbolType:"",x:0,y:0,width:0,height:0},calculateTextPosition:function(t,e,n){var i=a(t,e,n),r=this.shape;return r&&"pin"===r.symbolType&&"inside"===e.textPosition&&(i.y=n.y+.4*n.height),i},buildPath:function(t,e,n){var i=e.symbolType;if("none"!==i){var r=d[i];r||(r=d[i="rect"]),h[i](e.x,e.y,e.width,e.height,r.shape),r.buildPath(t,r.shape,n)}}});function p(t,e){if("image"!==this.type){var n=this.style,i=this.shape;i&&"line"===i.symbolType?n.stroke=t:this.__isEmptyBrush?(n.stroke=t,n.fill=e||"#fff"):(n.fill&&(n.fill=t),n.stroke&&(n.stroke=t)),this.dirty(!1)}}e.createSymbol=function(t,e,n,i,a,s,A){var l,c=0===t.indexOf("empty");return c&&(t=t.substr(5,1).toLowerCase()+t.substr(6)),(l=0===t.indexOf("image://")?r.makeImage(t.slice(8),new o(e,n,i,a),A?"center":"cover"):0===t.indexOf("path://")?r.makePath(t.slice(7),{},new o(e,n,i,a),A?"center":"cover"):new f({shape:{symbolType:t,x:e,y:n,width:i,height:a}})).__isEmptyBrush=c,l.setColor=p,l.setColor(s),l}},f3dG:function(t,e,n){var i=n("rhmo");function r(t){var e=t.children;return e.length&&t.isExpand?e[e.length-1]:t.hierNode.thread}function o(t){var e=t.children;return e.length&&t.isExpand?e[0]:t.hierNode.thread}function a(t,e,n){return t.hierNode.ancestor.parentNode===e.parentNode?t.hierNode.ancestor:n}function s(t,e,n){var i=n/(e.hierNode.i-t.hierNode.i);e.hierNode.change-=i,e.hierNode.shift+=n,e.hierNode.modifier+=n,e.hierNode.prelim+=n,t.hierNode.change+=i}function A(t,e){return t.parentNode===e.parentNode?1:2}e.init=function(t){t.hierNode={defaultAncestor:null,ancestor:t,prelim:0,modifier:0,change:0,shift:0,i:0,thread:null};for(var e,n,i=[t];e=i.pop();)if(n=e.children,e.isExpand&&n.length)for(var r=n.length-1;r>=0;r--){var o=n[r];o.hierNode={defaultAncestor:null,ancestor:o,prelim:0,modifier:0,change:0,shift:0,i:r,thread:null},i.push(o)}},e.firstWalk=function(t,e){var n=t.isExpand?t.children:[],i=t.parentNode.children,A=t.hierNode.i?i[t.hierNode.i-1]:null;if(n.length){!function(t){for(var e=t.children,n=e.length,i=0,r=0;--n>=0;){var o=e[n];o.hierNode.prelim+=i,o.hierNode.modifier+=i,r+=o.hierNode.change,i+=o.hierNode.shift+r}}(t);var l=(n[0].hierNode.prelim+n[n.length-1].hierNode.prelim)/2;A?(t.hierNode.prelim=A.hierNode.prelim+e(t,A),t.hierNode.modifier=t.hierNode.prelim-l):t.hierNode.prelim=l}else A&&(t.hierNode.prelim=A.hierNode.prelim+e(t,A));t.parentNode.hierNode.defaultAncestor=function(t,e,n,i){if(e){for(var A=t,l=t,c=l.parentNode.children[0],u=e,h=A.hierNode.modifier,d=l.hierNode.modifier,f=c.hierNode.modifier,p=u.hierNode.modifier;u=r(u),l=o(l),u&&l;){A=r(A),c=o(c),A.hierNode.ancestor=t;var g=u.hierNode.prelim+p-l.hierNode.prelim-d+i(u,l);g>0&&(s(a(u,t,n),t,g),d+=g,h+=g),p+=u.hierNode.modifier,d+=l.hierNode.modifier,h+=A.hierNode.modifier,f+=c.hierNode.modifier}u&&!r(A)&&(A.hierNode.thread=u,A.hierNode.modifier+=p-h),l&&!o(c)&&(c.hierNode.thread=l,c.hierNode.modifier+=d-f,n=t)}return n}(t,A,t.parentNode.hierNode.defaultAncestor||i[0],e)},e.secondWalk=function(t){var e=t.hierNode.prelim+t.parentNode.hierNode.modifier;t.setLayout({x:e},!0),t.hierNode.modifier+=t.parentNode.hierNode.modifier},e.separation=function(t){return arguments.length?t:A},e.radialCoordinate=function(t,e){var n={};return t-=Math.PI/2,n.x=e*Math.cos(t),n.y=e*Math.sin(t),n},e.getViewRect=function(t,e){return i.getLayoutRect(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}},f41x:function(t,e,n){var i=n("bDs9"),r=n("loyO"),o=n("A5tq"),a=["itemStyle","opacity"],s=["emphasis","itemStyle","opacity"],A=["lineStyle","opacity"],l=["emphasis","lineStyle","opacity"];function c(t,e){return t.getVisual("opacity")||t.getModel().get(e)}function u(t,e,n){var i=t.getGraphicEl(),r=c(t,e);null!=n&&(null==r&&(r=1),r*=n),i.downplay&&i.downplay(),i.traverse(function(t){"group"!==t.type&&t.setStyle("opacity",r)})}function h(t,e){var n=c(t,e),i=t.getGraphicEl();i.traverse(function(t){"group"!==t.type&&t.setStyle("opacity",n)}),i.highlight&&i.highlight()}var d=i.extendShape({shape:{x1:0,y1:0,x2:0,y2:0,cpx1:0,cpy1:0,cpx2:0,cpy2:0,extent:0,orient:""},buildPath:function(t,e){var n=e.extent;t.moveTo(e.x1,e.y1),t.bezierCurveTo(e.cpx1,e.cpy1,e.cpx2,e.cpy2,e.x2,e.y2),"vertical"===e.orient?(t.lineTo(e.x2+n,e.y2),t.bezierCurveTo(e.cpx2+n,e.cpy2,e.cpx1+n,e.cpy1,e.x1+n,e.y1)):(t.lineTo(e.x2,e.y2+n),t.bezierCurveTo(e.cpx2,e.cpy2+n,e.cpx1,e.cpy1+n,e.x1,e.y1+n)),t.closePath()},highlight:function(){this.trigger("emphasis")},downplay:function(){this.trigger("normal")}}),f=r.extendChartView({type:"sankey",_model:null,_focusAdjacencyDisabled:!1,render:function(t,e,n){var r=this,o=t.getGraph(),a=this.group,s=t.layoutInfo,A=s.width,l=s.height,c=t.getData(),u=t.getData("edge"),h=t.get("orient");this._model=t,a.removeAll(),a.attr("position",[s.x,s.y]),o.eachEdge(function(e){var n=new d;n.dataIndex=e.dataIndex,n.seriesIndex=t.seriesIndex,n.dataType="edge";var r,o,s,c,f,p,g,m,v=e.getModel("lineStyle"),y=v.get("curveness"),w=e.node1.getLayout(),x=e.node1.getModel(),B=x.get("localX"),b=x.get("localY"),C=e.node2.getLayout(),_=e.node2.getModel(),S=_.get("localX"),I=_.get("localY"),T=e.getLayout();switch(n.shape.extent=Math.max(1,T.dy),n.shape.orient=h,"vertical"===h?(r=(null!=B?B*A:w.x)+T.sy,o=(null!=b?b*l:w.y)+w.dy,s=(null!=S?S*A:C.x)+T.ty,f=r,p=o*(1-y)+(c=null!=I?I*l:C.y)*y,g=s,m=o*y+c*(1-y)):(r=(null!=B?B*A:w.x)+w.dx,o=(null!=b?b*l:w.y)+T.sy,f=r*(1-y)+(s=null!=S?S*A:C.x)*y,p=o,g=r*y+s*(1-y),m=c=(null!=I?I*l:C.y)+T.ty),n.setShape({x1:r,y1:o,x2:s,y2:c,cpx1:f,cpy1:p,cpx2:g,cpy2:m}),n.setStyle(v.getItemStyle()),n.style.fill){case"source":n.style.fill=e.node1.getVisual("color");break;case"target":n.style.fill=e.node2.getVisual("color")}i.setHoverStyle(n,e.getModel("emphasis.lineStyle").getItemStyle()),a.add(n),u.setItemGraphicEl(e.dataIndex,n)}),o.eachNode(function(e){var n=e.getLayout(),r=e.getModel(),o=r.get("localX"),s=r.get("localY"),u=r.getModel("label"),h=r.getModel("emphasis.label"),d=new i.Rect({shape:{x:null!=o?o*A:n.x,y:null!=s?s*l:n.y,width:n.dx,height:n.dy},style:r.getModel("itemStyle").getItemStyle()}),f=e.getModel("emphasis.itemStyle").getItemStyle();i.setLabelStyle(d.style,f,u,h,{labelFetcher:t,labelDataIndex:e.dataIndex,defaultText:e.id,isRectText:!0}),d.setStyle("fill",e.getVisual("color")),i.setHoverStyle(d,f),a.add(d),c.setItemGraphicEl(e.dataIndex,d),d.dataType="node"}),c.eachItemGraphicEl(function(e,i){var o=c.getItemModel(i);o.get("draggable")&&(e.drift=function(e,o){r._focusAdjacencyDisabled=!0,this.shape.x+=e,this.shape.y+=o,this.dirty(),n.dispatchAction({type:"dragNode",seriesId:t.id,dataIndex:c.getRawIndex(i),localX:this.shape.x/A,localY:this.shape.y/l})},e.ondragend=function(){r._focusAdjacencyDisabled=!1},e.draggable=!0,e.cursor="move"),e.highlight=function(){this.trigger("emphasis")},e.downplay=function(){this.trigger("normal")},e.focusNodeAdjHandler&&e.off("mouseover",e.focusNodeAdjHandler),e.unfocusNodeAdjHandler&&e.off("mouseout",e.unfocusNodeAdjHandler),o.get("focusNodeAdjacency")&&(e.on("mouseover",e.focusNodeAdjHandler=function(){r._focusAdjacencyDisabled||(r._clearTimer(),n.dispatchAction({type:"focusNodeAdjacency",seriesId:t.id,dataIndex:e.dataIndex}))}),e.on("mouseout",e.unfocusNodeAdjHandler=function(){r._focusAdjacencyDisabled||r._dispatchUnfocus(n)}))}),u.eachItemGraphicEl(function(e,i){var o=u.getItemModel(i);e.focusNodeAdjHandler&&e.off("mouseover",e.focusNodeAdjHandler),e.unfocusNodeAdjHandler&&e.off("mouseout",e.unfocusNodeAdjHandler),o.get("focusNodeAdjacency")&&(e.on("mouseover",e.focusNodeAdjHandler=function(){r._focusAdjacencyDisabled||(r._clearTimer(),n.dispatchAction({type:"focusNodeAdjacency",seriesId:t.id,edgeDataIndex:e.dataIndex}))}),e.on("mouseout",e.unfocusNodeAdjHandler=function(){r._focusAdjacencyDisabled||r._dispatchUnfocus(n)}))}),!this._data&&t.get("animation")&&a.setClipPath(function(t,e,n){var r=new i.Rect({shape:{x:t.x-10,y:t.y-10,width:0,height:t.height+20}});return i.initProps(r,{shape:{width:t.width+20}},e,n),r}(a.getBoundingRect(),t,function(){a.removeClipPath()})),this._data=t.getData()},dispose:function(){this._clearTimer()},_dispatchUnfocus:function(t){var e=this;this._clearTimer(),this._unfocusDelayTimer=setTimeout(function(){e._unfocusDelayTimer=null,t.dispatchAction({type:"unfocusNodeAdjacency",seriesId:e._model.id})},500)},_clearTimer:function(){this._unfocusDelayTimer&&(clearTimeout(this._unfocusDelayTimer),this._unfocusDelayTimer=null)},focusNodeAdjacency:function(t,e,n,i){var r=t.getData(),c=r.graph,d=i.dataIndex,f=r.getItemModel(d),p=i.edgeDataIndex;if(null!=d||null!=p){var g=c.getNodeByIndex(d),m=c.getEdgeByIndex(p);if(c.eachNode(function(t){u(t,a,.1)}),c.eachEdge(function(t){u(t,A,.1)}),g){h(g,s);var v=f.get("focusNodeAdjacency");"outEdges"===v?o.each(g.outEdges,function(t){t.dataIndex<0||(h(t,l),h(t.node2,s))}):"inEdges"===v?o.each(g.inEdges,function(t){t.dataIndex<0||(h(t,l),h(t.node1,s))}):"allEdges"===v&&o.each(g.edges,function(t){t.dataIndex<0||(h(t,l),t.node1!==g&&h(t.node1,s),t.node2!==g&&h(t.node2,s))})}m&&(h(m,l),h(m.node1,s),h(m.node2,s))}},unfocusNodeAdjacency:function(t,e,n,i){var r=t.getGraph();r.eachNode(function(t){u(t,a)}),r.eachEdge(function(t){u(t,A)})}});t.exports=f},f80B:function(t,e,n){n("aNYc"),n("cnxE"),n("/oKt")},fA9A:function(t,e,n){"use strict";var i=n("ywUT");t.exports=function(t,e){e=e||{};var n={},r=["url","method","params","data"],o=["headers","auth","proxy"],a=["baseURL","url","transformRequest","transformResponse","paramsSerializer","timeout","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","maxContentLength","validateStatus","maxRedirects","httpAgent","httpsAgent","cancelToken","socketPath"];i.forEach(r,function(t){void 0!==e[t]&&(n[t]=e[t])}),i.forEach(o,function(r){i.isObject(e[r])?n[r]=i.deepMerge(t[r],e[r]):void 0!==e[r]?n[r]=e[r]:i.isObject(t[r])?n[r]=i.deepMerge(t[r]):void 0!==t[r]&&(n[r]=t[r])}),i.forEach(a,function(i){void 0!==e[i]?n[i]=e[i]:void 0!==t[i]&&(n[i]=t[i])});var s=r.concat(o).concat(a),A=Object.keys(e).filter(function(t){return-1===s.indexOf(t)});return i.forEach(A,function(i){void 0!==e[i]?n[i]=e[i]:void 0!==t[i]&&(n[i]=t[i])}),n}},fBU7:function(t,e){var n={shadowBlur:1,shadowOffsetX:1,shadowOffsetY:1,textShadowBlur:1,textShadowOffsetX:1,textShadowOffsetY:1,textBoxShadowBlur:1,textBoxShadowOffsetX:1,textBoxShadowOffsetY:1};t.exports=function(t,e,i){return n.hasOwnProperty(e)?i*t.dpr:i}},fBqT:function(t,e,n){var i=n("A5tq"),r=n("m9W5"),o=function(t,e,n,i,o){r.call(this,t,e,n),this.type=i||"value",this.position=o||"bottom"};o.prototype={constructor:o,index:0,getAxesOnZeroOf:null,model:null,isHorizontal:function(){var t=this.position;return"top"===t||"bottom"===t},getGlobalExtent:function(t){var e=this.getExtent();return e[0]=this.toGlobalCoord(e[0]),e[1]=this.toGlobalCoord(e[1]),t&&e[0]>e[1]&&e.reverse(),e},getOtherAxis:function(){this.grid.getOtherAxis()},pointToData:function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},toLocalCoord:null,toGlobalCoord:null},i.inherits(o,r);var a=o;t.exports=a},fUtP:function(t,e,n){var i=n("A5tq"),r=n("eUbH"),o=function(t,e,n,i,o,a){this.x=null==t?0:t,this.y=null==e?0:e,this.x2=null==n?1:n,this.y2=null==i?0:i,this.type="linear",this.global=a||!1,r.call(this,o)};o.prototype={constructor:o},i.inherits(o,r);var a=o;t.exports=a},"fh+U":function(t,e,n){"use strict";var i=n("ywUT");function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)?e+="[]":t=[t],i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}if(o){var s=t.indexOf("#");-1!==s&&(t=t.slice(0,s)),t+=(-1===t.indexOf("?")?"?":"&")+o}return t}},fs8b:function(t,e,n){var i=n("lkON").circularLayout;t.exports=function(t){t.eachSeriesByType("graph",function(t){"circular"===t.get("layout")&&i(t,"symbolSize")})}},ftP0:function(t,e,n){var i=n("UnJe"),r=n("Ldp7"),o=i.extend({type:"sector",shape:{cx:0,cy:0,r0:0,r:0,startAngle:0,endAngle:2*Math.PI,clockwise:!0},brush:r(i.prototype.brush),buildPath:function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r0||0,0),o=Math.max(e.r,0),a=e.startAngle,s=e.endAngle,A=e.clockwise,l=Math.cos(a),c=Math.sin(a);t.moveTo(l*r+n,c*r+i),t.lineTo(l*o+n,c*o+i),t.arc(n,i,o,a,s,!A),t.lineTo(Math.cos(s)*r+n,Math.sin(s)*r+i),0!==r&&t.arc(n,i,r,s,a,A),t.closePath()}});t.exports=o},fxHw:function(t,e,n){var i=n("A5tq"),r=i.each,o=i.isString;function a(t,e){return!!e&&e===t.getCalculationInfo("stackedDimension")}e.enableDataStack=function(t,e,n){var i,a,s,A,l=(n=n||{}).byIndex,c=n.stackedCoordDimension,u=!(!t||!t.get("stack"));if(r(e,function(t,n){o(t)&&(e[n]=t={name:t}),u&&!t.isExtraCoord&&(l||i||!t.ordinalMeta||(i=t),a||"ordinal"===t.type||"time"===t.type||c&&c!==t.coordDim||(a=t))}),!a||l||i||(l=!0),a){s="__\0ecstackresult",A="__\0ecstackedover",i&&(i.createInvertedIndices=!0);var h=a.coordDim,d=a.type,f=0;r(e,function(t){t.coordDim===h&&f++}),e.push({name:s,coordDim:h,coordDimIndex:f,type:d,isExtraCoord:!0,isCalculationCoord:!0}),f++,e.push({name:A,coordDim:A,coordDimIndex:f,type:d,isExtraCoord:!0,isCalculationCoord:!0})}return{stackedDimension:a&&a.name,stackedByDimension:i&&i.name,isStackedByIndex:l,stackedOverDimension:A,stackResultDimension:s}},e.isDimensionStacked=a,e.getStackedDimension=function(t,e){return a(t,e)?t.getCalculationInfo("stackResultDimension"):e}},"g+7e":function(t,e,n){var i=n("a7jT"),r=n("A5tq"),o=n("ixaL"),a=n("lk7o"),s=n("yQXb").ContextCachedBy,A=function(t){i.call(this,t)};A.prototype={constructor:A,type:"text",brush:function(t,e){var n=this.style;this.__dirty&&a.normalizeTextStyle(n,!0),n.fill=n.stroke=n.shadowBlur=n.shadowColor=n.shadowOffsetX=n.shadowOffsetY=null;var i=n.text;null!=i&&(i+=""),a.needDrawText(i,n)?(this.setTransform(t),a.renderText(this,t,i,n,null,e),this.restoreTransform(t)):t.__attrCachedBy=s.NONE},getBoundingRect:function(){var t=this.style;if(this.__dirty&&a.normalizeTextStyle(t,!0),!this._rect){var e=t.text;null!=e?e+="":e="";var n=o.getBoundingRect(t.text+"",t.font,t.textAlign,t.textVerticalAlign,t.textPadding,t.textLineHeight,t.rich);if(n.x+=t.x||0,n.y+=t.y||0,a.getStroke(t.textStroke,t.textStrokeWidth)){var i=t.textStrokeWidth;n.x-=i/2,n.y-=i/2,n.width+=i,n.height+=i}this._rect=n}return this._rect}},r.inherits(A,i);var l=A;t.exports=l},"gAh+":function(t,e,n){"use strict";(function(e){var i=n("ywUT"),r=n("OVjb"),o={"Content-Type":"application/x-www-form-urlencoded"};function a(t,e){!i.isUndefined(t)&&i.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var s,A={adapter:("undefined"!=typeof XMLHttpRequest?s=n("KvEU"):void 0!==e&&"[object process]"===Object.prototype.toString.call(e)&&(s=n("KvEU")),s),transformRequest:[function(t,e){return r(e,"Accept"),r(e,"Content-Type"),i.isFormData(t)||i.isArrayBuffer(t)||i.isBuffer(t)||i.isStream(t)||i.isFile(t)||i.isBlob(t)?t:i.isArrayBufferView(t)?t.buffer:i.isURLSearchParams(t)?(a(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):i.isObject(t)?(a(e,"application/json;charset=utf-8"),JSON.stringify(t)):t}],transformResponse:[function(t){if("string"==typeof t)try{t=JSON.parse(t)}catch(t){}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(t){return t>=200&&t<300}};A.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){A.headers[t]={}}),i.forEach(["post","put","patch"],function(t){A.headers[t]=i.merge(o)}),t.exports=A}).call(e,n("V0EG"))},gNSS:function(t,e,n){var i=n("loyO");n("RBIR"),n("+pxS"),n("5ZXq");var r=n("F7VL"),o=n("9IEk");i.registerVisual(r),i.registerLayout(o)},gSjZ:function(t,e,n){var i=n("A5tq"),r=n("w9uD");function o(t,e,n){if(t.count())for(var r,o=e.coordinateSystem,a=e.getLayerSeries(),s=t.mapDimension("single"),A=t.mapDimension("value"),l=i.map(a,function(e){return i.map(e.indices,function(e){var n=o.dataToPoint(t.get(s,e));return n[1]=t.get(A,e),n})}),c=function(t){for(var e=t.length,n=t[0].length,i=[],r=[],o=0,a={},s=0;s<n;++s){for(var A=0,l=0;A<e;++A)l+=t[A][s][1];l>o&&(o=l),i.push(l)}for(var c=0;c<n;++c)r[c]=(o-i[c])/2;o=0;for(var u=0;u<n;++u){var h=i[u]+r[u];h>o&&(o=h)}return a.y0=r,a.max=o,a}(l),u=c.y0,h=n/c.max,d=a.length,f=a[0].indices.length,p=0;p<f;++p){r=u[p]*h,t.setItemLayout(a[0].indices[p],{layerIndex:0,x:l[0][p][0],y0:r,y:l[0][p][1]*h});for(var g=1;g<d;++g)r+=l[g-1][p][1]*h,t.setItemLayout(a[g].indices[p],{layerIndex:g,x:l[g][p][0],y0:r,y:l[g][p][1]*h})}}t.exports=function(t,e){t.eachSeriesByType("themeRiver",function(t){var e=t.getData(),n=t.coordinateSystem,i={},a=n.getRect();i.rect=a;var s=t.get("boundaryGap"),A=n.getAxis();i.boundaryGap=s,"horizontal"===A.orient?(s[0]=r.parsePercent(s[0],a.height),s[1]=r.parsePercent(s[1],a.height),o(e,t,a.height-s[0]-s[1])):(s[0]=r.parsePercent(s[0],a.width),s[1]=r.parsePercent(s[1],a.width),o(e,t,a.width-s[0]-s[1])),e.setLayout("layoutInfo",i)})}},gX8P:function(t,e,n){"use strict";function i(t){this.message=t}i.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},i.prototype.__CANCEL__=!0,t.exports=i},gj94:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("3Voe"),o=i.extendComponentView({type:"axis",_axisPointer:null,axisPointerClass:null,render:function(t,e,n,i){this.axisPointerClass&&r.fixValue(t),o.superApply(this,"render",arguments),a(this,t,e,n,i,!0)},updateAxisPointer:function(t,e,n,i,r){a(this,t,e,n,i,!1)},remove:function(t,e){var n=this._axisPointer;n&&n.remove(e),o.superApply(this,"remove",arguments)},dispose:function(t,e){s(this,e),o.superApply(this,"dispose",arguments)}});function a(t,e,n,i,a,A){var l=o.getAxisPointerClass(t.axisPointerClass);if(l){var c=r.getAxisPointerModel(e);c?(t._axisPointer||(t._axisPointer=new l)).render(e,c,i,A):s(t,i)}}function s(t,e,n){var i=t._axisPointer;i&&i.dispose(e,n),t._axisPointer=null}var A=[];o.registerAxisPointerClass=function(t,e){A[t]=e},o.getAxisPointerClass=function(t){return t&&A[t]};var l=o;t.exports=l},gl0p:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("3oqo").fromPoints,o=n("ZVMY"),a=n("2KC6"),s=n("bEqG"),A=n("bDs9"),l=n("65+t"),c=n("H+Fz"),u=c.Polyline,h=c.Polygon,d=n("zrBH"),f=n("63Q/"),p=f.prepareDataCoordInfo,g=f.getStackedOnPoint,m=n("+2Hi"),v=m.createGridClipPath,y=m.createPolarClipPath;function w(t,e){if(t.length===e.length){for(var n=0;n<t.length;n++){var i=t[n],r=e[n];if(i[0]!==r[0]||i[1]!==r[1])return}return!0}}function x(t,e){var n=[],i=[],o=[],a=[];return r(t,n,i),r(e,o,a),Math.max(Math.abs(n[0]-o[0]),Math.abs(n[1]-o[1]),Math.abs(i[0]-a[0]),Math.abs(i[1]-a[1]))}function B(t){return"number"==typeof t?t:t?.5:0}function b(t,e,n){for(var i=e.getBaseAxis(),r="x"===i.dim||"radius"===i.dim?0:1,o=[],a=0;a<t.length-1;a++){var s=t[a+1],A=t[a];o.push(A);var l=[];switch(n){case"end":l[r]=s[r],l[1-r]=A[1-r],o.push(l);break;case"middle":var c=(A[r]+s[r])/2,u=[];l[r]=u[r]=c,l[1-r]=A[1-r],u[1-r]=s[1-r],o.push(l),o.push(u);break;default:l[r]=A[r],l[1-r]=s[1-r],o.push(l)}}return t[a]&&o.push(t[a]),o}function C(t,e,n){var r=t.get("showAllSymbol"),o="auto"===r;if(!r||o){var s=n.getAxesByScale("ordinal")[0];if(s&&(!o||!function(t,e){var n=t.getExtent(),i=Math.abs(n[1]-n[0])/t.scale.count();isNaN(i)&&(i=0);for(var r=e.count(),o=Math.max(1,Math.round(r/5)),s=0;s<r;s+=o)if(1.5*a.getSymbolSize(e,s)[t.isHorizontal()?1:0]>i)return!1;return!0}(s,e))){var A=e.mapDimension(s.dim),l={};return i.each(s.getViewLabels(),function(t){l[t.tickValue]=1}),function(t){return!l.hasOwnProperty(e.get(A,t))}}}}function _(t,e,n){if("cartesian2d"===t.type){var i=t.getBaseAxis().isHorizontal(),r=v(t,e,n);if(!n.get("clip",!0)){var o=r.shape,a=Math.max(o.width,o.height);i?(o.y-=a,o.height+=2*a):(o.x-=a,o.width+=2*a)}return r}return y(t,e,n)}var S=d.extend({type:"line",init:function(){var t=new A.Group,e=new o;this.group.add(e.group),this._symbolDraw=e,this._lineGroup=t},render:function(t,e,n){var r=t.coordinateSystem,o=this.group,a=t.getData(),s=t.getModel("lineStyle"),l=t.getModel("areaStyle"),c=a.mapArray(a.getItemLayout),u="polar"===r.type,h=this._coordSys,d=this._symbolDraw,f=this._polyline,m=this._polygon,v=this._lineGroup,y=t.get("animation"),x=!l.isEmpty(),S=l.get("origin"),I=function(t,e,n){if(!n.valueDim)return[];for(var i=[],r=0,o=e.count();r<o;r++)i.push(g(n,t,e,r));return i}(r,a,p(r,a,S)),T=t.get("showSymbol"),M=T&&!u&&C(t,a,r),Q=this._data;Q&&Q.eachItemGraphicEl(function(t,e){t.__temp&&(o.remove(t),Q.setItemGraphicEl(e,null))}),T||d.remove(),o.add(v);var F,k=!u&&t.get("step");r&&r.getArea&&t.get("clip",!0)&&(null!=(F=r.getArea()).width?(F.x-=.1,F.y-=.1,F.width+=.2,F.height+=.2):F.r0&&(F.r0-=.5,F.r1+=.5)),this._clipShapeForSymbol=F,f&&h.type===r.type&&k===this._step?(x&&!m?m=this._newPolygon(c,I,r,y):m&&!x&&(v.remove(m),m=this._polygon=null),v.setClipPath(_(r,!1,t)),T&&d.updateData(a,{isIgnore:M,clipShape:F}),a.eachItemGraphicEl(function(t){t.stopAnimation(!0)}),w(this._stackedOnPoints,I)&&w(this._points,c)||(y?this._updateAnimation(a,I,r,n,k,S):(k&&(c=b(c,r,k),I=b(I,r,k)),f.setShape({points:c}),m&&m.setShape({points:c,stackedOnPoints:I})))):(T&&d.updateData(a,{isIgnore:M,clipShape:F}),k&&(c=b(c,r,k),I=b(I,r,k)),f=this._newPolyline(c,r,y),x&&(m=this._newPolygon(c,I,r,y)),v.setClipPath(_(r,!0,t)));var D=function(t,e){var n=t.getVisual("visualMeta");if(n&&n.length&&t.count()&&"cartesian2d"===e.type){for(var r,o,a=n.length-1;a>=0;a--){var s=n[a].dimension,l=t.dimensions[s],c=t.getDimensionInfo(l);if("x"===(r=c&&c.coordDim)||"y"===r){o=n[a];break}}if(o){var u=e.getAxis(r),h=i.map(o.stops,function(t){return{coord:u.toGlobalCoord(u.dataToCoord(t.value)),color:t.color}}),d=h.length,f=o.outerColors.slice();d&&h[0].coord>h[d-1].coord&&(h.reverse(),f.reverse());var p=h[0].coord-10,g=h[d-1].coord+10,m=g-p;if(m<.001)return"transparent";i.each(h,function(t){t.offset=(t.coord-p)/m}),h.push({offset:d?h[d-1].offset:.5,color:f[1]||"transparent"}),h.unshift({offset:d?h[0].offset:.5,color:f[0]||"transparent"});var v=new A.LinearGradient(0,0,0,0,h,!0);return v[r]=p,v[r+"2"]=g,v}}}(a,r)||a.getVisual("color");f.useStyle(i.defaults(s.getLineStyle(),{fill:"none",stroke:D,lineJoin:"bevel"}));var U=t.get("smooth");if(U=B(t.get("smooth")),f.setShape({smooth:U,smoothMonotone:t.get("smoothMonotone"),connectNulls:t.get("connectNulls")}),m){var E=a.getCalculationInfo("stackedOnSeries"),L=0;m.useStyle(i.defaults(l.getAreaStyle(),{fill:D,opacity:.7,lineJoin:"bevel"})),E&&(L=B(E.get("smooth"))),m.setShape({smooth:U,stackedOnSmooth:L,smoothMonotone:t.get("smoothMonotone"),connectNulls:t.get("connectNulls")})}this._data=a,this._coordSys=r,this._stackedOnPoints=I,this._points=c,this._step=k,this._valueOrigin=S},dispose:function(){},highlight:function(t,e,n,i){var r=t.getData(),o=l.queryDataIndex(r,i);if(!(o instanceof Array)&&null!=o&&o>=0){var s=r.getItemGraphicEl(o);if(!s){var A=r.getItemLayout(o);if(!A)return;if(this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(A[0],A[1]))return;(s=new a(r,o)).position=A,s.setZ(t.get("zlevel"),t.get("z")),s.ignore=isNaN(A[0])||isNaN(A[1]),s.__temp=!0,r.setItemGraphicEl(o,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else d.prototype.highlight.call(this,t,e,n,i)},downplay:function(t,e,n,i){var r=t.getData(),o=l.queryDataIndex(r,i);if(null!=o&&o>=0){var a=r.getItemGraphicEl(o);a&&(a.__temp?(r.setItemGraphicEl(o,null),this.group.remove(a)):a.downplay())}else d.prototype.downplay.call(this,t,e,n,i)},_newPolyline:function(t){var e=this._polyline;return e&&this._lineGroup.remove(e),e=new u({shape:{points:t},silent:!0,z2:10}),this._lineGroup.add(e),this._polyline=e,e},_newPolygon:function(t,e){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new h({shape:{points:t,stackedOnPoints:e},silent:!0}),this._lineGroup.add(n),this._polygon=n,n},_updateAnimation:function(t,e,n,i,r,o){var a=this._polyline,l=this._polygon,c=t.hostModel,u=s(this._data,t,this._stackedOnPoints,e,this._coordSys,n,this._valueOrigin,o),h=u.current,d=u.stackedOnCurrent,f=u.next,p=u.stackedOnNext;if(r&&(h=b(u.current,n,r),d=b(u.stackedOnCurrent,n,r),f=b(u.next,n,r),p=b(u.stackedOnNext,n,r)),x(h,f)>3e3||l&&x(d,p)>3e3)return a.setShape({points:f}),void(l&&l.setShape({points:f,stackedOnPoints:p}));a.shape.__points=u.current,a.shape.points=h,A.updateProps(a,{shape:{points:f}},c),l&&(l.setShape({points:h,stackedOnPoints:d}),A.updateProps(l,{shape:{points:f,stackedOnPoints:p}},c));for(var g=[],m=u.status,v=0;v<m.length;v++){if("="===m[v].cmd){var y=t.getItemGraphicEl(m[v].idx1);y&&g.push({el:y,ptIdx:v})}}a.animators&&a.animators.length&&a.animators[0].during(function(){for(var t=0;t<g.length;t++){g[t].el.attr("position",a.shape.__points[g[t].ptIdx])}})},remove:function(t){var e=this.group,n=this._data;this._lineGroup.removeAll(),this._symbolDraw.remove(!0),n&&n.eachItemGraphicEl(function(t,i){t.__temp&&(e.remove(t),n.setItemGraphicEl(i,null))}),this._polyline=this._polygon=this._coordSys=this._points=this._stackedOnPoints=this._data=null}});t.exports=S},gnDw:function(t,e,n){var i=n("A5tq"),r=n("fUtP"),o=n("TfMJ"),a=n("Amko"),s=n("bDs9"),A=n("w9uD"),l=n("BGuy"),c=n("/Xsr"),u=n("65+t"),h=A.linearMap,d=i.each,f=Math.min,p=Math.max,g=12,m=6,v=a.extend({type:"visualMap.continuous",init:function(){v.superApply(this,"init",arguments),this._shapes={},this._dataInterval=[],this._handleEnds=[],this._orient,this._useHandle,this._hoverLinkDataIndices=[],this._dragging,this._hovering},doRender:function(t,e,n,i){i&&"selectDataRange"===i.type&&i.from===this.uid||this._buildView()},_buildView:function(){this.group.removeAll();var t=this.visualMapModel,e=this.group;this._orient=t.get("orient"),this._useHandle=t.get("calculable"),this._resetInterval(),this._renderBar(e);var n=t.get("text");this._renderEndsText(e,n,0),this._renderEndsText(e,n,1),this._updateView(!0),this.renderBackground(e),this._updateView(),this._enableHoverLinkToSeries(),this._enableHoverLinkFromSeries(),this.positionGroup(e)},_renderEndsText:function(t,e,n){if(e){var i=e[1-n];i=null!=i?i+"":"";var r=this.visualMapModel,o=r.get("textGap"),a=r.itemSize,A=this._shapes.barGroup,l=this._applyTransform([a[0]/2,0===n?-o:a[1]+o],A),c=this._applyTransform(0===n?"bottom":"top",A),u=this._orient,h=this.visualMapModel.textStyleModel;this.group.add(new s.Text({style:{x:l[0],y:l[1],textVerticalAlign:"horizontal"===u?"middle":c,textAlign:"horizontal"===u?c:"center",text:i,textFont:h.getFont(),textFill:h.getTextColor()}}))}},_renderBar:function(t){var e=this.visualMapModel,n=this._shapes,r=e.itemSize,o=this._orient,a=this._useHandle,s=c.getItemAlign(e,this.api,r),A=n.barGroup=this._createBarGroup(s);A.add(n.outOfRange=y()),A.add(n.inRange=y(null,a?x(this._orient):null,i.bind(this._dragHandle,this,"all",!1),i.bind(this._dragHandle,this,"all",!0)));var l=e.textStyleModel.getTextRect("鍥�"),u=p(l.width,l.height);a&&(n.handleThumbs=[],n.handleLabels=[],n.handleLabelPoints=[],this._createHandle(A,0,r,u,o,s),this._createHandle(A,1,r,u,o,s)),this._createIndicator(A,r,u,o),t.add(A)},_createHandle:function(t,e,n,r,a){var A=i.bind(this._dragHandle,this,e,!1),l=i.bind(this._dragHandle,this,e,!0),c=y(function(t,e){return 0===t?[[0,0],[e,0],[e,-e]]:[[0,0],[e,0],[e,e]]}(e,r),x(this._orient),A,l);c.position[0]=n[0],t.add(c);var u=this.visualMapModel.textStyleModel,h=new s.Text({draggable:!0,drift:A,onmousemove:function(t){o.stop(t.event)},ondragend:l,style:{x:0,y:0,text:"",textFont:u.getFont(),textFill:u.getTextColor()}});this.group.add(h);var d=["horizontal"===a?r/2:1.5*r,"horizontal"===a?0===e?-1.5*r:1.5*r:0===e?-r/2:r/2],f=this._shapes;f.handleThumbs[e]=c,f.handleLabelPoints[e]=d,f.handleLabels[e]=h},_createIndicator:function(t,e,n,i){var r=y([[0,0]],"move");r.position[0]=e[0],r.attr({invisible:!0,silent:!0}),t.add(r);var o=this.visualMapModel.textStyleModel,a=new s.Text({silent:!0,invisible:!0,style:{x:0,y:0,text:"",textFont:o.getFont(),textFill:o.getTextColor()}});this.group.add(a);var A=["horizontal"===i?n/2:m+3,0],l=this._shapes;l.indicator=r,l.indicatorLabel=a,l.indicatorLabelPoint=A},_dragHandle:function(t,e,n,i){if(this._useHandle){if(this._dragging=!e,!e){var r=this._applyTransform([n,i],this._shapes.barGroup,!0);this._updateInterval(t,r[1]),this._updateView()}e===!this.visualMapModel.get("realtime")&&this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:this._dataInterval.slice()}),e?!this._hovering&&this._clearHoverLinkToSeries():w(this.visualMapModel)&&this._doHoverLinkToSeries(this._handleEnds[t],!1)}},_resetInterval:function(){var t=this.visualMapModel,e=this._dataInterval=t.getSelected(),n=t.getExtent(),i=[0,t.itemSize[1]];this._handleEnds=[h(e[0],n,i,!0),h(e[1],n,i,!0)]},_updateInterval:function(t,e){e=e||0;var n=this.visualMapModel,i=this._handleEnds,r=[0,n.itemSize[1]];l(e,i,r,t,0);var o=n.getExtent();this._dataInterval=[h(i[0],r,o,!0),h(i[1],r,o,!0)]},_updateView:function(t){var e=this.visualMapModel,n=e.getExtent(),i=this._shapes,r=[0,e.itemSize[1]],o=t?r:this._handleEnds,a=this._createBarVisual(this._dataInterval,n,o,"inRange"),s=this._createBarVisual(n,n,r,"outOfRange");i.inRange.setStyle({fill:a.barColor,opacity:a.opacity}).setShape("points",a.barPoints),i.outOfRange.setStyle({fill:s.barColor,opacity:s.opacity}).setShape("points",s.barPoints),this._updateHandle(o,a)},_createBarVisual:function(t,e,n,i){var o={forceState:i,convertOpacityToAlpha:!0},a=this._makeColorGradient(t,o),s=[this.getControllerVisual(t[0],"symbolSize",o),this.getControllerVisual(t[1],"symbolSize",o)],A=this._createBarPoints(n,s);return{barColor:new r(0,0,0,1,a),barPoints:A,handlesColor:[a[0].color,a[a.length-1].color]}},_makeColorGradient:function(t,e){var n=[],i=(t[1]-t[0])/100;n.push({color:this.getControllerVisual(t[0],"color",e),offset:0});for(var r=1;r<100;r++){var o=t[0]+i*r;if(o>t[1])break;n.push({color:this.getControllerVisual(o,"color",e),offset:r/100})}return n.push({color:this.getControllerVisual(t[1],"color",e),offset:1}),n},_createBarPoints:function(t,e){var n=this.visualMapModel.itemSize;return[[n[0]-e[0],t[0]],[n[0],t[0]],[n[0],t[1]],[n[0]-e[1],t[1]]]},_createBarGroup:function(t){var e=this._orient,n=this.visualMapModel.get("inverse");return new s.Group("horizontal"!==e||n?"horizontal"===e&&n?{scale:"bottom"===t?[-1,1]:[1,1],rotation:-Math.PI/2}:"vertical"!==e||n?{scale:"left"===t?[1,1]:[-1,1]}:{scale:"left"===t?[1,-1]:[-1,-1]}:{scale:"bottom"===t?[1,1]:[-1,1],rotation:Math.PI/2})},_updateHandle:function(t,e){if(this._useHandle){var n=this._shapes,i=this.visualMapModel,r=n.handleThumbs,o=n.handleLabels;d([0,1],function(a){var A=r[a];A.setStyle("fill",e.handlesColor[a]),A.position[1]=t[a];var l=s.applyTransform(n.handleLabelPoints[a],s.getTransform(A,this.group));o[a].setStyle({x:l[0],y:l[1],text:i.formatValueText(this._dataInterval[a]),textVerticalAlign:"middle",textAlign:this._applyTransform("horizontal"===this._orient?0===a?"bottom":"top":"left",n.barGroup)})},this)}},_showIndicator:function(t,e,n,i){var r=this.visualMapModel,o=r.getExtent(),a=r.itemSize,A=[0,a[1]],l=h(t,o,A,!0),c=this._shapes,u=c.indicator;if(u){u.position[1]=l,u.attr("invisible",!1),u.setShape("points",function(t,e,n,i){return t?[[0,-f(e,p(n,0))],[m,0],[0,f(e,p(i-n,0))]]:[[0,0],[5,-5],[5,5]]}(!!n,i,l,a[1]));var d=this.getControllerVisual(t,"color",{convertOpacityToAlpha:!0});u.setStyle("fill",d);var g=s.applyTransform(c.indicatorLabelPoint,s.getTransform(u,this.group)),v=c.indicatorLabel;v.attr("invisible",!1);var y=this._applyTransform("left",c.barGroup),w=this._orient;v.setStyle({text:(n||"")+r.formatValueText(e),textVerticalAlign:"horizontal"===w?y:"middle",textAlign:"horizontal"===w?"center":y,x:g[0],y:g[1]})}},_enableHoverLinkToSeries:function(){var t=this;this._shapes.barGroup.on("mousemove",function(e){if(t._hovering=!0,!t._dragging){var n=t.visualMapModel.itemSize,i=t._applyTransform([e.offsetX,e.offsetY],t._shapes.barGroup,!0,!0);i[1]=f(p(0,i[1]),n[1]),t._doHoverLinkToSeries(i[1],0<=i[0]&&i[0]<=n[0])}}).on("mouseout",function(){t._hovering=!1,!t._dragging&&t._clearHoverLinkToSeries()})},_enableHoverLinkFromSeries:function(){var t=this.api.getZr();this.visualMapModel.option.hoverLink?(t.on("mouseover",this._hoverLinkFromSeriesMouseOver,this),t.on("mouseout",this._hideIndicator,this)):this._clearHoverLinkFromSeries()},_doHoverLinkToSeries:function(t,e){var n=this.visualMapModel,i=n.itemSize;if(n.option.hoverLink){var r=[0,i[1]],o=n.getExtent();t=f(p(r[0],t),r[1]);var a=function(t,e,n){var i=g/2,r=t.get("hoverLinkDataSize");r&&(i=h(r,e,n,!0)/2);return i}(n,o,r),s=[t-a,t+a],A=h(t,r,o,!0),l=[h(s[0],r,o,!0),h(s[1],r,o,!0)];s[0]<r[0]&&(l[0]=-1/0),s[1]>r[1]&&(l[1]=1/0),e&&(l[0]===-1/0?this._showIndicator(A,l[1],"< ",a):l[1]===1/0?this._showIndicator(A,l[0],"> ",a):this._showIndicator(A,A,"鈮� ",a));var d=this._hoverLinkDataIndices,m=[];(e||w(n))&&(m=this._hoverLinkDataIndices=n.findTargetDataIndices(l));var v=u.compressBatches(d,m);this._dispatchHighDown("downplay",c.makeHighDownBatch(v[0],n)),this._dispatchHighDown("highlight",c.makeHighDownBatch(v[1],n))}},_hoverLinkFromSeriesMouseOver:function(t){var e=t.target,n=this.visualMapModel;if(e&&null!=e.dataIndex){var i=this.ecModel.getSeriesByIndex(e.seriesIndex);if(n.isTargetSeries(i)){var r=i.getData(e.dataType),o=r.get(n.getDataDimension(r),e.dataIndex,!0);isNaN(o)||this._showIndicator(o,o)}}},_hideIndicator:function(){var t=this._shapes;t.indicator&&t.indicator.attr("invisible",!0),t.indicatorLabel&&t.indicatorLabel.attr("invisible",!0)},_clearHoverLinkToSeries:function(){this._hideIndicator();var t=this._hoverLinkDataIndices;this._dispatchHighDown("downplay",c.makeHighDownBatch(t,this.visualMapModel)),t.length=0},_clearHoverLinkFromSeries:function(){this._hideIndicator();var t=this.api.getZr();t.off("mouseover",this._hoverLinkFromSeriesMouseOver),t.off("mouseout",this._hideIndicator)},_applyTransform:function(t,e,n,r){var o=s.getTransform(e,r?null:this.group);return s[i.isArray(t)?"applyTransform":"transformDirection"](t,o,n)},_dispatchHighDown:function(t,e){e&&e.length&&this.api.dispatchAction({type:t,batch:e})},dispose:function(){this._clearHoverLinkFromSeries(),this._clearHoverLinkToSeries()},remove:function(){this._clearHoverLinkFromSeries(),this._clearHoverLinkToSeries()}});function y(t,e,n,i){return new s.Polygon({shape:{points:t},draggable:!!n,cursor:e,drift:n,onmousemove:function(t){o.stop(t.event)},ondragend:i})}function w(t){var e=t.get("hoverLinkOnHandle");return!!(null==e?t.get("realtime"):e)}function x(t){return"vertical"===t?"ns-resize":"ew-resize"}var B=v;t.exports=B},guZg:function(t,e,n){var i=n("loyO");n("twi+"),n("2Guw"),n("+Xj5");var r=n("Cjkn");i.registerVisual(r)},gydn:function(t,e,n){var i=n("loyO"),r=n("RQTy");n("7bMC"),n("Xczu"),n("V0pK"),n("0cXy"),n("M0MM"),i.registerPreprocessor(r)},h17e:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("K3bJ"),o=n("+Pa4"),a=n("9i2m"),s=n("GhzX"),A=s.defaultDimValueGetters,l=s.DefaultDataProvider,c=n("F9js").summarizeDimensions,u=n("meIr"),h=i.isObject,d=-1,f="e\0\0",p={float:"undefined"==typeof Float64Array?Array:Float64Array,int:"undefined"==typeof Int32Array?Array:Int32Array,ordinal:Array,number:Array,time:Array},g="undefined"==typeof Uint32Array?Array:Uint32Array,m="undefined"==typeof Int32Array?Array:Int32Array,v="undefined"==typeof Uint16Array?Array:Uint16Array;function y(t){return t._rawCount>65535?g:v}var w=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_rawData","_chunkSize","_chunkCount","_dimValueGetter","_count","_rawCount","_nameDimIdx","_idDimIdx"],x=["_extent","_approximateExtent","_rawExtent"];function B(t,e){i.each(w.concat(e.__wrappedMethods||[]),function(n){e.hasOwnProperty(n)&&(t[n]=e[n])}),t.__wrappedMethods=e.__wrappedMethods,i.each(x,function(n){t[n]=i.clone(e[n])}),t._calculationInfo=i.extend(e._calculationInfo)}var b=function(t,e){t=t||["x","y"];for(var n={},r=[],o={},a=0;a<t.length;a++){var s=t[a];i.isString(s)?s=new u({name:s}):s instanceof u||(s=new u(s));var A=s.name;s.type=s.type||"float",s.coordDim||(s.coordDim=A,s.coordDimIndex=0),s.otherDims=s.otherDims||{},r.push(A),n[A]=s,s.index=a,s.createInvertedIndices&&(o[A]=[])}this.dimensions=r,this._dimensionInfos=n,this.hostModel=e,this.dataType,this._indices=null,this._count=0,this._rawCount=0,this._storage={},this._nameList=[],this._idList=[],this._optionModels=[],this._visual={},this._layout={},this._itemVisuals=[],this.hasItemVisual={},this._itemLayouts=[],this._graphicEls=[],this._chunkSize=1e5,this._chunkCount=0,this._rawData,this._rawExtent={},this._extent={},this._approximateExtent={},this._dimensionsSummary=c(this),this._invertedIndicesMap=o,this._calculationInfo={},this.userOutput=this._dimensionsSummary.userOutput},C=b.prototype;function _(t,e,n,i,r){var o=p[e.type],a=i-1,s=e.name,A=t[s][a];if(A&&A.length<n){for(var l=new o(Math.min(r-a*n,n)),c=0;c<A.length;c++)l[c]=A[c];t[s][a]=l}for(var u=i*n;u<r;u+=n)t[s].push(new o(Math.min(r-u,n)))}function S(t){var e=t._invertedIndicesMap;i.each(e,function(n,i){var r=t._dimensionInfos[i].ordinalMeta;if(r){n=e[i]=new m(r.categories.length);for(var o=0;o<n.length;o++)n[o]=d;for(o=0;o<t._count;o++)n[t.get(i,o)]=o}})}function I(t,e,n){var i;if(null!=e){var r=t._chunkSize,o=Math.floor(n/r),a=n%r,s=t.dimensions[e],A=t._storage[s][o];if(A){i=A[a];var l=t._dimensionInfos[s].ordinalMeta;l&&l.categories.length&&(i=l.categories[i])}}return i}function T(t){return t}function M(t){return t<this._count&&t>=0?this._indices[t]:-1}function Q(t,e){var n=t._idList[e];return null==n&&(n=I(t,t._idDimIdx,e)),null==n&&(n=f+e),n}function F(t){return i.isArray(t)||(t=[t]),t}function k(t,e){var n=t.dimensions,r=new b(i.map(n,t.getDimensionInfo,t),t.hostModel);B(r,t);for(var o=r._storage={},a=t._storage,s=0;s<n.length;s++){var A=n[s];a[A]&&(i.indexOf(e,A)>=0?(o[A]=D(a[A]),r._rawExtent[A]=U(),r._extent[A]=null):o[A]=a[A])}return r}function D(t){for(var e,n,i=new Array(t.length),r=0;r<t.length;r++)i[r]=(e=t[r],n=void 0,(n=e.constructor)===Array?e.slice():new n(e));return i}function U(){return[1/0,-1/0]}C.type="list",C.hasItemOption=!0,C.getDimension=function(t){return"number"!=typeof t&&(isNaN(t)||this._dimensionInfos.hasOwnProperty(t))||(t=this.dimensions[t]),t},C.getDimensionInfo=function(t){return this._dimensionInfos[this.getDimension(t)]},C.getDimensionsOnCoord=function(){return this._dimensionsSummary.dataDimsOnCoord.slice()},C.mapDimension=function(t,e){var n=this._dimensionsSummary;if(null==e)return n.encodeFirstDimNotExtra[t];var i=n.encode[t];return!0===e?(i||[]).slice():i&&i[e]},C.initData=function(t,e,n){(a.isInstance(t)||i.isArrayLike(t))&&(t=new l(t,this.dimensions.length)),this._rawData=t,this._storage={},this._indices=null,this._nameList=e||[],this._idList=[],this._nameRepeatCount={},n||(this.hasItemOption=!1),this.defaultDimValueGetter=A[this._rawData.getSource().sourceFormat],this._dimValueGetter=n=n||this.defaultDimValueGetter,this._dimValueGetterArrayRows=A.arrayRows,this._rawExtent={},this._initDataFromProvider(0,t.count()),t.pure&&(this.hasItemOption=!1)},C.getProvider=function(){return this._rawData},C.appendData=function(t){var e=this._rawData,n=this.count();e.appendData(t);var i=e.count();e.persistent||(i+=n),this._initDataFromProvider(n,i)},C.appendValues=function(t,e){for(var n=this._chunkSize,i=this._storage,r=this.dimensions,o=r.length,a=this._rawExtent,s=this.count(),A=s+Math.max(t.length,e?e.length:0),l=this._chunkCount,c=0;c<o;c++){a[m=r[c]]||(a[m]=U()),i[m]||(i[m]=[]),_(i,this._dimensionInfos[m],n,l,A),this._chunkCount=i[m].length}for(var u=new Array(o),h=s;h<A;h++){for(var d=h-s,f=Math.floor(h/n),p=h%n,g=0;g<o;g++){var m=r[g],v=this._dimValueGetterArrayRows(t[d]||u,m,d,g);i[m][f][p]=v;var y=a[m];v<y[0]&&(y[0]=v),v>y[1]&&(y[1]=v)}e&&(this._nameList[h]=e[d])}this._rawCount=this._count=A,this._extent={},S(this)},C._initDataFromProvider=function(t,e){if(!(t>=e)){for(var n,i=this._chunkSize,r=this._rawData,o=this._storage,a=this.dimensions,s=a.length,A=this._dimensionInfos,l=this._nameList,c=this._idList,u=this._rawExtent,h=this._nameRepeatCount={},d=this._chunkCount,f=0;f<s;f++){u[x=a[f]]||(u[x]=U());var p=A[x];0===p.otherDims.itemName&&(n=this._nameDimIdx=f),0===p.otherDims.itemId&&(this._idDimIdx=f),o[x]||(o[x]=[]),_(o,p,i,d,e),this._chunkCount=o[x].length}for(var g=new Array(s),m=t;m<e;m++){g=r.getItem(m,g);for(var v=Math.floor(m/i),y=m%i,w=0;w<s;w++){var x,B=o[x=a[w]][v],b=this._dimValueGetter(g,x,m,w);B[y]=b;var C=u[x];b<C[0]&&(C[0]=b),b>C[1]&&(C[1]=b)}if(!r.pure){var I=l[m];if(g&&null==I)if(null!=g.name)l[m]=I=g.name;else if(null!=n){var T=a[n],M=o[T][v];if(M){I=M[y];var Q=A[T].ordinalMeta;Q&&Q.categories.length&&(I=Q.categories[I])}}var F=null==g?null:g.id;null==F&&null!=I&&(h[I]=h[I]||0,F=I,h[I]>0&&(F+="__ec__"+h[I]),h[I]++),null!=F&&(c[m]=F)}}!r.persistent&&r.clean&&r.clean(),this._rawCount=this._count=e,this._extent={},S(this)}},C.count=function(){return this._count},C.getIndices=function(){var t=this._indices;if(t){var e=t.constructor,n=this._count;if(e===Array){r=new e(n);for(var i=0;i<n;i++)r[i]=t[i]}else r=new e(t.buffer,0,n)}else{var r=new(e=y(this))(this.count());for(i=0;i<r.length;i++)r[i]=i}return r},C.get=function(t,e){if(!(e>=0&&e<this._count))return NaN;var n=this._storage;if(!n[t])return NaN;e=this.getRawIndex(e);var i=Math.floor(e/this._chunkSize),r=e%this._chunkSize;return n[t][i][r]},C.getByRawIndex=function(t,e){if(!(e>=0&&e<this._rawCount))return NaN;var n=this._storage[t];if(!n)return NaN;var i=Math.floor(e/this._chunkSize),r=e%this._chunkSize;return n[i][r]},C._getFast=function(t,e){var n=Math.floor(e/this._chunkSize),i=e%this._chunkSize;return this._storage[t][n][i]},C.getValues=function(t,e){var n=[];i.isArray(t)||(e=t,t=this.dimensions);for(var r=0,o=t.length;r<o;r++)n.push(this.get(t[r],e));return n},C.hasValue=function(t){for(var e=this._dimensionsSummary.dataDimsOnCoord,n=0,i=e.length;n<i;n++)if(isNaN(this.get(e[n],t)))return!1;return!0},C.getDataExtent=function(t){t=this.getDimension(t);var e=this._storage[t],n=U();if(!e)return n;var i,r=this.count();if(!this._indices)return this._rawExtent[t].slice();if(i=this._extent[t])return i.slice();for(var o=(i=n)[0],a=i[1],s=0;s<r;s++){var A=this._getFast(t,this.getRawIndex(s));A<o&&(o=A),A>a&&(a=A)}return i=[o,a],this._extent[t]=i,i},C.getApproximateExtent=function(t){return t=this.getDimension(t),this._approximateExtent[t]||this.getDataExtent(t)},C.setApproximateExtent=function(t,e){e=this.getDimension(e),this._approximateExtent[e]=t.slice()},C.getCalculationInfo=function(t){return this._calculationInfo[t]},C.setCalculationInfo=function(t,e){h(t)?i.extend(this._calculationInfo,t):this._calculationInfo[t]=e},C.getSum=function(t){var e=0;if(this._storage[t])for(var n=0,i=this.count();n<i;n++){var r=this.get(t,n);isNaN(r)||(e+=r)}return e},C.getMedian=function(t){var e=[];this.each(t,function(t,n){isNaN(t)||e.push(t)});var n=[].concat(e).sort(function(t,e){return t-e}),i=this.count();return 0===i?0:i%2==1?n[(i-1)/2]:(n[i/2]+n[i/2-1])/2},C.rawIndexOf=function(t,e){var n=(t&&this._invertedIndicesMap[t])[e];return null==n||isNaN(n)?d:n},C.indexOfName=function(t){for(var e=0,n=this.count();e<n;e++)if(this.getName(e)===t)return e;return-1},C.indexOfRawIndex=function(t){if(t>=this._rawCount||t<0)return-1;if(!this._indices)return t;var e=this._indices,n=e[t];if(null!=n&&n<this._count&&n===t)return t;for(var i=0,r=this._count-1;i<=r;){var o=(i+r)/2|0;if(e[o]<t)i=o+1;else{if(!(e[o]>t))return o;r=o-1}}return-1},C.indicesOfNearest=function(t,e,n){var i=[];if(!this._storage[t])return i;null==n&&(n=1/0);for(var r=1/0,o=-1,a=0,s=0,A=this.count();s<A;s++){var l=e-this.get(t,s),c=Math.abs(l);c<=n&&((c<r||c===r&&l>=0&&o<0)&&(r=c,o=l,a=0),l===o&&(i[a++]=s))}return i.length=a,i},C.getRawIndex=T,C.getRawDataItem=function(t){if(this._rawData.persistent)return this._rawData.getItem(this.getRawIndex(t));for(var e=[],n=0;n<this.dimensions.length;n++){var i=this.dimensions[n];e.push(this.get(i,t))}return e},C.getName=function(t){var e=this.getRawIndex(t);return this._nameList[e]||I(this,this._nameDimIdx,e)||""},C.getId=function(t){return Q(this,this.getRawIndex(t))},C.each=function(t,e,n,r){"use strict";if(this._count){"function"==typeof t&&(r=n,n=e,e=t,t=[]),n=n||r||this;for(var o=(t=i.map(F(t),this.getDimension,this)).length,a=0;a<this.count();a++)switch(o){case 0:e.call(n,a);break;case 1:e.call(n,this.get(t[0],a),a);break;case 2:e.call(n,this.get(t[0],a),this.get(t[1],a),a);break;default:for(var s=0,A=[];s<o;s++)A[s]=this.get(t[s],a);A[s]=a,e.apply(n,A)}}},C.filterSelf=function(t,e,n,r){"use strict";if(this._count){"function"==typeof t&&(r=n,n=e,e=t,t=[]),n=n||r||this,t=i.map(F(t),this.getDimension,this);for(var o=this.count(),a=new(y(this))(o),s=[],A=t.length,l=0,c=t[0],u=0;u<o;u++){var h,d=this.getRawIndex(u);if(0===A)h=e.call(n,u);else if(1===A){var f=this._getFast(c,d);h=e.call(n,f,u)}else{for(var p=0;p<A;p++)s[p]=this._getFast(c,d);s[p]=u,h=e.apply(n,s)}h&&(a[l++]=d)}return l<o&&(this._indices=a),this._count=l,this._extent={},this.getRawIndex=this._indices?M:T,this}},C.selectRange=function(t){"use strict";if(this._count){var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);var i=e.length;if(i){var r=this.count(),o=new(y(this))(r),a=0,s=e[0],A=t[s][0],l=t[s][1],c=!1;if(!this._indices){var u=0;if(1===i){for(var h=this._storage[e[0]],d=0;d<this._chunkCount;d++)for(var f=h[d],p=Math.min(this._count-d*this._chunkSize,this._chunkSize),g=0;g<p;g++){((B=f[g])>=A&&B<=l||isNaN(B))&&(o[a++]=u),u++}c=!0}else if(2===i){h=this._storage[s];var m=this._storage[e[1]],v=t[e[1]][0],w=t[e[1]][1];for(d=0;d<this._chunkCount;d++){f=h[d];var x=m[d];for(p=Math.min(this._count-d*this._chunkSize,this._chunkSize),g=0;g<p;g++){var B=f[g],b=x[g];(B>=A&&B<=l||isNaN(B))&&(b>=v&&b<=w||isNaN(b))&&(o[a++]=u),u++}}c=!0}}if(!c)if(1===i)for(g=0;g<r;g++){var C=this.getRawIndex(g);((B=this._getFast(s,C))>=A&&B<=l||isNaN(B))&&(o[a++]=C)}else for(g=0;g<r;g++){var _=!0;for(C=this.getRawIndex(g),d=0;d<i;d++){var S=e[d];((B=this._getFast(n,C))<t[S][0]||B>t[S][1])&&(_=!1)}_&&(o[a++]=this.getRawIndex(g))}return a<r&&(this._indices=o),this._count=a,this._extent={},this.getRawIndex=this._indices?M:T,this}}},C.mapArray=function(t,e,n,i){"use strict";"function"==typeof t&&(i=n,n=e,e=t,t=[]),n=n||i||this;var r=[];return this.each(t,function(){r.push(e&&e.apply(this,arguments))},n),r},C.map=function(t,e,n,r){"use strict";n=n||r||this;var o=k(this,t=i.map(F(t),this.getDimension,this));o._indices=this._indices,o.getRawIndex=o._indices?M:T;for(var a=o._storage,s=[],A=this._chunkSize,l=t.length,c=this.count(),u=[],h=o._rawExtent,d=0;d<c;d++){for(var f=0;f<l;f++)u[f]=this.get(t[f],d);u[l]=d;var p=e&&e.apply(n,u);if(null!=p){"object"!=typeof p&&(s[0]=p,p=s);for(var g=this.getRawIndex(d),m=Math.floor(g/A),v=g%A,y=0;y<p.length;y++){var w=t[y],x=p[y],B=h[w],b=a[w];b&&(b[m][v]=x),x<B[0]&&(B[0]=x),x>B[1]&&(B[1]=x)}}}return o},C.downSample=function(t,e,n,i){for(var r=k(this,[t]),o=r._storage,a=[],s=Math.floor(1/e),A=o[t],l=this.count(),c=this._chunkSize,u=r._rawExtent[t],h=new(y(this))(l),d=0,f=0;f<l;f+=s){s>l-f&&(s=l-f,a.length=s);for(var p=0;p<s;p++){var g=this.getRawIndex(f+p),m=Math.floor(g/c),v=g%c;a[p]=A[m][v]}var w=n(a),x=this.getRawIndex(Math.min(f+i(a,w)||0,l-1)),B=x%c;A[Math.floor(x/c)][B]=w,w<u[0]&&(u[0]=w),w>u[1]&&(u[1]=w),h[d++]=x}return r._count=d,r._indices=h,r.getRawIndex=M,r},C.getItemModel=function(t){var e=this.hostModel;return new r(this.getRawDataItem(t),e,e&&e.ecModel)},C.diff=function(t){var e=this;return new o(t?t.getIndices():[],this.getIndices(),function(e){return Q(t,e)},function(t){return Q(e,t)})},C.getVisual=function(t){var e=this._visual;return e&&e[t]},C.setVisual=function(t,e){if(h(t))for(var n in t)t.hasOwnProperty(n)&&this.setVisual(n,t[n]);else this._visual=this._visual||{},this._visual[t]=e},C.setLayout=function(t,e){if(h(t))for(var n in t)t.hasOwnProperty(n)&&this.setLayout(n,t[n]);else this._layout[t]=e},C.getLayout=function(t){return this._layout[t]},C.getItemLayout=function(t){return this._itemLayouts[t]},C.setItemLayout=function(t,e,n){this._itemLayouts[t]=n?i.extend(this._itemLayouts[t]||{},e):e},C.clearItemLayouts=function(){this._itemLayouts.length=0},C.getItemVisual=function(t,e,n){var i=this._itemVisuals[t],r=i&&i[e];return null!=r||n?r:this.getVisual(e)},C.setItemVisual=function(t,e,n){var i=this._itemVisuals[t]||{},r=this.hasItemVisual;if(this._itemVisuals[t]=i,h(e))for(var o in e)e.hasOwnProperty(o)&&(i[o]=e[o],r[o]=!0);else i[e]=n,r[e]=!0},C.clearAllVisual=function(){this._visual={},this._itemVisuals=[],this.hasItemVisual={}};var E=function(t){t.seriesIndex=this.seriesIndex,t.dataIndex=this.dataIndex,t.dataType=this.dataType};C.setItemGraphicEl=function(t,e){var n=this.hostModel;e&&(e.dataIndex=t,e.dataType=this.dataType,e.seriesIndex=n&&n.seriesIndex,"group"===e.type&&e.traverse(E,e)),this._graphicEls[t]=e},C.getItemGraphicEl=function(t){return this._graphicEls[t]},C.eachItemGraphicEl=function(t,e){i.each(this._graphicEls,function(n,i){n&&t&&t.call(e,n,i)})},C.cloneShallow=function(t){if(!t){var e=i.map(this.dimensions,this.getDimensionInfo,this);t=new b(e,this.hostModel)}if(t._storage=this._storage,B(t,this),this._indices){var n=this._indices.constructor;t._indices=new n(this._indices)}else t._indices=null;return t.getRawIndex=t._indices?M:T,t},C.wrapMethod=function(t,e){var n=this[t];"function"==typeof n&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(t),this[t]=function(){var t=n.apply(this,arguments);return e.apply(this,[t].concat(i.slice(arguments)))})},C.TRANSFERABLE_METHODS=["cloneShallow","downSample","map"],C.CHANGABLE_METHODS=["filterSelf","selectRange"];var L=b;t.exports=L},h5rJ:function(t,e){function n(t){return t instanceof Array||(t=[t,t]),t}var i="lineStyle.opacity".split("."),r={seriesType:"lines",reset:function(t,e,r){var o=n(t.get("symbol")),a=n(t.get("symbolSize")),s=t.getData();return s.setVisual("fromSymbol",o&&o[0]),s.setVisual("toSymbol",o&&o[1]),s.setVisual("fromSymbolSize",a&&a[0]),s.setVisual("toSymbolSize",a&&a[1]),s.setVisual("opacity",t.get(i)),{dataEach:s.hasItemOption?function(t,e){var r=t.getItemModel(e),o=n(r.getShallow("symbol",!0)),a=n(r.getShallow("symbolSize",!0)),s=r.get(i);o[0]&&t.setItemVisual(e,"fromSymbol",o[0]),o[1]&&t.setItemVisual(e,"toSymbol",o[1]),a[0]&&t.setItemVisual(e,"fromSymbolSize",a[0]),a[1]&&t.setItemVisual(e,"toSymbolSize",a[1]),t.setItemVisual(e,"opacity",s)}:null}}};t.exports=r},hCl9:function(t,e,n){var i=n("TWSN"),r=n("rhmo").getLayoutRect,o=n("3oqo");t.exports=function(t,e){var n=[];return t.eachSeriesByType("graph",function(t){var a=t.get("coordinateSystem");if(!a||"view"===a){var s=t.getData(),A=s.mapArray(function(t){var e=s.getItemModel(t);return[+e.get("x"),+e.get("y")]}),l=[],c=[];o.fromPoints(A,l,c),c[0]-l[0]==0&&(c[0]+=1,l[0]-=1),c[1]-l[1]==0&&(c[1]+=1,l[1]-=1);var u=(c[0]-l[0])/(c[1]-l[1]),h=function(t,e,n){var i=t.getBoxLayoutParams();return i.aspect=n,r(i,{width:e.getWidth(),height:e.getHeight()})}(t,e,u);isNaN(u)&&(l=[h.x,h.y],c=[h.x+h.width,h.y+h.height]);var d=c[0]-l[0],f=c[1]-l[1],p=h.width,g=h.height,m=t.coordinateSystem=new i;m.zoomLimit=t.get("scaleLimit"),m.setBoundingRect(l[0],l[1],d,f),m.setViewRect(h.x,h.y,p,g),m.setCenter(t.get("center")),m.setZoom(t.get("zoom")),n.push(m)}}),n}},hEIH:function(t,e){e.getNodeGlobalScale=function(t){var e=t.coordinateSystem;if("view"!==e.type)return 1;var n=t.option.nodeScaleRatio,i=e.scale,r=i&&i[0]||1;return((e.getZoom()-1)*n+1)/r},e.getSymbolSize=function(t){var e=t.getVisual("symbolSize");return e instanceof Array&&(e=(e[0]+e[1])/2),+e}},hR0v:function(t,e,n){var i=n("A5tq"),r=n("Gkcz");n("I9Ar");var o=r.extend({type:"parallel",dependencies:["parallelAxis"],coordinateSystem:null,dimensions:null,parallelAxisIndex:null,layoutMode:"box",defaultOption:{zlevel:0,z:0,left:80,top:60,right:80,bottom:60,layout:"horizontal",axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:"click",parallelAxisDefault:null},init:function(){r.prototype.init.apply(this,arguments),this.mergeOption({})},mergeOption:function(t){var e=this.option;t&&i.merge(e,t,!0),this._initDimensions()},contains:function(t,e){var n=t.get("parallelIndex");return null!=n&&e.getComponent("parallel",n)===this},setAxisExpand:function(t){i.each(["axisExpandable","axisExpandCenter","axisExpandCount","axisExpandWidth","axisExpandWindow"],function(e){t.hasOwnProperty(e)&&(this.option[e]=t[e])},this)},_initDimensions:function(){var t=this.dimensions=[],e=this.parallelAxisIndex=[],n=i.filter(this.dependentModels.parallelAxis,function(t){return(t.get("parallelIndex")||0)===this.componentIndex},this);i.each(n,function(n){t.push("dim"+n.get("dim")),e.push(n.componentIndex)})}});t.exports=o},"hY0+":function(t,e,n){var i=n("loyO");n("f80B"),n("7AIG"),n("U+8u");var r=n("qJZZ"),o=n("HVRW"),a=n("1nTW"),s=n("sq8S"),A=n("7rRD");i.registerVisual(r("radar")),i.registerVisual(o("radar","circle")),i.registerLayout(a),i.registerProcessor(s("radar")),i.registerPreprocessor(A)},hasg:function(t,e,n){var i=n("YCGQ"),r=i.eachAfter,o=i.eachBefore,a=n("f3dG"),s=a.init,A=a.firstWalk,l=a.secondWalk,c=a.separation,u=a.radialCoordinate,h=a.getViewRect;t.exports=function(t,e){t.eachSeriesByType("tree",function(t){!function(t,e){var n=h(t,e);t.layoutInfo=n;var i=t.get("layout"),a=0,d=0,f=null;"radial"===i?(a=2*Math.PI,d=Math.min(n.height,n.width)/2,f=c(function(t,e){return(t.parentNode===e.parentNode?1:2)/t.depth})):(a=n.width,d=n.height,f=c());var p=t.getData().tree.root,g=p.children[0];if(g){s(p),r(g,A,f),p.hierNode.modifier=-g.hierNode.prelim,o(g,l);var m=g,v=g,y=g;o(g,function(t){var e=t.getLayout().x;e<m.getLayout().x&&(m=t),e>v.getLayout().x&&(v=t),t.depth>y.depth&&(y=t)});var w=m===v?1:f(m,v)/2,x=w-m.getLayout().x,B=0,b=0,C=0,_=0;if("radial"===i)B=a/(v.getLayout().x+w+x),b=d/(y.depth-1||1),o(g,function(t){C=(t.getLayout().x+x)*B,_=(t.depth-1)*b;var e=u(C,_);t.setLayout({x:e.x,y:e.y,rawX:C,rawY:_},!0)});else{var S=t.getOrient();"RL"===S||"LR"===S?(b=d/(v.getLayout().x+w+x),B=a/(y.depth-1||1),o(g,function(t){_=(t.getLayout().x+x)*b,C="LR"===S?(t.depth-1)*B:a-(t.depth-1)*B,t.setLayout({x:C,y:_},!0)})):"TB"!==S&&"BT"!==S||(B=a/(v.getLayout().x+w+x),b=d/(y.depth-1||1),o(g,function(t){C=(t.getLayout().x+x)*B,_="TB"===S?(t.depth-1)*b:d-(t.depth-1)*b,t.setLayout({x:C,y:_},!0)}))}}}(t,e)})}},htDR:function(t,e,n){n("Gkcz").registerSubTypeDefaulter("timeline",function(){return"slider"})},hyzk:function(t,e,n){var i=n("nFw2"),r=n("x5W7"),o=n("e8iJ"),a=n("gj94"),s=["x","y"],A=["width","height"],l=i.extend({makeElOption:function(t,e,n,i,a){var s=n.axis,A=s.coordinateSystem,l=h(A,1-u(s)),d=A.dataToPoint(e)[0],f=i.get("type");if(f&&"none"!==f){var p=r.buildElStyle(i),g=c[f](s,d,l);g.style=p,t.graphicKey=g.type,t.pointer=g}var m=o.layout(n);r.buildCartesianSingleLabelElOption(e,t,m,n,i,a)},getHandleTransform:function(t,e,n){var i=o.layout(e,{labelInside:!1});return i.labelMargin=n.get("handle.margin"),{position:r.getTransformedPosition(e.axis,t,i),rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},updateHandleTransform:function(t,e,n,i){var r=n.axis,o=r.coordinateSystem,a=u(r),s=h(o,a),A=t.position;A[a]+=e[a],A[a]=Math.min(s[1],A[a]),A[a]=Math.max(s[0],A[a]);var l=h(o,1-a),c=(l[1]+l[0])/2,d=[c,c];return d[a]=A[a],{position:A,rotation:t.rotation,cursorPoint:d,tooltipOption:{verticalAlign:"middle"}}}}),c={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:r.makeLineShape([e,n[0]],[e,n[1]],u(t))}},shadow:function(t,e,n){var i=t.getBandWidth(),o=n[1]-n[0];return{type:"Rect",shape:r.makeRectShape([e-i/2,n[0]],[i,o],u(t))}}};function u(t){return t.isHorizontal()?0:1}function h(t,e){var n=t.getRect();return[n[s[e]],n[s[e]]+n[A[e]]]}a.registerAxisPointerClass("SingleAxisPointer",l);var d=l;t.exports=d},i3ZV:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("bDs9"),a=n("XBB0"),s="__seriesMapHighDown",A="__seriesMapCallKey",l=i.extendChartView({type:"map",render:function(t,e,n,i){if(!i||"mapToggleSelect"!==i.type||i.from!==this.uid){var r=this.group;if(r.removeAll(),!t.getHostGeoModel()){if(i&&"geoRoam"===i.type&&"series"===i.componentType&&i.seriesId===t.id)(o=this._mapDraw)&&r.add(o.group);else if(t.needsDrawMap){var o=this._mapDraw||new a(n,!0);r.add(o.group),o.draw(t,e,n,this,i),this._mapDraw=o}else this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null;t.get("showLegendSymbol")&&e.getComponent("legend")&&this._renderSymbols(t,e,n)}}},remove:function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null,this.group.removeAll()},dispose:function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null},_renderSymbols:function(t,e,n){var i=t.originalData,a=this.group;i.each(i.mapDimension("value"),function(e,n){if(!isNaN(e)){var l=i.getItemLayout(n);if(l&&l.point){var h=l.point,d=l.offset,f=new o.Circle({style:{fill:t.getData().getVisual("color")},shape:{cx:h[0]+9*d,cy:h[1],r:3},silent:!0,z2:8+(d?0:o.Z2_EMPHASIS_LIFT+1)});if(!d){var p=t.mainSeries.getData(),g=i.getName(n),m=p.indexOfName(g),v=i.getItemModel(n),y=v.getModel("label"),w=v.getModel("emphasis.label"),x=p.getItemGraphicEl(m),B=r.retrieve2(t.getFormattedLabel(m,"normal"),g),b=r.retrieve2(t.getFormattedLabel(m,"emphasis"),B),C=x[s],_=Math.random();if(!C){C=x[s]={};var S=r.curry(c,!0),I=r.curry(c,!1);x.on("mouseover",S).on("mouseout",I).on("emphasis",S).on("normal",I)}x[A]=_,r.extend(C,{recordVersion:_,circle:f,labelModel:y,hoverLabelModel:w,emphasisText:b,normalText:B}),u(C,!1)}a.add(f)}}})}});function c(t){var e=this[s];e&&e.recordVersion===this[A]&&u(e,t)}function u(t,e){var n=t.circle,i=t.labelModel,r=t.hoverLabelModel,a=t.emphasisText,s=t.normalText;e?(n.style.extendFrom(o.setTextStyle({},r,{text:r.get("show")?a:null},{isRectText:!0,useInsideStyle:!1},!0)),n.__mapOriginalZ2=n.z2,n.z2+=o.Z2_EMPHASIS_LIFT):(o.setTextStyle(n.style,i,{text:i.get("show")?s:null,textPosition:i.getShallow("position")||"bottom"},{isRectText:!0,useInsideStyle:!1}),n.dirty(!1),null!=n.__mapOriginalZ2&&(n.z2=n.__mapOriginalZ2,n.__mapOriginalZ2=null))}t.exports=l},iF0v:function(t,e,n){var i=n("loyO");i.registerAction({type:"brush",event:"brush"},function(t,e){e.eachComponent({mainType:"brush",query:t},function(e){e.setAreas(t.areas)})}),i.registerAction({type:"brushSelect",event:"brushSelected",update:"none"},function(){}),i.registerAction({type:"brushEnd",event:"brushEnd",update:"none"},function(){})},ia2t:function(t,e){var n="undefined"!=typeof window&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(t){setTimeout(t,16)};t.exports=n},igk0:function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},ilaN:function(t,e,n){var i=n("9nPt"),r=n("Q49S"),o=n("DWNL").encodeHTML,a=n("K3bJ"),s=(n("roIn").__DEV__,i.extend({type:"series.sankey",layoutInfo:null,levelModels:null,getInitialData:function(t,e){for(var n=t.edges||t.links,i=t.data||t.nodes,o=t.levels,s=this.levelModels={},A=0;A<o.length;A++)null!=o[A].depth&&o[A].depth>=0&&(s[o[A].depth]=new a(o[A],this,e));if(i&&n)return r(i,n,this,!0,function(t,e){t.wrapMethod("getItemModel",function(t,e){return t.customizeGetParent(function(t){var n=this.parentModel,i=n.getData().getItemLayout(e).depth,r=n.levelModels[i];return r||this.parentModel}),t}),e.wrapMethod("getItemModel",function(t,e){return t.customizeGetParent(function(t){var n=this.parentModel,i=n.getGraph().getEdgeByIndex(e),r=i.node1.getLayout().depth,o=n.levelModels[r];return o||this.parentModel}),t})}).data},setNodePosition:function(t,e){var n=this.option.data[t];n.localX=e[0],n.localY=e[1]},getGraph:function(){return this.getData().graph},getEdgeData:function(){return this.getGraph().edgeData},formatTooltip:function(t,e,n){if("edge"===n){var i=this.getDataParams(t,n),r=i.data,a=r.source+" -- "+r.target;return i.value&&(a+=" : "+i.value),o(a)}if("node"===n){var A=this.getGraph().getNodeByIndex(t).getLayout().value,l=this.getDataParams(t,n).data.name;if(A)a=l+" : "+A;return o(a)}return s.superCall(this,"formatTooltip",t,e)},optionUpdated:function(){var t=this.option;!0===t.focusNodeAdjacency&&(t.focusNodeAdjacency="allEdges")},getDataParams:function(t,e){var n=s.superCall(this,"getDataParams",t,e);if(null==n.value&&"node"===e){var i=this.getGraph().getNodeByIndex(t).getLayout().value;n.value=i}return n},defaultOption:{zlevel:0,z:2,coordinateSystem:"view",layout:null,left:"5%",top:"5%",right:"20%",bottom:"5%",orient:"horizontal",nodeWidth:20,nodeGap:8,draggable:!0,focusNodeAdjacency:!1,layoutIterations:32,label:{show:!0,position:"right",color:"#000",fontSize:12},levels:[],nodeAlign:"justify",itemStyle:{borderWidth:1,borderColor:"#333"},lineStyle:{color:"#314656",opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},animationEasing:"linear",animationDuration:1e3}})),A=s;t.exports=A},ixaL:function(t,e,n){var i=n("r+KN"),r=n("vnMr"),o=n("A5tq"),a=o.getContext,s=o.extend,A=o.retrieve2,l=o.retrieve3,c=o.trim,u={},h=0,d=5e3,f=/\{([a-zA-Z0-9_]+)\|([^}]*)\}/g,p="12px sans-serif",g={};function m(t,e){var n=t+":"+(e=e||p);if(u[n])return u[n];for(var i=(t+"").split("\n"),r=0,o=0,a=i.length;o<a;o++)r=Math.max(S(i[o],e).width,r);return h>d&&(h=0,u={}),h++,u[n]=r,r}function v(t,e,n){return"right"===n?t-=e:"center"===n&&(t-=e/2),t}function y(t,e,n){return"middle"===n?t-=e/2:"bottom"===n&&(t-=e),t}function w(t,e,n){var i=e.textPosition,r=e.textDistance,o=n.x,a=n.y;r=r||0;var s=n.height,A=n.width,l=s/2,c="left",u="top";switch(i){case"left":o-=r,a+=l,c="right",u="middle";break;case"right":o+=r+A,a+=l,u="middle";break;case"top":o+=A/2,a-=r,c="center",u="bottom";break;case"bottom":o+=A/2,a+=s+r,c="center";break;case"inside":o+=A/2,a+=l,c="center",u="middle";break;case"insideLeft":o+=r,a+=l,u="middle";break;case"insideRight":o+=A-r,a+=l,c="right",u="middle";break;case"insideTop":o+=A/2,a+=r,c="center";break;case"insideBottom":o+=A/2,a+=s-r,c="center",u="bottom";break;case"insideTopLeft":o+=r,a+=r;break;case"insideTopRight":o+=A-r,a+=r,c="right";break;case"insideBottomLeft":o+=r,a+=s-r,u="bottom";break;case"insideBottomRight":o+=A-r,a+=s-r,c="right",u="bottom"}return(t=t||{}).x=o,t.y=a,t.textAlign=c,t.textVerticalAlign=u,t}function x(t,e,n,i,r){if(!e)return"";var o=(t+"").split("\n");r=B(e,n,i,r);for(var a=0,s=o.length;a<s;a++)o[a]=b(o[a],r);return o.join("\n")}function B(t,e,n,i){(i=s({},i)).font=e;n=A(n,"...");i.maxIterations=A(i.maxIterations,2);var r=i.minChar=A(i.minChar,0);i.cnCharWidth=m("鍥�",e);var o=i.ascCharWidth=m("a",e);i.placeholder=A(i.placeholder,"");for(var a=t=Math.max(0,t-1),l=0;l<r&&a>=o;l++)a-=o;var c=m(n,e);return c>a&&(n="",c=0),a=t-c,i.ellipsis=n,i.ellipsisWidth=c,i.contentWidth=a,i.containerWidth=t,i}function b(t,e){var n=e.containerWidth,i=e.font,r=e.contentWidth;if(!n)return"";var o=m(t,i);if(o<=n)return t;for(var a=0;;a++){if(o<=r||a>=e.maxIterations){t+=e.ellipsis;break}var s=0===a?C(t,r,e.ascCharWidth,e.cnCharWidth):o>0?Math.floor(t.length*r/o):0;o=m(t=t.substr(0,s),i)}return""===t&&(t=e.placeholder),t}function C(t,e,n,i){for(var r=0,o=0,a=t.length;o<a&&r<e;o++){var s=t.charCodeAt(o);r+=0<=s&&s<=127?n:i}return o}function _(t){return m("鍥�",t)}function S(t,e){return g.measureText(t,e)}function I(t,e,n,i,r){null!=t&&(t+="");var o=A(i,_(e)),a=t?t.split("\n"):[],s=a.length*o,l=s,c=!0;if(n&&(l+=n[0]+n[2]),t&&r){c=!1;var u=r.outerHeight,h=r.outerWidth;if(null!=u&&l>u)t="",a=[];else if(null!=h)for(var d=B(h-(n?n[1]+n[3]:0),e,r.ellipsis,{minChar:r.minChar,placeholder:r.placeholder}),f=0,p=a.length;f<p;f++)a[f]=b(a[f],d)}return{lines:a,height:s,outerHeight:l,lineHeight:o,canCacheByTextString:c}}function T(t,e){var n={lines:[],width:0,height:0};if(null!=t&&(t+=""),!t)return n;for(var i,o=f.lastIndex=0;null!=(i=f.exec(t));){var a=i.index;a>o&&M(n,t.substring(o,a)),M(n,i[2],i[1]),o=f.lastIndex}o<t.length&&M(n,t.substring(o,t.length));var s=n.lines,c=0,u=0,h=[],d=e.textPadding,p=e.truncate,g=p&&p.outerWidth,v=p&&p.outerHeight;d&&(null!=g&&(g-=d[1]+d[3]),null!=v&&(v-=d[0]+d[2]));for(var y=0;y<s.length;y++){for(var w=s[y],B=0,b=0,C=0;C<w.tokens.length;C++){var S=(O=w.tokens[C]).styleName&&e.rich[O.styleName]||{},I=O.textPadding=S.textPadding,T=O.font=S.font||e.font,Q=O.textHeight=A(S.textHeight,_(T));if(I&&(Q+=I[0]+I[2]),O.height=Q,O.lineHeight=l(S.textLineHeight,e.textLineHeight,Q),O.textAlign=S&&S.textAlign||e.textAlign,O.textVerticalAlign=S&&S.textVerticalAlign||"middle",null!=v&&c+O.lineHeight>v)return{lines:[],width:0,height:0};O.textWidth=m(O.text,T);var F=S.textWidth,k=null==F||"auto"===F;if("string"==typeof F&&"%"===F.charAt(F.length-1))O.percentWidth=F,h.push(O),F=0;else{if(k){F=O.textWidth;var D=S.textBackgroundColor,U=D&&D.image;U&&(U=r.findExistImage(U),r.isImageReady(U)&&(F=Math.max(F,U.width*Q/U.height)))}var E=I?I[1]+I[3]:0;F+=E;var L=null!=g?g-b:null;null!=L&&L<F&&(!k||L<E?(O.text="",O.textWidth=F=0):(O.text=x(O.text,L-E,T,p.ellipsis,{minChar:p.minChar}),O.textWidth=m(O.text,T),F=O.textWidth+E))}b+=O.width=F,S&&(B=Math.max(B,O.lineHeight))}w.width=b,w.lineHeight=B,c+=B,u=Math.max(u,b)}n.outerWidth=n.width=A(e.textWidth,u),n.outerHeight=n.height=A(e.textHeight,c),d&&(n.outerWidth+=d[1]+d[3],n.outerHeight+=d[0]+d[2]);for(y=0;y<h.length;y++){var O,P=(O=h[y]).percentWidth;O.width=parseInt(P,10)/100*u}return n}function M(t,e,n){for(var i=""===e,r=e.split("\n"),o=t.lines,a=0;a<r.length;a++){var s=r[a],A={styleName:n,text:s,isLineHolder:!s&&!i};if(a)o.push({tokens:[A]});else{var l=(o[o.length-1]||(o[0]={tokens:[]})).tokens,c=l.length;1===c&&l[0].isLineHolder?l[0]=A:(s||!c||i)&&l.push(A)}}}g.measureText=function(t,e){var n=a();return n.font=e||p,n.measureText(t)},e.DEFAULT_FONT=p,e.$override=function(t,e){g[t]=e},e.getWidth=m,e.getBoundingRect=function(t,e,n,r,o,a,s,A){return s?function(t,e,n,r,o,a,s,A){var l=T(t,{rich:s,truncate:A,font:e,textAlign:n,textPadding:o,textLineHeight:a}),c=l.outerWidth,u=l.outerHeight,h=v(0,c,n),d=y(0,u,r);return new i(h,d,c,u)}(t,e,n,r,o,a,s,A):function(t,e,n,r,o,a,s){var A=I(t,e,o,a,s),l=m(t,e);o&&(l+=o[1]+o[3]);var c=A.outerHeight,u=v(0,l,n),h=y(0,c,r),d=new i(u,h,l,c);return d.lineHeight=A.lineHeight,d}(t,e,n,r,o,a,A)},e.adjustTextX=v,e.adjustTextY=y,e.calculateTextPosition=w,e.adjustTextPositionOnRect=function(t,e,n){return w({},{textPosition:t,textDistance:n},e)},e.truncateText=x,e.getLineHeight=_,e.measureText=S,e.parsePlainText=I,e.parseRichText=T,e.makeFont=function(t){var e=(t.fontSize||t.fontFamily)&&[t.fontStyle,t.fontWeight,(t.fontSize||12)+"px",t.fontFamily||"sans-serif"].join(" ");return e&&c(e)||t.textFont||t.font}},izE0:function(t,e,n){var i=n("lk7o"),r=n("r+KN"),o=n("yQXb").WILL_BE_RESTORED,a=new r,s=function(){};s.prototype={constructor:s,drawRectText:function(t,e){var n=this.style;e=n.textRect||e,this.__dirty&&i.normalizeTextStyle(n,!0);var r=n.text;if(null!=r&&(r+=""),i.needDrawText(r,n)){t.save();var s=this.transform;n.transformText?this.setTransform(t):s&&(a.copy(e),a.applyTransform(s),e=a),i.renderText(this,t,r,n,e,o),t.restore()}}};var A=s;t.exports=A},j50J:function(t,e,n){var i=n("Pkpq");function r(t){this._target=t.target,this._life=t.life||1e3,this._delay=t.delay||0,this._initialized=!1,this.loop=null!=t.loop&&t.loop,this.gap=t.gap||0,this.easing=t.easing||"Linear",this.onframe=t.onframe,this.ondestroy=t.ondestroy,this.onrestart=t.onrestart,this._pausedTime=0,this._paused=!1}r.prototype={constructor:r,step:function(t,e){if(this._initialized||(this._startTime=t+this._delay,this._initialized=!0),this._paused)this._pausedTime+=e;else{var n=(t-this._startTime-this._pausedTime)/this._life;if(!(n<0)){n=Math.min(n,1);var r=this.easing,o="string"==typeof r?i[r]:r,a="function"==typeof o?o(n):n;return this.fire("frame",a),1===n?this.loop?(this.restart(t),"restart"):(this._needsRemove=!0,"destroy"):null}}},restart:function(t){var e=(t-this._startTime-this._pausedTime)%this._life;this._startTime=t-e+this.gap,this._pausedTime=0,this._needsRemove=!1},fire:function(t,e){this[t="on"+t]&&this[t](this._target,e)},pause:function(){this._paused=!0},resume:function(){this._paused=!1}};var o=r;t.exports=o},j86A:function(t,e,n){var i=n("A5tq"),r=n("zrBH"),o=n("mIxe"),a=n("+Pa4"),s=n("DWNL").windowOpen,A=r.extend({type:"sunburst",init:function(){},render:function(t,e,n,r){var s=this;this.seriesModel=t,this.api=n,this.ecModel=e;var A=t.getData(),l=A.tree.root,c=t.getViewRoot(),u=this.group,h=t.get("renderLabelForZeroData"),d=[];c.eachNode(function(t){d.push(t)});var f=this._oldChildren||[];if(function(n,r){if(0===n.length&&0===r.length)return;function s(t){return t.getId()}function c(i,a){var s=null==i?null:n[i],c=null==a?null:r[a];!function(n,i){h||!n||n.getValue()||(n=null);if(n!==l&&i!==l)if(i&&i.piece)n?(i.piece.updateData(!1,n,"normal",t,e),A.setItemGraphicEl(n.dataIndex,i.piece)):function(t){if(!t)return;t.piece&&(u.remove(t.piece),t.piece=null)}(i);else if(n){var r=new o(n,t,e);u.add(r),A.setItemGraphicEl(n.dataIndex,r)}}(s,c)}new a(r,n,s,s).add(c).update(c).remove(i.curry(c,null)).execute()}(d,f),function(n,i){if(i.depth>0){s.virtualPiece?s.virtualPiece.updateData(!1,n,"normal",t,e):(s.virtualPiece=new o(n,t,e),u.add(s.virtualPiece)),i.piece._onclickEvent&&i.piece.off("click",i.piece._onclickEvent);var r=function(t){s._rootToNode(i.parentNode)};i.piece._onclickEvent=r,s.virtualPiece.on("click",r)}else s.virtualPiece&&(u.remove(s.virtualPiece),s.virtualPiece=null)}(l,c),r&&r.highlight&&r.highlight.piece){var p=t.getShallow("highlightPolicy");r.highlight.piece.onEmphasis(p)}else if(r&&r.unhighlight){var g=this.virtualPiece;!g&&l.children.length&&(g=l.children[0].piece),g&&g.onNormal()}this._initEvents(),this._oldChildren=d},dispose:function(){},_initEvents:function(){var t=this,e=function(e){var n=!1;t.seriesModel.getViewRoot().eachNode(function(i){if(!n&&i.piece&&i.piece.childAt(0)===e.target){var r=i.getModel().get("nodeClick");if("rootToNode"===r)t._rootToNode(i);else if("link"===r){var o=i.getModel(),a=o.get("link");if(a){var A=o.get("target",!0)||"_blank";s(a,A)}}n=!0}})};this.group._onclickEvent&&this.group.off("click",this.group._onclickEvent),this.group.on("click",e),this.group._onclickEvent=e},_rootToNode:function(t){t!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:"sunburstRootToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t})},containPoint:function(t,e){var n=e.getData().getItemLayout(0);if(n){var i=t[0]-n.cx,r=t[1]-n.cy,o=Math.sqrt(i*i+r*r);return o<=n.r&&o>=n.r0}}});t.exports=A},j9eJ:function(t,e,n){var i=n("loyO"),r=n("ZVMY"),o=n("OHxl"),a=n("yW06"),s=n("BzcN"),A=i.extendChartView({type:"effectScatter",init:function(){this._symbolDraw=new r(o)},render:function(t,e,n){var i=t.getData(),r=this._symbolDraw;r.updateData(i),this.group.add(r.group)},updateTransform:function(t,e,n){var i=t.getData();this.group.dirty();var r=s().reset(t);r.progress&&r.progress({start:0,end:i.count()},i),this._symbolDraw.updateLayout(i)},_updateGroupTransform:function(t){var e=t.coordinateSystem;e&&e.getRoamTransform&&(this.group.transform=a.clone(e.getRoamTransform()),this.group.decomposeTransform())},remove:function(t,e){this._symbolDraw&&this._symbolDraw.remove(e)},dispose:function(){}});t.exports=A},jGNG:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("5P5h"),a=i.extendComponentModel({type:"toolbox",layoutMode:{type:"box",ignoreSize:!0},optionUpdated:function(){a.superApply(this,"optionUpdated",arguments),r.each(this.option.feature,function(t,e){var n=o.get(e);n&&r.merge(t,n.defaultOption)})},defaultOption:{show:!0,z:6,zlevel:0,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemSize:15,itemGap:8,showTitle:!0,iconStyle:{borderColor:"#666",color:"none"},emphasis:{iconStyle:{borderColor:"#3E98C5"}},tooltip:{show:!1}}}),s=a;t.exports=s},jSer:function(t,e,n){var i=n("A5tq"),r=n("vuYU"),o=i.each;function a(t){if(t)for(var e in t)if(t.hasOwnProperty(e))return!0}e.createVisualMappings=function(t,e,n){var a={};return o(e,function(e){var s,A=a[e]=((s=function(){}).prototype.__hidden=s.prototype,new s);o(t[e],function(t,o){if(r.isValidType(o)){var a={type:o,visual:t};n&&n(a,e),A[o]=new r(a),"opacity"===o&&((a=i.clone(a)).type="colorAlpha",A.__hidden.__alphaForOpacity=new r(a))}})}),a},e.replaceVisualOption=function(t,e,n){var r;i.each(n,function(t){e.hasOwnProperty(t)&&a(e[t])&&(r=!0)}),r&&i.each(n,function(n){e.hasOwnProperty(n)&&a(e[n])?t[n]=i.clone(e[n]):delete t[n]})},e.applyVisual=function(t,e,n,o,a,s){var A,l={};function c(t){return n.getItemVisual(A,t)}function u(t,e){n.setItemVisual(A,t,e)}function h(t,i){A=null==s?t:i;var r=n.getRawDataItem(A);if(!r||!1!==r.visualMap)for(var h=o.call(a,t),d=e[h],f=l[h],p=0,g=f.length;p<g;p++){var m=f[p];d[m]&&d[m].applyVisual(t,c,u)}}i.each(t,function(t){var n=r.prepareVisualTypes(e[t]);l[t]=n}),null==s?n.each(h):n.each([s],h)},e.incrementalApplyVisual=function(t,e,n,o){var a={};return i.each(t,function(t){var n=r.prepareVisualTypes(e[t]);a[t]=n}),{progress:function(t,i){function r(t){return i.getItemVisual(A,t)}function s(t,e){i.setItemVisual(A,t,e)}var A;for(null!=o&&(o=i.getDimension(o));null!=(A=t.next());){var l=i.getRawDataItem(A);if(!l||!1!==l.visualMap)for(var c=null!=o?i.get(o,A,!0):A,u=n(c),h=e[u],d=a[u],f=0,p=d.length;f<p;f++){var g=d[f];h[g]&&h[g].applyVisual(c,r,s)}}}}}},jsZU:function(t,e){var n=[[[123.45165252685547,25.73527164402261],[123.49731445312499,25.73527164402261],[123.49731445312499,25.750734064600884],[123.45165252685547,25.750734064600884],[123.45165252685547,25.73527164402261]]];t.exports=function(t,e){"china"===t&&"鍙版咕"===e.name&&e.geometries.push({type:"polygon",exterior:n[0]})}},jxQp:function(t,e,n){var i=n("kq8N").extend({type:"markLine",defaultOption:{zlevel:0,z:5,symbol:["circle","arrow"],symbolSize:[8,16],precision:2,tooltip:{trigger:"item"},label:{show:!0,position:"end",distance:5},lineStyle:{type:"dashed"},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:"linear"}});t.exports=i},jzo4:function(t,e,n){var i=n("XBB0"),r=n("loyO").extendComponentView({type:"geo",init:function(t,e){var n=new i(e,!0);this._mapDraw=n,this.group.add(n.group)},render:function(t,e,n,i){if(!i||"geoToggleSelect"!==i.type||i.from!==this.uid){var r=this._mapDraw;t.get("show")?r.draw(t,e,n,this,i):this._mapDraw.group.removeAll(),this.group.silent=t.get("silent")}},dispose:function(){this._mapDraw&&this._mapDraw.remove()}});t.exports=r},kCsp:function(t,e,n){var i=n("A5tq"),r=n("h17e"),o=n("quuH"),a=n("m1ec").SOURCE_FORMAT_ORIGINAL,s=n("F9js").getDimensionTypeByAxis,A=n("65+t").getDataItemValue,l=n("TJcz"),c=n("QS40").getCoordSysInfoBySeries,u=n("9i2m"),h=n("fxHw").enableDataStack,d=n("PVav").makeSeriesEncodeForAxisCoordSys;var f=function(t,e,n){n=n||{},u.isInstance(t)||(t=u.seriesDataToSource(t));var f,p=e.get("coordinateSystem"),g=l.get(p),m=c(e);m&&(f=i.map(m.coordSysDims,function(t){var e={name:t},n=m.axisMap.get(t);if(n){var i=n.get("type");e.type=s(i)}return e})),f||(f=g&&(g.getDimensionsInfo?g.getDimensionsInfo():g.dimensions.slice())||["x","y"]);var v,y,w=o(t,{coordDimensions:f,generateCoord:n.generateCoord,encodeDefaulter:n.useEncodeDefaulter?i.curry(d,f,e):null});m&&i.each(w,function(t,e){var n=t.coordDim,i=m.categoryAxisMap.get(n);i&&(null==v&&(v=e),t.ordinalMeta=i.getOrdinalMeta()),null!=t.otherDims.itemName&&(y=!0)}),y||null==v||(w[v].otherDims.itemName=0);var x=h(e,w),B=new r(w,e);B.setCalculationInfo(x);var b=null!=v&&function(t){if(t.sourceFormat===a){var e=function(t){for(var e=0;e<t.length&&null==t[e];)e++;return t[e]}(t.data||[]);return null!=e&&!i.isArray(A(e))}}(t)?function(t,e,n,i){return i===v?n:this.defaultDimValueGetter(t,e,n,i)}:null;return B.hasItemOption=!1,B.initData(t,null,b),B};t.exports=f},kRIu:function(t,e,n){var i=n("loyO"),r=n("A5tq");function o(t,e){e.update="updateView",i.registerAction(e,function(e,n){var i={};return n.eachComponent({mainType:"geo",query:e},function(n){n[t](e.name);var o=n.coordinateSystem;r.each(o.regions,function(t){i[t.name]=n.isSelected(t.name)||!1})}),{selected:i,name:e.name}})}n("oKn6"),n("x4Ry"),n("jzo4"),n("DXUs"),o("toggleSelected",{type:"geoToggleSelect",event:"geoselectchanged"}),o("select",{type:"geoSelect",event:"geoselected"}),o("unSelect",{type:"geoUnSelect",event:"geounselected"})},kq8N:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("sutA"),a=n("65+t"),s=n("DWNL"),A=n("PrQC"),l=s.addCommas,c=s.encodeHTML;function u(t){a.defaultEmphasis(t,"label",["show"])}var h=i.extendComponentModel({type:"marker",dependencies:["series","grid","polar","geo"],init:function(t,e,n){this.mergeDefaultAndTheme(t,n),this._mergeOption(t,n,!1,!0)},isAnimationEnabled:function(){if(o.node)return!1;var t=this.__hostSeries;return this.getShallow("animation")&&t&&t.isAnimationEnabled()},mergeOption:function(t,e){this._mergeOption(t,e,!1,!1)},_mergeOption:function(t,e,n,i){var o=this.constructor,a=this.mainType+"Model";n||e.eachSeries(function(t){var n=t.get(this.mainType,!0),s=t[a];n&&n.data?(s?s._mergeOption(n,e,!0):(i&&u(n),r.each(n.data,function(t){t instanceof Array?(u(t[0]),u(t[1])):u(t)}),s=new o(n,this,e),r.extend(s,{mainType:this.mainType,seriesIndex:t.seriesIndex,name:t.name,createdBySelf:!0}),s.__hostSeries=t),t[a]=s):t[a]=null},this)},formatTooltip:function(t,e,n,i){var o=this.getData(),a=this.getRawValue(t),s=r.isArray(a)?r.map(a,l).join(", "):l(a),A=o.getName(t),u=c(this.name);return(null!=a||A)&&(u+="html"===i?"<br/>":"\n"),A&&(u+=c(A),null!=a&&(u+=" : ")),null!=a&&(u+=c(s)),u},getData:function(){return this._data},setData:function(t){this._data=t}});r.mixin(h,A);var d=h;t.exports=d},lGpf:function(t,e,n){var i=n("UnJe"),r=n("OD9Z"),o=i.extend({type:"polyline",shape:{points:null,smooth:!1,smoothConstraint:null},style:{stroke:"#000",fill:null},buildPath:function(t,e){r.buildPath(t,e,!1)}});t.exports=o},lIT5:function(t,e,n){"use strict";var i=n("n6w9");t.exports=function(t,e,n){var r=n.config.validateStatus;!r||r(n.status)?t(n):e(i("Request failed with status code "+n.status,n.config,null,n.request,n))}},lJOK:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("bDs9"),o=n("yFzk"),a=n("A5tq");var s=i.extendChartView({type:"heatmap",render:function(t,e,n){var i;e.eachComponent("visualMap",function(e){e.eachTargetSeries(function(n){n===t&&(i=e)})}),this.group.removeAll(),this._incrementalDisplayable=null;var r=t.coordinateSystem;"cartesian2d"===r.type||"calendar"===r.type?this._renderOnCartesianAndCalendar(t,n,0,t.getData().count()):function(t){var e=t.dimensions;return"lng"===e[0]&&"lat"===e[1]}(r)&&this._renderOnGeo(r,t,i,n)},incrementalPrepareRender:function(t,e,n){this.group.removeAll()},incrementalRender:function(t,e,n,i){e.coordinateSystem&&this._renderOnCartesianAndCalendar(e,i,t.start,t.end,!0)},_renderOnCartesianAndCalendar:function(t,e,n,i,o){var s,A,l=t.coordinateSystem;if("cartesian2d"===l.type){var c=l.getAxis("x"),u=l.getAxis("y");s=c.getBandWidth(),A=u.getBandWidth()}for(var h=this.group,d=t.getData(),f=t.getModel("itemStyle").getItemStyle(["color"]),p=t.getModel("emphasis.itemStyle").getItemStyle(),g=t.getModel("label"),m=t.getModel("emphasis.label"),v=l.type,y="cartesian2d"===v?[d.mapDimension("x"),d.mapDimension("y"),d.mapDimension("value")]:[d.mapDimension("time"),d.mapDimension("value")],w=n;w<i;w++){var x;if("cartesian2d"===v){if(isNaN(d.get(y[2],w)))continue;var B=l.dataToPoint([d.get(y[0],w),d.get(y[1],w)]);x=new r.Rect({shape:{x:Math.floor(Math.round(B[0])-s/2),y:Math.floor(Math.round(B[1])-A/2),width:Math.ceil(s),height:Math.ceil(A)},style:{fill:d.getItemVisual(w,"color"),opacity:d.getItemVisual(w,"opacity")}})}else{if(isNaN(d.get(y[1],w)))continue;x=new r.Rect({z2:1,shape:l.dataToRect([d.get(y[0],w)]).contentShape,style:{fill:d.getItemVisual(w,"color"),opacity:d.getItemVisual(w,"opacity")}})}var b=d.getItemModel(w);d.hasItemOption&&(f=b.getModel("itemStyle").getItemStyle(["color"]),p=b.getModel("emphasis.itemStyle").getItemStyle(),g=b.getModel("label"),m=b.getModel("emphasis.label"));var C=t.getRawValue(w),_="-";C&&null!=C[2]&&(_=C[2]),r.setLabelStyle(f,p,g,m,{labelFetcher:t,labelDataIndex:w,defaultText:_,isRectText:!0}),x.setStyle(f),r.setHoverStyle(x,d.hasItemOption?p:a.extend({},p)),x.incremental=o,o&&(x.useHoverLayer=!0),h.add(x),d.setItemGraphicEl(w,x)}},_renderOnGeo:function(t,e,n,i){var s=n.targetVisuals.inRange,A=n.targetVisuals.outOfRange,l=e.getData(),c=this._hmLayer||this._hmLayer||new o;c.blurSize=e.get("blurSize"),c.pointSize=e.get("pointSize"),c.minOpacity=e.get("minOpacity"),c.maxOpacity=e.get("maxOpacity");var u=t.getViewRect().clone(),h=t.getRoamTransform();u.applyTransform(h);var d=Math.max(u.x,0),f=Math.max(u.y,0),p=Math.min(u.width+u.x,i.getWidth()),g=Math.min(u.height+u.y,i.getHeight()),m=p-d,v=g-f,y=[l.mapDimension("lng"),l.mapDimension("lat"),l.mapDimension("value")],w=l.mapArray(y,function(e,n,i){var r=t.dataToPoint([e,n]);return r[0]-=d,r[1]-=f,r.push(i),r}),x=n.getExtent(),B="visualMap.continuous"===n.type?function(t,e){var n=t[1]-t[0];return e=[(e[0]-t[0])/n,(e[1]-t[0])/n],function(t){return t>=e[0]&&t<=e[1]}}(x,n.option.range):function(t,e,n){var i=t[1]-t[0],r=(e=a.map(e,function(e){return{interval:[(e.interval[0]-t[0])/i,(e.interval[1]-t[0])/i]}})).length,o=0;return function(t){for(var i=o;i<r;i++)if((a=e[i].interval)[0]<=t&&t<=a[1]){o=i;break}if(i===r)for(i=o-1;i>=0;i--){var a;if((a=e[i].interval)[0]<=t&&t<=a[1]){o=i;break}}return i>=0&&i<r&&n[i]}}(x,n.getPieceList(),n.option.selected);c.update(w,m,v,s.color.getNormalizer(),{inRange:s.color.getColorMapper(),outOfRange:A.color.getColorMapper()},B);var b=new r.Image({style:{width:m,height:v,x:d,y:f,image:c.canvas},silent:!0});this.group.add(b)},dispose:function(){}});t.exports=s},lJzc:function(t,e,n){var i;i=function(){"use strict";function t(t){t=t||{};var i=arguments.length,r=0;if(1===i)return t;for(;++r<i;){var o=arguments[r];u(t)&&(t=o),n(o)&&e(t,o)}return t}function e(e,r){for(var o in h(e,r),r)if("__proto__"!==o&&i(r,o)){var a=r[o];n(a)?("undefined"===f(e[o])&&"function"===f(a)&&(e[o]=a),e[o]=t(e[o]||{},a)):e[o]=a}return e}function n(t){return"object"===f(t)||"function"===f(t)}function i(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function r(t,e){if(t.length){var n=t.indexOf(e);return n>-1?t.splice(n,1):void 0}}function o(t,e){if("IMG"===t.tagName&&t.getAttribute("data-srcset")){var n=t.getAttribute("data-srcset"),i=[],r=t.parentNode.offsetWidth*e,o=void 0,a=void 0,s=void 0;(n=n.trim().split(",")).map(function(t){t=t.trim(),-1===(o=t.lastIndexOf(" "))?(a=t,s=999998):(a=t.substr(0,o),s=parseInt(t.substr(o+1,t.length-o-2),10)),i.push([s,a])}),i.sort(function(t,e){if(t[0]<e[0])return-1;if(t[0]>e[0])return 1;if(t[0]===e[0]){if(-1!==e[1].indexOf(".webp",e[1].length-5))return 1;if(-1!==t[1].indexOf(".webp",t[1].length-5))return-1}return 0});for(var A="",l=void 0,c=i.length,u=0;u<c;u++)if((l=i[u])[0]>=r){A=l[1];break}return A}}function a(t,e){for(var n=void 0,i=0,r=t.length;i<r;i++)if(e(t[i])){n=t[i];break}return n}function s(){}var A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},l=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},c=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),u=function(t){return null==t||"function"!=typeof t&&"object"!==(void 0===t?"undefined":A(t))},h=function(t,e){if(null===t||void 0===t)throw new TypeError("expected first argument to be an object.");if(void 0===e||"undefined"==typeof Symbol)return t;if("function"!=typeof Object.getOwnPropertySymbols)return t;for(var n=Object.prototype.propertyIsEnumerable,i=Object(t),r=arguments.length,o=0;++o<r;)for(var a=Object(arguments[o]),s=Object.getOwnPropertySymbols(a),A=0;A<s.length;A++){var l=s[A];n.call(a,l)&&(i[l]=a[l])}return i},d=Object.prototype.toString,f=function(t){var e=void 0===t?"undefined":A(t);return"undefined"===e?"undefined":null===t?"null":!0===t||!1===t||t instanceof Boolean?"boolean":"string"===e||t instanceof String?"string":"number"===e||t instanceof Number?"number":"function"===e||t instanceof Function?void 0!==t.constructor.name&&"Generator"===t.constructor.name.slice(0,9)?"generatorfunction":"function":void 0!==Array.isArray&&Array.isArray(t)?"array":t instanceof RegExp?"regexp":t instanceof Date?"date":"[object RegExp]"===(e=d.call(t))?"regexp":"[object Date]"===e?"date":"[object Arguments]"===e?"arguments":"[object Error]"===e?"error":"[object Promise]"===e?"promise":function(t){return t.constructor&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}(t)?"buffer":"[object Set]"===e?"set":"[object WeakSet]"===e?"weakset":"[object Map]"===e?"map":"[object WeakMap]"===e?"weakmap":"[object Symbol]"===e?"symbol":"[object Map Iterator]"===e?"mapiterator":"[object Set Iterator]"===e?"setiterator":"[object String Iterator]"===e?"stringiterator":"[object Array Iterator]"===e?"arrayiterator":"[object Int8Array]"===e?"int8array":"[object Uint8Array]"===e?"uint8array":"[object Uint8ClampedArray]"===e?"uint8clampedarray":"[object Int16Array]"===e?"int16array":"[object Uint16Array]"===e?"uint16array":"[object Int32Array]"===e?"int32array":"[object Uint32Array]"===e?"uint32array":"[object Float32Array]"===e?"float32array":"[object Float64Array]"===e?"float64array":"object"},p=t,g="undefined"!=typeof window,m=g&&"IntersectionObserver"in window,v={event:"event",observer:"observer"},y=function(){function t(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),n}if(g)return"function"==typeof window.CustomEvent?window.CustomEvent:(t.prototype=window.Event.prototype,t)}(),w=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1;return g&&window.devicePixelRatio||t},x=function(){if(g){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("test",null,e)}catch(t){}return t}}(),B={on:function(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]&&arguments[3];x?t.addEventListener(e,n,{capture:i,passive:!0}):t.addEventListener(e,n,i)},off:function(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]&&arguments[3];t.removeEventListener(e,n,i)}},b=function(t,e,n){var i=new Image;i.src=t.src,i.onload=function(){e({naturalHeight:i.naturalHeight,naturalWidth:i.naturalWidth,src:i.src})},i.onerror=function(t){n(t)}},C=function(t,e){return"undefined"!=typeof getComputedStyle?getComputedStyle(t,null).getPropertyValue(e):t.style[e]},_=function(t){return C(t,"overflow")+C(t,"overflow-y")+C(t,"overflow-x")},S={},I=function(){function t(e){var n=e.el,i=e.src,r=e.error,o=e.loading,a=e.bindType,s=e.$parent,A=e.options,c=e.elRenderer;l(this,t),this.el=n,this.src=i,this.error=r,this.loading=o,this.bindType=a,this.attempt=0,this.naturalHeight=0,this.naturalWidth=0,this.options=A,this.rect=null,this.$parent=s,this.elRenderer=c,this.performanceData={init:Date.now(),loadStart:0,loadEnd:0},this.filter(),this.initState(),this.render("loading",!1)}return c(t,[{key:"initState",value:function(){this.el.dataset.src=this.src,this.state={error:!1,loaded:!1,rendered:!1}}},{key:"record",value:function(t){this.performanceData[t]=Date.now()}},{key:"update",value:function(t){var e=t.src,n=t.loading,i=t.error,r=this.src;this.src=e,this.loading=n,this.error=i,this.filter(),r!==this.src&&(this.attempt=0,this.initState())}},{key:"getRect",value:function(){this.rect=this.el.getBoundingClientRect()}},{key:"checkInView",value:function(){return this.getRect(),this.rect.top<window.innerHeight*this.options.preLoad&&this.rect.bottom>this.options.preLoadTop&&this.rect.left<window.innerWidth*this.options.preLoad&&this.rect.right>0}},{key:"filter",value:function(){var t=this;(function(t){if(!(t instanceof Object))return[];if(Object.keys)return Object.keys(t);var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);return e})(this.options.filter).map(function(e){t.options.filter[e](t,t.options)})}},{key:"renderLoading",value:function(t){var e=this;b({src:this.loading},function(n){e.render("loading",!1),t()},function(){t(),e.options.silent||console.warn("VueLazyload log: load failed with loading image("+e.loading+")")})}},{key:"load",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s;return this.attempt>this.options.attempt-1&&this.state.error?(this.options.silent||console.log("VueLazyload log: "+this.src+" tried too more than "+this.options.attempt+" times"),void e()):this.state.loaded||S[this.src]?(this.state.loaded=!0,e(),this.render("loaded",!0)):void this.renderLoading(function(){t.attempt++,t.record("loadStart"),b({src:t.src},function(n){t.naturalHeight=n.naturalHeight,t.naturalWidth=n.naturalWidth,t.state.loaded=!0,t.state.error=!1,t.record("loadEnd"),t.render("loaded",!1),S[t.src]=1,e()},function(e){!t.options.silent&&console.error(e),t.state.error=!0,t.state.loaded=!1,t.render("error",!1)})})}},{key:"render",value:function(t,e){this.elRenderer(this,t,e)}},{key:"performance",value:function(){var t="loading",e=0;return this.state.loaded&&(t="loaded",e=(this.performanceData.loadEnd-this.performanceData.loadStart)/1e3),this.state.error&&(t="error"),{src:this.src,state:t,time:e}}},{key:"destroy",value:function(){this.el=null,this.src=null,this.error=null,this.loading=null,this.bindType=null,this.attempt=0}}]),t}(),T="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",M=["scroll","wheel","mousewheel","resize","animationend","transitionend","touchmove"],Q={rootMargin:"0px",threshold:0},F=function(t){return function(){function e(t){var n=t.preLoad,i=t.error,r=t.throttleWait,o=t.preLoadTop,a=t.dispatchEvent,s=t.loading,A=t.attempt,c=t.silent,u=void 0===c||c,h=t.scale,d=t.listenEvents,f=(t.hasbind,t.filter),p=t.adapter,m=t.observer,y=t.observerOptions;l(this,e),this.version="1.2.3",this.mode=v.event,this.ListenerQueue=[],this.TargetIndex=0,this.TargetQueue=[],this.options={silent:u,dispatchEvent:!!a,throttleWait:r||200,preLoad:n||1.3,preLoadTop:o||0,error:i||T,loading:s||T,attempt:A||3,scale:h||w(h),ListenEvents:d||M,hasbind:!1,supportWebp:function(){if(!g)return!1;var t=!0,e=document;try{var n=e.createElement("object");n.type="image/webp",n.style.visibility="hidden",n.innerHTML="!",e.body.appendChild(n),t=!n.offsetWidth,e.body.removeChild(n)}catch(e){t=!1}return t}(),filter:f||{},adapter:p||{},observer:!!m,observerOptions:y||Q},this._initEvent(),this.lazyLoadHandler=function(t,e){var n=null,i=0;return function(){if(!n){var r=this,o=arguments,a=function(){i=Date.now(),n=!1,t.apply(r,o)};Date.now()-i>=e?a():n=setTimeout(a,e)}}}(this._lazyLoadHandler.bind(this),this.options.throttleWait),this.setMode(this.options.observer?v.observer:v.event)}return c(e,[{key:"config",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};p(this.options,t)}},{key:"performance",value:function(){var t=[];return this.ListenerQueue.map(function(e){t.push(e.performance())}),t}},{key:"addLazyBox",value:function(t){this.ListenerQueue.push(t),g&&(this._addListenerTarget(window),this._observer&&this._observer.observe(t.el),t.$el&&t.$el.parentNode&&this._addListenerTarget(t.$el.parentNode))}},{key:"add",value:function(e,n,i){var r=this;if(function(t,e){for(var n=!1,i=0,r=t.length;i<r;i++)if(e(t[i])){n=!0;break}return n}(this.ListenerQueue,function(t){return t.el===e}))return this.update(e,n),t.nextTick(this.lazyLoadHandler);var a=this._valueFormatter(n.value),s=a.src,A=a.loading,l=a.error;t.nextTick(function(){s=o(e,r.options.scale)||s,r._observer&&r._observer.observe(e);var a=Object.keys(n.modifiers)[0],c=void 0;a&&(c=(c=i.context.$refs[a])?c.$el||c:document.getElementById(a)),c||(c=function(t){if(g){if(!(t instanceof HTMLElement))return window;for(var e=t;e&&e!==document.body&&e!==document.documentElement&&e.parentNode;){if(/(scroll|auto)/.test(_(e)))return e;e=e.parentNode}return window}}(e));var u=new I({bindType:n.arg,$parent:c,el:e,loading:A,error:l,src:s,elRenderer:r._elRenderer.bind(r),options:r.options});r.ListenerQueue.push(u),g&&(r._addListenerTarget(window),r._addListenerTarget(c)),r.lazyLoadHandler(),t.nextTick(function(){return r.lazyLoadHandler()})})}},{key:"update",value:function(e,n){var i=this,r=this._valueFormatter(n.value),s=r.src,A=r.loading,l=r.error;s=o(e,this.options.scale)||s;var c=a(this.ListenerQueue,function(t){return t.el===e});c&&c.update({src:s,loading:A,error:l}),this._observer&&(this._observer.unobserve(e),this._observer.observe(e)),this.lazyLoadHandler(),t.nextTick(function(){return i.lazyLoadHandler()})}},{key:"remove",value:function(t){if(t){this._observer&&this._observer.unobserve(t);var e=a(this.ListenerQueue,function(e){return e.el===t});e&&(this._removeListenerTarget(e.$parent),this._removeListenerTarget(window),r(this.ListenerQueue,e)&&e.destroy())}}},{key:"removeComponent",value:function(t){t&&(r(this.ListenerQueue,t),this._observer&&this._observer.unobserve(t.el),t.$parent&&t.$el.parentNode&&this._removeListenerTarget(t.$el.parentNode),this._removeListenerTarget(window))}},{key:"setMode",value:function(t){var e=this;m||t!==v.observer||(t=v.event),this.mode=t,t===v.event?(this._observer&&(this.ListenerQueue.forEach(function(t){e._observer.unobserve(t.el)}),this._observer=null),this.TargetQueue.forEach(function(t){e._initListen(t.el,!0)})):(this.TargetQueue.forEach(function(t){e._initListen(t.el,!1)}),this._initIntersectionObserver())}},{key:"_addListenerTarget",value:function(t){if(t){var e=a(this.TargetQueue,function(e){return e.el===t});return e?e.childrenCount++:(e={el:t,id:++this.TargetIndex,childrenCount:1,listened:!0},this.mode===v.event&&this._initListen(e.el,!0),this.TargetQueue.push(e)),this.TargetIndex}}},{key:"_removeListenerTarget",value:function(t){var e=this;this.TargetQueue.forEach(function(n,i){n.el===t&&(--n.childrenCount||(e._initListen(n.el,!1),e.TargetQueue.splice(i,1),n=null))})}},{key:"_initListen",value:function(t,e){var n=this;this.options.ListenEvents.forEach(function(i){return B[e?"on":"off"](t,i,n.lazyLoadHandler)})}},{key:"_initEvent",value:function(){var t=this;this.Event={listeners:{loading:[],loaded:[],error:[]}},this.$on=function(e,n){t.Event.listeners[e].push(n)},this.$once=function(e,n){var i=t;t.$on(e,function t(){i.$off(e,t),n.apply(i,arguments)})},this.$off=function(e,n){n?r(t.Event.listeners[e],n):t.Event.listeners[e]=[]},this.$emit=function(e,n,i){t.Event.listeners[e].forEach(function(t){return t(n,i)})}}},{key:"_lazyLoadHandler",value:function(){var t=this;this.ListenerQueue.forEach(function(e,n){e.state.loaded||e.checkInView()&&e.load(function(){!e.error&&e.loaded&&t.ListenerQueue.splice(n,1)})})}},{key:"_initIntersectionObserver",value:function(){var t=this;m&&(this._observer=new IntersectionObserver(this._observerHandler.bind(this),this.options.observerOptions),this.ListenerQueue.length&&this.ListenerQueue.forEach(function(e){t._observer.observe(e.el)}))}},{key:"_observerHandler",value:function(t,e){var n=this;t.forEach(function(t){t.isIntersecting&&n.ListenerQueue.forEach(function(e){if(e.el===t.target){if(e.state.loaded)return n._observer.unobserve(e.el);e.load()}})})}},{key:"_elRenderer",value:function(t,e,n){if(t.el){var i=t.el,r=t.bindType,o=void 0;switch(e){case"loading":o=t.loading;break;case"error":o=t.error;break;default:o=t.src}if(r?i.style[r]='url("'+o+'")':i.getAttribute("src")!==o&&i.setAttribute("src",o),i.setAttribute("lazy",e),this.$emit(e,t,n),this.options.adapter[e]&&this.options.adapter[e](t,this.options),this.options.dispatchEvent){var a=new y(e,{detail:t});i.dispatchEvent(a)}}}},{key:"_valueFormatter",value:function(t){var e=t,n=this.options.loading,i=this.options.error;return function(t){return null!==t&&"object"===(void 0===t?"undefined":A(t))}(t)&&(t.src||this.options.silent||console.error("Vue Lazyload warning: miss src with "+t),e=t.src,n=t.loading||this.options.loading,i=t.error||this.options.error),{src:e,loading:n,error:i}}}]),e}()},k=function(){function t(e){var n=e.lazy;l(this,t),this.lazy=n,n.lazyContainerMananger=this,this._queue=[]}return c(t,[{key:"bind",value:function(t,e,n){var i=new U({el:t,binding:e,vnode:n,lazy:this.lazy});this._queue.push(i)}},{key:"update",value:function(t,e,n){var i=a(this._queue,function(e){return e.el===t});i&&i.update({el:t,binding:e,vnode:n})}},{key:"unbind",value:function(t,e,n){var i=a(this._queue,function(e){return e.el===t});i&&(i.clear(),r(this._queue,i))}}]),t}(),D={selector:"img"},U=function(){function t(e){var n=e.el,i=e.binding,r=e.vnode,o=e.lazy;l(this,t),this.el=null,this.vnode=r,this.binding=i,this.options={},this.lazy=o,this._queue=[],this.update({el:n,binding:i})}return c(t,[{key:"update",value:function(t){var e=this,n=t.el,i=t.binding;this.el=n,this.options=p({},D,i.value),this.getImgs().forEach(function(t){e.lazy.add(t,p({},e.binding,{value:{src:t.dataset.src,error:t.dataset.error,loading:t.dataset.loading}}),e.vnode)})}},{key:"getImgs",value:function(){return function(t){for(var e=t.length,n=[],i=0;i<e;i++)n.push(t[i]);return n}(this.el.querySelectorAll(this.options.selector))}},{key:"clear",value:function(){var t=this;this.getImgs().forEach(function(e){return t.lazy.remove(e)}),this.vnode=null,this.binding=null,this.lazy=null}}]),t}();return{install:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=new(F(t))(e),i=new k({lazy:n}),r="2"===t.version.split(".")[0];t.prototype.$Lazyload=n,e.lazyComponent&&t.component("lazy-component",function(t){return{props:{tag:{type:String,default:"div"}},render:function(t){return!1===this.show?t(this.tag):t(this.tag,null,this.$slots.default)},data:function(){return{el:null,state:{loaded:!1},rect:{},show:!1}},mounted:function(){this.el=this.$el,t.addLazyBox(this),t.lazyLoadHandler()},beforeDestroy:function(){t.removeComponent(this)},methods:{getRect:function(){this.rect=this.$el.getBoundingClientRect()},checkInView:function(){return this.getRect(),g&&this.rect.top<window.innerHeight*t.options.preLoad&&this.rect.bottom>0&&this.rect.left<window.innerWidth*t.options.preLoad&&this.rect.right>0},load:function(){this.show=!0,this.state.loaded=!0,this.$emit("show",this)}}}}(n)),r?(t.directive("lazy",{bind:n.add.bind(n),update:n.update.bind(n),componentUpdated:n.lazyLoadHandler.bind(n),unbind:n.remove.bind(n)}),t.directive("lazy-container",{bind:i.bind.bind(i),update:i.update.bind(i),unbind:i.unbind.bind(i)})):(t.directive("lazy",{bind:n.lazyLoadHandler.bind(n),update:function(t,e){p(this.vm.$refs,this.vm.$els),n.add(this.el,{modifiers:this.modifiers||{},arg:this.arg,value:t,oldValue:e},{context:this.vm})},unbind:function(){n.remove(this.el)}}),t.directive("lazy-container",{update:function(t,e){i.update(this.el,{modifiers:this.modifiers||{},arg:this.arg,value:t,oldValue:e},{context:this.vm})},unbind:function(){i.unbind(this.el)}}))}}},t.exports=i()},lPSU:function(t,e,n){"use strict";function i(t,e){for(var n in e)t[n]=e[n];return t}n.d(e,"a",function(){return Wt});var r=/[!'()*]/g,o=function(t){return"%"+t.charCodeAt(0).toString(16)},a=/%2C/g,s=function(t){return encodeURIComponent(t).replace(r,o).replace(a,",")};function A(t){try{return decodeURIComponent(t)}catch(t){0}return t}var l=function(t){return null==t||"object"==typeof t?t:String(t)};function c(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),i=A(n.shift()),r=n.length>0?A(n.join("=")):null;void 0===e[i]?e[i]=r:Array.isArray(e[i])?e[i].push(r):e[i]=[e[i],r]}),e):e}function u(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return s(e);if(Array.isArray(n)){var i=[];return n.forEach(function(t){void 0!==t&&(null===t?i.push(s(e)):i.push(s(e)+"="+s(t)))}),i.join("&")}return s(e)+"="+s(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var h=/\/?$/;function d(t,e,n,i){var r=i&&i.options.stringifyQuery,o=e.query||{};try{o=f(o)}catch(t){}var a={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:o,params:e.params||{},fullPath:g(e,r),matched:t?function(t){var e=[];for(;t;)e.unshift(t),t=t.parent;return e}(t):[]};return n&&(a.redirectedFrom=g(n,r)),Object.freeze(a)}function f(t){if(Array.isArray(t))return t.map(f);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=f(t[n]);return e}return t}var p=d(null,{path:"/"});function g(t,e){var n=t.path,i=t.query;void 0===i&&(i={});var r=t.hash;return void 0===r&&(r=""),(n||"/")+(e||u)(i)+r}function m(t,e,n){return e===p?t===e:!!e&&(t.path&&e.path?t.path.replace(h,"")===e.path.replace(h,"")&&(n||t.hash===e.hash&&v(t.query,e.query)):!(!t.name||!e.name)&&(t.name===e.name&&(n||t.hash===e.hash&&v(t.query,e.query)&&v(t.params,e.params))))}function v(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),i=Object.keys(e).sort();return n.length===i.length&&n.every(function(n,r){var o=t[n];if(i[r]!==n)return!1;var a=e[n];return null==o||null==a?o===a:"object"==typeof o&&"object"==typeof a?v(o,a):String(o)===String(a)})}function y(t){for(var e=0;e<t.matched.length;e++){var n=t.matched[e];for(var i in n.instances){var r=n.instances[i],o=n.enteredCbs[i];if(r&&o){delete n.enteredCbs[i];for(var a=0;a<o.length;a++)r._isBeingDestroyed||o[a](r)}}}}var w={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,o=e.parent,a=e.data;a.routerView=!0;for(var s=o.$createElement,A=n.name,l=o.$route,c=o._routerViewCache||(o._routerViewCache={}),u=0,h=!1;o&&o._routerRoot!==o;){var d=o.$vnode?o.$vnode.data:{};d.routerView&&u++,d.keepAlive&&o._directInactive&&o._inactive&&(h=!0),o=o.$parent}if(a.routerViewDepth=u,h){var f=c[A],p=f&&f.component;return p?(f.configProps&&x(p,a,f.route,f.configProps),s(p,a,r)):s()}var g=l.matched[u],m=g&&g.components[A];if(!g||!m)return c[A]=null,s();c[A]={component:m},a.registerRouteInstance=function(t,e){var n=g.instances[A];(e&&n!==t||!e&&n===t)&&(g.instances[A]=e)},(a.hook||(a.hook={})).prepatch=function(t,e){g.instances[A]=e.componentInstance},a.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==g.instances[A]&&(g.instances[A]=t.componentInstance),y(l)};var v=g.props&&g.props[A];return v&&(i(c[A],{route:l,configProps:v}),x(m,a,l,v)),s(m,a,r)}};function x(t,e,n,r){var o=e.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(n,r);if(o){o=e.props=i({},o);var a=e.attrs=e.attrs||{};for(var s in o)t.props&&s in t.props||(a[s]=o[s],delete o[s])}}function B(t,e,n){var i=t.charAt(0);if("/"===i)return t;if("?"===i||"#"===i)return e+t;var r=e.split("/");n&&r[r.length-1]||r.pop();for(var o=t.replace(/^\//,"").split("/"),a=0;a<o.length;a++){var s=o[a];".."===s?r.pop():"."!==s&&r.push(s)}return""!==r[0]&&r.unshift(""),r.join("/")}function b(t){return t.replace(/\/(?:\s*\/)+/g,"/")}var C=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},_=H,S=F,I=function(t,e){return D(F(t,e),e)},T=D,M=P,Q=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function F(t,e){for(var n,i=[],r=0,o=0,a="",s=e&&e.delimiter||"/";null!=(n=Q.exec(t));){var A=n[0],l=n[1],c=n.index;if(a+=t.slice(o,c),o=c+A.length,l)a+=l[1];else{var u=t[o],h=n[2],d=n[3],f=n[4],p=n[5],g=n[6],m=n[7];a&&(i.push(a),a="");var v=null!=h&&null!=u&&u!==h,y="+"===g||"*"===g,w="?"===g||"*"===g,x=n[2]||s,B=f||p;i.push({name:d||r++,prefix:h||"",delimiter:x,optional:w,repeat:y,partial:v,asterisk:!!m,pattern:B?E(B):m?".*":"[^"+U(x)+"]+?"})}}return o<t.length&&(a+=t.substr(o)),a&&i.push(a),i}function k(t){return encodeURI(t).replace(/[\/?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function D(t,e){for(var n=new Array(t.length),i=0;i<t.length;i++)"object"==typeof t[i]&&(n[i]=new RegExp("^(?:"+t[i].pattern+")$",O(e)));return function(e,i){for(var r="",o=e||{},a=(i||{}).pretty?k:encodeURIComponent,s=0;s<t.length;s++){var A=t[s];if("string"!=typeof A){var l,c=o[A.name];if(null==c){if(A.optional){A.partial&&(r+=A.prefix);continue}throw new TypeError('Expected "'+A.name+'" to be defined')}if(C(c)){if(!A.repeat)throw new TypeError('Expected "'+A.name+'" to not repeat, but received `'+JSON.stringify(c)+"`");if(0===c.length){if(A.optional)continue;throw new TypeError('Expected "'+A.name+'" to not be empty')}for(var u=0;u<c.length;u++){if(l=a(c[u]),!n[s].test(l))throw new TypeError('Expected all "'+A.name+'" to match "'+A.pattern+'", but received `'+JSON.stringify(l)+"`");r+=(0===u?A.prefix:A.delimiter)+l}}else{if(l=A.asterisk?encodeURI(c).replace(/[?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}):a(c),!n[s].test(l))throw new TypeError('Expected "'+A.name+'" to match "'+A.pattern+'", but received "'+l+'"');r+=A.prefix+l}}else r+=A}return r}}function U(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function E(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function L(t,e){return t.keys=e,t}function O(t){return t&&t.sensitive?"":"i"}function P(t,e,n){C(e)||(n=e||n,e=[]);for(var i=(n=n||{}).strict,r=!1!==n.end,o="",a=0;a<t.length;a++){var s=t[a];if("string"==typeof s)o+=U(s);else{var A=U(s.prefix),l="(?:"+s.pattern+")";e.push(s),s.repeat&&(l+="(?:"+A+l+")*"),o+=l=s.optional?s.partial?A+"("+l+")?":"(?:"+A+"("+l+"))?":A+"("+l+")"}}var c=U(n.delimiter||"/"),u=o.slice(-c.length)===c;return i||(o=(u?o.slice(0,-c.length):o)+"(?:"+c+"(?=$))?"),o+=r?"$":i&&u?"":"(?="+c+"|$)",L(new RegExp("^"+o,O(n)),e)}function H(t,e,n){return C(e)||(n=e||n,e=[]),n=n||{},t instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var i=0;i<n.length;i++)e.push({name:i,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return L(t,e)}(t,e):C(t)?function(t,e,n){for(var i=[],r=0;r<t.length;r++)i.push(H(t[r],e,n).source);return L(new RegExp("(?:"+i.join("|")+")",O(n)),e)}(t,e,n):function(t,e,n){return P(F(t,n),e,n)}(t,e,n)}_.parse=S,_.compile=I,_.tokensToFunction=T,_.tokensToRegExp=M;var N=Object.create(null);function R(t,e,n){e=e||{};try{var i=N[t]||(N[t]=_.compile(t));return"string"==typeof e.pathMatch&&(e[0]=e.pathMatch),i(e,{pretty:!0})}catch(t){return""}finally{delete e[0]}}function V(t,e,n,r){var o="string"==typeof t?{path:t}:t;if(o._normalized)return o;if(o.name){var a=(o=i({},t)).params;return a&&"object"==typeof a&&(o.params=i({},a)),o}if(!o.path&&o.params&&e){(o=i({},o))._normalized=!0;var s=i(i({},e.params),o.params);if(e.name)o.name=e.name,o.params=s;else if(e.matched.length){var A=e.matched[e.matched.length-1].path;o.path=R(A,s,e.path)}else 0;return o}var u=function(t){var e="",n="",i=t.indexOf("#");i>=0&&(e=t.slice(i),t=t.slice(0,i));var r=t.indexOf("?");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{path:t,query:n,hash:e}}(o.path||""),h=e&&e.path||"/",d=u.path?B(u.path,h,n||o.append):h,f=function(t,e,n){void 0===e&&(e={});var i,r=n||c;try{i=r(t||"")}catch(t){i={}}for(var o in e){var a=e[o];i[o]=Array.isArray(a)?a.map(l):l(a)}return i}(u.query,o.query,r&&r.options.parseQuery),p=o.hash||u.hash;return p&&"#"!==p.charAt(0)&&(p="#"+p),{_normalized:!0,path:d,query:f,hash:p}}var z,K=[String,Object],G=[String,Array],W=function(){},j={name:"RouterLink",props:{to:{type:K,required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:G,default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,o=n.resolve(this.to,r,this.append),a=o.location,s=o.route,A=o.href,l={},c=n.options.linkActiveClass,u=n.options.linkExactActiveClass,f=null==c?"router-link-active":c,p=null==u?"router-link-exact-active":u,g=null==this.activeClass?f:this.activeClass,v=null==this.exactActiveClass?p:this.exactActiveClass,y=s.redirectedFrom?d(null,V(s.redirectedFrom),null,n):s;l[v]=m(r,y,this.exactPath),l[g]=this.exact||this.exactPath?l[v]:function(t,e){return 0===t.path.replace(h,"/").indexOf(e.path.replace(h,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,y);var w=l[v]?this.ariaCurrentValue:null,x=function(t){$(t)&&(e.replace?n.replace(a,W):n.push(a,W))},B={click:$};Array.isArray(this.event)?this.event.forEach(function(t){B[t]=x}):B[this.event]=x;var b={class:l},C=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:A,route:s,navigate:x,isActive:l[g],isExactActive:l[v]});if(C){if(1===C.length)return C[0];if(C.length>1||!C.length)return 0===C.length?t():t("span",{},C)}if("a"===this.tag)b.on=B,b.attrs={href:A,"aria-current":w};else{var _=function t(e){if(e)for(var n,i=0;i<e.length;i++){if("a"===(n=e[i]).tag)return n;if(n.children&&(n=t(n.children)))return n}}(this.$slots.default);if(_){_.isStatic=!1;var S=_.data=i({},_.data);for(var I in S.on=S.on||{},S.on){var T=S.on[I];I in B&&(S.on[I]=Array.isArray(T)?T:[T])}for(var M in B)M in S.on?S.on[M].push(B[M]):S.on[M]=x;var Q=_.data.attrs=i({},_.data.attrs);Q.href=A,Q["aria-current"]=w}else b.on=B}return t(this.tag,b,this.$slots.default)}};function $(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function q(t){if(!q.installed||z!==t){q.installed=!0,z=t;var e=function(t){return void 0!==t},n=function(t,n){var i=t.$options._parentVnode;e(i)&&e(i=i.data)&&e(i=i.registerRouteInstance)&&i(t,n)};t.mixin({beforeCreate:function(){e(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("RouterView",w),t.component("RouterLink",j);var i=t.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}}var Y="undefined"!=typeof window;function X(t,e,n,i,r){var o=e||[],a=n||Object.create(null),s=i||Object.create(null);t.forEach(function(t){!function t(e,n,i,r,o,a){var s=r.path;var A=r.name;0;var l=r.pathToRegexpOptions||{};var c=function(t,e,n){n||(t=t.replace(/\/$/,""));if("/"===t[0])return t;if(null==e)return t;return b(e.path+"/"+t)}(s,o,l.strict);"boolean"==typeof r.caseSensitive&&(l.sensitive=r.caseSensitive);var u={path:c,regex:function(t,e){var n=_(t,[],e);return n}(c,l),components:r.components||{default:r.component},alias:r.alias?"string"==typeof r.alias?[r.alias]:r.alias:[],instances:{},enteredCbs:{},name:A,parent:o,matchAs:a,redirect:r.redirect,beforeEnter:r.beforeEnter,meta:r.meta||{},props:null==r.props?{}:r.components?r.props:{default:r.props}};r.children&&r.children.forEach(function(r){var o=a?b(a+"/"+r.path):void 0;t(e,n,i,r,u,o)});n[u.path]||(e.push(u.path),n[u.path]=u);if(void 0!==r.alias)for(var h=Array.isArray(r.alias)?r.alias:[r.alias],d=0;d<h.length;++d){var f=h[d];0;var p={path:f,children:r.children};t(e,n,i,p,o,u.path||"/")}A&&(i[A]||(i[A]=u))}(o,a,s,t,r)});for(var A=0,l=o.length;A<l;A++)"*"===o[A]&&(o.push(o.splice(A,1)[0]),l--,A--);return{pathList:o,pathMap:a,nameMap:s}}function J(t,e){var n=X(t),i=n.pathList,r=n.pathMap,o=n.nameMap;function a(t,n,a){var s=V(t,n,!1,e),l=s.name;if(l){var c=o[l];if(!c)return A(null,s);var u=c.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof s.params&&(s.params={}),n&&"object"==typeof n.params)for(var h in n.params)!(h in s.params)&&u.indexOf(h)>-1&&(s.params[h]=n.params[h]);return s.path=R(c.path,s.params),A(c,s,a)}if(s.path){s.params={};for(var d=0;d<i.length;d++){var f=i[d],p=r[f];if(Z(p.regex,s.path,s.params))return A(p,s,a)}}return A(null,s)}function s(t,n){var i=t.redirect,r="function"==typeof i?i(d(t,n,null,e)):i;if("string"==typeof r&&(r={path:r}),!r||"object"!=typeof r)return A(null,n);var s=r,l=s.name,c=s.path,u=n.query,h=n.hash,f=n.params;if(u=s.hasOwnProperty("query")?s.query:u,h=s.hasOwnProperty("hash")?s.hash:h,f=s.hasOwnProperty("params")?s.params:f,l){o[l];return a({_normalized:!0,name:l,query:u,hash:h,params:f},void 0,n)}if(c){var p=function(t,e){return B(t,e.parent?e.parent.path:"/",!0)}(c,t);return a({_normalized:!0,path:R(p,f),query:u,hash:h},void 0,n)}return A(null,n)}function A(t,n,i){return t&&t.redirect?s(t,i||n):t&&t.matchAs?function(t,e,n){var i=a({_normalized:!0,path:R(n,e.params)});if(i){var r=i.matched,o=r[r.length-1];return e.params=i.params,A(o,e)}return A(null,e)}(0,n,t.matchAs):d(t,n,i,e)}return{match:a,addRoute:function(t,e){var n="object"!=typeof t?o[t]:void 0;X([e||t],i,r,o,n),n&&n.alias.length&&X(n.alias.map(function(t){return{path:t,children:[e]}}),i,r,o,n)},getRoutes:function(){return i.map(function(t){return r[t]})},addRoutes:function(t){X(t,i,r,o)}}}function Z(t,e,n){var i=e.match(t);if(!i)return!1;if(!n)return!0;for(var r=1,o=i.length;r<o;++r){var a=t.keys[r-1];a&&(n[a.name||"pathMatch"]="string"==typeof i[r]?A(i[r]):i[r])}return!0}var tt=Y&&window.performance&&window.performance.now?window.performance:Date;function et(){return tt.now().toFixed(3)}var nt=et();function it(){return nt}function rt(t){return nt=t}var ot=Object.create(null);function at(){"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var t=window.location.protocol+"//"+window.location.host,e=window.location.href.replace(t,""),n=i({},window.history.state);return n.key=it(),window.history.replaceState(n,"",e),window.addEventListener("popstate",lt),function(){window.removeEventListener("popstate",lt)}}function st(t,e,n,i){if(t.app){var r=t.options.scrollBehavior;r&&t.app.$nextTick(function(){var o=function(){var t=it();if(t)return ot[t]}(),a=r.call(t,e,n,i?o:null);a&&("function"==typeof a.then?a.then(function(t){ft(t,o)}).catch(function(t){0}):ft(a,o))})}}function At(){var t=it();t&&(ot[t]={x:window.pageXOffset,y:window.pageYOffset})}function lt(t){At(),t.state&&t.state.key&&rt(t.state.key)}function ct(t){return ht(t.x)||ht(t.y)}function ut(t){return{x:ht(t.x)?t.x:window.pageXOffset,y:ht(t.y)?t.y:window.pageYOffset}}function ht(t){return"number"==typeof t}var dt=/^#\d/;function ft(t,e){var n,i="object"==typeof t;if(i&&"string"==typeof t.selector){var r=dt.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(r){var o=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),i=t.getBoundingClientRect();return{x:i.left-n.left-e.x,y:i.top-n.top-e.y}}(r,o={x:ht((n=o).x)?n.x:0,y:ht(n.y)?n.y:0})}else ct(t)&&(e=ut(t))}else i&&ct(t)&&(e=ut(t));e&&("scrollBehavior"in document.documentElement.style?window.scrollTo({left:e.x,top:e.y,behavior:t.behavior}):window.scrollTo(e.x,e.y))}var pt,gt=Y&&((-1===(pt=window.navigator.userAgent).indexOf("Android 2.")&&-1===pt.indexOf("Android 4.0")||-1===pt.indexOf("Mobile Safari")||-1!==pt.indexOf("Chrome")||-1!==pt.indexOf("Windows Phone"))&&window.history&&"function"==typeof window.history.pushState);function mt(t,e){At();var n=window.history;try{if(e){var r=i({},n.state);r.key=it(),n.replaceState(r,"",t)}else n.pushState({key:rt(et())},"",t)}catch(n){window.location[e?"replace":"assign"](t)}}function vt(t){mt(t,!0)}var yt={redirected:2,aborted:4,cancelled:8,duplicated:16};function wt(t,e){return Bt(t,e,yt.redirected,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return bt.forEach(function(n){n in t&&(e[n]=t[n])}),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}function xt(t,e){return Bt(t,e,yt.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Bt(t,e,n,i){var r=new Error(i);return r._isRouter=!0,r.from=t,r.to=e,r.type=n,r}var bt=["params","query","hash"];function Ct(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function _t(t,e){return Ct(t)&&t._isRouter&&(null==e||t.type===e)}function St(t,e,n){var i=function(r){r>=t.length?n():t[r]?e(t[r],function(){i(r+1)}):i(r+1)};i(0)}function It(t){return function(e,n,i){var r=!1,o=0,a=null;Tt(t,function(t,e,n,s){if("function"==typeof t&&void 0===t.cid){r=!0,o++;var A,l=Ft(function(e){var r;((r=e).__esModule||Qt&&"Module"===r[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:z.extend(e),n.components[s]=e,--o<=0&&i()}),c=Ft(function(t){var e="Failed to resolve async component "+s+": "+t;a||(a=Ct(t)?t:new Error(e),i(a))});try{A=t(l,c)}catch(t){c(t)}if(A)if("function"==typeof A.then)A.then(l,c);else{var u=A.component;u&&"function"==typeof u.then&&u.then(l,c)}}}),r||i()}}function Tt(t,e){return Mt(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function Mt(t){return Array.prototype.concat.apply([],t)}var Qt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function Ft(t){var e=!1;return function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];if(!e)return e=!0,t.apply(this,n)}}var kt=function(t,e){this.router=t,this.base=function(t){if(!t)if(Y){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=p,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function Dt(t,e,n,i){var r=Tt(t,function(t,i,r,o){var a=function(t,e){"function"!=typeof t&&(t=z.extend(t));return t.options[e]}(t,e);if(a)return Array.isArray(a)?a.map(function(t){return n(t,i,r,o)}):n(a,i,r,o)});return Mt(i?r.reverse():r)}function Ut(t,e){if(e)return function(){return t.apply(e,arguments)}}kt.prototype.listen=function(t){this.cb=t},kt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},kt.prototype.onError=function(t){this.errorCbs.push(t)},kt.prototype.transitionTo=function(t,e,n){var i,r=this;try{i=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach(function(e){e(t)}),t}var o=this.current;this.confirmTransition(i,function(){r.updateRoute(i),e&&e(i),r.ensureURL(),r.router.afterHooks.forEach(function(t){t&&t(i,o)}),r.ready||(r.ready=!0,r.readyCbs.forEach(function(t){t(i)}))},function(t){n&&n(t),t&&!r.ready&&(_t(t,yt.redirected)&&o===p||(r.ready=!0,r.readyErrorCbs.forEach(function(e){e(t)})))})},kt.prototype.confirmTransition=function(t,e,n){var i=this,r=this.current;this.pending=t;var o,a,s=function(t){!_t(t)&&Ct(t)&&(i.errorCbs.length?i.errorCbs.forEach(function(e){e(t)}):console.error(t)),n&&n(t)},A=t.matched.length-1,l=r.matched.length-1;if(m(t,r)&&A===l&&t.matched[A]===r.matched[l])return this.ensureURL(),t.hash&&st(this.router,r,t,!1),s(((a=Bt(o=r,t,yt.duplicated,'Avoided redundant navigation to current location: "'+o.fullPath+'".')).name="NavigationDuplicated",a));var c=function(t,e){var n,i=Math.max(t.length,e.length);for(n=0;n<i&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),u=c.updated,h=c.deactivated,d=c.activated,f=function(e,n){if(i.pending!==t)return s(xt(r,t));try{e(t,r,function(e){!1===e?(i.ensureURL(!0),s(function(t,e){return Bt(t,e,yt.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}(r,t))):Ct(e)?(i.ensureURL(!0),s(e)):"string"==typeof e||"object"==typeof e&&("string"==typeof e.path||"string"==typeof e.name)?(s(wt(r,t)),"object"==typeof e&&e.replace?i.replace(e):i.push(e)):n(e)})}catch(t){s(t)}};St([].concat(function(t){return Dt(t,"beforeRouteLeave",Ut,!0)}(h),this.router.beforeHooks,function(t){return Dt(t,"beforeRouteUpdate",Ut)}(u),d.map(function(t){return t.beforeEnter}),It(d)),f,function(){St(function(t){return Dt(t,"beforeRouteEnter",function(t,e,n,i){return function(t,e,n){return function(i,r,o){return t(i,r,function(t){"function"==typeof t&&(e.enteredCbs[n]||(e.enteredCbs[n]=[]),e.enteredCbs[n].push(t)),o(t)})}}(t,n,i)})}(d).concat(i.router.resolveHooks),f,function(){if(i.pending!==t)return s(xt(r,t));i.pending=null,e(t),i.router.app&&i.router.app.$nextTick(function(){y(t)})})})},kt.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},kt.prototype.setupListeners=function(){},kt.prototype.teardown=function(){this.listeners.forEach(function(t){t()}),this.listeners=[],this.current=p,this.pending=null};var Et=function(t){function e(e,n){t.call(this,e,n),this._startLocation=Lt(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,i=gt&&n;i&&this.listeners.push(at());var r=function(){var n=t.current,r=Lt(t.base);t.current===p&&r===t._startLocation||t.transitionTo(r,function(t){i&&st(e,t,n,!0)})};window.addEventListener("popstate",r),this.listeners.push(function(){window.removeEventListener("popstate",r)})}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){mt(b(i.base+t.fullPath)),st(i.router,t,r,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){vt(b(i.base+t.fullPath)),st(i.router,t,r,!1),e&&e(t)},n)},e.prototype.ensureURL=function(t){if(Lt(this.base)!==this.current.fullPath){var e=b(this.base+this.current.fullPath);t?mt(e):vt(e)}},e.prototype.getCurrentLocation=function(){return Lt(this.base)},e}(kt);function Lt(t){var e=window.location.pathname,n=e.toLowerCase(),i=t.toLowerCase();return!t||n!==i&&0!==n.indexOf(b(i+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var Ot=function(t){function e(e,n,i){t.call(this,e,n),i&&function(t){var e=Lt(t);if(!/^\/#/.test(e))return window.location.replace(b(t+"/#"+e)),!0}(this.base)||Pt()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=gt&&e;n&&this.listeners.push(at());var i=function(){var e=t.current;Pt()&&t.transitionTo(Ht(),function(i){n&&st(t.router,i,e,!0),gt||Vt(i.fullPath)})},r=gt?"popstate":"hashchange";window.addEventListener(r,i),this.listeners.push(function(){window.removeEventListener(r,i)})}},e.prototype.push=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){Rt(t.fullPath),st(i.router,t,r,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){Vt(t.fullPath),st(i.router,t,r,!1),e&&e(t)},n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;Ht()!==e&&(t?Rt(e):Vt(e))},e.prototype.getCurrentLocation=function(){return Ht()},e}(kt);function Pt(){var t=Ht();return"/"===t.charAt(0)||(Vt("/"+t),!1)}function Ht(){var t=window.location.href,e=t.indexOf("#");return e<0?"":t=t.slice(e+1)}function Nt(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Rt(t){gt?mt(Nt(t)):window.location.hash=t}function Vt(t){gt?vt(Nt(t)):window.location.replace(Nt(t))}var zt=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index+1).concat(t),i.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,function(){var t=e.current;e.index=n,e.updateRoute(i),e.router.afterHooks.forEach(function(e){e&&e(i,t)})},function(t){_t(t,yt.duplicated)&&(e.index=n)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(kt),Kt=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=J(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!gt&&!1!==t.fallback,this.fallback&&(e="hash"),Y||(e="abstract"),this.mode=e,e){case"history":this.history=new Et(this,t.base);break;case"hash":this.history=new Ot(this,t.base,this.fallback);break;case"abstract":this.history=new zt(this,t.base);break;default:0}},Gt={currentRoute:{configurable:!0}};Kt.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Gt.currentRoute.get=function(){return this.history&&this.history.current},Kt.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()}),!this.app){this.app=t;var n=this.history;if(n instanceof Et||n instanceof Ot){var i=function(t){n.setupListeners(),function(t){var i=n.current,r=e.options.scrollBehavior;gt&&r&&"fullPath"in t&&st(e,t,i,!1)}(t)};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},Kt.prototype.beforeEach=function(t){return jt(this.beforeHooks,t)},Kt.prototype.beforeResolve=function(t){return jt(this.resolveHooks,t)},Kt.prototype.afterEach=function(t){return jt(this.afterHooks,t)},Kt.prototype.onReady=function(t,e){this.history.onReady(t,e)},Kt.prototype.onError=function(t){this.history.onError(t)},Kt.prototype.push=function(t,e,n){var i=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise(function(e,n){i.history.push(t,e,n)});this.history.push(t,e,n)},Kt.prototype.replace=function(t,e,n){var i=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise(function(e,n){i.history.replace(t,e,n)});this.history.replace(t,e,n)},Kt.prototype.go=function(t){this.history.go(t)},Kt.prototype.back=function(){this.go(-1)},Kt.prototype.forward=function(){this.go(1)},Kt.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},Kt.prototype.resolve=function(t,e,n){var i=V(t,e=e||this.history.current,n,this),r=this.match(i,e),o=r.redirectedFrom||r.fullPath;return{location:i,route:r,href:function(t,e,n){var i="hash"===n?"#"+e:e;return t?b(t+"/"+i):i}(this.history.base,o,this.mode),normalizedTo:i,resolved:r}},Kt.prototype.getRoutes=function(){return this.matcher.getRoutes()},Kt.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==p&&this.history.transitionTo(this.history.getCurrentLocation())},Kt.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==p&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Kt.prototype,Gt);var Wt=Kt;function jt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Kt.install=q,Kt.version="3.6.5",Kt.isNavigationFailure=_t,Kt.NavigationFailureType=yt,Kt.START_LOCATION=p,Y&&window.Vue&&window.Vue.use(Kt)},lbYD:function(t,e){var n="undefined"==typeof Float32Array?Array:Float32Array;function i(t){return Math.sqrt(o(t))}var r=i;function o(t){return t[0]*t[0]+t[1]*t[1]}var a=o;function s(t,e){return Math.sqrt((t[0]-e[0])*(t[0]-e[0])+(t[1]-e[1])*(t[1]-e[1]))}var A=s;function l(t,e){return(t[0]-e[0])*(t[0]-e[0])+(t[1]-e[1])*(t[1]-e[1])}var c=l;e.create=function(t,e){var i=new n(2);return null==t&&(t=0),null==e&&(e=0),i[0]=t,i[1]=e,i},e.copy=function(t,e){return t[0]=e[0],t[1]=e[1],t},e.clone=function(t){var e=new n(2);return e[0]=t[0],e[1]=t[1],e},e.set=function(t,e,n){return t[0]=e,t[1]=n,t},e.add=function(t,e,n){return t[0]=e[0]+n[0],t[1]=e[1]+n[1],t},e.scaleAndAdd=function(t,e,n,i){return t[0]=e[0]+n[0]*i,t[1]=e[1]+n[1]*i,t},e.sub=function(t,e,n){return t[0]=e[0]-n[0],t[1]=e[1]-n[1],t},e.len=i,e.length=r,e.lenSquare=o,e.lengthSquare=a,e.mul=function(t,e,n){return t[0]=e[0]*n[0],t[1]=e[1]*n[1],t},e.div=function(t,e,n){return t[0]=e[0]/n[0],t[1]=e[1]/n[1],t},e.dot=function(t,e){return t[0]*e[0]+t[1]*e[1]},e.scale=function(t,e,n){return t[0]=e[0]*n,t[1]=e[1]*n,t},e.normalize=function(t,e){var n=i(e);return 0===n?(t[0]=0,t[1]=0):(t[0]=e[0]/n,t[1]=e[1]/n),t},e.distance=s,e.dist=A,e.distanceSquare=l,e.distSquare=c,e.negate=function(t,e){return t[0]=-e[0],t[1]=-e[1],t},e.lerp=function(t,e,n,i){return t[0]=e[0]+i*(n[0]-e[0]),t[1]=e[1]+i*(n[1]-e[1]),t},e.applyTransform=function(t,e,n){var i=e[0],r=e[1];return t[0]=n[0]*i+n[2]*r+n[4],t[1]=n[1]*i+n[3]*r+n[5],t},e.min=function(t,e,n){return t[0]=Math.min(e[0],n[0]),t[1]=Math.min(e[1],n[1]),t},e.max=function(t,e,n){return t[0]=Math.max(e[0],n[0]),t[1]=Math.max(e[1],n[1]),t}},lk7o:function(t,e,n){var i=n("A5tq"),r=i.retrieve2,o=i.retrieve3,a=i.each,s=i.normalizeCssArray,A=i.isString,l=i.isObject,c=n("ixaL"),u=n("3Zgs"),h=n("vnMr"),d=n("fBU7"),f=n("yQXb"),p=f.ContextCachedBy,g=f.WILL_BE_RESTORED,m=c.DEFAULT_FONT,v={left:1,right:1,center:1},y={top:1,bottom:1,middle:1},w=[["textShadowBlur","shadowBlur",0],["textShadowOffsetX","shadowOffsetX",0],["textShadowOffsetY","shadowOffsetY",0],["textShadowColor","shadowColor","transparent"]],x={},B={};function b(t){if(t){t.font=c.makeFont(t);var e=t.textAlign;"middle"===e&&(e="center"),t.textAlign=null==e||v[e]?e:"left";var n=t.textVerticalAlign||t.textBaseline;"center"===n&&(n="middle"),t.textVerticalAlign=null==n||y[n]?n:"top",t.textPadding&&(t.textPadding=s(t.textPadding))}}function C(t,e,n,i,r){if(n&&e.textRotation){var o=e.textOrigin;"center"===o?(i=n.width/2+n.x,r=n.height/2+n.y):o&&(i=o[0]+n.x,r=o[1]+n.y),t.translate(i,r),t.rotate(-e.textRotation),t.translate(-i,-r)}}function _(t,e,n,i,a,s,A,l){var c=i.rich[n.styleName]||{};c.text=n.text;var u=n.textVerticalAlign,h=s+a/2;"top"===u?h=s+n.height/2:"bottom"===u&&(h=s+a-n.height/2),!n.isLineHolder&&S(c)&&I(t,e,c,"right"===l?A-n.width:"center"===l?A-n.width/2:A,h-n.height/2,n.width,n.height);var d=n.textPadding;d&&(A=U(A,l,d),h-=n.height/2-d[2]-n.textHeight/2),Q(e,"shadowBlur",o(c.textShadowBlur,i.textShadowBlur,0)),Q(e,"shadowColor",c.textShadowColor||i.textShadowColor||"transparent"),Q(e,"shadowOffsetX",o(c.textShadowOffsetX,i.textShadowOffsetX,0)),Q(e,"shadowOffsetY",o(c.textShadowOffsetY,i.textShadowOffsetY,0)),Q(e,"textAlign",l),Q(e,"textBaseline","middle"),Q(e,"font",n.font||m);var f=F(c.textStroke||i.textStroke,g),p=k(c.textFill||i.textFill),g=r(c.textStrokeWidth,i.textStrokeWidth);f&&(Q(e,"lineWidth",g),Q(e,"strokeStyle",f),e.strokeText(n.text,A,h)),p&&(Q(e,"fillStyle",p),e.fillText(n.text,A,h))}function S(t){return!!(t.textBackgroundColor||t.textBorderWidth&&t.textBorderColor)}function I(t,e,n,i,r,o,a){var s=n.textBackgroundColor,c=n.textBorderWidth,d=n.textBorderColor,f=A(s);if(Q(e,"shadowBlur",n.textBoxShadowBlur||0),Q(e,"shadowColor",n.textBoxShadowColor||"transparent"),Q(e,"shadowOffsetX",n.textBoxShadowOffsetX||0),Q(e,"shadowOffsetY",n.textBoxShadowOffsetY||0),f||c&&d){e.beginPath();var p=n.textBorderRadius;p?u.buildPath(e,{x:i,y:r,width:o,height:a,r:p}):e.rect(i,r,o,a),e.closePath()}if(f)if(Q(e,"fillStyle",s),null!=n.fillOpacity){var g=e.globalAlpha;e.globalAlpha=n.fillOpacity*n.opacity,e.fill(),e.globalAlpha=g}else e.fill();else if(l(s)){var m=s.image;(m=h.createOrUpdateImage(m,null,t,T,s))&&h.isImageReady(m)&&e.drawImage(m,i,r,o,a)}if(c&&d)if(Q(e,"lineWidth",c),Q(e,"strokeStyle",d),null!=n.strokeOpacity){g=e.globalAlpha;e.globalAlpha=n.strokeOpacity*n.opacity,e.stroke(),e.globalAlpha=g}else e.stroke()}function T(t,e){e.image=t}function M(t,e,n,i){var r=n.x||0,o=n.y||0,a=n.textAlign,s=n.textVerticalAlign;if(i){var A=n.textPosition;if(A instanceof Array)r=i.x+D(A[0],i.width),o=i.y+D(A[1],i.height);else{var l=e&&e.calculateTextPosition?e.calculateTextPosition(x,n,i):c.calculateTextPosition(x,n,i);r=l.x,o=l.y,a=a||l.textAlign,s=s||l.textVerticalAlign}var u=n.textOffset;u&&(r+=u[0],o+=u[1])}return(t=t||{}).baseX=r,t.baseY=o,t.textAlign=a,t.textVerticalAlign=s,t}function Q(t,e,n){return t[e]=d(t,e,n),t[e]}function F(t,e){return null==t||e<=0||"transparent"===t||"none"===t?null:t.image||t.colorStops?"#000":t}function k(t){return null==t||"none"===t?null:t.image||t.colorStops?"#000":t}function D(t,e){return"string"==typeof t?t.lastIndexOf("%")>=0?parseFloat(t)/100*e:parseFloat(t):t}function U(t,e,n){return"right"===e?t-n[1]:"center"===e?t+n[3]/2-n[1]/2:t+n[3]}e.normalizeTextStyle=function(t){return b(t),a(t.rich,b),t},e.renderText=function(t,e,n,i,r,o){i.rich?function(t,e,n,i,r,o){o!==g&&(e.__attrCachedBy=p.NONE);var a=t.__textCotentBlock;a&&!t.__dirtyText||(a=t.__textCotentBlock=c.parseRichText(n,i)),function(t,e,n,i,r){var o=n.width,a=n.outerWidth,s=n.outerHeight,A=i.textPadding,l=M(B,t,i,r),u=l.baseX,h=l.baseY,d=l.textAlign,f=l.textVerticalAlign;C(e,i,r,u,h);var p=c.adjustTextX(u,a,d),g=c.adjustTextY(h,s,f),m=p,v=g;A&&(m+=A[3],v+=A[0]);var y=m+o;S(i)&&I(t,e,i,p,g,a,s);for(var w=0;w<n.lines.length;w++){for(var x,b=n.lines[w],T=b.tokens,Q=T.length,F=b.lineHeight,k=b.width,D=0,U=m,E=y,L=Q-1;D<Q&&(!(x=T[D]).textAlign||"left"===x.textAlign);)_(t,e,x,i,F,v,U,"left"),k-=x.width,U+=x.width,D++;for(;L>=0&&"right"===(x=T[L]).textAlign;)_(t,e,x,i,F,v,E,"right"),k-=x.width,E-=x.width,L--;for(U+=(o-(U-m)-(y-E)-k)/2;D<=L;)x=T[D],_(t,e,x,i,F,v,U+x.width/2,"center"),U+=x.width,D++;v+=F}}(t,e,a,i,r)}(t,e,n,i,r,o):function(t,e,n,i,r,o){"use strict";var a,s=S(i),A=!1,l=e.__attrCachedBy===p.PLAIN_TEXT;o!==g?(o&&(a=o.style,A=!s&&l&&a),e.__attrCachedBy=s?p.NONE:p.PLAIN_TEXT):l&&(e.__attrCachedBy=p.NONE);var u=i.font||m;A&&u===(a.font||m)||(e.font=u);var h=t.__computedFont;t.__styleFont!==u&&(t.__styleFont=u,h=t.__computedFont=e.font);var f=i.textPadding,v=i.textLineHeight,y=t.__textCotentBlock;y&&!t.__dirtyText||(y=t.__textCotentBlock=c.parsePlainText(n,h,f,v,i.truncate));var x=y.outerHeight,b=y.lines,_=y.lineHeight,T=M(B,t,i,r),Q=T.baseX,D=T.baseY,E=T.textAlign||"left",L=T.textVerticalAlign;C(e,i,r,Q,D);var O=c.adjustTextY(D,x,L),P=Q,H=O;if(s||f){var N=c.getWidth(n,h),R=N;f&&(R+=f[1]+f[3]);var V=c.adjustTextX(Q,R,E);s&&I(t,e,i,V,O,R,x),f&&(P=U(Q,E,f),H+=f[0])}e.textAlign=E,e.textBaseline="middle",e.globalAlpha=i.opacity||1;for(var z=0;z<w.length;z++){var K=w[z],G=K[0],W=K[1],j=i[G];A&&j===a[G]||(e[W]=d(e,W,j||K[2]))}H+=_/2;var $=i.textStrokeWidth,q=A?a.textStrokeWidth:null,Y=!A||$!==q,X=!A||Y||i.textStroke!==a.textStroke,J=F(i.textStroke,$),Z=k(i.textFill);if(J&&(Y&&(e.lineWidth=$),X&&(e.strokeStyle=J)),Z&&(A&&i.textFill===a.textFill||(e.fillStyle=Z)),1===b.length)J&&e.strokeText(b[0],P,H),Z&&e.fillText(b[0],P,H);else for(var z=0;z<b.length;z++)J&&e.strokeText(b[z],P,H),Z&&e.fillText(b[z],P,H),H+=_}(t,e,n,i,r,o)},e.getBoxPosition=M,e.getStroke=F,e.getFill=k,e.parsePercent=D,e.needDrawText=function(t,e){return null!=t&&(t||e.textBackgroundColor||e.textBorderWidth&&e.textBorderColor||e.textPadding)}},lkON:function(t,e,n){var i=n("lbYD"),r=n("hEIH"),o=r.getSymbolSize,a=r.getNodeGlobalScale,s=n("A5tq"),A=n("pLcR").getCurvenessForEdge,l=Math.PI,c=[];var u={value:function(t,e,n,i,r,o,a,s){var A=0,l=i.getSum("value"),c=2*Math.PI/(l||s);n.eachNode(function(t){var e=t.getValue("value"),n=c*(l?e:1)/2;A+=n,t.setLayout([r*Math.cos(A)+o,r*Math.sin(A)+a]),A+=n})},symbolSize:function(t,e,n,i,r,s,A,u){var h=0;c.length=u;var d=a(t);n.eachNode(function(t){var e=o(t);isNaN(e)&&(e=2),e<0&&(e=0),e*=d;var n=Math.asin(e/2/r);isNaN(n)&&(n=l/2),c[t.dataIndex]=n,h+=2*n});var f=(2*l-h)/u/2,p=0;n.eachNode(function(t){var e=f+c[t.dataIndex];p+=e,t.setLayout([r*Math.cos(p)+s,r*Math.sin(p)+A]),p+=e})}};e.circularLayout=function(t,e){var n=t.coordinateSystem;if(!n||"view"===n.type){var r=n.getBoundingRect(),o=t.getData(),a=o.graph,l=r.width/2+r.x,c=r.height/2+r.y,h=Math.min(r.width,r.height)/2,d=o.count();o.setLayout({cx:l,cy:c}),d&&(u[e](t,n,a,o,h,l,c,d),a.eachEdge(function(e,n){var r,o=s.retrieve3(e.getModel().get("lineStyle.curveness"),A(e,t,n),0),a=i.clone(e.node1.getLayout()),u=i.clone(e.node2.getLayout()),h=(a[0]+u[0])/2,d=(a[1]+u[1])/2;+o&&(r=[l*(o*=3)+h*(1-o),c*o+d*(1-o)]),e.setLayout([a,u,r])}))}}},llFx:function(t,e,n){n("loyO").registerAction("legendScroll","legendscroll",function(t,e){var n=t.scrollDataIndex;null!=n&&e.eachComponent({mainType:"legend",subType:"scroll",query:t},function(t){t.setScrollDataIndex(n)})})},"llN/":function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=i.each,o=i.createHashMap,a=n("+1Bp"),s=n("C8x4"),A=n("HUDA"),l=n("r+KN"),c={geoJSON:s,svg:A},u={load:function(t,e,n){var i,a=[],s=o(),A=o(),u=d(t);return r(u,function(o){var l=c[o.type].load(t,o,n);r(l.regions,function(t){var n=t.name;e&&e.hasOwnProperty(n)&&(t=t.cloneShallow(n=e[n])),a.push(t),s.set(n,t),A.set(n,t.center)});var u=l.boundingRect;u&&(i?i.union(u):i=u.clone())}),{regions:a,regionsMap:s,nameCoordMap:A,boundingRect:i||new l(0,0,0,0)}},makeGraphic:h("makeGraphic"),removeGraphic:h("removeGraphic")};function h(t){return function(e,n){var i=d(e),o=[];return r(i,function(i){var r=c[i.type][t];r&&o.push(r(e,i,n))}),o}}function d(t){return a.retrieveMap(t)||[]}t.exports=u},loyO:function(t,e,n){n("roIn").__DEV__;var i=n("ogql"),r=n("A5tq"),o=n("dyFL"),a=n("sutA"),s=n("YjnO"),A=n("n/EV"),l=n("pYoM"),c=n("DeTP"),u=n("TJcz"),h=n("3ji9"),d=n("+auM"),f=n("XrgS"),p=n("Gkcz"),g=n("9nPt"),m=n("xfK8"),v=n("zrBH"),y=n("bDs9"),w=n("65+t"),x=n("Lk3r").throttle,B=n("Tn1s"),b=n("WOl7"),C=n("UiYL"),_=n("zxdT"),S=n("3NcG"),I=n("CETw");n("GFYc");var T=n("+1Bp"),M=r.assert,Q=r.each,F=r.isFunction,k=r.isObject,D=p.parseClassType,U=1e3,E=1e3,L=3e3,O={PROCESSOR:{FILTER:U,SERIES_FILTER:800,STATISTIC:5e3},VISUAL:{LAYOUT:E,PROGRESSIVE_LAYOUT:1100,GLOBAL:2e3,CHART:L,POST_CHART_LAYOUT:3500,COMPONENT:4e3,BRUSH:5e3}},P="__flagInMainProcess",H="__optionUpdated",N=/^[a-zA-Z0-9_]+$/;function R(t,e){return function(n,i,r){e||!this._disposed?(n=n&&n.toLowerCase(),A.prototype[t].call(this,n,i,r)):this.id}}function V(){A.call(this)}function z(t,e,n){n=n||{},"string"==typeof e&&(e=dt[e]),this.id,this.group,this._dom=t;var o=this._zr=i.init(t,{renderer:n.renderer||"canvas",devicePixelRatio:n.devicePixelRatio,width:n.width,height:n.height});this._throttledZrFlush=x(r.bind(o.flush,o),17),(e=r.clone(e))&&d(e,!0),this._theme=e,this._chartsViews=[],this._chartsMap={},this._componentsViews=[],this._componentsMap={},this._coordSysMgr=new u;var a,l,h=this._api=(l=(a=this)._coordSysMgr,r.extend(new c(a),{getCoordinateSystems:r.bind(l.getCoordinateSystems,l),getComponentByElement:function(t){for(;t;){var e=t.__ecComponentInfo;if(null!=e)return a._model.getComponent(e.mainType,e.index);t=t.parent}}}));function f(t,e){return t.__prio-e.__prio}s(ht,f),s(lt,f),this._scheduler=new _(this,h,lt,ht),A.call(this,this._ecEventProcessor=new at),this._messageCenter=new V,this._initEvents(),this.resize=r.bind(this.resize,this),this._pendingActions=[],o.animation.on("frame",this._onframe,this),function(t,e){t.on("rendered",function(){e.trigger("rendered"),!t.animation.isFinished()||e[H]||e._scheduler.unfinished||e._pendingActions.length||e.trigger("finished")})}(o,this),r.setAsPrimitive(this)}V.prototype.on=R("on",!0),V.prototype.off=R("off",!0),V.prototype.one=R("one",!0),r.mixin(V,A);var K=z.prototype;function G(t,e,n){if(this._disposed)this.id;else{var i,r=this._model,o=this._coordSysMgr.getCoordinateSystems();e=w.parseFinder(r,e);for(var a=0;a<o.length;a++){var s=o[a];if(s[t]&&null!=(i=s[t](r,e,n)))return i}}}K._onframe=function(){if(!this._disposed){var t=this._scheduler;if(this[H]){var e=this[H].silent;this[P]=!0,j(this),W.update.call(this),this[P]=!1,this[H]=!1,X.call(this,e),J.call(this,e)}else if(t.unfinished){var n=1,i=this._model,r=this._api;t.unfinished=!1;do{var o=+new Date;t.performSeriesTasks(i),t.performDataProcessorTasks(i),q(this,i),t.performVisualTasks(i),nt(this,this._model,r,"remain"),n-=+new Date-o}while(n>0&&t.unfinished);t.unfinished||this._zr.flush()}}},K.getDom=function(){return this._dom},K.getZr=function(){return this._zr},K.setOption=function(t,e,n){if(this._disposed)this.id;else{var i;if(k(e)&&(n=e.lazyUpdate,i=e.silent,e=e.notMerge),this[P]=!0,!this._model||e){var r=new h(this._api),o=this._theme,a=this._model=new l;a.scheduler=this._scheduler,a.init(null,null,o,r)}this._model.setOption(t,ct),n?(this[H]={silent:i},this[P]=!1):(j(this),W.update.call(this),this._zr.flush(),this[H]=!1,this[P]=!1,X.call(this,i),J.call(this,i))}},K.setTheme=function(){console.error("ECharts#setTheme() is DEPRECATED in ECharts 3.0")},K.getModel=function(){return this._model},K.getOption=function(){return this._model&&this._model.getOption()},K.getWidth=function(){return this._zr.getWidth()},K.getHeight=function(){return this._zr.getHeight()},K.getDevicePixelRatio=function(){return this._zr.painter.dpr||window.devicePixelRatio||1},K.getRenderedCanvas=function(t){if(a.canvasSupported)return(t=t||{}).pixelRatio=t.pixelRatio||1,t.backgroundColor=t.backgroundColor||this._model.get("backgroundColor"),this._zr.painter.getRenderedCanvas(t)},K.getSvgDataURL=function(){if(a.svgSupported){var t=this._zr,e=t.storage.getDisplayList();return r.each(e,function(t){t.stopAnimation(!0)}),t.painter.toDataURL()}},K.getDataURL=function(t){if(!this._disposed){var e=(t=t||{}).excludeComponents,n=this._model,i=[],r=this;Q(e,function(t){n.eachComponent({mainType:t},function(t){var e=r._componentsMap[t.__viewId];e.group.ignore||(i.push(e),e.group.ignore=!0)})});var o="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.getRenderedCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return Q(i,function(t){t.group.ignore=!1}),o}this.id},K.getConnectedDataURL=function(t){if(this._disposed)this.id;else if(a.canvasSupported){var e="svg"===t.type,n=this.group,o=Math.min,s=Math.max;if(gt[n]){var A=1/0,l=1/0,c=-1/0,u=-1/0,h=[],d=t&&t.pixelRatio||1;r.each(pt,function(i,a){if(i.group===n){var d=e?i.getZr().painter.getSvgDom().innerHTML:i.getRenderedCanvas(r.clone(t)),f=i.getDom().getBoundingClientRect();A=o(f.left,A),l=o(f.top,l),c=s(f.right,c),u=s(f.bottom,u),h.push({dom:d,left:f.left,top:f.top})}});var f=(c*=d)-(A*=d),p=(u*=d)-(l*=d),g=r.createCanvas(),m=i.init(g,{renderer:e?"svg":"canvas"});if(m.resize({width:f,height:p}),e){var v="";return Q(h,function(t){var e=t.left-A,n=t.top-l;v+='<g transform="translate('+e+","+n+')">'+t.dom+"</g>"}),m.painter.getSvgRoot().innerHTML=v,t.connectedBackgroundColor&&m.painter.setBackgroundColor(t.connectedBackgroundColor),m.refreshImmediately(),m.painter.toDataURL()}return t.connectedBackgroundColor&&m.add(new y.Rect({shape:{x:0,y:0,width:f,height:p},style:{fill:t.connectedBackgroundColor}})),Q(h,function(t){var e=new y.Image({style:{x:t.left*d-A,y:t.top*d-l,image:t.dom}});m.add(e)}),m.refreshImmediately(),g.toDataURL("image/"+(t&&t.type||"png"))}return this.getDataURL(t)}},K.convertToPixel=r.curry(G,"convertToPixel"),K.convertFromPixel=r.curry(G,"convertFromPixel"),K.containPixel=function(t,e){if(!this._disposed){var n,i=this._model;return t=w.parseFinder(i,t),r.each(t,function(t,i){i.indexOf("Models")>=0&&r.each(t,function(t){var r=t.coordinateSystem;if(r&&r.containPoint)n|=!!r.containPoint(e);else if("seriesModels"===i){var o=this._chartsMap[t.__viewId];o&&o.containPoint&&(n|=o.containPoint(e,t))}},this)},this),!!n}this.id},K.getVisual=function(t,e){var n=this._model,i=(t=w.parseFinder(n,t,{defaultMainType:"series"})).seriesModel.getData(),r=t.hasOwnProperty("dataIndexInside")?t.dataIndexInside:t.hasOwnProperty("dataIndex")?i.indexOfRawIndex(t.dataIndex):null;return null!=r?i.getItemVisual(r,e):i.getVisual(e)},K.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},K.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]};var W={prepareAndUpdate:function(t){j(this),W.update.call(this,t)},update:function(t){var e=this._model,n=this._api,i=this._zr,r=this._coordSysMgr,s=this._scheduler;if(e){s.restoreData(e,t),s.performSeriesTasks(e),r.create(e,n),s.performDataProcessorTasks(e,t),q(this,e),r.update(e,n),tt(e),s.performVisualTasks(e,t),et(this,e,n,t);var A=e.get("backgroundColor")||"transparent";if(a.canvasSupported)i.setBackgroundColor(A);else{var l=o.parse(A);A=o.stringify(l,"rgb"),0===l[3]&&(A="transparent")}it(e,n)}},updateTransform:function(t){var e=this._model,n=this,i=this._api;if(e){var o=[];e.eachComponent(function(r,a){var s=n.getViewOfComponentModel(a);if(s&&s.__alive)if(s.updateTransform){var A=s.updateTransform(a,e,i,t);A&&A.update&&o.push(s)}else o.push(s)});var a=r.createHashMap();e.eachSeries(function(r){var o=n._chartsMap[r.__viewId];if(o.updateTransform){var s=o.updateTransform(r,e,i,t);s&&s.update&&a.set(r.uid,1)}else a.set(r.uid,1)}),tt(e),this._scheduler.performVisualTasks(e,t,{setDirty:!0,dirtyMap:a}),nt(n,e,i,t,a),it(e,this._api)}},updateView:function(t){var e=this._model;e&&(v.markUpdateMethod(t,"updateView"),tt(e),this._scheduler.performVisualTasks(e,t,{setDirty:!0}),et(this,this._model,this._api,t),it(e,this._api))},updateVisual:function(t){W.update.call(this,t)},updateLayout:function(t){W.update.call(this,t)}};function j(t){var e=t._model,n=t._scheduler;n.restorePipelines(e),n.prepareStageTasks(),Z(t,"component",e,n),Z(t,"chart",e,n),n.plan()}function $(t,e,n,i,o){var a=t._model;if(i){var s={};s[i+"Id"]=n[i+"Id"],s[i+"Index"]=n[i+"Index"],s[i+"Name"]=n[i+"Name"];var A={mainType:i,query:s};o&&(A.subType=o);var l=n.excludeSeriesId;null!=l&&(l=r.createHashMap(w.normalizeToArray(l))),a&&a.eachComponent(A,function(e){l&&null!=l.get(e.id)||c(t["series"===i?"_chartsMap":"_componentsMap"][e.__viewId])},t)}else Q(t._componentsViews.concat(t._chartsViews),c);function c(i){i&&i.__alive&&i[e]&&i[e](i.__model,a,t._api,n)}}function q(t,e){var n=t._chartsMap,i=t._scheduler;e.eachSeries(function(t){i.updateStreamModes(t,n[t.__viewId])})}function Y(t,e){var n=t.type,i=t.escapeConnect,o=st[n],a=o.actionInfo,s=(a.update||"update").split(":"),A=s.pop();s=null!=s[0]&&D(s[0]),this[P]=!0;var l=[t],c=!1;t.batch&&(c=!0,l=r.map(t.batch,function(e){return(e=r.defaults(r.extend({},e),t)).batch=null,e}));var u,h=[],d="highlight"===n||"downplay"===n;Q(l,function(t){(u=(u=o.action(t,this._model,this._api))||r.extend({},t)).type=a.event||u.type,h.push(u),d?$(this,A,t,"series"):s&&$(this,A,t,s.main,s.sub)},this),"none"===A||d||s||(this[H]?(j(this),W.update.call(this,t),this[H]=!1):W[A].call(this,t)),u=c?{type:a.event||n,escapeConnect:i,batch:h}:h[0],this[P]=!1,!e&&this._messageCenter.trigger(u.type,u)}function X(t){for(var e=this._pendingActions;e.length;){var n=e.shift();Y.call(this,n,t)}}function J(t){!t&&this.trigger("updated")}function Z(t,e,n,i){for(var r="component"===e,o=r?t._componentsViews:t._chartsViews,a=r?t._componentsMap:t._chartsMap,s=t._zr,A=t._api,l=0;l<o.length;l++)o[l].__alive=!1;function c(t){var e="_ec_"+t.id+"_"+t.type,l=a[e];if(!l){var c=D(t.type);(l=new(r?m.getClass(c.main,c.sub):v.getClass(c.sub))).init(n,A),a[e]=l,o.push(l),s.add(l.group)}t.__viewId=l.__id=e,l.__alive=!0,l.__model=t,l.group.__ecComponentInfo={mainType:t.mainType,index:t.componentIndex},!r&&i.prepareView(l,t,n,A)}r?n.eachComponent(function(t,e){"series"!==t&&c(e)}):n.eachSeries(c);for(l=0;l<o.length;){var u=o[l];u.__alive?l++:(!r&&u.renderTask.dispose(),s.remove(u.group),u.dispose(n,A),o.splice(l,1),delete a[u.__id],u.__id=u.group.__ecComponentInfo=null)}}function tt(t){t.clearColorPalette(),t.eachSeries(function(t){t.clearColorPalette()})}function et(t,e,n,i){!function(t,e,n,i,r){Q(r||t._componentsViews,function(t){var r=t.__model;t.render(r,e,n,i),ot(r,t)})}(t,e,n,i),Q(t._chartsViews,function(t){t.__alive=!1}),nt(t,e,n,i),Q(t._chartsViews,function(t){t.__alive||t.remove(e,n)})}function nt(t,e,n,i,r){var o,s=t._scheduler;e.eachSeries(function(e){var n=t._chartsMap[e.__viewId];n.__alive=!0;var a=n.renderTask;s.updatePayload(a,i),r&&r.get(e.uid)&&a.dirty(),o|=a.perform(s.getPerformArgs(a)),n.group.silent=!!e.get("silent"),ot(e,n),function(t,e){var n=t.get("blendMode")||null;e.group.traverse(function(t){t.isGroup||t.style.blend!==n&&t.setStyle("blend",n),t.eachPendingDisplayable&&t.eachPendingDisplayable(function(t){t.setStyle("blend",n)})})}(e,n)}),s.unfinished|=o,function(t,e){var n=0;t._zr.storage.traverse(function(t){n++}),n>e.get("hoverLayerThreshold")&&!a.node&&e.eachSeries(function(e){if(!e.preventUsingHoverLayer){var n=t._chartsMap[e.__viewId];n.__alive&&n.group.traverse(function(t){t.useHoverLayer=!0})}})}(t,e),b(t._zr.dom,e)}function it(t,e){Q(ut,function(n){n(t,e)})}K.resize=function(t){if(this._disposed)this.id;else{this._zr.resize(t);var e=this._model;if(this._loadingFX&&this._loadingFX.resize(),e){var n=e.resetOption("media"),i=t&&t.silent;this[P]=!0,n&&j(this),W.update.call(this),this[P]=!1,X.call(this,i),J.call(this,i)}}},K.showLoading=function(t,e){if(this._disposed)this.id;else if(k(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),ft[t]){var n=ft[t](this._api,e),i=this._zr;this._loadingFX=n,i.add(n)}},K.hideLoading=function(){this._disposed?this.id:(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},K.makeActionFromEvent=function(t){var e=r.extend({},t);return e.type=At[t.type],e},K.dispatchAction=function(t,e){this._disposed?this.id:(k(e)||(e={silent:!!e}),st[t.type]&&this._model&&(this[P]?this._pendingActions.push(t):(Y.call(this,t,e.silent),e.flush?this._zr.flush(!0):!1!==e.flush&&a.browser.weChat&&this._throttledZrFlush(),X.call(this,e.silent),J.call(this,e.silent))))},K.appendData=function(t){if(this._disposed)this.id;else{var e=t.seriesIndex;this.getModel().getSeriesByIndex(e).appendData(t),this._scheduler.unfinished=!0}},K.on=R("on",!1),K.off=R("off",!1),K.one=R("one",!1);var rt=["click","dblclick","mouseover","mouseout","mousemove","mousedown","mouseup","globalout","contextmenu"];function ot(t,e){var n=t.get("z"),i=t.get("zlevel");e.group.traverse(function(t){"group"!==t.type&&(null!=n&&(t.z=n),null!=i&&(t.zlevel=i))})}function at(){this.eventInfo}K._initEvents=function(){Q(rt,function(t){var e=function(e){var n,i=this.getModel(),o=e.target;if("globalout"===t)n={};else if(o&&null!=o.dataIndex){var a=o.dataModel||i.getSeriesByIndex(o.seriesIndex);n=a&&a.getDataParams(o.dataIndex,o.dataType,o)||{}}else o&&o.eventData&&(n=r.extend({},o.eventData));if(n){var s=n.componentType,A=n.componentIndex;"markLine"!==s&&"markPoint"!==s&&"markArea"!==s||(s="series",A=n.seriesIndex);var l=s&&null!=A&&i.getComponent(s,A),c=l&&this["series"===l.mainType?"_chartsMap":"_componentsMap"][l.__viewId];n.event=e,n.type=t,this._ecEventProcessor.eventInfo={targetEl:o,packedEvent:n,model:l,view:c},this.trigger(t,n)}};e.zrEventfulCallAtLast=!0,this._zr.on(t,e,this)},this),Q(At,function(t,e){this._messageCenter.on(e,function(t){this.trigger(e,t)},this)},this)},K.isDisposed=function(){return this._disposed},K.clear=function(){this._disposed?this.id:this.setOption({series:[]},!0)},K.dispose=function(){if(this._disposed)this.id;else{this._disposed=!0,w.setAttribute(this.getDom(),yt,"");var t=this._api,e=this._model;Q(this._componentsViews,function(n){n.dispose(e,t)}),Q(this._chartsViews,function(n){n.dispose(e,t)}),this._zr.dispose(),delete pt[this.id]}},r.mixin(z,A),at.prototype={constructor:at,normalizeQuery:function(t){var e={},n={},i={};if(r.isString(t)){var o=D(t);e.mainType=o.main||null,e.subType=o.sub||null}else{var a=["Index","Name","Id"],s={name:1,dataIndex:1,dataType:1};r.each(t,function(t,r){for(var o=!1,A=0;A<a.length;A++){var l=a[A],c=r.lastIndexOf(l);if(c>0&&c===r.length-l.length){var u=r.slice(0,c);"data"!==u&&(e.mainType=u,e[l.toLowerCase()]=t,o=!0)}}s.hasOwnProperty(r)&&(n[r]=t,o=!0),o||(i[r]=t)})}return{cptQuery:e,dataQuery:n,otherQuery:i}},filter:function(t,e,n){var i=this.eventInfo;if(!i)return!0;var r=i.targetEl,o=i.packedEvent,a=i.model,s=i.view;if(!a||!s)return!0;var A=e.cptQuery,l=e.dataQuery;return c(A,a,"mainType")&&c(A,a,"subType")&&c(A,a,"index","componentIndex")&&c(A,a,"name")&&c(A,a,"id")&&c(l,o,"name")&&c(l,o,"dataIndex")&&c(l,o,"dataType")&&(!s.filterForExposedEvent||s.filterForExposedEvent(t,e.otherQuery,r,o));function c(t,e,n,i){return null==t[n]||e[i||n]===t[n]}},afterTrigger:function(){this.eventInfo=null}};var st={},At={},lt=[],ct=[],ut=[],ht=[],dt={},ft={},pt={},gt={},mt=new Date-0,vt=new Date-0,yt="_echarts_instance_";function wt(t){gt[t]=!1}var xt=wt;function Bt(t){return pt[w.getAttribute(t,yt)]}function bt(t,e){dt[t]=e}function Ct(t){ct.push(t)}function _t(t,e){Tt(lt,t,e,U)}function St(t,e,n){"function"==typeof e&&(n=e,e="");var i=k(t)?t.type:[t,t={event:e}][0];t.event=(t.event||i).toLowerCase(),e=t.event,M(N.test(i)&&N.test(e)),st[i]||(st[i]={action:n,actionInfo:t}),At[e]=i}function It(t,e){Tt(ht,t,e,L,"visual")}function Tt(t,e,n,i,r){(F(e)||k(e))&&(n=e,e=i);var o=_.wrapStageHandler(n,r);return o.__prio=e,o.__raw=n,t.push(o),o}function Mt(t,e){ft[t]=e}It(2e3,B),Ct(d),_t(900,f),Mt("default",C),St({type:"highlight",event:"highlight",update:"highlight"},r.noop),St({type:"downplay",event:"downplay",update:"downplay"},r.noop),bt("light",S),bt("dark",I);e.version="4.9.0",e.dependencies={zrender:"4.3.2"},e.PRIORITY=O,e.init=function(t,e,n){var i=Bt(t);if(i)return i;var r=new z(t,e,n);return r.id="ec_"+mt++,pt[r.id]=r,w.setAttribute(t,yt,r.id),function(t){var e="__connectUpdateStatus";function n(t,n){for(var i=0;i<t.length;i++)t[i][e]=n}Q(At,function(i,r){t._messageCenter.on(r,function(i){if(gt[t.group]&&0!==t[e]){if(i&&i.escapeConnect)return;var r=t.makeActionFromEvent(i),o=[];Q(pt,function(e){e!==t&&e.group===t.group&&o.push(e)}),n(o,0),Q(o,function(t){1!==t[e]&&t.dispatchAction(r)}),n(o,2)}})})}(r),r},e.connect=function(t){if(r.isArray(t)){var e=t;t=null,Q(e,function(e){null!=e.group&&(t=e.group)}),t=t||"g_"+vt++,Q(e,function(e){e.group=t})}return gt[t]=!0,t},e.disConnect=wt,e.disconnect=xt,e.dispose=function(t){"string"==typeof t?t=pt[t]:t instanceof z||(t=Bt(t)),t instanceof z&&!t.isDisposed()&&t.dispose()},e.getInstanceByDom=Bt,e.getInstanceById=function(t){return pt[t]},e.registerTheme=bt,e.registerPreprocessor=Ct,e.registerProcessor=_t,e.registerPostUpdate=function(t){ut.push(t)},e.registerAction=St,e.registerCoordinateSystem=function(t,e){u.register(t,e)},e.getCoordinateSystemDimensions=function(t){var e=u.get(t);if(e)return e.getDimensionsInfo?e.getDimensionsInfo():e.dimensions.slice()},e.registerLayout=function(t,e){Tt(ht,t,e,E,"layout")},e.registerVisual=It,e.registerLoading=Mt,e.extendComponentModel=function(t){return p.extend(t)},e.extendComponentView=function(t){return m.extend(t)},e.extendSeriesModel=function(t){return g.extend(t)},e.extendChartView=function(t){return v.extend(t)},e.setCanvasCreator=function(t){r.$override("createCanvas",t)},e.registerMap=function(t,e,n){T.registerMap(t,e,n)},e.getMap=function(t){var e=T.retrieveMap(t);return e&&e[0]&&{geoJson:e[0].geoJSON,specialAreas:e[0].specialAreas}},e.dataTool={};var Qt=n("O43R");!function(){for(var t in Qt)Qt.hasOwnProperty(t)&&(e[t]=Qt[t])}()},m1ec:function(t,e){e.SOURCE_FORMAT_ORIGINAL="original",e.SOURCE_FORMAT_ARRAY_ROWS="arrayRows",e.SOURCE_FORMAT_OBJECT_ROWS="objectRows",e.SOURCE_FORMAT_KEYED_COLUMNS="keyedColumns",e.SOURCE_FORMAT_UNKNOWN="unknown",e.SOURCE_FORMAT_TYPED_ARRAY="typedArray",e.SERIES_LAYOUT_BY_COLUMN="column",e.SERIES_LAYOUT_BY_ROW="row"},m3h4:function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),i=0;i<n.length;i++)n[i]=arguments[i];return t.apply(e,n)}}},m9W5:function(t,e,n){var i=n("A5tq"),r=i.each,o=i.map,a=n("w9uD"),s=a.linearMap,A=a.getPixelPrecision,l=a.round,c=n("7lwY"),u=c.createAxisTicks,h=c.createAxisLabels,d=c.calculateCategoryInterval,f=[0,1],p=function(t,e,n){this.dim=t,this.scale=e,this._extent=n||[0,0],this.inverse=!1,this.onBand=!1};function g(t,e){var n=(t[1]-t[0])/e/2;t[0]+=n,t[1]-=n}p.prototype={constructor:p,contain:function(t){var e=this._extent,n=Math.min(e[0],e[1]),i=Math.max(e[0],e[1]);return t>=n&&t<=i},containData:function(t){return this.scale.contain(t)},getExtent:function(){return this._extent.slice()},getPixelPrecision:function(t){return A(t||this.scale.getExtent(),this._extent)},setExtent:function(t,e){var n=this._extent;n[0]=t,n[1]=e},dataToCoord:function(t,e){var n=this._extent,i=this.scale;return t=i.normalize(t),this.onBand&&"ordinal"===i.type&&g(n=n.slice(),i.count()),s(t,f,n,e)},coordToData:function(t,e){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&g(n=n.slice(),i.count());var r=s(t,n,f,e);return this.scale.scale(r)},pointToData:function(t,e){},getTicksCoords:function(t){var e=(t=t||{}).tickModel||this.getTickModel(),n=u(this,e).ticks,i=o(n,function(t){return{coord:this.dataToCoord(t),tickValue:t}},this);return function(t,e,n,i){var o=e.length;if(!t.onBand||n||!o)return;var a,s,A=t.getExtent();if(1===o)e[0].coord=A[0],a=e[1]={coord:A[0]};else{var c=e[o-1].tickValue-e[0].tickValue,u=(e[o-1].coord-e[0].coord)/c;r(e,function(t){t.coord-=u/2});var h=t.scale.getExtent();s=1+h[1]-e[o-1].tickValue,a={coord:e[o-1].coord+u*s},e.push(a)}var d=A[0]>A[1];f(e[0].coord,A[0])&&(i?e[0].coord=A[0]:e.shift());i&&f(A[0],e[0].coord)&&e.unshift({coord:A[0]});f(A[1],a.coord)&&(i?a.coord=A[1]:e.pop());i&&f(a.coord,A[1])&&e.push({coord:A[1]});function f(t,e){return t=l(t),e=l(e),d?t>e:t<e}}(this,i,e.get("alignWithLabel"),t.clamp),i},getMinorTicksCoords:function(){if("ordinal"===this.scale.type)return[];var t=this.model.getModel("minorTick").get("splitNumber");t>0&&t<100||(t=5);var e=this.scale.getMinorTicks(t);return o(e,function(t){return o(t,function(t){return{coord:this.dataToCoord(t),tickValue:t}},this)},this)},getViewLabels:function(){return h(this).labels},getLabelModel:function(){return this.model.getModel("axisLabel")},getTickModel:function(){return this.model.getModel("axisTick")},getBandWidth:function(){var t=this._extent,e=this.scale.getExtent(),n=e[1]-e[0]+(this.onBand?1:0);0===n&&(n=1);var i=Math.abs(t[1]-t[0]);return Math.abs(i)/n},isHorizontal:null,getRotate:null,calculateCategoryInterval:function(){return d(this)}};var m=p;t.exports=m},mILt:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("ZVMY"),a=n("tRWJ"),s=n("nWxm"),A=n("/A6Y"),l=n("vvOW").onIrrelevantElement,c=n("bDs9"),u=n("olgb"),h=n("hEIH").getNodeGlobalScale,d="__focusNodeAdjacency",f=["itemStyle","opacity"],p=["lineStyle","opacity"];function g(t,e){var n=t.getVisual("opacity");return null!=n?n:t.getModel().get(e)}function m(t,e,n){var i=t.getGraphicEl(),r=g(t,e);null!=n&&(null==r&&(r=1),r*=n),i.downplay&&i.downplay(),i.traverse(function(t){if(!t.isGroup){var e=t.lineLabelOriginalOpacity;null!=e&&null==n||(e=r),t.setStyle("opacity",e)}})}function v(t,e){var n=g(t,e),i=t.getGraphicEl();i.traverse(function(t){!t.isGroup&&t.setStyle("opacity",n)}),i.highlight&&i.highlight()}var y=i.extendChartView({type:"graph",init:function(t,e){var n=new o,i=new a,r=this.group;this._controller=new s(e.getZr()),this._controllerHost={target:r},r.add(n.group),r.add(i.group),this._symbolDraw=n,this._lineDraw=i,this._firstRender=!0},render:function(t,e,n){var i=this,r=t.coordinateSystem;this._model=t;var o=this._symbolDraw,a=this._lineDraw,s=this.group;if("view"===r.type){var A={position:r.position,scale:r.scale};this._firstRender?s.attr(A):c.updateProps(s,A,t)}u(t.getGraph(),h(t));var l=t.getData();o.updateData(l);var f=t.getEdgeData();a.updateData(f),this._updateNodeAndLinkScale(),this._updateController(t,e,n),clearTimeout(this._layoutTimeout);var p=t.forceLayout,g=t.get("force.layoutAnimation");p&&this._startForceLayoutIteration(p,g),l.eachItemGraphicEl(function(e,r){var o=l.getItemModel(r);e.off("drag").off("dragend");var a=o.get("draggable");a&&e.on("drag",function(){p&&(p.warmUp(),!this._layouting&&this._startForceLayoutIteration(p,g),p.setFixed(r),l.setItemLayout(r,e.position))},this).on("dragend",function(){p&&p.setUnfixed(r)},this),e.setDraggable(a&&p),e[d]&&e.off("mouseover",e[d]),e.__unfocusNodeAdjacency&&e.off("mouseout",e.__unfocusNodeAdjacency),o.get("focusNodeAdjacency")&&(e.on("mouseover",e[d]=function(){i._clearTimer(),n.dispatchAction({type:"focusNodeAdjacency",seriesId:t.id,dataIndex:e.dataIndex})}),e.on("mouseout",e.__unfocusNodeAdjacency=function(){i._dispatchUnfocus(n)}))},this),l.graph.eachEdge(function(e){var r=e.getGraphicEl();r[d]&&r.off("mouseover",r[d]),r.__unfocusNodeAdjacency&&r.off("mouseout",r.__unfocusNodeAdjacency),e.getModel().get("focusNodeAdjacency")&&(r.on("mouseover",r[d]=function(){i._clearTimer(),n.dispatchAction({type:"focusNodeAdjacency",seriesId:t.id,edgeDataIndex:e.dataIndex})}),r.on("mouseout",r.__unfocusNodeAdjacency=function(){i._dispatchUnfocus(n)}))});var m="circular"===t.get("layout")&&t.get("circular.rotateLabel"),v=l.getLayout("cx"),y=l.getLayout("cy");l.eachItemGraphicEl(function(t,e){var n=l.getItemModel(e).get("label.rotate")||0,i=t.getSymbolPath();if(m){var r=l.getItemLayout(e),o=Math.atan2(r[1]-y,r[0]-v);o<0&&(o=2*Math.PI+o);var a=r[0]<v;a&&(o-=Math.PI);var s=a?"left":"right";c.modifyLabelStyle(i,{textRotation:-o,textPosition:s,textOrigin:"center"},{textPosition:s})}else c.modifyLabelStyle(i,{textRotation:n*=Math.PI/180})}),this._firstRender=!1},dispose:function(){this._controller&&this._controller.dispose(),this._controllerHost={},this._clearTimer()},_dispatchUnfocus:function(t,e){var n=this;this._clearTimer(),this._unfocusDelayTimer=setTimeout(function(){n._unfocusDelayTimer=null,t.dispatchAction({type:"unfocusNodeAdjacency",seriesId:n._model.id})},500)},_clearTimer:function(){this._unfocusDelayTimer&&(clearTimeout(this._unfocusDelayTimer),this._unfocusDelayTimer=null)},focusNodeAdjacency:function(t,e,n,i){var o=t.getData().graph,a=i.dataIndex,s=i.edgeDataIndex,A=o.getNodeByIndex(a),l=o.getEdgeByIndex(s);(A||l)&&(o.eachNode(function(t){m(t,f,.1)}),o.eachEdge(function(t){m(t,p,.1)}),A&&(v(A,f),r.each(A.edges,function(t){t.dataIndex<0||(v(t,p),v(t.node1,f),v(t.node2,f))})),l&&(v(l,p),v(l.node1,f),v(l.node2,f)))},unfocusNodeAdjacency:function(t,e,n,i){var r=t.getData().graph;r.eachNode(function(t){m(t,f)}),r.eachEdge(function(t){m(t,p)})},_startForceLayoutIteration:function(t,e){var n=this;!function i(){t.step(function(t){n.updateLayout(n._model),(n._layouting=!t)&&(e?n._layoutTimeout=setTimeout(i,16):i())})}()},_updateController:function(t,e,n){var i=this._controller,r=this._controllerHost,o=this.group;i.setPointerChecker(function(e,i,r){var a=o.getBoundingRect();return a.applyTransform(o.transform),a.contain(i,r)&&!l(e,n,t)}),"view"===t.coordinateSystem.type?(i.enable(t.get("roam")),r.zoomLimit=t.get("scaleLimit"),r.zoom=t.coordinateSystem.getZoom(),i.off("pan").off("zoom").on("pan",function(e){A.updateViewOnPan(r,e.dx,e.dy),n.dispatchAction({seriesId:t.id,type:"graphRoam",dx:e.dx,dy:e.dy})}).on("zoom",function(e){A.updateViewOnZoom(r,e.scale,e.originX,e.originY),n.dispatchAction({seriesId:t.id,type:"graphRoam",zoom:e.scale,originX:e.originX,originY:e.originY}),this._updateNodeAndLinkScale(),u(t.getGraph(),h(t)),this._lineDraw.updateLayout()},this)):i.disable()},_updateNodeAndLinkScale:function(){var t=this._model,e=t.getData(),n=h(t),i=[n,n];e.eachItemGraphicEl(function(t,e){t.attr("scale",i)})},updateLayout:function(t){u(t.getGraph(),h(t)),this._symbolDraw.updateLayout(),this._lineDraw.updateLayout()},remove:function(t,e){this._symbolDraw&&this._symbolDraw.remove(),this._lineDraw&&this._lineDraw.remove()}});t.exports=y},mIxe:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o={NONE:"none",DESCENDANT:"descendant",ANCESTOR:"ancestor",SELF:"self"},a=2,s=4;function A(t,e,n){r.Group.call(this);var i=new r.Sector({z2:a});i.seriesIndex=e.seriesIndex;var o=new r.Text({z2:s,silent:t.getModel("label").get("silent")});function A(){o.ignore=o.hoverIgnore}function l(){o.ignore=o.normalIgnore}this.add(i),this.add(o),this.updateData(!0,t,"normal",e,n),this.on("emphasis",A).on("normal",l).on("mouseover",A).on("mouseout",l)}var l=A.prototype;l.updateData=function(t,e,n,o,a){this.node=e,e.piece=this,o=o||this._seriesModel,a=a||this._ecModel;var s=this.childAt(0);s.dataIndex=e.dataIndex;var A=e.getModel(),l=e.getLayout(),c=i.extend({},l);c.label=null;var u=function(t,e,n){var r=t.getVisual("color"),o=t.getVisual("visualMeta");o&&0!==o.length||(r=null);var a=t.getModel("itemStyle").get("color");if(a)return a;if(r)return r;if(0===t.depth)return n.option.color[0];var s=n.option.color.length;a=n.option.color[function(t){var e=t;for(;e.depth>1;)e=e.parentNode;var n=t.getAncestors()[0];return i.indexOf(n.children,e)}(t)%s];return a}(e,0,a);!function(t,e,n){e.getData().setItemVisual(t.dataIndex,"color",n)}(e,o,u);var h,d=A.getModel("itemStyle").getItemStyle();if("normal"===n)h=d;else{var f=A.getModel(n+".itemStyle").getItemStyle();h=i.merge(f,d)}h=i.defaults({lineJoin:"bevel",fill:h.fill||u},h),t?(s.setShape(c),s.shape.r=l.r0,r.updateProps(s,{shape:{r:l.r}},o,e.dataIndex),s.useStyle(h)):"object"==typeof h.fill&&h.fill.type||"object"==typeof s.style.fill&&s.style.fill.type?(r.updateProps(s,{shape:c},o),s.useStyle(h)):r.updateProps(s,{shape:c,style:h},o),this._updateLabel(o,u,n);var p=A.getShallow("cursor");if(p&&s.attr("cursor",p),t){var g=o.getShallow("highlightPolicy");this._initEvents(s,e,o,g)}this._seriesModel=o||this._seriesModel,this._ecModel=a||this._ecModel,r.setHoverStyle(this)},l.onEmphasis=function(t){var e=this;this.node.hostTree.root.eachNode(function(n){var i,r,a;n.piece&&(e.node===n?n.piece.updateData(!1,n,"emphasis"):(i=n,r=e.node,(a=t)!==o.NONE&&(a===o.SELF?i===r:a===o.ANCESTOR?i===r||i.isAncestorOf(r):i===r||i.isDescendantOf(r))?n.piece.childAt(0).trigger("highlight"):t!==o.NONE&&n.piece.childAt(0).trigger("downplay")))})},l.onNormal=function(){this.node.hostTree.root.eachNode(function(t){t.piece&&t.piece.updateData(!1,t,"normal")})},l.onHighlight=function(){this.updateData(!1,this.node,"highlight")},l.onDownplay=function(){this.updateData(!1,this.node,"downplay")},l._updateLabel=function(t,e,n){var o=this.node.getModel(),a=o.getModel("label"),s="normal"===n||"emphasis"===n?a:o.getModel(n+".label"),A=o.getModel("emphasis.label"),l=s.get("formatter")?n:"normal",c=i.retrieve(t.getFormattedLabel(this.node.dataIndex,l,null,null,"label"),this.node.name);!1===S("show")&&(c="");var u=this.node.getLayout(),h=s.get("minAngle");null==h&&(h=a.get("minAngle")),h=h/180*Math.PI;var d=u.endAngle-u.startAngle;null!=h&&Math.abs(d)<h&&(c="");var f=this.childAt(1);r.setLabelStyle(f.style,f.hoverStyle||{},a,A,{defaultText:s.getShallow("show")?c:null,autoColor:e,useInsideStyle:!0});var p,g=(u.startAngle+u.endAngle)/2,m=Math.cos(g),v=Math.sin(g),y=S("position"),w=S("distance")||0,x=S("align");"outside"===y?(p=u.r+w,x=g>Math.PI/2?"right":"left"):x&&"center"!==x?"left"===x?(p=u.r0+w,g>Math.PI/2&&(x="right")):"right"===x&&(p=u.r-w,g>Math.PI/2&&(x="left")):(p=(u.r+u.r0)/2,x="center"),f.attr("style",{text:c,textAlign:x,textVerticalAlign:S("verticalAlign")||"middle",opacity:S("opacity")});var B=p*m+u.cx,b=p*v+u.cy;f.attr("position",[B,b]);var C=S("rotate"),_=0;function S(t){var e=s.get(t);return null==e?a.get(t):e}"radial"===C?(_=-g)<-Math.PI/2&&(_+=Math.PI):"tangential"===C?(_=Math.PI/2-g)>Math.PI/2?_-=Math.PI:_<-Math.PI/2&&(_+=Math.PI):"number"==typeof C&&(_=C*Math.PI/180),f.attr("rotation",_)},l._initEvents=function(t,e,n,i){t.off("mouseover").off("mouseout").off("emphasis").off("normal");var r=this,o=function(){r.onEmphasis(i)},a=function(){r.onNormal()};n.isAnimationEnabled()&&t.on("mouseover",o).on("mouseout",a).on("emphasis",o).on("normal",a).on("downplay",function(){r.onDownplay()}).on("highlight",function(){r.onHighlight()})},i.inherits(A,r.Group);var c=A;t.exports=c},mLLQ:function(t,e,n){var i=n("A5tq");function r(t,e){var n=this.getAxis(),i=e instanceof Array?e[0]:e,r=(t instanceof Array?t[0]:t)/2;return"category"===n.type?n.getBandWidth():Math.abs(n.dataToCoord(i-r)-n.dataToCoord(i+r))}t.exports=function(t){var e=t.getRect();return{coordSys:{type:"singleAxis",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(e){return t.dataToPoint(e)},size:i.bind(r,t)}}}},"mV+F":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("7iGl"),a=n("5P5h"),s=o.toolbox.magicType;function A(t){this.model=t}A.defaultOption={show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z"},title:r.clone(s.title),option:{},seriesIndex:{}};var l=A.prototype;l.getIcons=function(){var t=this.model,e=t.get("icon"),n={};return r.each(t.get("type"),function(t){e[t]&&(n[t]=e[t])}),n};var c={line:function(t,e,n,i){if("bar"===t)return r.merge({id:e,type:"line",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get("option.line")||{},!0)},bar:function(t,e,n,i){if("line"===t)return r.merge({id:e,type:"bar",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get("option.bar")||{},!0)},stack:function(t,e,n,i){var o="__ec_magicType_stack__"===n.get("stack");if("line"===t||"bar"===t)return i.setIconStatus("stack",o?"normal":"emphasis"),r.merge({id:e,stack:o?"":"__ec_magicType_stack__"},i.get("option.stack")||{},!0)}},u=[["line","bar"],["stack"]];l.onclick=function(t,e,n){var i=this.model,o=i.get("seriesIndex."+n);if(c[n]){var a,A={series:[]};if(r.each(u,function(t){r.indexOf(t,n)>=0&&r.each(t,function(t){i.setIconStatus(t,"normal")})}),i.setIconStatus(n,"emphasis"),t.eachComponent({mainType:"series",query:null==o?null:{seriesIndex:o}},function(e){var o=e.subType,a=e.id,s=c[n](o,a,e,i);s&&(r.defaults(s,e.option),A.series.push(s));var l=e.coordinateSystem;if(l&&"cartesian2d"===l.type&&("line"===n||"bar"===n)){var u=l.getAxesByScale("ordinal")[0];if(u){var h=u.dim+"Axis",d=t.queryComponents({mainType:h,index:e.get(name+"Index"),id:e.get(name+"Id")})[0].componentIndex;A[h]=A[h]||[];for(var f=0;f<=d;f++)A[h][d]=A[h][d]||{};A[h][d].boundaryGap="bar"===n}}}),"stack"===n)a=A.series&&A.series[0]&&"__ec_magicType_stack__"===A.series[0].stack?r.merge({stack:s.title.tiled},s.title):r.clone(s.title);e.dispatchAction({type:"changeMagicType",currentType:n,newOption:A,newTitle:a,featureName:"magicType"})}},i.registerAction({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(t,e){e.mergeOption(t.newOption)}),a.register("magicType",A);var h=A;t.exports=h},mWN1:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("3Voe"),a=n("+UHi");n("EF49"),n("XsB2"),n("Av1J"),i.registerPreprocessor(function(t){if(t){(!t.axisPointer||0===t.axisPointer.length)&&(t.axisPointer={});var e=t.axisPointer.link;e&&!r.isArray(e)&&(t.axisPointer.link=[e])}}),i.registerProcessor(i.PRIORITY.PROCESSOR.STATISTIC,function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=o.collect(t,e)}),i.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},a)},meIr:function(t,e,n){var i=n("A5tq");var r=function(t){null!=t&&i.extend(this,t),this.otherDims={}};t.exports=r},mmXW:function(t,e){var n=function(){this.head=null,this.tail=null,this._len=0},i=n.prototype;i.insert=function(t){var e=new r(t);return this.insertEntry(e),e},i.insertEntry=function(t){this.head?(this.tail.next=t,t.prev=this.tail,t.next=null,this.tail=t):this.head=this.tail=t,this._len++},i.remove=function(t){var e=t.prev,n=t.next;e?e.next=n:this.head=n,n?n.prev=e:this.tail=e,t.next=t.prev=null,this._len--},i.len=function(){return this._len},i.clear=function(){this.head=this.tail=null,this._len=0};var r=function(t){this.value=t,this.next,this.prev},o=function(t){this._list=new n,this._map={},this._maxSize=t||10,this._lastRemovedEntry=null},a=o.prototype;a.put=function(t,e){var n=this._list,i=this._map,o=null;if(null==i[t]){var a=n.len(),s=this._lastRemovedEntry;if(a>=this._maxSize&&a>0){var A=n.head;n.remove(A),delete i[A.key],o=A.value,this._lastRemovedEntry=A}s?s.value=e:s=new r(e),s.key=t,n.insertEntry(s),i[t]=s}return o},a.get=function(t){var e=this._map[t],n=this._list;if(null!=e)return e!==n.tail&&(n.remove(e),n.insertEntry(e)),e.value},a.clear=function(){this._list.clear(),this._map={}};var s=o;t.exports=s},mtCt:function(t,e,n){var i=n("A5tq"),r=n("TskJ"),o=n("PrQC"),a=r.extend({type:"timeline.slider",defaultOption:{backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,orient:"horizontal",inverse:!1,tooltip:{trigger:"item"},symbol:"emptyCircle",symbolSize:10,lineStyle:{show:!0,width:2,color:"#304654"},label:{position:"auto",show:!0,interval:"auto",rotate:0,color:"#304654"},itemStyle:{color:"#304654",borderWidth:1},checkpointStyle:{symbol:"circle",symbolSize:13,color:"#c23531",borderWidth:5,borderColor:"rgba(194,53,49, 0.5)",animation:!0,animationDuration:300,animationEasing:"quinticInOut"},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:22,itemGap:12,position:"left",playIcon:"path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z",stopIcon:"path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z",nextIcon:"path://M18.6,50.8l22.5-22.5c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7L18.7,4.4c-0.1-0.1-0.2-0.3-0.2-0.5 c0-0.4,0.3-0.8,0.8-0.8c0.2,0,0.5,0.1,0.6,0.3l23.5,23.5l0,0c0.2,0.2,0.3,0.4,0.3,0.7c0,0.3-0.1,0.5-0.3,0.7l-0.1,0.1L19.7,52 c-0.1,0.1-0.3,0.2-0.5,0.2c-0.4,0-0.8-0.3-0.8-0.8C18.4,51.2,18.5,51,18.6,50.8z",prevIcon:"path://M43,52.8L20.4,30.3c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.3,0.1-0.5,0.3-0.7L42.9,6.4c0.1-0.1,0.2-0.3,0.2-0.5 c0-0.4-0.3-0.8-0.8-0.8c-0.2,0-0.5,0.1-0.6,0.3L18.3,28.8l0,0c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7l0.1,0.1L41.9,54 c0.1,0.1,0.3,0.2,0.5,0.2c0.4,0,0.8-0.3,0.8-0.8C43.2,53.2,43.1,53,43,52.8z",color:"#304654",borderColor:"#304654",borderWidth:1},emphasis:{label:{show:!0,color:"#c23531"},itemStyle:{color:"#c23531"},controlStyle:{color:"#c23531",borderColor:"#c23531",borderWidth:2}},data:[]}});i.mixin(a,o);var s=a;t.exports=s},mv0I:function(t,e,n){var i=n("A5tq"),r=n("g+7e"),o=n("bDs9");function a(t,e,n,i){t[0]=n,t[1]=i,t[2]=t[0]/e.getWidth(),t[3]=t[1]/e.getHeight()}function s(t){var e=this._zr=t.getZr();this._styleCoord=[0,0,0,0],a(this._styleCoord,e,t.getWidth()/2,t.getHeight()/2),this._show=!1,this._hideTimeout}s.prototype={constructor:s,_enterable:!0,update:function(t){t.get("alwaysShowContent")&&this._moveTooltipIfResized()},_moveTooltipIfResized:function(){var t=this._styleCoord[2],e=this._styleCoord[3],n=t*this._zr.getWidth(),i=e*this._zr.getHeight();this.moveTo(n,i)},show:function(t){this._hideTimeout&&clearTimeout(this._hideTimeout),this.el.attr("show",!0),this._show=!0},setContent:function(t,e,n){this.el&&this._zr.remove(this.el);for(var i={},a=t,s=a.indexOf("{marker");s>=0;){var A=a.indexOf("|}"),l=a.substr(s+"{marker".length,A-s-"{marker".length);l.indexOf("sub")>-1?i["marker"+l]={textWidth:4,textHeight:4,textBorderRadius:2,textBackgroundColor:e[l],textOffset:[3,0]}:i["marker"+l]={textWidth:10,textHeight:10,textBorderRadius:5,textBackgroundColor:e[l]},s=(a=a.substr(A+1)).indexOf("{marker")}var c=n.getModel("textStyle"),u=c.get("fontSize"),h=n.get("textLineHeight");null==h&&(h=Math.round(3*u/2)),this.el=new r({style:o.setTextStyle({},c,{rich:i,text:t,textBackgroundColor:n.get("backgroundColor"),textBorderRadius:n.get("borderRadius"),textFill:n.get("textStyle.color"),textPadding:n.get("padding"),textLineHeight:h}),z:n.get("z")}),this._zr.add(this.el);var d=this;this.el.on("mouseover",function(){d._enterable&&(clearTimeout(d._hideTimeout),d._show=!0),d._inContent=!0}),this.el.on("mouseout",function(){d._enterable&&d._show&&d.hideLater(d._hideDelay),d._inContent=!1})},setEnterable:function(t){this._enterable=t},getSize:function(){var t=this.el.getBoundingRect();return[t.width,t.height]},moveTo:function(t,e){if(this.el){var n=this._styleCoord;a(n,this._zr,t,e),this.el.attr("position",[n[0],n[1]])}},hide:function(){this.el&&this.el.hide(),this._show=!1},hideLater:function(t){!this._show||this._inContent&&this._enterable||(t?(this._hideDelay=t,this._show=!1,this._hideTimeout=setTimeout(i.bind(this.hide,this),t)):this.hide())},isShow:function(){return this._show},dispose:function(){clearTimeout(this._hideTimeout),this.el&&this._zr.remove(this.el)},getOuterSize:function(){var t=this.getSize();return{width:t[0],height:t[1]}}};var A=s;t.exports=A},mxvg:function(t,e,n){var i=n("A5tq"),r={updateSelectedMap:function(t){this._targetList=i.isArray(t)?t.slice():[],this._selectTargetMap=i.reduce(t||[],function(t,e){return t.set(e.name,e),t},i.createHashMap())},select:function(t,e){var n=null!=e?this._targetList[e]:this._selectTargetMap.get(t);"single"===this.get("selectedMode")&&this._selectTargetMap.each(function(t){t.selected=!1}),n&&(n.selected=!0)},unSelect:function(t,e){var n=null!=e?this._targetList[e]:this._selectTargetMap.get(t);n&&(n.selected=!1)},toggleSelected:function(t,e){var n=null!=e?this._targetList[e]:this._selectTargetMap.get(t);if(null!=n)return this[n.selected?"unSelect":"select"](t,e),n.selected},isSelected:function(t,e){var n=null!=e?this._targetList[e]:this._selectTargetMap.get(t);return n&&n.selected}};t.exports=r},"n/EV":function(t,e){var n=Array.prototype.slice,i=function(t){this._$handlers={},this._$eventProcessor=t};function r(t,e,n,i,r,o){var a=t._$handlers;if("function"==typeof n&&(r=i,i=n,n=null),!i||!e)return t;n=function(t,e){var n=t._$eventProcessor;return null!=e&&n&&n.normalizeQuery&&(e=n.normalizeQuery(e)),e}(t,n),a[e]||(a[e]=[]);for(var s=0;s<a[e].length;s++)if(a[e][s].h===i)return t;var A={h:i,one:o,query:n,ctx:r||t,callAtLast:i.zrEventfulCallAtLast},l=a[e].length-1,c=a[e][l];return c&&c.callAtLast?a[e].splice(l,0,A):a[e].push(A),t}i.prototype={constructor:i,one:function(t,e,n,i){return r(this,t,e,n,i,!0)},on:function(t,e,n,i){return r(this,t,e,n,i,!1)},isSilent:function(t){var e=this._$handlers;return!e[t]||!e[t].length},off:function(t,e){var n=this._$handlers;if(!t)return this._$handlers={},this;if(e){if(n[t]){for(var i=[],r=0,o=n[t].length;r<o;r++)n[t][r].h!==e&&i.push(n[t][r]);n[t]=i}n[t]&&0===n[t].length&&delete n[t]}else delete n[t];return this},trigger:function(t){var e=this._$handlers[t],i=this._$eventProcessor;if(e){var r=arguments,o=r.length;o>3&&(r=n.call(r,1));for(var a=e.length,s=0;s<a;){var A=e[s];if(i&&i.filter&&null!=A.query&&!i.filter(t,A.query))s++;else{switch(o){case 1:A.h.call(A.ctx);break;case 2:A.h.call(A.ctx,r[1]);break;case 3:A.h.call(A.ctx,r[1],r[2]);break;default:A.h.apply(A.ctx,r)}A.one?(e.splice(s,1),a--):s++}}}return i&&i.afterTrigger&&i.afterTrigger(t),this},triggerWithContext:function(t){var e=this._$handlers[t],i=this._$eventProcessor;if(e){var r=arguments,o=r.length;o>4&&(r=n.call(r,1,r.length-1));for(var a=r[r.length-1],s=e.length,A=0;A<s;){var l=e[A];if(i&&i.filter&&null!=l.query&&!i.filter(t,l.query))A++;else{switch(o){case 1:l.h.call(a);break;case 2:l.h.call(a,r[1]);break;case 3:l.h.call(a,r[1],r[2]);break;default:l.h.apply(a,r)}l.one?(e.splice(A,1),s--):A++}}}return i&&i.afterTrigger&&i.afterTrigger(t),this}};var o=i;t.exports=o},n6w9:function(t,e,n){"use strict";var i=n("A1Ca");t.exports=function(t,e,n,r,o){var a=new Error(t);return i(a,e,n,r,o)}},nFw2:function(t,e,n){var i=n("A5tq"),r=n("Ym+9"),o=n("bDs9"),a=n("3Voe"),s=n("TfMJ"),A=n("Lk3r"),l=(0,n("65+t").makeInner)(),c=i.clone,u=i.bind;function h(){}function d(t,e,n,r){(function t(e,n){if(i.isObject(e)&&i.isObject(n)){var r=!0;return i.each(n,function(n,i){r=r&&t(e[i],n)}),!!r}return e===n})(l(n).lastProp,r)||(l(n).lastProp=r,e?o.updateProps(n,r,t):(n.stopAnimation(),n.attr(r)))}function f(t,e){t[e.get("label.show")?"show":"hide"]()}function p(t){return{position:t.position.slice(),rotation:t.rotation||0}}function g(t,e,n){var i=e.get("z"),r=e.get("zlevel");t&&t.traverse(function(t){"group"!==t.type&&(null!=i&&(t.z=i),null!=r&&(t.zlevel=r),t.silent=n)})}h.prototype={_group:null,_lastGraphicKey:null,_handle:null,_dragging:!1,_lastValue:null,_lastStatus:null,_payloadInfo:null,animationThreshold:15,render:function(t,e,n,r){var a=e.get("value"),s=e.get("status");if(this._axisModel=t,this._axisPointerModel=e,this._api=n,r||this._lastValue!==a||this._lastStatus!==s){this._lastValue=a,this._lastStatus=s;var A=this._group,l=this._handle;if(!s||"hide"===s)return A&&A.hide(),void(l&&l.hide());A&&A.show(),l&&l.show();var c={};this.makeElOption(c,a,t,e,n);var u=c.graphicKey;u!==this._lastGraphicKey&&this.clear(n),this._lastGraphicKey=u;var h=this._moveAnimation=this.determineAnimation(t,e);if(A){var f=i.curry(d,e,h);this.updatePointerEl(A,c,f,e),this.updateLabelEl(A,c,f,e)}else A=this._group=new o.Group,this.createPointerEl(A,c,t,e),this.createLabelEl(A,c,t,e),n.getZr().add(A);g(A,e,!0),this._renderHandle(a)}},remove:function(t){this.clear(t)},dispose:function(t){this.clear(t)},determineAnimation:function(t,e){var n=e.get("animation"),i=t.axis,r="category"===i.type,o=e.get("snap");if(!o&&!r)return!1;if("auto"===n||null==n){var s=this.animationThreshold;if(r&&i.getBandWidth()>s)return!0;if(o){var A=a.getAxisInfo(t).seriesDataCount,l=i.getExtent();return Math.abs(l[0]-l[1])/A>s}return!1}return!0===n},makeElOption:function(t,e,n,i,r){},createPointerEl:function(t,e,n,i){var r=e.pointer;if(r){var a=l(t).pointerEl=new o[r.type](c(e.pointer));t.add(a)}},createLabelEl:function(t,e,n,i){if(e.label){var r=l(t).labelEl=new o.Rect(c(e.label));t.add(r),f(r,i)}},updatePointerEl:function(t,e,n){var i=l(t).pointerEl;i&&e.pointer&&(i.setStyle(e.pointer.style),n(i,{shape:e.pointer.shape}))},updateLabelEl:function(t,e,n,i){var r=l(t).labelEl;r&&(r.setStyle(e.label.style),n(r,{shape:e.label.shape,position:e.label.position}),f(r,i))},_renderHandle:function(t){if(!this._dragging&&this.updateHandleTransform){var e,n=this._axisPointerModel,r=this._api.getZr(),a=this._handle,l=n.getModel("handle"),c=n.get("status");if(!l.get("show")||!c||"hide"===c)return a&&r.remove(a),void(this._handle=null);this._handle||(e=!0,a=this._handle=o.createIcon(l.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){s.stop(t.event)},onmousedown:u(this._onHandleDragMove,this,0,0),drift:u(this._onHandleDragMove,this),ondragend:u(this._onHandleDragEnd,this)}),r.add(a)),g(a,n,!1);a.setStyle(l.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var h=l.get("size");i.isArray(h)||(h=[h,h]),a.attr("scale",[h[0]/2,h[1]/2]),A.createOrUpdate(this,"_doDispatchAxisPointer",l.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,e)}},_moveHandleToValue:function(t,e){d(this._axisPointerModel,!e&&this._moveAnimation,this._handle,p(this.getHandleTransform(t,this._axisModel,this._axisPointerModel)))},_onHandleDragMove:function(t,e){var n=this._handle;if(n){this._dragging=!0;var i=this.updateHandleTransform(p(n),[t,e],this._axisModel,this._axisPointerModel);this._payloadInfo=i,n.stopAnimation(),n.attr(p(i)),l(n).lastProp=null,this._doDispatchAxisPointer()}},_doDispatchAxisPointer:function(){if(this._handle){var t=this._payloadInfo,e=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:e.axis.dim,axisIndex:e.componentIndex}]})}},_onHandleDragEnd:function(t){if(this._dragging=!1,this._handle){var e=this._axisPointerModel.get("value");this._moveHandleToValue(e),this._api.dispatchAction({type:"hideTip"})}},getHandleTransform:null,updateHandleTransform:null,clear:function(t){this._lastValue=null,this._lastStatus=null;var e=t.getZr(),n=this._group,i=this._handle;e&&n&&(this._lastGraphicKey=null,n&&e.remove(n),i&&e.remove(i),this._group=null,this._handle=null,this._payloadInfo=null)},doClear:function(){},buildLabel:function(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}}},h.prototype.constructor=h,r.enableClassExtend(h);var m=h;t.exports=m},nHlu:function(t,e,n){var i=n("quL4")([["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]]),r={getAreaStyle:function(t,e){return i(this,t,e)}};t.exports=r},nWxm:function(t,e,n){var i=n("A5tq"),r=n("n/EV"),o=n("TfMJ"),a=n("wzMa");function s(t){this.pointerChecker,this._zr=t,this._opt={};var e=i.bind,n=e(A,this),o=e(l,this),a=e(c,this),s=e(u,this),d=e(h,this);r.call(this),this.setPointerChecker=function(t){this.pointerChecker=t},this.enable=function(e,r){this.disable(),this._opt=i.defaults(i.clone(r)||{},{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),null==e&&(e=!0),!0!==e&&"move"!==e&&"pan"!==e||(t.on("mousedown",n),t.on("mousemove",o),t.on("mouseup",a)),!0!==e&&"scale"!==e&&"zoom"!==e||(t.on("mousewheel",s),t.on("pinch",d))},this.disable=function(){t.off("mousedown",n),t.off("mousemove",o),t.off("mouseup",a),t.off("mousewheel",s),t.off("pinch",d)},this.dispose=this.disable,this.isDragging=function(){return this._dragging},this.isPinching=function(){return this._pinching}}function A(t){if(!(o.isMiddleOrRightButtonOnMouseUpDown(t)||t.target&&t.target.draggable)){var e=t.offsetX,n=t.offsetY;this.pointerChecker&&this.pointerChecker(t,e,n)&&(this._x=e,this._y=n,this._dragging=!0)}}function l(t){if(this._dragging&&p("moveOnMouseMove",t,this._opt)&&"pinch"!==t.gestureEvent&&!a.isTaken(this._zr,"globalPan")){var e=t.offsetX,n=t.offsetY,i=this._x,r=this._y,s=e-i,A=n-r;this._x=e,this._y=n,this._opt.preventDefaultMouseMove&&o.stop(t.event),f(this,"pan","moveOnMouseMove",t,{dx:s,dy:A,oldX:i,oldY:r,newX:e,newY:n})}}function c(t){o.isMiddleOrRightButtonOnMouseUpDown(t)||(this._dragging=!1)}function u(t){var e=p("zoomOnMouseWheel",t,this._opt),n=p("moveOnMouseWheel",t,this._opt),i=t.wheelDelta,r=Math.abs(i),o=t.offsetX,a=t.offsetY;if(0!==i&&(e||n)){if(e){var s=r>3?1.4:r>1?1.2:1.1;d(this,"zoom","zoomOnMouseWheel",t,{scale:i>0?s:1/s,originX:o,originY:a})}if(n){var A=Math.abs(i);d(this,"scrollMove","moveOnMouseWheel",t,{scrollDelta:(i>0?1:-1)*(A>3?.4:A>1?.15:.05),originX:o,originY:a})}}}function h(t){a.isTaken(this._zr,"globalPan")||d(this,"zoom",null,t,{scale:t.pinchScale>1?1.1:1/1.1,originX:t.pinchX,originY:t.pinchY})}function d(t,e,n,i,r){t.pointerChecker&&t.pointerChecker(i,r.originX,r.originY)&&(o.stop(i.event),f(t,e,n,i,r))}function f(t,e,n,r,o){o.isAvailableBehavior=i.bind(p,null,n,r),t.trigger(e,o)}function p(t,e,n){var r=n[t];return!t||r&&(!i.isString(r)||e.event[r+"Key"])}i.mixin(s,r);var g=s;t.exports=g},nWyq:function(t,e,n){var i=n("loyO");n("O8tp"),n("7Apq");var r=n("qJZZ"),o=n("7Qni"),a=n("sq8S");i.registerVisual(r("funnel")),i.registerLayout(o),i.registerProcessor(a("funnel"))},nZ6q:function(t,e,n){var i=n("loyO"),r=n("U3tO"),o="sunburstRootToNode";i.registerAction({type:o,update:"updateView"},function(t,e){e.eachComponent({mainType:"series",subType:"sunburst",query:t},function(e,n){var i=r.retrieveTargetInfo(t,[o],e);if(i){var a=e.getViewRoot();a&&(t.direction=r.aboveViewRoot(a,i.node)?"rollUp":"drillDown"),e.resetViewRoot(i.node)}})});var a="sunburstHighlight";i.registerAction({type:a,update:"updateView"},function(t,e){e.eachComponent({mainType:"series",subType:"sunburst",query:t},function(e,n){var i=r.retrieveTargetInfo(t,[a],e);i&&(t.highlight=i.node)})});i.registerAction({type:"sunburstUnhighlight",update:"updateView"},function(t,e){e.eachComponent({mainType:"series",subType:"sunburst",query:t},function(e,n){t.unhighlight=!0})})},niuy:function(t,e,n){var i=n("A5tq"),r={show:!0,zlevel:0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#333",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#ccc"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.3)","rgba(200,200,200,0.3)"]}}},o={};o.categoryAxis=i.merge({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},r),o.valueAxis=i.merge({boundaryGap:[0,0],splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:"#eee",width:1}}},r),o.timeAxis=i.defaults({scale:!0,min:"dataMin",max:"dataMax"},o.valueAxis),o.logAxis=i.defaults({scale:!0,logBase:10},o.valueAxis);var a=o;t.exports=a},o1n8:function(t,e,n){var i=n("A5tq"),r=n("TfMJ"),o=n("bDs9"),a=n("Lk3r"),s=n("e6hA"),A=n("w9uD"),l=n("rhmo"),c=n("BGuy"),u=o.Rect,h=A.linearMap,d=A.asc,f=i.bind,p=i.each,g="horizontal",m=5,v=["line","bar","candlestick","scatter"],y=s.extend({type:"dataZoom.slider",init:function(t,e){this._displayables={},this._orient,this._range,this._handleEnds,this._size,this._handleWidth,this._handleHeight,this._location,this._dragging,this._dataShadowInfo,this.api=e},render:function(t,e,n,i){y.superApply(this,"render",arguments),a.createOrUpdate(this,"_dispatchZoomAction",this.dataZoomModel.get("throttle"),"fixRate"),this._orient=t.get("orient"),!1!==this.dataZoomModel.get("show")?(i&&"dataZoom"===i.type&&i.from===this.uid||this._buildView(),this._updateView()):this.group.removeAll()},remove:function(){y.superApply(this,"remove",arguments),a.clear(this,"_dispatchZoomAction")},dispose:function(){y.superApply(this,"dispose",arguments),a.clear(this,"_dispatchZoomAction")},_buildView:function(){var t=this.group;t.removeAll(),this._resetLocation(),this._resetInterval();var e=this._displayables.barGroup=new o.Group;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),t.add(e),this._positionGroup()},_resetLocation:function(){var t=this.dataZoomModel,e=this.api,n=this._findCoordRect(),r={width:e.getWidth(),height:e.getHeight()},o=this._orient===g?{right:r.width-n.x-n.width,top:r.height-30-7,width:n.width,height:30}:{right:7,top:n.y,width:30,height:n.height},a=l.getLayoutParams(t.option);i.each(["right","top","width","height"],function(t){"ph"===a[t]&&(a[t]=o[t])});var s=l.getLayoutRect(a,r,t.padding);this._location={x:s.x,y:s.y},this._size=[s.width,s.height],"vertical"===this._orient&&this._size.reverse()},_positionGroup:function(){var t=this.group,e=this._location,n=this._orient,i=this.dataZoomModel.getFirstTargetAxisModel(),r=i&&i.get("inverse"),o=this._displayables.barGroup,a=(this._dataShadowInfo||{}).otherAxisInverse;o.attr(n!==g||r?n===g&&r?{scale:a?[-1,1]:[-1,-1]}:"vertical"!==n||r?{scale:a?[-1,-1]:[-1,1],rotation:Math.PI/2}:{scale:a?[1,-1]:[1,1],rotation:Math.PI/2}:{scale:a?[1,1]:[1,-1]});var s=t.getBoundingRect([o]);t.attr("position",[e.x-s.x,e.y-s.y])},_getViewExtent:function(){return[0,this._size[0]]},_renderBackground:function(){var t=this.dataZoomModel,e=this._size,n=this._displayables.barGroup;n.add(new u({silent:!0,shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:t.get("backgroundColor")},z2:-40})),n.add(new u({shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:"transparent"},z2:0,onclick:i.bind(this._onClickPanelClick,this)}))},_renderDataShadow:function(){var t=this._dataShadowInfo=this._prepareDataShadowInfo();if(t){var e=this._size,n=t.series,r=n.getRawData(),a=n.getShadowDim?n.getShadowDim():t.otherDim;if(null!=a){var s=r.getDataExtent(a),A=.3*(s[1]-s[0]);s=[s[0]-A,s[1]+A];var l,c=[0,e[1]],u=[0,e[0]],d=[[e[0],0],[0,0]],f=[],p=u[1]/(r.count()-1),g=0,m=Math.round(r.count()/e[0]);r.each([a],function(t,e){if(m>0&&e%m)g+=p;else{var n=null==t||isNaN(t)||""===t,i=n?0:h(t,s,c,!0);n&&!l&&e?(d.push([d[d.length-1][0],0]),f.push([f[f.length-1][0],0])):!n&&l&&(d.push([g,0]),f.push([g,0])),d.push([g,i]),f.push([g,i]),g+=p,l=n}});var v=this.dataZoomModel;this._displayables.barGroup.add(new o.Polygon({shape:{points:d},style:i.defaults({fill:v.get("dataBackgroundColor")},v.getModel("dataBackground.areaStyle").getAreaStyle()),silent:!0,z2:-20})),this._displayables.barGroup.add(new o.Polyline({shape:{points:f},style:v.getModel("dataBackground.lineStyle").getLineStyle(),silent:!0,z2:-19}))}}},_prepareDataShadowInfo:function(){var t=this.dataZoomModel,e=t.get("showDataShadow");if(!1!==e){var n,r=this.ecModel;return t.eachTargetAxis(function(o,a){var s=t.getAxisProxy(o.name,a).getTargetSeriesModels();i.each(s,function(t){if(!(n||!0!==e&&i.indexOf(v,t.get("type"))<0)){var s,A=r.getComponent(o.axis,a).axis,l={x:"y",y:"x",radius:"angle",angle:"radius"}[o.name],c=t.coordinateSystem;null!=l&&c.getOtherAxis&&(s=c.getOtherAxis(A).inverse),l=t.getData().mapDimension(l),n={thisAxis:A,series:t,thisDim:o.name,otherDim:l,otherAxisInverse:s}}},this)},this),n}},_renderHandle:function(){var t=this._displayables,e=t.handles=[],n=t.handleLabels=[],i=this._displayables.barGroup,r=this._size,a=this.dataZoomModel;i.add(t.filler=new u({draggable:!0,cursor:w(this._orient),drift:f(this._onDragMove,this,"all"),ondragstart:f(this._showDataInfo,this,!0),ondragend:f(this._onDragEnd,this),onmouseover:f(this._showDataInfo,this,!0),onmouseout:f(this._showDataInfo,this,!1),style:{fill:a.get("fillerColor"),textPosition:"inside"}})),i.add(new u({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:r[0],height:r[1]},style:{stroke:a.get("dataBackgroundColor")||a.get("borderColor"),lineWidth:1,fill:"rgba(0,0,0,0)"}})),p([0,1],function(t){var r=o.createIcon(a.get("handleIcon"),{cursor:w(this._orient),draggable:!0,drift:f(this._onDragMove,this,t),ondragend:f(this._onDragEnd,this),onmouseover:f(this._showDataInfo,this,!0),onmouseout:f(this._showDataInfo,this,!1)},{x:-1,y:0,width:2,height:2}),s=r.getBoundingRect();this._handleHeight=A.parsePercent(a.get("handleSize"),this._size[1]),this._handleWidth=s.width/s.height*this._handleHeight,r.setStyle(a.getModel("handleStyle").getItemStyle());var l=a.get("handleColor");null!=l&&(r.style.fill=l),i.add(e[t]=r);var c=a.textStyleModel;this.group.add(n[t]=new o.Text({silent:!0,invisible:!0,style:{x:0,y:0,text:"",textVerticalAlign:"middle",textAlign:"center",textFill:c.getTextColor(),textFont:c.getFont()},z2:10}))},this)},_resetInterval:function(){var t=this._range=this.dataZoomModel.getPercentRange(),e=this._getViewExtent();this._handleEnds=[h(t[0],[0,100],e,!0),h(t[1],[0,100],e,!0)]},_updateInterval:function(t,e){var n=this.dataZoomModel,i=this._handleEnds,r=this._getViewExtent(),o=n.findRepresentativeAxisProxy().getMinMaxSpan(),a=[0,100];c(e,i,r,n.get("zoomLock")?"all":t,null!=o.minSpan?h(o.minSpan,a,r,!0):null,null!=o.maxSpan?h(o.maxSpan,a,r,!0):null);var s=this._range,A=this._range=d([h(i[0],r,a,!0),h(i[1],r,a,!0)]);return!s||s[0]!==A[0]||s[1]!==A[1]},_updateView:function(t){var e=this._displayables,n=this._handleEnds,i=d(n.slice()),r=this._size;p([0,1],function(t){var i=e.handles[t],o=this._handleHeight;i.attr({scale:[o/2,o/2],position:[n[t],r[1]/2-o/2]})},this),e.filler.setShape({x:i[0],y:0,width:i[1]-i[0],height:r[1]}),this._updateDataInfo(t)},_updateDataInfo:function(t){var e=this.dataZoomModel,n=this._displayables,i=n.handleLabels,r=this._orient,a=["",""];if(e.get("showDetail")){var s=e.findRepresentativeAxisProxy();if(s){var A=s.getAxisModel().axis,l=this._range,c=t?s.calculateDataWindow({start:l[0],end:l[1]}).valueWindow:s.getDataValueWindow();a=[this._formatLabel(c[0],A),this._formatLabel(c[1],A)]}}var u=d(this._handleEnds.slice());function h(t){var e=o.getTransform(n.handles[t].parent,this.group),s=o.transformDirection(0===t?"right":"left",e),A=this._handleWidth/2+m,l=o.applyTransform([u[t]+(0===t?-A:A),this._size[1]/2],e);i[t].setStyle({x:l[0],y:l[1],textVerticalAlign:r===g?"middle":s,textAlign:r===g?s:"center",text:a[t]})}h.call(this,0),h.call(this,1)},_formatLabel:function(t,e){var n=this.dataZoomModel,r=n.get("labelFormatter"),o=n.get("labelPrecision");null!=o&&"auto"!==o||(o=e.getPixelPrecision());var a=null==t||isNaN(t)?"":"category"===e.type||"time"===e.type?e.scale.getLabel(Math.round(t)):t.toFixed(Math.min(o,20));return i.isFunction(r)?r(t,a):i.isString(r)?r.replace("{value}",a):a},_showDataInfo:function(t){t=this._dragging||t;var e=this._displayables.handleLabels;e[0].attr("invisible",!t),e[1].attr("invisible",!t)},_onDragMove:function(t,e,n,i){this._dragging=!0,r.stop(i.event);var a=this._displayables.barGroup.getLocalTransform(),s=o.applyTransform([e,n],a,!0),A=this._updateInterval(t,s[0]),l=this.dataZoomModel.get("realtime");this._updateView(!l),A&&l&&this._dispatchZoomAction()},_onDragEnd:function(){this._dragging=!1,this._showDataInfo(!1),!this.dataZoomModel.get("realtime")&&this._dispatchZoomAction()},_onClickPanelClick:function(t){var e=this._size,n=this._displayables.barGroup.transformCoordToLocal(t.offsetX,t.offsetY);if(!(n[0]<0||n[0]>e[0]||n[1]<0||n[1]>e[1])){var i=this._handleEnds,r=(i[0]+i[1])/2,o=this._updateInterval("all",n[0]-r);this._updateView(),o&&this._dispatchZoomAction()}},_dispatchZoomAction:function(){var t=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,start:t[0],end:t[1]})},_findCoordRect:function(){var t;if(p(this.getTargetCoordInfo(),function(e){if(!t&&e.length){var n=e[0].model.coordinateSystem;t=n.getRect&&n.getRect()}}),!t){var e=this.api.getWidth(),n=this.api.getHeight();t={x:.2*e,y:.2*n,width:.6*e,height:.6*n}}return t}});function w(t){return"vertical"===t?"ns-resize":"ew-resize"}var x=y;t.exports=x},o9HO:function(t,e,n){var i=n("rhmo"),r=i.getLayoutRect,o=i.box,a=i.positionElement,s=n("DWNL"),A=n("bDs9");e.layout=function(t,e,n){var i=e.getBoxLayoutParams(),s=e.get("padding"),A={width:n.getWidth(),height:n.getHeight()},l=r(i,A,s);o(e.get("orient"),t,e.get("itemGap"),l.width,l.height),a(t,i,A,s)},e.makeBackground=function(t,e){var n=s.normalizeCssArray(e.get("padding")),i=e.getItemStyle(["color","opacity"]);return i.fill=e.get("backgroundColor"),t=new A.Rect({shape:{x:t.x-n[3],y:t.y-n[0],width:t.width+n[1]+n[3],height:t.height+n[0]+n[2],r:e.get("borderRadius")},style:i,silent:!0,z2:-1})}},"oB6+":function(t,e,n){var i=n("loyO"),r=n("A5tq");n("ySr6"),n("A5vn"),n("0W2J");var o=n("H164").layout,a=n("HVRW");n("7KEw"),i.registerLayout(r.curry(o,"pictorialBar")),i.registerVisual(a("pictorialBar","roundRect"))},oEDi:function(t,e,n){var i=n("UvWp");function r(t,e){i.call(this,t,e,["filter"],"__filter_in_use__","_shadowDom")}function o(t){return t&&(t.shadowBlur||t.shadowOffsetX||t.shadowOffsetY||t.textShadowBlur||t.textShadowOffsetX||t.textShadowOffsetY)}n("A5tq").inherits(r,i),r.prototype.addWithoutUpdate=function(t,e){if(e&&o(e.style)){var n;if(e._shadowDom)n=e._shadowDom,this.getDefs(!0).contains(e._shadowDom)||this.addDom(n);else n=this.add(e);this.markUsed(e);var i=n.getAttribute("id");t.style.filter="url(#"+i+")"}},r.prototype.add=function(t){var e=this.createElement("filter");return t._shadowDomId=t._shadowDomId||this.nextId++,e.setAttribute("id","zr"+this._zrId+"-shadow-"+t._shadowDomId),this.updateDom(t,e),this.addDom(e),e},r.prototype.update=function(t,e){if(o(e.style)){var n=this;i.prototype.update.call(this,e,function(){n.updateDom(e,e._shadowDom)})}else this.remove(t,e)},r.prototype.remove=function(t,e){null!=e._shadowDomId&&(this.removeDom(t),t.style.filter="")},r.prototype.updateDom=function(t,e){var n=e.getElementsByTagName("feDropShadow");n=0===n.length?this.createElement("feDropShadow"):n[0];var i,r,o,a,s=t.style,A=t.scale&&t.scale[0]||1,l=t.scale&&t.scale[1]||1;if(s.shadowBlur||s.shadowOffsetX||s.shadowOffsetY)i=s.shadowOffsetX||0,r=s.shadowOffsetY||0,o=s.shadowBlur,a=s.shadowColor;else{if(!s.textShadowBlur)return void this.removeDom(e,s);i=s.textShadowOffsetX||0,r=s.textShadowOffsetY||0,o=s.textShadowBlur,a=s.textShadowColor}n.setAttribute("dx",i/A),n.setAttribute("dy",r/l),n.setAttribute("flood-color",a);var c=o/2/A+" "+o/2/l;n.setAttribute("stdDeviation",c),e.setAttribute("x","-100%"),e.setAttribute("y","-100%"),e.setAttribute("width",Math.ceil(o/2*200)+"%"),e.setAttribute("height",Math.ceil(o/2*200)+"%"),e.appendChild(n),t._shadowDom=e},r.prototype.markUsed=function(t){t._shadowDom&&i.prototype.markUsed.call(this,t._shadowDom)};var a=r;t.exports=a},oKn6:function(t,e,n){var i=n("A5tq"),r=n("65+t"),o=n("Gkcz"),a=n("K3bJ"),s=n("mxvg"),A=n("x4Ry"),l=o.extend({type:"geo",coordinateSystem:null,layoutMode:"box",init:function(t){o.prototype.init.apply(this,arguments),r.defaultEmphasis(t,"label",["show"])},optionUpdated:function(){var t=this.option,e=this;t.regions=A.getFilledRegions(t.regions,t.map,t.nameMap),this._optionModelMap=i.reduce(t.regions||[],function(t,n){return n.name&&t.set(n.name,new a(n,e)),t},i.createHashMap()),this.updateSelectedMap(t.regions)},defaultOption:{zlevel:0,z:0,show:!0,left:"center",top:"center",aspectScale:null,silent:!1,map:"",boundingCoords:null,center:null,zoom:1,scaleLimit:null,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",color:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{color:"rgba(255,215,0,0.8)"}},regions:[]},getRegionModel:function(t){return this._optionModelMap.get(t)||new a(null,this,this.ecModel)},getFormattedLabel:function(t,e){e=e||"normal";var n=this.getRegionModel(t).get(("normal"===e?"":e+".")+"label.formatter"),i={name:t};return"function"==typeof n?(i.status=e,n(i)):"string"==typeof n?n.replace("{a}",null!=t?t:""):void 0},setZoom:function(t){this.option.zoom=t},setCenter:function(t){this.option.center=t}});i.mixin(l,s);var c=l;t.exports=c},oOY3:function(t,e,n){var i=n("A5tq"),r=n("lbYD"),o=n("f+YC"),a=n("SfFH"),s=n("bDs9"),A=n("w9uD").round,l=["fromSymbol","toSymbol"];function c(t){return"_"+t+"Type"}function u(t,e,n){var r=e.getItemVisual(n,t);if(r&&"none"!==r){var a=e.getItemVisual(n,"color"),s=e.getItemVisual(n,t+"Size"),A=e.getItemVisual(n,t+"Rotate");i.isArray(s)||(s=[s,s]);var l=o.createSymbol(r,-s[0]/2,-s[1]/2,s[0],s[1],a);return l.__specifiedRotation=null==A||isNaN(A)?void 0:+A*Math.PI/180||0,l.name=t,l}}function h(t,e){t.x1=e[0][0],t.y1=e[0][1],t.x2=e[1][0],t.y2=e[1][1],t.percent=1;var n=e[2];n?(t.cpx1=n[0],t.cpy1=n[1]):(t.cpx1=NaN,t.cpy1=NaN)}function d(t,e,n){s.Group.call(this),this._createLine(t,e,n)}var f=d.prototype;f.beforeUpdate=function(){var t=this.childOfName("fromSymbol"),e=this.childOfName("toSymbol"),n=this.childOfName("label");if(t||e||!n.ignore){for(var i=1,o=this.parent;o;)o.scale&&(i/=o.scale[0]),o=o.parent;var a=this.childOfName("line");if(this.__dirty||a.__dirty){var s,A=a.shape.percent,l=a.pointAt(0),c=a.pointAt(A),u=r.sub([],c,l);if(r.normalize(u,u),t){if(t.attr("position",l),null==(s=t.__specifiedRotation)){var h=a.tangentAt(0);t.attr("rotation",Math.PI/2-Math.atan2(h[1],h[0]))}else t.attr("rotation",s);t.attr("scale",[i*A,i*A])}if(e)e.attr("position",c),null==(s=e.__specifiedRotation)?(h=a.tangentAt(1),e.attr("rotation",-Math.PI/2-Math.atan2(h[1],h[0]))):e.attr("rotation",s),e.attr("scale",[i*A,i*A]);if(!n.ignore){var d,f,p,g;n.attr("position",c);var m=n.__labelDistance,v=m[0]*i,y=m[1]*i,w=A/2,x=[(h=a.tangentAt(w))[1],-h[0]],B=a.pointAt(w);x[1]>0&&(x[0]=-x[0],x[1]=-x[1]);var b,C=h[0]<0?-1:1;if("start"!==n.__position&&"end"!==n.__position){var _=-Math.atan2(h[1],h[0]);c[0]<l[0]&&(_=Math.PI+_),n.attr("rotation",_)}switch(n.__position){case"insideStartTop":case"insideMiddleTop":case"insideEndTop":case"middle":b=-y,p="bottom";break;case"insideStartBottom":case"insideMiddleBottom":case"insideEndBottom":b=y,p="top";break;default:b=0,p="middle"}switch(n.__position){case"end":d=[u[0]*v+c[0],u[1]*y+c[1]],f=u[0]>.8?"left":u[0]<-.8?"right":"center",p=u[1]>.8?"top":u[1]<-.8?"bottom":"middle";break;case"start":d=[-u[0]*v+l[0],-u[1]*y+l[1]],f=u[0]>.8?"right":u[0]<-.8?"left":"center",p=u[1]>.8?"bottom":u[1]<-.8?"top":"middle";break;case"insideStartTop":case"insideStart":case"insideStartBottom":d=[v*C+l[0],l[1]+b],f=h[0]<0?"right":"left",g=[-v*C,-b];break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":d=[B[0],B[1]+b],f="center",g=[0,-b];break;case"insideEndTop":case"insideEnd":case"insideEndBottom":d=[-v*C+c[0],c[1]+b],f=h[0]>=0?"right":"left",g=[v*C,-b]}n.attr({style:{textVerticalAlign:n.__verticalAlign||p,textAlign:n.__textAlign||f},position:d,scale:[i,i],origin:g})}}}},f._createLine=function(t,e,n){var r=t.hostModel,o=function(t){var e=new a({name:"line",subPixelOptimize:!0});return h(e.shape,t),e}(t.getItemLayout(e));o.shape.percent=0,s.initProps(o,{shape:{percent:1}},r,e),this.add(o);var A=new s.Text({name:"label",lineLabelOriginalOpacity:1});this.add(A),i.each(l,function(n){var i=u(n,t,e);this.add(i),this[c(n)]=t.getItemVisual(e,n)},this),this._updateCommonStl(t,e,n)},f.updateData=function(t,e,n){var r=t.hostModel,o=this.childOfName("line"),a=t.getItemLayout(e),A={shape:{}};h(A.shape,a),s.updateProps(o,A,r,e),i.each(l,function(n){var i=t.getItemVisual(e,n),r=c(n);if(this[r]!==i){this.remove(this.childOfName(n));var o=u(n,t,e);this.add(o)}this[r]=i},this),this._updateCommonStl(t,e,n)},f._updateCommonStl=function(t,e,n){var r=t.hostModel,o=this.childOfName("line"),a=n&&n.lineStyle,c=n&&n.hoverLineStyle,u=n&&n.labelModel,h=n&&n.hoverLabelModel;if(!n||t.hasItemOption){var d=t.getItemModel(e);a=d.getModel("lineStyle").getLineStyle(),c=d.getModel("emphasis.lineStyle").getLineStyle(),u=d.getModel("label"),h=d.getModel("emphasis.label")}var f=t.getItemVisual(e,"color"),p=i.retrieve3(t.getItemVisual(e,"opacity"),a.opacity,1);o.useStyle(i.defaults({strokeNoScale:!0,fill:"none",stroke:f,opacity:p},a)),o.hoverStyle=c,i.each(l,function(t){var e=this.childOfName(t);e&&(e.setColor(f),e.setStyle({opacity:p}))},this);var g,m,v=u.getShallow("show"),y=h.getShallow("show"),w=this.childOfName("label");if((v||y)&&(g=f||"#000",null==(m=r.getFormattedLabel(e,"normal",t.dataType)))){var x=r.getRawValue(e);m=null==x?t.getName(e):isFinite(x)?A(x):x}var B=v?m:null,b=y?i.retrieve2(r.getFormattedLabel(e,"emphasis",t.dataType),m):null,C=w.style;if(null!=B||null!=b){s.setTextStyle(w.style,u,{text:B},{autoColor:g}),w.__textAlign=C.textAlign,w.__verticalAlign=C.textVerticalAlign,w.__position=u.get("position")||"middle";var _=u.get("distance");i.isArray(_)||(_=[_,_]),w.__labelDistance=_}w.hoverStyle=null!=b?{text:b,textFill:h.getTextColor(!0),fontStyle:h.getShallow("fontStyle"),fontWeight:h.getShallow("fontWeight"),fontSize:h.getShallow("fontSize"),fontFamily:h.getShallow("fontFamily")}:{text:null},w.ignore=!v&&!y,s.setHoverStyle(this)},f.highlight=function(){this.trigger("emphasis")},f.downplay=function(){this.trigger("normal")},f.updateLayout=function(t,e){this.setLinePoints(t.getItemLayout(e))},f.setLinePoints=function(t){var e=this.childOfName("line");h(e.shape,t),e.dirty()},i.inherits(d,s.Group);var p=d;t.exports=p},oRvp:function(t,e,n){var i=n("3PS3"),r=n("lbYD").applyTransform,o=i.CMD,a=[[],[],[]],s=Math.sqrt,A=Math.atan2;t.exports=function(t,e){var n,i,l,c,u,h=t.data,d=o.M,f=o.C,p=o.L,g=o.R,m=o.A,v=o.Q;for(l=0,c=0;l<h.length;){switch(n=h[l++],c=l,i=0,n){case d:case p:i=1;break;case f:i=3;break;case v:i=2;break;case m:var y=e[4],w=e[5],x=s(e[0]*e[0]+e[1]*e[1]),B=s(e[2]*e[2]+e[3]*e[3]),b=A(-e[1]/B,e[0]/x);h[l]*=x,h[l++]+=y,h[l]*=B,h[l++]+=w,h[l++]*=x,h[l++]*=B,h[l++]+=b,h[l++]+=b,c=l+=2;break;case g:C[0]=h[l++],C[1]=h[l++],r(C,C,e),h[c++]=C[0],h[c++]=C[1],C[0]+=h[l++],C[1]+=h[l++],r(C,C,e),h[c++]=C[0],h[c++]=C[1]}for(u=0;u<i;u++){var C;(C=a[u])[0]=h[l++],C[1]=h[l++],r(C,C,e),h[c++]=C[0],h[c++]=C[1]}}}},oZxh:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("cLid"),a=["axisLine","axisTickLabel","axisName"],s=["splitLine","splitArea","minorSplitLine"],A=n("gj94").extend({type:"radiusAxis",axisPointerClass:"PolarAxisPointer",render:function(t,e){if(this.group.removeAll(),t.get("show")){var n=t.axis,r=n.polar,A=r.getAngleAxis(),l=n.getTicksCoords(),c=n.getMinorTicksCoords(),u=A.getExtent()[0],h=n.getExtent(),d=function(t,e,n){return{position:[t.cx,t.cy],rotation:n/180*Math.PI,labelDirection:-1,tickDirection:-1,nameDirection:1,labelRotate:e.getModel("axisLabel").get("rotate"),z2:1}}(r,t,u),f=new o(t,d);i.each(a,f.add,f),this.group.add(f.getGroup()),i.each(s,function(e){t.get(e+".show")&&!n.scale.isBlank()&&this["_"+e](t,r,u,h,l,c)},this)}},_splitLine:function(t,e,n,o,a){var s=t.getModel("splitLine").getModel("lineStyle"),A=s.get("color"),l=0;A=A instanceof Array?A:[A];for(var c=[],u=0;u<a.length;u++){var h=l++%A.length;c[h]=c[h]||[],c[h].push(new r.Circle({shape:{cx:e.cx,cy:e.cy,r:a[u].coord}}))}for(u=0;u<c.length;u++)this.group.add(r.mergePath(c[u],{style:i.defaults({stroke:A[u%A.length],fill:null},s.getLineStyle()),silent:!0}))},_minorSplitLine:function(t,e,n,o,a,s){if(s.length){for(var A=t.getModel("minorSplitLine").getModel("lineStyle"),l=[],c=0;c<s.length;c++)for(var u=0;u<s[c].length;u++)l.push(new r.Circle({shape:{cx:e.cx,cy:e.cy,r:s[c][u].coord}}));this.group.add(r.mergePath(l,{style:i.defaults({fill:null},A.getLineStyle()),silent:!0}))}},_splitArea:function(t,e,n,o,a){if(a.length){var s=t.getModel("splitArea").getModel("areaStyle"),A=s.get("color"),l=0;A=A instanceof Array?A:[A];for(var c=[],u=a[0].coord,h=1;h<a.length;h++){var d=l++%A.length;c[d]=c[d]||[],c[d].push(new r.Sector({shape:{cx:e.cx,cy:e.cy,r0:u,r:a[h].coord,startAngle:0,endAngle:2*Math.PI},silent:!0})),u=a[h].coord}for(h=0;h<c.length;h++)this.group.add(r.mergePath(c[h],{style:i.defaults({fill:A[h%A.length]},s.getAreaStyle()),silent:!0}))}}});t.exports=A},ogql:function(t,e,n){var i=n("qqUS"),r=n("sutA"),o=n("A5tq"),a=n("cEZL"),s=n("d5FO"),A=n("salm"),l=n("Fo4X"),c=n("p3/k"),u=!r.canvasSupported,h={canvas:A},d={};var f=function(t,e,n){n=n||{},this.dom=e,this.id=t;var i=this,A=new s,d=n.renderer;if(u){if(!h.vml)throw new Error("You need to require 'zrender/vml/vml' to support IE8");d="vml"}else d&&h[d]||(d="canvas");var f=new h[d](e,A,n,t);this.storage=A,this.painter=f;var p=r.node||r.worker?null:new c(f.getViewportRoot(),f.root);this.handler=new a(A,f,p,f.root),this.animation=new l({stage:{update:o.bind(this.flush,this)}}),this.animation.start(),this._needsRefresh;var g=A.delFromStorage,m=A.addToStorage;A.delFromStorage=function(t){g.call(A,t),t&&t.removeSelfFromZr(i)},A.addToStorage=function(t){m.call(A,t),t.addSelfToZr(i)}};f.prototype={constructor:f,getId:function(){return this.id},add:function(t){this.storage.addRoot(t),this._needsRefresh=!0},remove:function(t){this.storage.delRoot(t),this._needsRefresh=!0},configLayer:function(t,e){this.painter.configLayer&&this.painter.configLayer(t,e),this._needsRefresh=!0},setBackgroundColor:function(t){this.painter.setBackgroundColor&&this.painter.setBackgroundColor(t),this._needsRefresh=!0},refreshImmediately:function(){this._needsRefresh=this._needsRefreshHover=!1,this.painter.refresh(),this._needsRefresh=this._needsRefreshHover=!1},refresh:function(){this._needsRefresh=!0},flush:function(){var t;this._needsRefresh&&(t=!0,this.refreshImmediately()),this._needsRefreshHover&&(t=!0,this.refreshHoverImmediately()),t&&this.trigger("rendered")},addHover:function(t,e){if(this.painter.addHover){var n=this.painter.addHover(t,e);return this.refreshHover(),n}},removeHover:function(t){this.painter.removeHover&&(this.painter.removeHover(t),this.refreshHover())},clearHover:function(){this.painter.clearHover&&(this.painter.clearHover(),this.refreshHover())},refreshHover:function(){this._needsRefreshHover=!0},refreshHoverImmediately:function(){this._needsRefreshHover=!1,this.painter.refreshHover&&this.painter.refreshHover()},resize:function(t){t=t||{},this.painter.resize(t.width,t.height),this.handler.resize()},clearAnimation:function(){this.animation.clear()},getWidth:function(){return this.painter.getWidth()},getHeight:function(){return this.painter.getHeight()},pathToImage:function(t,e){return this.painter.pathToImage(t,e)},setCursorStyle:function(t){this.handler.setCursorStyle(t)},findHover:function(t,e){return this.handler.findHover(t,e)},on:function(t,e,n){this.handler.on(t,e,n)},off:function(t,e){this.handler.off(t,e)},trigger:function(t,e){this.handler.trigger(t,e)},clear:function(){this.storage.delRoot(),this.painter.clear()},dispose:function(){var t;this.animation.stop(),this.clear(),this.storage.dispose(),this.painter.dispose(),this.handler.dispose(),this.animation=this.storage=this.painter=this.handler=null,t=this.id,delete d[t]}},e.version="4.3.2",e.init=function(t,e){var n=new f(i(),t,e);return d[n.id]=n,n},e.dispose=function(t){if(t)t.dispose();else{for(var e in d)d.hasOwnProperty(e)&&d[e].dispose();d={}}return this},e.getInstance=function(t){return d[t]},e.registerPainter=function(t,e){h[t]=e}},ojHS:function(t,e,n){var i=n("A5tq"),r=n("5P5h"),o=n("7iGl").toolbox.brush;function a(t,e,n){this.model=t,this.ecModel=e,this.api=n,this._brushType,this._brushMode}a.defaultOption={show:!0,type:["rect","polygon","lineX","lineY","keep","clear"],icon:{rect:"M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13",polygon:"M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2",lineX:"M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4",lineY:"M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4",keep:"M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z",clear:"M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2"},title:i.clone(o.title)};var s=a.prototype;s.render=s.updateView=function(t,e,n){var r,o,a;e.eachComponent({mainType:"brush"},function(t){r=t.brushType,o=t.brushOption.brushMode||"single",a|=t.areas.length}),this._brushType=r,this._brushMode=o,i.each(t.get("type",!0),function(e){t.setIconStatus(e,("keep"===e?"multiple"===o:"clear"===e?a:e===r)?"emphasis":"normal")})},s.getIcons=function(){var t=this.model,e=t.get("icon",!0),n={};return i.each(t.get("type",!0),function(t){e[t]&&(n[t]=e[t])}),n},s.onclick=function(t,e,n){var i=this._brushType,r=this._brushMode;"clear"===n?(e.dispatchAction({type:"axisAreaSelect",intervals:[]}),e.dispatchAction({type:"brush",command:"clear",areas:[]})):e.dispatchAction({type:"takeGlobalCursor",key:"brush",brushOption:{brushType:"keep"===n?i:i!==n&&n,brushMode:"keep"===n?"multiple"===r?"single":"multiple":r}})},r.register("brush",a);var A=a;t.exports=A},olgb:function(t,e,n){var i=n("R33K"),r=n("lbYD"),o=n("hEIH").getSymbolSize,a=[],s=[],A=[],l=i.quadraticAt,c=r.distSquare,u=Math.abs;function h(t,e,n){for(var i,r=t[0],o=t[1],h=t[2],d=1/0,f=n*n,p=.1,g=.1;g<=.9;g+=.1){a[0]=l(r[0],o[0],h[0],g),a[1]=l(r[1],o[1],h[1],g),(y=u(c(a,e)-f))<d&&(d=y,i=g)}for(var m=0;m<32;m++){var v=i+p;s[0]=l(r[0],o[0],h[0],i),s[1]=l(r[1],o[1],h[1],i),A[0]=l(r[0],o[0],h[0],v),A[1]=l(r[1],o[1],h[1],v);var y=c(s,e)-f;if(u(y)<.01)break;var w=c(A,e)-f;p/=2,y<0?w>=0?i+=p:i-=p:w>=0?i-=p:i+=p}return i}t.exports=function(t,e){var n=[],a=i.quadraticSubdivide,s=[[],[],[]],A=[[],[]],l=[];e/=2,t.eachEdge(function(t,i){var c=t.getLayout(),u=t.getVisual("fromSymbol"),d=t.getVisual("toSymbol");c.__original||(c.__original=[r.clone(c[0]),r.clone(c[1])],c[2]&&c.__original.push(r.clone(c[2])));var f=c.__original;if(null!=c[2]){if(r.copy(s[0],f[0]),r.copy(s[1],f[2]),r.copy(s[2],f[1]),u&&"none"!==u){var p=o(t.node1),g=h(s,f[0],p*e);a(s[0][0],s[1][0],s[2][0],g,n),s[0][0]=n[3],s[1][0]=n[4],a(s[0][1],s[1][1],s[2][1],g,n),s[0][1]=n[3],s[1][1]=n[4]}d&&"none"!==d&&(p=o(t.node2),g=h(s,f[1],p*e),a(s[0][0],s[1][0],s[2][0],g,n),s[1][0]=n[1],s[2][0]=n[2],a(s[0][1],s[1][1],s[2][1],g,n),s[1][1]=n[1],s[2][1]=n[2]),r.copy(c[0],s[0]),r.copy(c[1],s[2]),r.copy(c[2],s[1])}else r.copy(A[0],f[0]),r.copy(A[1],f[1]),r.sub(l,A[1],A[0]),r.normalize(l,l),u&&"none"!==u&&(p=o(t.node1),r.scaleAndAdd(A[0],A[0],l,p*e)),d&&"none"!==d&&(p=o(t.node2),r.scaleAndAdd(A[1],A[1],l,-p*e)),r.copy(c[0],A[0]),r.copy(c[1],A[1])})}},ovZU:function(t,e,n){var i=n("TiXa").extend({type:"dataZoom.slider",layoutMode:"box",defaultOption:{show:!0,right:"ph",top:"ph",width:"ph",height:"ph",left:null,bottom:null,backgroundColor:"rgba(47,69,84,0)",dataBackground:{lineStyle:{color:"#2f4554",width:.5,opacity:.3},areaStyle:{color:"rgba(47,69,84,0.3)",opacity:.3}},borderColor:"#ddd",fillerColor:"rgba(167,183,204,0.4)",handleIcon:"M8.2,13.6V3.9H6.3v9.7H3.1v14.9h3.3v9.7h1.8v-9.7h3.3V13.6H8.2z M9.7,24.4H4.8v-1.4h4.9V24.4z M9.7,19.1H4.8v-1.4h4.9V19.1z",handleSize:"100%",handleStyle:{color:"#a7b7cc"},labelPrecision:null,labelFormatter:null,showDetail:!0,showDataShadow:"auto",realtime:!0,zoomLock:!1,textStyle:{color:"#333"}}});t.exports=i},oy47:function(t,e,n){var i=n("8ubz"),r=n("rhmo"),o=r.mergeLayoutParam,a=r.getLayoutParams,s=i.extend({type:"legend.scroll",setScrollDataIndex:function(t){this.option.scrollDataIndex=t},defaultOption:{scrollDataIndex:0,pageButtonItemGap:5,pageButtonGap:null,pageButtonPosition:"end",pageFormatter:"{current}/{total}",pageIcons:{horizontal:["M0,0L12,-10L12,10z","M0,0L-12,-10L-12,10z"],vertical:["M0,0L20,0L10,-20z","M0,0L20,0L10,20z"]},pageIconColor:"#2f4554",pageIconInactiveColor:"#aaa",pageIconSize:15,pageTextStyle:{color:"#333"},animationDurationUpdate:800},init:function(t,e,n,i){var r=a(t);s.superCall(this,"init",t,e,n,i),A(this,t,r)},mergeOption:function(t,e){s.superCall(this,"mergeOption",t,e),A(this,this.option,t)}});function A(t,e,n){var i=[1,1];i[t.getOrient().index]=0,o(e,n,{type:"box",ignoreSize:i})}var l=s;t.exports=l},"p+Y8":function(t,e,n){var i=n("lbYD").distance;function r(t,e,n,i,r,o,a){var s=.5*(n-t),A=.5*(i-e);return(2*(e-n)+s+A)*a+(-3*(e-n)-2*s-A)*o+s*r+e}t.exports=function(t,e){for(var n=t.length,o=[],a=0,s=1;s<n;s++)a+=i(t[s-1],t[s]);var A=a/2;for(A=A<n?n:A,s=0;s<A;s++){var l,c,u,h=s/(A-1)*(e?n:n-1),d=Math.floor(h),f=h-d,p=t[d%n];e?(l=t[(d-1+n)%n],c=t[(d+1)%n],u=t[(d+2)%n]):(l=t[0===d?d:d-1],c=t[d>n-2?n-1:d+1],u=t[d>n-3?n-1:d+2]);var g=f*f,m=f*g;o.push([r(l[0],p[0],c[0],u[0],f,g,m),r(l[1],p[1],c[1],u[1],f,g,m)])}return o}},"p+Z8":function(t,e,n){var i=n("8cgE"),r=n("eII0"),o=n("rhmo").getLayoutRect,a=n("A5tq").each;function s(t,e,n){this.dimension="single",this.dimensions=["single"],this._axis=null,this._rect,this._init(t,e,n),this.model=t}s.prototype={type:"singleAxis",axisPointerEnabled:!0,constructor:s,_init:function(t,e,n){var o=this.dimension,a=new i(o,r.createScaleByModel(t),[0,0],t.get("type"),t.get("position")),s="category"===a.type;a.onBand=s&&t.get("boundaryGap"),a.inverse=t.get("inverse"),a.orient=t.get("orient"),t.axis=a,a.model=t,a.coordinateSystem=this,this._axis=a},update:function(t,e){t.eachSeries(function(t){if(t.coordinateSystem===this){var e=t.getData();a(e.mapDimension(this.dimension,!0),function(t){this._axis.scale.unionExtentFromData(e,t)},this),r.niceScaleExtent(this._axis.scale,this._axis.model)}},this)},resize:function(t,e){this._rect=o({left:t.get("left"),top:t.get("top"),right:t.get("right"),bottom:t.get("bottom"),width:t.get("width"),height:t.get("height")},{width:e.getWidth(),height:e.getHeight()}),this._adjustAxis()},getRect:function(){return this._rect},_adjustAxis:function(){var t=this._rect,e=this._axis,n=e.isHorizontal(),i=n?[0,t.width]:[0,t.height],r=e.reverse?1:0;e.setExtent(i[r],i[1-r]),this._updateAxisTransform(e,n?t.x:t.y)},_updateAxisTransform:function(t,e){var n=t.getExtent(),i=n[0]+n[1],r=t.isHorizontal();t.toGlobalCoord=r?function(t){return t+e}:function(t){return i-t+e},t.toLocalCoord=r?function(t){return t-e}:function(t){return i-t+e}},getAxis:function(){return this._axis},getBaseAxis:function(){return this._axis},getAxes:function(){return[this._axis]},getTooltipAxes:function(){return{baseAxes:[this.getAxis()]}},containPoint:function(t){var e=this.getRect(),n=this.getAxis();return"horizontal"===n.orient?n.contain(n.toLocalCoord(t[0]))&&t[1]>=e.y&&t[1]<=e.y+e.height:n.contain(n.toLocalCoord(t[1]))&&t[0]>=e.y&&t[0]<=e.y+e.height},pointToData:function(t){var e=this.getAxis();return[e.coordToData(e.toLocalCoord(t["horizontal"===e.orient?0:1]))]},dataToPoint:function(t){var e=this.getAxis(),n=this.getRect(),i=[],r="horizontal"===e.orient?0:1;return t instanceof Array&&(t=t[0]),i[r]=e.toGlobalCoord(e.dataToCoord(+t)),i[1-r]=0===r?n.y+n.height/2:n.x+n.width/2,i}};var A=s;t.exports=A},"p3/k":function(t,e,n){var i,r,o=n("TfMJ"),a=o.addEventListener,s=o.removeEventListener,A=o.normalizeEvent,l=o.getNativeEvent,c=n("A5tq"),u=n("n/EV"),h=n("sutA"),d=h.domSupported,f=(r={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},{mouse:i=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],touch:["touchstart","touchend","touchmove"],pointer:c.map(i,function(t){var e=t.replace("mouse","pointer");return r.hasOwnProperty(e)?e:t})}),p={mouse:["mousemove","mouseup"],pointer:["pointermove","pointerup"]};function g(t){return"mousewheel"===t&&h.browser.firefox?"DOMMouseScroll":t}function m(t){var e=t.pointerType;return"pen"===e||"touch"===e}function v(t){t&&(t.zrByTouch=!0)}function y(t,e){for(var n=e,i=!1;n&&9!==n.nodeType&&!(i=n.domBelongToZr||n!==e&&n===t.painterRoot);)n=n.parentNode;return i}function w(t,e){this.type=e.type,this.target=this.currentTarget=t.dom,this.pointerType=e.pointerType,this.clientX=e.clientX,this.clientY=e.clientY}var x=w.prototype;x.stopPropagation=x.stopImmediatePropagation=x.preventDefault=c.noop;var B={mousedown:function(t){t=A(this.dom,t),this._mayPointerCapture=[t.zrX,t.zrY],this.trigger("mousedown",t)},mousemove:function(t){t=A(this.dom,t);var e=this._mayPointerCapture;!e||t.zrX===e[0]&&t.zrY===e[1]||T(this,!0),this.trigger("mousemove",t)},mouseup:function(t){t=A(this.dom,t),T(this,!1),this.trigger("mouseup",t)},mouseout:function(t){t=A(this.dom,t),this._pointerCapturing&&(t.zrEventControl="no_globalout");var e=t.toElement||t.relatedTarget;t.zrIsToLocalDOM=y(this,e),this.trigger("mouseout",t)},touchstart:function(t){v(t=A(this.dom,t)),this._lastTouchMoment=new Date,this.handler.processGesture(t,"start"),B.mousemove.call(this,t),B.mousedown.call(this,t)},touchmove:function(t){v(t=A(this.dom,t)),this.handler.processGesture(t,"change"),B.mousemove.call(this,t)},touchend:function(t){v(t=A(this.dom,t)),this.handler.processGesture(t,"end"),B.mouseup.call(this,t),+new Date-this._lastTouchMoment<300&&B.click.call(this,t)},pointerdown:function(t){B.mousedown.call(this,t)},pointermove:function(t){m(t)||B.mousemove.call(this,t)},pointerup:function(t){B.mouseup.call(this,t)},pointerout:function(t){m(t)||B.mouseout.call(this,t)}};c.each(["click","mousewheel","dblclick","contextmenu"],function(t){B[t]=function(e){e=A(this.dom,e),this.trigger(t,e)}});var b={pointermove:function(t){m(t)||b.mousemove.call(this,t)},pointerup:function(t){b.mouseup.call(this,t)},mousemove:function(t){this.trigger("mousemove",t)},mouseup:function(t){var e=this._pointerCapturing;T(this,!1),this.trigger("mouseup",t),e&&(t.zrEventControl="only_globalout",this.trigger("mouseout",t))}};function C(t,e){var n=e.domHandlers;h.pointerEventsSupported?c.each(f.pointer,function(i){S(e,i,function(e){n[i].call(t,e)})}):(h.touchEventsSupported&&c.each(f.touch,function(i){S(e,i,function(r){n[i].call(t,r),function(t){t.touching=!0,null!=t.touchTimer&&(clearTimeout(t.touchTimer),t.touchTimer=null),t.touchTimer=setTimeout(function(){t.touching=!1,t.touchTimer=null},700)}(e)})}),c.each(f.mouse,function(i){S(e,i,function(r){r=l(r),e.touching||n[i].call(t,r)})}))}function _(t,e){function n(n){S(e,n,function(i){i=l(i),y(t,i.target)||(i=function(t,e){return A(t.dom,new w(t,e),!0)}(t,i),e.domHandlers[n].call(t,i))},{capture:!0})}h.pointerEventsSupported?c.each(p.pointer,n):h.touchEventsSupported||c.each(p.mouse,n)}function S(t,e,n,i){t.mounted[e]=n,t.listenerOpts[e]=i,a(t.domTarget,g(e),n,i)}function I(t){var e=t.mounted;for(var n in e)e.hasOwnProperty(n)&&s(t.domTarget,g(n),e[n],t.listenerOpts[n]);t.mounted={}}function T(t,e){if(t._mayPointerCapture=null,d&&t._pointerCapturing^e){t._pointerCapturing=e;var n=t._globalHandlerScope;e?_(t,n):I(n)}}function M(t,e){this.domTarget=t,this.domHandlers=e,this.mounted={},this.listenerOpts={},this.touchTimer=null,this.touching=!1}function Q(t,e){u.call(this),this.dom=t,this.painterRoot=e,this._localHandlerScope=new M(t,B),d&&(this._globalHandlerScope=new M(document,b)),this._pointerCapturing=!1,this._mayPointerCapture=null,C(this,this._localHandlerScope)}var F=Q.prototype;F.dispose=function(){I(this._localHandlerScope),d&&I(this._globalHandlerScope)},F.setCursor=function(t){this.dom.style&&(this.dom.style.cursor=t||"default")},c.mixin(Q,u);var k=Q;t.exports=k},p7Ib:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("NYvz"),a=n("rN3u"),s=n("rbP0"),A=n("BGuy"),l=n("7iGl"),c=n("5P5h");n("a2NG");var u=l.toolbox.dataZoom,h=r.each,d="\0_ec_\0toolbox-dataZoom_";function f(t,e,n){(this._brushController=new o(n.getZr())).on("brush",r.bind(this._onBrush,this)).mount(),this._isZoomActive}f.defaultOption={show:!0,filterMode:"filter",icon:{zoom:"M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1",back:"M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26"},title:r.clone(u.title),brushStyle:{borderWidth:0,color:"rgba(0,0,0,0.2)"}};var p=f.prototype;p.render=function(t,e,n,i){this.model=t,this.ecModel=e,this.api=n,function(t,e,n,i,r){var o=n._isZoomActive;i&&"takeGlobalCursor"===i.type&&(o="dataZoomSelect"===i.key&&i.dataZoomSelectActive);n._isZoomActive=o,t.setIconStatus("zoom",o?"emphasis":"normal");var s=new a(m(t.option),e,{include:["grid"]});n._brushController.setPanels(s.makePanelOpts(r,function(t){return t.xAxisDeclared&&!t.yAxisDeclared?"lineX":!t.xAxisDeclared&&t.yAxisDeclared?"lineY":"rect"})).enableBrush(!!o&&{brushType:"auto",brushStyle:t.getModel("brushStyle").getItemStyle()})}(t,e,this,i,n),function(t,e){t.setIconStatus("back",s.count(e)>1?"emphasis":"normal")}(t,e)},p.onclick=function(t,e,n){g[n].call(this)},p.remove=function(t,e){this._brushController.unmount()},p.dispose=function(t,e){this._brushController.dispose()};var g={zoom:function(){var t=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:t})},back:function(){this._dispatchZoomAction(s.pop(this.ecModel))}};function m(t){var e={};return r.each(["xAxisIndex","yAxisIndex"],function(n){e[n]=t[n],null==e[n]&&(e[n]="all"),(!1===e[n]||"none"===e[n])&&(e[n]=[])}),e}p._onBrush=function(t,e){if(e.isEnd&&t.length){var n={},i=this.ecModel;this._brushController.updateCovers([]),new a(m(this.model.option),i,{include:["grid"]}).matchOutputRanges(t,i,function(t,e,n){if("cartesian2d"===n.type){var i=t.brushType;"rect"===i?(r("x",n,e[0]),r("y",n,e[1])):r({lineX:"x",lineY:"y"}[i],n,e)}}),s.push(i,n),this._dispatchZoomAction(n)}function r(t,e,r){var o=e.getAxis(t),a=o.model,s=function(t,e,n){var i;return n.eachComponent({mainType:"dataZoom",subType:"select"},function(n){n.getAxisModel(t,e.componentIndex)&&(i=n)}),i}(t,a,i),l=s.findRepresentativeAxisProxy(a).getMinMaxSpan();null==l.minValueSpan&&null==l.maxValueSpan||(r=A(0,r.slice(),o.scale.getExtent(),0,l.minValueSpan,l.maxValueSpan)),s&&(n[s.id]={dataZoomId:s.id,startValue:r[0],endValue:r[1]})}},p._dispatchZoomAction=function(t){var e=[];h(t,function(t,n){e.push(r.clone(t))}),e.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:e})},c.register("dataZoom",f),i.registerPreprocessor(function(t){if(t){var e=t.dataZoom||(t.dataZoom=[]);r.isArray(e)||(t.dataZoom=e=[e]);var n=t.toolbox;if(n&&(r.isArray(n)&&(n=n[0]),n&&n.feature)){var i=n.feature.dataZoom;o("xAxis",i),o("yAxis",i)}}function o(n,i){if(i){var o=n+"Index",a=i[o];null==a||"all"===a||r.isArray(a)||(a=!1===a||"none"===a?[]:[a]),function(e,n){var i=t[e];r.isArray(i)||(i=i?[i]:[]);h(i,n)}(n,function(t,s){if(null==a||"all"===a||-1!==r.indexOf(a,s)){var A={type:"select",$fromToolbox:!0,filterMode:i.filterMode||"filter",id:d+n+s};A[o]=s,e.push(A)}})}}});var v=f;t.exports=v},pLcR:function(t,e,n){var i=n("A5tq"),r=function(t){return t.get("autoCurveness")||null},o=function(t,e){var n=r(t),o=20,a=[];if("number"==typeof n)o=n;else if(i.isArray(n))return void(t.__curvenessList=n);e>o&&(o=e);var s=o%2?o+2:o+3;a=[];for(var A=0;A<s;A++)a.push((A%2?A+1:A)/10*(A%2?-1:1));t.__curvenessList=a},a=function(t,e,n){var i=[t.id,t.dataIndex].join("."),r=[e.id,e.dataIndex].join(".");return[n.uid,i,r].join("--\x3e")},s=function(t){var e=t.split("--\x3e");return[e[0],e[2],e[1]].join("--\x3e")},A=function(t,e){var n=a(t.node1,t.node2,e);return e.__edgeMap[n]},l=function(t,e){return c(a(t.node1,t.node2,e),e)+c(a(t.node2,t.node1,e),e)},c=function(t,e){var n=e.__edgeMap;return n[t]?n[t].length:0};e.initCurvenessList=function(t){r(t)&&(t.__curvenessList=[],t.__edgeMap={},o(t))},e.createEdgeMapForCurveness=function(t,e,n,i){if(r(n)){var o=a(t,e,n),A=n.__edgeMap,l=A[s(o)];A[o]&&!l?A[o].isForward=!0:l&&A[o]&&(l.isForward=!0,A[o].isForward=!1),A[o]=A[o]||[],A[o].push(i)}},e.getCurvenessForEdge=function(t,e,n,u){var h=r(e),d=i.isArray(h);if(!h)return null;var f=A(t,e);if(!f)return null;for(var p=-1,g=0;g<f.length;g++)if(f[g]===n){p=g;break}var m=l(t,e);o(e,m),t.lineStyle=t.lineStyle||{};var v=a(t.node1,t.node2,e),y=e.__curvenessList,w=d?0:m%2?0:1;if(f.isForward)return y[w+p];var x=s(v),B=c(x,e),b=y[p+B+w];return u?d?h&&0===h[0]?(B+w)%2?b:-b:((B%2?0:1)+w)%2?b:-b:(B+w)%2?b:-b:y[p+B+w]}},pRbu:function(t,e,n){var i=n("UnJe"),r=n("s7i0").subPixelOptimizeLine,o={},a=i.extend({type:"line",shape:{x1:0,y1:0,x2:0,y2:0,percent:1},style:{stroke:"#000",fill:null},buildPath:function(t,e){var n,i,a,s;this.subPixelOptimize?(r(o,e,this.style),n=o.x1,i=o.y1,a=o.x2,s=o.y2):(n=e.x1,i=e.y1,a=e.x2,s=e.y2);var A=e.percent;0!==A&&(t.moveTo(n,i),A<1&&(a=n*(1-A)+a*A,s=i*(1-A)+s*A),t.lineTo(a,s))},pointAt:function(t){var e=this.shape;return[e.x1*(1-t)+e.x2*t,e.y1*(1-t)+e.y2*t]}});t.exports=a},pYoM:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=i.each,o=i.filter,a=i.map,s=i.isArray,A=i.indexOf,l=i.isObject,c=i.isString,u=i.createHashMap,h=i.assert,d=i.clone,f=i.merge,p=i.extend,g=i.mixin,m=n("65+t"),v=n("K3bJ"),y=n("Gkcz"),w=n("/47j"),x=n("dGMU"),B=n("PVav").resetSourceDefaulter,b="\0_ec_inner",C=v.extend({init:function(t,e,n,i){n=n||{},this.option=null,this._theme=new v(n),this._optionManager=i},setOption:function(t,e){h(!(b in t),"please use chart.getOption()"),this._optionManager.setOption(t,e),this.resetOption(null)},resetOption:function(t){var e=!1,n=this._optionManager;if(!t||"recreate"===t){var i=n.mountOption("recreate"===t);this.option&&"recreate"!==t?(this.restoreData(),this.mergeOption(i)):function(t){t=t,this.option={},this.option[b]=1,this._componentsMap=u({series:[]}),this._seriesIndices,this._seriesIndicesMap,e=t,n=this._theme.option,i=e.color&&!e.colorLayer,r(n,function(t,n){"colorLayer"===n&&i||y.hasClass(n)||("object"==typeof t?e[n]=e[n]?f(e[n],t,!1):d(t):null==e[n]&&(e[n]=t))}),f(t,w,!1),this.mergeOption(t);var e,n,i}.call(this,i),e=!0}if("timeline"!==t&&"media"!==t||this.restoreData(),!t||"recreate"===t||"timeline"===t){var o=n.getTimelineOption(this);o&&(this.mergeOption(o),e=!0)}if(!t||"recreate"===t||"media"===t){var a=n.getMediaOption(this,this._api);a.length&&r(a,function(t){this.mergeOption(t,e=!0)},this)}return e},mergeOption:function(t){var e=this.option,n=this._componentsMap,i=[];B(this),r(t,function(t,n){null!=t&&(y.hasClass(n)?n&&i.push(n):e[n]=null==e[n]?d(t):f(e[n],t,!0))}),y.topologicalTravel(i,y.getAllClassMainTypes(),function(i,o){var a=m.normalizeToArray(t[i]),A=m.mappingToExists(n.get(i),a);m.makeIdAndName(A),r(A,function(t,e){var n=t.option;l(n)&&(t.keyInfo.mainType=i,t.keyInfo.subType=function(t,e,n){return e.type?e.type:n?n.subType:y.determineSubType(t,e)}(i,n,t.exist))});var c=function(t,e){s(e)||(e=e?[e]:[]);var n={};return r(e,function(e){n[e]=(t.get(e)||[]).slice()}),n}(n,o);e[i]=[],n.set(i,[]),r(A,function(t,r){var o=t.exist,a=t.option;if(h(l(a)||o,"Empty component definition"),a){var s=y.getClass(i,t.keyInfo.subType,!0);if(o&&o.constructor===s)o.name=t.keyInfo.name,o.mergeOption(a,this),o.optionUpdated(a,!1);else{var A=p({dependentModels:c,componentIndex:r},t.keyInfo);o=new s(a,this,this,A),p(o,A),o.init(a,this,this,A),o.optionUpdated(null,!0)}}else o.mergeOption({},this),o.optionUpdated({},!1);n.get(i)[r]=o,e[i][r]=o.option},this),"series"===i&&_(this,n.get("series"))},this),this._seriesIndicesMap=u(this._seriesIndices=this._seriesIndices||[])},getOption:function(){var t=d(this.option);return r(t,function(e,n){if(y.hasClass(n)){for(var i=(e=m.normalizeToArray(e)).length-1;i>=0;i--)m.isIdInner(e[i])&&e.splice(i,1);t[n]=e}}),delete t[b],t},getTheme:function(){return this._theme},getComponent:function(t,e){var n=this._componentsMap.get(t);if(n)return n[e||0]},queryComponents:function(t){var e=t.mainType;if(!e)return[];var n,i=t.index,r=t.id,l=t.name,c=this._componentsMap.get(e);if(!c||!c.length)return[];if(null!=i)s(i)||(i=[i]),n=o(a(i,function(t){return c[t]}),function(t){return!!t});else if(null!=r){var u=s(r);n=o(c,function(t){return u&&A(r,t.id)>=0||!u&&t.id===r})}else if(null!=l){var h=s(l);n=o(c,function(t){return h&&A(l,t.name)>=0||!h&&t.name===l})}else n=c.slice();return S(n,t)},findComponents:function(t){var e,n,i,r,a,s=t.query,A=t.mainType,l=(n=A+"Index",i=A+"Id",r=A+"Name",!(e=s)||null==e[n]&&null==e[i]&&null==e[r]?null:{mainType:A,index:e[n],id:e[i],name:e[r]}),c=l?this.queryComponents(l):this._componentsMap.get(A);return a=S(c,t),t.filter?o(a,t.filter):a},eachComponent:function(t,e,n){var i=this._componentsMap;if("function"==typeof t)n=e,e=t,i.each(function(t,i){r(t,function(t,r){e.call(n,i,t,r)})});else if(c(t))r(i.get(t),e,n);else if(l(t)){var o=this.findComponents(t);r(o,e,n)}},getSeriesByName:function(t){var e=this._componentsMap.get("series");return o(e,function(e){return e.name===t})},getSeriesByIndex:function(t){return this._componentsMap.get("series")[t]},getSeriesByType:function(t){var e=this._componentsMap.get("series");return o(e,function(e){return e.subType===t})},getSeries:function(){return this._componentsMap.get("series").slice()},getSeriesCount:function(){return this._componentsMap.get("series").length},eachSeries:function(t,e){r(this._seriesIndices,function(n){var i=this._componentsMap.get("series")[n];t.call(e,i,n)},this)},eachRawSeries:function(t,e){r(this._componentsMap.get("series"),t,e)},eachSeriesByType:function(t,e,n){r(this._seriesIndices,function(i){var r=this._componentsMap.get("series")[i];r.subType===t&&e.call(n,r,i)},this)},eachRawSeriesByType:function(t,e,n){return r(this.getSeriesByType(t),e,n)},isSeriesFiltered:function(t){return null==this._seriesIndicesMap.get(t.componentIndex)},getCurrentSeriesIndices:function(){return(this._seriesIndices||[]).slice()},filterSeries:function(t,e){_(this,o(this._componentsMap.get("series"),t,e))},restoreData:function(t){var e=this._componentsMap;_(this,e.get("series"));var n=[];e.each(function(t,e){n.push(e)}),y.topologicalTravel(n,y.getAllClassMainTypes(),function(n,i){r(e.get(n),function(e){("series"!==n||!function(t,e){if(e){var n=e.seiresIndex,i=e.seriesId,r=e.seriesName;return null!=n&&t.componentIndex!==n||null!=i&&t.id!==i||null!=r&&t.name!==r}}(e,t))&&e.restoreData()})})}});function _(t,e){t._seriesIndicesMap=u(t._seriesIndices=a(e,function(t){return t.componentIndex})||[])}function S(t,e){return e.hasOwnProperty("subType")?o(t,function(t){return t.subType===e.subType}):t}g(C,x);var I=C;t.exports=I},"pZT+":function(t,e,n){n("+GyD"),n("2agN")},pcS8:function(t,e,n){n("zNm4"),n("YoHB")},pdEx:function(t,e,n){var i=n("A5tq"),r=n("cLid"),o=n("bDs9"),a=n("e8iJ"),s=n("gj94"),A=n("SJVT"),l=A.rectCoordAxisBuildSplitArea,c=A.rectCoordAxisHandleRemove,u=["axisLine","axisTickLabel","axisName"],h=["splitArea","splitLine"],d=s.extend({type:"singleAxis",axisPointerClass:"SingleAxisPointer",render:function(t,e,n,s){var A=this.group;A.removeAll();var l=this._axisGroup;this._axisGroup=new o.Group;var c=a.layout(t),f=new r(t,c);i.each(u,f.add,f),A.add(this._axisGroup),A.add(f.getGroup()),i.each(h,function(e){t.get(e+".show")&&this["_"+e](t)},this),o.groupTransition(l,this._axisGroup,t),d.superCall(this,"render",t,e,n,s)},remove:function(){c(this)},_splitLine:function(t){var e=t.axis;if(!e.scale.isBlank()){var n=t.getModel("splitLine"),i=n.getModel("lineStyle"),r=i.get("width"),a=i.get("color");a=a instanceof Array?a:[a];for(var s=t.coordinateSystem.getRect(),A=e.isHorizontal(),l=[],c=0,u=e.getTicksCoords({tickModel:n}),h=[],d=[],f=0;f<u.length;++f){var p=e.toGlobalCoord(u[f].coord);A?(h[0]=p,h[1]=s.y,d[0]=p,d[1]=s.y+s.height):(h[0]=s.x,h[1]=p,d[0]=s.x+s.width,d[1]=p);var g=c++%a.length;l[g]=l[g]||[],l[g].push(new o.Line({subPixelOptimize:!0,shape:{x1:h[0],y1:h[1],x2:d[0],y2:d[1]},style:{lineWidth:r},silent:!0}))}for(f=0;f<l.length;++f)this.group.add(o.mergePath(l[f],{style:{stroke:a[f%a.length],lineDash:i.getLineDash(r),lineWidth:r},silent:!0}))}},_splitArea:function(t){l(this,this._axisGroup,t,t)}}),f=d;t.exports=f},pmok:function(t,e,n){var i=n("A5tq"),r=n("t+aF"),o=n("9nPt"),a=n("DWNL"),s=a.encodeHTML,A=a.addCommas,l=n("mxvg"),c=n("GhzX").retrieveRawAttr,u=n("llN/"),h=n("PVav").makeSeriesEncodeForNameBased,d=o.extend({type:"series.map",dependencies:["geo"],layoutMode:"box",needsDrawMap:!1,seriesGroup:[],getInitialData:function(t){for(var e=r(this,{coordDimensions:["value"],encodeDefaulter:i.curry(h,this)}),n=e.mapDimension("value"),o=i.createHashMap(),a=[],s=[],A=0,l=e.count();A<l;A++){var d=e.getName(A);o.set(d,!0),a.push({name:d,value:e.get(n,A),selected:c(e,A,"selected")})}var f=u.load(this.getMapType(),this.option.nameMap,this.option.nameProperty);return i.each(f.regions,function(t){var e=t.name;o.get(e)||(a.push({name:e}),s.push(e))}),this.updateSelectedMap(a),e.appendValues([],s),e},getHostGeoModel:function(){var t=this.option.geoIndex;return null!=t?this.dependentModels.geo[t]:null},getMapType:function(){return(this.getHostGeoModel()||this).option.map},getRawValue:function(t){var e=this.getData();return e.get(e.mapDimension("value"),t)},getRegionModel:function(t){var e=this.getData();return e.getItemModel(e.indexOfName(t))},formatTooltip:function(t,e,n,i){for(var r=this.getData(),o=A(this.getRawValue(t)),a=r.getName(t),l=this.seriesGroup,c=[],u=0;u<l.length;u++){var h=l[u].originalData.indexOfName(a),d=r.mapDimension("value");isNaN(l[u].originalData.get(d,h))||c.push(s(l[u].name))}var f="html"===i?"<br/>":"\n";return c.join(", ")+f+s(a+" : "+o)},getTooltipPosition:function(t){if(null!=t){var e=this.getData().getName(t),n=this.coordinateSystem,i=n.getRegion(e);return i&&n.dataToPoint(i.center)}},setZoom:function(t){this.option.zoom=t},setCenter:function(t){this.option.center=t},defaultOption:{zlevel:0,z:2,coordinateSystem:"geo",map:"",left:"center",top:"center",aspectScale:.75,showLegendSymbol:!0,dataRangeHoverLink:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",areaColor:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{areaColor:"rgba(255,215,0,0.8)"}},nameProperty:"name"}});i.mixin(d,l);var f=d;t.exports=f},pxa4:function(t,e,n){n("roIn").__DEV__;var i=n("kCsp"),r=n("9nPt").extend({type:"series.line",dependencies:["grid","polar"],getInitialData:function(t,e){return i(this.getSource(),this,{useEncodeDefaulter:!0})},defaultOption:{zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,hoverAnimation:!0,clip:!0,label:{position:"top"},lineStyle:{width:2,type:"solid"},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:4,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0}});t.exports=r},"q/hq":function(t,e,n){var i=n("UnJe").extend({type:"circle",shape:{cx:0,cy:0,r:0},buildPath:function(t,e,n){n&&t.moveTo(e.cx+e.r,e.cy),t.arc(e.cx,e.cy,e.r,0,2*Math.PI,!0)}});t.exports=i},q9RD:function(t,e,n){var i=n("e6hA").extend({type:"dataZoom.select"});t.exports=i},qHUL:function(t,e,n){var i=n("A5tq"),r=n("dyFL"),o=n("h17e"),a=n("w9uD"),s=n("bDs9"),A=n("FIcu"),l=function(t,e,n,r){var o=A.dataTransform(t,r[0]),a=A.dataTransform(t,r[1]),s=i.retrieve,l=o.coord,c=a.coord;l[0]=s(l[0],-1/0),l[1]=s(l[1],-1/0),c[0]=s(c[0],1/0),c[1]=s(c[1],1/0);var u=i.mergeAll([{},o,a]);return u.coord=[o.coord,a.coord],u.x0=o.x,u.y0=o.y,u.x1=a.x,u.y1=a.y,u};function c(t){return!isNaN(t)&&!isFinite(t)}function u(t,e,n,i){var r=1-t;return c(e[r])&&c(n[r])}function h(t,e){var n=e.coord[0],i=e.coord[1];return!("cartesian2d"!==t.type||!n||!i||!u(1,n,i)&&!u(0,n,i))||(A.dataFilter(t,{coord:n,x:e.x0,y:e.y0})||A.dataFilter(t,{coord:i,x:e.x1,y:e.y1}))}function d(t,e,n,i,r){var o,s=i.coordinateSystem,A=t.getItemModel(e),l=a.parsePercent(A.get(n[0]),r.getWidth()),u=a.parsePercent(A.get(n[1]),r.getHeight());if(isNaN(l)||isNaN(u)){if(i.getMarkerPosition)o=i.getMarkerPosition(t.getValues(n,e));else{var h=[p=t.get(n[0],e),g=t.get(n[1],e)];s.clampData&&s.clampData(h,h),o=s.dataToPoint(h,!0)}if("cartesian2d"===s.type){var d=s.getAxis("x"),f=s.getAxis("y"),p=t.get(n[0],e),g=t.get(n[1],e);c(p)?o[0]=d.toGlobalCoord(d.getExtent()["x0"===n[0]?0:1]):c(g)&&(o[1]=f.toGlobalCoord(f.getExtent()["y0"===n[1]?0:1]))}isNaN(l)||(o[0]=l),isNaN(u)||(o[1]=u)}else o=[l,u];return o}var f=[["x0","y0"],["x1","y0"],["x1","y1"],["x0","y1"]];n("wKp1").extend({type:"markArea",updateTransform:function(t,e,n){e.eachSeries(function(t){var e=t.markAreaModel;if(e){var r=e.getData();r.each(function(e){var o=i.map(f,function(i){return d(r,e,i,t,n)});r.setItemLayout(e,o),r.getItemGraphicEl(e).setShape("points",o)})}},this)},renderSeries:function(t,e,n,a){var A=t.coordinateSystem,u=t.id,p=t.getData(),g=this.markerGroupMap,m=g.get(u)||g.set(u,{group:new s.Group});this.group.add(m.group),m.__keep=!0;var v=function(t,e,n){var r,a;t?(r=i.map(t&&t.dimensions,function(t){var n=e.getData(),r=n.getDimensionInfo(n.mapDimension(t))||{};return i.defaults({name:t},r)}),a=new o(i.map(["x0","y0","x1","y1"],function(t,e){return{name:t,type:r[e%2].type}}),n)):a=new o(r=[{name:"value",type:"float"}],n);var s=i.map(n.get("data"),i.curry(l,e,t,n));t&&(s=i.filter(s,i.curry(h,t)));var A=t?function(t,e,n,i){return t.coord[Math.floor(i/2)][i%2]}:function(t){return t.value};return a.initData(s,null,A),a.hasItemOption=!0,a}(A,t,e);e.setData(v),v.each(function(e){var n=i.map(f,function(n){return d(v,e,n,t,a)}),r=!0;i.each(f,function(t){if(r){var n=v.get(t[0],e),i=v.get(t[1],e);(c(n)||A.getAxis("x").containData(n))&&(c(i)||A.getAxis("y").containData(i))&&(r=!1)}}),v.setItemLayout(e,{points:n,allClipped:r}),v.setItemVisual(e,{color:p.getVisual("color")})}),v.diff(m.__data).add(function(t){var e=v.getItemLayout(t);if(!e.allClipped){var n=new s.Polygon({shape:{points:e.points}});v.setItemGraphicEl(t,n),m.group.add(n)}}).update(function(t,n){var i=m.__data.getItemGraphicEl(n),r=v.getItemLayout(t);r.allClipped?i&&m.group.remove(i):(i?s.updateProps(i,{shape:{points:r.points}},e,t):i=new s.Polygon({shape:{points:r.points}}),v.setItemGraphicEl(t,i),m.group.add(i))}).remove(function(t){var e=m.__data.getItemGraphicEl(t);m.group.remove(e)}).execute(),v.eachItemGraphicEl(function(t,n){var o=v.getItemModel(n),a=o.getModel("label"),A=o.getModel("emphasis.label"),l=v.getItemVisual(n,"color");t.useStyle(i.defaults(o.getModel("itemStyle").getItemStyle(),{fill:r.modifyAlpha(l,.4),stroke:l})),t.hoverStyle=o.getModel("emphasis.itemStyle").getItemStyle(),s.setLabelStyle(t.style,t.hoverStyle,a,A,{labelFetcher:e,labelDataIndex:n,defaultText:v.getName(n)||"",isRectText:!0,autoColor:l}),s.setHoverStyle(t,{}),t.dataModel=e}),m.__data=v,m.group.silent=e.get("silent")||t.get("silent")}})},qJZZ:function(t,e,n){var i=n("A5tq").createHashMap;t.exports=function(t){return{getTargetSeries:function(e){var n={},r=i();return e.eachSeriesByType(t,function(t){t.__paletteScope=n,r.set(t.uid,t)}),r},reset:function(t,e){var n=t.getRawData(),i={},r=t.getData();r.each(function(t){var e=r.getRawIndex(t);i[e]=t}),n.each(function(e){var o,a=i[e],s=null!=a&&r.getItemVisual(a,"color",!0),A=null!=a&&r.getItemVisual(a,"borderColor",!0);if(s&&A||(o=n.getItemModel(e)),!s){var l=o.get("itemStyle.color")||t.getColorFromPalette(n.getName(e)||e+"",t.__paletteScope,n.count());null!=a&&r.setItemVisual(a,"color",l)}if(!A){var c=o.get("itemStyle.borderColor");null!=a&&r.setItemVisual(a,"borderColor",c)}})}}}},qT6D:function(t,e,n){"use strict";var i=n("ywUT"),r=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(i.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=i.trim(t.substr(0,o)).toLowerCase(),n=i.trim(t.substr(o+1)),e){if(a[e]&&r.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},qVE5:function(t,e,n){"use strict";(function(t){e.c=A,e.b=function(t){A(function(){A(t)})},e.a=function(t){s.call(o,t)};var i=n("SfJO"),r=Date.now();var o=i.j?t:window,a=o.requestAnimationFrame||function(t){var e=Date.now(),n=Math.max(0,16-(e-r)),i=setTimeout(t,n);return r=e+n,i},s=o.cancelAnimationFrame||o.clearTimeout;function A(t){return a.call(o,t)}}).call(e,n("9AUj"))},qgTf:function(t,e,n){var i=n("A5tq");function r(t){return this._axes[t]}var o=function(t){this._axes={},this._dimList=[],this.name=t||""};o.prototype={constructor:o,type:"cartesian",getAxis:function(t){return this._axes[t]},getAxes:function(){return i.map(this._dimList,r,this)},getAxesByScale:function(t){return t=t.toLowerCase(),i.filter(this.getAxes(),function(e){return e.scale.type===t})},addAxis:function(t){var e=t.dim;this._axes[e]=t,this._dimList.push(e)},dataToCoord:function(t){return this._dataCoordConvert(t,"dataToCoord")},coordToData:function(t){return this._dataCoordConvert(t,"coordToData")},_dataCoordConvert:function(t,e){for(var n=this._dimList,i=t instanceof Array?[]:{},r=0;r<n.length;r++){var o=n[r],a=this._axes[o];i[o]=a[e](t[o])}return i}};var a=o;t.exports=a},qhEh:function(t,e,n){var i=n("NVem"),r=1e-8;function o(t,e){return Math.abs(t-e)<r}e.contain=function(t,e,n){var r=0,a=t[0];if(!a)return!1;for(var s=1;s<t.length;s++){var A=t[s];r+=i(a[0],a[1],A[0],A[1],e,n),a=A}var l=t[0];return o(a[0],l[0])&&o(a[1],l[1])||(r+=i(a[0],a[1],l[0],l[1],e,n)),0!==r}},qqUS:function(t,e){var n=2311;t.exports=function(){return n++}},quL4:function(t,e,n){var i=n("A5tq");t.exports=function(t){for(var e=0;e<t.length;e++)t[e][1]||(t[e][1]=t[e][0]);return function(e,n,r){for(var o={},a=0;a<t.length;a++){var s=t[a][1];if(!(n&&i.indexOf(n,s)>=0||r&&i.indexOf(r,s)<0)){var A=e.getShallow(s);null!=A&&(o[t[a][0]]=A)}}return o}}},qugn:function(t,e,n){var i=n("r+KN"),r=n("3oqo"),o=n("lbYD"),a=n("qhEh");function s(t,e,n){if(this.name=t,this.geometries=e,n)n=[n[0],n[1]];else{var i=this.getBoundingRect();n=[i.x+i.width/2,i.y+i.height/2]}this.center=n}s.prototype={constructor:s,properties:null,getBoundingRect:function(){var t=this._rect;if(t)return t;for(var e=Number.MAX_VALUE,n=[e,e],a=[-e,-e],s=[],A=[],l=this.geometries,c=0;c<l.length;c++)if("polygon"===l[c].type){var u=l[c].exterior;r.fromPoints(u,s,A),o.min(n,n,s),o.max(a,a,A)}return 0===c&&(n[0]=n[1]=a[0]=a[1]=0),this._rect=new i(n[0],n[1],a[0]-n[0],a[1]-n[1])},contain:function(t){var e=this.getBoundingRect(),n=this.geometries;if(!e.contain(t[0],t[1]))return!1;t:for(var i=0,r=n.length;i<r;i++)if("polygon"===n[i].type){var o=n[i].exterior,s=n[i].interiors;if(a.contain(o,t[0],t[1])){for(var A=0;A<(s?s.length:0);A++)if(a.contain(s[A]))continue t;return!0}}return!1},transformTo:function(t,e,n,r){var a=this.getBoundingRect(),s=a.width/a.height;n?r||(r=n/s):n=s*r;for(var A=new i(t,e,n,r),l=a.calculateTransform(A),c=this.geometries,u=0;u<c.length;u++)if("polygon"===c[u].type){for(var h=c[u].exterior,d=c[u].interiors,f=0;f<h.length;f++)o.applyTransform(h[f],h[f],l);for(var p=0;p<(d?d.length:0);p++)for(f=0;f<d[p].length;f++)o.applyTransform(d[p][f],d[p][f],l)}(a=this._rect).copy(A),this.center=[a.x+a.width/2,a.y+a.height/2]},cloneShallow:function(t){null==t&&(t=this.name);var e=new s(t,this.geometries,this.center);return e._rect=this._rect,e.transformTo=null,e}};var A=s;t.exports=A},quuH:function(t,e,n){var i=n("MCZU");t.exports=function(t,e){return i((e=e||{}).coordDimensions||[],t,{dimsDef:e.dimensionsDefine||t.dimensionsDefine,encodeDef:e.encodeDefine||t.encodeDefine,dimCount:e.dimensionsCount,encodeDefaulter:e.encodeDefaulter,generateCoord:e.generateCoord,generateCoordCount:e.generateCoordCount})}},qzhX:function(t,e,n){var i=n("A5tq"),r=n("65+t");t.exports=function(t,e){var n,o=[],a=t.seriesIndex;if(null==a||!(n=e.getSeriesByIndex(a)))return{point:[]};var s=n.getData(),A=r.queryDataIndex(s,t);if(null==A||A<0||i.isArray(A))return{point:[]};var l=s.getItemGraphicEl(A),c=n.coordinateSystem;if(n.getTooltipPosition)o=n.getTooltipPosition(A)||[];else if(c&&c.dataToPoint)o=c.dataToPoint(s.getValues(i.map(c.dimensions,function(t){return s.mapDimension(t)}),A,!0))||[];else if(l){var u=l.getBoundingRect().clone();u.applyTransform(l.transform),o=[u.x+u.width/2,u.y+u.height/2]}return{point:o,el:l}}},"r+KN":function(t,e,n){var i,r,o,a,s=n("lbYD"),A=n("yW06"),l=s.applyTransform,c=Math.min,u=Math.max;function h(t,e,n,i){n<0&&(t+=n,n=-n),i<0&&(e+=i,i=-i),this.x=t,this.y=e,this.width=n,this.height=i}h.prototype={constructor:h,union:function(t){var e=c(t.x,this.x),n=c(t.y,this.y);this.width=u(t.x+t.width,this.x+this.width)-e,this.height=u(t.y+t.height,this.y+this.height)-n,this.x=e,this.y=n},applyTransform:(i=[],r=[],o=[],a=[],function(t){if(t){i[0]=o[0]=this.x,i[1]=a[1]=this.y,r[0]=a[0]=this.x+this.width,r[1]=o[1]=this.y+this.height,l(i,i,t),l(r,r,t),l(o,o,t),l(a,a,t),this.x=c(i[0],r[0],o[0],a[0]),this.y=c(i[1],r[1],o[1],a[1]);var e=u(i[0],r[0],o[0],a[0]),n=u(i[1],r[1],o[1],a[1]);this.width=e-this.x,this.height=n-this.y}}),calculateTransform:function(t){var e=this,n=t.width/e.width,i=t.height/e.height,r=A.create();return A.translate(r,r,[-e.x,-e.y]),A.scale(r,r,[n,i]),A.translate(r,r,[t.x,t.y]),r},intersect:function(t){if(!t)return!1;t instanceof h||(t=h.create(t));var e=this,n=e.x,i=e.x+e.width,r=e.y,o=e.y+e.height,a=t.x,s=t.x+t.width,A=t.y,l=t.y+t.height;return!(i<a||s<n||o<A||l<r)},contain:function(t,e){return t>=this.x&&t<=this.x+this.width&&e>=this.y&&e<=this.y+this.height},clone:function(){return new h(this.x,this.y,this.width,this.height)},copy:function(t){this.x=t.x,this.y=t.y,this.width=t.width,this.height=t.height},plain:function(){return{x:this.x,y:this.y,width:this.width,height:this.height}}},h.create=function(t){return new h(t.x,t.y,t.width,t.height)};var d=h;t.exports=d},r8bK:function(t,e,n){var i=n("A5tq"),r={getMin:function(t){var e=this.option,n=t||null==e.rangeStart?e.min:e.rangeStart;return this.axis&&null!=n&&"dataMin"!==n&&"function"!=typeof n&&!i.eqNaN(n)&&(n=this.axis.scale.parse(n)),n},getMax:function(t){var e=this.option,n=t||null==e.rangeEnd?e.max:e.rangeEnd;return this.axis&&null!=n&&"dataMax"!==n&&"function"!=typeof n&&!i.eqNaN(n)&&(n=this.axis.scale.parse(n)),n},getNeedCrossZero:function(){var t=this.option;return null==t.rangeStart&&null==t.rangeEnd&&!t.scale},getCoordSysModel:i.noop,setRange:function(t,e){this.option.rangeStart=t,this.option.rangeEnd=e},resetRange:function(){this.option.rangeStart=this.option.rangeEnd=null}};t.exports=r},rBG3:function(t,e,n){var i=n("A5tq"),r=n("w9uD").parsePercent,o=n("fxHw").isDimensionStacked;function a(t){return t.get("stack")||"__ec_stack_"+t.seriesIndex}function s(t,e){return e.dim+t.model.componentIndex}var A=function(t,e,n){var A={},l=function(t,e){var n={};i.each(t,function(t,e){var i=t.getData(),o=t.coordinateSystem,A=o.getBaseAxis(),l=s(o,A),c=A.getExtent(),u="category"===A.type?A.getBandWidth():Math.abs(c[1]-c[0])/i.count(),h=n[l]||{bandWidth:u,remainedWidth:u,autoWidthCount:0,categoryGap:"20%",gap:"30%",stacks:{}},d=h.stacks;n[l]=h;var f=a(t);d[f]||h.autoWidthCount++,d[f]=d[f]||{width:0,maxWidth:0};var p=r(t.get("barWidth"),u),g=r(t.get("barMaxWidth"),u),m=t.get("barGap"),v=t.get("barCategoryGap");p&&!d[f].width&&(p=Math.min(h.remainedWidth,p),d[f].width=p,h.remainedWidth-=p),g&&(d[f].maxWidth=g),null!=m&&(h.gap=m),null!=v&&(h.categoryGap=v)});var o={};return i.each(n,function(t,e){o[e]={};var n=t.stacks,a=t.bandWidth,s=r(t.categoryGap,a),A=r(t.gap,1),l=t.remainedWidth,c=t.autoWidthCount,u=(l-s)/(c+(c-1)*A);u=Math.max(u,0),i.each(n,function(t,e){var n=t.maxWidth;n&&n<u&&(n=Math.min(n,l),t.width&&(n=Math.min(n,t.width)),l-=n,t.width=n,c--)}),u=(l-s)/(c+(c-1)*A),u=Math.max(u,0);var h,d=0;i.each(n,function(t,e){t.width||(t.width=u),h=t,d+=t.width*(1+A)}),h&&(d-=h.width*A);var f=-d/2;i.each(n,function(t,n){o[e][n]=o[e][n]||{offset:f,width:t.width},f+=t.width*(1+A)})}),o}(i.filter(e.getSeriesByType(t),function(t){return!e.isSeriesFiltered(t)&&t.coordinateSystem&&"polar"===t.coordinateSystem.type}));e.eachSeriesByType(t,function(t){if("polar"===t.coordinateSystem.type){var e=t.getData(),n=t.coordinateSystem,i=n.getBaseAxis(),r=s(n,i),c=a(t),u=l[r][c],h=u.offset,d=u.width,f=n.getOtherAxis(i),p=t.coordinateSystem.cx,g=t.coordinateSystem.cy,m=t.get("barMinHeight")||0,v=t.get("barMinAngle")||0;A[c]=A[c]||[];for(var y=e.mapDimension(f.dim),w=e.mapDimension(i.dim),x=o(e,y),B="radius"!==i.dim||!t.get("roundCap",!0),b="radius"===f.dim?f.dataToRadius(0):f.dataToAngle(0),C=0,_=e.count();C<_;C++){var S,I,T,M,Q=e.get(y,C),F=e.get(w,C),k=Q>=0?"p":"n",D=b;if(x&&(A[c][F]||(A[c][F]={p:b,n:b}),D=A[c][F][k]),"radius"===f.dim){var U=f.dataToRadius(Q)-b,E=i.dataToAngle(F);Math.abs(U)<m&&(U=(U<0?-1:1)*m),S=D,I=D+U,M=(T=E-h)-d,x&&(A[c][F][k]=I)}else{var L=f.dataToAngle(Q,B)-b,O=i.dataToRadius(F);Math.abs(L)<v&&(L=(L<0?-1:1)*v),I=(S=O+h)+d,T=D,M=D+L,x&&(A[c][F][k]=M)}e.setItemLayout(C,{cx:p,cy:g,r0:S,r:I,startAngle:-T*Math.PI/180,endAngle:-M*Math.PI/180})}}},this)};t.exports=A},rG8S:function(t,e){function n(){this.on("mousedown",this._dragStart,this),this.on("mousemove",this._drag,this),this.on("mouseup",this._dragEnd,this)}function i(t,e){return{target:t,topTarget:e&&e.topTarget}}n.prototype={constructor:n,_dragStart:function(t){for(var e=t.target;e&&!e.draggable;)e=e.parent;e&&(this._draggingTarget=e,e.dragging=!0,this._x=t.offsetX,this._y=t.offsetY,this.dispatchToElement(i(e,t),"dragstart",t.event))},_drag:function(t){var e=this._draggingTarget;if(e){var n=t.offsetX,r=t.offsetY,o=n-this._x,a=r-this._y;this._x=n,this._y=r,e.drift(o,a,t),this.dispatchToElement(i(e,t),"drag",t.event);var s=this.findHover(n,r,e).target,A=this._dropTarget;this._dropTarget=s,e!==s&&(A&&s!==A&&this.dispatchToElement(i(A,t),"dragleave",t.event),s&&s!==A&&this.dispatchToElement(i(s,t),"dragenter",t.event))}},_dragEnd:function(t){var e=this._draggingTarget;e&&(e.dragging=!1),this.dispatchToElement(i(e,t),"dragend",t.event),this._dropTarget&&this.dispatchToElement(i(this._dropTarget,t),"drop",t.event),this._draggingTarget=null,this._dropTarget=null}};var r=n;t.exports=r},rHid:function(t,e,n){var i=n("Ym+9");function r(t){this._setting=t||{},this._extent=[1/0,-1/0],this._interval=0,this.init&&this.init.apply(this,arguments)}r.prototype.parse=function(t){return t},r.prototype.getSetting=function(t){return this._setting[t]},r.prototype.contain=function(t){var e=this._extent;return t>=e[0]&&t<=e[1]},r.prototype.normalize=function(t){var e=this._extent;return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])},r.prototype.scale=function(t){var e=this._extent;return t*(e[1]-e[0])+e[0]},r.prototype.unionExtent=function(t){var e=this._extent;t[0]<e[0]&&(e[0]=t[0]),t[1]>e[1]&&(e[1]=t[1])},r.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},r.prototype.getExtent=function(){return this._extent.slice()},r.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e)},r.prototype.isBlank=function(){return this._isBlank},r.prototype.setBlank=function(t){this._isBlank=t},r.prototype.getLabel=null,i.enableClassExtend(r),i.enableClassManagement(r,{registerWhenExtend:!0});var o=r;t.exports=o},rMWJ:function(t,e,n){var i=n("UvWp"),r=n("A5tq"),o=n("VU1Y"),a=n("dyFL");function s(t,e){i.call(this,t,e,["linearGradient","radialGradient"],"__gradient_in_use__")}r.inherits(s,i),s.prototype.addWithoutUpdate=function(t,e){if(e&&e.style){var n=this;r.each(["fill","stroke"],function(i){if(e.style[i]&&("linear"===e.style[i].type||"radial"===e.style[i].type)){var r,o=e.style[i],a=n.getDefs(!0);o._dom?(r=o._dom,a.contains(o._dom)||n.addDom(r)):r=n.add(o),n.markUsed(e);var s=r.getAttribute("id");t.setAttribute(i,"url(#"+s+")")}})}},s.prototype.add=function(t){var e;if("linear"===t.type)e=this.createElement("linearGradient");else{if("radial"!==t.type)return o("Illegal gradient type."),null;e=this.createElement("radialGradient")}return t.id=t.id||this.nextId++,e.setAttribute("id","zr"+this._zrId+"-gradient-"+t.id),this.updateDom(t,e),this.addDom(e),e},s.prototype.update=function(t){var e=this;i.prototype.update.call(this,t,function(){var n=t.type,i=t._dom.tagName;"linear"===n&&"linearGradient"===i||"radial"===n&&"radialGradient"===i?e.updateDom(t,t._dom):(e.removeDom(t),e.add(t))})},s.prototype.updateDom=function(t,e){if("linear"===t.type)e.setAttribute("x1",t.x),e.setAttribute("y1",t.y),e.setAttribute("x2",t.x2),e.setAttribute("y2",t.y2);else{if("radial"!==t.type)return void o("Illegal gradient type.");e.setAttribute("cx",t.x),e.setAttribute("cy",t.y),e.setAttribute("r",t.r)}t.global?e.setAttribute("gradientUnits","userSpaceOnUse"):e.setAttribute("gradientUnits","objectBoundingBox"),e.innerHTML="";for(var n=t.colorStops,i=0,r=n.length;i<r;++i){var s=this.createElement("stop");s.setAttribute("offset",100*n[i].offset+"%");var A=n[i].color;if(A.indexOf("rgba")>-1){var l=a.parse(A)[3],c=a.toHex(A);s.setAttribute("stop-color","#"+c),s.setAttribute("stop-opacity",l)}else s.setAttribute("stop-color",n[i].color);e.appendChild(s)}t._dom=e},s.prototype.markUsed=function(t){if(t.style){var e=t.style.fill;e&&e._dom&&i.prototype.markUsed.call(this,e._dom),(e=t.style.stroke)&&e._dom&&i.prototype.markUsed.call(this,e._dom)}};var A=s;t.exports=A},rN3u:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("bDs9"),o=n("65+t"),a=n("alaG"),s=i.each,A=i.indexOf,l=i.curry,c=["dataToPoint","pointToData"],u=["grid","xAxis","yAxis","geo","graph","polar","radiusAxis","angleAxis","bmap"];function h(t,e,n){var i=this._targetInfoList=[],r={},o=p(e,t);s(g,function(t,e){(!n||!n.include||A(n.include,e)>=0)&&t(o,i,r)})}var d=h.prototype;function f(t){return t[0]>t[1]&&t.reverse(),t}function p(t,e){return o.parseFinder(t,e,{includeMainTypes:u})}d.setOutputRanges=function(t,e){this.matchOutputRanges(t,e,function(t,e,n){if((t.coordRanges||(t.coordRanges=[])).push(e),!t.coordRange){t.coordRange=e;var i=y[t.brushType](0,n,e);t.__rangeOffset={offset:x[t.brushType](i.values,t.range,[1,1]),xyMinMax:i.xyMinMax}}})},d.matchOutputRanges=function(t,e,n){s(t,function(t){var r=this.findTargetInfo(t,e);r&&!0!==r&&i.each(r.coordSyses,function(i){var r=y[t.brushType](1,i,t.range);n(t,r.values,i,e)})},this)},d.setInputRanges=function(t,e){s(t,function(t){var n,i,r,o,a,s=this.findTargetInfo(t,e);if(t.range=t.range||[],s&&!0!==s){t.panelId=s.panelId;var A=y[t.brushType](0,s.coordSys,t.coordRange),l=t.__rangeOffset;t.range=l?x[t.brushType](A.values,l.offset,(n=A.xyMinMax,i=l.xyMinMax,r=b(n),o=b(i),a=[r[0]/o[0],r[1]/o[1]],isNaN(a[0])&&(a[0]=1),isNaN(a[1])&&(a[1]=1),a)):A.values}},this)},d.makePanelOpts=function(t,e){return i.map(this._targetInfoList,function(n){var i=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:e&&e(n),clipPath:a.makeRectPanelClipPath(i),isTargetByCursor:a.makeRectIsTargetByCursor(i,t,n.coordSysModel),getLinearBrushOtherExtent:a.makeLinearBrushOtherExtent(i)}})},d.controlSeries=function(t,e,n){var i=this.findTargetInfo(t,n);return!0===i||i&&A(i.coordSyses,e.coordinateSystem)>=0},d.findTargetInfo=function(t,e){for(var n=this._targetInfoList,i=p(e,t),r=0;r<n.length;r++){var o=n[r],a=t.panelId;if(a){if(o.panelId===a)return o}else for(r=0;r<m.length;r++)if(m[r](i,o))return o}return!0};var g={grid:function(t,e){var n=t.xAxisModels,r=t.yAxisModels,o=t.gridModels,a=i.createHashMap(),l={},c={};(n||r||o)&&(s(n,function(t){var e=t.axis.grid.model;a.set(e.id,e),l[e.id]=!0}),s(r,function(t){var e=t.axis.grid.model;a.set(e.id,e),c[e.id]=!0}),s(o,function(t){a.set(t.id,t),l[t.id]=!0,c[t.id]=!0}),a.each(function(t){var i=t.coordinateSystem,o=[];s(i.getCartesians(),function(t,e){(A(n,t.getAxis("x").model)>=0||A(r,t.getAxis("y").model)>=0)&&o.push(t)}),e.push({panelId:"grid--"+t.id,gridModel:t,coordSysModel:t,coordSys:o[0],coordSyses:o,getPanelRect:v.grid,xAxisDeclared:l[t.id],yAxisDeclared:c[t.id]})}))},geo:function(t,e){s(t.geoModels,function(t){var n=t.coordinateSystem;e.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:n,coordSyses:[n],getPanelRect:v.geo})})}},m=[function(t,e){var n=t.xAxisModel,i=t.yAxisModel,r=t.gridModel;return!r&&n&&(r=n.axis.grid.model),!r&&i&&(r=i.axis.grid.model),r&&r===e.gridModel},function(t,e){var n=t.geoModel;return n&&n===e.geoModel}],v={grid:function(){return this.coordSys.grid.getRect().clone()},geo:function(){var t=this.coordSys,e=t.getBoundingRect().clone();return e.applyTransform(r.getTransform(t)),e}},y={lineX:l(w,0),lineY:l(w,1),rect:function(t,e,n){var i=e[c[t]]([n[0][0],n[1][0]]),r=e[c[t]]([n[0][1],n[1][1]]),o=[f([i[0],r[0]]),f([i[1],r[1]])];return{values:o,xyMinMax:o}},polygon:function(t,e,n){var r=[[1/0,-1/0],[1/0,-1/0]];return{values:i.map(n,function(n){var i=e[c[t]](n);return r[0][0]=Math.min(r[0][0],i[0]),r[1][0]=Math.min(r[1][0],i[1]),r[0][1]=Math.max(r[0][1],i[0]),r[1][1]=Math.max(r[1][1],i[1]),i}),xyMinMax:r}}};function w(t,e,n,r){var o=n.getAxis(["x","y"][t]),a=f(i.map([0,1],function(t){return e?o.coordToData(o.toLocalCoord(r[t])):o.toGlobalCoord(o.dataToCoord(r[t]))})),s=[];return s[t]=a,s[1-t]=[NaN,NaN],{values:a,xyMinMax:s}}var x={lineX:l(B,0),lineY:l(B,1),rect:function(t,e,n){return[[t[0][0]-n[0]*e[0][0],t[0][1]-n[0]*e[0][1]],[t[1][0]-n[1]*e[1][0],t[1][1]-n[1]*e[1][1]]]},polygon:function(t,e,n){return i.map(t,function(t,i){return[t[0]-n[0]*e[i][0],t[1]-n[1]*e[i][1]]})}};function B(t,e,n,i){return[e[0]-i[t]*n[0],e[1]-i[t]*n[1]]}function b(t){return t?[t[0][1]-t[0][0],t[1][1]-t[1][0]]:[NaN,NaN]}var C=h;t.exports=C},rOmA:function(t,e,n){var i=n("loyO");n("FYbR"),n("cJ/l");var r=n("LTdf"),o=n("V+If"),a=n("AkIA");i.registerPreprocessor(r),i.registerVisual(o),i.registerLayout(a)},rUcm:function(t,e,n){var i=n("loyO"),r=n("A5tq");n("MPQ8"),n("j86A"),n("nZ6q");var o=n("qJZZ"),a=n("5xHH"),s=n("sq8S");i.registerVisual(r.curry(o,"sunburst")),i.registerLayout(r.curry(a,"sunburst")),i.registerProcessor(r.curry(s,"sunburst"))},rVDn:function(t,e,n){var i=n("sutA"),r=n("Wksv").buildTransformer,o="___zrEVENTSAVED",a=[];function s(t,e,n,a,s){if(e.getBoundingClientRect&&i.domSupported&&!A(e)){var l=e[o]||(e[o]={}),c=function(t,e,n){for(var i=n?"invTrans":"trans",o=e[i],a=e.srcCoords,s=!0,A=[],l=[],c=0;c<4;c++){var u=t[c].getBoundingClientRect(),h=2*c,d=u.left,f=u.top;A.push(d,f),s=s&&a&&d===a[h]&&f===a[h+1],l.push(t[c].offsetLeft,t[c].offsetTop)}return s&&o?o:(e.srcCoords=A,e[i]=n?r(l,A):r(A,l))}(function(t,e){var n=e.markers;if(n)return n;n=e.markers=[];for(var i=["left","right"],r=["top","bottom"],o=0;o<4;o++){var a=document.createElement("div"),s=a.style,A=o%2,l=(o>>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",i[A]+":0",r[l]+":0",i[1-A]+":auto",r[1-l]+":auto",""].join("!important;"),t.appendChild(a),n.push(a)}return n}(e,l),l,s);if(c)return c(t,n,a),!0}return!1}function A(t){return"CANVAS"===t.nodeName.toUpperCase()}e.transformLocalCoord=function(t,e,n,i,r){return s(a,e,i,r,!0)&&s(t,n,a[0],a[1])},e.transformCoordWithViewport=s,e.isCanvasEl=A},rbP0:function(t,e,n){var i=n("A5tq").each,r="\0_ec_hist_store";function o(t){var e=t[r];return e||(e=t[r]=[{}]),e}e.push=function(t,e){var n=o(t);i(e,function(e,i){for(var r=n.length-1;r>=0&&!n[r][i];r--);if(r<0){var o=t.queryComponents({mainType:"dataZoom",subType:"select",id:i})[0];if(o){var a=o.getPercentRange();n[0][i]={dataZoomId:i,start:a[0],end:a[1]}}}}),n.push(e)},e.pop=function(t){var e=o(t),n=e[e.length-1];e.length>1&&e.pop();var r={};return i(n,function(t,n){for(var i=e.length-1;i>=0;i--)if(t=e[i][n]){r[n]=t;break}}),r},e.clear=function(t){t[r]=null},e.count=function(t){return o(t).length}},rhmo:function(t,e,n){var i=n("A5tq"),r=n("r+KN"),o=n("w9uD").parsePercent,a=n("DWNL"),s=i.each,A=["left","right","top","bottom","width","height"],l=[["width","left","right"],["height","top","bottom"]];function c(t,e,n,i,r){var o=0,a=0;null==i&&(i=1/0),null==r&&(r=1/0);var s=0;e.eachChild(function(A,l){var c,u,h=A.position,d=A.getBoundingRect(),f=e.childAt(l+1),p=f&&f.getBoundingRect();if("horizontal"===t){var g=d.width+(p?-p.x+d.x:0);(c=o+g)>i||A.newline?(o=0,c=g,a+=s+n,s=d.height):s=Math.max(s,d.height)}else{var m=d.height+(p?-p.y+d.y:0);(u=a+m)>r||A.newline?(o+=s+n,a=0,u=m,s=d.width):s=Math.max(s,d.width)}A.newline||(h[0]=o,h[1]=a,"horizontal"===t?o=c+n:a=u+n)})}var u=c,h=i.curry(c,"vertical"),d=i.curry(c,"horizontal");function f(t,e,n){n=a.normalizeCssArray(n||0);var i=e.width,s=e.height,A=o(t.left,i),l=o(t.top,s),c=o(t.right,i),u=o(t.bottom,s),h=o(t.width,i),d=o(t.height,s),f=n[2]+n[0],p=n[1]+n[3],g=t.aspect;switch(isNaN(h)&&(h=i-c-p-A),isNaN(d)&&(d=s-u-f-l),null!=g&&(isNaN(h)&&isNaN(d)&&(g>i/s?h=.8*i:d=.8*s),isNaN(h)&&(h=g*d),isNaN(d)&&(d=h/g)),isNaN(A)&&(A=i-c-h-p),isNaN(l)&&(l=s-u-d-f),t.left||t.right){case"center":A=i/2-h/2-n[3];break;case"right":A=i-h-p}switch(t.top||t.bottom){case"middle":case"center":l=s/2-d/2-n[0];break;case"bottom":l=s-d-f}A=A||0,l=l||0,isNaN(h)&&(h=i-p-A-(c||0)),isNaN(d)&&(d=s-f-l-(u||0));var m=new r(A+n[3],l+n[0],h,d);return m.margin=n,m}function p(t,e){return e&&t&&s(A,function(n){e.hasOwnProperty(n)&&(t[n]=e[n])}),t}e.LOCATION_PARAMS=A,e.HV_NAMES=l,e.box=u,e.vbox=h,e.hbox=d,e.getAvailableSize=function(t,e,n){var i=e.width,r=e.height,s=o(t.x,i),A=o(t.y,r),l=o(t.x2,i),c=o(t.y2,r);return(isNaN(s)||isNaN(parseFloat(t.x)))&&(s=0),(isNaN(l)||isNaN(parseFloat(t.x2)))&&(l=i),(isNaN(A)||isNaN(parseFloat(t.y)))&&(A=0),(isNaN(c)||isNaN(parseFloat(t.y2)))&&(c=r),n=a.normalizeCssArray(n||0),{width:Math.max(l-s-n[1]-n[3],0),height:Math.max(c-A-n[0]-n[2],0)}},e.getLayoutRect=f,e.positionElement=function(t,e,n,o,a){var s=!a||!a.hv||a.hv[0],A=!a||!a.hv||a.hv[1],l=a&&a.boundingMode||"all";if(s||A){var c;if("raw"===l)c="group"===t.type?new r(0,0,+e.width||0,+e.height||0):t.getBoundingRect();else if(c=t.getBoundingRect(),t.needLocalTransform()){var u=t.getLocalTransform();(c=c.clone()).applyTransform(u)}e=f(i.defaults({width:c.width,height:c.height},e),n,o);var h=t.position,d=s?e.x-c.x:0,p=A?e.y-c.y:0;t.attr("position","raw"===l?[d,p]:[h[0]+d,h[1]+p])}},e.sizeCalculable=function(t,e){return null!=t[l[e][0]]||null!=t[l[e][1]]&&null!=t[l[e][2]]},e.mergeLayoutParam=function(t,e,n){!i.isObject(n)&&(n={});var r=n.ignoreSize;!i.isArray(r)&&(r=[r,r]);var o=A(l[0],0),a=A(l[1],1);function A(n,i){var o={},a=0,A={},l=0;if(s(n,function(e){A[e]=t[e]}),s(n,function(t){c(e,t)&&(o[t]=A[t]=e[t]),u(o,t)&&a++,u(A,t)&&l++}),r[i])return u(e,n[1])?A[n[2]]=null:u(e,n[2])&&(A[n[1]]=null),A;if(2!==l&&a){if(a>=2)return o;for(var h=0;h<n.length;h++){var d=n[h];if(!c(o,d)&&c(t,d)){o[d]=t[d];break}}return o}return A}function c(t,e){return t.hasOwnProperty(e)}function u(t,e){return null!=t[e]&&"auto"!==t[e]}function h(t,e,n){s(t,function(t){e[t]=n[t]})}h(l[0],t,o),h(l[1],t,a)},e.getLayoutParams=function(t){return p({},t)},e.copyLayoutParams=p},"riI/":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("ixaL"),a=n("5P5h"),s=n("bDs9"),A=n("K3bJ"),l=n("+Pa4"),c=n("o9HO"),u=i.extendComponentView({type:"toolbox",render:function(t,e,n,i){var u=this.group;if(u.removeAll(),t.get("show")){var h=+t.get("itemSize"),d=t.get("feature")||{},f=this._features||(this._features={}),p=[];r.each(d,function(t,e){p.push(e)}),new l(this._featureNames||[],p).add(g).update(g).remove(r.curry(g,null)).execute(),this._featureNames=p,c.layout(u,t,n),u.add(c.makeBackground(u.getBoundingRect(),t)),u.eachChild(function(t){var e=t.__title,i=t.hoverStyle;if(i&&e){var r=o.getBoundingRect(e,o.makeFont(i)),a=t.position[0]+u.position[0],s=!1;t.position[1]+u.position[1]+h+r.height>n.getHeight()&&(i.textPosition="top",s=!0);var A=s?-5-r.height:h+8;a+r.width/2>n.getWidth()?(i.textPosition=["100%",A],i.textAlign="right"):a-r.width/2<0&&(i.textPosition=[0,A],i.textAlign="left")}})}function g(o,l){var c,g=p[o],m=p[l],v=d[g],y=new A(v,t,t.ecModel);if(i&&null!=i.newTitle&&i.featureName===g&&(v.title=i.newTitle),g&&!m){if(function(t){return 0===t.indexOf("my")}(g))c={model:y,onclick:y.option.onclick,featureName:g};else{var w=a.get(g);if(!w)return;c=new w(y,e,n)}f[g]=c}else{if(!(c=f[m]))return;c.model=y,c.ecModel=e,c.api=n}g||!m?y.get("show")&&!c.unusable?(!function(i,o,a){var A=i.getModel("iconStyle"),l=i.getModel("emphasis.iconStyle"),c=o.getIcons?o.getIcons():i.get("icon"),d=i.get("title")||{};if("string"==typeof c){var f=c,p=d;d={},(c={})[a]=f,d[a]=p}var g=i.iconPaths={};r.each(c,function(a,c){var f=s.createIcon(a,{},{x:-h/2,y:-h/2,width:h,height:h});f.setStyle(A.getItemStyle()),f.hoverStyle=l.getItemStyle(),f.setStyle({text:d[c],textAlign:l.get("textAlign"),textBorderRadius:l.get("textBorderRadius"),textPadding:l.get("textPadding"),textFill:null});var p=t.getModel("tooltip");p&&p.get("show")&&f.attr("tooltip",r.extend({content:d[c],formatter:p.get("formatter",!0)||function(){return d[c]},formatterParams:{componentType:"toolbox",name:c,title:d[c],$vars:["name","title"]},position:p.get("position",!0)||"bottom"},p.option)),s.setHoverStyle(f),t.get("showTitle")&&(f.__title=d[c],f.on("mouseover",function(){var e=l.getItemStyle(),n="vertical"===t.get("orient")?null==t.get("right")?"right":"left":null==t.get("bottom")?"bottom":"top";f.setStyle({textFill:l.get("textFill")||e.fill||e.stroke||"#000",textBackgroundColor:l.get("textBackgroundColor"),textPosition:l.get("textPosition")||n})}).on("mouseout",function(){f.setStyle({textFill:null,textBackgroundColor:null})})),f.trigger(i.get("iconStatus."+c)||"normal"),u.add(f),f.on("click",r.bind(o.onclick,o,e,n,c)),g[c]=f})}(y,c,g),y.setIconStatus=function(t,e){var n=this.option,i=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[t]=e,i[t]&&i[t].trigger(e)},c.render&&c.render(y,e,n,i)):c.remove&&c.remove(e,n):c.dispose&&c.dispose(e,n)}},updateView:function(t,e,n,i){r.each(this._features,function(t){t.updateView&&t.updateView(t.model,e,n,i)})},remove:function(t,e){r.each(this._features,function(n){n.remove&&n.remove(t,e)}),this.group.removeAll()},dispose:function(t,e){r.each(this._features,function(n){n.dispose&&n.dispose(t,e)})}});t.exports=u},roIn:function(t,e,n){(function(t){var n;"undefined"!=typeof window?n=window.__DEV__:void 0!==t&&(n=t.__DEV__),void 0===n&&(n=!0);var i=n;e.__DEV__=i}).call(e,n("9AUj"))},rz0F:function(t,e,n){var i=n("qqUS"),r=n("n/EV"),o=n("A9v9"),a=n("ELrk"),s=n("A5tq"),A=function(t){o.call(this,t),r.call(this,t),a.call(this,t),this.id=t.id||i()};A.prototype={type:"element",name:"",__zr:null,ignore:!1,clipPath:null,isGroup:!1,drift:function(t,e){switch(this.draggable){case"horizontal":e=0;break;case"vertical":t=0}var n=this.transform;n||(n=this.transform=[1,0,0,1,0,0]),n[4]+=t,n[5]+=e,this.decomposeTransform(),this.dirty(!1)},beforeUpdate:function(){},afterUpdate:function(){},update:function(){this.updateTransform()},traverse:function(t,e){},attrKV:function(t,e){if("position"===t||"scale"===t||"origin"===t){if(e){var n=this[t];n||(n=this[t]=[]),n[0]=e[0],n[1]=e[1]}}else this[t]=e},hide:function(){this.ignore=!0,this.__zr&&this.__zr.refresh()},show:function(){this.ignore=!1,this.__zr&&this.__zr.refresh()},attr:function(t,e){if("string"==typeof t)this.attrKV(t,e);else if(s.isObject(t))for(var n in t)t.hasOwnProperty(n)&&this.attrKV(n,t[n]);return this.dirty(!1),this},setClipPath:function(t){var e=this.__zr;e&&t.addSelfToZr(e),this.clipPath&&this.clipPath!==t&&this.removeClipPath(),this.clipPath=t,t.__zr=e,t.__clipTarget=this,this.dirty(!1)},removeClipPath:function(){var t=this.clipPath;t&&(t.__zr&&t.removeSelfFromZr(t.__zr),t.__zr=null,t.__clipTarget=null,this.clipPath=null,this.dirty(!1))},addSelfToZr:function(t){this.__zr=t;var e=this.animators;if(e)for(var n=0;n<e.length;n++)t.animation.addAnimator(e[n]);this.clipPath&&this.clipPath.addSelfToZr(t)},removeSelfFromZr:function(t){this.__zr=null;var e=this.animators;if(e)for(var n=0;n<e.length;n++)t.animation.removeAnimator(e[n]);this.clipPath&&this.clipPath.removeSelfFromZr(t)}},s.mixin(A,a),s.mixin(A,o),s.mixin(A,r);var l=A;t.exports=l},s7i0:function(t,e){var n=Math.round;function i(t,e,i){if(!e)return t;var r=n(2*t);return(r+n(e))%2==0?r/2:(r+(i?1:-1))/2}e.subPixelOptimizeLine=function(t,e,r){if(e){var o=e.x1,a=e.x2,s=e.y1,A=e.y2;t.x1=o,t.x2=a,t.y1=s,t.y2=A;var l=r&&r.lineWidth;l&&(n(2*o)===n(2*a)&&(t.x1=t.x2=i(o,l,!0)),n(2*s)===n(2*A)&&(t.y1=t.y2=i(s,l,!0)))}},e.subPixelOptimizeRect=function(t,e,n){if(e){var r=e.x,o=e.y,a=e.width,s=e.height;t.x=r,t.y=o,t.width=a,t.height=s;var A=n&&n.lineWidth;A&&(t.x=i(r,A,!0),t.y=i(o,A,!0),t.width=Math.max(i(r+a,A,!1)-t.x,0===a?0:1),t.height=Math.max(i(o+s,A,!1)-t.y,0===s?0:1))}},e.subPixelOptimize=i},sCIe:function(t,e,n){var i=n("loyO"),r=n("A5tq");n("AQ1o"),n("SsH+");var o=n("J571"),a=n("qJZZ"),s=n("J/p/"),A=n("sq8S");o("pie",[{type:"pieToggleSelect",event:"pieselectchanged",method:"toggleSelected"},{type:"pieSelect",event:"pieselected",method:"select"},{type:"pieUnSelect",event:"pieunselected",method:"unSelect"}]),i.registerVisual(a("pie")),i.registerLayout(r.curry(s,"pie")),i.registerProcessor(A("pie"))},sRj1:function(t,e,n){var i=n("bDs9"),r=n("ehtc"),o=n("aI3E"),a=n("FPqs"),s=i.extendShape({shape:{polyline:!1,curveness:0,segs:[]},buildPath:function(t,e){var n=e.segs,i=e.curveness;if(e.polyline)for(var r=0;r<n.length;){var o=n[r++];if(o>0){t.moveTo(n[r++],n[r++]);for(var a=1;a<o;a++)t.lineTo(n[r++],n[r++])}}else for(r=0;r<n.length;){var s=n[r++],A=n[r++],l=n[r++],c=n[r++];if(t.moveTo(s,A),i>0){var u=(s+l)/2-(A-c)*i,h=(A+c)/2-(l-s)*i;t.quadraticCurveTo(u,h,l,c)}else t.lineTo(l,c)}},findDataIndex:function(t,e){var n=this.shape,i=n.segs,r=n.curveness;if(n.polyline)for(var s=0,A=0;A<i.length;){var l=i[A++];if(l>0)for(var c=i[A++],u=i[A++],h=1;h<l;h++){var d=i[A++],f=i[A++];if(o.containStroke(c,u,d,f))return s}s++}else for(s=0,A=0;A<i.length;){c=i[A++],u=i[A++],d=i[A++],f=i[A++];if(r>0){var p=(c+d)/2-(u-f)*r,g=(u+f)/2-(d-c)*r;if(a.containStroke(c,u,p,g,d,f))return s}else if(o.containStroke(c,u,d,f))return s;s++}return-1}});function A(){this.group=new i.Group}var l=A.prototype;l.isPersistent=function(){return!this._incremental},l.updateData=function(t){this.group.removeAll();var e=new s({rectHover:!0,cursor:"default"});e.setShape({segs:t.getLayout("linesPoints")}),this._setCommon(e,t),this.group.add(e),this._incremental=null},l.incrementalPrepareUpdate=function(t){this.group.removeAll(),this._clearIncremental(),t.count()>5e5?(this._incremental||(this._incremental=new r({silent:!0})),this.group.add(this._incremental)):this._incremental=null},l.incrementalUpdate=function(t,e){var n=new s;n.setShape({segs:e.getLayout("linesPoints")}),this._setCommon(n,e,!!this._incremental),this._incremental?this._incremental.addDisplayable(n,!0):(n.rectHover=!0,n.cursor="default",n.__startIndex=t.start,this.group.add(n))},l.remove=function(){this._clearIncremental(),this._incremental=null,this.group.removeAll()},l._setCommon=function(t,e,n){var i=e.hostModel;t.setShape({polyline:i.get("polyline"),curveness:i.get("lineStyle.curveness")}),t.useStyle(i.getModel("lineStyle").getLineStyle()),t.style.strokeNoScale=!0;var r=e.getVisual("color");r&&t.setStyle("stroke",r),t.setStyle("fill"),n||(t.seriesIndex=i.seriesIndex,t.on("mousemove",function(e){t.dataIndex=null;var n=t.findDataIndex(e.offsetX,e.offsetY);n>0&&(t.dataIndex=n+t.__startIndex)}))},l._clearIncremental=function(){var t=this._incremental;t&&t.clearDisplaybles()};var c=A;t.exports=c},sYDp:function(t,e,n){n("7KEw"),n("Av1J"),n("mWN1")},salm:function(t,e,n){var i=n("Lkz2").devicePixelRatio,r=n("A5tq"),o=n("VU1Y"),a=n("r+KN"),s=n("YjnO"),A=n("Ea7q"),l=n("ia2t"),c=n("a+Y0"),u=n("sutA");function h(t){return parseInt(t,10)}var d=new a(0,0,0,0),f=new a(0,0,0,0);var p=function(t,e,n){this.type="canvas";var o=!t.nodeName||"CANVAS"===t.nodeName.toUpperCase();this._opts=n=r.extend({},n||{}),this.dpr=n.devicePixelRatio||i,this._singleCanvas=o,this.root=t;var a=t.style;a&&(a["-webkit-tap-highlight-color"]="transparent",a["-webkit-user-select"]=a["user-select"]=a["-webkit-touch-callout"]="none",t.innerHTML=""),this.storage=e;var s=this._zlevelList=[],l=this._layers={};if(this._layerConfig={},this._needsManuallyCompositing=!1,o){var c=t.width,u=t.height;null!=n.width&&(c=n.width),null!=n.height&&(u=n.height),this.dpr=n.devicePixelRatio||1,t.width=c*this.dpr,t.height=u*this.dpr,this._width=c,this._height=u;var h=new A(t,this,this.dpr);h.__builtin__=!0,h.initContext(),l[314159]=h,h.zlevel=314159,s.push(314159),this._domRoot=t}else{this._width=this._getSize(0),this._height=this._getSize(1);var d=this._domRoot=function(t,e){var n=document.createElement("div");return n.style.cssText=["position:relative","width:"+t+"px","height:"+e+"px","padding:0","margin:0","border-width:0"].join(";")+";",n}(this._width,this._height);t.appendChild(d)}this._hoverlayer=null,this._hoverElements=[]};p.prototype={constructor:p,getType:function(){return"canvas"},isSingleCanvas:function(){return this._singleCanvas},getViewportRoot:function(){return this._domRoot},getViewportRootOffset:function(){var t=this.getViewportRoot();if(t)return{offsetLeft:t.offsetLeft||0,offsetTop:t.offsetTop||0}},refresh:function(t){var e=this.storage.getDisplayList(!0),n=this._zlevelList;this._redrawId=Math.random(),this._paintList(e,t,this._redrawId);for(var i=0;i<n.length;i++){var r=n[i],o=this._layers[r];if(!o.__builtin__&&o.refresh){var a=0===i?this._backgroundColor:null;o.refresh(a)}}return this.refreshHover(),this},addHover:function(t,e){if(!t.__hoverMir){var n=new t.constructor({style:t.style,shape:t.shape,z:t.z,z2:t.z2,silent:t.silent});return n.__from=t,t.__hoverMir=n,e&&n.setStyle(e),this._hoverElements.push(n),n}},removeHover:function(t){var e=t.__hoverMir,n=this._hoverElements,i=r.indexOf(n,e);i>=0&&n.splice(i,1),t.__hoverMir=null},clearHover:function(t){for(var e=this._hoverElements,n=0;n<e.length;n++){var i=e[n].__from;i&&(i.__hoverMir=null)}e.length=0},refreshHover:function(){var t=this._hoverElements,e=t.length,n=this._hoverlayer;if(n&&n.clear(),e){s(t,this.storage.displayableSortFunc),n||(n=this._hoverlayer=this.getLayer(1e5));var i={};n.ctx.save();for(var r=0;r<e;){var o=t[r],a=o.__from;a&&a.__zr?(r++,a.invisible||(o.transform=a.transform,o.invTransform=a.invTransform,o.__clipPaths=a.__clipPaths,this._doPaintEl(o,n,!0,i))):(t.splice(r,1),a.__hoverMir=null,e--)}n.ctx.restore()}},getHoverLayer:function(){return this.getLayer(1e5)},_paintList:function(t,e,n){if(this._redrawId===n){e=e||!1,this._updateLayerStatus(t);var i=this._doPaintList(t,e);if(this._needsManuallyCompositing&&this._compositeManually(),!i){var r=this;l(function(){r._paintList(t,e,n)})}}},_compositeManually:function(){var t=this.getLayer(314159).ctx,e=this._domRoot.width,n=this._domRoot.height;t.clearRect(0,0,e,n),this.eachBuiltinLayer(function(i){i.virtual&&t.drawImage(i.dom,0,0,e,n)})},_doPaintList:function(t,e){for(var n=[],i=0;i<this._zlevelList.length;i++){var o=this._zlevelList[i];(A=this._layers[o]).__builtin__&&A!==this._hoverlayer&&(A.__dirty||e)&&n.push(A)}for(var a=!0,s=0;s<n.length;s++){var A,l=(A=n[s]).ctx,c={};l.save();var h=e?A.__startIndex:A.__drawIndex,d=!e&&A.incremental&&Date.now,f=d&&Date.now(),p=A.zlevel===this._zlevelList[0]?this._backgroundColor:null;if(A.__startIndex===A.__endIndex)A.clear(!1,p);else if(h===A.__startIndex){var g=t[h];g.incremental&&g.notClear&&!e||A.clear(!1,p)}-1===h&&(console.error("For some unknown reason. drawIndex is -1"),h=A.__startIndex);for(var m=h;m<A.__endIndex;m++){var v=t[m];if(this._doPaintEl(v,A,e,c),v.__dirty=v.__dirtyText=!1,d)if(Date.now()-f>15)break}A.__drawIndex=m,A.__drawIndex<A.__endIndex&&(a=!1),c.prevElClipPaths&&l.restore(),l.restore()}return u.wxa&&r.each(this._layers,function(t){t&&t.ctx&&t.ctx.draw&&t.ctx.draw()}),a},_doPaintEl:function(t,e,n,i){var r=e.ctx,o=t.transform;if((e.__dirty||n)&&!t.invisible&&0!==t.style.opacity&&(!o||o[0]||o[3])&&(!t.culling||!function(t,e,n){return d.copy(t.getBoundingRect()),t.transform&&d.applyTransform(t.transform),f.width=e,f.height=n,!d.intersect(f)}(t,this._width,this._height))){var a=t.__clipPaths,s=i.prevElClipPaths;s&&!function(t,e){if(t===e)return!1;if(!t||!e||t.length!==e.length)return!0;for(var n=0;n<t.length;n++)if(t[n]!==e[n])return!0;return!1}(a,s)||(s&&(r.restore(),i.prevElClipPaths=null,i.prevEl=null),a&&(r.save(),function(t,e){for(var n=0;n<t.length;n++){var i=t[n];i.setTransform(e),e.beginPath(),i.buildPath(e,i.shape),e.clip(),i.restoreTransform(e)}}(a,r),i.prevElClipPaths=a)),t.beforeBrush&&t.beforeBrush(r),t.brush(r,i.prevEl||null),i.prevEl=t,t.afterBrush&&t.afterBrush(r)}},getLayer:function(t,e){this._singleCanvas&&!this._needsManuallyCompositing&&(t=314159);var n=this._layers[t];return n||((n=new A("zr_"+t,this,this.dpr)).zlevel=t,n.__builtin__=!0,this._layerConfig[t]?r.merge(n,this._layerConfig[t],!0):this._layerConfig[t-.01]&&r.merge(n,this._layerConfig[t-.01],!0),e&&(n.virtual=e),this.insertLayer(t,n),n.initContext()),n},insertLayer:function(t,e){var n=this._layers,i=this._zlevelList,r=i.length,a=null,s=-1,A=this._domRoot;if(n[t])o("ZLevel "+t+" has been used already");else if(function(t){return!!t&&(!!t.__builtin__||"function"==typeof t.resize&&"function"==typeof t.refresh)}(e)){if(r>0&&t>i[0]){for(s=0;s<r-1&&!(i[s]<t&&i[s+1]>t);s++);a=n[i[s]]}if(i.splice(s+1,0,t),n[t]=e,!e.virtual)if(a){var l=a.dom;l.nextSibling?A.insertBefore(e.dom,l.nextSibling):A.appendChild(e.dom)}else A.firstChild?A.insertBefore(e.dom,A.firstChild):A.appendChild(e.dom)}else o("Layer of zlevel "+t+" is not valid")},eachLayer:function(t,e){var n,i,r=this._zlevelList;for(i=0;i<r.length;i++)n=r[i],t.call(e,this._layers[n],n)},eachBuiltinLayer:function(t,e){var n,i,r,o=this._zlevelList;for(r=0;r<o.length;r++)i=o[r],(n=this._layers[i]).__builtin__&&t.call(e,n,i)},eachOtherLayer:function(t,e){var n,i,r,o=this._zlevelList;for(r=0;r<o.length;r++)i=o[r],(n=this._layers[i]).__builtin__||t.call(e,n,i)},getLayers:function(){return this._layers},_updateLayerStatus:function(t){function e(t){r&&(r.__endIndex!==t&&(r.__dirty=!0),r.__endIndex=t)}if(this.eachBuiltinLayer(function(t,e){t.__dirty=t.__used=!1}),this._singleCanvas)for(var n=1;n<t.length;n++){if((s=t[n]).zlevel!==t[n-1].zlevel||s.incremental){this._needsManuallyCompositing=!0;break}}var i,r=null,a=0;for(n=0;n<t.length;n++){var s,A,l=(s=t[n]).zlevel;i!==l&&(i=l,a=0),s.incremental?((A=this.getLayer(l+.001,this._needsManuallyCompositing)).incremental=!0,a=1):A=this.getLayer(l+(a>0?.01:0),this._needsManuallyCompositing),A.__builtin__||o("ZLevel "+l+" has been used by unkown layer "+A.id),A!==r&&(A.__used=!0,A.__startIndex!==n&&(A.__dirty=!0),A.__startIndex=n,A.incremental?A.__drawIndex=-1:A.__drawIndex=n,e(n),r=A),s.__dirty&&(A.__dirty=!0,A.incremental&&A.__drawIndex<0&&(A.__drawIndex=n))}e(n),this.eachBuiltinLayer(function(t,e){!t.__used&&t.getElementCount()>0&&(t.__dirty=!0,t.__startIndex=t.__endIndex=t.__drawIndex=0),t.__dirty&&t.__drawIndex<0&&(t.__drawIndex=t.__startIndex)})},clear:function(){return this.eachBuiltinLayer(this._clearLayer),this},_clearLayer:function(t){t.clear()},setBackgroundColor:function(t){this._backgroundColor=t},configLayer:function(t,e){if(e){var n=this._layerConfig;n[t]?r.merge(n[t],e,!0):n[t]=e;for(var i=0;i<this._zlevelList.length;i++){var o=this._zlevelList[i];if(o===t||o===t+.01){var a=this._layers[o];r.merge(a,n[t],!0)}}}},delLayer:function(t){var e=this._layers,n=this._zlevelList,i=e[t];i&&(i.dom.parentNode.removeChild(i.dom),delete e[t],n.splice(r.indexOf(n,t),1))},resize:function(t,e){if(this._domRoot.style){var n=this._domRoot;n.style.display="none";var i=this._opts;if(null!=t&&(i.width=t),null!=e&&(i.height=e),t=this._getSize(0),e=this._getSize(1),n.style.display="",this._width!==t||e!==this._height){for(var o in n.style.width=t+"px",n.style.height=e+"px",this._layers)this._layers.hasOwnProperty(o)&&this._layers[o].resize(t,e);r.each(this._progressiveLayers,function(n){n.resize(t,e)}),this.refresh(!0)}this._width=t,this._height=e}else{if(null==t||null==e)return;this._width=t,this._height=e,this.getLayer(314159).resize(t,e)}return this},clearLayer:function(t){var e=this._layers[t];e&&e.clear()},dispose:function(){this.root.innerHTML="",this.root=this.storage=this._domRoot=this._layers=null},getRenderedCanvas:function(t){if(t=t||{},this._singleCanvas&&!this._compositeManually)return this._layers[314159].dom;var e=new A("image",this,t.pixelRatio||this.dpr);if(e.initContext(),e.clear(!1,t.backgroundColor||this._backgroundColor),t.pixelRatio<=this.dpr){this.refresh();var n=e.dom.width,i=e.dom.height,r=e.ctx;this.eachLayer(function(t){t.__builtin__?r.drawImage(t.dom,0,0,n,i):t.renderToCanvas&&(e.ctx.save(),t.renderToCanvas(e.ctx),e.ctx.restore())})}else for(var o={},a=this.storage.getDisplayList(!0),s=0;s<a.length;s++){var l=a[s];this._doPaintEl(l,e,!0,o)}return e.dom},getWidth:function(){return this._width},getHeight:function(){return this._height},_getSize:function(t){var e=this._opts,n=["width","height"][t],i=["clientWidth","clientHeight"][t],r=["paddingLeft","paddingTop"][t],o=["paddingRight","paddingBottom"][t];if(null!=e[n]&&"auto"!==e[n])return parseFloat(e[n]);var a=this.root,s=document.defaultView.getComputedStyle(a);return(a[i]||h(s[n])||h(a.style[n]))-(h(s[r])||0)-(h(s[o])||0)|0},pathToImage:function(t,e){e=e||this.dpr;var n=document.createElement("canvas"),i=n.getContext("2d"),r=t.getBoundingRect(),o=t.style,a=o.shadowBlur*e,s=o.shadowOffsetX*e,A=o.shadowOffsetY*e,l=o.hasStroke()?o.lineWidth:0,u=Math.max(l/2,-s+a),h=Math.max(l/2,s+a),d=Math.max(l/2,-A+a),f=Math.max(l/2,A+a),p=r.width+u+h,g=r.height+d+f;n.width=p*e,n.height=g*e,i.scale(e,e),i.clearRect(0,0,p,g),i.dpr=e;var m={position:t.position,rotation:t.rotation,scale:t.scale};t.position=[u-r.x,d-r.y],t.rotation=0,t.scale=[1,1],t.updateTransform(),t&&t.brush(i);var v=new c({style:{x:0,y:0,image:n}});return null!=m.position&&(v.position=t.position=m.position),null!=m.rotation&&(v.rotation=t.rotation=m.rotation),null!=m.scale&&(v.scale=t.scale=m.scale),v}};var g=p;t.exports=g},sq8S:function(t,e){t.exports=function(t){return{seriesType:t,reset:function(t,e){var n=e.findComponents({mainType:"legend"});if(n&&n.length){var i=t.getData();i.filterSelf(function(t){for(var e=i.getName(t),r=0;r<n.length;r++)if(!n[r].isSelected(e))return!1;return!0})}}}}},sutA:function(t,e){var n="object"==typeof wx&&"function"==typeof wx.getSystemInfoSync?{browser:{},os:{},node:!1,wxa:!0,canvasSupported:!0,svgSupported:!1,touchEventsSupported:!0,domSupported:!1}:"undefined"==typeof document&&"undefined"!=typeof self?{browser:{},os:{},node:!1,worker:!0,canvasSupported:!0,domSupported:!1}:"undefined"==typeof navigator?{browser:{},os:{},node:!0,worker:!1,canvasSupported:!0,svgSupported:!0,domSupported:!1}:function(t){var e={},n=t.match(/Firefox\/([\d.]+)/),i=t.match(/MSIE\s([\d.]+)/)||t.match(/Trident\/.+?rv:(([\d.]+))/),r=t.match(/Edge\/([\d.]+)/),o=/micromessenger/i.test(t);n&&(e.firefox=!0,e.version=n[1]);i&&(e.ie=!0,e.version=i[1]);r&&(e.edge=!0,e.version=r[1]);o&&(e.weChat=!0);return{browser:e,os:{},node:!1,canvasSupported:!!document.createElement("canvas").getContext,svgSupported:"undefined"!=typeof SVGRect,touchEventsSupported:"ontouchstart"in window&&!e.ie&&!e.edge,pointerEventsSupported:"onpointerdown"in window&&(e.edge||e.ie&&e.version>=11),domSupported:"undefined"!=typeof document}}(navigator.userAgent);t.exports=n},szIz:function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},"t+aF":function(t,e,n){var i=n("quuH"),r=n("h17e"),o=n("A5tq"),a=o.extend,s=o.isArray;t.exports=function(t,e,n){e=s(e)&&{coordDimensions:e}||a({},e);var o=t.getSource(),A=i(o,e),l=new r(A,t);return l.initData(o,n),l}},"t/Q4":function(t,e,n){"use strict";var i=n("ywUT"),r=n("KOU3"),o=n("xkTx"),a=n("gAh+");function s(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return s(t),t.headers=t.headers||{},t.data=r(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||a.adapter)(t).then(function(e){return s(t),e.data=r(e.data,e.headers,t.transformResponse),e},function(e){return o(e)||(s(t),e&&e.response&&(e.response.data=r(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},t57F:function(t,e,n){var i=n("loyO"),r=n("RQTy");n("7bMC"),n("Xczu"),n("XwP3"),n("gnDw"),n("M0MM"),i.registerPreprocessor(r)},tRWJ:function(t,e,n){var i=n("bDs9"),r=n("oOY3");function o(t){this._ctor=t||r,this.group=new i.Group}var a=o.prototype;function s(t){var e=t.hostModel;return{lineStyle:e.getModel("lineStyle").getLineStyle(),hoverLineStyle:e.getModel("emphasis.lineStyle").getLineStyle(),labelModel:e.getModel("label"),hoverLabelModel:e.getModel("emphasis.label")}}function A(t){return isNaN(t[0])||isNaN(t[1])}function l(t){return!A(t[0])&&!A(t[1])}a.isPersistent=function(){return!0},a.updateData=function(t){var e=this,n=e.group,i=e._lineData;e._lineData=t,i||n.removeAll();var r=s(t);t.diff(i).add(function(n){!function(t,e,n,i){if(!l(e.getItemLayout(n)))return;var r=new t._ctor(e,n,i);e.setItemGraphicEl(n,r),t.group.add(r)}(e,t,n,r)}).update(function(n,o){!function(t,e,n,i,r,o){var a=e.getItemGraphicEl(i);if(!l(n.getItemLayout(r)))return void t.group.remove(a);a?a.updateData(n,r,o):a=new t._ctor(n,r,o);n.setItemGraphicEl(r,a),t.group.add(a)}(e,i,t,o,n,r)}).remove(function(t){n.remove(i.getItemGraphicEl(t))}).execute()},a.updateLayout=function(){var t=this._lineData;t&&t.eachItemGraphicEl(function(e,n){e.updateLayout(t,n)},this)},a.incrementalPrepareUpdate=function(t){this._seriesScope=s(t),this._lineData=null,this.group.removeAll()},a.incrementalUpdate=function(t,e){function n(t){t.isGroup||function(t){return t.animators&&t.animators.length>0}(t)||(t.incremental=t.useHoverLayer=!0)}for(var i=t.start;i<t.end;i++){if(l(e.getItemLayout(i))){var r=new this._ctor(e,i,this._seriesScope);r.traverse(n),this.group.add(r),e.setItemGraphicEl(i,r)}}},a.remove=function(){this._clearIncremental(),this._incremental=null,this.group.removeAll()},a._clearIncremental=function(){var t=this._incremental;t&&t.clearDisplaybles()};var c=o;t.exports=c},"twi+":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("Lk3r"),a=n("VXHY");n("MJ75"),n("hR0v"),n("EH8x");i.extendComponentView({type:"parallel",render:function(t,e,n){this._model=t,this._api=n,this._handlers||(this._handlers={},r.each(s,function(t,e){n.getZr().on(e,this._handlers[e]=r.bind(t,this))},this)),o.createOrUpdate(this,"_throttledDispatchExpand",t.get("axisExpandRate"),"fixRate")},dispose:function(t,e){r.each(this._handlers,function(t,n){e.getZr().off(n,t)}),this._handlers=null},_throttledDispatchExpand:function(t){this._dispatchExpand(t)},_dispatchExpand:function(t){t&&this._api.dispatchAction(r.extend({type:"parallelAxisExpand"},t))}});var s={mousedown:function(t){A(this,"click")&&(this._mouseDownPoint=[t.offsetX,t.offsetY])},mouseup:function(t){var e=this._mouseDownPoint;if(A(this,"click")&&e){var n=[t.offsetX,t.offsetY];if(Math.pow(e[0]-n[0],2)+Math.pow(e[1]-n[1],2)>5)return;var i=this._model.coordinateSystem.getSlidedAxisExpandWindow([t.offsetX,t.offsetY]);"none"!==i.behavior&&this._dispatchExpand({axisExpandWindow:i.axisExpandWindow})}this._mouseDownPoint=null},mousemove:function(t){if(!this._mouseDownPoint&&A(this,"mousemove")){var e=this._model,n=e.coordinateSystem.getSlidedAxisExpandWindow([t.offsetX,t.offsetY]),i=n.behavior;"jump"===i&&this._throttledDispatchExpand.debounceNextCall(e.get("axisExpandDebounce")),this._throttledDispatchExpand("none"===i?null:{axisExpandWindow:n.axisExpandWindow,animation:"jump"===i&&null})}}};function A(t,e){var n=t._model;return n.get("axisExpandable")&&n.get("axisExpandTriggerOn")===e}i.registerPreprocessor(a)},u9IZ:function(t,e,n){var i=n("PN6Y").createElement,r=n("3PS3"),o=n("r+KN"),a=n("yW06"),s=n("ixaL"),A=n("lk7o"),l=n("g+7e"),c=r.CMD,u=Array.prototype.join,h="none",d=Math.round,f=Math.sin,p=Math.cos,g=Math.PI,m=2*Math.PI,v=180/g,y=1e-4;function w(t){return d(1e4*t)/1e4}function x(t){return t<y&&t>-y}function B(t,e){e&&b(t,"transform","matrix("+u.call(e,",")+")")}function b(t,e,n){(!n||"linear"!==n.type&&"radial"!==n.type)&&t.setAttribute(e,n)}function C(t,e,n,i){if(function(t,e){var n=e?t.textFill:t.fill;return null!=n&&n!==h}(e,n)){var r=n?e.textFill:e.fill;b(t,"fill",r="transparent"===r?h:r),b(t,"fill-opacity",null!=e.fillOpacity?e.fillOpacity*e.opacity:e.opacity)}else b(t,"fill",h);if(function(t,e){var n=e?t.textStroke:t.stroke;return null!=n&&n!==h}(e,n)){var o=n?e.textStroke:e.stroke;b(t,"stroke",o="transparent"===o?h:o),b(t,"stroke-width",(n?e.textStrokeWidth:e.lineWidth)/(!n&&e.strokeNoScale?i.getLineScale():1)),b(t,"paint-order",n?"stroke":"fill"),b(t,"stroke-opacity",null!=e.strokeOpacity?e.strokeOpacity:e.opacity),e.lineDash?(b(t,"stroke-dasharray",e.lineDash.join(",")),b(t,"stroke-dashoffset",d(e.lineDashOffset||0))):b(t,"stroke-dasharray",""),e.lineCap&&b(t,"stroke-linecap",e.lineCap),e.lineJoin&&b(t,"stroke-linejoin",e.lineJoin),e.miterLimit&&b(t,"stroke-miterlimit",e.miterLimit)}else b(t,"stroke",h)}var _={};_.brush=function(t){var e=t.style,n=t.__svgEl;n||(n=i("path"),t.__svgEl=n),t.path||t.createPathProxy();var r=t.path;if(t.__dirtyPath){r.beginPath(),r.subPixelOptimize=!1,t.buildPath(r,t.shape),t.__dirtyPath=!1;var o=function(t){for(var e=[],n=t.data,i=t.len(),r=0;r<i;){var o="",a=0;switch(n[r++]){case c.M:o="M",a=2;break;case c.L:o="L",a=2;break;case c.Q:o="Q",a=4;break;case c.C:o="C",a=6;break;case c.A:var s=n[r++],A=n[r++],l=n[r++],u=n[r++],h=n[r++],y=n[r++],B=n[r++],b=n[r++],C=Math.abs(y),_=x(C-m)||(b?y>=m:-y>=m),S=y>0?y%m:y%m+m,I=!1;I=!!_||!x(C)&&S>=g==!!b;var T=w(s+l*p(h)),M=w(A+u*f(h));_&&(y=b?m-1e-4:1e-4-m,I=!0,9===r&&e.push("M",T,M));var Q=w(s+l*p(h+y)),F=w(A+u*f(h+y));e.push("A",w(l),w(u),d(B*v),+I,+b,Q,F);break;case c.Z:o="Z";break;case c.R:Q=w(n[r++]),F=w(n[r++]);var k=w(n[r++]),D=w(n[r++]);e.push("M",Q,F,"L",Q+k,F,"L",Q+k,F+D,"L",Q,F+D,"L",Q,F)}o&&e.push(o);for(var U=0;U<a;U++)e.push(w(n[r++]))}return e.join(" ")}(r);o.indexOf("NaN")<0&&b(n,"d",o)}C(n,e,!1,t),B(n,t.transform),null!=e.text?k(t,t.getBoundingRect()):U(t)};var S={brush:function(t){var e=t.style,n=e.image;n instanceof HTMLImageElement&&(n=n.src);if(n){var r=e.x||0,o=e.y||0,a=e.width,s=e.height,A=t.__svgEl;A||(A=i("image"),t.__svgEl=A),n!==t.__imageSrc&&(!function(t,e,n){t.setAttributeNS("http://www.w3.org/1999/xlink",e,n)}(A,"href",n),t.__imageSrc=n),b(A,"width",a),b(A,"height",s),b(A,"x",r),b(A,"y",o),B(A,t.transform),null!=e.text?k(t,t.getBoundingRect()):U(t)}}},I={},T=new o,M={},Q=[],F={left:"start",right:"end",center:"middle",middle:"middle"},k=function(t,e){var n=t.style,r=t.transform,o=t instanceof l||n.transformText;t.__dirty&&A.normalizeTextStyle(n,!0);var c=n.text;if(null!=c&&(c+=""),A.needDrawText(c,n)){null==c&&(c=""),!o&&r&&(T.copy(e),T.applyTransform(r),e=T);var u=t.__textSvgEl;u||(u=i("text"),t.__textSvgEl=u);var h=u.style,d=n.font||s.DEFAULT_FONT,f=u.__computedFont;d!==u.__styleFont&&(h.font=u.__styleFont=d,f=u.__computedFont=h.font);var p=n.textPadding,g=n.textLineHeight,m=t.__textCotentBlock;m&&!t.__dirtyText||(m=t.__textCotentBlock=s.parsePlainText(c,f,p,g,n.truncate));var v=m.outerHeight,y=m.lineHeight;A.getBoxPosition(M,t,n,e);var w=M.baseX,x=M.baseY,b=M.textAlign||"left",_=M.textVerticalAlign;!function(t,e,n,i,r,o,s){a.identity(Q),e&&n&&a.copy(Q,n);var A=i.textRotation;if(r&&A){var l=i.textOrigin;"center"===l?(o=r.width/2+r.x,s=r.height/2+r.y):l&&(o=l[0]+r.x,s=l[1]+r.y),Q[4]-=o,Q[5]-=s,a.rotate(Q,Q,A),Q[4]+=o,Q[5]+=s}B(t,Q)}(u,o,r,n,e,w,x);var S=w,I=s.adjustTextY(x,v,_);p&&(S=function(t,e,n){return"right"===e?t-n[1]:"center"===e?t+n[3]/2-n[1]/2:t+n[3]}(w,b,p),I+=p[0]),I+=y/2,C(u,n,!0,t);var F=m.canCacheByTextString,k=t.__tspanList||(t.__tspanList=[]),U=k.length;if(F&&t.__canCacheByTextString&&t.__text===c){if(t.__dirtyText&&U)for(var E=0;E<U;++E)D(k[E],b,S,I+E*y)}else{t.__text=c,t.__canCacheByTextString=F;var L=m.lines,O=L.length;for(E=0;E<O;E++){var P=k[E],H=L[E];P?P.__zrText!==H&&(P.innerHTML="",P.appendChild(document.createTextNode(H))):(P=k[E]=i("tspan"),u.appendChild(P),P.appendChild(document.createTextNode(H))),D(P,b,S,I+E*y)}if(U>O){for(;E<U;E++)u.removeChild(k[E]);k.length=O}}}};function D(t,e,n,i){b(t,"dominant-baseline","middle"),b(t,"text-anchor",F[e]),b(t,"x",n),b(t,"y",i)}function U(t){t&&t.__textSvgEl&&(t.__textSvgEl.parentNode&&t.__textSvgEl.parentNode.removeChild(t.__textSvgEl),t.__textSvgEl=null,t.__tspanList=[],t.__text=null)}I.drawRectText=k,I.brush=function(t){null!=t.style.text?k(t,!1):U(t)},e.path=_,e.image=S,e.text=I},uGGd:function(t,e,n){var i=n("A5tq"),r=n("eUbH"),o=function(t,e,n,i,o){this.x=null==t?.5:t,this.y=null==e?.5:e,this.r=null==n?.5:n,this.type="radial",this.global=o||!1,r.call(this,i)};o.prototype={constructor:o},i.inherits(o,r);var a=o;t.exports=a},"uJ/S":function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=n("Ym+9").enableClassCheck;function o(t){return"_EC_"+t}var a=function(t){this._directed=t||!1,this.nodes=[],this.edges=[],this._nodesMap={},this._edgesMap={},this.data,this.edgeData},s=a.prototype;function A(t,e){this.id=null==t?"":t,this.inEdges=[],this.outEdges=[],this.edges=[],this.hostGraph,this.dataIndex=null==e?-1:e}function l(t,e,n){this.node1=t,this.node2=e,this.dataIndex=null==n?-1:n}s.type="graph",s.isDirected=function(){return this._directed},s.addNode=function(t,e){t=null==t?""+e:""+t;var n=this._nodesMap;if(!n[o(t)]){var i=new A(t,e);return i.hostGraph=this,this.nodes.push(i),n[o(t)]=i,i}},s.getNodeByIndex=function(t){var e=this.data.getRawIndex(t);return this.nodes[e]},s.getNodeById=function(t){return this._nodesMap[o(t)]},s.addEdge=function(t,e,n){var i=this._nodesMap,r=this._edgesMap;if("number"==typeof t&&(t=this.nodes[t]),"number"==typeof e&&(e=this.nodes[e]),A.isInstance(t)||(t=i[o(t)]),A.isInstance(e)||(e=i[o(e)]),t&&e){var a=t.id+"-"+e.id,s=new l(t,e,n);return s.hostGraph=this,this._directed&&(t.outEdges.push(s),e.inEdges.push(s)),t.edges.push(s),t!==e&&e.edges.push(s),this.edges.push(s),r[a]=s,s}},s.getEdgeByIndex=function(t){var e=this.edgeData.getRawIndex(t);return this.edges[e]},s.getEdge=function(t,e){A.isInstance(t)&&(t=t.id),A.isInstance(e)&&(e=e.id);var n=this._edgesMap;return this._directed?n[t+"-"+e]:n[t+"-"+e]||n[e+"-"+t]},s.eachNode=function(t,e){for(var n=this.nodes,i=n.length,r=0;r<i;r++)n[r].dataIndex>=0&&t.call(e,n[r],r)},s.eachEdge=function(t,e){for(var n=this.edges,i=n.length,r=0;r<i;r++)n[r].dataIndex>=0&&n[r].node1.dataIndex>=0&&n[r].node2.dataIndex>=0&&t.call(e,n[r],r)},s.breadthFirstTraverse=function(t,e,n,i){if(A.isInstance(e)||(e=this._nodesMap[o(e)]),e){for(var r="out"===n?"outEdges":"in"===n?"inEdges":"edges",a=0;a<this.nodes.length;a++)this.nodes[a].__visited=!1;if(!t.call(i,e,null))for(var s=[e];s.length;){var l=s.shift(),c=l[r];for(a=0;a<c.length;a++){var u=c[a],h=u.node1===l?u.node2:u.node1;if(!h.__visited){if(t.call(i,h,l))return;s.push(h),h.__visited=!0}}}}},s.update=function(){for(var t=this.data,e=this.edgeData,n=this.nodes,i=this.edges,r=0,o=n.length;r<o;r++)n[r].dataIndex=-1;for(r=0,o=t.count();r<o;r++)n[t.getRawIndex(r)].dataIndex=r;e.filterSelf(function(t){var n=i[e.getRawIndex(t)];return n.node1.dataIndex>=0&&n.node2.dataIndex>=0});for(r=0,o=i.length;r<o;r++)i[r].dataIndex=-1;for(r=0,o=e.count();r<o;r++)i[e.getRawIndex(r)].dataIndex=r},s.clone=function(){for(var t=new a(this._directed),e=this.nodes,n=this.edges,i=0;i<e.length;i++)t.addNode(e[i].id,e[i].dataIndex);for(i=0;i<n.length;i++){var r=n[i];t.addEdge(r.node1.id,r.node2.id,r.dataIndex)}return t},A.prototype={constructor:A,degree:function(){return this.edges.length},inDegree:function(){return this.inEdges.length},outDegree:function(){return this.outEdges.length},getModel:function(t){if(!(this.dataIndex<0))return this.hostGraph.data.getItemModel(this.dataIndex).getModel(t)}},l.prototype.getModel=function(t){if(!(this.dataIndex<0))return this.hostGraph.edgeData.getItemModel(this.dataIndex).getModel(t)};var c=function(t,e){return{getValue:function(n){var i=this[t][e];return i.get(i.getDimension(n||"value"),this.dataIndex)},setVisual:function(n,i){this.dataIndex>=0&&this[t][e].setItemVisual(this.dataIndex,n,i)},getVisual:function(n,i){return this[t][e].getItemVisual(this.dataIndex,n,i)},setLayout:function(n,i){this.dataIndex>=0&&this[t][e].setItemLayout(this.dataIndex,n,i)},getLayout:function(){return this[t][e].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[t][e].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[t][e].getRawIndex(this.dataIndex)}}};i.mixin(A,c("hostGraph","data")),i.mixin(l,c("hostGraph","edgeData")),a.Node=A,a.Edge=l,r(A),r(l);var u=a;t.exports=u},usjI:function(t,e,n){n("jGNG"),n("riI/"),n("O3CB"),n("mV+F"),n("Mw5P"),n("p7Ib"),n("EO9D")},uuOP:function(t,e,n){"use strict";var i=n("I6n2"),r=n("igk0");t.exports=function(t,e){return t&&!i(e)?r(t,e):e}},uukb:function(t,e,n){var i=n("rhmo"),r=n("A5tq"),o=n("65+t").groupData;function a(t){var e=t.hostGraph.data.getRawDataItem(t.dataIndex);return null!=e.depth&&e.depth>=0}function s(t,e,n,i,o){var a="vertical"===o?"x":"y";r.each(t,function(t){var r,s,A;t.sort(function(t,e){return t.getLayout()[a]-e.getLayout()[a]});for(var l=0,c=t.length,u="vertical"===o?"dx":"dy",h=0;h<c;h++)(A=l-(s=t[h]).getLayout()[a])>0&&(r=s.getLayout()[a]+A,"vertical"===o?s.setLayout({x:r},!0):s.setLayout({y:r},!0)),l=s.getLayout()[a]+s.getLayout()[u]+e;if((A=l-e-("vertical"===o?i:n))>0)for(r=s.getLayout()[a]-A,"vertical"===o?s.setLayout({x:r},!0):s.setLayout({y:r},!0),l=r,h=c-2;h>=0;--h)(A=(s=t[h]).getLayout()[a]+s.getLayout()[u]+e-l)>0&&(r=s.getLayout()[a]-A,"vertical"===o?s.setLayout({x:r},!0):s.setLayout({y:r},!0)),l=s.getLayout()[a]})}function A(t,e,n){r.each(t.slice().reverse(),function(t){r.each(t,function(t){if(t.outEdges.length){var i=p(t.outEdges,l,n)/p(t.outEdges,f,n);if(isNaN(i)){var r=t.outEdges.length;i=r?p(t.outEdges,c,n)/r:0}if("vertical"===n){var o=t.getLayout().x+(i-d(t,n))*e;t.setLayout({x:o},!0)}else{var a=t.getLayout().y+(i-d(t,n))*e;t.setLayout({y:a},!0)}}})})}function l(t,e){return d(t.node2,e)*t.getValue()}function c(t,e){return d(t.node2,e)}function u(t,e){return d(t.node1,e)*t.getValue()}function h(t,e){return d(t.node1,e)}function d(t,e){return"vertical"===e?t.getLayout().x+t.getLayout().dx/2:t.getLayout().y+t.getLayout().dy/2}function f(t){return t.getValue()}function p(t,e,n){for(var i=0,r=t.length,o=-1;++o<r;){var a=+e.call(t,t[o],n);isNaN(a)||(i+=a)}return i}function g(t,e,n){r.each(t,function(t){r.each(t,function(t){if(t.inEdges.length){var i=p(t.inEdges,u,n)/p(t.inEdges,f,n);if(isNaN(i)){var r=t.inEdges.length;i=r?p(t.inEdges,h,n)/r:0}if("vertical"===n){var o=t.getLayout().x+(i-d(t,n))*e;t.setLayout({x:o},!0)}else{var a=t.getLayout().y+(i-d(t,n))*e;t.setLayout({y:a},!0)}}})})}t.exports=function(t,e,n){t.eachSeriesByType("sankey",function(t){var n=t.get("nodeWidth"),l=t.get("nodeGap"),c=function(t,e){return i.getLayoutRect(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e);t.layoutInfo=c;var u=c.width,h=c.height,d=t.getGraph(),m=d.nodes,v=d.edges;!function(t){r.each(t,function(t){var e=p(t.outEdges,f),n=p(t.inEdges,f),i=t.getValue()||0,r=Math.max(e,n,i);t.setLayout({value:r},!0)})}(m),function(t,e,n,i,l,c,u,h,d){(function(t,e,n,i,o,s,A){for(var l=[],c=[],u=[],h=[],d=0,f=0;f<e.length;f++)l[f]=1;for(f=0;f<t.length;f++)c[f]=t[f].inEdges.length,0===c[f]&&u.push(t[f]);for(var p=-1;u.length;){for(var g=0;g<u.length;g++){var m=u[g],v=m.hostGraph.data.getRawDataItem(m.dataIndex),y=null!=v.depth&&v.depth>=0;y&&v.depth>p&&(p=v.depth),m.setLayout({depth:y?v.depth:d},!0),"vertical"===s?m.setLayout({dy:n},!0):m.setLayout({dx:n},!0);for(var w=0;w<m.outEdges.length;w++){var x=m.outEdges[w],B=e.indexOf(x);l[B]=0;var b=x.node2,C=t.indexOf(b);0==--c[C]&&h.indexOf(b)<0&&h.push(b)}}++d,u=h,h=[]}for(f=0;f<l.length;f++)if(1===l[f])throw new Error("Sankey is a DAG, the original data has cycle!");var _=p>d-1?p:d-1;A&&"left"!==A&&function(t,e,n,i){if("right"===e){for(var o=[],s=t,A=0;s.length;){for(var l=0;l<s.length;l++){var c=s[l];c.setLayout({skNodeHeight:A},!0);for(var u=0;u<c.inEdges.length;u++){var h=c.inEdges[u];o.indexOf(h.node1)<0&&o.push(h.node1)}}s=o,o=[],++A}r.each(t,function(t){a(t)||t.setLayout({depth:Math.max(0,i-t.getLayout().skNodeHeight)},!0)})}else"justify"===e&&function(t,e){r.each(t,function(t){a(t)||t.outEdges.length||t.setLayout({depth:e},!0)})}(t,i)}(t,A,0,_),function(t,e,n){r.each(t,function(t){var i=t.getLayout().depth*e;"vertical"===n?t.setLayout({y:i},!0):t.setLayout({x:i},!0)})}(t,"vertical"===s?(o-n)/_:(i-n)/_,s)})(t,e,n,l,c,h,d),function(t,e,n,i,a,l,c){var u=function(t,e){var n=[],i="vertical"===e?"y":"x",a=o(t,function(t){return t.getLayout()[i]});return a.keys.sort(function(t,e){return t-e}),r.each(a.keys,function(t){n.push(a.buckets.get(t))}),n}(t,c);(function(t,e,n,i,o,a){var s=1/0;r.each(t,function(t){var e=t.length,A=0;r.each(t,function(t){A+=t.getLayout().value});var l="vertical"===a?(i-(e-1)*o)/A:(n-(e-1)*o)/A;l<s&&(s=l)}),r.each(t,function(t){r.each(t,function(t,e){var n=t.getLayout().value*s;"vertical"===a?(t.setLayout({x:e},!0),t.setLayout({dx:n},!0)):(t.setLayout({y:e},!0),t.setLayout({dy:n},!0))})}),r.each(e,function(t){var e=+t.getValue()*s;t.setLayout({dy:e},!0)})})(u,e,n,i,a,c),s(u,a,n,i,c);for(var h=1;l>0;l--)A(u,h*=.99,c),s(u,a,n,i,c),g(u,h,c),s(u,a,n,i,c)}(t,e,c,l,i,u,h),function(t,e){var n="vertical"===e?"x":"y";r.each(t,function(t){t.outEdges.sort(function(t,e){return t.node2.getLayout()[n]-e.node2.getLayout()[n]}),t.inEdges.sort(function(t,e){return t.node1.getLayout()[n]-e.node1.getLayout()[n]})}),r.each(t,function(t){var e=0,n=0;r.each(t.outEdges,function(t){t.setLayout({sy:e},!0),e+=t.getLayout().dy}),r.each(t.inEdges,function(t){t.setLayout({ty:n},!0),n+=t.getLayout().dy})})}(t,h)}(m,v,n,l,u,h,0!==r.filter(m,function(t){return 0===t.getLayout().value}).length?0:t.get("layoutIterations"),t.get("orient"),t.get("nodeAlign"))})}},v4Lg:function(t,e,n){var i=n("A5tq"),r=n("dyFL"),o=n("TfMJ"),a=n("rVDn"),s=n("sutA"),A=n("DWNL"),l=i.each,c=A.toCamelCase,u=["","-webkit-","-moz-","-o-"];function h(t){var e,n,o=[],a=t.get("transitionDuration"),h=t.get("backgroundColor"),d=t.getModel("textStyle"),f=t.get("padding");return a&&o.push((n="left "+(e=a)+"s cubic-bezier(0.23, 1, 0.32, 1),top "+e+"s cubic-bezier(0.23, 1, 0.32, 1)",i.map(u,function(t){return t+"transition:"+n}).join(";"))),h&&(s.canvasSupported?o.push("background-Color:"+h):(o.push("background-Color:#"+r.toHex(h)),o.push("filter:alpha(opacity=70)"))),l(["width","color","radius"],function(e){var n="border-"+e,i=c(n),r=t.get(i);null!=r&&o.push(n+":"+r+("color"===e?"":"px"))}),o.push(function(t){var e=[],n=t.get("fontSize"),i=t.getTextColor();i&&e.push("color:"+i),e.push("font:"+t.getFont());var r=t.get("lineHeight");null==r&&(r=Math.round(3*n/2)),n&&e.push("line-height:"+r+"px");var o=t.get("textShadowColor"),a=t.get("textShadowBlur")||0,s=t.get("textShadowOffsetX")||0,A=t.get("textShadowOffsetY")||0;return a&&e.push("text-shadow:"+s+"px "+A+"px "+a+"px "+o),l(["decoration","align"],function(n){var i=t.get(n);i&&e.push("text-"+n+":"+i)}),e.join(";")}(d)),null!=f&&o.push("padding:"+A.normalizeCssArray(f).join("px ")+"px"),o.join(";")+";"}function d(t,e,n,i,r){var o=e&&e.painter;if(n){var s=o&&o.getViewportRoot();s&&a.transformLocalCoord(t,s,document.body,i,r)}else{t[0]=i,t[1]=r;var A=o&&o.getViewportRootOffset();A&&(t[0]+=A.offsetLeft,t[1]+=A.offsetTop)}t[2]=t[0]/e.getWidth(),t[3]=t[1]/e.getHeight()}function f(t,e,n){if(s.wxa)return null;var i=document.createElement("div");i.domBelongToZr=!0,this.el=i;var r=this._zr=e.getZr(),a=this._appendToBody=n&&n.appendToBody;this._styleCoord=[0,0,0,0],d(this._styleCoord,r,a,e.getWidth()/2,e.getHeight()/2),a?document.body.appendChild(i):t.appendChild(i),this._container=t,this._show=!1,this._hideTimeout;var A=this;i.onmouseenter=function(){A._enterable&&(clearTimeout(A._hideTimeout),A._show=!0),A._inContent=!0},i.onmousemove=function(t){if(t=t||window.event,!A._enterable){var e=r.handler,n=r.painter.getViewportRoot();o.normalizeEvent(n,t,!0),e.dispatch("mousemove",t)}},i.onmouseleave=function(){A._enterable&&A._show&&A.hideLater(A._hideDelay),A._inContent=!1}}f.prototype={constructor:f,_enterable:!0,update:function(t){var e=this._container,n=e.currentStyle||document.defaultView.getComputedStyle(e),i=e.style;"absolute"!==i.position&&"absolute"!==n.position&&(i.position="relative"),t.get("alwaysShowContent")&&this._moveTooltipIfResized()},_moveTooltipIfResized:function(){var t=this._styleCoord[2],e=this._styleCoord[3],n=t*this._zr.getWidth(),i=e*this._zr.getHeight();this.moveTo(n,i)},show:function(t){clearTimeout(this._hideTimeout);var e=this.el,n=this._styleCoord;e.style.cssText="position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;"+h(t)+";left:"+n[0]+"px;top:"+n[1]+"px;"+(t.get("extraCssText")||""),e.style.display=e.innerHTML?"block":"none",e.style.pointerEvents=this._enterable?"auto":"none",this._show=!0},setContent:function(t){this.el.innerHTML=null==t?"":t},setEnterable:function(t){this._enterable=t},getSize:function(){var t=this.el;return[t.clientWidth,t.clientHeight]},moveTo:function(t,e){var n=this._styleCoord;d(n,this._zr,this._appendToBody,t,e);var i=this.el.style;i.left=n[0]+"px",i.top=n[1]+"px"},hide:function(){this.el.style.display="none",this._show=!1},hideLater:function(t){!this._show||this._inContent&&this._enterable||(t?(this._hideDelay=t,this._show=!1,this._hideTimeout=setTimeout(i.bind(this.hide,this),t)):this.hide())},isShow:function(){return this._show},dispose:function(){this.el.parentNode.removeChild(this.el)},getOuterSize:function(){var t=this.el.clientWidth,e=this.el.clientHeight;if(document.defaultView&&document.defaultView.getComputedStyle){var n=document.defaultView.getComputedStyle(this.el);n&&(t+=parseInt(n.borderLeftWidth,10)+parseInt(n.borderRightWidth,10),e+=parseInt(n.borderTopWidth,10)+parseInt(n.borderBottomWidth,10))}return{width:t,height:e}}};var p=f;t.exports=p},v9Fq:function(t,e,n){var i=n("A5tq"),r=n("sutA"),o=(0,n("65+t").makeInner)(),a=i.each;function s(t,e,n){t.handler("leave",null,n)}function A(t,e,n,i){e.handler(t,n,i)}e.register=function(t,e,n){if(!r.node){var l=e.getZr();o(l).records||(o(l).records={}),function(t,e){function n(n,i){t.on(n,function(n){var r=function(t){var e={showTip:[],hideTip:[]},n=function(i){var r=e[i.type];r?r.push(i):(i.dispatchAction=n,t.dispatchAction(i))};return{dispatchAction:n,pendings:e}}(e);a(o(t).records,function(t){t&&i(t,n,r.dispatchAction)}),function(t,e){var n,i=t.showTip.length,r=t.hideTip.length;i?n=t.showTip[i-1]:r&&(n=t.hideTip[r-1]),n&&(n.dispatchAction=null,e.dispatchAction(n))}(r.pendings,e)})}o(t).initialized||(o(t).initialized=!0,n("click",i.curry(A,"click")),n("mousemove",i.curry(A,"mousemove")),n("globalout",s))}(l,e),(o(l).records[t]||(o(l).records[t]={})).handler=n}},e.unregister=function(t,e){if(!r.node){var n=e.getZr();(o(n).records||{})[t]&&(o(n).records[t]=null)}}},vRMc:function(t,e,n){"use strict";function i(){return(i=Object.assign?Object.assign.bind():function(t){for(var e,n=1;n<arguments.length;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t}).apply(this,arguments)}var r=["attrs","props","domProps"],o=["class","style","directives"],a=["on","nativeOn"],s=function(t,e){return function(){t&&t.apply(this,arguments),e&&e.apply(this,arguments)}};t.exports=function(t){return t.reduce(function(t,e){for(var n in e)if(t[n])if(-1!==r.indexOf(n))t[n]=i({},t[n],e[n]);else if(-1!==o.indexOf(n)){var A=t[n]instanceof Array?t[n]:[t[n]],l=e[n]instanceof Array?e[n]:[e[n]];t[n]=[].concat(A,l)}else if(-1!==a.indexOf(n))for(var c in e[n])if(t[n][c]){var u=t[n][c]instanceof Array?t[n][c]:[t[n][c]],h=e[n][c]instanceof Array?e[n][c]:[e[n][c]];t[n][c]=[].concat(u,h)}else t[n][c]=e[n][c];else if("hook"===n)for(var d in e[n])t[n][d]=t[n][d]?s(t[n][d],e[n][d]):e[n][d];else t[n]=e[n];else t[n]=e[n];return t},{})}},viOj:function(t,e,n){var i=n("A5tq"),r=n("3mmk"),o=n("h17e"),a=n("quuH"),s=function(t,e){this.name=t||"",this.depth=0,this.height=0,this.parentNode=null,this.dataIndex=-1,this.children=[],this.viewChildren=[],this.hostTree=e};function A(t){this.root,this.data,this._nodes=[],this.hostModel=t}s.prototype={constructor:s,isRemoved:function(){return this.dataIndex<0},eachNode:function(t,e,n){"function"==typeof t&&(n=e,e=t,t=null),t=t||{},i.isString(t)&&(t={order:t});var r,o=t.order||"preorder",a=this[t.attr||"children"];"preorder"===o&&(r=e.call(n,this));for(var s=0;!r&&s<a.length;s++)a[s].eachNode(t,e,n);"postorder"===o&&e.call(n,this)},updateDepthAndHeight:function(t){var e=0;this.depth=t;for(var n=0;n<this.children.length;n++){var i=this.children[n];i.updateDepthAndHeight(t+1),i.height>e&&(e=i.height)}this.height=e+1},getNodeById:function(t){if(this.getId()===t)return this;for(var e=0,n=this.children,i=n.length;e<i;e++){var r=n[e].getNodeById(t);if(r)return r}},contains:function(t){if(t===this)return!0;for(var e=0,n=this.children,i=n.length;e<i;e++){var r=n[e].contains(t);if(r)return r}},getAncestors:function(t){for(var e=[],n=t?this:this.parentNode;n;)e.push(n),n=n.parentNode;return e.reverse(),e},getValue:function(t){var e=this.hostTree.data;return e.get(e.getDimension(t||"value"),this.dataIndex)},setLayout:function(t,e){this.dataIndex>=0&&this.hostTree.data.setItemLayout(this.dataIndex,t,e)},getLayout:function(){return this.hostTree.data.getItemLayout(this.dataIndex)},getModel:function(t){if(!(this.dataIndex<0))return this.hostTree.data.getItemModel(this.dataIndex).getModel(t)},setVisual:function(t,e){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,t,e)},getVisual:function(t,e){return this.hostTree.data.getItemVisual(this.dataIndex,t,e)},getRawIndex:function(){return this.hostTree.data.getRawIndex(this.dataIndex)},getId:function(){return this.hostTree.data.getId(this.dataIndex)},isAncestorOf:function(t){for(var e=t.parentNode;e;){if(e===this)return!0;e=e.parentNode}return!1},isDescendantOf:function(t){return t!==this&&t.isAncestorOf(this)}},A.prototype={constructor:A,type:"tree",eachNode:function(t,e,n){this.root.eachNode(t,e,n)},getNodeByDataIndex:function(t){var e=this.data.getRawIndex(t);return this._nodes[e]},getNodeByName:function(t){return this.root.getNodeByName(t)},update:function(){for(var t=this.data,e=this._nodes,n=0,i=e.length;n<i;n++)e[n].dataIndex=-1;for(n=0,i=t.count();n<i;n++)e[t.getRawIndex(n)].dataIndex=n},clearLayouts:function(){this.data.clearItemLayouts()}},A.createTree=function(t,e,n){var l=new A(e),c=[],u=1;!function t(e,n){var r=e.value;u=Math.max(u,i.isArray(r)?r.length:1);c.push(e);var o=new s(e.name,l);n?function(t,e){var n=e.children;if(t.parentNode===e)return;n.push(t),t.parentNode=e}(o,n):l.root=o;l._nodes.push(o);var a=e.children;if(a)for(var A=0;A<a.length;A++)t(a[A],o)}(t),l.root.updateDepthAndHeight(0);var h=a(c,{coordDimensions:["value"],dimensionsCount:u}),d=new o(h,e);return d.initData(c),n&&n(d),r({mainData:d,struct:l,structAttr:"tree"}),l.update(),l};var l=A;t.exports=l},vkoF:function(t,e,n){var i=n("loyO");n("1Zri"),n("R+JX"),n("Qd2j");var r=n("gSjZ"),o=n("V/Hk"),a=n("sq8S");i.registerLayout(r),i.registerVisual(o),i.registerProcessor(a("themeRiver"))},vnMr:function(t,e,n){var i=new(n("mmXW"))(50);function r(){var t=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;e<t.pending.length;e++){var n=t.pending[e],i=n.cb;i&&i(this,n.cbPayload),n.hostEl.dirty()}t.pending.length=0}function o(t){return t&&t.width&&t.height}e.findExistImage=function(t){if("string"==typeof t){var e=i.get(t);return e&&e.image}return t},e.createOrUpdateImage=function(t,e,n,a,s){if(t){if("string"==typeof t){if(e&&e.__zrImageSrc===t||!n)return e;var A=i.get(t),l={hostEl:n,cb:a,cbPayload:s};return A?!o(e=A.image)&&A.pending.push(l):((e=new Image).onload=e.onerror=r,i.put(t,e.__cachedImgObj={image:e,pending:[l]}),e.src=e.__zrImageSrc=t),e}return t}return e},e.isImageReady=o},vpgz:function(t,e,n){var i=n("loyO"),r=n("h17e"),o=n("A5tq"),a=n("65+t").defaultEmphasis,s=n("K3bJ"),A=n("DWNL").encodeHTML,l=n("Q49S"),c=n("dBJA"),u=n("pLcR"),h=u.initCurvenessList,d=u.createEdgeMapForCurveness,f=i.extendSeriesModel({type:"series.graph",init:function(t){f.superApply(this,"init",arguments);var e=this;function n(){return e._categoriesData}this.legendVisualProvider=new c(n,n),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},mergeOption:function(t){f.superApply(this,"mergeOption",arguments),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},mergeDefaultAndTheme:function(t){f.superApply(this,"mergeDefaultAndTheme",arguments),a(t,["edgeLabel"],["show"])},getInitialData:function(t,e){var n=t.edges||t.links||[],i=t.data||t.nodes||[],r=this;if(i&&n){h(this);var a=l(i,n,this,!0,function(t,n){t.wrapMethod("getItemModel",function(t){var e=r._categoriesModels,n=t.getShallow("category"),i=e[n];return i&&(i.parentModel=t.parentModel,t.parentModel=i),t});var i=r.getModel("edgeLabel"),o=new s({label:i.option},i.parentModel,e),a=r.getModel("emphasis.edgeLabel"),A=new s({emphasis:{label:a.option}},a.parentModel,e);function l(t){return(t=this.parsePath(t))&&"label"===t[0]?o:t&&"emphasis"===t[0]&&"label"===t[1]?A:this.parentModel}n.wrapMethod("getItemModel",function(t){return t.customizeGetParent(l),t})});return o.each(a.edges,function(t){d(t.node1,t.node2,this,t.dataIndex)},this),a.data}},getGraph:function(){return this.getData().graph},getEdgeData:function(){return this.getGraph().edgeData},getCategoriesData:function(){return this._categoriesData},formatTooltip:function(t,e,n){if("edge"===n){var i=this.getData(),r=this.getDataParams(t,n),o=i.graph.getEdgeByIndex(t),a=i.getName(o.node1.dataIndex),s=i.getName(o.node2.dataIndex),l=[];return null!=a&&l.push(a),null!=s&&l.push(s),l=A(l.join(" > ")),r.value&&(l+=" : "+A(r.value)),l}return f.superApply(this,"formatTooltip",arguments)},_updateCategoriesData:function(){var t=o.map(this.option.categories||[],function(t){return null!=t.value?t:o.extend({value:0},t)}),e=new r(["value"],this);e.initData(t),this._categoriesData=e,this._categoriesModels=e.mapArray(function(t){return e.getItemModel(t,!0)})},setZoom:function(t){this.option.zoom=t},setCenter:function(t){this.option.center=t},isAnimationEnabled:function(){return f.superCall(this,"isAnimationEnabled")&&!("force"===this.get("layout")&&this.get("force.layoutAnimation"))},defaultOption:{zlevel:0,z:2,coordinateSystem:"view",legendHoverLink:!0,hoverAnimation:!0,layout:null,focusNodeAdjacency:!1,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:"center",top:"center",symbol:"circle",symbolSize:10,edgeSymbol:["none","none"],edgeSymbolSize:10,edgeLabel:{position:"middle",distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:"{b}"},itemStyle:{},lineStyle:{color:"#aaa",width:1,opacity:.5},emphasis:{label:{show:!0}}}}),p=f;t.exports=p},vuYU:function(t,e,n){var i=n("A5tq"),r=n("dyFL"),o=n("w9uD").linearMap,a=i.each,s=i.isObject,A=-1,l=function(t){var e=t.mappingMethod,n=t.type,r=this.option=i.clone(t);this.type=n,this.mappingMethod=e,this._normalizeData=w[e];var o=c[n];this.applyVisual=o.applyVisual,this.getColorMapper=o.getColorMapper,this._doMap=o._doMap[e],"piecewise"===e?(u(r),function(t){var e=t.pieceList;t.hasSpecialVisual=!1,i.each(e,function(e,n){e.originIndex=n,null!=e.visual&&(t.hasSpecialVisual=!0)})}(r)):"category"===e?r.categories?function(t){var e=t.categories,n=t.visual,r=t.categoryMap={};if(a(e,function(t,e){r[t]=e}),!i.isArray(n)){var o=[];i.isObject(n)?a(n,function(t,e){var n=r[e];o[null!=n?n:A]=t}):o[A]=n,n=y(t,o)}for(var s=e.length-1;s>=0;s--)null==n[s]&&(delete r[e[s]],e.pop())}(r):u(r,!0):(i.assert("linear"!==e||r.dataExtent),u(r))};l.prototype={constructor:l,mapValueToVisual:function(t){var e=this._normalizeData(t);return this._doMap(e,t)},getNormalizer:function(){return i.bind(this._normalizeData,this)}};var c=l.visualHandlers={color:{applyVisual:f("color"),getColorMapper:function(){var t=this.option;return i.bind("category"===t.mappingMethod?function(t,e){return!e&&(t=this._normalizeData(t)),p.call(this,t)}:function(e,n,i){var o=!!i;return!n&&(e=this._normalizeData(e)),i=r.fastLerp(e,t.parsedVisual,i),o?i:r.stringify(i,"rgba")},this)},_doMap:{linear:function(t){return r.stringify(r.fastLerp(t,this.option.parsedVisual),"rgba")},category:p,piecewise:function(t,e){var n=v.call(this,e);return null==n&&(n=r.stringify(r.fastLerp(t,this.option.parsedVisual),"rgba")),n},fixed:g}},colorHue:h(function(t,e){return r.modifyHSL(t,e)}),colorSaturation:h(function(t,e){return r.modifyHSL(t,null,e)}),colorLightness:h(function(t,e){return r.modifyHSL(t,null,null,e)}),colorAlpha:h(function(t,e){return r.modifyAlpha(t,e)}),opacity:{applyVisual:f("opacity"),_doMap:m([0,1])},liftZ:{applyVisual:f("liftZ"),_doMap:{linear:g,category:g,piecewise:g,fixed:g}},symbol:{applyVisual:function(t,e,n){var r=this.mapValueToVisual(t);if(i.isString(r))n("symbol",r);else if(s(r))for(var o in r)r.hasOwnProperty(o)&&n(o,r[o])},_doMap:{linear:d,category:p,piecewise:function(t,e){var n=v.call(this,e);return null==n&&(n=d.call(this,t)),n},fixed:g}},symbolSize:{applyVisual:f("symbolSize"),_doMap:m([0,1])}};function u(t,e){var n=t.visual,r=[];i.isObject(n)?a(n,function(t){r.push(t)}):null!=n&&r.push(n);e||1!==r.length||{color:1,symbol:1}.hasOwnProperty(t.type)||(r[1]=r[0]),y(t,r)}function h(t){return{applyVisual:function(e,n,i){e=this.mapValueToVisual(e),i("color",t(n("color"),e))},_doMap:m([0,1])}}function d(t){var e=this.option.visual;return e[Math.round(o(t,[0,1],[0,e.length-1],!0))]||{}}function f(t){return function(e,n,i){i(t,this.mapValueToVisual(e))}}function p(t){var e=this.option.visual;return e[this.option.loop&&t!==A?t%e.length:t]}function g(){return this.option.visual[0]}function m(t){return{linear:function(e){return o(e,t,this.option.visual,!0)},category:p,piecewise:function(e,n){var i=v.call(this,n);return null==i&&(i=o(e,t,this.option.visual,!0)),i},fixed:g}}function v(t){var e=this.option,n=e.pieceList;if(e.hasSpecialVisual){var i=n[l.findPieceIndex(t,n)];if(i&&i.visual)return i.visual[this.type]}}function y(t,e){return t.visual=e,"color"===t.type&&(t.parsedVisual=i.map(e,function(t){return r.parse(t)})),e}var w={linear:function(t){return o(t,this.option.dataExtent,[0,1],!0)},piecewise:function(t){var e=this.option.pieceList,n=l.findPieceIndex(t,e,!0);if(null!=n)return o(n,[0,e.length-1],[0,1],!0)},category:function(t){var e=this.option.categories?this.option.categoryMap[t]:t;return null==e?A:e},fixed:i.noop};function x(t,e,n){return t?e<=n:e<n}l.listVisualTypes=function(){var t=[];return i.each(c,function(e,n){t.push(n)}),t},l.addVisualHandler=function(t,e){c[t]=e},l.isValidType=function(t){return c.hasOwnProperty(t)},l.eachVisual=function(t,e,n){i.isObject(t)?i.each(t,e,n):e.call(n,t)},l.mapVisual=function(t,e,n){var r,o=i.isArray(t)?[]:i.isObject(t)?{}:(r=!0,null);return l.eachVisual(t,function(t,i){var a=e.call(n,t,i);r?o=a:o[i]=a}),o},l.retrieveVisuals=function(t){var e,n={};return t&&a(c,function(i,r){t.hasOwnProperty(r)&&(n[r]=t[r],e=!0)}),e?n:null},l.prepareVisualTypes=function(t){if(s(t)){var e=[];a(t,function(t,n){e.push(n)}),t=e}else{if(!i.isArray(t))return[];t=t.slice()}return t.sort(function(t,e){return"color"===e&&"color"!==t&&0===t.indexOf("color")?1:-1}),t},l.dependsOn=function(t,e){return"color"===e?!(!t||0!==t.indexOf(e)):t===e},l.findPieceIndex=function(t,e,n){for(var i,r=1/0,o=0,a=e.length;o<a;o++){var s=e[o].value;if(null!=s){if(s===t||"string"==typeof s&&s===t+"")return o;n&&u(s,o)}}for(o=0,a=e.length;o<a;o++){var A=e[o],l=A.interval,c=A.close;if(l){if(l[0]===-1/0){if(x(c[1],t,l[1]))return o}else if(l[1]===1/0){if(x(c[0],l[0],t))return o}else if(x(c[0],l[0],t)&&x(c[1],t,l[1]))return o;n&&u(l[0],o),n&&u(l[1],o)}}if(n)return t===1/0?e.length-1:t===-1/0?0:i;function u(e,n){var o=Math.abs(e-t);o<r&&(r=o,i=n)}};var B=l;t.exports=B},vvOW:function(t,e){var n={axisPointer:1,tooltip:1,brush:1};e.onIrrelevantElement=function(t,e,i){var r=e.getComponentByElement(t.topTarget),o=r&&r.coordinateSystem;return r&&r!==i&&!n[r.mainType]&&o&&o.model!==i}},"w/pT":function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=n("rBG3");n("E5p3"),n("6+JZ"),n("6TCU"),n("mWN1"),n("19Ba"),i.registerLayout(r.curry(o,"bar")),i.extendComponentView({type:"polar"})},w2Ju:function(t,e,n){"use strict";e.a=function(t){if(!Object(r.e)(t))return;return t=String(t),Object(o.b)(t)?t+"px":t},e.b=function(t){if("number"==typeof t)return t;if(r.d){if(-1!==t.indexOf("rem"))return function(t){return+(t=t.replace(/rem/g,""))*function(){if(!i){var t=document.documentElement,e=t.style.fontSize||window.getComputedStyle(t).fontSize;i=parseFloat(e)}return i}()}(t);if(-1!==t.indexOf("vw"))return function(t){return+(t=t.replace(/vw/g,""))*window.innerWidth/100}(t);if(-1!==t.indexOf("vh"))return function(t){return+(t=t.replace(/vh/g,""))*window.innerHeight/100}(t)}return parseFloat(t)};var i,r=n("SfJO"),o=n("3EQU")},w9uD:function(t,e,n){var i=n("A5tq"),r=1e-4;var o=/^(?:(\d{4})(?:[-\/](\d{1,2})(?:[-\/](\d{1,2})(?:[T ](\d{1,2})(?::(\d\d)(?::(\d\d)(?:[.,](\d+))?)?)?(Z|[\+\-]\d\d:?\d\d)?)?)?)?)?$/;function a(t){if(0===t)return 0;var e=Math.floor(Math.log(t)/Math.LN10);return t/Math.pow(10,e)>=10&&e++,e}e.linearMap=function(t,e,n,i){var r=e[1]-e[0],o=n[1]-n[0];if(0===r)return 0===o?n[0]:(n[0]+n[1])/2;if(i)if(r>0){if(t<=e[0])return n[0];if(t>=e[1])return n[1]}else{if(t>=e[0])return n[0];if(t<=e[1])return n[1]}else{if(t===e[0])return n[0];if(t===e[1])return n[1]}return(t-e[0])/r*o+n[0]},e.parsePercent=function(t,e){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return"string"==typeof t?(n=t,n.replace(/^\s+|\s+$/g,"")).match(/%$/)?parseFloat(t)/100*e:parseFloat(t):null==t?NaN:+t;var n},e.round=function(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t},e.asc=function(t){return t.sort(function(t,e){return t-e}),t},e.getPrecision=function(t){if(t=+t,isNaN(t))return 0;for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n},e.getPrecisionSafe=function(t){var e=t.toString(),n=e.indexOf("e");if(n>0){var i=+e.slice(n+1);return i<0?-i:0}var r=e.indexOf(".");return r<0?0:e.length-1-r},e.getPixelPrecision=function(t,e){var n=Math.log,i=Math.LN10,r=Math.floor(n(t[1]-t[0])/i),o=Math.round(n(Math.abs(e[1]-e[0]))/i),a=Math.min(Math.max(-r+o,0),20);return isFinite(a)?a:20},e.getPercentWithPrecision=function(t,e,n){if(!t[e])return 0;var r=i.reduce(t,function(t,e){return t+(isNaN(e)?0:e)},0);if(0===r)return 0;for(var o=Math.pow(10,n),a=i.map(t,function(t){return(isNaN(t)?0:t)/r*o*100}),s=100*o,A=i.map(a,function(t){return Math.floor(t)}),l=i.reduce(A,function(t,e){return t+e},0),c=i.map(a,function(t,e){return t-A[e]});l<s;){for(var u=Number.NEGATIVE_INFINITY,h=null,d=0,f=c.length;d<f;++d)c[d]>u&&(u=c[d],h=d);++A[h],c[h]=0,++l}return A[e]/o},e.MAX_SAFE_INTEGER=9007199254740991,e.remRadian=function(t){var e=2*Math.PI;return(t%e+e)%e},e.isRadianAroundZero=function(t){return t>-r&&t<r},e.parseDate=function(t){if(t instanceof Date)return t;if("string"==typeof t){var e=o.exec(t);if(!e)return new Date(NaN);if(e[8]){var n=+e[4]||0;return"Z"!==e[8].toUpperCase()&&(n-=e[8].slice(0,3)),new Date(Date.UTC(+e[1],+(e[2]||1)-1,+e[3]||1,n,+(e[5]||0),+e[6]||0,+e[7]||0))}return new Date(+e[1],+(e[2]||1)-1,+e[3]||1,+e[4]||0,+(e[5]||0),+e[6]||0,+e[7]||0)}return null==t?new Date(NaN):new Date(Math.round(t))},e.quantity=function(t){return Math.pow(10,a(t))},e.quantityExponent=a,e.nice=function(t,e){var n=a(t),i=Math.pow(10,n),r=t/i;return t=(e?r<1.5?1:r<2.5?2:r<4?3:r<7?5:10:r<1?1:r<2?2:r<3?3:r<5?5:10)*i,n>=-20?+t.toFixed(n<0?-n:0):t},e.quantile=function(t,e){var n=(t.length-1)*e+1,i=Math.floor(n),r=+t[i-1],o=n-i;return o?r+o*(t[i]-r):r},e.reformIntervals=function(t){t.sort(function(t,e){return function t(e,n,i){return e.interval[i]<n.interval[i]||e.interval[i]===n.interval[i]&&(e.close[i]-n.close[i]==(i?-1:1)||!i&&t(e,n,1))}(t,e,0)?-1:1});for(var e=-1/0,n=1,i=0;i<t.length;){for(var r=t[i].interval,o=t[i].close,a=0;a<2;a++)r[a]<=e&&(r[a]=e,o[a]=a?1:1-n),e=r[a],n=o[a];r[0]===r[1]&&o[0]*o[1]!=1?t.splice(i,1):i++}return t},e.isNumeric=function(t){return t-parseFloat(t)>=0}},wFBG:function(t,e,n){var i=n("A5tq"),r=n("qugn");function o(t,e,n){for(var i=[],r=e[0],o=e[1],a=0;a<t.length;a+=2){var s=t.charCodeAt(a)-64,A=t.charCodeAt(a+1)-64;s=s>>1^-(1&s),A=A>>1^-(1&A),r=s+=r,o=A+=o,i.push([s/n,A/n])}return i}t.exports=function(t,e){return function(t){if(!t.UTF8Encoding)return t;var e=t.UTF8Scale;null==e&&(e=1024);for(var n=t.features,i=0;i<n.length;i++)for(var r=n[i].geometry,a=r.coordinates,s=r.encodeOffsets,A=0;A<a.length;A++){var l=a[A];if("Polygon"===r.type)a[A]=o(l,s[A],e);else if("MultiPolygon"===r.type)for(var c=0;c<l.length;c++){var u=l[c];l[c]=o(u,s[A][c],e)}}t.UTF8Encoding=!1}(t),i.map(i.filter(t.features,function(t){return t.geometry&&t.properties&&t.geometry.coordinates.length>0}),function(t){var n=t.properties,o=t.geometry,a=o.coordinates,s=[];"Polygon"===o.type&&s.push({type:"polygon",exterior:a[0],interiors:a.slice(1)}),"MultiPolygon"===o.type&&i.each(a,function(t){t[0]&&s.push({type:"polygon",exterior:t[0],interiors:t.slice(1)})});var A=new r(n[e||"name"],s,n.cp);return A.properties=n,A})}},wKp1:function(t,e,n){var i=n("loyO"),r=n("A5tq"),o=i.extendComponentView({type:"marker",init:function(){this.markerGroupMap=r.createHashMap()},render:function(t,e,n){var i=this.markerGroupMap;i.each(function(t){t.__keep=!1});var r=this.type+"Model";e.eachSeries(function(t){var i=t[r];i&&this.renderSeries(t,i,e,n)},this),i.each(function(t){!t.__keep&&this.group.remove(t.group)},this)},renderSeries:function(){}});t.exports=o},"wpU+":function(t,e,n){var i=n("xfK8").extend({type:"timeline"});t.exports=i},wtxj:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("jSer"),a=n("K3bJ"),s=["#ddd"];function A(t,e){return r.merge({brushType:t.brushType,brushMode:t.brushMode,transformable:t.transformable,brushStyle:new a(t.brushStyle).getItemStyle(),removeOnClick:t.removeOnClick,z:t.z},e,!0)}var l=i.extendComponentModel({type:"brush",dependencies:["geo","grid","xAxis","yAxis","parallel","series"],defaultOption:{toolbox:null,brushLink:null,seriesIndex:"all",geoIndex:null,xAxisIndex:null,yAxisIndex:null,brushType:"rect",brushMode:"single",transformable:!0,brushStyle:{borderWidth:1,color:"rgba(120,140,180,0.3)",borderColor:"rgba(120,140,180,0.8)"},throttleType:"fixRate",throttleDelay:0,removeOnClick:!0,z:1e4},areas:[],brushType:null,brushOption:{},coordInfoList:[],optionUpdated:function(t,e){var n=this.option;!e&&o.replaceVisualOption(n,t,["inBrush","outOfBrush"]);var i=n.inBrush=n.inBrush||{};n.outOfBrush=n.outOfBrush||{color:s},i.hasOwnProperty("liftZ")||(i.liftZ=5)},setAreas:function(t){t&&(this.areas=r.map(t,function(t){return A(this.option,t)},this))},setBrushOption:function(t){this.brushOption=A(this.option,t),this.brushType=this.brushOption.brushType}});t.exports=l},wzMa:function(t,e,n){var i="\0_ec_interaction_mutex";function r(t){return t[i]||(t[i]={})}n("loyO").registerAction({type:"takeGlobalCursor",event:"globalCursorTaken",update:"update"},function(){}),e.take=function(t,e,n){r(t)[e]=n},e.release=function(t,e,n){var i=r(t);i[e]===n&&(i[e]=null)},e.isTaken=function(t,e){return!!r(t)[e]}},"x/Rj":function(t,e,n){var i=n("loyO");n("mWN1"),n("yDoJ"),n("F8um"),i.registerAction({type:"showTip",event:"showTip",update:"tooltip:manuallyShowTip"},function(){}),i.registerAction({type:"hideTip",event:"hideTip",update:"tooltip:manuallyHideTip"},function(){})},x0Wq:function(t,e,n){n("abFj"),n("PjV0"),n("drN1")},x0y8:function(t,e,n){var i=n("UnJe").extend({type:"ring",shape:{cx:0,cy:0,r:0,r0:0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=2*Math.PI;t.moveTo(n+e.r,i),t.arc(n,i,e.r,0,r,!1),t.moveTo(n+e.r0,i),t.arc(n,i,e.r0,0,r,!0)}});t.exports=i},x4Ry:function(t,e,n){n("roIn").__DEV__;var i=n("loyO"),r=n("A5tq"),o=n("yfuy"),a=n("rhmo"),s=n("w9uD"),A=n("llN/"),l=n("+1Bp");function c(t,e){var n=t.get("boundingCoords");if(null!=n){var i=n[0],r=n[1];isNaN(i[0])||isNaN(i[1])||isNaN(r[0])||isNaN(r[1])||this.setBoundingRect(i[0],i[1],r[0]-i[0],r[1]-i[1])}var o,A=this.getBoundingRect(),l=t.get("layoutCenter"),c=t.get("layoutSize"),u=e.getWidth(),h=e.getHeight(),d=A.width/A.height*this.aspectScale,f=!1;if(l&&c&&(l=[s.parsePercent(l[0],u),s.parsePercent(l[1],h)],c=s.parsePercent(c,Math.min(u,h)),isNaN(l[0])||isNaN(l[1])||isNaN(c)||(f=!0)),f){var p={};d>1?(p.width=c,p.height=c/d):(p.height=c,p.width=c*d),p.y=l[1]-p.height/2,p.x=l[0]-p.width/2}else(o=t.getBoxLayoutParams()).aspect=d,p=a.getLayoutRect(o,{width:u,height:h});this.setViewRect(p.x,p.y,p.width,p.height),this.setCenter(t.get("center")),this.setZoom(t.get("zoom"))}function u(t,e){r.each(e.get("geoCoord"),function(e,n){t.addGeoCoord(n,e)})}var h={dimensions:o.prototype.dimensions,create:function(t,e){var n=[];t.eachComponent("geo",function(t,i){var r=t.get("map"),a=t.get("aspectScale"),s=!0,A=l.retrieveMap(r);A&&A[0]&&"svg"===A[0].type?(null==a&&(a=1),s=!1):null==a&&(a=.75);var h=new o(r+i,r,t.get("nameMap"),s);h.aspectScale=a,h.zoomLimit=t.get("scaleLimit"),n.push(h),u(h,t),t.coordinateSystem=h,h.model=t,h.resize=c,h.resize(t,e)}),t.eachSeries(function(t){if("geo"===t.get("coordinateSystem")){var e=t.get("geoIndex")||0;t.coordinateSystem=n[e]}});var i={};return t.eachSeriesByType("map",function(t){if(!t.getHostGeoModel()){var e=t.getMapType();i[e]=i[e]||[],i[e].push(t)}}),r.each(i,function(t,i){var a=r.map(t,function(t){return t.get("nameMap")}),s=new o(i,i,r.mergeAll(a));s.zoomLimit=r.retrieve.apply(null,r.map(t,function(t){return t.get("scaleLimit")})),n.push(s),s.resize=c,s.aspectScale=t[0].get("aspectScale"),s.resize(t[0],e),r.each(t,function(t){t.coordinateSystem=s,u(s,t)})}),n},getFilledRegions:function(t,e,n){for(var i=(t||[]).slice(),o=r.createHashMap(),a=0;a<i.length;a++)o.set(i[a].name,i[a]);var s=A.load(e,n);return r.each(s.regions,function(t){var e=t.name;!o.get(e)&&i.push({name:e})}),i}};i.registerCoordinateSystem("geo",h);var d=h;t.exports=d},x5W7:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("ixaL"),a=n("DWNL"),s=n("yW06"),A=n("eII0"),l=n("cLid");function c(t,e,n,i,r){var s=u(n.get("value"),e.axis,e.ecModel,n.get("seriesDataIndices"),{precision:n.get("label.precision"),formatter:n.get("label.formatter")}),A=n.getModel("label"),l=a.normalizeCssArray(A.get("padding")||0),c=A.getFont(),h=o.getBoundingRect(s,c),d=r.position,f=h.width+l[1]+l[3],p=h.height+l[0]+l[2],g=r.align;"right"===g&&(d[0]-=f),"center"===g&&(d[0]-=f/2);var m=r.verticalAlign;"bottom"===m&&(d[1]-=p),"middle"===m&&(d[1]-=p/2),function(t,e,n,i){var r=i.getWidth(),o=i.getHeight();t[0]=Math.min(t[0]+e,r)-e,t[1]=Math.min(t[1]+n,o)-n,t[0]=Math.max(t[0],0),t[1]=Math.max(t[1],0)}(d,f,p,i);var v=A.get("backgroundColor");v&&"auto"!==v||(v=e.get("axisLine.lineStyle.color")),t.label={shape:{x:0,y:0,width:f,height:p,r:A.get("borderRadius")},position:d.slice(),style:{text:s,textFont:c,textFill:A.getTextColor(),textPosition:"inside",textPadding:l,fill:v,stroke:A.get("borderColor")||"transparent",lineWidth:A.get("borderWidth")||0,shadowBlur:A.get("shadowBlur"),shadowColor:A.get("shadowColor"),shadowOffsetX:A.get("shadowOffsetX"),shadowOffsetY:A.get("shadowOffsetY")},z2:10}}function u(t,e,n,r,o){t=e.scale.parse(t);var a=e.scale.getLabel(t,{precision:o.precision}),s=o.formatter;if(s){var l={value:A.getAxisRawValue(e,t),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};i.each(r,function(t){var e=n.getSeriesByIndex(t.seriesIndex),i=t.dataIndexInside,r=e&&e.getDataParams(i);r&&l.seriesData.push(r)}),i.isString(s)?a=s.replace("{value}",a):i.isFunction(s)&&(a=s(l))}return a}function h(t,e,n){var i=s.create();return s.rotate(i,i,n.rotation),s.translate(i,i,n.position),r.applyTransform([t.dataToCoord(e),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],i)}e.buildElStyle=function(t){var e,n=t.get("type"),i=t.getModel(n+"Style");return"line"===n?(e=i.getLineStyle()).fill=null:"shadow"===n&&((e=i.getAreaStyle()).stroke=null),e},e.buildLabelElOption=c,e.getValueLabel=u,e.getTransformedPosition=h,e.buildCartesianSingleLabelElOption=function(t,e,n,i,r,o){var a=l.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=r.get("label.margin"),c(e,i,r,o,{position:h(i.axis,t,n),align:a.textAlign,verticalAlign:a.textVerticalAlign})},e.makeLineShape=function(t,e,n){return{x1:t[n=n||0],y1:t[1-n],x2:e[n],y2:e[1-n]}},e.makeRectShape=function(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}},e.makeSectorShape=function(t,e,n,i,r,o){return{cx:t,cy:e,r0:n,r:i,startAngle:r,endAngle:o,clockwise:!0}}},"xXc/":function(t,e,n){var i=n("UnJe"),r=i.extend({type:"compound",shape:{paths:null},_updatePathDirty:function(){for(var t=this.__dirtyPath,e=this.shape.paths,n=0;n<e.length;n++)t=t||e[n].__dirtyPath;this.__dirtyPath=t,this.__dirty=this.__dirty||t},beforeBrush:function(){this._updatePathDirty();for(var t=this.shape.paths||[],e=this.getGlobalScale(),n=0;n<t.length;n++)t[n].path||t[n].createPathProxy(),t[n].path.setScale(e[0],e[1],t[n].segmentIgnoreThreshold)},buildPath:function(t,e){for(var n=e.paths||[],i=0;i<n.length;i++)n[i].buildPath(t,n[i].shape,!0)},afterBrush:function(){for(var t=this.shape.paths||[],e=0;e<t.length;e++)t[e].__dirtyPath=!1},getBoundingRect:function(){return this._updatePathDirty(),i.prototype.getBoundingRect.call(this)}});t.exports=r},xd6S:function(t,e,n){var i=n("TiXa").extend({type:"dataZoom.inside",defaultOption:{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}});t.exports=i},xePU:function(t,e,n){var i=n("A5tq").each,r=n("80oK"),o=r.simpleLayout,a=r.simpleLayoutEdge;t.exports=function(t,e){t.eachSeriesByType("graph",function(t){var e=t.get("layout"),n=t.coordinateSystem;if(n&&"view"!==n.type){var r=t.getData(),s=[];i(n.dimensions,function(t){s=s.concat(r.mapDimension(t,!0))});for(var A=0;A<r.count();A++){for(var l=[],c=!1,u=0;u<s.length;u++){var h=r.get(s[u],A);isNaN(h)||(c=!0),l.push(h)}c?r.setItemLayout(A,n.dataToPoint(l)):r.setItemLayout(A,[NaN,NaN])}a(r.graph,t)}else e&&"none"!==e||o(t)})}},xfK8:function(t,e,n){var i=n("Q1ps"),r=n("5NhH"),o=n("Ym+9"),a=function(){this.group=new i,this.uid=r.getUID("viewComponent")},s=a.prototype={constructor:a,init:function(t,e){},render:function(t,e,n,i){},dispose:function(){},filterForExposedEvent:null};s.updateView=s.updateLayout=s.updateVisual=function(t,e,n,i){},o.enableClassExtend(a),o.enableClassManagement(a,{registerWhenExtend:!0});var A=a;t.exports=A},xkTx:function(t,e,n){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},yB2I:function(t,e,n){var i=n("PN6Y").createElement,r=n("A5tq"),o=n("VU1Y"),a=n("UnJe"),s=n("a+Y0"),A=n("g+7e"),l=n("NhjP"),c=n("rMWJ"),u=n("/iNI"),h=n("oEDi"),d=n("u9IZ"),f=d.path,p=d.image,g=d.text;function m(t){return parseInt(t,10)}function v(t,e){return e&&t&&e.parentNode!==t}function y(t,e,n){if(v(t,e)&&n){var i=n.nextSibling;i?t.insertBefore(e,i):t.appendChild(e)}}function w(t,e){if(v(t,e)){var n=t.firstChild;n?t.insertBefore(e,n):t.appendChild(e)}}function x(t,e){e&&t&&e.parentNode===t&&t.removeChild(e)}function B(t){return t.__textSvgEl}function b(t){return t.__svgEl}var C=function(t,e,n,o){this.root=t,this.storage=e,this._opts=n=r.extend({},n||{});var a=i("svg");a.setAttribute("xmlns","http://www.w3.org/2000/svg"),a.setAttribute("version","1.1"),a.setAttribute("baseProfile","full"),a.style.cssText="user-select:none;position:absolute;left:0;top:0;";var s=i("g");a.appendChild(s);var A=i("g");a.appendChild(A),this.gradientManager=new c(o,A),this.clipPathManager=new u(o,A),this.shadowManager=new h(o,A);var l=document.createElement("div");l.style.cssText="overflow:hidden;position:relative",this._svgDom=a,this._svgRoot=A,this._backgroundRoot=s,this._viewport=l,t.appendChild(l),l.appendChild(a),this.resize(n.width,n.height),this._visibleList=[]};C.prototype={constructor:C,getType:function(){return"svg"},getViewportRoot:function(){return this._viewport},getSvgDom:function(){return this._svgDom},getSvgRoot:function(){return this._svgRoot},getViewportRootOffset:function(){var t=this.getViewportRoot();if(t)return{offsetLeft:t.offsetLeft||0,offsetTop:t.offsetTop||0}},refresh:function(){var t=this.storage.getDisplayList(!0);this._paintList(t)},setBackgroundColor:function(t){this._backgroundRoot&&this._backgroundNode&&this._backgroundRoot.removeChild(this._backgroundNode);var e=i("rect");e.setAttribute("width",this.getWidth()),e.setAttribute("height",this.getHeight()),e.setAttribute("x",0),e.setAttribute("y",0),e.setAttribute("id",0),e.style.fill=t,this._backgroundRoot.appendChild(e),this._backgroundNode=e},_paintList:function(t){this.gradientManager.markAllUnused(),this.clipPathManager.markAllUnused(),this.shadowManager.markAllUnused();var e,n,i=this._svgRoot,r=this._visibleList,o=t.length,c=[];for(e=0;e<o;e++){var u=t[e],h=(n=u)instanceof a?f:n instanceof s?p:n instanceof A?g:f,d=b(u)||B(u);u.invisible||(u.__dirty&&(h&&h.brush(u),this.clipPathManager.update(u),u.style&&(this.gradientManager.update(u.style.fill),this.gradientManager.update(u.style.stroke),this.shadowManager.update(d,u)),u.__dirty=!1),c.push(u))}var m,v=l(r,c);for(e=0;e<v.length;e++){if((S=v[e]).removed)for(var C=0;C<S.count;C++){d=b(u=r[S.indices[C]]);var _=B(u);x(i,d),x(i,_)}}for(e=0;e<v.length;e++){var S;if((S=v[e]).added)for(C=0;C<S.count;C++){d=b(u=c[S.indices[C]]),_=B(u);m?y(i,d,m):w(i,d),d?y(i,_,d):m?y(i,_,m):w(i,_),y(i,_,d),m=_||d||m,this.gradientManager.addWithoutUpdate(d||_,u),this.shadowManager.addWithoutUpdate(d||_,u),this.clipPathManager.markUsed(u)}else if(!S.removed)for(C=0;C<S.count;C++){d=b(u=c[S.indices[C]]),_=B(u),d=b(u),_=B(u);this.gradientManager.markUsed(u),this.gradientManager.addWithoutUpdate(d||_,u),this.shadowManager.markUsed(u),this.shadowManager.addWithoutUpdate(d||_,u),this.clipPathManager.markUsed(u),_&&y(i,_,d),m=d||_||m}}this.gradientManager.removeUnused(),this.clipPathManager.removeUnused(),this.shadowManager.removeUnused(),this._visibleList=c},_getDefs:function(t){var e,n=this._svgDom;return 0===(e=n.getElementsByTagName("defs")).length?t?((e=n.insertBefore(i("defs"),n.firstChild)).contains||(e.contains=function(t){var n=e.children;if(!n)return!1;for(var i=n.length-1;i>=0;--i)if(n[i]===t)return!0;return!1}),e):null:e[0]},resize:function(t,e){var n=this._viewport;n.style.display="none";var i=this._opts;if(null!=t&&(i.width=t),null!=e&&(i.height=e),t=this._getSize(0),e=this._getSize(1),n.style.display="",this._width!==t||this._height!==e){this._width=t,this._height=e;var r=n.style;r.width=t+"px",r.height=e+"px";var o=this._svgDom;o.setAttribute("width",t),o.setAttribute("height",e)}this._backgroundNode&&(this._backgroundNode.setAttribute("width",t),this._backgroundNode.setAttribute("height",e))},getWidth:function(){return this._width},getHeight:function(){return this._height},_getSize:function(t){var e=this._opts,n=["width","height"][t],i=["clientWidth","clientHeight"][t],r=["paddingLeft","paddingTop"][t],o=["paddingRight","paddingBottom"][t];if(null!=e[n]&&"auto"!==e[n])return parseFloat(e[n]);var a=this.root,s=document.defaultView.getComputedStyle(a);return(a[i]||m(s[n])||m(a.style[n]))-(m(s[r])||0)-(m(s[o])||0)|0},dispose:function(){this.root.innerHTML="",this._svgRoot=this._backgroundRoot=this._svgDom=this._backgroundNode=this._viewport=this.storage=null},clear:function(){this._viewport&&this.root.removeChild(this._viewport)},toDataURL:function(){return this.refresh(),"data:image/svg+xml;charset=UTF-8,"+encodeURIComponent(this._svgDom.outerHTML.replace(/></g,">\n\r<"))}},r.each(["getLayer","insertLayer","eachLayer","eachBuiltinLayer","eachOtherLayer","getLayers","modLayer","delLayer","clearLayer","pathToImage"],function(t){var e;C.prototype[t]=(e=t,function(){o('In SVG mode painter not support method "'+e+'"')})});var _=C;t.exports=_},yDoJ:function(t,e,n){var i=n("loyO").extendComponentModel({type:"tooltip",dependencies:["axisPointer"],defaultOption:{zlevel:0,z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,displayMode:"single",renderMode:"auto",confine:!1,showDelay:0,hideDelay:100,transitionDuration:.4,enterable:!1,backgroundColor:"rgba(50,50,50,0.7)",borderColor:"#333",borderRadius:4,borderWidth:0,padding:5,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:"#999",width:1,type:"dashed",textStyle:{}}},textStyle:{color:"#fff",fontSize:14}}});t.exports=i},yFzk:function(t,e,n){var i=n("A5tq");function r(){var t=i.createCanvas();this.canvas=t,this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={}}r.prototype={update:function(t,e,n,i,r,o){var a=this._getBrush(),s=this._getGradient(t,r,"inRange"),A=this._getGradient(t,r,"outOfRange"),l=this.pointSize+this.blurSize,c=this.canvas,u=c.getContext("2d"),h=t.length;c.width=e,c.height=n;for(var d=0;d<h;++d){var f=t[d],p=f[0],g=f[1],m=i(f[2]);u.globalAlpha=m,u.drawImage(a,p-l,g-l)}if(!c.width||!c.height)return c;for(var v=u.getImageData(0,0,c.width,c.height),y=v.data,w=0,x=y.length,B=this.minOpacity,b=this.maxOpacity-B;w<x;){m=y[w+3]/256;var C=4*Math.floor(255*m);if(m>0){var _=o(m)?s:A;m>0&&(m=m*b+B),y[w++]=_[C],y[w++]=_[C+1],y[w++]=_[C+2],y[w++]=_[C+3]*m*256}else w+=4}return u.putImageData(v,0,0),c},_getBrush:function(){var t=this._brushCanvas||(this._brushCanvas=i.createCanvas()),e=this.pointSize+this.blurSize,n=2*e;t.width=n,t.height=n;var r=t.getContext("2d");return r.clearRect(0,0,n,n),r.shadowOffsetX=n,r.shadowBlur=this.blurSize,r.shadowColor="#000",r.beginPath(),r.arc(-e,e,this.pointSize,0,2*Math.PI,!0),r.closePath(),r.fill(),t},_getGradient:function(t,e,n){for(var i=this._gradientPixels,r=i[n]||(i[n]=new Uint8ClampedArray(1024)),o=[0,0,0,0],a=0,s=0;s<256;s++)e[n](s/255,!0,o),r[a++]=o[0],r[a++]=o[1],r[a++]=o[2],r[a++]=o[3];return r}};var o=r;t.exports=o},yMsf:function(t,e,n){var i=n("loyO");n("8ubz"),n("CXxR"),n("47wN");var r=n("No8I"),o=n("Gkcz");i.registerProcessor(i.PRIORITY.PROCESSOR.SERIES_FILTER,r),o.registerSubTypeDefaulter("legend",function(){return"plain"})},yNbl:function(t,e,n){var i=n("A5tq"),r=n("bDs9"),o=n("2KC6"),a=n("f3dG").radialCoordinate,s=n("loyO"),A=n("3oqo"),l=n("TWSN"),c=n("/A6Y"),u=n("nWxm"),h=n("vvOW").onIrrelevantElement,d=(n("roIn").__DEV__,n("w9uD").parsePercent),f=r.extendShape({shape:{parentPoint:[],childPoints:[],orient:"",forkPosition:""},style:{stroke:"#000",fill:null},buildPath:function(t,e){var n=e.childPoints,i=n.length,r=e.parentPoint,o=n[0],a=n[i-1];if(1===i)return t.moveTo(r[0],r[1]),void t.lineTo(o[0],o[1]);var s=e.orient,A="TB"===s||"BT"===s?0:1,l=1-A,c=d(e.forkPosition,1),u=[];u[A]=r[A],u[l]=r[l]+(a[l]-r[l])*c,t.moveTo(r[0],r[1]),t.lineTo(u[0],u[1]),t.moveTo(o[0],o[1]),u[A]=o[A],t.lineTo(u[0],u[1]),u[A]=a[A],t.lineTo(u[0],u[1]),t.lineTo(a[0],a[1]);for(var h=1;h<i-1;h++){var f=n[h];t.moveTo(f[0],f[1]),u[A]=f[A],t.lineTo(u[0],u[1])}}}),p=s.extendChartView({type:"tree",init:function(t,e){this._oldTree,this._mainGroup=new r.Group,this._controller=new u(e.getZr()),this._controllerHost={target:this.group},this.group.add(this._mainGroup)},render:function(t,e,n,i){var r=t.getData(),o=t.layoutInfo,a=this._mainGroup,s=t.get("layout");"radial"===s?a.attr("position",[o.x+o.width/2,o.y+o.height/2]):a.attr("position",[o.x,o.y]),this._updateViewCoordSys(t,o,s),this._updateController(t,e,n);var A=this._data,l={expandAndCollapse:t.get("expandAndCollapse"),layout:s,edgeShape:t.get("edgeShape"),edgeForkPosition:t.get("edgeForkPosition"),orient:t.getOrient(),curvature:t.get("lineStyle.curveness"),symbolRotate:t.get("symbolRotate"),symbolOffset:t.get("symbolOffset"),hoverAnimation:t.get("hoverAnimation"),useNameLabel:!0,fadeIn:!0};r.diff(A).add(function(e){g(r,e)&&v(r,e,null,a,t,l)}).update(function(e,n){var i=A.getItemGraphicEl(n);g(r,e)?v(r,e,i,a,t,l):i&&y(A,n,i,a,t,l)}).remove(function(e){var n=A.getItemGraphicEl(e);n&&y(A,e,n,a,t,l)}).execute(),this._nodeScaleRatio=t.get("nodeScaleRatio"),this._updateNodeAndLinkScale(t),!0===l.expandAndCollapse&&r.eachItemGraphicEl(function(e,i){e.off("click").on("click",function(){n.dispatchAction({type:"treeExpandAndCollapse",seriesId:t.id,dataIndex:i})})}),this._data=r},_updateViewCoordSys:function(t){var e=t.getData(),n=[];e.each(function(t){var i=e.getItemLayout(t);!i||isNaN(i.x)||isNaN(i.y)||n.push([+i.x,+i.y])});var i=[],r=[];A.fromPoints(n,i,r);var o=this._min,a=this._max;r[0]-i[0]==0&&(i[0]=o?o[0]:i[0]-1,r[0]=a?a[0]:r[0]+1),r[1]-i[1]==0&&(i[1]=o?o[1]:i[1]-1,r[1]=a?a[1]:r[1]+1);var s=t.coordinateSystem=new l;s.zoomLimit=t.get("scaleLimit"),s.setBoundingRect(i[0],i[1],r[0]-i[0],r[1]-i[1]),s.setCenter(t.get("center")),s.setZoom(t.get("zoom")),this.group.attr({position:s.position,scale:s.scale}),this._viewCoordSys=s,this._min=i,this._max=r},_updateController:function(t,e,n){var i=this._controller,r=this._controllerHost,o=this.group;i.setPointerChecker(function(e,i,r){var a=o.getBoundingRect();return a.applyTransform(o.transform),a.contain(i,r)&&!h(e,n,t)}),i.enable(t.get("roam")),r.zoomLimit=t.get("scaleLimit"),r.zoom=t.coordinateSystem.getZoom(),i.off("pan").off("zoom").on("pan",function(e){c.updateViewOnPan(r,e.dx,e.dy),n.dispatchAction({seriesId:t.id,type:"treeRoam",dx:e.dx,dy:e.dy})},this).on("zoom",function(e){c.updateViewOnZoom(r,e.scale,e.originX,e.originY),n.dispatchAction({seriesId:t.id,type:"treeRoam",zoom:e.scale,originX:e.originX,originY:e.originY}),this._updateNodeAndLinkScale(t)},this)},_updateNodeAndLinkScale:function(t){var e=t.getData(),n=this._getNodeGlobalScale(t),i=[n,n];e.eachItemGraphicEl(function(t,e){t.attr("scale",i)})},_getNodeGlobalScale:function(t){var e=t.coordinateSystem;if("view"!==e.type)return 1;var n=this._nodeScaleRatio,i=e.scale,r=i&&i[0]||1;return((e.getZoom()-1)*n+1)/r},dispose:function(){this._controller&&this._controller.dispose(),this._controllerHost={}},remove:function(){this._mainGroup.removeAll(),this._data=null}});function g(t,e){var n=t.getItemLayout(e);return n&&!isNaN(n.x)&&!isNaN(n.y)&&"none"!==t.getItemVisual(e,"symbol")}function m(t,e,n){return n.itemModel=e,n.itemStyle=e.getModel("itemStyle").getItemStyle(),n.hoverItemStyle=e.getModel("emphasis.itemStyle").getItemStyle(),n.lineStyle=e.getModel("lineStyle").getLineStyle(),n.labelModel=e.getModel("label"),n.hoverLabelModel=e.getModel("emphasis.label"),!1===t.isExpand&&0!==t.children.length?n.symbolInnerColor=n.itemStyle.fill:n.symbolInnerColor="#fff",n}function v(t,e,n,a,s,A){var l=!n,c=t.tree.getNodeByDataIndex(e),u=(A=m(c,c.getModel(),A),t.tree.root),h=c.parentNode===u?c:c.parentNode||c,d=t.getItemGraphicEl(h.dataIndex),p=h.getLayout(),g=d?{x:d.position[0],y:d.position[1],rawX:d.__radialOldRawX,rawY:d.__radialOldRawY}:p,v=c.getLayout();l?(n=new o(t,e,A)).attr("position",[g.x,g.y]):n.updateData(t,e,A),n.__radialOldRawX=n.__radialRawX,n.__radialOldRawY=n.__radialRawY,n.__radialRawX=v.rawX,n.__radialRawY=v.rawY,a.add(n),t.setItemGraphicEl(e,n),r.updateProps(n,{position:[v.x,v.y]},s);var y=n.getSymbolPath();if("radial"===A.layout){var x,B,b=u.children[0],C=b.getLayout(),_=b.children.length;if(v.x===C.x&&!0===c.isExpand){var S={};S.x=(b.children[0].getLayout().x+b.children[_-1].getLayout().x)/2,S.y=(b.children[0].getLayout().y+b.children[_-1].getLayout().y)/2,(x=Math.atan2(S.y-C.y,S.x-C.x))<0&&(x=2*Math.PI+x),(B=S.x<C.x)&&(x-=Math.PI)}else(x=Math.atan2(v.y-C.y,v.x-C.x))<0&&(x=2*Math.PI+x),0===c.children.length||0!==c.children.length&&!1===c.isExpand?(B=v.x<C.x)&&(x-=Math.PI):(B=v.x>C.x)||(x-=Math.PI);var I=B?"left":"right",T=A.labelModel.get("rotate"),M=T*(Math.PI/180);y.setStyle({textPosition:A.labelModel.get("position")||I,textRotation:null==T?-x:M,textOrigin:"center",verticalAlign:"middle"})}!function(t,e,n,o,a,s,A,l,c){var u=c.edgeShape,h=o.__edge;if("curve"===u)e.parentNode&&e.parentNode!==n&&(h||(h=o.__edge=new r.BezierCurve({shape:w(c,a,a),style:i.defaults({opacity:0,strokeNoScale:!0},c.lineStyle)})),r.updateProps(h,{shape:w(c,s,A),style:i.defaults({opacity:1},c.lineStyle)},t));else if("polyline"===u&&"orthogonal"===c.layout&&e!==n&&e.children&&0!==e.children.length&&!0===e.isExpand){for(var d=e.children,p=[],g=0;g<d.length;g++){var m=d[g].getLayout();p.push([m.x,m.y])}h||(h=o.__edge=new f({shape:{parentPoint:[A.x,A.y],childPoints:[[A.x,A.y]],orient:c.orient,forkPosition:c.edgeForkPosition},style:i.defaults({opacity:0,strokeNoScale:!0},c.lineStyle)})),r.updateProps(h,{shape:{parentPoint:[A.x,A.y],childPoints:p},style:i.defaults({opacity:1},c.lineStyle)},t)}l.add(h)}(s,c,u,n,g,p,v,a,A)}function y(t,e,n,i,o,a){for(var s,A=t.tree.getNodeByDataIndex(e),l=t.tree.root,c=(a=m(A,A.getModel(),a),A.parentNode===l?A:A.parentNode||A),u=a.edgeShape;null==(s=c.getLayout());)c=c.parentNode===l?c:c.parentNode||c;r.updateProps(n,{position:[s.x+1,s.y+1]},o,function(){i.remove(n),t.setItemGraphicEl(e,null)}),n.fadeOut(null,{keepLabel:!0});var h=t.getItemGraphicEl(c.dataIndex).__edge,d=n.__edge||(!1===c.isExpand||1===c.children.length?h:void 0);u=a.edgeShape;d&&("curve"===u?r.updateProps(d,{shape:w(a,s,s),style:{opacity:0}},o,function(){i.remove(d)}):"polyline"===u&&"orthogonal"===a.layout&&r.updateProps(d,{shape:{parentPoint:[s.x,s.y],childPoints:[[s.x,s.y]]},style:{opacity:0}},o,function(){i.remove(d)}))}function w(t,e,n){var i,r,o,s,A,l,c,u,h=t.orient;if("radial"===t.layout){A=e.rawX,c=e.rawY,l=n.rawX,u=n.rawY;var d=a(A,c),f=a(A,c+(u-c)*t.curvature),p=a(l,u+(c-u)*t.curvature),g=a(l,u);return{x1:d.x,y1:d.y,x2:g.x,y2:g.y,cpx1:f.x,cpy1:f.y,cpx2:p.x,cpy2:p.y}}return A=e.x,c=e.y,l=n.x,u=n.y,"LR"!==h&&"RL"!==h||(i=A+(l-A)*t.curvature,r=c,o=l+(A-l)*t.curvature,s=u),"TB"!==h&&"BT"!==h||(i=A,r=c+(u-c)*t.curvature,o=l,s=u+(c-u)*t.curvature),{x1:A,y1:c,x2:l,y2:u,cpx1:i,cpy1:r,cpx2:o,cpy2:s}}t.exports=p},yQXb:function(t,e){e.ContextCachedBy={NONE:0,STYLE_BIND:1,PLAIN_TEXT:2},e.WILL_BE_RESTORED=9},ySr6:function(t,e,n){n("roIn").__DEV__;var i=n("A5tq"),r=i.isObject,o=i.each,a=i.map,s=i.indexOf,A=(i.retrieve,n("rhmo").getLayoutRect),l=n("eII0"),c=l.createScaleByModel,u=l.ifAxisCrossZero,h=l.niceScaleExtent,d=l.estimateLabelUnionRect,f=n("e85P"),p=n("fBqT"),g=n("TJcz"),m=n("fxHw").getStackedDimension;function v(t,e,n){return t.getCoordSysModel()===e}function y(t,e,n){this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this._initCartesian(t,e,n),this.model=t}n("+yxr");var w=y.prototype;function x(t,e,n,i){n.getAxesOnZeroOf=function(){return r?[r]:[]};var r,o=t[e],a=n.model,s=a.get("axisLine.onZero"),A=a.get("axisLine.onZeroAxisIndex");if(s){if(null!=A)B(o[A])&&(r=o[A]);else for(var l in o)if(o.hasOwnProperty(l)&&B(o[l])&&!i[c(o[l])]){r=o[l];break}r&&(i[c(r)]=!0)}function c(t){return t.dim+"_"+t.index}}function B(t){return t&&"category"!==t.type&&"time"!==t.type&&u(t)}w.type="grid",w.axisPointerEnabled=!0,w.getRect=function(){return this._rect},w.update=function(t,e){var n=this._axesMap;this._updateScale(t,this.model),o(n.x,function(t){h(t.scale,t.model)}),o(n.y,function(t){h(t.scale,t.model)});var i={};o(n.x,function(t){x(n,"y",t,i)}),o(n.y,function(t){x(n,"x",t,i)}),this.resize(this.model,e)},w.resize=function(t,e,n){var i=A(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()});this._rect=i;var r=this._axesList;function a(){o(r,function(t){var e=t.isHorizontal(),n=e?[0,i.width]:[0,i.height],r=t.inverse?1:0;t.setExtent(n[r],n[1-r]),function(t,e){var n=t.getExtent(),i=n[0]+n[1];t.toGlobalCoord="x"===t.dim?function(t){return t+e}:function(t){return i-t+e},t.toLocalCoord="x"===t.dim?function(t){return t-e}:function(t){return i-t+e}}(t,e?i.x:i.y)})}a(),!n&&t.get("containLabel")&&(o(r,function(t){if(!t.model.get("axisLabel.inside")){var e=d(t);if(e){var n=t.isHorizontal()?"height":"width",r=t.model.get("axisLabel.margin");i[n]-=e[n]+r,"top"===t.position?i.y+=e.height+r:"left"===t.position&&(i.x+=e.width+r)}}}),a())},w.getAxis=function(t,e){var n=this._axesMap[t];if(null!=n){if(null==e)for(var i in n)if(n.hasOwnProperty(i))return n[i];return n[e]}},w.getAxes=function(){return this._axesList.slice()},w.getCartesian=function(t,e){if(null!=t&&null!=e){var n="x"+t+"y"+e;return this._coordsMap[n]}r(t)&&(e=t.yAxisIndex,t=t.xAxisIndex);for(var i=0,o=this._coordsList;i<o.length;i++)if(o[i].getAxis("x").index===t||o[i].getAxis("y").index===e)return o[i]},w.getCartesians=function(){return this._coordsList.slice()},w.convertToPixel=function(t,e,n){var i=this._findConvertTarget(t,e);return i.cartesian?i.cartesian.dataToPoint(n):i.axis?i.axis.toGlobalCoord(i.axis.dataToCoord(n)):null},w.convertFromPixel=function(t,e,n){var i=this._findConvertTarget(t,e);return i.cartesian?i.cartesian.pointToData(n):i.axis?i.axis.coordToData(i.axis.toLocalCoord(n)):null},w._findConvertTarget=function(t,e){var n,i,r=e.seriesModel,o=e.xAxisModel||r&&r.getReferringComponents("xAxis")[0],a=e.yAxisModel||r&&r.getReferringComponents("yAxis")[0],A=e.gridModel,l=this._coordsList;if(r)n=r.coordinateSystem,s(l,n)<0&&(n=null);else if(o&&a)n=this.getCartesian(o.componentIndex,a.componentIndex);else if(o)i=this.getAxis("x",o.componentIndex);else if(a)i=this.getAxis("y",a.componentIndex);else if(A){A.coordinateSystem===this&&(n=this._coordsList[0])}return{cartesian:n,axis:i}},w.containPoint=function(t){var e=this._coordsList[0];if(e)return e.containPoint(t)},w._initCartesian=function(t,e,n){var i={left:!1,right:!1,top:!1,bottom:!1},r={x:{},y:{}},a={x:0,y:0};if(e.eachComponent("xAxis",s("x"),this),e.eachComponent("yAxis",s("y"),this),!a.x||!a.y)return this._axesMap={},void(this._axesList=[]);function s(e){return function(n,o){if(v(n,t)){var s=n.get("position");"x"===e?"top"!==s&&"bottom"!==s&&(s=i.bottom?"top":"bottom"):"left"!==s&&"right"!==s&&(s=i.left?"right":"left"),i[s]=!0;var A=new p(e,c(n),[0,0],n.get("type"),s),l="category"===A.type;A.onBand=l&&n.get("boundaryGap"),A.inverse=n.get("inverse"),n.axis=A,A.model=n,A.grid=this,A.index=o,this._axesList.push(A),r[e][o]=A,a[e]++}}}this._axesMap=r,o(r.x,function(e,n){o(r.y,function(i,r){var o="x"+n+"y"+r,a=new f(o);a.grid=this,a.model=t,this._coordsMap[o]=a,this._coordsList.push(a),a.addAxis(e),a.addAxis(i)},this)},this)},w._updateScale=function(t,e){function n(t,e,n){o(t.mapDimension(e.dim,!0),function(n){e.scale.unionExtentFromData(t,m(t,n))})}o(this._axesList,function(t){t.scale.setExtent(1/0,-1/0)}),t.eachSeries(function(i){if(_(i)){var r=C(i,t),o=r[0],a=r[1];if(!v(o,e)||!v(a,e))return;var s=this.getCartesian(o.componentIndex,a.componentIndex),A=i.getData(),l=s.getAxis("x"),c=s.getAxis("y");"list"===A.type&&(n(A,l,i),n(A,c,i))}},this)},w.getTooltipAxes=function(t){var e=[],n=[];return o(this.getCartesians(),function(i){var r=null!=t&&"auto"!==t?i.getAxis(t):i.getBaseAxis(),o=i.getOtherAxis(r);s(e,r)<0&&e.push(r),s(n,o)<0&&n.push(o)}),{baseAxes:e,otherAxes:n}};var b=["xAxis","yAxis"];function C(t,e){return a(b,function(e){return t.getReferringComponents(e)[0]})}function _(t){return"cartesian2d"===t.get("coordinateSystem")}y.create=function(t,e){var n=[];return t.eachComponent("grid",function(i,r){var o=new y(i,t,e);o.name="grid_"+r,o.resize(i,e,!0),i.coordinateSystem=o,n.push(o)}),t.eachSeries(function(t){if(_(t)){var e=C(t),n=e[0],i=e[1],r=n.getCoordSysModel().coordinateSystem;t.coordinateSystem=r.getCartesian(n.componentIndex,i.componentIndex)}}),n},y.dimensions=y.prototype.dimensions=f.prototype.dimensions,g.register("cartesian2d",y);var S=y;t.exports=S},yW06:function(t,e){var n="undefined"==typeof Float32Array?Array:Float32Array;function i(){var t=new n(6);return r(t),t}function r(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function o(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t}e.create=i,e.identity=r,e.copy=o,e.mul=function(t,e,n){var i=e[0]*n[0]+e[2]*n[1],r=e[1]*n[0]+e[3]*n[1],o=e[0]*n[2]+e[2]*n[3],a=e[1]*n[2]+e[3]*n[3],s=e[0]*n[4]+e[2]*n[5]+e[4],A=e[1]*n[4]+e[3]*n[5]+e[5];return t[0]=i,t[1]=r,t[2]=o,t[3]=a,t[4]=s,t[5]=A,t},e.translate=function(t,e,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4]+n[0],t[5]=e[5]+n[1],t},e.rotate=function(t,e,n){var i=e[0],r=e[2],o=e[4],a=e[1],s=e[3],A=e[5],l=Math.sin(n),c=Math.cos(n);return t[0]=i*c+a*l,t[1]=-i*l+a*c,t[2]=r*c+s*l,t[3]=-r*l+c*s,t[4]=c*o+l*A,t[5]=c*A-l*o,t},e.scale=function(t,e,n){var i=n[0],r=n[1];return t[0]=e[0]*i,t[1]=e[1]*r,t[2]=e[2]*i,t[3]=e[3]*r,t[4]=e[4]*i,t[5]=e[5]*r,t},e.invert=function(t,e){var n=e[0],i=e[2],r=e[4],o=e[1],a=e[3],s=e[5],A=n*a-o*i;return A?(A=1/A,t[0]=a*A,t[1]=-o*A,t[2]=-i*A,t[3]=n*A,t[4]=(i*s-a*r)*A,t[5]=(o*r-n*s)*A,t):null},e.clone=function(t){var e=i();return o(e,t),e}},yfgL:function(t,e,n){var i=n("NIzM"),r=n("A5tq"),o=n("B1kW"),a=n("lbYD");function s(t,e,n){o.call(this,t,e,n),this._lastFrame=0,this._lastFramePercent=0}var A=s.prototype;A.createLine=function(t,e,n){return new i(t,e,n)},A.updateAnimationPoints=function(t,e){this._points=e;for(var n=[0],i=0,r=1;r<e.length;r++){var o=e[r-1],s=e[r];i+=a.dist(o,s),n.push(i)}if(0!==i){for(r=0;r<n.length;r++)n[r]/=i;this._offsets=n,this._length=i}},A.getLineLength=function(t){return this._length},A.updateSymbolPosition=function(t){var e=t.__t,n=this._points,i=this._offsets,r=n.length;if(i){var o=this._lastFrame;if(e<this._lastFramePercent){for(s=Math.min(o+1,r-1);s>=0&&!(i[s]<=e);s--);s=Math.min(s,r-2)}else{for(var s=o;s<r&&!(i[s]>e);s++);s=Math.min(s-1,r-2)}a.lerp(t.position,n[s],n[s+1],(e-i[s])/(i[s+1]-i[s]));var A=n[s+1][0]-n[s][0],l=n[s+1][1]-n[s][1];t.rotation=-Math.atan2(l,A)-Math.PI/2,this._lastFrame=s,this._lastFramePercent=e,t.ignore=!1}},r.inherits(s,o);var l=s;t.exports=l},yfuy:function(t,e,n){var i=n("A5tq"),r=n("r+KN"),o=n("TWSN"),a=n("llN/");function s(t,e,n,i){o.call(this,t),this.map=e;var r=a.load(e,n);this._nameCoordMap=r.nameCoordMap,this._regionsMap=r.regionsMap,this._invertLongitute=null==i||i,this.regions=r.regions,this._rect=r.boundingRect}function A(t,e,n,i){var r=n.geoModel,o=n.seriesModel,a=r?r.coordinateSystem:o?o.coordinateSystem||(o.getReferringComponents("geo")[0]||{}).coordinateSystem:null;return a===this?a[t](i):null}s.prototype={constructor:s,type:"geo",dimensions:["lng","lat"],containCoord:function(t){for(var e=this.regions,n=0;n<e.length;n++)if(e[n].contain(t))return!0;return!1},transformTo:function(t,e,n,i){var o=this.getBoundingRect(),a=this._invertLongitute;o=o.clone(),a&&(o.y=-o.y-o.height);var s=this._rawTransformable;if(s.transform=o.calculateTransform(new r(t,e,n,i)),s.decomposeTransform(),a){var A=s.scale;A[1]=-A[1]}s.updateTransform(),this._updateTransform()},getRegion:function(t){return this._regionsMap.get(t)},getRegionByCoord:function(t){for(var e=this.regions,n=0;n<e.length;n++)if(e[n].contain(t))return e[n]},addGeoCoord:function(t,e){this._nameCoordMap.set(t,e)},getGeoCoord:function(t){return this._nameCoordMap.get(t)},getBoundingRect:function(){return this._rect},dataToPoint:function(t,e,n){if("string"==typeof t&&(t=this.getGeoCoord(t)),t)return o.prototype.dataToPoint.call(this,t,e,n)},convertToPixel:i.curry(A,"dataToPoint"),convertFromPixel:i.curry(A,"pointToData")},i.mixin(s,o);var l=s;t.exports=l},ywUT:function(t,e,n){"use strict";var i=n("m3h4"),r=Object.prototype.toString;function o(t){return"[object Array]"===r.call(t)}function a(t){return void 0===t}function s(t){return null!==t&&"object"==typeof t}function A(t){return"[object Function]"===r.call(t)}function l(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),o(t))for(var n=0,i=t.length;n<i;n++)e.call(null,t[n],n,t);else for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.call(null,t[r],r,t)}t.exports={isArray:o,isArrayBuffer:function(t){return"[object ArrayBuffer]"===r.call(t)},isBuffer:function(t){return null!==t&&!a(t)&&null!==t.constructor&&!a(t.constructor)&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)},isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:s,isUndefined:a,isDate:function(t){return"[object Date]"===r.call(t)},isFile:function(t){return"[object File]"===r.call(t)},isBlob:function(t){return"[object Blob]"===r.call(t)},isFunction:A,isStream:function(t){return s(t)&&A(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&"undefined"!=typeof window&&"undefined"!=typeof document},forEach:l,merge:function t(){var e={};function n(n,i){"object"==typeof e[i]&&"object"==typeof n?e[i]=t(e[i],n):e[i]=n}for(var i=0,r=arguments.length;i<r;i++)l(arguments[i],n);return e},deepMerge:function t(){var e={};function n(n,i){"object"==typeof e[i]&&"object"==typeof n?e[i]=t(e[i],n):e[i]="object"==typeof n?t({},n):n}for(var i=0,r=arguments.length;i<r;i++)l(arguments[i],n);return e},extend:function(t,e,n){return l(e,function(e,r){t[r]=n&&"function"==typeof e?i(e,n):e}),t},trim:function(t){return t.replace(/^\s*/,"").replace(/\s*$/,"")}}},zIIG:function(t,e,n){var i=n("A5tq");function r(t,e){return i.map(["Radius","Angle"],function(n,i){var r=this["get"+n+"Axis"](),o=e[i],a=t[i]/2,s="dataTo"+n,A="category"===r.type?r.getBandWidth():Math.abs(r[s](o-a)-r[s](o+a));return"Angle"===n&&(A=A*Math.PI/180),A},this)}t.exports=function(t){var e=t.getRadiusAxis(),n=t.getAngleAxis(),o=e.getExtent();return o[0]>o[1]&&o.reverse(),{coordSys:{type:"polar",cx:t.cx,cy:t.cy,r:o[1],r0:o[0]},api:{coord:i.bind(function(i){var r=e.dataToRadius(i[0]),o=n.dataToAngle(i[1]),a=t.coordToPoint([r,o]);return a.push(r,o*Math.PI/180),a}),size:i.bind(r,t)}}}},zNm4:function(t,e,n){n("zW0e"),n("TiXa"),n("e6hA"),n("ovZU"),n("o1n8"),n("cbvn"),n("Mx+x")},zW0e:function(t,e,n){n("Gkcz").registerSubTypeDefaulter("dataZoom",function(){return"slider"})},zcw7:function(t,e,n){var i=n("A5tq"),r=["rect","polygon","keep","clear"];t.exports=function(t,e){var n=t&&t.brush;if(i.isArray(n)||(n=n?[n]:[]),n.length){var o=[];i.each(n,function(t){var e=t.hasOwnProperty("toolbox")?t.toolbox:[];e instanceof Array&&(o=o.concat(e))});var a=t&&t.toolbox;i.isArray(a)&&(a=a[0]),a||(a={feature:{}},t.toolbox=[a]);var s,A,l=a.feature||(a.feature={}),c=l.brush||(l.brush={}),u=c.type||(c.type=[]);u.push.apply(u,o),s=u,A={},i.each(s,function(t){A[t]=1}),s.length=0,i.each(A,function(t,e){s.push(e)}),e&&!u.length&&u.push.apply(u,r)}}},zrBH:function(t,e,n){var i=n("A5tq").each,r=n("Q1ps"),o=n("5NhH"),a=n("Ym+9"),s=n("65+t"),A=n("bDs9"),l=n("SOQc").createTask,c=n("FiFn"),u=s.makeInner(),h=c();function d(){this.group=new r,this.uid=o.getUID("viewChart"),this.renderTask=l({plan:m,reset:v}),this.renderTask.context={view:this}}d.prototype={type:"chart",init:function(t,e){},render:function(t,e,n,i){},highlight:function(t,e,n,i){g(t.getData(),i,"emphasis")},downplay:function(t,e,n,i){g(t.getData(),i,"normal")},remove:function(t,e){this.group.removeAll()},dispose:function(){},incrementalPrepareRender:null,incrementalRender:null,updateTransform:null,filterForExposedEvent:null};var f=d.prototype;function p(t,e,n){if(t&&(t.trigger(e,n),t.isGroup&&!A.isHighDownDispatcher(t)))for(var i=0,r=t.childCount();i<r;i++)p(t.childAt(i),e,n)}function g(t,e,n){var r=s.queryDataIndex(t,e),o=e&&null!=e.highlightKey?A.getHighlightDigit(e.highlightKey):null;null!=r?i(s.normalizeToArray(r),function(e){p(t.getItemGraphicEl(e),n,o)}):t.eachItemGraphicEl(function(t){p(t,n,o)})}function m(t){return h(t.model)}function v(t){var e=t.model,n=t.ecModel,i=t.api,r=t.payload,o=e.pipelineContext.progressiveRender,a=t.view,s=r&&u(r).updateMethod,A=o?"incrementalPrepareRender":s&&a[s]?s:"render";return"render"!==A&&a[A](e,n,i,r),y[A]}f.updateView=f.updateLayout=f.updateVisual=function(t,e,n,i){this.render(t,e,n,i)},a.enableClassExtend(d,["dispose"]),a.enableClassManagement(d,{registerWhenExtend:!0}),d.markUpdateMethod=function(t,e){u(t).updateMethod=e};var y={incrementalPrepareRender:{progress:function(t,e){e.view.incrementalRender(t,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(t,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}},w=d;t.exports=w},zxdT:function(t,e,n){var i=n("A5tq"),r=i.each,o=i.map,a=i.isFunction,s=i.createHashMap,A=i.noop,l=n("SOQc").createTask,c=n("5NhH").getUID,u=n("pYoM"),h=n("DeTP"),d=n("65+t").normalizeToArray;function f(t,e,n,i){this.ecInstance=t,this.api=e,this.unfinished;n=this._dataProcessorHandlers=n.slice(),i=this._visualHandlers=i.slice();this._allHandlers=n.concat(i),this._stageTaskMap=s()}var p=f.prototype;function g(t,e,n,i,o){var a;function s(t,e){return t.setDirty&&(!t.dirtyMap||t.dirtyMap.get(e.__pipeline.id))}o=o||{},r(e,function(e,r){if(!o.visualType||o.visualType===e.visualType){var A=t._stageTaskMap.get(e.uid),l=A.seriesTaskMap,c=A.overallTask;if(c){var u,h=c.agentStubMap;h.each(function(t){s(o,t)&&(t.dirty(),u=!0)}),u&&c.dirty(),m(c,i);var d=t.getPerformArgs(c,o.block);h.each(function(t){t.perform(d)}),a|=c.perform(d)}else l&&l.each(function(r,A){s(o,r)&&r.dirty();var l=t.getPerformArgs(r,o.block);l.skip=!e.performRawSeries&&n.isSeriesFiltered(r.context.model),m(r,i),a|=r.perform(l)})}}),t.unfinished|=a}p.restoreData=function(t,e){t.restoreData(e),this._stageTaskMap.each(function(t){var e=t.overallTask;e&&e.dirty()})},p.getPerformArgs=function(t,e){if(t.__pipeline){var n=this._pipelineMap.get(t.__pipeline.id),i=n.context,r=!e&&n.progressiveEnabled&&(!i||i.progressiveRender)&&t.__idxInPipeline>n.blockIndex?n.step:null,o=i&&i.modDataCount;return{step:r,modBy:null!=o?Math.ceil(o/r):null,modDataCount:o}}},p.getPipeline=function(t){return this._pipelineMap.get(t)},p.updateStreamModes=function(t,e){var n=this._pipelineMap.get(t.uid),i=t.getData().count(),r=n.progressiveEnabled&&e.incrementalPrepareRender&&i>=n.threshold,o=t.get("large")&&i>=t.get("largeThreshold"),a="mod"===t.get("progressiveChunkMode")?i:null;t.pipelineContext=n.context={progressiveRender:r,modDataCount:a,large:o}},p.restorePipelines=function(t){var e=this,n=e._pipelineMap=s();t.eachSeries(function(t){var i=t.getProgressive(),r=t.uid;n.set(r,{id:r,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:i&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),I(e,t,t.dataTask)})},p.prepareStageTasks=function(){var t=this._stageTaskMap,e=this.ecInstance.getModel(),n=this.api;r(this._allHandlers,function(i){var o=t.get(i.uid)||t.set(i.uid,[]);i.reset&&function(t,e,n,i,r){var o=n.seriesTaskMap||(n.seriesTaskMap=s()),a=e.seriesType,A=e.getTargetSeries;e.createOnAllSeries?i.eachRawSeries(c):a?i.eachRawSeriesByType(a,c):A&&A(i,r).each(c);function c(n){var a=n.uid,s=o.get(a)||o.set(a,l({plan:B,reset:b,count:S}));s.context={model:n,ecModel:i,api:r,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:t},I(t,n,s)}var u=t._pipelineMap;o.each(function(t,e){u.get(e)||(t.dispose(),o.removeKey(e))})}(this,i,o,e,n),i.overallReset&&function(t,e,n,i,o){var a=n.overallTask=n.overallTask||l({reset:v});a.context={ecModel:i,api:o,overallReset:e.overallReset,scheduler:t};var A=a.agentStubMap=a.agentStubMap||s(),c=e.seriesType,u=e.getTargetSeries,h=!0,d=e.modifyOutputEnd;c?i.eachRawSeriesByType(c,f):u?u(i,o).each(f):(h=!1,r(i.getSeries(),f));function f(e){var n=e.uid,i=A.get(n);i||(i=A.set(n,l({reset:y,onDirty:x})),a.dirty()),i.context={model:e,overallProgress:h,modifyOutputEnd:d},i.agent=a,i.__block=h,I(t,e,i)}var p=t._pipelineMap;A.each(function(t,e){p.get(e)||(t.dispose(),a.dirty(),A.removeKey(e))})}(this,i,o,e,n)},this)},p.prepareView=function(t,e,n,i){var r=t.renderTask,o=r.context;o.model=e,o.ecModel=n,o.api=i,r.__block=!t.incrementalPrepareRender,I(this,e,r)},p.performDataProcessorTasks=function(t,e){g(this,this._dataProcessorHandlers,t,e,{block:!0})},p.performVisualTasks=function(t,e,n){g(this,this._visualHandlers,t,e,n)},p.performSeriesTasks=function(t){var e;t.eachSeries(function(t){e|=t.dataTask.perform()}),this.unfinished|=e},p.plan=function(){this._pipelineMap.each(function(t){var e=t.tail;do{if(e.__block){t.blockIndex=e.__idxInPipeline;break}e=e.getUpstream()}while(e)})};var m=p.updatePayload=function(t,e){"remain"!==e&&(t.context.payload=e)};function v(t){t.overallReset(t.ecModel,t.api,t.payload)}function y(t,e){return t.overallProgress&&w}function w(){this.agent.dirty(),this.getDownstream().dirty()}function x(){this.agent&&this.agent.dirty()}function B(t){return t.plan&&t.plan(t.model,t.ecModel,t.api,t.payload)}function b(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=d(t.reset(t.model,t.ecModel,t.api,t.payload));return e.length>1?o(e,function(t,e){return _(e)}):C}var C=_(0);function _(t){return function(e,n){var i=n.data,r=n.resetDefines[t];if(r&&r.dataEach)for(var o=e.start;o<e.end;o++)r.dataEach(i,o);else r&&r.progress&&r.progress(e,i)}}function S(t){return t.data.count()}function I(t,e,n){var i=e.uid,r=t._pipelineMap.get(i);!r.head&&(r.head=n),r.tail&&r.tail.pipe(n),r.tail=n,n.__idxInPipeline=r.count++,n.__pipeline=r}f.wrapStageHandler=function(t,e){return a(t)&&(t={overallReset:t,seriesType:function(t){T=null;try{t(M,Q)}catch(t){}return T}(t)}),t.uid=c("stageHandler"),e&&(t.visualType=e),t};var T,M={},Q={};function F(t,e){for(var n in e.prototype)t[n]=A}F(M,u),F(Q,h),M.eachSeriesByType=M.eachRawSeriesByType=function(t){T=t},M.eachComponent=function(t){"series"===t.mainType&&t.subType&&(T=t.subType)};var k=f;t.exports=k}});
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..6565b6a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
+        <title>涓婂競鍏徃寰储鎶ュ厤璐圭増</title>
+    </head>
+    <body>
+        <div id="app"></div>
+    </body>
+</html>
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..a9b8a43
--- /dev/null
+++ b/package.json
@@ -0,0 +1,69 @@
+{
+  "name": "zhengquan",
+  "version": "1.0.0",
+  "description": "A Vue.js project",
+  "author": "",
+  "private": true,
+  "scripts": {
+    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
+    "start": "npm run dev",
+    "build": "node build/build.js"
+  },
+  "dependencies": {
+    "axios": "^0.19.2",
+    "echarts": "^4.7.0",
+    "html2canvas": "^1.0.0-alpha.12",
+    "less": "^3.11.1",
+    "less-loader": "^5.0.0",
+    "vant": "^2.5.9",
+    "vue": "^2.5.2",
+    "vue-router": "^3.0.1",
+    "weixin-js-sdk": "^1.6.0"
+  },
+  "devDependencies": {
+    "autoprefixer": "^7.1.2",
+    "babel-core": "^6.22.1",
+    "babel-helper-vue-jsx-merge-props": "^2.0.3",
+    "babel-loader": "^7.1.1",
+    "babel-plugin-syntax-jsx": "^6.18.0",
+    "babel-plugin-transform-runtime": "^6.22.0",
+    "babel-plugin-transform-vue-jsx": "^3.5.0",
+    "babel-preset-env": "^1.3.2",
+    "babel-preset-stage-2": "^6.22.0",
+    "chalk": "^2.0.1",
+    "copy-webpack-plugin": "^4.0.1",
+    "css-loader": "^0.28.0",
+    "extract-text-webpack-plugin": "^3.0.0",
+    "file-loader": "^1.1.4",
+    "friendly-errors-webpack-plugin": "^1.6.1",
+    "html-webpack-plugin": "^2.30.1",
+    "node-notifier": "^5.1.2",
+    "optimize-css-assets-webpack-plugin": "^3.2.0",
+    "ora": "^1.2.0",
+    "portfinder": "^1.0.13",
+    "postcss-import": "^11.0.0",
+    "postcss-loader": "^2.0.8",
+    "postcss-url": "^7.2.1",
+    "rimraf": "^2.6.0",
+    "semver": "^5.3.0",
+    "shelljs": "^0.7.6",
+    "uglifyjs-webpack-plugin": "^1.1.1",
+    "url-loader": "^0.5.8",
+    "vue-loader": "^13.3.0",
+    "vue-style-loader": "^3.0.1",
+    "vue-template-compiler": "^2.5.2",
+    "webpack": "^3.6.0",
+    "webpack-bundle-analyzer": "^2.9.0",
+    "webpack-dev-server": "^2.9.1",
+    "webpack-merge": "^4.1.0"
+  },
+  "engines": {
+    "node": ">= 6.0.0",
+    "npm": ">= 3.0.0"
+  },
+  "browserslist": [
+    "> 1%",
+    "last 2 versions",
+    "not ie <= 8"
+  ]
+}
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..832ee30
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,23 @@
+<template>
+    <div id="app">
+        <keep-alive>
+            <router-view />
+        </keep-alive>
+    </div>
+</template>
+
+<script>
+    export default {
+        name: 'App'
+    }
+</script>
+
+<style>
+    #app {
+        font-family: 'Avenir', Helvetica, Arial, sans-serif;
+        -webkit-font-smoothing: antialiased;
+        -moz-osx-font-smoothing: grayscale;
+        max-width: 650px;
+        margin: auto;
+    }
+</style>
diff --git a/src/assets/images/2.png b/src/assets/images/2.png
new file mode 100644
index 0000000..f81fdcb
--- /dev/null
+++ b/src/assets/images/2.png
Binary files differ
diff --git a/src/assets/images/b_yunying_1.png b/src/assets/images/b_yunying_1.png
new file mode 100644
index 0000000..17e0af6
--- /dev/null
+++ b/src/assets/images/b_yunying_1.png
Binary files differ
diff --git a/src/assets/images/b_yunying_2.png b/src/assets/images/b_yunying_2.png
new file mode 100644
index 0000000..c7906ac
--- /dev/null
+++ b/src/assets/images/b_yunying_2.png
Binary files differ
diff --git a/src/assets/images/b_yunying_3.png b/src/assets/images/b_yunying_3.png
new file mode 100644
index 0000000..dfb3e4e
--- /dev/null
+++ b/src/assets/images/b_yunying_3.png
Binary files differ
diff --git a/src/assets/images/b_yunying_4.png b/src/assets/images/b_yunying_4.png
new file mode 100644
index 0000000..b3d487e
--- /dev/null
+++ b/src/assets/images/b_yunying_4.png
Binary files differ
diff --git a/src/assets/images/cost.png b/src/assets/images/cost.png
new file mode 100644
index 0000000..6f2979a
--- /dev/null
+++ b/src/assets/images/cost.png
Binary files differ
diff --git a/src/assets/images/kong.png b/src/assets/images/kong.png
new file mode 100644
index 0000000..f0ac169
--- /dev/null
+++ b/src/assets/images/kong.png
Binary files differ
diff --git a/src/assets/images/logo1.png b/src/assets/images/logo1.png
new file mode 100644
index 0000000..4361eed
--- /dev/null
+++ b/src/assets/images/logo1.png
Binary files differ
diff --git a/src/assets/js/basedata.js b/src/assets/js/basedata.js
new file mode 100644
index 0000000..f054372
--- /dev/null
+++ b/src/assets/js/basedata.js
@@ -0,0 +1,18 @@
+// 钀ユ敹鏋勬垚鏁版嵁澶勭悊
+function makeupData (arr) {
+    arr.forEach(function(item, index){
+        item.name = item.name + ':' + item.value + '%';
+    })
+    return arr;
+}
+
+function abilityYy (arr) {
+    arr.forEach(function (item, index) {
+        item.OCPercents.reverse()
+    })
+}
+
+export {
+    makeupData,
+    abilityYy
+}
diff --git a/src/assets/js/kefu/kefu.js b/src/assets/js/kefu/kefu.js
new file mode 100644
index 0000000..35ae284
--- /dev/null
+++ b/src/assets/js/kefu/kefu.js
@@ -0,0 +1,20 @@
+
+export default{
+    install(Vue){
+       //杩欓噷鏄ず渚嬫柟娉� getTime鏄柟娉曞悕 function()鍙互鎼哄甫鍙傛暟
+        Vue.prototype.kefu = (function(win, doc, src, opt) {
+            win[opt] = win[opt] || function () {
+            win[opt].options = arguments[0]};
+            var script = doc.createElement("script");
+            script.async = 1;
+            script.src = src;
+            doc.body.appendChild(script);
+          })(window, document, "https://webchat-sh.clink.cn/webchat.js?v="+Date.now(), "clinkWebchatOptions");
+            clinkWebchatOptions({
+              accessId: "dd0028f7-b79d-4af1-8679-8e03f9dc7b99",
+              language: "zh_CN"
+            });
+      
+    }
+  }
+  
\ No newline at end of file
diff --git a/src/assets/js/options.js b/src/assets/js/options.js
new file mode 100644
index 0000000..9b5efce
--- /dev/null
+++ b/src/assets/js/options.js
@@ -0,0 +1,83 @@
+/**
+ * 鍥炬爣閰嶇疆鍙傛暟
+ * */
+
+/**
+ * 1,鏀跺叆涓庢潕鑽� ------ 钀ヤ笟鏀跺叆涓庨�氭瘮澧為��
+ * years: 骞翠唤
+ * earning: 鏀跺叆
+ * speed: 澧為��
+ * */
+function income(intro, years, earning, speed) {
+    return {
+        tooltip: {
+            trigger: 'axis',
+            axisPointer: { // 鍧愭爣杞存寚绀哄櫒锛屽潗鏍囪酱瑙﹀彂鏈夋晥
+                type: 'shadow' // 榛樿涓虹洿绾匡紝鍙�変负锛�'line' | 'shadow'
+            }
+        },
+        legend: {
+            data: intro
+        },
+        grid: {
+            left: '0',
+            right: '4%',
+            bottom: '0',
+            containLabel: true
+        },
+        xAxis: [{
+            type: 'value'
+        }],
+        yAxis: [{
+            type: 'category',
+            axisTick: {
+                show: false
+            },
+            data: years
+        }],
+        series: [{
+                name: intro[0],
+                type: 'bar',
+                label: {
+                    show: true
+                },
+                data: earning
+            },
+            {
+                name: intro[1],
+                type: 'bar',
+                label: {
+                    show: true
+                },
+                data: speed
+            }
+        ]
+    }
+}
+
+/**
+ * 2,钀ユ敹鏋勬垚
+ * */
+
+function makeUp(data) {
+    return {
+        tooltip: {
+            formatter: '{b}'
+        },
+        legend: {
+            type: 'scroll',
+            bottom: 0,
+        },
+        series: [{
+            type: 'pie',
+            radius: '60%',
+            center: ['50%', '50%'],
+            data: data
+        }]
+    }
+}
+
+export {
+    income,
+    makeUp
+}
diff --git a/src/assets/js/rem.js b/src/assets/js/rem.js
new file mode 100644
index 0000000..235b153
--- /dev/null
+++ b/src/assets/js/rem.js
@@ -0,0 +1,13 @@
+! function(n) {
+    var e = n.document,
+        t = e.documentElement,
+        i = 750,
+        d = i / 100,
+        o = "orientationchange" in n ? "orientationchange" : "resize",
+        a = function() {
+            var n = t.clientWidth || 320;
+            n > 750 && (n = 750);
+            t.style.fontSize = n / d + "px"
+        };
+    e.addEventListener && (n.addEventListener(o, a, !1), e.addEventListener("DOMContentLoaded", a, !1))
+}(window);
diff --git a/src/assets/js/wxapi.js b/src/assets/js/wxapi.js
new file mode 100644
index 0000000..abbc702
--- /dev/null
+++ b/src/assets/js/wxapi.js
@@ -0,0 +1,60 @@
+/**
+ * 寰俊js-sdk
+ * 鍙傝�冩枃妗o細https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115
+ */
+import wx from 'weixin-js-sdk'
+import Axios from 'axios'
+const wxApi = {
+    /**
+     * [wxRegister 寰俊Api鍒濆鍖朷
+     * @param  {Function} callback [ready鍥炶皟鍑芥暟]
+     */
+    wxRegister(data, option) { //data鏄井淇¢厤缃俊鎭紝option鏄垎浜殑閰嶇疆鍐呭
+        debugger
+        wx.config({
+            debug: false, // 寮�鍚皟璇曟ā寮�
+            appId: data.appId, // 蹇呭~锛屽叕浼楀彿鐨勫敮涓�鏍囪瘑
+            timestamp: data.timestamp, // 蹇呭~锛岀敓鎴愮鍚嶇殑鏃堕棿鎴�
+            nonceStr: data.nonceStr, // 蹇呭~锛岀敓鎴愮鍚嶇殑闅忔満涓�
+            signature: data.signature, // 蹇呭~锛岀鍚嶏紝瑙侀檮褰�1
+            jsApiList: [
+                'checkJsApi',
+                'updateTimelineShareData',
+                'updateAppMessageShareData',
+                'onMenuShareQQ',
+                'onMenuShareWeibo'
+            ] // 蹇呭~锛岄渶瑕佷娇鐢ㄧ殑JS鎺ュ彛鍒楄〃锛屾墍鏈塉S鎺ュ彛鍒楄〃瑙侀檮褰�2
+        })
+        wx.ready(function() {
+            wx.updateTimelineShareData({
+                title: option.title, // 鍒嗕韩鏍囬
+                link: option.link, // 鍒嗕韩閾炬帴
+                imgUrl: option.imgUrl, // 鍒嗕韩鍥炬爣
+                desc: option.desc, // 鍒嗕韩鎻忚堪
+                success() {
+                    // 鐢ㄦ埛鎴愬姛鍒嗕韩鍚庢墽琛岀殑鍥炶皟鍑芥暟
+                    option.success()
+                },
+                cancel() {
+                    // 鐢ㄦ埛鍙栨秷鍒嗕韩鍚庢墽琛岀殑鍥炶皟鍑芥暟
+                    option.error()
+                }
+            });
+            wx.updateAppMessageShareData({
+                title: option.title, // 鍒嗕韩鏍囬
+                desc: option.desc, // 鍒嗕韩鎻忚堪
+                link: option.link, // 鍒嗕韩閾炬帴
+                imgUrl: option.imgUrl, // 鍒嗕韩鍥炬爣
+                success() {
+                    // 鐢ㄦ埛鎴愬姛鍒嗕韩鍚庢墽琛岀殑鍥炶皟鍑芥暟
+                    option.success()
+                },
+                cancel() {
+                    // 鐢ㄦ埛鍙栨秷鍒嗕韩鍚庢墽琛岀殑鍥炶皟鍑芥暟
+                    option.error()
+                }
+            })
+        })
+    }
+}
+export default wxApi
diff --git a/src/assets/style/home.less b/src/assets/style/home.less
new file mode 100644
index 0000000..eed7182
--- /dev/null
+++ b/src/assets/style/home.less
@@ -0,0 +1,399 @@
+.home {
+    .homebox {
+        height: 100vh;
+        overflow: auto;
+        .loading {
+            height: 100%;
+            display: flex;
+            align-items: center;
+            justify-content: center;
+        }
+    }
+    /deep/ .van-sticky--fixed {
+        max-width: 650px;
+        margin: auto;
+    }
+    /deep/ .van-overlay {
+        max-width: 650px;
+        right: 0;
+        margin: auto;
+    }
+    /deep/ .van-loading__spinner--spinner i {
+        color: #b30808;
+    }
+    .stick {
+        height: 40px;
+        padding: 7px 15px;
+        background-color: #9b0707;
+        color: #fff;
+        line-height: 26px;
+        font-size: 16px;
+        span {
+            background: rgba(255,255,255,.2);
+            display: inline-block;
+            width: 80px;
+            height: 26px;
+            line-height: 26px;
+            text-align: center;
+            border-radius: 13px;
+            font-size: 14px;
+            color: #fff;
+        }
+    }
+    .head {
+        height: 3.6rem;
+        background-image: url(../assets/images/logo1.png);
+        background-size: 2.6rem;
+        padding: 1.2rem 15px 0;
+        background-color: #b30808;
+        background-position: 15px 0.2rem;
+        background-repeat: no-repeat;
+        position: relative;
+        .flag {
+            display: inline-block;
+            height: 18px;
+            line-height: 18px;
+            width: auto;
+            padding: 0 10px;
+            background-color: #fff;
+            letter-spacing: 5px;
+        }
+
+        .name {
+            height: .8rem;
+            line-height: .8rem;
+            font-size: 0.5rem;
+            color: #fff;
+            font-weight: 700;
+        }
+
+        .times {
+            height: 1rem;
+            line-height: 1rem;
+            font-size: 0.6rem;
+            color: #fff;
+            font-weight: 700;
+        }
+        .btn {
+            display: inline-block;
+            background: rgba(255,255,255,.2);
+            width: 80px;
+            height: 26px;
+            line-height: 26px;
+            text-align: center;
+            border-radius: 13px;
+            font-size: 14px;
+            color: #fff;
+            position: absolute;
+            right: 15px;
+            top: 15px;
+        }
+    }
+
+    .contentbox {
+        padding: 15px;
+        background-color: #b30808;
+
+        .content {
+            background-color: #f5f5f5;
+            padding: 15px;
+        }
+    }
+
+    .section {
+        margin-bottom: 50px;
+
+        &:nth-last-of-type(1) {
+            margin-bottom: 0;
+        }
+
+        .title {
+            display: inline-block;
+            height: 30px;
+            line-height: 30px;
+            text-align: center;
+            width: auto;
+            padding: 0 20px;
+            border-radius: 15px;
+
+            span {
+                font-size: 18px;
+                font-weight: 700;
+                color: #fff;
+            }
+
+            span:nth-child(1) {
+                border-right: 1px solid #fff;
+                padding-right: 10px;
+            }
+
+            span:nth-child(2) {
+                padding-left: 10px;
+            }
+        }
+
+        .ball {
+            margin-top: 1rem;
+            position: relative;
+
+            .ring {
+                height: 2rem;
+                width: 2rem;
+                border-radius: 50%;
+                text-align: center;
+                padding: .2rem 0;
+
+                .iconfont {
+                    color: #fff;
+                    font-size: .3rem;
+                }
+
+                p {
+                    color: #fff;
+                }
+
+                p.icon {
+                    line-height: 1;
+                }
+
+                p.money {
+                    font-size: .4rem;
+                    line-height: 1.8;
+                }
+
+                p.text {
+                    font-size: 0.25rem;
+                    line-height: 2;
+                }
+            }
+
+            .line {
+                display: inline-block;
+                position: absolute;
+                left: 2.3rem;
+
+                &::before {
+                    content: "";
+                    display: block;
+                    position: absolute;
+                    left: 0;
+                    height: 1px;
+                    background-color: #d2d2d2;
+                    transform-origin: 0 0;
+                }
+
+                p:nth-child(2) {
+                    font-size: 16px;
+                }
+            }
+
+            .line.line1 {
+                top: -.4rem;
+
+                &::before {
+                    width: 1.4rem;
+                    top: .7rem;
+                    left: -.56rem;
+                    transform-origin: 0 0;
+                    // transform: rotate(180deg);
+                }
+            }
+
+            .line.line2 {
+                bottom: 0;
+
+                &::before {
+                    width: .6rem;
+                    bottom: -0.04rem;
+                    left: -.2rem;
+                    transform: rotate(-120deg);
+                }
+
+                &::after {
+                    content: "";
+                    display: block;
+                    position: absolute;
+                    left: -.2rem;
+                    width: 2rem;
+                    height: 1px;
+                    background-color: #d2d2d2;
+                }
+            }
+        }
+
+        .sub-title {
+            text-align: center;
+            padding: 10px 0;
+            font-size: 16px;
+        }
+
+        .ability {
+            margin-top: 20px;
+            .ability-item:nth-last-of-type(1) {
+                margin-bottom: 0;
+            }
+            .ability-item {
+                width: 100%;
+                margin-bottom: 20px;
+                display: flex;
+
+                .ability-title {
+                    width: 30px;
+                    height: auto;
+                    padding: 0 4px;
+                    writing-mode: vertical-lr;
+                    text-align: center;
+                    font-size: 14px;
+                    color: #fff;
+                    letter-spacing: 2px;
+                }
+                .list.pay {
+                    width: 100%;
+                }
+                .list {
+                    width: calc(100% - 30px);
+                    display: flex;
+                    flex-wrap: wrap;
+
+                    li:nth-child(3n) .canvasbox,
+                    li:nth-last-of-type(1) .canvasbox {
+                        border-right: none;
+                    }
+
+                    li {
+                        flex: auto;
+                        width: 33.33%;
+                        height: 2rem;
+
+                        .text {
+                            line-height: 0.5rem;
+                            text-align: center;
+                            color: #999;
+                        }
+                    }
+                }
+            }
+
+            .canvasbox {
+                height: 1.5rem;
+                width: 100%;
+                border-right: 1px dashed #666;
+
+                .canvas {
+                    height: 1.5rem;
+                    width: 1.5rem;
+                    margin: auto;
+                    border-radius: 50%;
+                    position: relative;
+                }
+
+                .mask {
+                    height: 1.5rem;
+                    width: 1.5rem;
+                    transform: rotate(-90deg);
+                    position: absolute;
+                    left: -7px;
+                    top: -4px;
+                }
+            }
+        }
+        .runlist {
+            width: 100%;
+            li {
+                margin-top: 20px;
+                height: 1.4rem;
+                display: flex;
+                .icon {
+                    width: 40%;
+                    height: 100%;
+                }
+                .text {
+                    width: 60%;
+                    height: 100%;
+                    background-color: #fff;
+                    padding-left: 10px;
+                    .runtitle {
+                        height: 0.4rem;
+                        font-weight: bold;
+                        line-height: 0.4rem;
+                    }
+                    .detail {
+                        line-height: 0.5rem;
+                        a {
+                            display: inline-block;
+                            margin-right: 5px;
+                        }
+                        a:nth-child(1) {
+                            display: block;
+                            span:nth-child(1) {
+                                font-size: 16px;
+                                font-weight: bold;
+                            }
+                        }
+                    }
+                }
+            }
+            li.first {
+                .text {
+                    border-left: 5px solid #9b0707;
+                }
+            }
+            li.second {
+                .text {
+                    border-right: 5px solid #9b0707;
+                }
+            }
+        }
+        .share {
+            margin-top: 20px;
+            width: 100%;
+            li:nth-last-of-type(1) {
+                border-bottom: none;
+            }
+            li {
+                width: 100%;
+                border-bottom: 1px dashed #ddd;
+                padding: 5px 0;
+                .borderbox {
+                    margin-top: 5px;
+                    display: flex;
+                    .take {
+                        width: 65%;
+                        height: 0.2rem;
+                        padding: 0.04rem;
+                        border: 1px solid #9b0707;
+                        border-radius: 0.12rem;
+                        .line {
+                            height: 100%;
+                            border-radius: 4px;
+                        }
+                    }
+                    .num {
+                        width: 35%;
+                        span:nth-child(1) {
+                            margin: 0 5px;
+                        }
+                        .iconfont {
+                            font-size: 12px;
+                        }
+                    }
+                }
+            }
+        }
+    }
+    .copyright {
+        padding: 10px 0;
+        p {
+            color: #fff;
+        }
+        .copytitle {
+            font-size: 14px;
+            line-height: 2;
+        }
+    }
+    .bottom {
+        text-align: center;
+        background-color: #9b0707;
+        color: #fff;
+    }
+}
\ No newline at end of file
diff --git a/src/libs/util.js b/src/libs/util.js
new file mode 100644
index 0000000..3745754
--- /dev/null
+++ b/src/libs/util.js
@@ -0,0 +1,14 @@
+export default {
+    IsPC: function() {
+        var userAgentInfo = navigator.userAgent,
+            Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"],
+            flag = true;
+        for (var v = 0; v < Agents.length; v++) {
+            if (userAgentInfo.indexOf(Agents[v]) > 0) {
+                flag = false;
+                break;
+            }
+        }
+        return flag;
+    }
+}
\ No newline at end of file
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..8c7bb26
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,43 @@
+// The Vue build version to load with the `import` command
+// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
+import Vue from 'vue'
+import App from './App'
+import router from './router'
+
+
+Vue.config.productionTip = false
+
+
+
+import './assets/js/rem.js'
+import '@/style/base.css'
+import '@/style/iconfont.css'
+
+import kefu from './assets/js/kefu/kefu.js'
+Vue.use(kefu);
+
+import echarts from 'echarts'
+Vue.prototype.$echarts = echarts
+
+import Vant from 'vant';
+import 'vant/lib/index.css';
+Vue.use(Vant);
+
+import util from './libs/util.js';
+Vue.prototype.$util = util;
+
+import store from './store/index.js'
+Vue.prototype.store = store;
+
+import axios from 'axios'
+Vue.prototype.$axios = axios
+Vue.prototype.$axios.defaults.baseURL = process.env.NODE_ENV === 'development' ? '/api' : '/';
+
+
+/* eslint-disable no-new */
+new Vue({
+  el: '#app',
+  router,
+  components: { App },
+  template: '<App/>'
+})
diff --git a/src/pages/home.vue b/src/pages/home.vue
new file mode 100644
index 0000000..9a1d66c
--- /dev/null
+++ b/src/pages/home.vue
@@ -0,0 +1,988 @@
+<template>
+    <div class="home">
+        <div class="homebox" v-if="isloading" @scroll.passive="scroll($event)" id="saveImgAll" ref="imageTofile">
+            <!-- <van-sticky v-if="stickToggle" style="position:relative;">
+                <div class="stick">{{ dataInfo.BasicInfo.CompanyName }} {{ dataInfo.BasicInfo.StockCode }}
+                    <span class="btn pointer" style="position:absolute;right:110px" @click="saveImg()">淇濆瓨鍥剧墖</span>
+                    <span class="right pointer" @click="toSearch()">鏇存崲浼佷笟</span>
+                </div>
+            </van-sticky> -->
+            <van-notify v-model="notifyShow" type="success" class="notify">
+                <van-icon name="bell" style="margin-right: 4px;" />
+                <span>鍥剧墖姝e湪涓嬭浇锛岃绋嶅悗......</span>
+            </van-notify>
+            <div class="head">
+                <p class="flag fontColor">涓�鍥剧湅鎳�</p>
+                <p class="name">{{ dataInfo.BasicInfo.CompanyName }} | {{ dataInfo.BasicInfo.StockCode }}</p>
+                <p class="times">{{ dataInfo.BasicInfo.Title }}</p>
+                <p class="btn pointer" style="margin-right:100px;" @click="saveImg()">淇濆瓨鍥剧墖</p>
+                <p class="btn pointer" @click="toSearch()">鏇存崲浼佷笟</p>
+            </div>
+            <div class="contentbox">
+                <div class="content">
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>01</span>
+                            <span>璐㈠姟鐘跺喌</span>
+                        </div>
+                        <div class="ball clearfix">
+                            <div class="ring left bgColor">
+                                <p class="icon"><i class="iconfont iconrenmingbi"></i></p>
+                                <p class="money">
+                                    {{ dataInfo.BasicFinance.TotalRevenue }}{{
+                                            dataInfo.BasicFinance.TotalRevenueUnit
+                                    }}</p>
+                                <p class="text">钀ヤ笟鎬绘敹鍏�</p>
+                            </div>
+                            <div class="ring right bgColor">
+                                <p class="icon"><i class="iconfont icondiqiu"></i></p>
+                                <p class="money">{{ dataInfo.BasicFinance.ROE }}{{ dataInfo.BasicFinance.ROEUnit }}</p>
+                                <p class="text">鍑�璧勪骇鏀剁泭鐜�</p>
+                            </div>
+                            <div class="line line1">
+                                <p>褰掓瘝鍑�鍒╂鼎</p>
+                                <p class="fontColor">{{
+                                        dataInfo.BasicFinance.MomProfit
+                                }}{{ dataInfo.BasicFinance.MomProfitUnit }}</p>
+                            </div>
+                            <div class="line line2">
+                                <p>鎵i潪褰掓瘝鍑�鍒╂鼎</p>
+                                <p class="fontColor">
+                                    {{ dataInfo.BasicFinance.NoMomProfit }}{{
+                                            dataInfo.BasicFinance.NoMomProfitUnit
+                                    }}</p>
+                            </div>
+                        </div>
+                    </div>
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>02</span>
+                            <span>鏀跺叆涓庡埄娑�</span>
+                        </div>
+                        <p class="sub-title fontColor">{{ dataInfo.IncomeProfits[0].Name }}</p>
+                        <div class="income" style="width: 100%; height: 200px;"></div>
+                        <p class="sub-title fontColor">{{ dataInfo.IncomeProfits[1].Name }}</p>
+                        <div class="isincome" style="width: 100%; height: 200px;"></div>
+                        <p class="sub-title fontColor">{{ dataInfo.IncomeProfits[2].Name }}</p>
+                        <div class="notincome" style="width: 100%; height: 200px;"></div>
+                    </div>
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>03</span>
+                            <span>钀ユ敹鏋勬垚</span>
+                        </div>
+                        <div class="makeup" :style="{ width: '100%', height: makeup.data.length > 0 ? '250px' : 0 }">
+                        </div>
+                        <div v-if="makeup.data.length == 0" style="width: 60px;margin: 12px auto;">
+                            <img :src="img_kong" style="width: 60px;">
+                            <span style="font-size: 15px;">鏆傛棤鏁版嵁</span>
+                        </div>
+                    </div>
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>04</span>
+                            <span>鐩堝埄鑳藉姏</span>
+                        </div>
+                        <div class="ability">
+                            <div class="ability-item" v-for="(item1, index1) in dataInfo.Earningses">
+                                <p class="ability-title bgColor">{{ item1.Title }}</p>
+                                <ul class="list">
+                                    <li v-for="(item2, index2) in item1.EarningsPercents">
+                                        <div class="canvasbox">
+                                            <div class="canvas">
+                                                <van-circle v-model="item2.PercentAbs" :rate="item2.PercentAbs"
+                                                    :speed="100" :text="item2.Percent + '%'" size="1.5rem"
+                                                    :stroke-width="100" :clockwise="item2.PositiveFlag" color="#9b0707">
+                                                </van-circle>
+                                            </div>
+                                        </div>
+                                        <p class="text">{{ item2.Year }}</p>
+                                    </li>
+                                </ul>
+                            </div>
+                            <div class="cost">
+                                <ul class="costlist">
+                                    <li>
+                                        <p v-for="i in 4">
+                                            <span class="right"
+                                                :style="{ 'width': dataInfo.ExpenseRates[i - 1].ExpenseRatePercents[0].Percent + '%' }"></span>
+                                        </p>
+                                    </li>
+                                    <li>
+                                        <div class="percent" v-for="(item1, index1) in dataInfo.ExpenseRates">
+                                            <p class="pertext">{{ item1.ExpenseRatePercents[0].Percent }}%</p>
+                                            <p class="pertitle bgColor">{{ item1.Title }}</p>
+                                            <p class="pertext">{{ item1.ExpenseRatePercents[1].Percent }}%</p>
+                                        </div>
+                                    </li>
+                                    <li>
+                                        <p v-for="i in 4">
+                                            <span class="left"
+                                                :style="{ 'width': dataInfo.ExpenseRates[i - 1].ExpenseRatePercents[1].Percent + '%' }"></span>
+                                        </p>
+                                    </li>
+                                </ul>
+                                <div class="costyear">
+                                    <span class="left">{{ dataInfo.ExpenseRates[0].ExpenseRatePercents[0].Year }}</span>
+                                    <span class="right">{{
+                                            dataInfo.ExpenseRates[0].ExpenseRatePercents[1].Year
+                                    }}</span>
+                                </div>
+                                <p class="tips">娉�: 绠$悊璐圭敤涓笉鍖呭惈鐮斿彂璐圭敤</p>
+                            </div>
+                        </div>
+                    </div>
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>05</span>
+                            <span>鍋垮�鸿兘鍔�</span>
+                        </div>
+                        <div class="ability">
+                            <div class="ability-item">
+                                <p class="ability-title bgColor">{{ dataInfo.DebtReturns[0].Title }}</p>
+                                <ul class="list pay" v-for="(item, index) in dataInfo.DebtReturns">
+                                    <li v-for="(item2, index2) in item.DebtPercents">
+                                        <div class="canvasbox">
+                                            <div class="canvas">
+                                                <van-circle v-model="item2.PercentAbs" :rate="item2.PercentAbs"
+                                                    :speed="100" :text="item2.Percent + '%'" size="1.5rem"
+                                                    :stroke-width="100" :clockwise="item2.PositiveFlag" color="#9b0707">
+                                                </van-circle>
+                                            </div>
+                                        </div>
+                                        <p class="text">{{ item2.Year }}</p>
+                                    </li>
+                                </ul>
+                            </div>
+                        </div>
+                    </div>
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>06</span>
+                            <span>杩愯惀鑳藉姏</span>
+                        </div>
+                        <ul class="runlist">
+                            <li v-for="(item1, index1) in dataInfo.OperateCapabilities"
+                                :class="index1 % 2 == 0 ? 'first' : 'second'">
+                                <div class="icon" v-if="index1 % 2 == 0">
+                                    <img class="left" v-if="index1 == 0" src="../assets/images/b_yunying_1.png"
+                                        height="90%" alt="">
+                                    <img class="left" v-if="index1 == 2" src="../assets/images/b_yunying_3.png"
+                                        height="90%" alt="">
+                                </div>
+                                <div class="text">
+                                    <p class="runtitle fontColor">{{ item1.Title }}</p>
+                                    <div class="detail">
+                                        <a v-for="(item2, index2) in item1.OCPercents">{{ item2.Year }}
+                                            <span v-if="index1 == dataInfo.OperateCapabilities.length - 1"
+                                                class="fontColor">
+                                                {{ item2.Frequency ? `${item2.Frequency}浜縛 : '鏃犵浉鍏虫暟鎹�' }}
+                                            </span>
+                                            <span v-if="index1 != dataInfo.OperateCapabilities.length - 1"
+                                                class="fontColor">
+                                                {{ item2.Frequency ? `${item2.Frequency}娆 : '鏃犵浉鍏虫暟鎹�' }}
+                                            </span>
+                                        </a>
+                                    </div>
+                                </div>
+                                <div class="icon" v-if="index1 % 2 == 1">
+                                    <img class="right" v-if="index1 == 1" src="../assets/images/b_yunying_2.png"
+                                        height="90%" alt="">
+                                    <img class="right" v-if="index1 == 3" src="../assets/images/b_yunying_4.png"
+                                        height="90%" alt="">
+                                </div>
+                            </li>
+                        </ul>
+                    </div>
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>07</span>
+                            <span>{{ dataInfo.StockHolderInfo.Title }}</span>
+                        </div>
+                        <p class="noticeTime fontColor">
+                            鍏憡鏃ユ湡锛�<span>{{ dataInfo.StockHolderInfo.ReportDate }}</span>
+                            鎴嚦鏃ユ湡锛�<span>{{ dataInfo.StockHolderInfo.FinalDate }}</span>
+                        </p>
+                        <ul class="share">
+                            <li v-for="(item, index) in dataInfo.StockHolderInfo.StockHolderUnits">
+                                <p class="sharetitle fontColor">{{ index + 1 }}锛寋{ item.CompanyName }}</p>
+                                <div class="borderbox">
+                                    <div class="take" style="width: 40%;">
+                                        <div class="line bgColor" :style="{ 'width': item.Percent + '%' }"></div>
+                                    </div>
+                                    <div class="num" style="width: 45%;">
+                                        <span class="fontColor">{{ item.Percent }}% {{ item.Amount }}鑲�</span>
+                                    </div>
+                                    <div class="num" style="width: 15%;">
+                                        <span class="fontColor" :style="{ color: item.AmountDiffColor }">{{
+                                                item.AmountDiffInfo
+                                        }}</span>
+                                    </div>
+                                </div>
+                            </li>
+                        </ul>
+                    </div>
+                    <div class="section">
+                        <div class="title bgColor">
+                            <span>08</span>
+                            <span>{{ dataInfo.StockHolderInfoFloat.Title }}</span>
+                        </div>
+                        <p class="noticeTime fontColor">
+                            鍏憡鏃ユ湡锛�<span>{{ dataInfo.StockHolderInfoFloat.ReportDate }}</span>
+                            鎴嚦鏃ユ湡锛�<span>{{ dataInfo.StockHolderInfoFloat.FinalDate }}</span>
+                        </p>
+                        <ul class="share">
+                            <li v-for="(item, index) in dataInfo.StockHolderInfoFloat.StockHolderUnits">
+                                <p class="sharetitle fontColor">{{ index + 1 }}锛寋{ item.CompanyName }}</p>
+                                <div class="borderbox">
+                                    <div class="take" style="width: 40%;">
+                                        <div class="line bgColor" :style="{ 'width': item.Percent + '%' }"></div>
+                                    </div>
+                                    <div class="num" style="width: 45%;">
+                                        <span class="fontColor">{{ item.Percent }}% {{ item.Amount }}鑲�</span>
+                                    </div>
+                                    <div class="num" style="width: 15%;">
+                                        <span class="fontColor" :style="{ color: item.AmountDiffColor }">{{
+                                                item.AmountDiffInfo
+                                        }}</span>
+                                    </div>
+                                </div>
+                            </li>
+                        </ul>
+                    </div>
+                </div>
+                <div class="copyright">
+                    <p class="copytitle">鍏嶈矗澹版槑</p>
+                    <p>
+                        鈥滀笂甯傚叕鍙稿井璐㈡姤鈥濅腑鍚勯」鎸囨爣鍧囨潵婧愪簬浠佽蒋鏅烘姇鐮旂┒闄紝鍏蜂綋鍐呭浠ヤ笂甯傚叕鍙稿叕鍛婁负鍑嗐�傚湪浠讳綍鎯呭喌涓嬩笂杩板唴瀹瑰苟涓嶆瀯鎴愬浠讳綍浜虹殑鎶曡祫寤鸿锛屾湭缁忎粊杞鎶�涔﹂潰璁稿彲锛屼换浣曟満鏋勬垨涓汉涓嶅緱浠ヤ换浣曞舰寮忓鍒躲�佸紩鐢ㄤ笂杩板唴瀹癸紝鍚﹀垯鐢辨閫犳垚鐨勪竴鍒囦笉鑹悗鏋滃強娉曞緥璐d换鐢辩鑷鍒躲�佸紩鐢ㄨ�呮壙鎷呫��
+                    </p>
+                </div>
+            </div>
+            <p class="bottom"><a href="https://www.rensofter.com/index.html" style="color:white;">RenSoft@浠佽蒋绉戞妧</a></p>
+
+        </div>
+        <div class="homebox" v-if="!isloading">
+
+            <div class="loading">
+                <van-loading type="spinner" size="60px" />
+            </div>
+        </div>
+    </div>
+</template>
+
+<script>
+import html2canvas from 'html2canvas'
+import { income, makeUp } from '@/assets/js/options.js'
+import { makeupData, abilityYy } from '@/assets/js/basedata.js'
+import { Sticky, Loading, Circle, Notify } from 'vant'
+
+
+export default {
+    name: 'home',
+    components: {
+        Sticky,
+        Loading,
+        Notify,
+        'van-circle': Circle
+    },
+    data() {
+        return {
+            img_kong: require('../assets/images/kong.png'),
+            income: {}, // 钀ヤ笟鏀跺叆鍙婂悓姣斿閫�
+            isincome: {}, // 褰掓瘝鍑�鍒╂鼎鍙婂悓姣斿閫�
+            notincome: {}, // 褰掓瘝鍑�鍒╂鼎鍙婂悓姣斿閫�
+            makeup: { // 钀ユ敹鏋勬垚
+                charts: '',
+                data: []
+            },
+            ability: [
+                { years: 2017, percent: -101 },
+                { years: 2018, percent: 68 },
+                { years: 2019, percent: 102 }
+            ],
+            stickToggle: false,
+            isPc: null,
+            dataInfo: {},
+            isloading: false,
+            Percent: 0,
+            notifyShow: false
+        }
+    },
+    activated() {
+        let that = this
+        this.isPc = this.$util.IsPC()
+        let data = this.$route.query
+        console.log('鏁版嵁', data);
+        this.getInfo(data)
+    },
+    deactivated() {
+        this.dataInfo = {}
+        this.isloading = false
+        sessionStorage.removeItem('param')
+    },
+    methods: {
+        //淇濆瓨鍥剧墖
+        saveImg() {
+            // this.$Message.success("鍥剧墖姝e湪涓嬭浇,璇风◢绛�");
+            // Notify({
+            //     message: '鍥剧墖姝e湪涓嬭浇,璇风◢绛�',
+            //     color: '#000',
+            //     background: '#fff',
+            // });
+            this.notifyShow = true;
+            setTimeout(() => {
+                this.notifyShow = false;
+            }, 2000);
+            html2canvas(document.querySelector("#saveImgAll")).then((canvas) => {
+                var url = canvas.toDataURL();
+                let a = document.createElement("a");
+                document.body.appendChild(a);
+                a.href = url;
+                let name = this.dataInfo.BasicInfo.CompanyName+this.dataInfo.BasicInfo.Title+'('+ this.dataInfo.BasicInfo.StockCode +')';
+                // let imgName = localStorage.getItem('imgName')
+                a.download = `${name}.jpg`;
+                a.click();
+                a = null;
+            });
+        },
+        toSearch: function () {
+            this.$router.go(-1)
+        },
+        scroll: function (event) {
+            // 婊氬姩鏉¤窛绂诲簳閮ㄧ殑璺濈scrollBottom
+            let scrollBottom = event.target.scrollTop
+            if (this.isPc) {
+                if (scrollBottom >= 400) {
+                    this.stickToggle = true
+                } else {
+                    this.stickToggle = false
+                }
+            } else {
+                if (scrollBottom >= 200) {
+                    this.stickToggle = true
+                } else {
+                    this.stickToggle = false
+                }
+            }
+            // console.log('婊氬姩鐨勪粈涔堝晩', scrollBottom, this.stickToggle);
+        },
+        drawMap: function (id, _data, type) {
+            _data.charts = this.$echarts.init(document.getElementsByClassName(id)[0])
+            if (type == 1) {
+                _data.charts.setOption(income(_data.Titles, _data.Year, _data.Cash, _data.Percent))
+            } else if (type == 2) {
+                _data.charts.setOption(makeUp(_data.data))
+            }
+        },
+        getInfo: function (param) {
+            console.log(param);
+            let that = this
+            let paramsData = {}
+            if (param.id) {
+                paramsData = {
+                    CompanyId: param.id,
+                    ReportType: param.type
+                }
+            } else {
+                paramsData = {
+                    CompanyId: 0,
+                    ReportType: param.ReportType,
+                    TSCode: param.TSCode
+                }
+            }
+            // console.log(paramsData);
+            that.$axios.post('/chinastock/GetchinastockDetail', paramsData).then(function (res) {
+                // console.log(res.data.Data);
+                that.isloading = true
+                let data = res.data.Data
+                that.dataInfo = data
+                
+                // debugger
+                // document.title = that.dataInfo.BasicInfo.CompanyName + '寰储鎶ュ厤璐圭増'
+                that.makeup.data = makeupData(data.RevenueComponent.RevenuePercents)
+                that.$nextTick(function () {
+                    that.drawMap('income', data.IncomeProfits[0].CashPercent, 1)
+                    that.drawMap('isincome', data.IncomeProfits[1].CashPercent, 1)
+                    that.drawMap('notincome', data.IncomeProfits[2].CashPercent, 1)
+                    that.drawMap('makeup', that.makeup, 2)
+                    // 杩愯鑳藉姏
+                    abilityYy(that.dataInfo.OperateCapabilities)
+                })
+            }).catch(function (err) {
+                console.log('璇锋眰澶辫触涔嬪悗', err)
+            })
+        }
+    },
+}
+</script>
+
+<style lang="less" scoped="scoped">
+.home {
+    .homebox {
+        // height: ;
+        overflow: auto;
+
+        .loading {
+            margin-top: 200px;
+            height: 120px;
+            width: 100%;
+            // display: flex;
+            // align-items: center;
+            // justify-content: center;
+            text-align: center;
+        }
+    }
+
+    /deep/ .van-sticky--fixed {
+        max-width: 650px;
+        margin: auto;
+    }
+
+    /deep/ .van-overlay {
+        max-width: 650px;
+        right: 0;
+        margin: auto;
+    }
+
+    /deep/ .van-loading__spinner--spinner i {
+        color: #b30808;
+    }
+
+    .stick {
+        height: 40px;
+        padding: 7px 15px;
+        background-color: #9b0707;
+        color: #fff;
+        line-height: 26px;
+        font-size: 16px;
+
+        span {
+            background: rgba(255, 255, 255, .2);
+            display: inline-block;
+            width: 80px;
+            height: 26px;
+            line-height: 26px;
+            text-align: center;
+            border-radius: 13px;
+            font-size: 14px;
+            color: #fff;
+        }
+    }
+
+    .head {
+        height: 3.6rem;
+        background-image: url(../assets/images/logo1.png);
+        background-size: 2.6rem;
+        padding: 1.2rem 15px 0;
+        background-color: #b30808;
+        background-position: 15px 0.2rem;
+        background-repeat: no-repeat;
+        position: relative;
+
+        .flag {
+            display: inline-block;
+            height: 18px;
+            line-height: 18px;
+            width: auto;
+            padding: 0 10px;
+            background-color: #fff;
+            letter-spacing: 5px;
+        }
+
+        .name {
+            height: .8rem;
+            line-height: .8rem;
+            font-size: 0.5rem;
+            color: #fff;
+            font-weight: 700;
+        }
+
+        .times {
+            height: 1rem;
+            line-height: 1rem;
+            font-size: 0.6rem;
+            color: #fff;
+            font-weight: 700;
+        }
+
+        .btn {
+            display: inline-block;
+            background: rgba(255, 255, 255, .2);
+            width: 80px;
+            height: 26px;
+            line-height: 26px;
+            text-align: center;
+            border-radius: 13px;
+            font-size: 14px;
+            color: #fff;
+            position: absolute;
+            right: 15px;
+            top: 15px;
+        }
+    }
+
+    .contentbox {
+        padding: 15px;
+        background-color: #b30808;
+
+        .content {
+            background-color: #f5f5f5;
+            padding: 15px;
+        }
+    }
+
+    .section {
+        margin-bottom: 50px;
+
+        &:nth-last-of-type(1) {
+            margin-bottom: 0;
+        }
+
+        .title {
+            display: inline-block;
+            height: 30px;
+            line-height: 30px;
+            text-align: center;
+            width: auto;
+            padding: 0 20px;
+            border-radius: 15px;
+
+            span {
+                font-size: 18px;
+                font-weight: 700;
+                color: #fff;
+            }
+
+            span:nth-child(1) {
+                border-right: 1px solid #fff;
+                padding-right: 10px;
+            }
+
+            span:nth-child(2) {
+                padding-left: 10px;
+            }
+        }
+
+        .ball {
+            margin-top: 1rem;
+            position: relative;
+
+            .ring {
+                height: 2rem;
+                width: 2rem;
+                border-radius: 50%;
+                text-align: center;
+                padding: .2rem 0;
+
+                .iconfont {
+                    color: #fff;
+                    font-size: .3rem;
+                }
+
+                p {
+                    color: #fff;
+                }
+
+                p.icon {
+                    line-height: 1;
+                }
+
+                p.money {
+                    font-size: .4rem;
+                    line-height: 1.8;
+                }
+
+                p.text {
+                    font-size: 0.25rem;
+                    line-height: 2;
+                }
+            }
+
+            .line {
+                display: inline-block;
+                position: absolute;
+                left: 2.3rem;
+
+                &::before {
+                    content: "";
+                    display: block;
+                    position: absolute;
+                    left: 0;
+                    height: 1px;
+                    background-color: #d2d2d2;
+                    transform-origin: 0 0;
+                }
+
+                p:nth-child(2) {
+                    font-size: 16px;
+                }
+            }
+
+            .line.line1 {
+                top: -.4rem;
+
+                &::before {
+                    content: "";
+                    display: block;
+                    position: absolute;
+                    left: 0rem;
+                    bottom: -.02rem;
+                    height: 1px;
+                    width: .5rem;
+                    background-color: #d2d2d2;
+                    transform-origin: 0 0;
+                    transform: rotate(135deg);
+                }
+
+                &::after {
+                    content: "";
+                    display: block;
+                    position: absolute;
+                    left: 0rem;
+                    width: 1.8rem;
+                    height: 1px;
+                    background-color: #d2d2d2;
+                }
+            }
+
+            .line.line2 {
+                bottom: 0;
+
+                &::before {
+                    width: .5rem;
+                    bottom: -0.04rem;
+                    left: -.2rem;
+                    transform: rotate(-130deg);
+                }
+
+                &::after {
+                    content: "";
+                    display: block;
+                    position: absolute;
+                    left: -.2rem;
+                    width: 2rem;
+                    height: 1px;
+                    background-color: #d2d2d2;
+                }
+            }
+        }
+
+        .sub-title {
+            text-align: center;
+            padding: 10px 0;
+            font-size: 16px;
+        }
+
+        .ability {
+            margin-top: 20px;
+
+            .ability-item:nth-last-of-type(1) {
+                margin-bottom: 0;
+            }
+
+            .ability-item {
+                width: 100%;
+                margin-bottom: 20px;
+                display: flex;
+
+                .ability-title {
+                    width: 30px;
+                    height: auto;
+                    padding: 0 4px;
+                    writing-mode: vertical-lr;
+                    text-align: center;
+                    font-size: 14px;
+                    color: #fff;
+                    letter-spacing: 2px;
+                }
+
+                .list.pay {
+                    width: 100%;
+                }
+
+                .list {
+                    width: calc(100% - 30px);
+                    display: flex;
+                    flex-wrap: wrap;
+
+                    li:nth-child(3n) .canvasbox,
+                    li:nth-last-of-type(1) .canvasbox {
+                        border-right: none;
+                    }
+
+                    li {
+                        flex: auto;
+                        width: 33.33%;
+                        height: 2rem;
+
+                        .text {
+                            line-height: 0.5rem;
+                            text-align: center;
+                            color: #999;
+                        }
+                    }
+                }
+            }
+
+            .canvasbox {
+                height: 1.5rem;
+                width: 100%;
+                border-right: 1px dashed #666;
+
+                .canvas {
+                    height: 1.5rem;
+                    width: 1.5rem;
+                    margin: auto;
+                    border-radius: 50%;
+                    position: relative;
+                }
+
+                /deep/ .van-circle__text {
+                    color: #9b0707;
+                }
+
+                .mask {
+                    height: 1.5rem;
+                    width: 1.5rem;
+                    transform: rotate(-90deg);
+                    position: absolute;
+                    left: -7px;
+                    top: -4px;
+                }
+            }
+
+            .cost {
+                margin-bottom: 20px;
+
+                .costlist {
+                    display: flex;
+
+                    li:nth-child(1),
+                    li:nth-child(3) {
+                        flex: 1;
+                        padding-top: 3px;
+
+                        p {
+                            margin-bottom: 14px;
+                            height: 12px;
+                            overflow: hidden;
+
+                            span {
+                                background-image: linear-gradient(to right, #9b0707 70%, transparent 30%);
+                                background-size: 10px 10px;
+                                display: block;
+                                height: 100%;
+                                background-position: center center;
+                            }
+                        }
+
+                        p:nth-last-of-type(1) {
+                            margin-bottom: 0;
+                        }
+                    }
+
+                    li:nth-child(2) {
+                        width: 56%;
+                        border-right: 1px dashed #ddd;
+                        border-left: 1px dashed #ddd;
+                        padding: 0 5px;
+                        margin: 0 5px;
+
+                        .percent {
+                            display: flex;
+                            padding: 2px 0;
+                        }
+
+                        p {
+                            line-height: 20px;
+                        }
+
+                        .pertitle {
+                            width: 45%;
+                            text-align: center;
+                            color: #fff;
+                            margin: 0 5px;
+                        }
+
+                        .pertext {
+                            flex: 1;
+                            color: #9b0707;
+                        }
+
+                        .pertext:nth-child(1) {
+                            text-align: right;
+                        }
+                    }
+                }
+
+                .costyear {
+                    height: 20px;
+
+                    span {
+                        display: inline-block;
+                        line-height: 20px;
+                        width: calc(23% - 5px);
+
+                        &:nth-child(1) {
+                            text-align: right;
+                        }
+                    }
+                }
+
+                .tips {
+                    color: #9b0707;
+                }
+            }
+        }
+
+        .runlist {
+            width: 100%;
+
+            li {
+                margin-top: 20px;
+                display: flex;
+
+                .icon {
+                    width: 40%;
+                    height: 90px;
+
+                    img {
+                        margin-top: 10px;
+                    }
+                }
+
+                .text {
+                    width: 60%;
+                    height: 100%;
+                    background-color: #fff;
+                    padding: 5px 0 5px 10px;
+
+                    .runtitle {
+                        height: 15px;
+                        font-weight: bold;
+                        line-height: 15px;
+                    }
+
+                    .detail {
+                        line-height: 75px;
+                        overflow: hidden;
+
+                        a {
+                            display: block;
+                            margin-right: 5px;
+                            height: 25px;
+                            line-height: 25px;
+
+                            span:nth-child(1) {
+                                font-size: 16px;
+                                font-weight: bold;
+                            }
+                        }
+
+                        // a:nth-child(1) {
+                        //     display: block;
+
+                        // }
+                    }
+                }
+            }
+
+            li.first {
+                .text {
+                    border-left: 5px solid #9b0707;
+                }
+            }
+
+            li.second {
+                .text {
+                    border-right: 5px solid #9b0707;
+                }
+            }
+        }
+
+        .noticeTime {
+            line-height: 30px;
+        }
+
+        .share {
+            width: 100%;
+
+            li:nth-last-of-type(1) {
+                border-bottom: none;
+            }
+
+            li {
+                width: 100%;
+                border-bottom: 1px dashed #ddd;
+                padding: 5px 0;
+
+                .borderbox {
+                    margin-top: 5px;
+                    display: flex;
+
+                    .take {
+                        width: 55%;
+                        height: 0.2rem;
+                        padding: 0.04rem;
+                        border: 1px solid #9b0707;
+                        border-radius: 0.12rem;
+
+                        .line {
+                            height: 100%;
+                            border-radius: 4px;
+                        }
+                    }
+
+                    .num {
+                        width: 45%;
+                        position: relative;
+                        bottom: 3px;
+
+                        span:nth-child(1) {
+                            margin: 0 5px;
+                        }
+
+                        .iconfont {
+                            font-size: 12px;
+                        }
+                    }
+                }
+            }
+        }
+    }
+
+    .copyright {
+        padding: 10px 0;
+
+        p {
+            color: #fff;
+        }
+
+        .copytitle {
+            font-size: 14px;
+            line-height: 2;
+        }
+    }
+
+    .bottom {
+        text-align: center;
+        background-color: #9b0707;
+        color: #fff;
+    }
+}
+
+.pointer {
+    cursor: pointer;
+}
+
+.notify {
+    margin-top:20px;
+    width: 200px;
+    border-radius: 18px;
+    margin-left: calc(50% - 125px);
+    color: rgb(51, 32, 216);
+    background-color: #ffffff;
+    // background: rgba(255, 255, 255, 0.4);
+    // opacity: 0.4;
+}
+</style>
diff --git a/src/pages/message.vue b/src/pages/message.vue
new file mode 100644
index 0000000..27c7f2c
--- /dev/null
+++ b/src/pages/message.vue
@@ -0,0 +1,255 @@
+<template>
+    <div class="message">
+        <div class="messagebox">
+            <div class="head">
+                <p class="title">浠佽蒋瀹㈡埛鍏虫��涓績</p>
+                <p class="tips">鎮ㄧ殑瀹濊吹鎰忚鏄垜浠繘姝ョ殑涓嶇鍔ㄥ姏</p>
+                <p class="btn pointer" @click="toSearch()">杩斿洖棣栭〉</p>
+            </div>
+            <!--            鍙嶉鎰忔��-->
+            <div class="contextbox">
+                <div class="content">
+                    <div class="content-top">
+                        <!--濮撳悕-->
+                        <label for="name">
+                            <p>濮撳悕 <span style="color: #E56E6E">*</span></p>
+                        </label>
+                        <input type="text" id="name" v-model="name">
+                        <!--鐢佃瘽-->
+                        <label for="tel">
+                            <p>鐢佃瘽</p>
+                        </label>
+                        <input type="tel" id="tel" v-model="mobile">
+                        <!--閭-->
+                        <label for="email">
+                            <p>閭</p>
+                        </label>
+                        <input type="email" id="email" v-model="email">
+                        <!--鍏徃鍚嶇О-->
+                        <label for="companyName">
+                            <p>鍏徃鍚嶇О</p>
+                        </label>
+                        <input type="text" id="companyName" v-model="company">
+                        <!--鐣欒█-->
+                        <label for="note">
+                            <p>璇锋偍鍦ㄦ鐣欒█,鎴戜滑浼氬敖蹇粰鎮ㄥ洖澶� <span style="color: #E56E6E">*</span></p>
+                        </label>
+                        <textarea rows="3" cols="20" id="note" v-model="note">
+                        </textarea>
+                        <!--                        <input type="text" id="note" v-model="note">-->
+                    </div>
+                    <div class="content-submit">
+                        <input type="submit" class="submit pointer" @click="onSubmit">
+                    </div>
+                </div>
+            </div>
+            <!-- <footer>
+              <a href="http://huiyan.rensofter.com/caib" style="color:white;">RenSoft@浠佽蒋绉戞妧</a>  
+            </footer> -->
+            <p class="bottom"><a href="https://www.rensofter.com/index.html" style="color:white;">RenSoft@浠佽蒋绉戞妧</a></p>
+        </div>
+    </div>
+</template>
+
+<script>
+import axios from 'axios'
+import {Notify} from 'vant';
+
+export default {
+    name: 'message',
+
+    data() {
+        return {
+            height: document.documentElement.clientHeight,
+            name: '',
+            mobile: '',
+            email: '',
+            company: '',
+            note: ''
+        }
+    },
+    methods: {
+        toSearch() {
+            let id = this.countryName
+            this.$router.push('/search')
+        },
+        // 鎻愪氦鏁版嵁璇锋眰
+        onSubmit() {
+            if (this.name.toString().replace(/\s+/g, '') === '') {
+                Notify({type: 'danger', message: '璇疯緭鍏ュ鍚�'});
+                return false
+            }
+            if (!this.mobile && !this.email){
+                Notify({type: 'danger', message: '鐢佃瘽鎴栬�呴偖绠辫嚦灏戝~鍐欎竴澶勶紒'});
+                return false
+            }else{
+                if (this.mobile && !(/^1[3456789]\d{9}$/.test(this.mobile))) {
+                    Notify({type: 'danger', message: '璇疯緭鍏ユ纭墜鏈哄彿'});
+                    return false
+                }
+                if (this.email && !(/^[A-Za-z\d]+([-_.][A-Za-z\d]+)*@([A-Za-z\d]+[-.])+[A-Za-z\d]{2,4}$/.test(this.email))) {
+                    Notify({type: 'danger', message: '璇疯緭鍏ユ纭殑閭'});
+                    return false
+                }
+            }
+            // if (this.company.toString().replace(/\s+/g, '') === '') {
+            //     Notify({type: 'danger', message: '璇疯緭鍏ュ叕鍙稿悕绉�'});
+            //     return false
+            // }
+            if (this.note.toString().replace(/\s+/g, '') === '') {
+                Notify({type: 'danger', message: '璇疯緭鍏ユ剰瑙佹垨寤鸿'});
+                return false
+            }
+            let data = {
+                Name: this.name,
+                Mobile: this.mobile,
+                Email: this.email,
+                Company: this.company,
+                Note: this.note,
+                TypeInfo: 'Haig'
+            }
+            this.$axios.request({
+                url: '/Advise/AddAdvise',
+                data,
+                method: 'post'
+            }).then((res) => {
+                this.name = ''
+                this.mobile = ''
+                this.email = ''
+                this.company = ''
+                this.note = ''
+                Notify({type: 'success', message: res.data.Msg});
+            }, err => {
+                Notify({type: 'danger', message: res.data.Msg});
+            })
+        },
+    },
+    activated() {
+
+    }
+}
+</script>
+
+<style lang="less" scoped>
+.message {
+    height: 100vh;
+    .bottom {
+        text-align: center;
+        background-color: #9b0707;
+        color: #fff;
+    }
+    .messagebox {
+        height: 100%;
+        overflow: auto;
+        background-color: #b30808;
+    }
+
+    .head {
+        background-image: url(../assets/images/logo1.png);
+        background-size: 2.6rem;
+        padding: 1.2rem 15px 0;
+        background-color: #b30808;
+        background-position: 15px 0.2rem;
+        background-repeat: no-repeat;
+        height: 3.4rem;
+        position: relative;
+
+        .title {
+            height: 1rem;
+            line-height: 1rem;
+            font-size: 0.6rem;
+            color: #fff;
+            font-weight: 700;
+            text-align: center;
+        }
+
+        .tips {
+            text-align: right;
+            font-size: 16px;
+            line-height: 2.5;
+            color: #fff;
+        }
+
+        .btn {
+            display: inline-block;
+            background: rgba(255, 255, 255, .2);
+            width: 80px;
+            height: 26px;
+            line-height: 26px;
+            text-align: center;
+            border-radius: 13px;
+            font-size: 14px;
+            color: #fff;
+            position: absolute;
+            right: 15px;
+            top: 15px;
+        }
+    }
+
+    .contextbox {
+        padding: 15px;
+        background-color: #b30808;
+        height: calc(100% - 170px);
+
+        .content {
+            background-color: #f5f5f5;
+            padding: 15px;
+        }
+    }
+}
+
+.content-top {
+    background-color: white;
+    width: 100%;
+    padding: 15px 16px 0;
+    box-sizing: border-box;
+}
+
+input {
+    border: 1px solid #ccc;
+    margin: 0 0 13px;
+    height: 25px;
+    width: 100%;
+}
+
+textarea {
+    border: 1px solid #ccc;
+    width: 100%;
+    line-height: 20px;
+    margin: 0 0 13px;
+}
+
+.content-submit {
+    padding-bottom: 18px;
+    background-color: #fff;
+}
+
+.content-submit .submit {
+    width: 100%;
+    text-align: center;
+    height: 44px;
+    line-height: 42px;
+    color: white;
+    font-size: 16px;
+    box-sizing: border-box;
+    background-color: #ee0a24;
+    border-color: #ee0a24;
+}
+
+footer {
+    width: 633px;
+    margin: 0 auto;
+    color: white;
+    text-align: center;
+    background-color: #9b0707;
+    line-height: 30px;
+    font-size: 14px;
+    position: fixed;
+    // left: 0;
+    // right: 0;
+    bottom: 0;
+}
+.pointer{
+    cursor: pointer;
+}
+</style>
diff --git a/src/pages/search.vue b/src/pages/search.vue
new file mode 100644
index 0000000..7d200f9
--- /dev/null
+++ b/src/pages/search.vue
@@ -0,0 +1,465 @@
+<template>
+    <div class="search">
+        <div class="logo">
+            <img src="../assets/images/logo1.png" alt="">
+        </div>
+        <div class="name">涓婂競鍏徃寰储鎶�</div>
+        <div class="input">
+            <div class="draw pointer" @click="pickShow">{{ selectVal.text }} <i
+                    class="iconfont iconsanjiaojiantoutriangular"></i></div>
+            <div class="keyval">
+                <input type="text" placeholder="璇疯緭鍏ヨ偂绁ㄤ唬鐮佹垨鑲$エ鍚嶇О" v-model="searchVal">
+            </div>
+        </div>
+        <transition name="van-slide-down">
+            <ul v-show="visible" class="list">
+                <li class="pointer" v-for="(item, index) in serachList" @click="tohome(item)" :key='index'>
+                    <span>{{ item.StockName }}</span>
+                    <span>{{ item.StockCode }}</span>
+                </li>
+            </ul>
+        </transition>
+
+        <van-popup class="pick" v-model="pickToggle" position="bottom" :style="{ height: 'auto', width: '100%' }">
+            <van-picker show-toolbar :columns="columns" @confirm="confirm" @cancel="pickHide" />
+        </van-popup>
+        <div class="clearfix" style="margin-top: 12px;position: relative;min-height: 14vh;">
+            <div class="loadingbox" v-if="loading1">
+                <div class="loading">
+                    <van-loading type="spinner" size="60px" />
+                </div>
+            </div>
+            <div style="width: 18%;float: left;font-size: 14px;font-weight: bold;color: white;text-align: center;">璐㈡姤棰勫憡
+            </div>
+            <div class="clearfix" style="width: 81%;float: right;margin-top: 2px;">
+                <p v-for="(item, index) in companyList" :key="`companyList_${index}`" @click="quickTurn(item)"
+                    style="width: 33.33%;float: left;color: white;">{{ `${item.ts_name}(${item.pre_date_show})` }}</p>
+                <p v-if="showTips1" style="width: 50%;float: left;color: white;">鏆傛棤鏁版嵁</p>
+            </div>
+        </div>
+        <div class="clearfix" style="margin-top: 12px;position: relative;">
+            <div class="loadingbox" v-if="loading2">
+                <div class="loading">
+                    <van-loading type="spinner" size="60px" />
+                </div>
+            </div>
+            <div style="width: 18%;float: left;">
+                <p style="font-size: 14px;font-weight: bold;color: white;text-align: center;">璐㈡姤棰勫憡</p>
+                <p style="font-size: 14px;font-weight: bold;color: white;text-align: center;"> 鍗婂浣�</p>
+            </div>
+            <div class="clearfix" style="width: 81%;float: right;margin-top: 2px;">
+                <p v-for="(item, index) in companyList_Semi" :key="`companyList_${index}`" @click="quickTurn(item)"
+                    style="width: 33.33%;float: left;color: white;">{{ `${item.ts_name}(${item.pre_date_show})` }}</p>
+                <p v-if="showTips2" style="width: 50%;float: left;color: white;">鏆傛棤鏁版嵁</p>
+            </div>
+        </div>
+        <div class="to-message pointer" style="max-width: 630px;">
+            <u @click="clickToMessage">鎵句笉鍒版兂瑕佺殑鏁版嵁? 娆㈣繋缁欐垜浠暀瑷�</u>
+        </div>
+    </div>
+</template>
+
+<script>
+import {
+    Popup,
+    Picker,
+    Loading
+} from 'vant';
+import wxapi from '@/assets/js/wxapi.js';
+
+export default {
+    name: 'search',
+    components: {
+        Popup,
+        Loading
+    },
+    data() {
+        return {
+            loading1: true,
+            loading2: true,
+            columns: [
+                {
+                    value: 0,
+                    text: '骞存姤'
+                },
+                {
+                    value: 1,
+                    text: '鍗婂勾鎶�'
+                },
+                {
+                    value: 2,
+                    text: '涓�瀛f姤'
+                },
+                {
+                    value: 3,
+                    text: '涓夊鎶�'
+                }
+            ],
+            pickToggle: false,
+            selectVal: {},
+            searchVal: '',
+            serachList: [],
+            visible: false,
+            companyList: [],//鍏徃鍒楄〃
+            companyList_Semi: [],//鍏徃鍒楄〃(鍗婂浣�)
+            showTips1: false,//鏄惁鏄剧ず鏆傛棤鏁版嵁鎻愮ず
+            showTips2: false,//鏄惁鏄剧ず鏆傛棤鏁版嵁鎻愮ず
+        }
+    },
+    activated() {
+        this.getCompanyList()
+        this.getCompanyList('Semi')
+        this.getDefaultReportType()
+        this.selectVal = this.columns[0];
+        // wxapi.wxRegister(data, option);
+        // this.getShareInfo('杩欓噷鏄爣棰樺晩鍟婂晩鍟婂晩鍟�', location.href.split('#')[0]);
+    },
+    deactivated: function () {
+        this.selectVal = {};
+        this.searchVal = '';
+        this.serachList = [];
+    },
+    methods: {
+        /**
+         * 鑾峰彇榛樿璐㈡姤绫诲瀷
+         */
+        getDefaultReportType() {
+            this.$axios.post('/DisclosureDate/GetDefaultReportType', {
+                TypeInfo: 'month'
+            }).then((res) => {
+                this.selectVal = this.columns[res.data.Data];
+            }).catch((err) => {
+                this.selectVal = {}
+            });
+        },
+        /**
+         * 鑾峰彇鍏徃鍒楄〃
+         */
+        getCompanyList(Plate) {
+            let data = {
+                TypeInfo: 'month'
+            }
+            if (Plate == 'Semi') {
+                data.Plate = 'Semi'
+                this.loading2 = true
+            } else {
+                this.loading1 = true
+            }
+            let that = this
+            this.$axios.post('/DisclosureDate/GetDisclosureDateList', data).then((res) => {
+                if (res.data.Data && res.data.Data.length > 0) {
+                    if (Plate == 'Semi') {
+                        that.showTips2 = false
+                        this.companyList_Semi = res.data.Data;
+                    } else {
+                        that.showTips2 = false
+                        this.companyList = res.data.Data;
+                    }
+                } else {
+                    if (Plate == 'Semi') {
+                        that.showTips2 = true
+                        this.companyList_Semi = []
+                    } else {
+                        that.showTips1 = true
+                        this.companyList = []
+                    }
+                }
+                if (Plate == 'Semi') {
+                    this.loading2 = false
+                } else {
+                    this.loading1 = false
+                }
+            }).catch((err) => {
+                if (Plate == 'Semi') {
+                    this.loading2 = false
+                    that.showTips2 = true
+                    this.companyList_Semi = []
+                } else {
+                    this.loading1 = false
+                    that.showTips1 = true
+                    this.companyList = []
+                }
+            });
+        },
+        // getShareInfo: function(tit, fxUrl) { //濡傛灉鍒嗕韩鐨勫唴瀹逛細鏍规嵁鎯呭喌鍙樺寲锛岄偅涔堣繖閲屽彲浠ヤ紶鍏ュ垎浜爣棰樺強url
+        //     var data = { //璇锋眰鍙傛暟
+        //         url: this.jmUrl,
+        //         token: this.token,
+        //         code: this.code
+        //     };
+        //     //杩欓噷鎴戝啓浜嗕竴涓叕鐢ㄧ殑鎺ュ彛璇锋眰js锛岃繖閲屾甯竌xios璇锋眰灏卞彲浠ワ紝鍙鎷垮埌鏁版嵁閮藉彲浠�
+        //     getShare(data).then(res => {
+        //         localStorage.setItem("jsapi_ticket", res.jsapi_ticket);
+        //         //鎷垮埌鍚庣缁欑殑杩欎簺鏁版嵁
+        //         let appId = res.appId;
+        //         let timestamp = res.timestamp;
+        //         let nonceStr = res.noncestr;
+        //         let signature = res.signature;
+        //         wx.config({
+        //             debug: false, // 寮�鍚皟璇曟ā寮�,璋冪敤鐨勬墍鏈塧pi鐨勮繑鍥炲�间細鍦ㄥ鎴风alert鍑烘潵锛岃嫢瑕佹煡鐪嬩紶鍏ョ殑鍙傛暟锛屽彲浠ュ湪pc绔墦寮�锛屽弬鏁颁俊鎭細閫氳繃log鎵撳嚭锛屼粎鍦╬c绔椂鎵嶄細鎵撳嵃銆�
+        //             appId: 'wx56a464621c6314a', // 蹇呭~锛屽叕浼楀彿鐨勫敮涓�鏍囪瘑锛屽~鑷繁鐨勶紒
+        //             timestamp: timestamp, // 蹇呭~锛岀敓鎴愮鍚嶇殑鏃堕棿鎴筹紝鍒氭墠鎺ュ彛鎷垮埌鐨勬暟鎹�
+        //             nonceStr: nonceStr, // 蹇呭~锛岀敓鎴愮鍚嶇殑闅忔満涓�
+        //             signature: signature, // 蹇呭~锛岀鍚嶏紝瑙侀檮褰�1
+        //             jsApiList: [
+        //                 'onMenuShareTimeline',
+        //                 'onMenuShareAppMessage'
+        //             ]
+        //         })
+
+        //         wx.ready(function() {
+        //             //鍒嗕韩鍒版湅鍙嬪湀
+        //             wx.onMenuShareTimeline({
+        //                 title: tit, // 鍒嗕韩鏃剁殑鏍囬
+        //                 link: fxUrl, // 鍒嗕韩鏃剁殑閾炬帴
+        //                 imgUrl: _this.pic, // 鍒嗕韩鏃剁殑鍥炬爣
+        //                 success: function() {
+        //                     console.log("鍒嗕韩鎴愬姛");
+        //                 },
+        //                 cancel: function() {
+        //                     console.log("鍙栨秷鍒嗕韩");
+        //                 }
+        //             });
+        //             //鍒嗕韩缁欐湅鍙�
+        //             wx.onMenuShareAppMessage({
+        //                 title: tit,
+        //                 desc: '杩欎欢鍟嗗搧缁堜簬浼樻儬浜嗭紝姣忎欢鍙渶5555555555555555555鍏�',
+        //                 link: fxUrl,
+        //                 imgUrl: _this.pic,
+        //                 type: '',
+        //                 dataUrl: '',
+        //                 success: function() {
+        //                     console.log("鍒嗕韩鎴愬姛");
+        //                 },
+        //                 cancel: function() {
+        //                     console.log("鍙栨秷鍒嗕韩");
+        //                 }
+        //             });
+        //         })
+        //     })
+        // },
+        pickShow: function () {
+            this.pickToggle = true;
+        },
+        pickHide: function () {
+            this.pickToggle = false;
+        },
+        confirm: function (value) {
+            this.selectVal = value;
+            this.pickHide();
+        },
+        tohome: function (item) {
+            // sessionStorage.setItem('param', JSON.stringify({
+            //     id: item.id,
+            //     type: this.selectVal.value
+            // }));
+            // this.$router.push('/home')
+            console.log(item);
+            console.log(this.selectVal);
+            let imgName = item.StockName + '(' + item.TSCode + ')' + this.selectVal.text
+
+            let routeUrl=this.$router.resolve({
+                path: "home",
+                 query: {
+                    name: item.StockName,
+                    TSCode: item.TSCode,
+                    selectVal: this.selectVal.text,
+                    id: item.id,
+                    type: this.selectVal.value
+                }
+            })
+            window.open(routeUrl.href, '_blank');
+            // localStorage.setItem('imgName', imgName)
+            // this.$router.push({
+            //     name: 'home',
+            //     query: {
+            //         id: item.id,
+            //         type: this.selectVal.value
+            //     }
+            // })
+        },
+        /**
+         * 蹇�熸煡鐪�
+         */
+        quickTurn(item) {
+            this.$router.push({
+                name: 'home',
+                query: {
+                    id: 0,
+                    ReportType: item.report_type,
+                    TSCode: item.ts_code,
+                }
+            })
+        },
+        search: function () {
+            if (!this.searchVal) {
+                return false
+            }
+            let that = this;
+            if (this.searchVal) {
+                this.visible = true;
+            } else {
+                this.visible = false;
+            }
+            this.$axios.post('/ChinaStock/GetChinaStockList', {
+                SearchInfo: that.searchVal,
+                ReportType: that.selectVal.value
+            }).then(function (res) {
+                that.serachList = res.data.Data;
+            }).catch(function (err) {
+                console.log('璇锋眰澶辫触涔嬪悗', err);
+            });
+        },
+        clickToMessage() {
+            // this.$router.push('/message')
+            onclick = ClinkChatWeb.openSessionWindow()
+        }
+    },
+    watch: {
+        searchVal() {
+            setTimeout(() => {
+                console.log('鐩戝惉鏀瑰彉');
+                this.search()
+            }, 20)
+        }
+    },
+}
+</script>
+
+<style lang="less" scoped>
+.search {
+    // background: linear-gradient(to top, #E40A0A, #E56E6E);
+    background: linear-gradient(to top, #03a2e9, #09a2e9);
+    height: 100vh;
+    padding: 150px 15px 0;
+    position: relative;
+
+    .logo {
+        height: 0.8rem;
+
+        img {
+            display: block;
+            height: 100%;
+            margin: auto;
+        }
+    }
+
+    .name {
+        font-size: 36px;
+        text-align: center;
+        font-weight: bolder;
+        color: #fff;
+        margin: 10px 0;
+    }
+
+    .input {
+        height: 40px;
+        width: 100%;
+        display: flex;
+        background-color: #fff;
+        border-radius: 20px;
+
+        .draw {
+            width: 100px;
+            height: 100%;
+            line-height: 40px;
+            text-align: center;
+
+            i.ionfont {
+                font-size: 12px;
+            }
+        }
+
+        .keyval {
+            width: calc(100% - 100px);
+
+            input {
+                display: block;
+                width: 100%;
+                height: 100%;
+                background-color: transparent;
+            }
+        }
+    }
+
+    .list {
+        padding: 0 10px;
+        width: 80%;
+        max-height: 50%;
+        overflow: auto;
+        margin: 0 auto;
+        background-color: #fff;
+        border-bottom-right-radius: 6px;
+        border-bottom-left-radius: 6px;
+        position: absolute;
+        left: 10%;
+        z-index: 99;
+
+        li:nth-last-of-type(1) {
+            border-bottom: none;
+        }
+
+        li {
+            height: 40px;
+            line-height: 40px;
+            width: 100%;
+            border-bottom: 1px solid #ddd;
+
+            span:nth-child(1) {
+                font-size: 14px;
+                margin-right: 10px;
+            }
+
+            span:nth-child(2) {
+                color: #666;
+            }
+        }
+    }
+
+    .pick {
+        max-width: 650px;
+        right: 0;
+        margin: auto;
+    }
+
+    .to-message {
+        width: 100%;
+        text-align: center;
+        padding: 10px 0;
+        position: fixed;
+        bottom: 10px;
+        // background-color: #e41616;
+        z-index: 9;
+
+        u {
+            color: white;
+            padding-bottom: 2px;
+            line-height: 14px;
+        }
+    }
+}
+
+.loadingbox {
+    position: absolute;
+    width: 140px;
+    height: 140px;
+    overflow: auto;
+    top: 0;
+    left: 100px;
+    z-index: 999999;
+    //background-color: darkgray;
+    //opacity: 0.9;
+
+    .loading {
+        height: 100%;
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        z-index: 99999;
+    }
+}
+
+.pointer {
+    cursor: pointer;
+}
+</style>
diff --git a/src/router/index.js b/src/router/index.js
new file mode 100644
index 0000000..36e3411
--- /dev/null
+++ b/src/router/index.js
@@ -0,0 +1,29 @@
+import Vue from 'vue'
+import Router from 'vue-router'
+
+import search from '@/pages/search.vue'
+import home from '@/pages/home'
+import message from '@/pages/message'
+
+Vue.use(Router)
+
+export default new Router({
+    routes: [{
+        path: '/',
+        name: 'search',
+        redirect: '/search',
+        component: search
+    }, {
+        path: '/search',
+        name: 'search',
+        component: search
+    }, {
+        path: '/home',
+        name: 'home',
+        component: home
+    }, {
+        path: '/message',
+        name: 'message',
+        component: message
+    }]
+})
diff --git a/src/store/index.js b/src/store/index.js
new file mode 100644
index 0000000..944043c
--- /dev/null
+++ b/src/store/index.js
@@ -0,0 +1,8 @@
+// let serverUrl = '/api/';
+let serverUrl = 'http://47.92.245.94:8090/';
+// let serverUrl = 'http://huiyan.rensofter.com/';
+
+export default {
+    search: serverUrl + 'chinastock/GetchinastockList',
+    home: serverUrl + 'chinastock/GetchinastockDetail'
+}
diff --git a/src/style/base.css b/src/style/base.css
new file mode 100644
index 0000000..f1f13ab
--- /dev/null
+++ b/src/style/base.css
@@ -0,0 +1,38 @@
+* {
+    padding: 0;
+    margin: 0;
+    font-size: 12px;
+    list-style: none;
+    box-sizing: border-box;
+    border: none;
+    color: #333;
+}
+body{
+    background: #03a2e9;
+}
+
+.fontColor {
+    color: #9b0707;
+}
+
+.bgColor {
+    background-color: #9b0707;
+}
+
+.left {
+    float: left;
+}
+
+.right {
+    float: right;
+}
+
+.clearfix:before,
+.clearfix:after {
+    display: table;
+    content: '';
+}
+
+.clearfix:after {
+    clear: both;
+}
diff --git a/src/style/iconfont.css b/src/style/iconfont.css
new file mode 100644
index 0000000..8efef00
--- /dev/null
+++ b/src/style/iconfont.css
@@ -0,0 +1,36 @@
+@font-face {font-family: "iconfont";
+  src: url('//at.alicdn.com/t/font_1720629_i7vs78nm9pj.eot?t=1586145292814'); /* IE9 */
+  src: url('//at.alicdn.com/t/font_1720629_i7vs78nm9pj.eot?t=1586145292814#iefix') format('embedded-opentype'), /* IE6-IE8 */
+  url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAUAAAsAAAAACdQAAAS0AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDSAqGNIUsATYCJAMYCw4ABCAFhG0Haxt1CCOSDk6Y7J+HsbHy8Mw5y7tN9zcVuSLzTFNHQ1fDd58jqNb+7dndu4fqE6mvgMsTBkgCgUIblQgZKSJUyoeFvwD46b3szTLdqVMSQWV/9SgvDtbWph3bqAjFkpwH3+UfyH/Dj9AQOv7nmOnS2ob5geaSHbQ3Go8HNKCoiwqgA73G4wOjcz8V8ByRDsTvkwl0zVgQu/unLmkrsCoQjx/cu6Gd0ykt5NBW1jU7FvFVpZ0+p+/4Er59/LMWbZIqw4bn7u7dtvnz57P8qfl02Ufgz2eBtBsZCyjEu1rbWzmOLci6xm8ojtHXlpSffqafSz/Xfz5rmpwIrtCnf3mESpElosbK+jz2VLziJ1cjDHlieXXyJVajsPJ1ViOz8mdsiwTqGReM4z9xEXCzbCERZWCo5A3652qaYDmRHEEIhYRA4E+QJwjUOXdCrajEe9jZPvVi9TmTmpql8/o7eSJ+dlpGPh/zcjLTO8XPKckLWvaKlb5MAxF8ScSKg5did2MG0yymKrEkWiJxltAgxkuldruJ9nqclQbcZHaaoFUyx22yWBm9frvWGvM97mj1fnqf5zzNpTtPelC7xVYH3JfJbGfZOeonnPf5HpXmHRYbsTL2bL6ExiulAfvzJCySMmK2D3CQlrdC4n8oMqrCElrGIgzsZlhMnfE+JjPNW7DjhDs63evy6w7pbtqlu9Zib94RiftGqcHuwsViq32ywIMergPOJWSJBtjchAdkiZmZagnZosqwhW+B8cWMGp+aF+WnE84nwNv0tNwo993mGRnx7xCbY8dt/F+vdKlo0m4S5UxU1VRN5k7aTpRR/X96Kh5WPuwe+g9fGp0QdDtIuyT7g2UCYhURE7dgtIJW1TDWuXEoJ9s32kczRp1Q5OkXXXpERVuE6aMEjcFFa3aSRusoG2bksezL0+X/n2oOqExHOj5a8263WfimnWc4GydD7N6tUaNcVtaKzIs15gOcU0vInqdAJqCkBermxfjPzJZYiIOJEAhWUI3d4xcevgDiyNgghR0bNMyLRX+y1eIh2RDiyZiiJwQmDDqxI3amGuINUTIZn/1nxod4u3fb/6da6x5nQSpF2dzQGFq45xTH1Z1Mdf2/2Sxs97s+vDtYsPk95UqueQcKmJo3OF4AzYp0gpsRLl+brnJzAcgfuOj/9jPwbdsj61wlvx8E5gHgx/YL8mxN01eA+wngTyOH3vx/F79nTzGF0NdF7+4uFUBtHaiCL0XSpQHwn3INeDiXYrh3IYGgnkIipA8ZwQxZsHZQwdygRgiELluRu/eQGoALFTkAc4YZQJRtAw5Fx4BL2RUkD/sA+DR8AAHl4IIIg8gDYlUWQZdQQaM4QPcH6jlZx6iXqPiKbglGssKQ+kSZKQjl0kox2WJCmWOT+eMqVQtWOELDnA5DYJiER+w1e6lOdb58t+6Zsp7j6iJU0CgOoPsD6jlZf7heSq9/RbcEIy1dDdYnykzjg1Km6IFsZalX173cZv64iqoFVjiChrFgoBiDqX7eiL1mXiMiUy3n+tm+smx9RXyVR6ALh6wjRY4SVdTRovXKpJEMuxlJeVEJeY9LfHQKZOBvOnFHKc+CKVJyHe2L6E3LagU=') format('woff2'),
+  url('//at.alicdn.com/t/font_1720629_i7vs78nm9pj.woff?t=1586145292814') format('woff'),
+  url('//at.alicdn.com/t/font_1720629_i7vs78nm9pj.ttf?t=1586145292814') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
+  url('//at.alicdn.com/t/font_1720629_i7vs78nm9pj.svg?t=1586145292814#iconfont') format('svg'); /* iOS 4.1- */
+}
+
+.iconfont {
+  font-family: "iconfont" !important;
+  font-size: 16px;
+  font-style: normal;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+.iconsanjiaojiantoutriangular:before {
+  content: "\e600";
+}
+
+.iconarrdown:before {
+  content: "\e66f";
+}
+
+.iconarrdown1:before {
+  content: "\e633";
+}
+
+.iconrenmingbi:before {
+  content: "\e62e";
+}
+
+.icondiqiu:before {
+  content: "\e602";
+}
diff --git a/static/.gitkeep b/static/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/static/.gitkeep

--
Gitblit v1.8.0