@ganwei-web/ganwei-pc-cli 6.2.5 → 6.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ganwei-iotcenter-index-6.2.2/.gitignore +31 -0
- package/ganwei-iotcenter-index-6.2.2/.npmrc +1 -0
- package/ganwei-iotcenter-index-6.2.2/.nvmrc +1 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/cleanNodeModule.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/gitClone.js +45 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/moduleConfiguration.json +9 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/updateModule.cjs +30 -0
- package/ganwei-iotcenter-index-6.2.2/init.cjs +30 -0
- package/ganwei-iotcenter-index-6.2.2/package.json +46 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.babelrc +4 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.eslintrc.cjs +176 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.gitignore +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.prettierrc.cjs +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/build/enteryJson.js +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/components.d.ts +87 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/index.html +31 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/package.json +90 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/element-plus/index.css +16959 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/equipStatus.css +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/reset-6-1.css +180 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/reset.css +1992 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.css +4195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.json +7324 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/http/createAxios.js +434 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/head-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-dark.svg +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-green.svg +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-light.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-dark.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-green.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-light.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-green.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-light.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-green.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-light.svg +12 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-nopage-dark.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-nopage-green.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-nopage-light.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-dark.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-green.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-light.svg +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-dark.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-green.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-light.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-upgrade.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user-green.svg +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user-light.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-dark.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-green.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/login-bg.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/menu-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/renew-message-dark.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/renew-message-green.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/renew-message-light.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/right-close.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/right-open.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-fullscreen.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-guzhang.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-jinggao.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-shezhi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-xinxi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-zichan.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/unread-message-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/unread-message-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/unread-message-light.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/webconfig-location.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/axios.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/drag.js +354 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/echarts.min.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js.gz +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/enc-base64-min.js +86 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/filereader.js +455 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/font.js +56 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getLanguage.js +232 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getUserPermissionList.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/h5player.min.js +311 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jquery-3.4.1.min.js +4189 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jquery.slim.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jszip.min.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/liveplayer-lib.min.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/moment.js +5670 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/pptxjs.min.js +14105 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/tXml.js +244 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vuex.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/json/RAMScope.json +201 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/json/config.json +155 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/json/snapshot.json +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.css +246 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.js +5384 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/green-6-1.css +357 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/App.vue +88 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/auto-import.d.ts +61 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/asideMenu/contractMenu.vue +216 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/asideMenu/menu.vue +195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/asideMenu/topNav.vue +256 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/contextMenu/index.js +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/contextMenu/index.vue +113 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.js +205 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.scss +248 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.vue +112 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/images/appconnect.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/index.vue +282 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.js +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.vue +10 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/equipAlarmDialog/index.vue +203 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/expirationReminder/index.vue +108 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.js +50 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.vue +10 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.js +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.scss +137 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.vue +23 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/ApprovalDialog.vue +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.js +331 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.scss +257 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.vue +61 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/RenewDialog.vue +97 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.js +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.scss +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.vue +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/renew.vue +278 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.js +45 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.scss +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.vue +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.js +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.scss +94 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.vue +35 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.js +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.scss +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.vue +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.js +108 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.scss +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.vue +33 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/forceEdit.js +78 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.js +265 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.scss +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.vue +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.js +94 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.scss +110 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.vue +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.js +68 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.vue +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.js +178 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.scss +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.vue +46 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/safeModeDialog/index.vue +195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.js +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.scss +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.vue +35 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.js +240 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.scss +158 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.vue +50 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.js +63 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.scss +40 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.vue +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.js +398 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.scss +136 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.vue +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.js +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.scss +44 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.vue +21 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/inputPassword/index.vue +65 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/isDebug/warning.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/noAccess/noAccess.vue +78 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/noAccess/noPage.vue +68 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/sceneMonitor/index.js +120 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/toast/index.js +65 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/toast/index.vue +136 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/unreadMsg/listItem.vue +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/unreadMsg/unread.vue +265 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/hostMap.js +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/main.js +51 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/mixins/judgePermission.js +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/publish/pub.ts +28 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/request/api/frame.js +148 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/request/api.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/router.js +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/store.js +228 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/types.js +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/MFEManager.js +156 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/gwEquipCache.js +325 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/gwSignalr.js +66 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/historyExport.js +158 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/setStorage.js +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/Index.vue +81 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/index.js +291 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +257 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +54 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/jumpIframe/queryParser.js +47 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/tsconfig.json +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/vite.config.ts +270 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.babelrc +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.eslintrc.cjs +162 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.gitignore +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/build/enteryJson.js +72 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/index.html +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/package.json +84 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/element-plus/index.css +16959 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/equipStatus.css +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/reset-6-1.css +180 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/reset.css +1992 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.css +4195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.json +7324 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/http/createAxios.js +434 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/head-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-dark.svg +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-green.svg +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-light.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-dark.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-green.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-light.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-green.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-light.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-green.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-light.svg +12 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-nopage-dark.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-nopage-green.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-nopage-light.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-dark.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-green.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-light.svg +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-dark.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-green.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-light.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-upgrade.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user-green.svg +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user-light.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-dark.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-green.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/login-bg.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/menu-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/renew-message-dark.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/renew-message-green.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/renew-message-light.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/right-close.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/right-open.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-fullscreen.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-guzhang.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-jinggao.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-shezhi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-xinxi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-zichan.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/unread-message-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/unread-message-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/unread-message-light.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/webconfig-location.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/axios.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/drag.js +354 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/echarts.min.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/element-ui/index.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/element-ui/index.js.gz +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/enc-base64-min.js +86 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/filereader.js +455 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/font.js +56 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getLanguage.js +232 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getUserPermissionList.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/h5player.min.js +311 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jquery-3.4.1.min.js +4189 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jquery.slim.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jszip.min.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/liveplayer-lib.min.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/moment.js +5670 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/pptxjs.min.js +14105 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/tXml.js +244 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vuex.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/json/RAMScope.json +201 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/json/config.json +155 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/json/snapshot.json +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/lib/treeV2/treeV2.css +246 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/lib/treeV2/treeV2.js +5384 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/green-6-1.css +357 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/App.vue +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/alertHandle.scss +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/browserScroll.scss +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/btnHandle.scss +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/containerHandle.scss +402 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/dialogStyle.scss +43 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/equipStatus.scss +88 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/index.scss +1358 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/inputStyle.scss +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/listHandle.scss +113 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/login.scss +335 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/mainInfo.scss +297 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/maintenanceInfo.scss +199 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/style.css +921 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/tableHandle.scss +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/txtHandle.scss +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_back.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_front.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_left.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_right.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_top.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/login-sso-error.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/logo-bg.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/declaration/declaration.scss +119 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/declaration/declaration.vue +109 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/declaration/declarationPacts.vue +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/loginBg.vue +281 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/checkEmailContainer.vue +134 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/inputEmailContainer.vue +128 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/modifyPasswordContainer.vue +138 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification - /345/211/257/346/234/254.vue" +4 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification.vue +223 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/directive/loadMore/loadMore.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/hostMap.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/main.js +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/mixins/setDefaultLanguage.js +87 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/request/api/login.js +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/request/api.js +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/router.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/types.js +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/formValidate.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/isApp.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/language.js +45 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/myUtils.js +646 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/timeFormat.js +23 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/timesYMDHMS.js +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/js/mainInfo.js +374 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/js/maintenanceInfo.js +202 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/login.vue +459 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/mainInfo.vue +62 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/maintenanceInfo.vue +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/ssoLogin.vue +239 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/ssoLogout.vue +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/vite.config.ts +237 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.babelrc +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.eslintrc.cjs +162 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.gitignore +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/enteryJson.js +64 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-addInfo-html.js +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/index.html +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/package.json +94 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/element-plus/index.css +16959 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/equipStatus.css +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/reset-6-1.css +180 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/reset.css +1992 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.css +4195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.json +7324 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/http/createAxios.js +434 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/head-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-alarmIcon-dark.svg +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-alarmIcon-green.svg +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-alarmIcon-light.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-apppreview-dark.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-apppreview-green.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-apppreview-light.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull-green.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull-light.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen-green.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen-light.svg +12 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-nopage-dark.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-nopage-green.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-nopage-light.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-normalIcon-dark.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-normalIcon-green.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-normalIcon-light.svg +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping-dark.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping-green.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping-light.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-upgrade.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user-green.svg +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user-light.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-warningIcon-dark.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-warningIcon-green.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-warningIcon-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/login-bg.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/menu-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/renew-message-dark.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/renew-message-green.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/renew-message-light.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/right-close.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/right-open.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-fullscreen.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-guzhang.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-jinggao.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-shezhi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-xinxi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-zichan.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/unread-message-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/unread-message-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/unread-message-light.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/webconfig-location.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/axios.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/drag.js +354 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/echarts.min.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/element-ui/index.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/element-ui/index.js.gz +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/enc-base64-min.js +86 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/filereader.js +455 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/font.js +56 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getLanguage.js +232 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getUserPermissionList.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/h5player.min.js +311 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jquery-3.4.1.min.js +4189 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jquery.slim.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jszip.min.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/liveplayer-lib.min.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/moment.js +5670 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/pptxjs.min.js +14105 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/tXml.js +244 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vuex.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/json/RAMScope.json +201 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/json/config.json +155 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/json/snapshot.json +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/lib/treeV2/treeV2.css +246 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/lib/treeV2/treeV2.js +5384 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/green-6-1.css +357 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/App.vue +41 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/assets/images/template.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/hostMap.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/main.js +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/request/api/template.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/request/api.js +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/router.js +23 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/utils/setStorage.js +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/views/template.vue +49 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/tsconfig.json +21 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/tsconfig.node.json +10 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/vite.config.ts +240 -0
- package/ganwei-iotcenter-index-6.2.2/pnpm-lock.yaml +7962 -0
- package/ganwei-iotcenter-index-6.2.2/pnpm-workspace.yaml +3 -0
- package/package.json +2 -1
|
@@ -0,0 +1,4189 @@
|
|
|
1
|
+
/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
|
|
2
|
+
!function(e, t) {
|
|
3
|
+
"use strict";
|
|
4
|
+
"object" == typeof module && "object" == typeof module.exports ? module.exports = e.document ? t(e, !0) : function(e) {
|
|
5
|
+
if (!e.document)
|
|
6
|
+
throw new Error("jQuery requires a window with a document");
|
|
7
|
+
return t(e)
|
|
8
|
+
}
|
|
9
|
+
: t(e)
|
|
10
|
+
}("undefined" != typeof window ? window : this, function(C, e) {
|
|
11
|
+
"use strict";
|
|
12
|
+
var t = []
|
|
13
|
+
, E = C.document
|
|
14
|
+
, r = Object.getPrototypeOf
|
|
15
|
+
, s = t.slice
|
|
16
|
+
, g = t.concat
|
|
17
|
+
, u = t.push
|
|
18
|
+
, i = t.indexOf
|
|
19
|
+
, n = {}
|
|
20
|
+
, o = n.toString
|
|
21
|
+
, v = n.hasOwnProperty
|
|
22
|
+
, a = v.toString
|
|
23
|
+
, l = a.call(Object)
|
|
24
|
+
, y = {}
|
|
25
|
+
, m = function(e) {
|
|
26
|
+
return "function" == typeof e && "number" != typeof e.nodeType
|
|
27
|
+
}
|
|
28
|
+
, x = function(e) {
|
|
29
|
+
return null != e && e === e.window
|
|
30
|
+
}
|
|
31
|
+
, c = {
|
|
32
|
+
type: !0,
|
|
33
|
+
src: !0,
|
|
34
|
+
nonce: !0,
|
|
35
|
+
noModule: !0
|
|
36
|
+
};
|
|
37
|
+
function b(e, t, n) {
|
|
38
|
+
var r, i, o = (n = n || E).createElement("script");
|
|
39
|
+
if (o.text = e,
|
|
40
|
+
t)
|
|
41
|
+
for (r in c)
|
|
42
|
+
(i = t[r] || t.getAttribute && t.getAttribute(r)) && o.setAttribute(r, i);
|
|
43
|
+
n.head.appendChild(o).parentNode.removeChild(o)
|
|
44
|
+
}
|
|
45
|
+
function w(e) {
|
|
46
|
+
return null == e ? e + "" : "object" == typeof e || "function" == typeof e ? n[o.call(e)] || "object" : typeof e
|
|
47
|
+
}
|
|
48
|
+
var f = "3.4.1"
|
|
49
|
+
, k = function(e, t) {
|
|
50
|
+
return new k.fn.init(e,t)
|
|
51
|
+
}
|
|
52
|
+
, p = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
|
|
53
|
+
function d(e) {
|
|
54
|
+
var t = !!e && "length"in e && e.length
|
|
55
|
+
, n = w(e);
|
|
56
|
+
return !m(e) && !x(e) && ("array" === n || 0 === t || "number" == typeof t && 0 < t && t - 1 in e)
|
|
57
|
+
}
|
|
58
|
+
k.fn = k.prototype = {
|
|
59
|
+
jquery: f,
|
|
60
|
+
constructor: k,
|
|
61
|
+
length: 0,
|
|
62
|
+
toArray: function() {
|
|
63
|
+
return s.call(this)
|
|
64
|
+
},
|
|
65
|
+
get: function(e) {
|
|
66
|
+
return null == e ? s.call(this) : e < 0 ? this[e + this.length] : this[e]
|
|
67
|
+
},
|
|
68
|
+
pushStack: function(e) {
|
|
69
|
+
var t = k.merge(this.constructor(), e);
|
|
70
|
+
return t.prevObject = this,
|
|
71
|
+
t
|
|
72
|
+
},
|
|
73
|
+
each: function(e) {
|
|
74
|
+
return k.each(this, e)
|
|
75
|
+
},
|
|
76
|
+
map: function(n) {
|
|
77
|
+
return this.pushStack(k.map(this, function(e, t) {
|
|
78
|
+
return n.call(e, t, e)
|
|
79
|
+
}))
|
|
80
|
+
},
|
|
81
|
+
slice: function() {
|
|
82
|
+
return this.pushStack(s.apply(this, arguments))
|
|
83
|
+
},
|
|
84
|
+
first: function() {
|
|
85
|
+
return this.eq(0)
|
|
86
|
+
},
|
|
87
|
+
last: function() {
|
|
88
|
+
return this.eq(-1)
|
|
89
|
+
},
|
|
90
|
+
eq: function(e) {
|
|
91
|
+
var t = this.length
|
|
92
|
+
, n = +e + (e < 0 ? t : 0);
|
|
93
|
+
return this.pushStack(0 <= n && n < t ? [this[n]] : [])
|
|
94
|
+
},
|
|
95
|
+
end: function() {
|
|
96
|
+
return this.prevObject || this.constructor()
|
|
97
|
+
},
|
|
98
|
+
push: u,
|
|
99
|
+
sort: t.sort,
|
|
100
|
+
splice: t.splice
|
|
101
|
+
},
|
|
102
|
+
k.extend = k.fn.extend = function() {
|
|
103
|
+
var e, t, n, r, i, o, a = arguments[0] || {}, s = 1, u = arguments.length, l = !1;
|
|
104
|
+
for ("boolean" == typeof a && (l = a,
|
|
105
|
+
a = arguments[s] || {},
|
|
106
|
+
s++),
|
|
107
|
+
"object" == typeof a || m(a) || (a = {}),
|
|
108
|
+
s === u && (a = this,
|
|
109
|
+
s--); s < u; s++)
|
|
110
|
+
if (null != (e = arguments[s]))
|
|
111
|
+
for (t in e)
|
|
112
|
+
r = e[t],
|
|
113
|
+
"__proto__" !== t && a !== r && (l && r && (k.isPlainObject(r) || (i = Array.isArray(r))) ? (n = a[t],
|
|
114
|
+
o = i && !Array.isArray(n) ? [] : i || k.isPlainObject(n) ? n : {},
|
|
115
|
+
i = !1,
|
|
116
|
+
a[t] = k.extend(l, o, r)) : void 0 !== r && (a[t] = r));
|
|
117
|
+
return a
|
|
118
|
+
}
|
|
119
|
+
,
|
|
120
|
+
k.extend({
|
|
121
|
+
expando: "jQuery" + (f + Math.random()).replace(/\D/g, ""),
|
|
122
|
+
isReady: !0,
|
|
123
|
+
error: function(e) {
|
|
124
|
+
throw new Error(e)
|
|
125
|
+
},
|
|
126
|
+
noop: function() {},
|
|
127
|
+
isPlainObject: function(e) {
|
|
128
|
+
var t, n;
|
|
129
|
+
return !(!e || "[object Object]" !== o.call(e)) && (!(t = r(e)) || "function" == typeof (n = v.call(t, "constructor") && t.constructor) && a.call(n) === l)
|
|
130
|
+
},
|
|
131
|
+
isEmptyObject: function(e) {
|
|
132
|
+
var t;
|
|
133
|
+
for (t in e)
|
|
134
|
+
return !1;
|
|
135
|
+
return !0
|
|
136
|
+
},
|
|
137
|
+
globalEval: function(e, t) {
|
|
138
|
+
b(e, {
|
|
139
|
+
nonce: t && t.nonce
|
|
140
|
+
})
|
|
141
|
+
},
|
|
142
|
+
each: function(e, t) {
|
|
143
|
+
var n, r = 0;
|
|
144
|
+
if (d(e)) {
|
|
145
|
+
for (n = e.length; r < n; r++)
|
|
146
|
+
if (!1 === t.call(e[r], r, e[r]))
|
|
147
|
+
break
|
|
148
|
+
} else
|
|
149
|
+
for (r in e)
|
|
150
|
+
if (!1 === t.call(e[r], r, e[r]))
|
|
151
|
+
break;
|
|
152
|
+
return e
|
|
153
|
+
},
|
|
154
|
+
trim: function(e) {
|
|
155
|
+
return null == e ? "" : (e + "").replace(p, "")
|
|
156
|
+
},
|
|
157
|
+
makeArray: function(e, t) {
|
|
158
|
+
var n = t || [];
|
|
159
|
+
return null != e && (d(Object(e)) ? k.merge(n, "string" == typeof e ? [e] : e) : u.call(n, e)),
|
|
160
|
+
n
|
|
161
|
+
},
|
|
162
|
+
inArray: function(e, t, n) {
|
|
163
|
+
return null == t ? -1 : i.call(t, e, n)
|
|
164
|
+
},
|
|
165
|
+
merge: function(e, t) {
|
|
166
|
+
for (var n = +t.length, r = 0, i = e.length; r < n; r++)
|
|
167
|
+
e[i++] = t[r];
|
|
168
|
+
return e.length = i,
|
|
169
|
+
e
|
|
170
|
+
},
|
|
171
|
+
grep: function(e, t, n) {
|
|
172
|
+
for (var r = [], i = 0, o = e.length, a = !n; i < o; i++)
|
|
173
|
+
!t(e[i], i) !== a && r.push(e[i]);
|
|
174
|
+
return r
|
|
175
|
+
},
|
|
176
|
+
map: function(e, t, n) {
|
|
177
|
+
var r, i, o = 0, a = [];
|
|
178
|
+
if (d(e))
|
|
179
|
+
for (r = e.length; o < r; o++)
|
|
180
|
+
null != (i = t(e[o], o, n)) && a.push(i);
|
|
181
|
+
else
|
|
182
|
+
for (o in e)
|
|
183
|
+
null != (i = t(e[o], o, n)) && a.push(i);
|
|
184
|
+
return g.apply([], a)
|
|
185
|
+
},
|
|
186
|
+
guid: 1,
|
|
187
|
+
support: y
|
|
188
|
+
}),
|
|
189
|
+
"function" == typeof Symbol && (k.fn[Symbol.iterator] = t[Symbol.iterator]),
|
|
190
|
+
k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "), function(e, t) {
|
|
191
|
+
n["[object " + t + "]"] = t.toLowerCase()
|
|
192
|
+
});
|
|
193
|
+
var h = function(n) {
|
|
194
|
+
var e, d, b, o, i, h, f, g, w, u, l, T, C, a, E, v, s, c, y, k = "sizzle" + 1 * new Date, m = n.document, S = 0, r = 0, p = ue(), x = ue(), N = ue(), A = ue(), D = function(e, t) {
|
|
195
|
+
return e === t && (l = !0),
|
|
196
|
+
0
|
|
197
|
+
}, j = {}.hasOwnProperty, t = [], q = t.pop, L = t.push, H = t.push, O = t.slice, P = function(e, t) {
|
|
198
|
+
for (var n = 0, r = e.length; n < r; n++)
|
|
199
|
+
if (e[n] === t)
|
|
200
|
+
return n;
|
|
201
|
+
return -1
|
|
202
|
+
}, R = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", M = "[\\x20\\t\\r\\n\\f]", I = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", W = "\\[" + M + "*(" + I + ")(?:" + M + "*([*^$|!~]?=)" + M + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + I + "))|)" + M + "*\\]", $ = ":(" + I + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + W + ")*)|.*)\\)|)", F = new RegExp(M + "+","g"), B = new RegExp("^" + M + "+|((?:^|[^\\\\])(?:\\\\.)*)" + M + "+$","g"), _ = new RegExp("^" + M + "*," + M + "*"), z = new RegExp("^" + M + "*([>+~]|" + M + ")" + M + "*"), U = new RegExp(M + "|>"), X = new RegExp($), V = new RegExp("^" + I + "$"), G = {
|
|
203
|
+
ID: new RegExp("^#(" + I + ")"),
|
|
204
|
+
CLASS: new RegExp("^\\.(" + I + ")"),
|
|
205
|
+
TAG: new RegExp("^(" + I + "|[*])"),
|
|
206
|
+
ATTR: new RegExp("^" + W),
|
|
207
|
+
PSEUDO: new RegExp("^" + $),
|
|
208
|
+
CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + M + "*(even|odd|(([+-]|)(\\d*)n|)" + M + "*(?:([+-]|)" + M + "*(\\d+)|))" + M + "*\\)|)","i"),
|
|
209
|
+
bool: new RegExp("^(?:" + R + ")$","i"),
|
|
210
|
+
needsContext: new RegExp("^" + M + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + M + "*((?:-\\d)?\\d*)" + M + "*\\)|)(?=[^-]|$)","i")
|
|
211
|
+
}, Y = /HTML$/i, Q = /^(?:input|select|textarea|button)$/i, J = /^h\d$/i, K = /^[^{]+\{\s*\[native \w/, Z = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, ee = /[+~]/, te = new RegExp("\\\\([\\da-f]{1,6}" + M + "?|(" + M + ")|.)","ig"), ne = function(e, t, n) {
|
|
212
|
+
var r = "0x" + t - 65536;
|
|
213
|
+
return r != r || n ? t : r < 0 ? String.fromCharCode(r + 65536) : String.fromCharCode(r >> 10 | 55296, 1023 & r | 56320)
|
|
214
|
+
}, re = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, ie = function(e, t) {
|
|
215
|
+
return t ? "\0" === e ? "\ufffd" : e.slice(0, -1) + "\\" + e.charCodeAt(e.length - 1).toString(16) + " " : "\\" + e
|
|
216
|
+
}, oe = function() {
|
|
217
|
+
T()
|
|
218
|
+
}, ae = be(function(e) {
|
|
219
|
+
return !0 === e.disabled && "fieldset" === e.nodeName.toLowerCase()
|
|
220
|
+
}, {
|
|
221
|
+
dir: "parentNode",
|
|
222
|
+
next: "legend"
|
|
223
|
+
});
|
|
224
|
+
try {
|
|
225
|
+
H.apply(t = O.call(m.childNodes), m.childNodes),
|
|
226
|
+
t[m.childNodes.length].nodeType
|
|
227
|
+
} catch (e) {
|
|
228
|
+
H = {
|
|
229
|
+
apply: t.length ? function(e, t) {
|
|
230
|
+
L.apply(e, O.call(t))
|
|
231
|
+
}
|
|
232
|
+
: function(e, t) {
|
|
233
|
+
var n = e.length
|
|
234
|
+
, r = 0;
|
|
235
|
+
while (e[n++] = t[r++])
|
|
236
|
+
;
|
|
237
|
+
e.length = n - 1
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
function se(t, e, n, r) {
|
|
242
|
+
var i, o, a, s, u, l, c, f = e && e.ownerDocument, p = e ? e.nodeType : 9;
|
|
243
|
+
if (n = n || [],
|
|
244
|
+
"string" != typeof t || !t || 1 !== p && 9 !== p && 11 !== p)
|
|
245
|
+
return n;
|
|
246
|
+
if (!r && ((e ? e.ownerDocument || e : m) !== C && T(e),
|
|
247
|
+
e = e || C,
|
|
248
|
+
E)) {
|
|
249
|
+
if (11 !== p && (u = Z.exec(t)))
|
|
250
|
+
if (i = u[1]) {
|
|
251
|
+
if (9 === p) {
|
|
252
|
+
if (!(a = e.getElementById(i)))
|
|
253
|
+
return n;
|
|
254
|
+
if (a.id === i)
|
|
255
|
+
return n.push(a),
|
|
256
|
+
n
|
|
257
|
+
} else if (f && (a = f.getElementById(i)) && y(e, a) && a.id === i)
|
|
258
|
+
return n.push(a),
|
|
259
|
+
n
|
|
260
|
+
} else {
|
|
261
|
+
if (u[2])
|
|
262
|
+
return H.apply(n, e.getElementsByTagName(t)),
|
|
263
|
+
n;
|
|
264
|
+
if ((i = u[3]) && d.getElementsByClassName && e.getElementsByClassName)
|
|
265
|
+
return H.apply(n, e.getElementsByClassName(i)),
|
|
266
|
+
n
|
|
267
|
+
}
|
|
268
|
+
if (d.qsa && !A[t + " "] && (!v || !v.test(t)) && (1 !== p || "object" !== e.nodeName.toLowerCase())) {
|
|
269
|
+
if (c = t,
|
|
270
|
+
f = e,
|
|
271
|
+
1 === p && U.test(t)) {
|
|
272
|
+
(s = e.getAttribute("id")) ? s = s.replace(re, ie) : e.setAttribute("id", s = k),
|
|
273
|
+
o = (l = h(t)).length;
|
|
274
|
+
while (o--)
|
|
275
|
+
l[o] = "#" + s + " " + xe(l[o]);
|
|
276
|
+
c = l.join(","),
|
|
277
|
+
f = ee.test(t) && ye(e.parentNode) || e
|
|
278
|
+
}
|
|
279
|
+
try {
|
|
280
|
+
return H.apply(n, f.querySelectorAll(c)),
|
|
281
|
+
n
|
|
282
|
+
} catch (e) {
|
|
283
|
+
A(t, !0)
|
|
284
|
+
} finally {
|
|
285
|
+
s === k && e.removeAttribute("id")
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
return g(t.replace(B, "$1"), e, n, r)
|
|
290
|
+
}
|
|
291
|
+
function ue() {
|
|
292
|
+
var r = [];
|
|
293
|
+
return function e(t, n) {
|
|
294
|
+
return r.push(t + " ") > b.cacheLength && delete e[r.shift()],
|
|
295
|
+
e[t + " "] = n
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
function le(e) {
|
|
299
|
+
return e[k] = !0,
|
|
300
|
+
e
|
|
301
|
+
}
|
|
302
|
+
function ce(e) {
|
|
303
|
+
var t = C.createElement("fieldset");
|
|
304
|
+
try {
|
|
305
|
+
return !!e(t)
|
|
306
|
+
} catch (e) {
|
|
307
|
+
return !1
|
|
308
|
+
} finally {
|
|
309
|
+
t.parentNode && t.parentNode.removeChild(t),
|
|
310
|
+
t = null
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
function fe(e, t) {
|
|
314
|
+
var n = e.split("|")
|
|
315
|
+
, r = n.length;
|
|
316
|
+
while (r--)
|
|
317
|
+
b.attrHandle[n[r]] = t
|
|
318
|
+
}
|
|
319
|
+
function pe(e, t) {
|
|
320
|
+
var n = t && e
|
|
321
|
+
, r = n && 1 === e.nodeType && 1 === t.nodeType && e.sourceIndex - t.sourceIndex;
|
|
322
|
+
if (r)
|
|
323
|
+
return r;
|
|
324
|
+
if (n)
|
|
325
|
+
while (n = n.nextSibling)
|
|
326
|
+
if (n === t)
|
|
327
|
+
return -1;
|
|
328
|
+
return e ? 1 : -1
|
|
329
|
+
}
|
|
330
|
+
function de(t) {
|
|
331
|
+
return function(e) {
|
|
332
|
+
return "input" === e.nodeName.toLowerCase() && e.type === t
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
function he(n) {
|
|
336
|
+
return function(e) {
|
|
337
|
+
var t = e.nodeName.toLowerCase();
|
|
338
|
+
return ("input" === t || "button" === t) && e.type === n
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
function ge(t) {
|
|
342
|
+
return function(e) {
|
|
343
|
+
return "form"in e ? e.parentNode && !1 === e.disabled ? "label"in e ? "label"in e.parentNode ? e.parentNode.disabled === t : e.disabled === t : e.isDisabled === t || e.isDisabled !== !t && ae(e) === t : e.disabled === t : "label"in e && e.disabled === t
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
function ve(a) {
|
|
347
|
+
return le(function(o) {
|
|
348
|
+
return o = +o,
|
|
349
|
+
le(function(e, t) {
|
|
350
|
+
var n, r = a([], e.length, o), i = r.length;
|
|
351
|
+
while (i--)
|
|
352
|
+
e[n = r[i]] && (e[n] = !(t[n] = e[n]))
|
|
353
|
+
})
|
|
354
|
+
})
|
|
355
|
+
}
|
|
356
|
+
function ye(e) {
|
|
357
|
+
return e && "undefined" != typeof e.getElementsByTagName && e
|
|
358
|
+
}
|
|
359
|
+
for (e in d = se.support = {},
|
|
360
|
+
i = se.isXML = function(e) {
|
|
361
|
+
var t = e.namespaceURI
|
|
362
|
+
, n = (e.ownerDocument || e).documentElement;
|
|
363
|
+
return !Y.test(t || n && n.nodeName || "HTML")
|
|
364
|
+
}
|
|
365
|
+
,
|
|
366
|
+
T = se.setDocument = function(e) {
|
|
367
|
+
var t, n, r = e ? e.ownerDocument || e : m;
|
|
368
|
+
return r !== C && 9 === r.nodeType && r.documentElement && (a = (C = r).documentElement,
|
|
369
|
+
E = !i(C),
|
|
370
|
+
m !== C && (n = C.defaultView) && n.top !== n && (n.addEventListener ? n.addEventListener("unload", oe, !1) : n.attachEvent && n.attachEvent("onunload", oe)),
|
|
371
|
+
d.attributes = ce(function(e) {
|
|
372
|
+
return e.className = "i",
|
|
373
|
+
!e.getAttribute("className")
|
|
374
|
+
}),
|
|
375
|
+
d.getElementsByTagName = ce(function(e) {
|
|
376
|
+
return e.appendChild(C.createComment("")),
|
|
377
|
+
!e.getElementsByTagName("*").length
|
|
378
|
+
}),
|
|
379
|
+
d.getElementsByClassName = K.test(C.getElementsByClassName),
|
|
380
|
+
d.getById = ce(function(e) {
|
|
381
|
+
return a.appendChild(e).id = k,
|
|
382
|
+
!C.getElementsByName || !C.getElementsByName(k).length
|
|
383
|
+
}),
|
|
384
|
+
d.getById ? (b.filter.ID = function(e) {
|
|
385
|
+
var t = e.replace(te, ne);
|
|
386
|
+
return function(e) {
|
|
387
|
+
return e.getAttribute("id") === t
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
,
|
|
391
|
+
b.find.ID = function(e, t) {
|
|
392
|
+
if ("undefined" != typeof t.getElementById && E) {
|
|
393
|
+
var n = t.getElementById(e);
|
|
394
|
+
return n ? [n] : []
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
) : (b.filter.ID = function(e) {
|
|
398
|
+
var n = e.replace(te, ne);
|
|
399
|
+
return function(e) {
|
|
400
|
+
var t = "undefined" != typeof e.getAttributeNode && e.getAttributeNode("id");
|
|
401
|
+
return t && t.value === n
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
,
|
|
405
|
+
b.find.ID = function(e, t) {
|
|
406
|
+
if ("undefined" != typeof t.getElementById && E) {
|
|
407
|
+
var n, r, i, o = t.getElementById(e);
|
|
408
|
+
if (o) {
|
|
409
|
+
if ((n = o.getAttributeNode("id")) && n.value === e)
|
|
410
|
+
return [o];
|
|
411
|
+
i = t.getElementsByName(e),
|
|
412
|
+
r = 0;
|
|
413
|
+
while (o = i[r++])
|
|
414
|
+
if ((n = o.getAttributeNode("id")) && n.value === e)
|
|
415
|
+
return [o]
|
|
416
|
+
}
|
|
417
|
+
return []
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
),
|
|
421
|
+
b.find.TAG = d.getElementsByTagName ? function(e, t) {
|
|
422
|
+
return "undefined" != typeof t.getElementsByTagName ? t.getElementsByTagName(e) : d.qsa ? t.querySelectorAll(e) : void 0
|
|
423
|
+
}
|
|
424
|
+
: function(e, t) {
|
|
425
|
+
var n, r = [], i = 0, o = t.getElementsByTagName(e);
|
|
426
|
+
if ("*" === e) {
|
|
427
|
+
while (n = o[i++])
|
|
428
|
+
1 === n.nodeType && r.push(n);
|
|
429
|
+
return r
|
|
430
|
+
}
|
|
431
|
+
return o
|
|
432
|
+
}
|
|
433
|
+
,
|
|
434
|
+
b.find.CLASS = d.getElementsByClassName && function(e, t) {
|
|
435
|
+
if ("undefined" != typeof t.getElementsByClassName && E)
|
|
436
|
+
return t.getElementsByClassName(e)
|
|
437
|
+
}
|
|
438
|
+
,
|
|
439
|
+
s = [],
|
|
440
|
+
v = [],
|
|
441
|
+
(d.qsa = K.test(C.querySelectorAll)) && (ce(function(e) {
|
|
442
|
+
a.appendChild(e).innerHTML = "<a id='" + k + "'></a><select id='" + k + "-\r\\' msallowcapture=''><option selected=''></option></select>",
|
|
443
|
+
e.querySelectorAll("[msallowcapture^='']").length && v.push("[*^$]=" + M + "*(?:''|\"\")"),
|
|
444
|
+
e.querySelectorAll("[selected]").length || v.push("\\[" + M + "*(?:value|" + R + ")"),
|
|
445
|
+
e.querySelectorAll("[id~=" + k + "-]").length || v.push("~="),
|
|
446
|
+
e.querySelectorAll(":checked").length || v.push(":checked"),
|
|
447
|
+
e.querySelectorAll("a#" + k + "+*").length || v.push(".#.+[+~]")
|
|
448
|
+
}),
|
|
449
|
+
ce(function(e) {
|
|
450
|
+
e.innerHTML = "<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";
|
|
451
|
+
var t = C.createElement("input");
|
|
452
|
+
t.setAttribute("type", "hidden"),
|
|
453
|
+
e.appendChild(t).setAttribute("name", "D"),
|
|
454
|
+
e.querySelectorAll("[name=d]").length && v.push("name" + M + "*[*^$|!~]?="),
|
|
455
|
+
2 !== e.querySelectorAll(":enabled").length && v.push(":enabled", ":disabled"),
|
|
456
|
+
a.appendChild(e).disabled = !0,
|
|
457
|
+
2 !== e.querySelectorAll(":disabled").length && v.push(":enabled", ":disabled"),
|
|
458
|
+
e.querySelectorAll("*,:x"),
|
|
459
|
+
v.push(",.*:")
|
|
460
|
+
})),
|
|
461
|
+
(d.matchesSelector = K.test(c = a.matches || a.webkitMatchesSelector || a.mozMatchesSelector || a.oMatchesSelector || a.msMatchesSelector)) && ce(function(e) {
|
|
462
|
+
d.disconnectedMatch = c.call(e, "*"),
|
|
463
|
+
c.call(e, "[s!='']:x"),
|
|
464
|
+
s.push("!=", $)
|
|
465
|
+
}),
|
|
466
|
+
v = v.length && new RegExp(v.join("|")),
|
|
467
|
+
s = s.length && new RegExp(s.join("|")),
|
|
468
|
+
t = K.test(a.compareDocumentPosition),
|
|
469
|
+
y = t || K.test(a.contains) ? function(e, t) {
|
|
470
|
+
var n = 9 === e.nodeType ? e.documentElement : e
|
|
471
|
+
, r = t && t.parentNode;
|
|
472
|
+
return e === r || !(!r || 1 !== r.nodeType || !(n.contains ? n.contains(r) : e.compareDocumentPosition && 16 & e.compareDocumentPosition(r)))
|
|
473
|
+
}
|
|
474
|
+
: function(e, t) {
|
|
475
|
+
if (t)
|
|
476
|
+
while (t = t.parentNode)
|
|
477
|
+
if (t === e)
|
|
478
|
+
return !0;
|
|
479
|
+
return !1
|
|
480
|
+
}
|
|
481
|
+
,
|
|
482
|
+
D = t ? function(e, t) {
|
|
483
|
+
if (e === t)
|
|
484
|
+
return l = !0,
|
|
485
|
+
0;
|
|
486
|
+
var n = !e.compareDocumentPosition - !t.compareDocumentPosition;
|
|
487
|
+
return n || (1 & (n = (e.ownerDocument || e) === (t.ownerDocument || t) ? e.compareDocumentPosition(t) : 1) || !d.sortDetached && t.compareDocumentPosition(e) === n ? e === C || e.ownerDocument === m && y(m, e) ? -1 : t === C || t.ownerDocument === m && y(m, t) ? 1 : u ? P(u, e) - P(u, t) : 0 : 4 & n ? -1 : 1)
|
|
488
|
+
}
|
|
489
|
+
: function(e, t) {
|
|
490
|
+
if (e === t)
|
|
491
|
+
return l = !0,
|
|
492
|
+
0;
|
|
493
|
+
var n, r = 0, i = e.parentNode, o = t.parentNode, a = [e], s = [t];
|
|
494
|
+
if (!i || !o)
|
|
495
|
+
return e === C ? -1 : t === C ? 1 : i ? -1 : o ? 1 : u ? P(u, e) - P(u, t) : 0;
|
|
496
|
+
if (i === o)
|
|
497
|
+
return pe(e, t);
|
|
498
|
+
n = e;
|
|
499
|
+
while (n = n.parentNode)
|
|
500
|
+
a.unshift(n);
|
|
501
|
+
n = t;
|
|
502
|
+
while (n = n.parentNode)
|
|
503
|
+
s.unshift(n);
|
|
504
|
+
while (a[r] === s[r])
|
|
505
|
+
r++;
|
|
506
|
+
return r ? pe(a[r], s[r]) : a[r] === m ? -1 : s[r] === m ? 1 : 0
|
|
507
|
+
}
|
|
508
|
+
),
|
|
509
|
+
C
|
|
510
|
+
}
|
|
511
|
+
,
|
|
512
|
+
se.matches = function(e, t) {
|
|
513
|
+
return se(e, null, null, t)
|
|
514
|
+
}
|
|
515
|
+
,
|
|
516
|
+
se.matchesSelector = function(e, t) {
|
|
517
|
+
if ((e.ownerDocument || e) !== C && T(e),
|
|
518
|
+
d.matchesSelector && E && !A[t + " "] && (!s || !s.test(t)) && (!v || !v.test(t)))
|
|
519
|
+
try {
|
|
520
|
+
var n = c.call(e, t);
|
|
521
|
+
if (n || d.disconnectedMatch || e.document && 11 !== e.document.nodeType)
|
|
522
|
+
return n
|
|
523
|
+
} catch (e) {
|
|
524
|
+
A(t, !0)
|
|
525
|
+
}
|
|
526
|
+
return 0 < se(t, C, null, [e]).length
|
|
527
|
+
}
|
|
528
|
+
,
|
|
529
|
+
se.contains = function(e, t) {
|
|
530
|
+
return (e.ownerDocument || e) !== C && T(e),
|
|
531
|
+
y(e, t)
|
|
532
|
+
}
|
|
533
|
+
,
|
|
534
|
+
se.attr = function(e, t) {
|
|
535
|
+
(e.ownerDocument || e) !== C && T(e);
|
|
536
|
+
var n = b.attrHandle[t.toLowerCase()]
|
|
537
|
+
, r = n && j.call(b.attrHandle, t.toLowerCase()) ? n(e, t, !E) : void 0;
|
|
538
|
+
return void 0 !== r ? r : d.attributes || !E ? e.getAttribute(t) : (r = e.getAttributeNode(t)) && r.specified ? r.value : null
|
|
539
|
+
}
|
|
540
|
+
,
|
|
541
|
+
se.escape = function(e) {
|
|
542
|
+
return (e + "").replace(re, ie)
|
|
543
|
+
}
|
|
544
|
+
,
|
|
545
|
+
se.error = function(e) {
|
|
546
|
+
throw new Error("Syntax error, unrecognized expression: " + e)
|
|
547
|
+
}
|
|
548
|
+
,
|
|
549
|
+
se.uniqueSort = function(e) {
|
|
550
|
+
var t, n = [], r = 0, i = 0;
|
|
551
|
+
if (l = !d.detectDuplicates,
|
|
552
|
+
u = !d.sortStable && e.slice(0),
|
|
553
|
+
e.sort(D),
|
|
554
|
+
l) {
|
|
555
|
+
while (t = e[i++])
|
|
556
|
+
t === e[i] && (r = n.push(i));
|
|
557
|
+
while (r--)
|
|
558
|
+
e.splice(n[r], 1)
|
|
559
|
+
}
|
|
560
|
+
return u = null,
|
|
561
|
+
e
|
|
562
|
+
}
|
|
563
|
+
,
|
|
564
|
+
o = se.getText = function(e) {
|
|
565
|
+
var t, n = "", r = 0, i = e.nodeType;
|
|
566
|
+
if (i) {
|
|
567
|
+
if (1 === i || 9 === i || 11 === i) {
|
|
568
|
+
if ("string" == typeof e.textContent)
|
|
569
|
+
return e.textContent;
|
|
570
|
+
for (e = e.firstChild; e; e = e.nextSibling)
|
|
571
|
+
n += o(e)
|
|
572
|
+
} else if (3 === i || 4 === i)
|
|
573
|
+
return e.nodeValue
|
|
574
|
+
} else
|
|
575
|
+
while (t = e[r++])
|
|
576
|
+
n += o(t);
|
|
577
|
+
return n
|
|
578
|
+
}
|
|
579
|
+
,
|
|
580
|
+
(b = se.selectors = {
|
|
581
|
+
cacheLength: 50,
|
|
582
|
+
createPseudo: le,
|
|
583
|
+
match: G,
|
|
584
|
+
attrHandle: {},
|
|
585
|
+
find: {},
|
|
586
|
+
relative: {
|
|
587
|
+
">": {
|
|
588
|
+
dir: "parentNode",
|
|
589
|
+
first: !0
|
|
590
|
+
},
|
|
591
|
+
" ": {
|
|
592
|
+
dir: "parentNode"
|
|
593
|
+
},
|
|
594
|
+
"+": {
|
|
595
|
+
dir: "previousSibling",
|
|
596
|
+
first: !0
|
|
597
|
+
},
|
|
598
|
+
"~": {
|
|
599
|
+
dir: "previousSibling"
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
preFilter: {
|
|
603
|
+
ATTR: function(e) {
|
|
604
|
+
return e[1] = e[1].replace(te, ne),
|
|
605
|
+
e[3] = (e[3] || e[4] || e[5] || "").replace(te, ne),
|
|
606
|
+
"~=" === e[2] && (e[3] = " " + e[3] + " "),
|
|
607
|
+
e.slice(0, 4)
|
|
608
|
+
},
|
|
609
|
+
CHILD: function(e) {
|
|
610
|
+
return e[1] = e[1].toLowerCase(),
|
|
611
|
+
"nth" === e[1].slice(0, 3) ? (e[3] || se.error(e[0]),
|
|
612
|
+
e[4] = +(e[4] ? e[5] + (e[6] || 1) : 2 * ("even" === e[3] || "odd" === e[3])),
|
|
613
|
+
e[5] = +(e[7] + e[8] || "odd" === e[3])) : e[3] && se.error(e[0]),
|
|
614
|
+
e
|
|
615
|
+
},
|
|
616
|
+
PSEUDO: function(e) {
|
|
617
|
+
var t, n = !e[6] && e[2];
|
|
618
|
+
return G.CHILD.test(e[0]) ? null : (e[3] ? e[2] = e[4] || e[5] || "" : n && X.test(n) && (t = h(n, !0)) && (t = n.indexOf(")", n.length - t) - n.length) && (e[0] = e[0].slice(0, t),
|
|
619
|
+
e[2] = n.slice(0, t)),
|
|
620
|
+
e.slice(0, 3))
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
filter: {
|
|
624
|
+
TAG: function(e) {
|
|
625
|
+
var t = e.replace(te, ne).toLowerCase();
|
|
626
|
+
return "*" === e ? function() {
|
|
627
|
+
return !0
|
|
628
|
+
}
|
|
629
|
+
: function(e) {
|
|
630
|
+
return e.nodeName && e.nodeName.toLowerCase() === t
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
CLASS: function(e) {
|
|
634
|
+
var t = p[e + " "];
|
|
635
|
+
return t || (t = new RegExp("(^|" + M + ")" + e + "(" + M + "|$)")) && p(e, function(e) {
|
|
636
|
+
return t.test("string" == typeof e.className && e.className || "undefined" != typeof e.getAttribute && e.getAttribute("class") || "")
|
|
637
|
+
})
|
|
638
|
+
},
|
|
639
|
+
ATTR: function(n, r, i) {
|
|
640
|
+
return function(e) {
|
|
641
|
+
var t = se.attr(e, n);
|
|
642
|
+
return null == t ? "!=" === r : !r || (t += "",
|
|
643
|
+
"=" === r ? t === i : "!=" === r ? t !== i : "^=" === r ? i && 0 === t.indexOf(i) : "*=" === r ? i && -1 < t.indexOf(i) : "$=" === r ? i && t.slice(-i.length) === i : "~=" === r ? -1 < (" " + t.replace(F, " ") + " ").indexOf(i) : "|=" === r && (t === i || t.slice(0, i.length + 1) === i + "-"))
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
CHILD: function(h, e, t, g, v) {
|
|
647
|
+
var y = "nth" !== h.slice(0, 3)
|
|
648
|
+
, m = "last" !== h.slice(-4)
|
|
649
|
+
, x = "of-type" === e;
|
|
650
|
+
return 1 === g && 0 === v ? function(e) {
|
|
651
|
+
return !!e.parentNode
|
|
652
|
+
}
|
|
653
|
+
: function(e, t, n) {
|
|
654
|
+
var r, i, o, a, s, u, l = y !== m ? "nextSibling" : "previousSibling", c = e.parentNode, f = x && e.nodeName.toLowerCase(), p = !n && !x, d = !1;
|
|
655
|
+
if (c) {
|
|
656
|
+
if (y) {
|
|
657
|
+
while (l) {
|
|
658
|
+
a = e;
|
|
659
|
+
while (a = a[l])
|
|
660
|
+
if (x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType)
|
|
661
|
+
return !1;
|
|
662
|
+
u = l = "only" === h && !u && "nextSibling"
|
|
663
|
+
}
|
|
664
|
+
return !0
|
|
665
|
+
}
|
|
666
|
+
if (u = [m ? c.firstChild : c.lastChild],
|
|
667
|
+
m && p) {
|
|
668
|
+
d = (s = (r = (i = (o = (a = c)[k] || (a[k] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === S && r[1]) && r[2],
|
|
669
|
+
a = s && c.childNodes[s];
|
|
670
|
+
while (a = ++s && a && a[l] || (d = s = 0) || u.pop())
|
|
671
|
+
if (1 === a.nodeType && ++d && a === e) {
|
|
672
|
+
i[h] = [S, s, d];
|
|
673
|
+
break
|
|
674
|
+
}
|
|
675
|
+
} else if (p && (d = s = (r = (i = (o = (a = e)[k] || (a[k] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === S && r[1]),
|
|
676
|
+
!1 === d)
|
|
677
|
+
while (a = ++s && a && a[l] || (d = s = 0) || u.pop())
|
|
678
|
+
if ((x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) && ++d && (p && ((i = (o = a[k] || (a[k] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] = [S, d]),
|
|
679
|
+
a === e))
|
|
680
|
+
break;
|
|
681
|
+
return (d -= v) === g || d % g == 0 && 0 <= d / g
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
PSEUDO: function(e, o) {
|
|
686
|
+
var t, a = b.pseudos[e] || b.setFilters[e.toLowerCase()] || se.error("unsupported pseudo: " + e);
|
|
687
|
+
return a[k] ? a(o) : 1 < a.length ? (t = [e, e, "", o],
|
|
688
|
+
b.setFilters.hasOwnProperty(e.toLowerCase()) ? le(function(e, t) {
|
|
689
|
+
var n, r = a(e, o), i = r.length;
|
|
690
|
+
while (i--)
|
|
691
|
+
e[n = P(e, r[i])] = !(t[n] = r[i])
|
|
692
|
+
}) : function(e) {
|
|
693
|
+
return a(e, 0, t)
|
|
694
|
+
}
|
|
695
|
+
) : a
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
pseudos: {
|
|
699
|
+
not: le(function(e) {
|
|
700
|
+
var r = []
|
|
701
|
+
, i = []
|
|
702
|
+
, s = f(e.replace(B, "$1"));
|
|
703
|
+
return s[k] ? le(function(e, t, n, r) {
|
|
704
|
+
var i, o = s(e, null, r, []), a = e.length;
|
|
705
|
+
while (a--)
|
|
706
|
+
(i = o[a]) && (e[a] = !(t[a] = i))
|
|
707
|
+
}) : function(e, t, n) {
|
|
708
|
+
return r[0] = e,
|
|
709
|
+
s(r, null, n, i),
|
|
710
|
+
r[0] = null,
|
|
711
|
+
!i.pop()
|
|
712
|
+
}
|
|
713
|
+
}),
|
|
714
|
+
has: le(function(t) {
|
|
715
|
+
return function(e) {
|
|
716
|
+
return 0 < se(t, e).length
|
|
717
|
+
}
|
|
718
|
+
}),
|
|
719
|
+
contains: le(function(t) {
|
|
720
|
+
return t = t.replace(te, ne),
|
|
721
|
+
function(e) {
|
|
722
|
+
return -1 < (e.textContent || o(e)).indexOf(t)
|
|
723
|
+
}
|
|
724
|
+
}),
|
|
725
|
+
lang: le(function(n) {
|
|
726
|
+
return V.test(n || "") || se.error("unsupported lang: " + n),
|
|
727
|
+
n = n.replace(te, ne).toLowerCase(),
|
|
728
|
+
function(e) {
|
|
729
|
+
var t;
|
|
730
|
+
do {
|
|
731
|
+
if (t = E ? e.lang : e.getAttribute("xml:lang") || e.getAttribute("lang"))
|
|
732
|
+
return (t = t.toLowerCase()) === n || 0 === t.indexOf(n + "-")
|
|
733
|
+
} while ((e = e.parentNode) && 1 === e.nodeType);return !1
|
|
734
|
+
}
|
|
735
|
+
}),
|
|
736
|
+
target: function(e) {
|
|
737
|
+
var t = n.location && n.location.hash;
|
|
738
|
+
return t && t.slice(1) === e.id
|
|
739
|
+
},
|
|
740
|
+
root: function(e) {
|
|
741
|
+
return e === a
|
|
742
|
+
},
|
|
743
|
+
focus: function(e) {
|
|
744
|
+
return e === C.activeElement && (!C.hasFocus || C.hasFocus()) && !!(e.type || e.href || ~e.tabIndex)
|
|
745
|
+
},
|
|
746
|
+
enabled: ge(!1),
|
|
747
|
+
disabled: ge(!0),
|
|
748
|
+
checked: function(e) {
|
|
749
|
+
var t = e.nodeName.toLowerCase();
|
|
750
|
+
return "input" === t && !!e.checked || "option" === t && !!e.selected
|
|
751
|
+
},
|
|
752
|
+
selected: function(e) {
|
|
753
|
+
return e.parentNode && e.parentNode.selectedIndex,
|
|
754
|
+
!0 === e.selected
|
|
755
|
+
},
|
|
756
|
+
empty: function(e) {
|
|
757
|
+
for (e = e.firstChild; e; e = e.nextSibling)
|
|
758
|
+
if (e.nodeType < 6)
|
|
759
|
+
return !1;
|
|
760
|
+
return !0
|
|
761
|
+
},
|
|
762
|
+
parent: function(e) {
|
|
763
|
+
return !b.pseudos.empty(e)
|
|
764
|
+
},
|
|
765
|
+
header: function(e) {
|
|
766
|
+
return J.test(e.nodeName)
|
|
767
|
+
},
|
|
768
|
+
input: function(e) {
|
|
769
|
+
return Q.test(e.nodeName)
|
|
770
|
+
},
|
|
771
|
+
button: function(e) {
|
|
772
|
+
var t = e.nodeName.toLowerCase();
|
|
773
|
+
return "input" === t && "button" === e.type || "button" === t
|
|
774
|
+
},
|
|
775
|
+
text: function(e) {
|
|
776
|
+
var t;
|
|
777
|
+
return "input" === e.nodeName.toLowerCase() && "text" === e.type && (null == (t = e.getAttribute("type")) || "text" === t.toLowerCase())
|
|
778
|
+
},
|
|
779
|
+
first: ve(function() {
|
|
780
|
+
return [0]
|
|
781
|
+
}),
|
|
782
|
+
last: ve(function(e, t) {
|
|
783
|
+
return [t - 1]
|
|
784
|
+
}),
|
|
785
|
+
eq: ve(function(e, t, n) {
|
|
786
|
+
return [n < 0 ? n + t : n]
|
|
787
|
+
}),
|
|
788
|
+
even: ve(function(e, t) {
|
|
789
|
+
for (var n = 0; n < t; n += 2)
|
|
790
|
+
e.push(n);
|
|
791
|
+
return e
|
|
792
|
+
}),
|
|
793
|
+
odd: ve(function(e, t) {
|
|
794
|
+
for (var n = 1; n < t; n += 2)
|
|
795
|
+
e.push(n);
|
|
796
|
+
return e
|
|
797
|
+
}),
|
|
798
|
+
lt: ve(function(e, t, n) {
|
|
799
|
+
for (var r = n < 0 ? n + t : t < n ? t : n; 0 <= --r; )
|
|
800
|
+
e.push(r);
|
|
801
|
+
return e
|
|
802
|
+
}),
|
|
803
|
+
gt: ve(function(e, t, n) {
|
|
804
|
+
for (var r = n < 0 ? n + t : n; ++r < t; )
|
|
805
|
+
e.push(r);
|
|
806
|
+
return e
|
|
807
|
+
})
|
|
808
|
+
}
|
|
809
|
+
}).pseudos.nth = b.pseudos.eq,
|
|
810
|
+
{
|
|
811
|
+
radio: !0,
|
|
812
|
+
checkbox: !0,
|
|
813
|
+
file: !0,
|
|
814
|
+
password: !0,
|
|
815
|
+
image: !0
|
|
816
|
+
})
|
|
817
|
+
b.pseudos[e] = de(e);
|
|
818
|
+
for (e in {
|
|
819
|
+
submit: !0,
|
|
820
|
+
reset: !0
|
|
821
|
+
})
|
|
822
|
+
b.pseudos[e] = he(e);
|
|
823
|
+
function me() {}
|
|
824
|
+
function xe(e) {
|
|
825
|
+
for (var t = 0, n = e.length, r = ""; t < n; t++)
|
|
826
|
+
r += e[t].value;
|
|
827
|
+
return r
|
|
828
|
+
}
|
|
829
|
+
function be(s, e, t) {
|
|
830
|
+
var u = e.dir
|
|
831
|
+
, l = e.next
|
|
832
|
+
, c = l || u
|
|
833
|
+
, f = t && "parentNode" === c
|
|
834
|
+
, p = r++;
|
|
835
|
+
return e.first ? function(e, t, n) {
|
|
836
|
+
while (e = e[u])
|
|
837
|
+
if (1 === e.nodeType || f)
|
|
838
|
+
return s(e, t, n);
|
|
839
|
+
return !1
|
|
840
|
+
}
|
|
841
|
+
: function(e, t, n) {
|
|
842
|
+
var r, i, o, a = [S, p];
|
|
843
|
+
if (n) {
|
|
844
|
+
while (e = e[u])
|
|
845
|
+
if ((1 === e.nodeType || f) && s(e, t, n))
|
|
846
|
+
return !0
|
|
847
|
+
} else
|
|
848
|
+
while (e = e[u])
|
|
849
|
+
if (1 === e.nodeType || f)
|
|
850
|
+
if (i = (o = e[k] || (e[k] = {}))[e.uniqueID] || (o[e.uniqueID] = {}),
|
|
851
|
+
l && l === e.nodeName.toLowerCase())
|
|
852
|
+
e = e[u] || e;
|
|
853
|
+
else {
|
|
854
|
+
if ((r = i[c]) && r[0] === S && r[1] === p)
|
|
855
|
+
return a[2] = r[2];
|
|
856
|
+
if ((i[c] = a)[2] = s(e, t, n))
|
|
857
|
+
return !0
|
|
858
|
+
}
|
|
859
|
+
return !1
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
function we(i) {
|
|
863
|
+
return 1 < i.length ? function(e, t, n) {
|
|
864
|
+
var r = i.length;
|
|
865
|
+
while (r--)
|
|
866
|
+
if (!i[r](e, t, n))
|
|
867
|
+
return !1;
|
|
868
|
+
return !0
|
|
869
|
+
}
|
|
870
|
+
: i[0]
|
|
871
|
+
}
|
|
872
|
+
function Te(e, t, n, r, i) {
|
|
873
|
+
for (var o, a = [], s = 0, u = e.length, l = null != t; s < u; s++)
|
|
874
|
+
(o = e[s]) && (n && !n(o, r, i) || (a.push(o),
|
|
875
|
+
l && t.push(s)));
|
|
876
|
+
return a
|
|
877
|
+
}
|
|
878
|
+
function Ce(d, h, g, v, y, e) {
|
|
879
|
+
return v && !v[k] && (v = Ce(v)),
|
|
880
|
+
y && !y[k] && (y = Ce(y, e)),
|
|
881
|
+
le(function(e, t, n, r) {
|
|
882
|
+
var i, o, a, s = [], u = [], l = t.length, c = e || function(e, t, n) {
|
|
883
|
+
for (var r = 0, i = t.length; r < i; r++)
|
|
884
|
+
se(e, t[r], n);
|
|
885
|
+
return n
|
|
886
|
+
}(h || "*", n.nodeType ? [n] : n, []), f = !d || !e && h ? c : Te(c, s, d, n, r), p = g ? y || (e ? d : l || v) ? [] : t : f;
|
|
887
|
+
if (g && g(f, p, n, r),
|
|
888
|
+
v) {
|
|
889
|
+
i = Te(p, u),
|
|
890
|
+
v(i, [], n, r),
|
|
891
|
+
o = i.length;
|
|
892
|
+
while (o--)
|
|
893
|
+
(a = i[o]) && (p[u[o]] = !(f[u[o]] = a))
|
|
894
|
+
}
|
|
895
|
+
if (e) {
|
|
896
|
+
if (y || d) {
|
|
897
|
+
if (y) {
|
|
898
|
+
i = [],
|
|
899
|
+
o = p.length;
|
|
900
|
+
while (o--)
|
|
901
|
+
(a = p[o]) && i.push(f[o] = a);
|
|
902
|
+
y(null, p = [], i, r)
|
|
903
|
+
}
|
|
904
|
+
o = p.length;
|
|
905
|
+
while (o--)
|
|
906
|
+
(a = p[o]) && -1 < (i = y ? P(e, a) : s[o]) && (e[i] = !(t[i] = a))
|
|
907
|
+
}
|
|
908
|
+
} else
|
|
909
|
+
p = Te(p === t ? p.splice(l, p.length) : p),
|
|
910
|
+
y ? y(null, t, p, r) : H.apply(t, p)
|
|
911
|
+
})
|
|
912
|
+
}
|
|
913
|
+
function Ee(e) {
|
|
914
|
+
for (var i, t, n, r = e.length, o = b.relative[e[0].type], a = o || b.relative[" "], s = o ? 1 : 0, u = be(function(e) {
|
|
915
|
+
return e === i
|
|
916
|
+
}, a, !0), l = be(function(e) {
|
|
917
|
+
return -1 < P(i, e)
|
|
918
|
+
}, a, !0), c = [function(e, t, n) {
|
|
919
|
+
var r = !o && (n || t !== w) || ((i = t).nodeType ? u(e, t, n) : l(e, t, n));
|
|
920
|
+
return i = null,
|
|
921
|
+
r
|
|
922
|
+
}
|
|
923
|
+
]; s < r; s++)
|
|
924
|
+
if (t = b.relative[e[s].type])
|
|
925
|
+
c = [be(we(c), t)];
|
|
926
|
+
else {
|
|
927
|
+
if ((t = b.filter[e[s].type].apply(null, e[s].matches))[k]) {
|
|
928
|
+
for (n = ++s; n < r; n++)
|
|
929
|
+
if (b.relative[e[n].type])
|
|
930
|
+
break;
|
|
931
|
+
return Ce(1 < s && we(c), 1 < s && xe(e.slice(0, s - 1).concat({
|
|
932
|
+
value: " " === e[s - 2].type ? "*" : ""
|
|
933
|
+
})).replace(B, "$1"), t, s < n && Ee(e.slice(s, n)), n < r && Ee(e = e.slice(n)), n < r && xe(e))
|
|
934
|
+
}
|
|
935
|
+
c.push(t)
|
|
936
|
+
}
|
|
937
|
+
return we(c)
|
|
938
|
+
}
|
|
939
|
+
return me.prototype = b.filters = b.pseudos,
|
|
940
|
+
b.setFilters = new me,
|
|
941
|
+
h = se.tokenize = function(e, t) {
|
|
942
|
+
var n, r, i, o, a, s, u, l = x[e + " "];
|
|
943
|
+
if (l)
|
|
944
|
+
return t ? 0 : l.slice(0);
|
|
945
|
+
a = e,
|
|
946
|
+
s = [],
|
|
947
|
+
u = b.preFilter;
|
|
948
|
+
while (a) {
|
|
949
|
+
for (o in n && !(r = _.exec(a)) || (r && (a = a.slice(r[0].length) || a),
|
|
950
|
+
s.push(i = [])),
|
|
951
|
+
n = !1,
|
|
952
|
+
(r = z.exec(a)) && (n = r.shift(),
|
|
953
|
+
i.push({
|
|
954
|
+
value: n,
|
|
955
|
+
type: r[0].replace(B, " ")
|
|
956
|
+
}),
|
|
957
|
+
a = a.slice(n.length)),
|
|
958
|
+
b.filter)
|
|
959
|
+
!(r = G[o].exec(a)) || u[o] && !(r = u[o](r)) || (n = r.shift(),
|
|
960
|
+
i.push({
|
|
961
|
+
value: n,
|
|
962
|
+
type: o,
|
|
963
|
+
matches: r
|
|
964
|
+
}),
|
|
965
|
+
a = a.slice(n.length));
|
|
966
|
+
if (!n)
|
|
967
|
+
break
|
|
968
|
+
}
|
|
969
|
+
return t ? a.length : a ? se.error(e) : x(e, s).slice(0)
|
|
970
|
+
}
|
|
971
|
+
,
|
|
972
|
+
f = se.compile = function(e, t) {
|
|
973
|
+
var n, v, y, m, x, r, i = [], o = [], a = N[e + " "];
|
|
974
|
+
if (!a) {
|
|
975
|
+
t || (t = h(e)),
|
|
976
|
+
n = t.length;
|
|
977
|
+
while (n--)
|
|
978
|
+
(a = Ee(t[n]))[k] ? i.push(a) : o.push(a);
|
|
979
|
+
(a = N(e, (v = o,
|
|
980
|
+
m = 0 < (y = i).length,
|
|
981
|
+
x = 0 < v.length,
|
|
982
|
+
r = function(e, t, n, r, i) {
|
|
983
|
+
var o, a, s, u = 0, l = "0", c = e && [], f = [], p = w, d = e || x && b.find.TAG("*", i), h = S += null == p ? 1 : Math.random() || .1, g = d.length;
|
|
984
|
+
for (i && (w = t === C || t || i); l !== g && null != (o = d[l]); l++) {
|
|
985
|
+
if (x && o) {
|
|
986
|
+
a = 0,
|
|
987
|
+
t || o.ownerDocument === C || (T(o),
|
|
988
|
+
n = !E);
|
|
989
|
+
while (s = v[a++])
|
|
990
|
+
if (s(o, t || C, n)) {
|
|
991
|
+
r.push(o);
|
|
992
|
+
break
|
|
993
|
+
}
|
|
994
|
+
i && (S = h)
|
|
995
|
+
}
|
|
996
|
+
m && ((o = !s && o) && u--,
|
|
997
|
+
e && c.push(o))
|
|
998
|
+
}
|
|
999
|
+
if (u += l,
|
|
1000
|
+
m && l !== u) {
|
|
1001
|
+
a = 0;
|
|
1002
|
+
while (s = y[a++])
|
|
1003
|
+
s(c, f, t, n);
|
|
1004
|
+
if (e) {
|
|
1005
|
+
if (0 < u)
|
|
1006
|
+
while (l--)
|
|
1007
|
+
c[l] || f[l] || (f[l] = q.call(r));
|
|
1008
|
+
f = Te(f)
|
|
1009
|
+
}
|
|
1010
|
+
H.apply(r, f),
|
|
1011
|
+
i && !e && 0 < f.length && 1 < u + y.length && se.uniqueSort(r)
|
|
1012
|
+
}
|
|
1013
|
+
return i && (S = h,
|
|
1014
|
+
w = p),
|
|
1015
|
+
c
|
|
1016
|
+
}
|
|
1017
|
+
,
|
|
1018
|
+
m ? le(r) : r))).selector = e
|
|
1019
|
+
}
|
|
1020
|
+
return a
|
|
1021
|
+
}
|
|
1022
|
+
,
|
|
1023
|
+
g = se.select = function(e, t, n, r) {
|
|
1024
|
+
var i, o, a, s, u, l = "function" == typeof e && e, c = !r && h(e = l.selector || e);
|
|
1025
|
+
if (n = n || [],
|
|
1026
|
+
1 === c.length) {
|
|
1027
|
+
if (2 < (o = c[0] = c[0].slice(0)).length && "ID" === (a = o[0]).type && 9 === t.nodeType && E && b.relative[o[1].type]) {
|
|
1028
|
+
if (!(t = (b.find.ID(a.matches[0].replace(te, ne), t) || [])[0]))
|
|
1029
|
+
return n;
|
|
1030
|
+
l && (t = t.parentNode),
|
|
1031
|
+
e = e.slice(o.shift().value.length)
|
|
1032
|
+
}
|
|
1033
|
+
i = G.needsContext.test(e) ? 0 : o.length;
|
|
1034
|
+
while (i--) {
|
|
1035
|
+
if (a = o[i],
|
|
1036
|
+
b.relative[s = a.type])
|
|
1037
|
+
break;
|
|
1038
|
+
if ((u = b.find[s]) && (r = u(a.matches[0].replace(te, ne), ee.test(o[0].type) && ye(t.parentNode) || t))) {
|
|
1039
|
+
if (o.splice(i, 1),
|
|
1040
|
+
!(e = r.length && xe(o)))
|
|
1041
|
+
return H.apply(n, r),
|
|
1042
|
+
n;
|
|
1043
|
+
break
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
return (l || f(e, c))(r, t, !E, n, !t || ee.test(e) && ye(t.parentNode) || t),
|
|
1048
|
+
n
|
|
1049
|
+
}
|
|
1050
|
+
,
|
|
1051
|
+
d.sortStable = k.split("").sort(D).join("") === k,
|
|
1052
|
+
d.detectDuplicates = !!l,
|
|
1053
|
+
T(),
|
|
1054
|
+
d.sortDetached = ce(function(e) {
|
|
1055
|
+
return 1 & e.compareDocumentPosition(C.createElement("fieldset"))
|
|
1056
|
+
}),
|
|
1057
|
+
ce(function(e) {
|
|
1058
|
+
return e.innerHTML = "<a href='#'></a>",
|
|
1059
|
+
"#" === e.firstChild.getAttribute("href")
|
|
1060
|
+
}) || fe("type|href|height|width", function(e, t, n) {
|
|
1061
|
+
if (!n)
|
|
1062
|
+
return e.getAttribute(t, "type" === t.toLowerCase() ? 1 : 2)
|
|
1063
|
+
}),
|
|
1064
|
+
d.attributes && ce(function(e) {
|
|
1065
|
+
return e.innerHTML = "<input/>",
|
|
1066
|
+
e.firstChild.setAttribute("value", ""),
|
|
1067
|
+
"" === e.firstChild.getAttribute("value")
|
|
1068
|
+
}) || fe("value", function(e, t, n) {
|
|
1069
|
+
if (!n && "input" === e.nodeName.toLowerCase())
|
|
1070
|
+
return e.defaultValue
|
|
1071
|
+
}),
|
|
1072
|
+
ce(function(e) {
|
|
1073
|
+
return null == e.getAttribute("disabled")
|
|
1074
|
+
}) || fe(R, function(e, t, n) {
|
|
1075
|
+
var r;
|
|
1076
|
+
if (!n)
|
|
1077
|
+
return !0 === e[t] ? t.toLowerCase() : (r = e.getAttributeNode(t)) && r.specified ? r.value : null
|
|
1078
|
+
}),
|
|
1079
|
+
se
|
|
1080
|
+
}(C);
|
|
1081
|
+
k.find = h,
|
|
1082
|
+
k.expr = h.selectors,
|
|
1083
|
+
k.expr[":"] = k.expr.pseudos,
|
|
1084
|
+
k.uniqueSort = k.unique = h.uniqueSort,
|
|
1085
|
+
k.text = h.getText,
|
|
1086
|
+
k.isXMLDoc = h.isXML,
|
|
1087
|
+
k.contains = h.contains,
|
|
1088
|
+
k.escapeSelector = h.escape;
|
|
1089
|
+
var T = function(e, t, n) {
|
|
1090
|
+
var r = []
|
|
1091
|
+
, i = void 0 !== n;
|
|
1092
|
+
while ((e = e[t]) && 9 !== e.nodeType)
|
|
1093
|
+
if (1 === e.nodeType) {
|
|
1094
|
+
if (i && k(e).is(n))
|
|
1095
|
+
break;
|
|
1096
|
+
r.push(e)
|
|
1097
|
+
}
|
|
1098
|
+
return r
|
|
1099
|
+
}
|
|
1100
|
+
, S = function(e, t) {
|
|
1101
|
+
for (var n = []; e; e = e.nextSibling)
|
|
1102
|
+
1 === e.nodeType && e !== t && n.push(e);
|
|
1103
|
+
return n
|
|
1104
|
+
}
|
|
1105
|
+
, N = k.expr.match.needsContext;
|
|
1106
|
+
function A(e, t) {
|
|
1107
|
+
return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase()
|
|
1108
|
+
}
|
|
1109
|
+
var D = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;
|
|
1110
|
+
function j(e, n, r) {
|
|
1111
|
+
return m(n) ? k.grep(e, function(e, t) {
|
|
1112
|
+
return !!n.call(e, t, e) !== r
|
|
1113
|
+
}) : n.nodeType ? k.grep(e, function(e) {
|
|
1114
|
+
return e === n !== r
|
|
1115
|
+
}) : "string" != typeof n ? k.grep(e, function(e) {
|
|
1116
|
+
return -1 < i.call(n, e) !== r
|
|
1117
|
+
}) : k.filter(n, e, r)
|
|
1118
|
+
}
|
|
1119
|
+
k.filter = function(e, t, n) {
|
|
1120
|
+
var r = t[0];
|
|
1121
|
+
return n && (e = ":not(" + e + ")"),
|
|
1122
|
+
1 === t.length && 1 === r.nodeType ? k.find.matchesSelector(r, e) ? [r] : [] : k.find.matches(e, k.grep(t, function(e) {
|
|
1123
|
+
return 1 === e.nodeType
|
|
1124
|
+
}))
|
|
1125
|
+
}
|
|
1126
|
+
,
|
|
1127
|
+
k.fn.extend({
|
|
1128
|
+
find: function(e) {
|
|
1129
|
+
var t, n, r = this.length, i = this;
|
|
1130
|
+
if ("string" != typeof e)
|
|
1131
|
+
return this.pushStack(k(e).filter(function() {
|
|
1132
|
+
for (t = 0; t < r; t++)
|
|
1133
|
+
if (k.contains(i[t], this))
|
|
1134
|
+
return !0
|
|
1135
|
+
}));
|
|
1136
|
+
for (n = this.pushStack([]),
|
|
1137
|
+
t = 0; t < r; t++)
|
|
1138
|
+
k.find(e, i[t], n);
|
|
1139
|
+
return 1 < r ? k.uniqueSort(n) : n
|
|
1140
|
+
},
|
|
1141
|
+
filter: function(e) {
|
|
1142
|
+
return this.pushStack(j(this, e || [], !1))
|
|
1143
|
+
},
|
|
1144
|
+
not: function(e) {
|
|
1145
|
+
return this.pushStack(j(this, e || [], !0))
|
|
1146
|
+
},
|
|
1147
|
+
is: function(e) {
|
|
1148
|
+
return !!j(this, "string" == typeof e && N.test(e) ? k(e) : e || [], !1).length
|
|
1149
|
+
}
|
|
1150
|
+
});
|
|
1151
|
+
var q, L = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;
|
|
1152
|
+
(k.fn.init = function(e, t, n) {
|
|
1153
|
+
var r, i;
|
|
1154
|
+
if (!e)
|
|
1155
|
+
return this;
|
|
1156
|
+
if (n = n || q,
|
|
1157
|
+
"string" == typeof e) {
|
|
1158
|
+
if (!(r = "<" === e[0] && ">" === e[e.length - 1] && 3 <= e.length ? [null, e, null] : L.exec(e)) || !r[1] && t)
|
|
1159
|
+
return !t || t.jquery ? (t || n).find(e) : this.constructor(t).find(e);
|
|
1160
|
+
if (r[1]) {
|
|
1161
|
+
if (t = t instanceof k ? t[0] : t,
|
|
1162
|
+
k.merge(this, k.parseHTML(r[1], t && t.nodeType ? t.ownerDocument || t : E, !0)),
|
|
1163
|
+
D.test(r[1]) && k.isPlainObject(t))
|
|
1164
|
+
for (r in t)
|
|
1165
|
+
m(this[r]) ? this[r](t[r]) : this.attr(r, t[r]);
|
|
1166
|
+
return this
|
|
1167
|
+
}
|
|
1168
|
+
return (i = E.getElementById(r[2])) && (this[0] = i,
|
|
1169
|
+
this.length = 1),
|
|
1170
|
+
this
|
|
1171
|
+
}
|
|
1172
|
+
return e.nodeType ? (this[0] = e,
|
|
1173
|
+
this.length = 1,
|
|
1174
|
+
this) : m(e) ? void 0 !== n.ready ? n.ready(e) : e(k) : k.makeArray(e, this)
|
|
1175
|
+
}
|
|
1176
|
+
).prototype = k.fn,
|
|
1177
|
+
q = k(E);
|
|
1178
|
+
var H = /^(?:parents|prev(?:Until|All))/
|
|
1179
|
+
, O = {
|
|
1180
|
+
children: !0,
|
|
1181
|
+
contents: !0,
|
|
1182
|
+
next: !0,
|
|
1183
|
+
prev: !0
|
|
1184
|
+
};
|
|
1185
|
+
function P(e, t) {
|
|
1186
|
+
while ((e = e[t]) && 1 !== e.nodeType)
|
|
1187
|
+
;
|
|
1188
|
+
return e
|
|
1189
|
+
}
|
|
1190
|
+
k.fn.extend({
|
|
1191
|
+
has: function(e) {
|
|
1192
|
+
var t = k(e, this)
|
|
1193
|
+
, n = t.length;
|
|
1194
|
+
return this.filter(function() {
|
|
1195
|
+
for (var e = 0; e < n; e++)
|
|
1196
|
+
if (k.contains(this, t[e]))
|
|
1197
|
+
return !0
|
|
1198
|
+
})
|
|
1199
|
+
},
|
|
1200
|
+
closest: function(e, t) {
|
|
1201
|
+
var n, r = 0, i = this.length, o = [], a = "string" != typeof e && k(e);
|
|
1202
|
+
if (!N.test(e))
|
|
1203
|
+
for (; r < i; r++)
|
|
1204
|
+
for (n = this[r]; n && n !== t; n = n.parentNode)
|
|
1205
|
+
if (n.nodeType < 11 && (a ? -1 < a.index(n) : 1 === n.nodeType && k.find.matchesSelector(n, e))) {
|
|
1206
|
+
o.push(n);
|
|
1207
|
+
break
|
|
1208
|
+
}
|
|
1209
|
+
return this.pushStack(1 < o.length ? k.uniqueSort(o) : o)
|
|
1210
|
+
},
|
|
1211
|
+
index: function(e) {
|
|
1212
|
+
return e ? "string" == typeof e ? i.call(k(e), this[0]) : i.call(this, e.jquery ? e[0] : e) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1
|
|
1213
|
+
},
|
|
1214
|
+
add: function(e, t) {
|
|
1215
|
+
return this.pushStack(k.uniqueSort(k.merge(this.get(), k(e, t))))
|
|
1216
|
+
},
|
|
1217
|
+
addBack: function(e) {
|
|
1218
|
+
return this.add(null == e ? this.prevObject : this.prevObject.filter(e))
|
|
1219
|
+
}
|
|
1220
|
+
}),
|
|
1221
|
+
k.each({
|
|
1222
|
+
parent: function(e) {
|
|
1223
|
+
var t = e.parentNode;
|
|
1224
|
+
return t && 11 !== t.nodeType ? t : null
|
|
1225
|
+
},
|
|
1226
|
+
parents: function(e) {
|
|
1227
|
+
return T(e, "parentNode")
|
|
1228
|
+
},
|
|
1229
|
+
parentsUntil: function(e, t, n) {
|
|
1230
|
+
return T(e, "parentNode", n)
|
|
1231
|
+
},
|
|
1232
|
+
next: function(e) {
|
|
1233
|
+
return P(e, "nextSibling")
|
|
1234
|
+
},
|
|
1235
|
+
prev: function(e) {
|
|
1236
|
+
return P(e, "previousSibling")
|
|
1237
|
+
},
|
|
1238
|
+
nextAll: function(e) {
|
|
1239
|
+
return T(e, "nextSibling")
|
|
1240
|
+
},
|
|
1241
|
+
prevAll: function(e) {
|
|
1242
|
+
return T(e, "previousSibling")
|
|
1243
|
+
},
|
|
1244
|
+
nextUntil: function(e, t, n) {
|
|
1245
|
+
return T(e, "nextSibling", n)
|
|
1246
|
+
},
|
|
1247
|
+
prevUntil: function(e, t, n) {
|
|
1248
|
+
return T(e, "previousSibling", n)
|
|
1249
|
+
},
|
|
1250
|
+
siblings: function(e) {
|
|
1251
|
+
return S((e.parentNode || {}).firstChild, e)
|
|
1252
|
+
},
|
|
1253
|
+
children: function(e) {
|
|
1254
|
+
return S(e.firstChild)
|
|
1255
|
+
},
|
|
1256
|
+
contents: function(e) {
|
|
1257
|
+
return "undefined" != typeof e.contentDocument ? e.contentDocument : (A(e, "template") && (e = e.content || e),
|
|
1258
|
+
k.merge([], e.childNodes))
|
|
1259
|
+
}
|
|
1260
|
+
}, function(r, i) {
|
|
1261
|
+
k.fn[r] = function(e, t) {
|
|
1262
|
+
var n = k.map(this, i, e);
|
|
1263
|
+
return "Until" !== r.slice(-5) && (t = e),
|
|
1264
|
+
t && "string" == typeof t && (n = k.filter(t, n)),
|
|
1265
|
+
1 < this.length && (O[r] || k.uniqueSort(n),
|
|
1266
|
+
H.test(r) && n.reverse()),
|
|
1267
|
+
this.pushStack(n)
|
|
1268
|
+
}
|
|
1269
|
+
});
|
|
1270
|
+
var R = /[^\x20\t\r\n\f]+/g;
|
|
1271
|
+
function M(e) {
|
|
1272
|
+
return e
|
|
1273
|
+
}
|
|
1274
|
+
function I(e) {
|
|
1275
|
+
throw e
|
|
1276
|
+
}
|
|
1277
|
+
function W(e, t, n, r) {
|
|
1278
|
+
var i;
|
|
1279
|
+
try {
|
|
1280
|
+
e && m(i = e.promise) ? i.call(e).done(t).fail(n) : e && m(i = e.then) ? i.call(e, t, n) : t.apply(void 0, [e].slice(r))
|
|
1281
|
+
} catch (e) {
|
|
1282
|
+
n.apply(void 0, [e])
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
k.Callbacks = function(r) {
|
|
1286
|
+
var e, n;
|
|
1287
|
+
r = "string" == typeof r ? (e = r,
|
|
1288
|
+
n = {},
|
|
1289
|
+
k.each(e.match(R) || [], function(e, t) {
|
|
1290
|
+
n[t] = !0
|
|
1291
|
+
}),
|
|
1292
|
+
n) : k.extend({}, r);
|
|
1293
|
+
var i, t, o, a, s = [], u = [], l = -1, c = function() {
|
|
1294
|
+
for (a = a || r.once,
|
|
1295
|
+
o = i = !0; u.length; l = -1) {
|
|
1296
|
+
t = u.shift();
|
|
1297
|
+
while (++l < s.length)
|
|
1298
|
+
!1 === s[l].apply(t[0], t[1]) && r.stopOnFalse && (l = s.length,
|
|
1299
|
+
t = !1)
|
|
1300
|
+
}
|
|
1301
|
+
r.memory || (t = !1),
|
|
1302
|
+
i = !1,
|
|
1303
|
+
a && (s = t ? [] : "")
|
|
1304
|
+
}, f = {
|
|
1305
|
+
add: function() {
|
|
1306
|
+
return s && (t && !i && (l = s.length - 1,
|
|
1307
|
+
u.push(t)),
|
|
1308
|
+
function n(e) {
|
|
1309
|
+
k.each(e, function(e, t) {
|
|
1310
|
+
m(t) ? r.unique && f.has(t) || s.push(t) : t && t.length && "string" !== w(t) && n(t)
|
|
1311
|
+
})
|
|
1312
|
+
}(arguments),
|
|
1313
|
+
t && !i && c()),
|
|
1314
|
+
this
|
|
1315
|
+
},
|
|
1316
|
+
remove: function() {
|
|
1317
|
+
return k.each(arguments, function(e, t) {
|
|
1318
|
+
var n;
|
|
1319
|
+
while (-1 < (n = k.inArray(t, s, n)))
|
|
1320
|
+
s.splice(n, 1),
|
|
1321
|
+
n <= l && l--
|
|
1322
|
+
}),
|
|
1323
|
+
this
|
|
1324
|
+
},
|
|
1325
|
+
has: function(e) {
|
|
1326
|
+
return e ? -1 < k.inArray(e, s) : 0 < s.length
|
|
1327
|
+
},
|
|
1328
|
+
empty: function() {
|
|
1329
|
+
return s && (s = []),
|
|
1330
|
+
this
|
|
1331
|
+
},
|
|
1332
|
+
disable: function() {
|
|
1333
|
+
return a = u = [],
|
|
1334
|
+
s = t = "",
|
|
1335
|
+
this
|
|
1336
|
+
},
|
|
1337
|
+
disabled: function() {
|
|
1338
|
+
return !s
|
|
1339
|
+
},
|
|
1340
|
+
lock: function() {
|
|
1341
|
+
return a = u = [],
|
|
1342
|
+
t || i || (s = t = ""),
|
|
1343
|
+
this
|
|
1344
|
+
},
|
|
1345
|
+
locked: function() {
|
|
1346
|
+
return !!a
|
|
1347
|
+
},
|
|
1348
|
+
fireWith: function(e, t) {
|
|
1349
|
+
return a || (t = [e, (t = t || []).slice ? t.slice() : t],
|
|
1350
|
+
u.push(t),
|
|
1351
|
+
i || c()),
|
|
1352
|
+
this
|
|
1353
|
+
},
|
|
1354
|
+
fire: function() {
|
|
1355
|
+
return f.fireWith(this, arguments),
|
|
1356
|
+
this
|
|
1357
|
+
},
|
|
1358
|
+
fired: function() {
|
|
1359
|
+
return !!o
|
|
1360
|
+
}
|
|
1361
|
+
};
|
|
1362
|
+
return f
|
|
1363
|
+
}
|
|
1364
|
+
,
|
|
1365
|
+
k.extend({
|
|
1366
|
+
Deferred: function(e) {
|
|
1367
|
+
var o = [["notify", "progress", k.Callbacks("memory"), k.Callbacks("memory"), 2], ["resolve", "done", k.Callbacks("once memory"), k.Callbacks("once memory"), 0, "resolved"], ["reject", "fail", k.Callbacks("once memory"), k.Callbacks("once memory"), 1, "rejected"]]
|
|
1368
|
+
, i = "pending"
|
|
1369
|
+
, a = {
|
|
1370
|
+
state: function() {
|
|
1371
|
+
return i
|
|
1372
|
+
},
|
|
1373
|
+
always: function() {
|
|
1374
|
+
return s.done(arguments).fail(arguments),
|
|
1375
|
+
this
|
|
1376
|
+
},
|
|
1377
|
+
"catch": function(e) {
|
|
1378
|
+
return a.then(null, e)
|
|
1379
|
+
},
|
|
1380
|
+
pipe: function() {
|
|
1381
|
+
var i = arguments;
|
|
1382
|
+
return k.Deferred(function(r) {
|
|
1383
|
+
k.each(o, function(e, t) {
|
|
1384
|
+
var n = m(i[t[4]]) && i[t[4]];
|
|
1385
|
+
s[t[1]](function() {
|
|
1386
|
+
var e = n && n.apply(this, arguments);
|
|
1387
|
+
e && m(e.promise) ? e.promise().progress(r.notify).done(r.resolve).fail(r.reject) : r[t[0] + "With"](this, n ? [e] : arguments)
|
|
1388
|
+
})
|
|
1389
|
+
}),
|
|
1390
|
+
i = null
|
|
1391
|
+
}).promise()
|
|
1392
|
+
},
|
|
1393
|
+
then: function(t, n, r) {
|
|
1394
|
+
var u = 0;
|
|
1395
|
+
function l(i, o, a, s) {
|
|
1396
|
+
return function() {
|
|
1397
|
+
var n = this
|
|
1398
|
+
, r = arguments
|
|
1399
|
+
, e = function() {
|
|
1400
|
+
var e, t;
|
|
1401
|
+
if (!(i < u)) {
|
|
1402
|
+
if ((e = a.apply(n, r)) === o.promise())
|
|
1403
|
+
throw new TypeError("Thenable self-resolution");
|
|
1404
|
+
t = e && ("object" == typeof e || "function" == typeof e) && e.then,
|
|
1405
|
+
m(t) ? s ? t.call(e, l(u, o, M, s), l(u, o, I, s)) : (u++,
|
|
1406
|
+
t.call(e, l(u, o, M, s), l(u, o, I, s), l(u, o, M, o.notifyWith))) : (a !== M && (n = void 0,
|
|
1407
|
+
r = [e]),
|
|
1408
|
+
(s || o.resolveWith)(n, r))
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
, t = s ? e : function() {
|
|
1412
|
+
try {
|
|
1413
|
+
e()
|
|
1414
|
+
} catch (e) {
|
|
1415
|
+
k.Deferred.exceptionHook && k.Deferred.exceptionHook(e, t.stackTrace),
|
|
1416
|
+
u <= i + 1 && (a !== I && (n = void 0,
|
|
1417
|
+
r = [e]),
|
|
1418
|
+
o.rejectWith(n, r))
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
;
|
|
1422
|
+
i ? t() : (k.Deferred.getStackHook && (t.stackTrace = k.Deferred.getStackHook()),
|
|
1423
|
+
C.setTimeout(t))
|
|
1424
|
+
}
|
|
1425
|
+
}
|
|
1426
|
+
return k.Deferred(function(e) {
|
|
1427
|
+
o[0][3].add(l(0, e, m(r) ? r : M, e.notifyWith)),
|
|
1428
|
+
o[1][3].add(l(0, e, m(t) ? t : M)),
|
|
1429
|
+
o[2][3].add(l(0, e, m(n) ? n : I))
|
|
1430
|
+
}).promise()
|
|
1431
|
+
},
|
|
1432
|
+
promise: function(e) {
|
|
1433
|
+
return null != e ? k.extend(e, a) : a
|
|
1434
|
+
}
|
|
1435
|
+
}
|
|
1436
|
+
, s = {};
|
|
1437
|
+
return k.each(o, function(e, t) {
|
|
1438
|
+
var n = t[2]
|
|
1439
|
+
, r = t[5];
|
|
1440
|
+
a[t[1]] = n.add,
|
|
1441
|
+
r && n.add(function() {
|
|
1442
|
+
i = r
|
|
1443
|
+
}, o[3 - e][2].disable, o[3 - e][3].disable, o[0][2].lock, o[0][3].lock),
|
|
1444
|
+
n.add(t[3].fire),
|
|
1445
|
+
s[t[0]] = function() {
|
|
1446
|
+
return s[t[0] + "With"](this === s ? void 0 : this, arguments),
|
|
1447
|
+
this
|
|
1448
|
+
}
|
|
1449
|
+
,
|
|
1450
|
+
s[t[0] + "With"] = n.fireWith
|
|
1451
|
+
}),
|
|
1452
|
+
a.promise(s),
|
|
1453
|
+
e && e.call(s, s),
|
|
1454
|
+
s
|
|
1455
|
+
},
|
|
1456
|
+
when: function(e) {
|
|
1457
|
+
var n = arguments.length
|
|
1458
|
+
, t = n
|
|
1459
|
+
, r = Array(t)
|
|
1460
|
+
, i = s.call(arguments)
|
|
1461
|
+
, o = k.Deferred()
|
|
1462
|
+
, a = function(t) {
|
|
1463
|
+
return function(e) {
|
|
1464
|
+
r[t] = this,
|
|
1465
|
+
i[t] = 1 < arguments.length ? s.call(arguments) : e,
|
|
1466
|
+
--n || o.resolveWith(r, i)
|
|
1467
|
+
}
|
|
1468
|
+
};
|
|
1469
|
+
if (n <= 1 && (W(e, o.done(a(t)).resolve, o.reject, !n),
|
|
1470
|
+
"pending" === o.state() || m(i[t] && i[t].then)))
|
|
1471
|
+
return o.then();
|
|
1472
|
+
while (t--)
|
|
1473
|
+
W(i[t], a(t), o.reject);
|
|
1474
|
+
return o.promise()
|
|
1475
|
+
}
|
|
1476
|
+
});
|
|
1477
|
+
var $ = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
|
|
1478
|
+
k.Deferred.exceptionHook = function(e, t) {
|
|
1479
|
+
C.console && C.console.warn && e && $.test(e.name) && C.console.warn("jQuery.Deferred exception: " + e.message, e.stack, t)
|
|
1480
|
+
}
|
|
1481
|
+
,
|
|
1482
|
+
k.readyException = function(e) {
|
|
1483
|
+
C.setTimeout(function() {
|
|
1484
|
+
throw e
|
|
1485
|
+
})
|
|
1486
|
+
}
|
|
1487
|
+
;
|
|
1488
|
+
var F = k.Deferred();
|
|
1489
|
+
function B() {
|
|
1490
|
+
E.removeEventListener("DOMContentLoaded", B),
|
|
1491
|
+
C.removeEventListener("load", B),
|
|
1492
|
+
k.ready()
|
|
1493
|
+
}
|
|
1494
|
+
k.fn.ready = function(e) {
|
|
1495
|
+
return F.then(e)["catch"](function(e) {
|
|
1496
|
+
k.readyException(e)
|
|
1497
|
+
}),
|
|
1498
|
+
this
|
|
1499
|
+
}
|
|
1500
|
+
,
|
|
1501
|
+
k.extend({
|
|
1502
|
+
isReady: !1,
|
|
1503
|
+
readyWait: 1,
|
|
1504
|
+
ready: function(e) {
|
|
1505
|
+
(!0 === e ? --k.readyWait : k.isReady) || (k.isReady = !0) !== e && 0 < --k.readyWait || F.resolveWith(E, [k])
|
|
1506
|
+
}
|
|
1507
|
+
}),
|
|
1508
|
+
k.ready.then = F.then,
|
|
1509
|
+
"complete" === E.readyState || "loading" !== E.readyState && !E.documentElement.doScroll ? C.setTimeout(k.ready) : (E.addEventListener("DOMContentLoaded", B),
|
|
1510
|
+
C.addEventListener("load", B));
|
|
1511
|
+
var _ = function(e, t, n, r, i, o, a) {
|
|
1512
|
+
var s = 0
|
|
1513
|
+
, u = e.length
|
|
1514
|
+
, l = null == n;
|
|
1515
|
+
if ("object" === w(n))
|
|
1516
|
+
for (s in i = !0,
|
|
1517
|
+
n)
|
|
1518
|
+
_(e, t, s, n[s], !0, o, a);
|
|
1519
|
+
else if (void 0 !== r && (i = !0,
|
|
1520
|
+
m(r) || (a = !0),
|
|
1521
|
+
l && (a ? (t.call(e, r),
|
|
1522
|
+
t = null) : (l = t,
|
|
1523
|
+
t = function(e, t, n) {
|
|
1524
|
+
return l.call(k(e), n)
|
|
1525
|
+
}
|
|
1526
|
+
)),
|
|
1527
|
+
t))
|
|
1528
|
+
for (; s < u; s++)
|
|
1529
|
+
t(e[s], n, a ? r : r.call(e[s], s, t(e[s], n)));
|
|
1530
|
+
return i ? e : l ? t.call(e) : u ? t(e[0], n) : o
|
|
1531
|
+
}
|
|
1532
|
+
, z = /^-ms-/
|
|
1533
|
+
, U = /-([a-z])/g;
|
|
1534
|
+
function X(e, t) {
|
|
1535
|
+
return t.toUpperCase()
|
|
1536
|
+
}
|
|
1537
|
+
function V(e) {
|
|
1538
|
+
return e.replace(z, "ms-").replace(U, X)
|
|
1539
|
+
}
|
|
1540
|
+
var G = function(e) {
|
|
1541
|
+
return 1 === e.nodeType || 9 === e.nodeType || !+e.nodeType
|
|
1542
|
+
};
|
|
1543
|
+
function Y() {
|
|
1544
|
+
this.expando = k.expando + Y.uid++
|
|
1545
|
+
}
|
|
1546
|
+
Y.uid = 1,
|
|
1547
|
+
Y.prototype = {
|
|
1548
|
+
cache: function(e) {
|
|
1549
|
+
var t = e[this.expando];
|
|
1550
|
+
return t || (t = {},
|
|
1551
|
+
G(e) && (e.nodeType ? e[this.expando] = t : Object.defineProperty(e, this.expando, {
|
|
1552
|
+
value: t,
|
|
1553
|
+
configurable: !0
|
|
1554
|
+
}))),
|
|
1555
|
+
t
|
|
1556
|
+
},
|
|
1557
|
+
set: function(e, t, n) {
|
|
1558
|
+
var r, i = this.cache(e);
|
|
1559
|
+
if ("string" == typeof t)
|
|
1560
|
+
i[V(t)] = n;
|
|
1561
|
+
else
|
|
1562
|
+
for (r in t)
|
|
1563
|
+
i[V(r)] = t[r];
|
|
1564
|
+
return i
|
|
1565
|
+
},
|
|
1566
|
+
get: function(e, t) {
|
|
1567
|
+
return void 0 === t ? this.cache(e) : e[this.expando] && e[this.expando][V(t)]
|
|
1568
|
+
},
|
|
1569
|
+
access: function(e, t, n) {
|
|
1570
|
+
return void 0 === t || t && "string" == typeof t && void 0 === n ? this.get(e, t) : (this.set(e, t, n),
|
|
1571
|
+
void 0 !== n ? n : t)
|
|
1572
|
+
},
|
|
1573
|
+
remove: function(e, t) {
|
|
1574
|
+
var n, r = e[this.expando];
|
|
1575
|
+
if (void 0 !== r) {
|
|
1576
|
+
if (void 0 !== t) {
|
|
1577
|
+
n = (t = Array.isArray(t) ? t.map(V) : (t = V(t))in r ? [t] : t.match(R) || []).length;
|
|
1578
|
+
while (n--)
|
|
1579
|
+
delete r[t[n]]
|
|
1580
|
+
}
|
|
1581
|
+
(void 0 === t || k.isEmptyObject(r)) && (e.nodeType ? e[this.expando] = void 0 : delete e[this.expando])
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
hasData: function(e) {
|
|
1585
|
+
var t = e[this.expando];
|
|
1586
|
+
return void 0 !== t && !k.isEmptyObject(t)
|
|
1587
|
+
}
|
|
1588
|
+
};
|
|
1589
|
+
var Q = new Y
|
|
1590
|
+
, J = new Y
|
|
1591
|
+
, K = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/
|
|
1592
|
+
, Z = /[A-Z]/g;
|
|
1593
|
+
function ee(e, t, n) {
|
|
1594
|
+
var r, i;
|
|
1595
|
+
if (void 0 === n && 1 === e.nodeType)
|
|
1596
|
+
if (r = "data-" + t.replace(Z, "-$&").toLowerCase(),
|
|
1597
|
+
"string" == typeof (n = e.getAttribute(r))) {
|
|
1598
|
+
try {
|
|
1599
|
+
n = "true" === (i = n) || "false" !== i && ("null" === i ? null : i === +i + "" ? +i : K.test(i) ? JSON.parse(i) : i)
|
|
1600
|
+
} catch (e) {}
|
|
1601
|
+
J.set(e, t, n)
|
|
1602
|
+
} else
|
|
1603
|
+
n = void 0;
|
|
1604
|
+
return n
|
|
1605
|
+
}
|
|
1606
|
+
k.extend({
|
|
1607
|
+
hasData: function(e) {
|
|
1608
|
+
return J.hasData(e) || Q.hasData(e)
|
|
1609
|
+
},
|
|
1610
|
+
data: function(e, t, n) {
|
|
1611
|
+
return J.access(e, t, n)
|
|
1612
|
+
},
|
|
1613
|
+
removeData: function(e, t) {
|
|
1614
|
+
J.remove(e, t)
|
|
1615
|
+
},
|
|
1616
|
+
_data: function(e, t, n) {
|
|
1617
|
+
return Q.access(e, t, n)
|
|
1618
|
+
},
|
|
1619
|
+
_removeData: function(e, t) {
|
|
1620
|
+
Q.remove(e, t)
|
|
1621
|
+
}
|
|
1622
|
+
}),
|
|
1623
|
+
k.fn.extend({
|
|
1624
|
+
data: function(n, e) {
|
|
1625
|
+
var t, r, i, o = this[0], a = o && o.attributes;
|
|
1626
|
+
if (void 0 === n) {
|
|
1627
|
+
if (this.length && (i = J.get(o),
|
|
1628
|
+
1 === o.nodeType && !Q.get(o, "hasDataAttrs"))) {
|
|
1629
|
+
t = a.length;
|
|
1630
|
+
while (t--)
|
|
1631
|
+
a[t] && 0 === (r = a[t].name).indexOf("data-") && (r = V(r.slice(5)),
|
|
1632
|
+
ee(o, r, i[r]));
|
|
1633
|
+
Q.set(o, "hasDataAttrs", !0)
|
|
1634
|
+
}
|
|
1635
|
+
return i
|
|
1636
|
+
}
|
|
1637
|
+
return "object" == typeof n ? this.each(function() {
|
|
1638
|
+
J.set(this, n)
|
|
1639
|
+
}) : _(this, function(e) {
|
|
1640
|
+
var t;
|
|
1641
|
+
if (o && void 0 === e)
|
|
1642
|
+
return void 0 !== (t = J.get(o, n)) ? t : void 0 !== (t = ee(o, n)) ? t : void 0;
|
|
1643
|
+
this.each(function() {
|
|
1644
|
+
J.set(this, n, e)
|
|
1645
|
+
})
|
|
1646
|
+
}, null, e, 1 < arguments.length, null, !0)
|
|
1647
|
+
},
|
|
1648
|
+
removeData: function(e) {
|
|
1649
|
+
return this.each(function() {
|
|
1650
|
+
J.remove(this, e)
|
|
1651
|
+
})
|
|
1652
|
+
}
|
|
1653
|
+
}),
|
|
1654
|
+
k.extend({
|
|
1655
|
+
queue: function(e, t, n) {
|
|
1656
|
+
var r;
|
|
1657
|
+
if (e)
|
|
1658
|
+
return t = (t || "fx") + "queue",
|
|
1659
|
+
r = Q.get(e, t),
|
|
1660
|
+
n && (!r || Array.isArray(n) ? r = Q.access(e, t, k.makeArray(n)) : r.push(n)),
|
|
1661
|
+
r || []
|
|
1662
|
+
},
|
|
1663
|
+
dequeue: function(e, t) {
|
|
1664
|
+
t = t || "fx";
|
|
1665
|
+
var n = k.queue(e, t)
|
|
1666
|
+
, r = n.length
|
|
1667
|
+
, i = n.shift()
|
|
1668
|
+
, o = k._queueHooks(e, t);
|
|
1669
|
+
"inprogress" === i && (i = n.shift(),
|
|
1670
|
+
r--),
|
|
1671
|
+
i && ("fx" === t && n.unshift("inprogress"),
|
|
1672
|
+
delete o.stop,
|
|
1673
|
+
i.call(e, function() {
|
|
1674
|
+
k.dequeue(e, t)
|
|
1675
|
+
}, o)),
|
|
1676
|
+
!r && o && o.empty.fire()
|
|
1677
|
+
},
|
|
1678
|
+
_queueHooks: function(e, t) {
|
|
1679
|
+
var n = t + "queueHooks";
|
|
1680
|
+
return Q.get(e, n) || Q.access(e, n, {
|
|
1681
|
+
empty: k.Callbacks("once memory").add(function() {
|
|
1682
|
+
Q.remove(e, [t + "queue", n])
|
|
1683
|
+
})
|
|
1684
|
+
})
|
|
1685
|
+
}
|
|
1686
|
+
}),
|
|
1687
|
+
k.fn.extend({
|
|
1688
|
+
queue: function(t, n) {
|
|
1689
|
+
var e = 2;
|
|
1690
|
+
return "string" != typeof t && (n = t,
|
|
1691
|
+
t = "fx",
|
|
1692
|
+
e--),
|
|
1693
|
+
arguments.length < e ? k.queue(this[0], t) : void 0 === n ? this : this.each(function() {
|
|
1694
|
+
var e = k.queue(this, t, n);
|
|
1695
|
+
k._queueHooks(this, t),
|
|
1696
|
+
"fx" === t && "inprogress" !== e[0] && k.dequeue(this, t)
|
|
1697
|
+
})
|
|
1698
|
+
},
|
|
1699
|
+
dequeue: function(e) {
|
|
1700
|
+
return this.each(function() {
|
|
1701
|
+
k.dequeue(this, e)
|
|
1702
|
+
})
|
|
1703
|
+
},
|
|
1704
|
+
clearQueue: function(e) {
|
|
1705
|
+
return this.queue(e || "fx", [])
|
|
1706
|
+
},
|
|
1707
|
+
promise: function(e, t) {
|
|
1708
|
+
var n, r = 1, i = k.Deferred(), o = this, a = this.length, s = function() {
|
|
1709
|
+
--r || i.resolveWith(o, [o])
|
|
1710
|
+
};
|
|
1711
|
+
"string" != typeof e && (t = e,
|
|
1712
|
+
e = void 0),
|
|
1713
|
+
e = e || "fx";
|
|
1714
|
+
while (a--)
|
|
1715
|
+
(n = Q.get(o[a], e + "queueHooks")) && n.empty && (r++,
|
|
1716
|
+
n.empty.add(s));
|
|
1717
|
+
return s(),
|
|
1718
|
+
i.promise(t)
|
|
1719
|
+
}
|
|
1720
|
+
});
|
|
1721
|
+
var te = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source
|
|
1722
|
+
, ne = new RegExp("^(?:([+-])=|)(" + te + ")([a-z%]*)$","i")
|
|
1723
|
+
, re = ["Top", "Right", "Bottom", "Left"]
|
|
1724
|
+
, ie = E.documentElement
|
|
1725
|
+
, oe = function(e) {
|
|
1726
|
+
return k.contains(e.ownerDocument, e)
|
|
1727
|
+
}
|
|
1728
|
+
, ae = {
|
|
1729
|
+
composed: !0
|
|
1730
|
+
};
|
|
1731
|
+
ie.getRootNode && (oe = function(e) {
|
|
1732
|
+
return k.contains(e.ownerDocument, e) || e.getRootNode(ae) === e.ownerDocument
|
|
1733
|
+
}
|
|
1734
|
+
);
|
|
1735
|
+
var se = function(e, t) {
|
|
1736
|
+
return "none" === (e = t || e).style.display || "" === e.style.display && oe(e) && "none" === k.css(e, "display")
|
|
1737
|
+
}
|
|
1738
|
+
, ue = function(e, t, n, r) {
|
|
1739
|
+
var i, o, a = {};
|
|
1740
|
+
for (o in t)
|
|
1741
|
+
a[o] = e.style[o],
|
|
1742
|
+
e.style[o] = t[o];
|
|
1743
|
+
for (o in i = n.apply(e, r || []),
|
|
1744
|
+
t)
|
|
1745
|
+
e.style[o] = a[o];
|
|
1746
|
+
return i
|
|
1747
|
+
};
|
|
1748
|
+
function le(e, t, n, r) {
|
|
1749
|
+
var i, o, a = 20, s = r ? function() {
|
|
1750
|
+
return r.cur()
|
|
1751
|
+
}
|
|
1752
|
+
: function() {
|
|
1753
|
+
return k.css(e, t, "")
|
|
1754
|
+
}
|
|
1755
|
+
, u = s(), l = n && n[3] || (k.cssNumber[t] ? "" : "px"), c = e.nodeType && (k.cssNumber[t] || "px" !== l && +u) && ne.exec(k.css(e, t));
|
|
1756
|
+
if (c && c[3] !== l) {
|
|
1757
|
+
u /= 2,
|
|
1758
|
+
l = l || c[3],
|
|
1759
|
+
c = +u || 1;
|
|
1760
|
+
while (a--)
|
|
1761
|
+
k.style(e, t, c + l),
|
|
1762
|
+
(1 - o) * (1 - (o = s() / u || .5)) <= 0 && (a = 0),
|
|
1763
|
+
c /= o;
|
|
1764
|
+
c *= 2,
|
|
1765
|
+
k.style(e, t, c + l),
|
|
1766
|
+
n = n || []
|
|
1767
|
+
}
|
|
1768
|
+
return n && (c = +c || +u || 0,
|
|
1769
|
+
i = n[1] ? c + (n[1] + 1) * n[2] : +n[2],
|
|
1770
|
+
r && (r.unit = l,
|
|
1771
|
+
r.start = c,
|
|
1772
|
+
r.end = i)),
|
|
1773
|
+
i
|
|
1774
|
+
}
|
|
1775
|
+
var ce = {};
|
|
1776
|
+
function fe(e, t) {
|
|
1777
|
+
for (var n, r, i, o, a, s, u, l = [], c = 0, f = e.length; c < f; c++)
|
|
1778
|
+
(r = e[c]).style && (n = r.style.display,
|
|
1779
|
+
t ? ("none" === n && (l[c] = Q.get(r, "display") || null,
|
|
1780
|
+
l[c] || (r.style.display = "")),
|
|
1781
|
+
"" === r.style.display && se(r) && (l[c] = (u = a = o = void 0,
|
|
1782
|
+
a = (i = r).ownerDocument,
|
|
1783
|
+
s = i.nodeName,
|
|
1784
|
+
(u = ce[s]) || (o = a.body.appendChild(a.createElement(s)),
|
|
1785
|
+
u = k.css(o, "display"),
|
|
1786
|
+
o.parentNode.removeChild(o),
|
|
1787
|
+
"none" === u && (u = "block"),
|
|
1788
|
+
ce[s] = u)))) : "none" !== n && (l[c] = "none",
|
|
1789
|
+
Q.set(r, "display", n)));
|
|
1790
|
+
for (c = 0; c < f; c++)
|
|
1791
|
+
null != l[c] && (e[c].style.display = l[c]);
|
|
1792
|
+
return e
|
|
1793
|
+
}
|
|
1794
|
+
k.fn.extend({
|
|
1795
|
+
show: function() {
|
|
1796
|
+
return fe(this, !0)
|
|
1797
|
+
},
|
|
1798
|
+
hide: function() {
|
|
1799
|
+
return fe(this)
|
|
1800
|
+
},
|
|
1801
|
+
toggle: function(e) {
|
|
1802
|
+
return "boolean" == typeof e ? e ? this.show() : this.hide() : this.each(function() {
|
|
1803
|
+
se(this) ? k(this).show() : k(this).hide()
|
|
1804
|
+
})
|
|
1805
|
+
}
|
|
1806
|
+
});
|
|
1807
|
+
var pe = /^(?:checkbox|radio)$/i
|
|
1808
|
+
, de = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i
|
|
1809
|
+
, he = /^$|^module$|\/(?:java|ecma)script/i
|
|
1810
|
+
, ge = {
|
|
1811
|
+
option: [1, "<select multiple='multiple'>", "</select>"],
|
|
1812
|
+
thead: [1, "<table>", "</table>"],
|
|
1813
|
+
col: [2, "<table><colgroup>", "</colgroup></table>"],
|
|
1814
|
+
tr: [2, "<table><tbody>", "</tbody></table>"],
|
|
1815
|
+
td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
|
|
1816
|
+
_default: [0, "", ""]
|
|
1817
|
+
};
|
|
1818
|
+
function ve(e, t) {
|
|
1819
|
+
var n;
|
|
1820
|
+
return n = "undefined" != typeof e.getElementsByTagName ? e.getElementsByTagName(t || "*") : "undefined" != typeof e.querySelectorAll ? e.querySelectorAll(t || "*") : [],
|
|
1821
|
+
void 0 === t || t && A(e, t) ? k.merge([e], n) : n
|
|
1822
|
+
}
|
|
1823
|
+
function ye(e, t) {
|
|
1824
|
+
for (var n = 0, r = e.length; n < r; n++)
|
|
1825
|
+
Q.set(e[n], "globalEval", !t || Q.get(t[n], "globalEval"))
|
|
1826
|
+
}
|
|
1827
|
+
ge.optgroup = ge.option,
|
|
1828
|
+
ge.tbody = ge.tfoot = ge.colgroup = ge.caption = ge.thead,
|
|
1829
|
+
ge.th = ge.td;
|
|
1830
|
+
var me, xe, be = /<|&#?\w+;/;
|
|
1831
|
+
function we(e, t, n, r, i) {
|
|
1832
|
+
for (var o, a, s, u, l, c, f = t.createDocumentFragment(), p = [], d = 0, h = e.length; d < h; d++)
|
|
1833
|
+
if ((o = e[d]) || 0 === o)
|
|
1834
|
+
if ("object" === w(o))
|
|
1835
|
+
k.merge(p, o.nodeType ? [o] : o);
|
|
1836
|
+
else if (be.test(o)) {
|
|
1837
|
+
a = a || f.appendChild(t.createElement("div")),
|
|
1838
|
+
s = (de.exec(o) || ["", ""])[1].toLowerCase(),
|
|
1839
|
+
u = ge[s] || ge._default,
|
|
1840
|
+
a.innerHTML = u[1] + k.htmlPrefilter(o) + u[2],
|
|
1841
|
+
c = u[0];
|
|
1842
|
+
while (c--)
|
|
1843
|
+
a = a.lastChild;
|
|
1844
|
+
k.merge(p, a.childNodes),
|
|
1845
|
+
(a = f.firstChild).textContent = ""
|
|
1846
|
+
} else
|
|
1847
|
+
p.push(t.createTextNode(o));
|
|
1848
|
+
f.textContent = "",
|
|
1849
|
+
d = 0;
|
|
1850
|
+
while (o = p[d++])
|
|
1851
|
+
if (r && -1 < k.inArray(o, r))
|
|
1852
|
+
i && i.push(o);
|
|
1853
|
+
else if (l = oe(o),
|
|
1854
|
+
a = ve(f.appendChild(o), "script"),
|
|
1855
|
+
l && ye(a),
|
|
1856
|
+
n) {
|
|
1857
|
+
c = 0;
|
|
1858
|
+
while (o = a[c++])
|
|
1859
|
+
he.test(o.type || "") && n.push(o)
|
|
1860
|
+
}
|
|
1861
|
+
return f
|
|
1862
|
+
}
|
|
1863
|
+
me = E.createDocumentFragment().appendChild(E.createElement("div")),
|
|
1864
|
+
(xe = E.createElement("input")).setAttribute("type", "radio"),
|
|
1865
|
+
xe.setAttribute("checked", "checked"),
|
|
1866
|
+
xe.setAttribute("name", "t"),
|
|
1867
|
+
me.appendChild(xe),
|
|
1868
|
+
y.checkClone = me.cloneNode(!0).cloneNode(!0).lastChild.checked,
|
|
1869
|
+
me.innerHTML = "<textarea>x</textarea>",
|
|
1870
|
+
y.noCloneChecked = !!me.cloneNode(!0).lastChild.defaultValue;
|
|
1871
|
+
var Te = /^key/
|
|
1872
|
+
, Ce = /^(?:mouse|pointer|contextmenu|drag|drop)|click/
|
|
1873
|
+
, Ee = /^([^.]*)(?:\.(.+)|)/;
|
|
1874
|
+
function ke() {
|
|
1875
|
+
return !0
|
|
1876
|
+
}
|
|
1877
|
+
function Se() {
|
|
1878
|
+
return !1
|
|
1879
|
+
}
|
|
1880
|
+
function Ne(e, t) {
|
|
1881
|
+
return e === function() {
|
|
1882
|
+
try {
|
|
1883
|
+
return E.activeElement
|
|
1884
|
+
} catch (e) {}
|
|
1885
|
+
}() == ("focus" === t)
|
|
1886
|
+
}
|
|
1887
|
+
function Ae(e, t, n, r, i, o) {
|
|
1888
|
+
var a, s;
|
|
1889
|
+
if ("object" == typeof t) {
|
|
1890
|
+
for (s in "string" != typeof n && (r = r || n,
|
|
1891
|
+
n = void 0),
|
|
1892
|
+
t)
|
|
1893
|
+
Ae(e, s, n, r, t[s], o);
|
|
1894
|
+
return e
|
|
1895
|
+
}
|
|
1896
|
+
if (null == r && null == i ? (i = n,
|
|
1897
|
+
r = n = void 0) : null == i && ("string" == typeof n ? (i = r,
|
|
1898
|
+
r = void 0) : (i = r,
|
|
1899
|
+
r = n,
|
|
1900
|
+
n = void 0)),
|
|
1901
|
+
!1 === i)
|
|
1902
|
+
i = Se;
|
|
1903
|
+
else if (!i)
|
|
1904
|
+
return e;
|
|
1905
|
+
return 1 === o && (a = i,
|
|
1906
|
+
(i = function(e) {
|
|
1907
|
+
return k().off(e),
|
|
1908
|
+
a.apply(this, arguments)
|
|
1909
|
+
}
|
|
1910
|
+
).guid = a.guid || (a.guid = k.guid++)),
|
|
1911
|
+
e.each(function() {
|
|
1912
|
+
k.event.add(this, t, i, r, n)
|
|
1913
|
+
})
|
|
1914
|
+
}
|
|
1915
|
+
function De(e, i, o) {
|
|
1916
|
+
o ? (Q.set(e, i, !1),
|
|
1917
|
+
k.event.add(e, i, {
|
|
1918
|
+
namespace: !1,
|
|
1919
|
+
handler: function(e) {
|
|
1920
|
+
var t, n, r = Q.get(this, i);
|
|
1921
|
+
if (1 & e.isTrigger && this[i]) {
|
|
1922
|
+
if (r.length)
|
|
1923
|
+
(k.event.special[i] || {}).delegateType && e.stopPropagation();
|
|
1924
|
+
else if (r = s.call(arguments),
|
|
1925
|
+
Q.set(this, i, r),
|
|
1926
|
+
t = o(this, i),
|
|
1927
|
+
this[i](),
|
|
1928
|
+
r !== (n = Q.get(this, i)) || t ? Q.set(this, i, !1) : n = {},
|
|
1929
|
+
r !== n)
|
|
1930
|
+
return e.stopImmediatePropagation(),
|
|
1931
|
+
e.preventDefault(),
|
|
1932
|
+
n.value
|
|
1933
|
+
} else
|
|
1934
|
+
r.length && (Q.set(this, i, {
|
|
1935
|
+
value: k.event.trigger(k.extend(r[0], k.Event.prototype), r.slice(1), this)
|
|
1936
|
+
}),
|
|
1937
|
+
e.stopImmediatePropagation())
|
|
1938
|
+
}
|
|
1939
|
+
})) : void 0 === Q.get(e, i) && k.event.add(e, i, ke)
|
|
1940
|
+
}
|
|
1941
|
+
k.event = {
|
|
1942
|
+
global: {},
|
|
1943
|
+
add: function(t, e, n, r, i) {
|
|
1944
|
+
var o, a, s, u, l, c, f, p, d, h, g, v = Q.get(t);
|
|
1945
|
+
if (v) {
|
|
1946
|
+
n.handler && (n = (o = n).handler,
|
|
1947
|
+
i = o.selector),
|
|
1948
|
+
i && k.find.matchesSelector(ie, i),
|
|
1949
|
+
n.guid || (n.guid = k.guid++),
|
|
1950
|
+
(u = v.events) || (u = v.events = {}),
|
|
1951
|
+
(a = v.handle) || (a = v.handle = function(e) {
|
|
1952
|
+
return "undefined" != typeof k && k.event.triggered !== e.type ? k.event.dispatch.apply(t, arguments) : void 0
|
|
1953
|
+
}
|
|
1954
|
+
),
|
|
1955
|
+
l = (e = (e || "").match(R) || [""]).length;
|
|
1956
|
+
while (l--)
|
|
1957
|
+
d = g = (s = Ee.exec(e[l]) || [])[1],
|
|
1958
|
+
h = (s[2] || "").split(".").sort(),
|
|
1959
|
+
d && (f = k.event.special[d] || {},
|
|
1960
|
+
d = (i ? f.delegateType : f.bindType) || d,
|
|
1961
|
+
f = k.event.special[d] || {},
|
|
1962
|
+
c = k.extend({
|
|
1963
|
+
type: d,
|
|
1964
|
+
origType: g,
|
|
1965
|
+
data: r,
|
|
1966
|
+
handler: n,
|
|
1967
|
+
guid: n.guid,
|
|
1968
|
+
selector: i,
|
|
1969
|
+
needsContext: i && k.expr.match.needsContext.test(i),
|
|
1970
|
+
namespace: h.join(".")
|
|
1971
|
+
}, o),
|
|
1972
|
+
(p = u[d]) || ((p = u[d] = []).delegateCount = 0,
|
|
1973
|
+
f.setup && !1 !== f.setup.call(t, r, h, a) || t.addEventListener && t.addEventListener(d, a)),
|
|
1974
|
+
f.add && (f.add.call(t, c),
|
|
1975
|
+
c.handler.guid || (c.handler.guid = n.guid)),
|
|
1976
|
+
i ? p.splice(p.delegateCount++, 0, c) : p.push(c),
|
|
1977
|
+
k.event.global[d] = !0)
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
remove: function(e, t, n, r, i) {
|
|
1981
|
+
var o, a, s, u, l, c, f, p, d, h, g, v = Q.hasData(e) && Q.get(e);
|
|
1982
|
+
if (v && (u = v.events)) {
|
|
1983
|
+
l = (t = (t || "").match(R) || [""]).length;
|
|
1984
|
+
while (l--)
|
|
1985
|
+
if (d = g = (s = Ee.exec(t[l]) || [])[1],
|
|
1986
|
+
h = (s[2] || "").split(".").sort(),
|
|
1987
|
+
d) {
|
|
1988
|
+
f = k.event.special[d] || {},
|
|
1989
|
+
p = u[d = (r ? f.delegateType : f.bindType) || d] || [],
|
|
1990
|
+
s = s[2] && new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)"),
|
|
1991
|
+
a = o = p.length;
|
|
1992
|
+
while (o--)
|
|
1993
|
+
c = p[o],
|
|
1994
|
+
!i && g !== c.origType || n && n.guid !== c.guid || s && !s.test(c.namespace) || r && r !== c.selector && ("**" !== r || !c.selector) || (p.splice(o, 1),
|
|
1995
|
+
c.selector && p.delegateCount--,
|
|
1996
|
+
f.remove && f.remove.call(e, c));
|
|
1997
|
+
a && !p.length && (f.teardown && !1 !== f.teardown.call(e, h, v.handle) || k.removeEvent(e, d, v.handle),
|
|
1998
|
+
delete u[d])
|
|
1999
|
+
} else
|
|
2000
|
+
for (d in u)
|
|
2001
|
+
k.event.remove(e, d + t[l], n, r, !0);
|
|
2002
|
+
k.isEmptyObject(u) && Q.remove(e, "handle events")
|
|
2003
|
+
}
|
|
2004
|
+
},
|
|
2005
|
+
dispatch: function(e) {
|
|
2006
|
+
var t, n, r, i, o, a, s = k.event.fix(e), u = new Array(arguments.length), l = (Q.get(this, "events") || {})[s.type] || [], c = k.event.special[s.type] || {};
|
|
2007
|
+
for (u[0] = s,
|
|
2008
|
+
t = 1; t < arguments.length; t++)
|
|
2009
|
+
u[t] = arguments[t];
|
|
2010
|
+
if (s.delegateTarget = this,
|
|
2011
|
+
!c.preDispatch || !1 !== c.preDispatch.call(this, s)) {
|
|
2012
|
+
a = k.event.handlers.call(this, s, l),
|
|
2013
|
+
t = 0;
|
|
2014
|
+
while ((i = a[t++]) && !s.isPropagationStopped()) {
|
|
2015
|
+
s.currentTarget = i.elem,
|
|
2016
|
+
n = 0;
|
|
2017
|
+
while ((o = i.handlers[n++]) && !s.isImmediatePropagationStopped())
|
|
2018
|
+
s.rnamespace && !1 !== o.namespace && !s.rnamespace.test(o.namespace) || (s.handleObj = o,
|
|
2019
|
+
s.data = o.data,
|
|
2020
|
+
void 0 !== (r = ((k.event.special[o.origType] || {}).handle || o.handler).apply(i.elem, u)) && !1 === (s.result = r) && (s.preventDefault(),
|
|
2021
|
+
s.stopPropagation()))
|
|
2022
|
+
}
|
|
2023
|
+
return c.postDispatch && c.postDispatch.call(this, s),
|
|
2024
|
+
s.result
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
2027
|
+
handlers: function(e, t) {
|
|
2028
|
+
var n, r, i, o, a, s = [], u = t.delegateCount, l = e.target;
|
|
2029
|
+
if (u && l.nodeType && !("click" === e.type && 1 <= e.button))
|
|
2030
|
+
for (; l !== this; l = l.parentNode || this)
|
|
2031
|
+
if (1 === l.nodeType && ("click" !== e.type || !0 !== l.disabled)) {
|
|
2032
|
+
for (o = [],
|
|
2033
|
+
a = {},
|
|
2034
|
+
n = 0; n < u; n++)
|
|
2035
|
+
void 0 === a[i = (r = t[n]).selector + " "] && (a[i] = r.needsContext ? -1 < k(i, this).index(l) : k.find(i, this, null, [l]).length),
|
|
2036
|
+
a[i] && o.push(r);
|
|
2037
|
+
o.length && s.push({
|
|
2038
|
+
elem: l,
|
|
2039
|
+
handlers: o
|
|
2040
|
+
})
|
|
2041
|
+
}
|
|
2042
|
+
return l = this,
|
|
2043
|
+
u < t.length && s.push({
|
|
2044
|
+
elem: l,
|
|
2045
|
+
handlers: t.slice(u)
|
|
2046
|
+
}),
|
|
2047
|
+
s
|
|
2048
|
+
},
|
|
2049
|
+
addProp: function(t, e) {
|
|
2050
|
+
Object.defineProperty(k.Event.prototype, t, {
|
|
2051
|
+
enumerable: !0,
|
|
2052
|
+
configurable: !0,
|
|
2053
|
+
get: m(e) ? function() {
|
|
2054
|
+
if (this.originalEvent)
|
|
2055
|
+
return e(this.originalEvent)
|
|
2056
|
+
}
|
|
2057
|
+
: function() {
|
|
2058
|
+
if (this.originalEvent)
|
|
2059
|
+
return this.originalEvent[t]
|
|
2060
|
+
}
|
|
2061
|
+
,
|
|
2062
|
+
set: function(e) {
|
|
2063
|
+
Object.defineProperty(this, t, {
|
|
2064
|
+
enumerable: !0,
|
|
2065
|
+
configurable: !0,
|
|
2066
|
+
writable: !0,
|
|
2067
|
+
value: e
|
|
2068
|
+
})
|
|
2069
|
+
}
|
|
2070
|
+
})
|
|
2071
|
+
},
|
|
2072
|
+
fix: function(e) {
|
|
2073
|
+
return e[k.expando] ? e : new k.Event(e)
|
|
2074
|
+
},
|
|
2075
|
+
special: {
|
|
2076
|
+
load: {
|
|
2077
|
+
noBubble: !0
|
|
2078
|
+
},
|
|
2079
|
+
click: {
|
|
2080
|
+
setup: function(e) {
|
|
2081
|
+
var t = this || e;
|
|
2082
|
+
return pe.test(t.type) && t.click && A(t, "input") && De(t, "click", ke),
|
|
2083
|
+
!1
|
|
2084
|
+
},
|
|
2085
|
+
trigger: function(e) {
|
|
2086
|
+
var t = this || e;
|
|
2087
|
+
return pe.test(t.type) && t.click && A(t, "input") && De(t, "click"),
|
|
2088
|
+
!0
|
|
2089
|
+
},
|
|
2090
|
+
_default: function(e) {
|
|
2091
|
+
var t = e.target;
|
|
2092
|
+
return pe.test(t.type) && t.click && A(t, "input") && Q.get(t, "click") || A(t, "a")
|
|
2093
|
+
}
|
|
2094
|
+
},
|
|
2095
|
+
beforeunload: {
|
|
2096
|
+
postDispatch: function(e) {
|
|
2097
|
+
void 0 !== e.result && e.originalEvent && (e.originalEvent.returnValue = e.result)
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
2102
|
+
k.removeEvent = function(e, t, n) {
|
|
2103
|
+
e.removeEventListener && e.removeEventListener(t, n)
|
|
2104
|
+
}
|
|
2105
|
+
,
|
|
2106
|
+
k.Event = function(e, t) {
|
|
2107
|
+
if (!(this instanceof k.Event))
|
|
2108
|
+
return new k.Event(e,t);
|
|
2109
|
+
e && e.type ? (this.originalEvent = e,
|
|
2110
|
+
this.type = e.type,
|
|
2111
|
+
this.isDefaultPrevented = e.defaultPrevented || void 0 === e.defaultPrevented && !1 === e.returnValue ? ke : Se,
|
|
2112
|
+
this.target = e.target && 3 === e.target.nodeType ? e.target.parentNode : e.target,
|
|
2113
|
+
this.currentTarget = e.currentTarget,
|
|
2114
|
+
this.relatedTarget = e.relatedTarget) : this.type = e,
|
|
2115
|
+
t && k.extend(this, t),
|
|
2116
|
+
this.timeStamp = e && e.timeStamp || Date.now(),
|
|
2117
|
+
this[k.expando] = !0
|
|
2118
|
+
}
|
|
2119
|
+
,
|
|
2120
|
+
k.Event.prototype = {
|
|
2121
|
+
constructor: k.Event,
|
|
2122
|
+
isDefaultPrevented: Se,
|
|
2123
|
+
isPropagationStopped: Se,
|
|
2124
|
+
isImmediatePropagationStopped: Se,
|
|
2125
|
+
isSimulated: !1,
|
|
2126
|
+
preventDefault: function() {
|
|
2127
|
+
var e = this.originalEvent;
|
|
2128
|
+
this.isDefaultPrevented = ke,
|
|
2129
|
+
e && !this.isSimulated && e.preventDefault()
|
|
2130
|
+
},
|
|
2131
|
+
stopPropagation: function() {
|
|
2132
|
+
var e = this.originalEvent;
|
|
2133
|
+
this.isPropagationStopped = ke,
|
|
2134
|
+
e && !this.isSimulated && e.stopPropagation()
|
|
2135
|
+
},
|
|
2136
|
+
stopImmediatePropagation: function() {
|
|
2137
|
+
var e = this.originalEvent;
|
|
2138
|
+
this.isImmediatePropagationStopped = ke,
|
|
2139
|
+
e && !this.isSimulated && e.stopImmediatePropagation(),
|
|
2140
|
+
this.stopPropagation()
|
|
2141
|
+
}
|
|
2142
|
+
},
|
|
2143
|
+
k.each({
|
|
2144
|
+
altKey: !0,
|
|
2145
|
+
bubbles: !0,
|
|
2146
|
+
cancelable: !0,
|
|
2147
|
+
changedTouches: !0,
|
|
2148
|
+
ctrlKey: !0,
|
|
2149
|
+
detail: !0,
|
|
2150
|
+
eventPhase: !0,
|
|
2151
|
+
metaKey: !0,
|
|
2152
|
+
pageX: !0,
|
|
2153
|
+
pageY: !0,
|
|
2154
|
+
shiftKey: !0,
|
|
2155
|
+
view: !0,
|
|
2156
|
+
"char": !0,
|
|
2157
|
+
code: !0,
|
|
2158
|
+
charCode: !0,
|
|
2159
|
+
key: !0,
|
|
2160
|
+
keyCode: !0,
|
|
2161
|
+
button: !0,
|
|
2162
|
+
buttons: !0,
|
|
2163
|
+
clientX: !0,
|
|
2164
|
+
clientY: !0,
|
|
2165
|
+
offsetX: !0,
|
|
2166
|
+
offsetY: !0,
|
|
2167
|
+
pointerId: !0,
|
|
2168
|
+
pointerType: !0,
|
|
2169
|
+
screenX: !0,
|
|
2170
|
+
screenY: !0,
|
|
2171
|
+
targetTouches: !0,
|
|
2172
|
+
toElement: !0,
|
|
2173
|
+
touches: !0,
|
|
2174
|
+
which: function(e) {
|
|
2175
|
+
var t = e.button;
|
|
2176
|
+
return null == e.which && Te.test(e.type) ? null != e.charCode ? e.charCode : e.keyCode : !e.which && void 0 !== t && Ce.test(e.type) ? 1 & t ? 1 : 2 & t ? 3 : 4 & t ? 2 : 0 : e.which
|
|
2177
|
+
}
|
|
2178
|
+
}, k.event.addProp),
|
|
2179
|
+
k.each({
|
|
2180
|
+
focus: "focusin",
|
|
2181
|
+
blur: "focusout"
|
|
2182
|
+
}, function(e, t) {
|
|
2183
|
+
k.event.special[e] = {
|
|
2184
|
+
setup: function() {
|
|
2185
|
+
return De(this, e, Ne),
|
|
2186
|
+
!1
|
|
2187
|
+
},
|
|
2188
|
+
trigger: function() {
|
|
2189
|
+
return De(this, e),
|
|
2190
|
+
!0
|
|
2191
|
+
},
|
|
2192
|
+
delegateType: t
|
|
2193
|
+
}
|
|
2194
|
+
}),
|
|
2195
|
+
k.each({
|
|
2196
|
+
mouseenter: "mouseover",
|
|
2197
|
+
mouseleave: "mouseout",
|
|
2198
|
+
pointerenter: "pointerover",
|
|
2199
|
+
pointerleave: "pointerout"
|
|
2200
|
+
}, function(e, i) {
|
|
2201
|
+
k.event.special[e] = {
|
|
2202
|
+
delegateType: i,
|
|
2203
|
+
bindType: i,
|
|
2204
|
+
handle: function(e) {
|
|
2205
|
+
var t, n = e.relatedTarget, r = e.handleObj;
|
|
2206
|
+
return n && (n === this || k.contains(this, n)) || (e.type = r.origType,
|
|
2207
|
+
t = r.handler.apply(this, arguments),
|
|
2208
|
+
e.type = i),
|
|
2209
|
+
t
|
|
2210
|
+
}
|
|
2211
|
+
}
|
|
2212
|
+
}),
|
|
2213
|
+
k.fn.extend({
|
|
2214
|
+
on: function(e, t, n, r) {
|
|
2215
|
+
return Ae(this, e, t, n, r)
|
|
2216
|
+
},
|
|
2217
|
+
one: function(e, t, n, r) {
|
|
2218
|
+
return Ae(this, e, t, n, r, 1)
|
|
2219
|
+
},
|
|
2220
|
+
off: function(e, t, n) {
|
|
2221
|
+
var r, i;
|
|
2222
|
+
if (e && e.preventDefault && e.handleObj)
|
|
2223
|
+
return r = e.handleObj,
|
|
2224
|
+
k(e.delegateTarget).off(r.namespace ? r.origType + "." + r.namespace : r.origType, r.selector, r.handler),
|
|
2225
|
+
this;
|
|
2226
|
+
if ("object" == typeof e) {
|
|
2227
|
+
for (i in e)
|
|
2228
|
+
this.off(i, t, e[i]);
|
|
2229
|
+
return this
|
|
2230
|
+
}
|
|
2231
|
+
return !1 !== t && "function" != typeof t || (n = t,
|
|
2232
|
+
t = void 0),
|
|
2233
|
+
!1 === n && (n = Se),
|
|
2234
|
+
this.each(function() {
|
|
2235
|
+
k.event.remove(this, e, n, t)
|
|
2236
|
+
})
|
|
2237
|
+
}
|
|
2238
|
+
});
|
|
2239
|
+
var je = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi
|
|
2240
|
+
, qe = /<script|<style|<link/i
|
|
2241
|
+
, Le = /checked\s*(?:[^=]|=\s*.checked.)/i
|
|
2242
|
+
, He = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
|
|
2243
|
+
function Oe(e, t) {
|
|
2244
|
+
return A(e, "table") && A(11 !== t.nodeType ? t : t.firstChild, "tr") && k(e).children("tbody")[0] || e
|
|
2245
|
+
}
|
|
2246
|
+
function Pe(e) {
|
|
2247
|
+
return e.type = (null !== e.getAttribute("type")) + "/" + e.type,
|
|
2248
|
+
e
|
|
2249
|
+
}
|
|
2250
|
+
function Re(e) {
|
|
2251
|
+
return "true/" === (e.type || "").slice(0, 5) ? e.type = e.type.slice(5) : e.removeAttribute("type"),
|
|
2252
|
+
e
|
|
2253
|
+
}
|
|
2254
|
+
function Me(e, t) {
|
|
2255
|
+
var n, r, i, o, a, s, u, l;
|
|
2256
|
+
if (1 === t.nodeType) {
|
|
2257
|
+
if (Q.hasData(e) && (o = Q.access(e),
|
|
2258
|
+
a = Q.set(t, o),
|
|
2259
|
+
l = o.events))
|
|
2260
|
+
for (i in delete a.handle,
|
|
2261
|
+
a.events = {},
|
|
2262
|
+
l)
|
|
2263
|
+
for (n = 0,
|
|
2264
|
+
r = l[i].length; n < r; n++)
|
|
2265
|
+
k.event.add(t, i, l[i][n]);
|
|
2266
|
+
J.hasData(e) && (s = J.access(e),
|
|
2267
|
+
u = k.extend({}, s),
|
|
2268
|
+
J.set(t, u))
|
|
2269
|
+
}
|
|
2270
|
+
}
|
|
2271
|
+
function Ie(n, r, i, o) {
|
|
2272
|
+
r = g.apply([], r);
|
|
2273
|
+
var e, t, a, s, u, l, c = 0, f = n.length, p = f - 1, d = r[0], h = m(d);
|
|
2274
|
+
if (h || 1 < f && "string" == typeof d && !y.checkClone && Le.test(d))
|
|
2275
|
+
return n.each(function(e) {
|
|
2276
|
+
var t = n.eq(e);
|
|
2277
|
+
h && (r[0] = d.call(this, e, t.html())),
|
|
2278
|
+
Ie(t, r, i, o)
|
|
2279
|
+
});
|
|
2280
|
+
if (f && (t = (e = we(r, n[0].ownerDocument, !1, n, o)).firstChild,
|
|
2281
|
+
1 === e.childNodes.length && (e = t),
|
|
2282
|
+
t || o)) {
|
|
2283
|
+
for (s = (a = k.map(ve(e, "script"), Pe)).length; c < f; c++)
|
|
2284
|
+
u = e,
|
|
2285
|
+
c !== p && (u = k.clone(u, !0, !0),
|
|
2286
|
+
s && k.merge(a, ve(u, "script"))),
|
|
2287
|
+
i.call(n[c], u, c);
|
|
2288
|
+
if (s)
|
|
2289
|
+
for (l = a[a.length - 1].ownerDocument,
|
|
2290
|
+
k.map(a, Re),
|
|
2291
|
+
c = 0; c < s; c++)
|
|
2292
|
+
u = a[c],
|
|
2293
|
+
he.test(u.type || "") && !Q.access(u, "globalEval") && k.contains(l, u) && (u.src && "module" !== (u.type || "").toLowerCase() ? k._evalUrl && !u.noModule && k._evalUrl(u.src, {
|
|
2294
|
+
nonce: u.nonce || u.getAttribute("nonce")
|
|
2295
|
+
}) : b(u.textContent.replace(He, ""), u, l))
|
|
2296
|
+
}
|
|
2297
|
+
return n
|
|
2298
|
+
}
|
|
2299
|
+
function We(e, t, n) {
|
|
2300
|
+
for (var r, i = t ? k.filter(t, e) : e, o = 0; null != (r = i[o]); o++)
|
|
2301
|
+
n || 1 !== r.nodeType || k.cleanData(ve(r)),
|
|
2302
|
+
r.parentNode && (n && oe(r) && ye(ve(r, "script")),
|
|
2303
|
+
r.parentNode.removeChild(r));
|
|
2304
|
+
return e
|
|
2305
|
+
}
|
|
2306
|
+
k.extend({
|
|
2307
|
+
htmlPrefilter: function(e) {
|
|
2308
|
+
return e.replace(je, "<$1></$2>")
|
|
2309
|
+
},
|
|
2310
|
+
clone: function(e, t, n) {
|
|
2311
|
+
var r, i, o, a, s, u, l, c = e.cloneNode(!0), f = oe(e);
|
|
2312
|
+
if (!(y.noCloneChecked || 1 !== e.nodeType && 11 !== e.nodeType || k.isXMLDoc(e)))
|
|
2313
|
+
for (a = ve(c),
|
|
2314
|
+
r = 0,
|
|
2315
|
+
i = (o = ve(e)).length; r < i; r++)
|
|
2316
|
+
s = o[r],
|
|
2317
|
+
u = a[r],
|
|
2318
|
+
void 0,
|
|
2319
|
+
"input" === (l = u.nodeName.toLowerCase()) && pe.test(s.type) ? u.checked = s.checked : "input" !== l && "textarea" !== l || (u.defaultValue = s.defaultValue);
|
|
2320
|
+
if (t)
|
|
2321
|
+
if (n)
|
|
2322
|
+
for (o = o || ve(e),
|
|
2323
|
+
a = a || ve(c),
|
|
2324
|
+
r = 0,
|
|
2325
|
+
i = o.length; r < i; r++)
|
|
2326
|
+
Me(o[r], a[r]);
|
|
2327
|
+
else
|
|
2328
|
+
Me(e, c);
|
|
2329
|
+
return 0 < (a = ve(c, "script")).length && ye(a, !f && ve(e, "script")),
|
|
2330
|
+
c
|
|
2331
|
+
},
|
|
2332
|
+
cleanData: function(e) {
|
|
2333
|
+
for (var t, n, r, i = k.event.special, o = 0; void 0 !== (n = e[o]); o++)
|
|
2334
|
+
if (G(n)) {
|
|
2335
|
+
if (t = n[Q.expando]) {
|
|
2336
|
+
if (t.events)
|
|
2337
|
+
for (r in t.events)
|
|
2338
|
+
i[r] ? k.event.remove(n, r) : k.removeEvent(n, r, t.handle);
|
|
2339
|
+
n[Q.expando] = void 0
|
|
2340
|
+
}
|
|
2341
|
+
n[J.expando] && (n[J.expando] = void 0)
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
}),
|
|
2345
|
+
k.fn.extend({
|
|
2346
|
+
detach: function(e) {
|
|
2347
|
+
return We(this, e, !0)
|
|
2348
|
+
},
|
|
2349
|
+
remove: function(e) {
|
|
2350
|
+
return We(this, e)
|
|
2351
|
+
},
|
|
2352
|
+
text: function(e) {
|
|
2353
|
+
return _(this, function(e) {
|
|
2354
|
+
return void 0 === e ? k.text(this) : this.empty().each(function() {
|
|
2355
|
+
1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || (this.textContent = e)
|
|
2356
|
+
})
|
|
2357
|
+
}, null, e, arguments.length)
|
|
2358
|
+
},
|
|
2359
|
+
append: function() {
|
|
2360
|
+
return Ie(this, arguments, function(e) {
|
|
2361
|
+
1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || Oe(this, e).appendChild(e)
|
|
2362
|
+
})
|
|
2363
|
+
},
|
|
2364
|
+
prepend: function() {
|
|
2365
|
+
return Ie(this, arguments, function(e) {
|
|
2366
|
+
if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) {
|
|
2367
|
+
var t = Oe(this, e);
|
|
2368
|
+
t.insertBefore(e, t.firstChild)
|
|
2369
|
+
}
|
|
2370
|
+
})
|
|
2371
|
+
},
|
|
2372
|
+
before: function() {
|
|
2373
|
+
return Ie(this, arguments, function(e) {
|
|
2374
|
+
this.parentNode && this.parentNode.insertBefore(e, this)
|
|
2375
|
+
})
|
|
2376
|
+
},
|
|
2377
|
+
after: function() {
|
|
2378
|
+
return Ie(this, arguments, function(e) {
|
|
2379
|
+
this.parentNode && this.parentNode.insertBefore(e, this.nextSibling)
|
|
2380
|
+
})
|
|
2381
|
+
},
|
|
2382
|
+
empty: function() {
|
|
2383
|
+
for (var e, t = 0; null != (e = this[t]); t++)
|
|
2384
|
+
1 === e.nodeType && (k.cleanData(ve(e, !1)),
|
|
2385
|
+
e.textContent = "");
|
|
2386
|
+
return this
|
|
2387
|
+
},
|
|
2388
|
+
clone: function(e, t) {
|
|
2389
|
+
return e = null != e && e,
|
|
2390
|
+
t = null == t ? e : t,
|
|
2391
|
+
this.map(function() {
|
|
2392
|
+
return k.clone(this, e, t)
|
|
2393
|
+
})
|
|
2394
|
+
},
|
|
2395
|
+
html: function(e) {
|
|
2396
|
+
return _(this, function(e) {
|
|
2397
|
+
var t = this[0] || {}
|
|
2398
|
+
, n = 0
|
|
2399
|
+
, r = this.length;
|
|
2400
|
+
if (void 0 === e && 1 === t.nodeType)
|
|
2401
|
+
return t.innerHTML;
|
|
2402
|
+
if ("string" == typeof e && !qe.test(e) && !ge[(de.exec(e) || ["", ""])[1].toLowerCase()]) {
|
|
2403
|
+
e = k.htmlPrefilter(e);
|
|
2404
|
+
try {
|
|
2405
|
+
for (; n < r; n++)
|
|
2406
|
+
1 === (t = this[n] || {}).nodeType && (k.cleanData(ve(t, !1)),
|
|
2407
|
+
t.innerHTML = e);
|
|
2408
|
+
t = 0
|
|
2409
|
+
} catch (e) {}
|
|
2410
|
+
}
|
|
2411
|
+
t && this.empty().append(e)
|
|
2412
|
+
}, null, e, arguments.length)
|
|
2413
|
+
},
|
|
2414
|
+
replaceWith: function() {
|
|
2415
|
+
var n = [];
|
|
2416
|
+
return Ie(this, arguments, function(e) {
|
|
2417
|
+
var t = this.parentNode;
|
|
2418
|
+
k.inArray(this, n) < 0 && (k.cleanData(ve(this)),
|
|
2419
|
+
t && t.replaceChild(e, this))
|
|
2420
|
+
}, n)
|
|
2421
|
+
}
|
|
2422
|
+
}),
|
|
2423
|
+
k.each({
|
|
2424
|
+
appendTo: "append",
|
|
2425
|
+
prependTo: "prepend",
|
|
2426
|
+
insertBefore: "before",
|
|
2427
|
+
insertAfter: "after",
|
|
2428
|
+
replaceAll: "replaceWith"
|
|
2429
|
+
}, function(e, a) {
|
|
2430
|
+
k.fn[e] = function(e) {
|
|
2431
|
+
for (var t, n = [], r = k(e), i = r.length - 1, o = 0; o <= i; o++)
|
|
2432
|
+
t = o === i ? this : this.clone(!0),
|
|
2433
|
+
k(r[o])[a](t),
|
|
2434
|
+
u.apply(n, t.get());
|
|
2435
|
+
return this.pushStack(n)
|
|
2436
|
+
}
|
|
2437
|
+
});
|
|
2438
|
+
var $e = new RegExp("^(" + te + ")(?!px)[a-z%]+$","i")
|
|
2439
|
+
, Fe = function(e) {
|
|
2440
|
+
var t = e.ownerDocument.defaultView;
|
|
2441
|
+
return t && t.opener || (t = C),
|
|
2442
|
+
t.getComputedStyle(e)
|
|
2443
|
+
}
|
|
2444
|
+
, Be = new RegExp(re.join("|"),"i");
|
|
2445
|
+
function _e(e, t, n) {
|
|
2446
|
+
var r, i, o, a, s = e.style;
|
|
2447
|
+
return (n = n || Fe(e)) && ("" !== (a = n.getPropertyValue(t) || n[t]) || oe(e) || (a = k.style(e, t)),
|
|
2448
|
+
!y.pixelBoxStyles() && $e.test(a) && Be.test(t) && (r = s.width,
|
|
2449
|
+
i = s.minWidth,
|
|
2450
|
+
o = s.maxWidth,
|
|
2451
|
+
s.minWidth = s.maxWidth = s.width = a,
|
|
2452
|
+
a = n.width,
|
|
2453
|
+
s.width = r,
|
|
2454
|
+
s.minWidth = i,
|
|
2455
|
+
s.maxWidth = o)),
|
|
2456
|
+
void 0 !== a ? a + "" : a
|
|
2457
|
+
}
|
|
2458
|
+
function ze(e, t) {
|
|
2459
|
+
return {
|
|
2460
|
+
get: function() {
|
|
2461
|
+
if (!e())
|
|
2462
|
+
return (this.get = t).apply(this, arguments);
|
|
2463
|
+
delete this.get
|
|
2464
|
+
}
|
|
2465
|
+
}
|
|
2466
|
+
}
|
|
2467
|
+
!function() {
|
|
2468
|
+
function e() {
|
|
2469
|
+
if (u) {
|
|
2470
|
+
s.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",
|
|
2471
|
+
u.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",
|
|
2472
|
+
ie.appendChild(s).appendChild(u);
|
|
2473
|
+
var e = C.getComputedStyle(u);
|
|
2474
|
+
n = "1%" !== e.top,
|
|
2475
|
+
a = 12 === t(e.marginLeft),
|
|
2476
|
+
u.style.right = "60%",
|
|
2477
|
+
o = 36 === t(e.right),
|
|
2478
|
+
r = 36 === t(e.width),
|
|
2479
|
+
u.style.position = "absolute",
|
|
2480
|
+
i = 12 === t(u.offsetWidth / 3),
|
|
2481
|
+
ie.removeChild(s),
|
|
2482
|
+
u = null
|
|
2483
|
+
}
|
|
2484
|
+
}
|
|
2485
|
+
function t(e) {
|
|
2486
|
+
return Math.round(parseFloat(e))
|
|
2487
|
+
}
|
|
2488
|
+
var n, r, i, o, a, s = E.createElement("div"), u = E.createElement("div");
|
|
2489
|
+
u.style && (u.style.backgroundClip = "content-box",
|
|
2490
|
+
u.cloneNode(!0).style.backgroundClip = "",
|
|
2491
|
+
y.clearCloneStyle = "content-box" === u.style.backgroundClip,
|
|
2492
|
+
k.extend(y, {
|
|
2493
|
+
boxSizingReliable: function() {
|
|
2494
|
+
return e(),
|
|
2495
|
+
r
|
|
2496
|
+
},
|
|
2497
|
+
pixelBoxStyles: function() {
|
|
2498
|
+
return e(),
|
|
2499
|
+
o
|
|
2500
|
+
},
|
|
2501
|
+
pixelPosition: function() {
|
|
2502
|
+
return e(),
|
|
2503
|
+
n
|
|
2504
|
+
},
|
|
2505
|
+
reliableMarginLeft: function() {
|
|
2506
|
+
return e(),
|
|
2507
|
+
a
|
|
2508
|
+
},
|
|
2509
|
+
scrollboxSize: function() {
|
|
2510
|
+
return e(),
|
|
2511
|
+
i
|
|
2512
|
+
}
|
|
2513
|
+
}))
|
|
2514
|
+
}();
|
|
2515
|
+
var Ue = ["Webkit", "Moz", "ms"]
|
|
2516
|
+
, Xe = E.createElement("div").style
|
|
2517
|
+
, Ve = {};
|
|
2518
|
+
function Ge(e) {
|
|
2519
|
+
var t = k.cssProps[e] || Ve[e];
|
|
2520
|
+
return t || (e in Xe ? e : Ve[e] = function(e) {
|
|
2521
|
+
var t = e[0].toUpperCase() + e.slice(1)
|
|
2522
|
+
, n = Ue.length;
|
|
2523
|
+
while (n--)
|
|
2524
|
+
if ((e = Ue[n] + t)in Xe)
|
|
2525
|
+
return e
|
|
2526
|
+
}(e) || e)
|
|
2527
|
+
}
|
|
2528
|
+
var Ye = /^(none|table(?!-c[ea]).+)/
|
|
2529
|
+
, Qe = /^--/
|
|
2530
|
+
, Je = {
|
|
2531
|
+
position: "absolute",
|
|
2532
|
+
visibility: "hidden",
|
|
2533
|
+
display: "block"
|
|
2534
|
+
}
|
|
2535
|
+
, Ke = {
|
|
2536
|
+
letterSpacing: "0",
|
|
2537
|
+
fontWeight: "400"
|
|
2538
|
+
};
|
|
2539
|
+
function Ze(e, t, n) {
|
|
2540
|
+
var r = ne.exec(t);
|
|
2541
|
+
return r ? Math.max(0, r[2] - (n || 0)) + (r[3] || "px") : t
|
|
2542
|
+
}
|
|
2543
|
+
function et(e, t, n, r, i, o) {
|
|
2544
|
+
var a = "width" === t ? 1 : 0
|
|
2545
|
+
, s = 0
|
|
2546
|
+
, u = 0;
|
|
2547
|
+
if (n === (r ? "border" : "content"))
|
|
2548
|
+
return 0;
|
|
2549
|
+
for (; a < 4; a += 2)
|
|
2550
|
+
"margin" === n && (u += k.css(e, n + re[a], !0, i)),
|
|
2551
|
+
r ? ("content" === n && (u -= k.css(e, "padding" + re[a], !0, i)),
|
|
2552
|
+
"margin" !== n && (u -= k.css(e, "border" + re[a] + "Width", !0, i))) : (u += k.css(e, "padding" + re[a], !0, i),
|
|
2553
|
+
"padding" !== n ? u += k.css(e, "border" + re[a] + "Width", !0, i) : s += k.css(e, "border" + re[a] + "Width", !0, i));
|
|
2554
|
+
return !r && 0 <= o && (u += Math.max(0, Math.ceil(e["offset" + t[0].toUpperCase() + t.slice(1)] - o - u - s - .5)) || 0),
|
|
2555
|
+
u
|
|
2556
|
+
}
|
|
2557
|
+
function tt(e, t, n) {
|
|
2558
|
+
var r = Fe(e)
|
|
2559
|
+
, i = (!y.boxSizingReliable() || n) && "border-box" === k.css(e, "boxSizing", !1, r)
|
|
2560
|
+
, o = i
|
|
2561
|
+
, a = _e(e, t, r)
|
|
2562
|
+
, s = "offset" + t[0].toUpperCase() + t.slice(1);
|
|
2563
|
+
if ($e.test(a)) {
|
|
2564
|
+
if (!n)
|
|
2565
|
+
return a;
|
|
2566
|
+
a = "auto"
|
|
2567
|
+
}
|
|
2568
|
+
return (!y.boxSizingReliable() && i || "auto" === a || !parseFloat(a) && "inline" === k.css(e, "display", !1, r)) && e.getClientRects().length && (i = "border-box" === k.css(e, "boxSizing", !1, r),
|
|
2569
|
+
(o = s in e) && (a = e[s])),
|
|
2570
|
+
(a = parseFloat(a) || 0) + et(e, t, n || (i ? "border" : "content"), o, r, a) + "px"
|
|
2571
|
+
}
|
|
2572
|
+
function nt(e, t, n, r, i) {
|
|
2573
|
+
return new nt.prototype.init(e,t,n,r,i)
|
|
2574
|
+
}
|
|
2575
|
+
k.extend({
|
|
2576
|
+
cssHooks: {
|
|
2577
|
+
opacity: {
|
|
2578
|
+
get: function(e, t) {
|
|
2579
|
+
if (t) {
|
|
2580
|
+
var n = _e(e, "opacity");
|
|
2581
|
+
return "" === n ? "1" : n
|
|
2582
|
+
}
|
|
2583
|
+
}
|
|
2584
|
+
}
|
|
2585
|
+
},
|
|
2586
|
+
cssNumber: {
|
|
2587
|
+
animationIterationCount: !0,
|
|
2588
|
+
columnCount: !0,
|
|
2589
|
+
fillOpacity: !0,
|
|
2590
|
+
flexGrow: !0,
|
|
2591
|
+
flexShrink: !0,
|
|
2592
|
+
fontWeight: !0,
|
|
2593
|
+
gridArea: !0,
|
|
2594
|
+
gridColumn: !0,
|
|
2595
|
+
gridColumnEnd: !0,
|
|
2596
|
+
gridColumnStart: !0,
|
|
2597
|
+
gridRow: !0,
|
|
2598
|
+
gridRowEnd: !0,
|
|
2599
|
+
gridRowStart: !0,
|
|
2600
|
+
lineHeight: !0,
|
|
2601
|
+
opacity: !0,
|
|
2602
|
+
order: !0,
|
|
2603
|
+
orphans: !0,
|
|
2604
|
+
widows: !0,
|
|
2605
|
+
zIndex: !0,
|
|
2606
|
+
zoom: !0
|
|
2607
|
+
},
|
|
2608
|
+
cssProps: {},
|
|
2609
|
+
style: function(e, t, n, r) {
|
|
2610
|
+
if (e && 3 !== e.nodeType && 8 !== e.nodeType && e.style) {
|
|
2611
|
+
var i, o, a, s = V(t), u = Qe.test(t), l = e.style;
|
|
2612
|
+
if (u || (t = Ge(s)),
|
|
2613
|
+
a = k.cssHooks[t] || k.cssHooks[s],
|
|
2614
|
+
void 0 === n)
|
|
2615
|
+
return a && "get"in a && void 0 !== (i = a.get(e, !1, r)) ? i : l[t];
|
|
2616
|
+
"string" === (o = typeof n) && (i = ne.exec(n)) && i[1] && (n = le(e, t, i),
|
|
2617
|
+
o = "number"),
|
|
2618
|
+
null != n && n == n && ("number" !== o || u || (n += i && i[3] || (k.cssNumber[s] ? "" : "px")),
|
|
2619
|
+
y.clearCloneStyle || "" !== n || 0 !== t.indexOf("background") || (l[t] = "inherit"),
|
|
2620
|
+
a && "set"in a && void 0 === (n = a.set(e, n, r)) || (u ? l.setProperty(t, n) : l[t] = n))
|
|
2621
|
+
}
|
|
2622
|
+
},
|
|
2623
|
+
css: function(e, t, n, r) {
|
|
2624
|
+
var i, o, a, s = V(t);
|
|
2625
|
+
return Qe.test(t) || (t = Ge(s)),
|
|
2626
|
+
(a = k.cssHooks[t] || k.cssHooks[s]) && "get"in a && (i = a.get(e, !0, n)),
|
|
2627
|
+
void 0 === i && (i = _e(e, t, r)),
|
|
2628
|
+
"normal" === i && t in Ke && (i = Ke[t]),
|
|
2629
|
+
"" === n || n ? (o = parseFloat(i),
|
|
2630
|
+
!0 === n || isFinite(o) ? o || 0 : i) : i
|
|
2631
|
+
}
|
|
2632
|
+
}),
|
|
2633
|
+
k.each(["height", "width"], function(e, u) {
|
|
2634
|
+
k.cssHooks[u] = {
|
|
2635
|
+
get: function(e, t, n) {
|
|
2636
|
+
if (t)
|
|
2637
|
+
return !Ye.test(k.css(e, "display")) || e.getClientRects().length && e.getBoundingClientRect().width ? tt(e, u, n) : ue(e, Je, function() {
|
|
2638
|
+
return tt(e, u, n)
|
|
2639
|
+
})
|
|
2640
|
+
},
|
|
2641
|
+
set: function(e, t, n) {
|
|
2642
|
+
var r, i = Fe(e), o = !y.scrollboxSize() && "absolute" === i.position, a = (o || n) && "border-box" === k.css(e, "boxSizing", !1, i), s = n ? et(e, u, n, a, i) : 0;
|
|
2643
|
+
return a && o && (s -= Math.ceil(e["offset" + u[0].toUpperCase() + u.slice(1)] - parseFloat(i[u]) - et(e, u, "border", !1, i) - .5)),
|
|
2644
|
+
s && (r = ne.exec(t)) && "px" !== (r[3] || "px") && (e.style[u] = t,
|
|
2645
|
+
t = k.css(e, u)),
|
|
2646
|
+
Ze(0, t, s)
|
|
2647
|
+
}
|
|
2648
|
+
}
|
|
2649
|
+
}),
|
|
2650
|
+
k.cssHooks.marginLeft = ze(y.reliableMarginLeft, function(e, t) {
|
|
2651
|
+
if (t)
|
|
2652
|
+
return (parseFloat(_e(e, "marginLeft")) || e.getBoundingClientRect().left - ue(e, {
|
|
2653
|
+
marginLeft: 0
|
|
2654
|
+
}, function() {
|
|
2655
|
+
return e.getBoundingClientRect().left
|
|
2656
|
+
})) + "px"
|
|
2657
|
+
}),
|
|
2658
|
+
k.each({
|
|
2659
|
+
margin: "",
|
|
2660
|
+
padding: "",
|
|
2661
|
+
border: "Width"
|
|
2662
|
+
}, function(i, o) {
|
|
2663
|
+
k.cssHooks[i + o] = {
|
|
2664
|
+
expand: function(e) {
|
|
2665
|
+
for (var t = 0, n = {}, r = "string" == typeof e ? e.split(" ") : [e]; t < 4; t++)
|
|
2666
|
+
n[i + re[t] + o] = r[t] || r[t - 2] || r[0];
|
|
2667
|
+
return n
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
"margin" !== i && (k.cssHooks[i + o].set = Ze)
|
|
2671
|
+
}),
|
|
2672
|
+
k.fn.extend({
|
|
2673
|
+
css: function(e, t) {
|
|
2674
|
+
return _(this, function(e, t, n) {
|
|
2675
|
+
var r, i, o = {}, a = 0;
|
|
2676
|
+
if (Array.isArray(t)) {
|
|
2677
|
+
for (r = Fe(e),
|
|
2678
|
+
i = t.length; a < i; a++)
|
|
2679
|
+
o[t[a]] = k.css(e, t[a], !1, r);
|
|
2680
|
+
return o
|
|
2681
|
+
}
|
|
2682
|
+
return void 0 !== n ? k.style(e, t, n) : k.css(e, t)
|
|
2683
|
+
}, e, t, 1 < arguments.length)
|
|
2684
|
+
}
|
|
2685
|
+
}),
|
|
2686
|
+
((k.Tween = nt).prototype = {
|
|
2687
|
+
constructor: nt,
|
|
2688
|
+
init: function(e, t, n, r, i, o) {
|
|
2689
|
+
this.elem = e,
|
|
2690
|
+
this.prop = n,
|
|
2691
|
+
this.easing = i || k.easing._default,
|
|
2692
|
+
this.options = t,
|
|
2693
|
+
this.start = this.now = this.cur(),
|
|
2694
|
+
this.end = r,
|
|
2695
|
+
this.unit = o || (k.cssNumber[n] ? "" : "px")
|
|
2696
|
+
},
|
|
2697
|
+
cur: function() {
|
|
2698
|
+
var e = nt.propHooks[this.prop];
|
|
2699
|
+
return e && e.get ? e.get(this) : nt.propHooks._default.get(this)
|
|
2700
|
+
},
|
|
2701
|
+
run: function(e) {
|
|
2702
|
+
var t, n = nt.propHooks[this.prop];
|
|
2703
|
+
return this.options.duration ? this.pos = t = k.easing[this.easing](e, this.options.duration * e, 0, 1, this.options.duration) : this.pos = t = e,
|
|
2704
|
+
this.now = (this.end - this.start) * t + this.start,
|
|
2705
|
+
this.options.step && this.options.step.call(this.elem, this.now, this),
|
|
2706
|
+
n && n.set ? n.set(this) : nt.propHooks._default.set(this),
|
|
2707
|
+
this
|
|
2708
|
+
}
|
|
2709
|
+
}).init.prototype = nt.prototype,
|
|
2710
|
+
(nt.propHooks = {
|
|
2711
|
+
_default: {
|
|
2712
|
+
get: function(e) {
|
|
2713
|
+
var t;
|
|
2714
|
+
return 1 !== e.elem.nodeType || null != e.elem[e.prop] && null == e.elem.style[e.prop] ? e.elem[e.prop] : (t = k.css(e.elem, e.prop, "")) && "auto" !== t ? t : 0
|
|
2715
|
+
},
|
|
2716
|
+
set: function(e) {
|
|
2717
|
+
k.fx.step[e.prop] ? k.fx.step[e.prop](e) : 1 !== e.elem.nodeType || !k.cssHooks[e.prop] && null == e.elem.style[Ge(e.prop)] ? e.elem[e.prop] = e.now : k.style(e.elem, e.prop, e.now + e.unit)
|
|
2718
|
+
}
|
|
2719
|
+
}
|
|
2720
|
+
}).scrollTop = nt.propHooks.scrollLeft = {
|
|
2721
|
+
set: function(e) {
|
|
2722
|
+
e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now)
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2725
|
+
k.easing = {
|
|
2726
|
+
linear: function(e) {
|
|
2727
|
+
return e
|
|
2728
|
+
},
|
|
2729
|
+
swing: function(e) {
|
|
2730
|
+
return .5 - Math.cos(e * Math.PI) / 2
|
|
2731
|
+
},
|
|
2732
|
+
_default: "swing"
|
|
2733
|
+
},
|
|
2734
|
+
k.fx = nt.prototype.init,
|
|
2735
|
+
k.fx.step = {};
|
|
2736
|
+
var rt, it, ot, at, st = /^(?:toggle|show|hide)$/, ut = /queueHooks$/;
|
|
2737
|
+
function lt() {
|
|
2738
|
+
it && (!1 === E.hidden && C.requestAnimationFrame ? C.requestAnimationFrame(lt) : C.setTimeout(lt, k.fx.interval),
|
|
2739
|
+
k.fx.tick())
|
|
2740
|
+
}
|
|
2741
|
+
function ct() {
|
|
2742
|
+
return C.setTimeout(function() {
|
|
2743
|
+
rt = void 0
|
|
2744
|
+
}),
|
|
2745
|
+
rt = Date.now()
|
|
2746
|
+
}
|
|
2747
|
+
function ft(e, t) {
|
|
2748
|
+
var n, r = 0, i = {
|
|
2749
|
+
height: e
|
|
2750
|
+
};
|
|
2751
|
+
for (t = t ? 1 : 0; r < 4; r += 2 - t)
|
|
2752
|
+
i["margin" + (n = re[r])] = i["padding" + n] = e;
|
|
2753
|
+
return t && (i.opacity = i.width = e),
|
|
2754
|
+
i
|
|
2755
|
+
}
|
|
2756
|
+
function pt(e, t, n) {
|
|
2757
|
+
for (var r, i = (dt.tweeners[t] || []).concat(dt.tweeners["*"]), o = 0, a = i.length; o < a; o++)
|
|
2758
|
+
if (r = i[o].call(n, t, e))
|
|
2759
|
+
return r
|
|
2760
|
+
}
|
|
2761
|
+
function dt(o, e, t) {
|
|
2762
|
+
var n, a, r = 0, i = dt.prefilters.length, s = k.Deferred().always(function() {
|
|
2763
|
+
delete u.elem
|
|
2764
|
+
}), u = function() {
|
|
2765
|
+
if (a)
|
|
2766
|
+
return !1;
|
|
2767
|
+
for (var e = rt || ct(), t = Math.max(0, l.startTime + l.duration - e), n = 1 - (t / l.duration || 0), r = 0, i = l.tweens.length; r < i; r++)
|
|
2768
|
+
l.tweens[r].run(n);
|
|
2769
|
+
return s.notifyWith(o, [l, n, t]),
|
|
2770
|
+
n < 1 && i ? t : (i || s.notifyWith(o, [l, 1, 0]),
|
|
2771
|
+
s.resolveWith(o, [l]),
|
|
2772
|
+
!1)
|
|
2773
|
+
}, l = s.promise({
|
|
2774
|
+
elem: o,
|
|
2775
|
+
props: k.extend({}, e),
|
|
2776
|
+
opts: k.extend(!0, {
|
|
2777
|
+
specialEasing: {},
|
|
2778
|
+
easing: k.easing._default
|
|
2779
|
+
}, t),
|
|
2780
|
+
originalProperties: e,
|
|
2781
|
+
originalOptions: t,
|
|
2782
|
+
startTime: rt || ct(),
|
|
2783
|
+
duration: t.duration,
|
|
2784
|
+
tweens: [],
|
|
2785
|
+
createTween: function(e, t) {
|
|
2786
|
+
var n = k.Tween(o, l.opts, e, t, l.opts.specialEasing[e] || l.opts.easing);
|
|
2787
|
+
return l.tweens.push(n),
|
|
2788
|
+
n
|
|
2789
|
+
},
|
|
2790
|
+
stop: function(e) {
|
|
2791
|
+
var t = 0
|
|
2792
|
+
, n = e ? l.tweens.length : 0;
|
|
2793
|
+
if (a)
|
|
2794
|
+
return this;
|
|
2795
|
+
for (a = !0; t < n; t++)
|
|
2796
|
+
l.tweens[t].run(1);
|
|
2797
|
+
return e ? (s.notifyWith(o, [l, 1, 0]),
|
|
2798
|
+
s.resolveWith(o, [l, e])) : s.rejectWith(o, [l, e]),
|
|
2799
|
+
this
|
|
2800
|
+
}
|
|
2801
|
+
}), c = l.props;
|
|
2802
|
+
for (!function(e, t) {
|
|
2803
|
+
var n, r, i, o, a;
|
|
2804
|
+
for (n in e)
|
|
2805
|
+
if (i = t[r = V(n)],
|
|
2806
|
+
o = e[n],
|
|
2807
|
+
Array.isArray(o) && (i = o[1],
|
|
2808
|
+
o = e[n] = o[0]),
|
|
2809
|
+
n !== r && (e[r] = o,
|
|
2810
|
+
delete e[n]),
|
|
2811
|
+
(a = k.cssHooks[r]) && "expand"in a)
|
|
2812
|
+
for (n in o = a.expand(o),
|
|
2813
|
+
delete e[r],
|
|
2814
|
+
o)
|
|
2815
|
+
n in e || (e[n] = o[n],
|
|
2816
|
+
t[n] = i);
|
|
2817
|
+
else
|
|
2818
|
+
t[r] = i
|
|
2819
|
+
}(c, l.opts.specialEasing); r < i; r++)
|
|
2820
|
+
if (n = dt.prefilters[r].call(l, o, c, l.opts))
|
|
2821
|
+
return m(n.stop) && (k._queueHooks(l.elem, l.opts.queue).stop = n.stop.bind(n)),
|
|
2822
|
+
n;
|
|
2823
|
+
return k.map(c, pt, l),
|
|
2824
|
+
m(l.opts.start) && l.opts.start.call(o, l),
|
|
2825
|
+
l.progress(l.opts.progress).done(l.opts.done, l.opts.complete).fail(l.opts.fail).always(l.opts.always),
|
|
2826
|
+
k.fx.timer(k.extend(u, {
|
|
2827
|
+
elem: o,
|
|
2828
|
+
anim: l,
|
|
2829
|
+
queue: l.opts.queue
|
|
2830
|
+
})),
|
|
2831
|
+
l
|
|
2832
|
+
}
|
|
2833
|
+
k.Animation = k.extend(dt, {
|
|
2834
|
+
tweeners: {
|
|
2835
|
+
"*": [function(e, t) {
|
|
2836
|
+
var n = this.createTween(e, t);
|
|
2837
|
+
return le(n.elem, e, ne.exec(t), n),
|
|
2838
|
+
n
|
|
2839
|
+
}
|
|
2840
|
+
]
|
|
2841
|
+
},
|
|
2842
|
+
tweener: function(e, t) {
|
|
2843
|
+
m(e) ? (t = e,
|
|
2844
|
+
e = ["*"]) : e = e.match(R);
|
|
2845
|
+
for (var n, r = 0, i = e.length; r < i; r++)
|
|
2846
|
+
n = e[r],
|
|
2847
|
+
dt.tweeners[n] = dt.tweeners[n] || [],
|
|
2848
|
+
dt.tweeners[n].unshift(t)
|
|
2849
|
+
},
|
|
2850
|
+
prefilters: [function(e, t, n) {
|
|
2851
|
+
var r, i, o, a, s, u, l, c, f = "width"in t || "height"in t, p = this, d = {}, h = e.style, g = e.nodeType && se(e), v = Q.get(e, "fxshow");
|
|
2852
|
+
for (r in n.queue || (null == (a = k._queueHooks(e, "fx")).unqueued && (a.unqueued = 0,
|
|
2853
|
+
s = a.empty.fire,
|
|
2854
|
+
a.empty.fire = function() {
|
|
2855
|
+
a.unqueued || s()
|
|
2856
|
+
}
|
|
2857
|
+
),
|
|
2858
|
+
a.unqueued++,
|
|
2859
|
+
p.always(function() {
|
|
2860
|
+
p.always(function() {
|
|
2861
|
+
a.unqueued--,
|
|
2862
|
+
k.queue(e, "fx").length || a.empty.fire()
|
|
2863
|
+
})
|
|
2864
|
+
})),
|
|
2865
|
+
t)
|
|
2866
|
+
if (i = t[r],
|
|
2867
|
+
st.test(i)) {
|
|
2868
|
+
if (delete t[r],
|
|
2869
|
+
o = o || "toggle" === i,
|
|
2870
|
+
i === (g ? "hide" : "show")) {
|
|
2871
|
+
if ("show" !== i || !v || void 0 === v[r])
|
|
2872
|
+
continue;
|
|
2873
|
+
g = !0
|
|
2874
|
+
}
|
|
2875
|
+
d[r] = v && v[r] || k.style(e, r)
|
|
2876
|
+
}
|
|
2877
|
+
if ((u = !k.isEmptyObject(t)) || !k.isEmptyObject(d))
|
|
2878
|
+
for (r in f && 1 === e.nodeType && (n.overflow = [h.overflow, h.overflowX, h.overflowY],
|
|
2879
|
+
null == (l = v && v.display) && (l = Q.get(e, "display")),
|
|
2880
|
+
"none" === (c = k.css(e, "display")) && (l ? c = l : (fe([e], !0),
|
|
2881
|
+
l = e.style.display || l,
|
|
2882
|
+
c = k.css(e, "display"),
|
|
2883
|
+
fe([e]))),
|
|
2884
|
+
("inline" === c || "inline-block" === c && null != l) && "none" === k.css(e, "float") && (u || (p.done(function() {
|
|
2885
|
+
h.display = l
|
|
2886
|
+
}),
|
|
2887
|
+
null == l && (c = h.display,
|
|
2888
|
+
l = "none" === c ? "" : c)),
|
|
2889
|
+
h.display = "inline-block")),
|
|
2890
|
+
n.overflow && (h.overflow = "hidden",
|
|
2891
|
+
p.always(function() {
|
|
2892
|
+
h.overflow = n.overflow[0],
|
|
2893
|
+
h.overflowX = n.overflow[1],
|
|
2894
|
+
h.overflowY = n.overflow[2]
|
|
2895
|
+
})),
|
|
2896
|
+
u = !1,
|
|
2897
|
+
d)
|
|
2898
|
+
u || (v ? "hidden"in v && (g = v.hidden) : v = Q.access(e, "fxshow", {
|
|
2899
|
+
display: l
|
|
2900
|
+
}),
|
|
2901
|
+
o && (v.hidden = !g),
|
|
2902
|
+
g && fe([e], !0),
|
|
2903
|
+
p.done(function() {
|
|
2904
|
+
for (r in g || fe([e]),
|
|
2905
|
+
Q.remove(e, "fxshow"),
|
|
2906
|
+
d)
|
|
2907
|
+
k.style(e, r, d[r])
|
|
2908
|
+
})),
|
|
2909
|
+
u = pt(g ? v[r] : 0, r, p),
|
|
2910
|
+
r in v || (v[r] = u.start,
|
|
2911
|
+
g && (u.end = u.start,
|
|
2912
|
+
u.start = 0))
|
|
2913
|
+
}
|
|
2914
|
+
],
|
|
2915
|
+
prefilter: function(e, t) {
|
|
2916
|
+
t ? dt.prefilters.unshift(e) : dt.prefilters.push(e)
|
|
2917
|
+
}
|
|
2918
|
+
}),
|
|
2919
|
+
k.speed = function(e, t, n) {
|
|
2920
|
+
var r = e && "object" == typeof e ? k.extend({}, e) : {
|
|
2921
|
+
complete: n || !n && t || m(e) && e,
|
|
2922
|
+
duration: e,
|
|
2923
|
+
easing: n && t || t && !m(t) && t
|
|
2924
|
+
};
|
|
2925
|
+
return k.fx.off ? r.duration = 0 : "number" != typeof r.duration && (r.duration in k.fx.speeds ? r.duration = k.fx.speeds[r.duration] : r.duration = k.fx.speeds._default),
|
|
2926
|
+
null != r.queue && !0 !== r.queue || (r.queue = "fx"),
|
|
2927
|
+
r.old = r.complete,
|
|
2928
|
+
r.complete = function() {
|
|
2929
|
+
m(r.old) && r.old.call(this),
|
|
2930
|
+
r.queue && k.dequeue(this, r.queue)
|
|
2931
|
+
}
|
|
2932
|
+
,
|
|
2933
|
+
r
|
|
2934
|
+
}
|
|
2935
|
+
,
|
|
2936
|
+
k.fn.extend({
|
|
2937
|
+
fadeTo: function(e, t, n, r) {
|
|
2938
|
+
return this.filter(se).css("opacity", 0).show().end().animate({
|
|
2939
|
+
opacity: t
|
|
2940
|
+
}, e, n, r)
|
|
2941
|
+
},
|
|
2942
|
+
animate: function(t, e, n, r) {
|
|
2943
|
+
var i = k.isEmptyObject(t)
|
|
2944
|
+
, o = k.speed(e, n, r)
|
|
2945
|
+
, a = function() {
|
|
2946
|
+
var e = dt(this, k.extend({}, t), o);
|
|
2947
|
+
(i || Q.get(this, "finish")) && e.stop(!0)
|
|
2948
|
+
};
|
|
2949
|
+
return a.finish = a,
|
|
2950
|
+
i || !1 === o.queue ? this.each(a) : this.queue(o.queue, a)
|
|
2951
|
+
},
|
|
2952
|
+
stop: function(i, e, o) {
|
|
2953
|
+
var a = function(e) {
|
|
2954
|
+
var t = e.stop;
|
|
2955
|
+
delete e.stop,
|
|
2956
|
+
t(o)
|
|
2957
|
+
};
|
|
2958
|
+
return "string" != typeof i && (o = e,
|
|
2959
|
+
e = i,
|
|
2960
|
+
i = void 0),
|
|
2961
|
+
e && !1 !== i && this.queue(i || "fx", []),
|
|
2962
|
+
this.each(function() {
|
|
2963
|
+
var e = !0
|
|
2964
|
+
, t = null != i && i + "queueHooks"
|
|
2965
|
+
, n = k.timers
|
|
2966
|
+
, r = Q.get(this);
|
|
2967
|
+
if (t)
|
|
2968
|
+
r[t] && r[t].stop && a(r[t]);
|
|
2969
|
+
else
|
|
2970
|
+
for (t in r)
|
|
2971
|
+
r[t] && r[t].stop && ut.test(t) && a(r[t]);
|
|
2972
|
+
for (t = n.length; t--; )
|
|
2973
|
+
n[t].elem !== this || null != i && n[t].queue !== i || (n[t].anim.stop(o),
|
|
2974
|
+
e = !1,
|
|
2975
|
+
n.splice(t, 1));
|
|
2976
|
+
!e && o || k.dequeue(this, i)
|
|
2977
|
+
})
|
|
2978
|
+
},
|
|
2979
|
+
finish: function(a) {
|
|
2980
|
+
return !1 !== a && (a = a || "fx"),
|
|
2981
|
+
this.each(function() {
|
|
2982
|
+
var e, t = Q.get(this), n = t[a + "queue"], r = t[a + "queueHooks"], i = k.timers, o = n ? n.length : 0;
|
|
2983
|
+
for (t.finish = !0,
|
|
2984
|
+
k.queue(this, a, []),
|
|
2985
|
+
r && r.stop && r.stop.call(this, !0),
|
|
2986
|
+
e = i.length; e--; )
|
|
2987
|
+
i[e].elem === this && i[e].queue === a && (i[e].anim.stop(!0),
|
|
2988
|
+
i.splice(e, 1));
|
|
2989
|
+
for (e = 0; e < o; e++)
|
|
2990
|
+
n[e] && n[e].finish && n[e].finish.call(this);
|
|
2991
|
+
delete t.finish
|
|
2992
|
+
})
|
|
2993
|
+
}
|
|
2994
|
+
}),
|
|
2995
|
+
k.each(["toggle", "show", "hide"], function(e, r) {
|
|
2996
|
+
var i = k.fn[r];
|
|
2997
|
+
k.fn[r] = function(e, t, n) {
|
|
2998
|
+
return null == e || "boolean" == typeof e ? i.apply(this, arguments) : this.animate(ft(r, !0), e, t, n)
|
|
2999
|
+
}
|
|
3000
|
+
}),
|
|
3001
|
+
k.each({
|
|
3002
|
+
slideDown: ft("show"),
|
|
3003
|
+
slideUp: ft("hide"),
|
|
3004
|
+
slideToggle: ft("toggle"),
|
|
3005
|
+
fadeIn: {
|
|
3006
|
+
opacity: "show"
|
|
3007
|
+
},
|
|
3008
|
+
fadeOut: {
|
|
3009
|
+
opacity: "hide"
|
|
3010
|
+
},
|
|
3011
|
+
fadeToggle: {
|
|
3012
|
+
opacity: "toggle"
|
|
3013
|
+
}
|
|
3014
|
+
}, function(e, r) {
|
|
3015
|
+
k.fn[e] = function(e, t, n) {
|
|
3016
|
+
return this.animate(r, e, t, n)
|
|
3017
|
+
}
|
|
3018
|
+
}),
|
|
3019
|
+
k.timers = [],
|
|
3020
|
+
k.fx.tick = function() {
|
|
3021
|
+
var e, t = 0, n = k.timers;
|
|
3022
|
+
for (rt = Date.now(); t < n.length; t++)
|
|
3023
|
+
(e = n[t])() || n[t] !== e || n.splice(t--, 1);
|
|
3024
|
+
n.length || k.fx.stop(),
|
|
3025
|
+
rt = void 0
|
|
3026
|
+
}
|
|
3027
|
+
,
|
|
3028
|
+
k.fx.timer = function(e) {
|
|
3029
|
+
k.timers.push(e),
|
|
3030
|
+
k.fx.start()
|
|
3031
|
+
}
|
|
3032
|
+
,
|
|
3033
|
+
k.fx.interval = 13,
|
|
3034
|
+
k.fx.start = function() {
|
|
3035
|
+
it || (it = !0,
|
|
3036
|
+
lt())
|
|
3037
|
+
}
|
|
3038
|
+
,
|
|
3039
|
+
k.fx.stop = function() {
|
|
3040
|
+
it = null
|
|
3041
|
+
}
|
|
3042
|
+
,
|
|
3043
|
+
k.fx.speeds = {
|
|
3044
|
+
slow: 600,
|
|
3045
|
+
fast: 200,
|
|
3046
|
+
_default: 400
|
|
3047
|
+
},
|
|
3048
|
+
k.fn.delay = function(r, e) {
|
|
3049
|
+
return r = k.fx && k.fx.speeds[r] || r,
|
|
3050
|
+
e = e || "fx",
|
|
3051
|
+
this.queue(e, function(e, t) {
|
|
3052
|
+
var n = C.setTimeout(e, r);
|
|
3053
|
+
t.stop = function() {
|
|
3054
|
+
C.clearTimeout(n)
|
|
3055
|
+
}
|
|
3056
|
+
})
|
|
3057
|
+
}
|
|
3058
|
+
,
|
|
3059
|
+
ot = E.createElement("input"),
|
|
3060
|
+
at = E.createElement("select").appendChild(E.createElement("option")),
|
|
3061
|
+
ot.type = "checkbox",
|
|
3062
|
+
y.checkOn = "" !== ot.value,
|
|
3063
|
+
y.optSelected = at.selected,
|
|
3064
|
+
(ot = E.createElement("input")).value = "t",
|
|
3065
|
+
ot.type = "radio",
|
|
3066
|
+
y.radioValue = "t" === ot.value;
|
|
3067
|
+
var ht, gt = k.expr.attrHandle;
|
|
3068
|
+
k.fn.extend({
|
|
3069
|
+
attr: function(e, t) {
|
|
3070
|
+
return _(this, k.attr, e, t, 1 < arguments.length)
|
|
3071
|
+
},
|
|
3072
|
+
removeAttr: function(e) {
|
|
3073
|
+
return this.each(function() {
|
|
3074
|
+
k.removeAttr(this, e)
|
|
3075
|
+
})
|
|
3076
|
+
}
|
|
3077
|
+
}),
|
|
3078
|
+
k.extend({
|
|
3079
|
+
attr: function(e, t, n) {
|
|
3080
|
+
var r, i, o = e.nodeType;
|
|
3081
|
+
if (3 !== o && 8 !== o && 2 !== o)
|
|
3082
|
+
return "undefined" == typeof e.getAttribute ? k.prop(e, t, n) : (1 === o && k.isXMLDoc(e) || (i = k.attrHooks[t.toLowerCase()] || (k.expr.match.bool.test(t) ? ht : void 0)),
|
|
3083
|
+
void 0 !== n ? null === n ? void k.removeAttr(e, t) : i && "set"in i && void 0 !== (r = i.set(e, n, t)) ? r : (e.setAttribute(t, n + ""),
|
|
3084
|
+
n) : i && "get"in i && null !== (r = i.get(e, t)) ? r : null == (r = k.find.attr(e, t)) ? void 0 : r)
|
|
3085
|
+
},
|
|
3086
|
+
attrHooks: {
|
|
3087
|
+
type: {
|
|
3088
|
+
set: function(e, t) {
|
|
3089
|
+
if (!y.radioValue && "radio" === t && A(e, "input")) {
|
|
3090
|
+
var n = e.value;
|
|
3091
|
+
return e.setAttribute("type", t),
|
|
3092
|
+
n && (e.value = n),
|
|
3093
|
+
t
|
|
3094
|
+
}
|
|
3095
|
+
}
|
|
3096
|
+
}
|
|
3097
|
+
},
|
|
3098
|
+
removeAttr: function(e, t) {
|
|
3099
|
+
var n, r = 0, i = t && t.match(R);
|
|
3100
|
+
if (i && 1 === e.nodeType)
|
|
3101
|
+
while (n = i[r++])
|
|
3102
|
+
e.removeAttribute(n)
|
|
3103
|
+
}
|
|
3104
|
+
}),
|
|
3105
|
+
ht = {
|
|
3106
|
+
set: function(e, t, n) {
|
|
3107
|
+
return !1 === t ? k.removeAttr(e, n) : e.setAttribute(n, n),
|
|
3108
|
+
n
|
|
3109
|
+
}
|
|
3110
|
+
},
|
|
3111
|
+
k.each(k.expr.match.bool.source.match(/\w+/g), function(e, t) {
|
|
3112
|
+
var a = gt[t] || k.find.attr;
|
|
3113
|
+
gt[t] = function(e, t, n) {
|
|
3114
|
+
var r, i, o = t.toLowerCase();
|
|
3115
|
+
return n || (i = gt[o],
|
|
3116
|
+
gt[o] = r,
|
|
3117
|
+
r = null != a(e, t, n) ? o : null,
|
|
3118
|
+
gt[o] = i),
|
|
3119
|
+
r
|
|
3120
|
+
}
|
|
3121
|
+
});
|
|
3122
|
+
var vt = /^(?:input|select|textarea|button)$/i
|
|
3123
|
+
, yt = /^(?:a|area)$/i;
|
|
3124
|
+
function mt(e) {
|
|
3125
|
+
return (e.match(R) || []).join(" ")
|
|
3126
|
+
}
|
|
3127
|
+
function xt(e) {
|
|
3128
|
+
return e.getAttribute && e.getAttribute("class") || ""
|
|
3129
|
+
}
|
|
3130
|
+
function bt(e) {
|
|
3131
|
+
return Array.isArray(e) ? e : "string" == typeof e && e.match(R) || []
|
|
3132
|
+
}
|
|
3133
|
+
k.fn.extend({
|
|
3134
|
+
prop: function(e, t) {
|
|
3135
|
+
return _(this, k.prop, e, t, 1 < arguments.length)
|
|
3136
|
+
},
|
|
3137
|
+
removeProp: function(e) {
|
|
3138
|
+
return this.each(function() {
|
|
3139
|
+
delete this[k.propFix[e] || e]
|
|
3140
|
+
})
|
|
3141
|
+
}
|
|
3142
|
+
}),
|
|
3143
|
+
k.extend({
|
|
3144
|
+
prop: function(e, t, n) {
|
|
3145
|
+
var r, i, o = e.nodeType;
|
|
3146
|
+
if (3 !== o && 8 !== o && 2 !== o)
|
|
3147
|
+
return 1 === o && k.isXMLDoc(e) || (t = k.propFix[t] || t,
|
|
3148
|
+
i = k.propHooks[t]),
|
|
3149
|
+
void 0 !== n ? i && "set"in i && void 0 !== (r = i.set(e, n, t)) ? r : e[t] = n : i && "get"in i && null !== (r = i.get(e, t)) ? r : e[t]
|
|
3150
|
+
},
|
|
3151
|
+
propHooks: {
|
|
3152
|
+
tabIndex: {
|
|
3153
|
+
get: function(e) {
|
|
3154
|
+
var t = k.find.attr(e, "tabindex");
|
|
3155
|
+
return t ? parseInt(t, 10) : vt.test(e.nodeName) || yt.test(e.nodeName) && e.href ? 0 : -1
|
|
3156
|
+
}
|
|
3157
|
+
}
|
|
3158
|
+
},
|
|
3159
|
+
propFix: {
|
|
3160
|
+
"for": "htmlFor",
|
|
3161
|
+
"class": "className"
|
|
3162
|
+
}
|
|
3163
|
+
}),
|
|
3164
|
+
y.optSelected || (k.propHooks.selected = {
|
|
3165
|
+
get: function(e) {
|
|
3166
|
+
var t = e.parentNode;
|
|
3167
|
+
return t && t.parentNode && t.parentNode.selectedIndex,
|
|
3168
|
+
null
|
|
3169
|
+
},
|
|
3170
|
+
set: function(e) {
|
|
3171
|
+
var t = e.parentNode;
|
|
3172
|
+
t && (t.selectedIndex,
|
|
3173
|
+
t.parentNode && t.parentNode.selectedIndex)
|
|
3174
|
+
}
|
|
3175
|
+
}),
|
|
3176
|
+
k.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function() {
|
|
3177
|
+
k.propFix[this.toLowerCase()] = this
|
|
3178
|
+
}),
|
|
3179
|
+
k.fn.extend({
|
|
3180
|
+
addClass: function(t) {
|
|
3181
|
+
var e, n, r, i, o, a, s, u = 0;
|
|
3182
|
+
if (m(t))
|
|
3183
|
+
return this.each(function(e) {
|
|
3184
|
+
k(this).addClass(t.call(this, e, xt(this)))
|
|
3185
|
+
});
|
|
3186
|
+
if ((e = bt(t)).length)
|
|
3187
|
+
while (n = this[u++])
|
|
3188
|
+
if (i = xt(n),
|
|
3189
|
+
r = 1 === n.nodeType && " " + mt(i) + " ") {
|
|
3190
|
+
a = 0;
|
|
3191
|
+
while (o = e[a++])
|
|
3192
|
+
r.indexOf(" " + o + " ") < 0 && (r += o + " ");
|
|
3193
|
+
i !== (s = mt(r)) && n.setAttribute("class", s)
|
|
3194
|
+
}
|
|
3195
|
+
return this
|
|
3196
|
+
},
|
|
3197
|
+
removeClass: function(t) {
|
|
3198
|
+
var e, n, r, i, o, a, s, u = 0;
|
|
3199
|
+
if (m(t))
|
|
3200
|
+
return this.each(function(e) {
|
|
3201
|
+
k(this).removeClass(t.call(this, e, xt(this)))
|
|
3202
|
+
});
|
|
3203
|
+
if (!arguments.length)
|
|
3204
|
+
return this.attr("class", "");
|
|
3205
|
+
if ((e = bt(t)).length)
|
|
3206
|
+
while (n = this[u++])
|
|
3207
|
+
if (i = xt(n),
|
|
3208
|
+
r = 1 === n.nodeType && " " + mt(i) + " ") {
|
|
3209
|
+
a = 0;
|
|
3210
|
+
while (o = e[a++])
|
|
3211
|
+
while (-1 < r.indexOf(" " + o + " "))
|
|
3212
|
+
r = r.replace(" " + o + " ", " ");
|
|
3213
|
+
i !== (s = mt(r)) && n.setAttribute("class", s)
|
|
3214
|
+
}
|
|
3215
|
+
return this
|
|
3216
|
+
},
|
|
3217
|
+
toggleClass: function(i, t) {
|
|
3218
|
+
var o = typeof i
|
|
3219
|
+
, a = "string" === o || Array.isArray(i);
|
|
3220
|
+
return "boolean" == typeof t && a ? t ? this.addClass(i) : this.removeClass(i) : m(i) ? this.each(function(e) {
|
|
3221
|
+
k(this).toggleClass(i.call(this, e, xt(this), t), t)
|
|
3222
|
+
}) : this.each(function() {
|
|
3223
|
+
var e, t, n, r;
|
|
3224
|
+
if (a) {
|
|
3225
|
+
t = 0,
|
|
3226
|
+
n = k(this),
|
|
3227
|
+
r = bt(i);
|
|
3228
|
+
while (e = r[t++])
|
|
3229
|
+
n.hasClass(e) ? n.removeClass(e) : n.addClass(e)
|
|
3230
|
+
} else
|
|
3231
|
+
void 0 !== i && "boolean" !== o || ((e = xt(this)) && Q.set(this, "__className__", e),
|
|
3232
|
+
this.setAttribute && this.setAttribute("class", e || !1 === i ? "" : Q.get(this, "__className__") || ""))
|
|
3233
|
+
})
|
|
3234
|
+
},
|
|
3235
|
+
hasClass: function(e) {
|
|
3236
|
+
var t, n, r = 0;
|
|
3237
|
+
t = " " + e + " ";
|
|
3238
|
+
while (n = this[r++])
|
|
3239
|
+
if (1 === n.nodeType && -1 < (" " + mt(xt(n)) + " ").indexOf(t))
|
|
3240
|
+
return !0;
|
|
3241
|
+
return !1
|
|
3242
|
+
}
|
|
3243
|
+
});
|
|
3244
|
+
var wt = /\r/g;
|
|
3245
|
+
k.fn.extend({
|
|
3246
|
+
val: function(n) {
|
|
3247
|
+
var r, e, i, t = this[0];
|
|
3248
|
+
return arguments.length ? (i = m(n),
|
|
3249
|
+
this.each(function(e) {
|
|
3250
|
+
var t;
|
|
3251
|
+
1 === this.nodeType && (null == (t = i ? n.call(this, e, k(this).val()) : n) ? t = "" : "number" == typeof t ? t += "" : Array.isArray(t) && (t = k.map(t, function(e) {
|
|
3252
|
+
return null == e ? "" : e + ""
|
|
3253
|
+
})),
|
|
3254
|
+
(r = k.valHooks[this.type] || k.valHooks[this.nodeName.toLowerCase()]) && "set"in r && void 0 !== r.set(this, t, "value") || (this.value = t))
|
|
3255
|
+
})) : t ? (r = k.valHooks[t.type] || k.valHooks[t.nodeName.toLowerCase()]) && "get"in r && void 0 !== (e = r.get(t, "value")) ? e : "string" == typeof (e = t.value) ? e.replace(wt, "") : null == e ? "" : e : void 0
|
|
3256
|
+
}
|
|
3257
|
+
}),
|
|
3258
|
+
k.extend({
|
|
3259
|
+
valHooks: {
|
|
3260
|
+
option: {
|
|
3261
|
+
get: function(e) {
|
|
3262
|
+
var t = k.find.attr(e, "value");
|
|
3263
|
+
return null != t ? t : mt(k.text(e))
|
|
3264
|
+
}
|
|
3265
|
+
},
|
|
3266
|
+
select: {
|
|
3267
|
+
get: function(e) {
|
|
3268
|
+
var t, n, r, i = e.options, o = e.selectedIndex, a = "select-one" === e.type, s = a ? null : [], u = a ? o + 1 : i.length;
|
|
3269
|
+
for (r = o < 0 ? u : a ? o : 0; r < u; r++)
|
|
3270
|
+
if (((n = i[r]).selected || r === o) && !n.disabled && (!n.parentNode.disabled || !A(n.parentNode, "optgroup"))) {
|
|
3271
|
+
if (t = k(n).val(),
|
|
3272
|
+
a)
|
|
3273
|
+
return t;
|
|
3274
|
+
s.push(t)
|
|
3275
|
+
}
|
|
3276
|
+
return s
|
|
3277
|
+
},
|
|
3278
|
+
set: function(e, t) {
|
|
3279
|
+
var n, r, i = e.options, o = k.makeArray(t), a = i.length;
|
|
3280
|
+
while (a--)
|
|
3281
|
+
((r = i[a]).selected = -1 < k.inArray(k.valHooks.option.get(r), o)) && (n = !0);
|
|
3282
|
+
return n || (e.selectedIndex = -1),
|
|
3283
|
+
o
|
|
3284
|
+
}
|
|
3285
|
+
}
|
|
3286
|
+
}
|
|
3287
|
+
}),
|
|
3288
|
+
k.each(["radio", "checkbox"], function() {
|
|
3289
|
+
k.valHooks[this] = {
|
|
3290
|
+
set: function(e, t) {
|
|
3291
|
+
if (Array.isArray(t))
|
|
3292
|
+
return e.checked = -1 < k.inArray(k(e).val(), t)
|
|
3293
|
+
}
|
|
3294
|
+
},
|
|
3295
|
+
y.checkOn || (k.valHooks[this].get = function(e) {
|
|
3296
|
+
return null === e.getAttribute("value") ? "on" : e.value
|
|
3297
|
+
}
|
|
3298
|
+
)
|
|
3299
|
+
}),
|
|
3300
|
+
y.focusin = "onfocusin"in C;
|
|
3301
|
+
var Tt = /^(?:focusinfocus|focusoutblur)$/
|
|
3302
|
+
, Ct = function(e) {
|
|
3303
|
+
e.stopPropagation()
|
|
3304
|
+
};
|
|
3305
|
+
k.extend(k.event, {
|
|
3306
|
+
trigger: function(e, t, n, r) {
|
|
3307
|
+
var i, o, a, s, u, l, c, f, p = [n || E], d = v.call(e, "type") ? e.type : e, h = v.call(e, "namespace") ? e.namespace.split(".") : [];
|
|
3308
|
+
if (o = f = a = n = n || E,
|
|
3309
|
+
3 !== n.nodeType && 8 !== n.nodeType && !Tt.test(d + k.event.triggered) && (-1 < d.indexOf(".") && (d = (h = d.split(".")).shift(),
|
|
3310
|
+
h.sort()),
|
|
3311
|
+
u = d.indexOf(":") < 0 && "on" + d,
|
|
3312
|
+
(e = e[k.expando] ? e : new k.Event(d,"object" == typeof e && e)).isTrigger = r ? 2 : 3,
|
|
3313
|
+
e.namespace = h.join("."),
|
|
3314
|
+
e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)") : null,
|
|
3315
|
+
e.result = void 0,
|
|
3316
|
+
e.target || (e.target = n),
|
|
3317
|
+
t = null == t ? [e] : k.makeArray(t, [e]),
|
|
3318
|
+
c = k.event.special[d] || {},
|
|
3319
|
+
r || !c.trigger || !1 !== c.trigger.apply(n, t))) {
|
|
3320
|
+
if (!r && !c.noBubble && !x(n)) {
|
|
3321
|
+
for (s = c.delegateType || d,
|
|
3322
|
+
Tt.test(s + d) || (o = o.parentNode); o; o = o.parentNode)
|
|
3323
|
+
p.push(o),
|
|
3324
|
+
a = o;
|
|
3325
|
+
a === (n.ownerDocument || E) && p.push(a.defaultView || a.parentWindow || C)
|
|
3326
|
+
}
|
|
3327
|
+
i = 0;
|
|
3328
|
+
while ((o = p[i++]) && !e.isPropagationStopped())
|
|
3329
|
+
f = o,
|
|
3330
|
+
e.type = 1 < i ? s : c.bindType || d,
|
|
3331
|
+
(l = (Q.get(o, "events") || {})[e.type] && Q.get(o, "handle")) && l.apply(o, t),
|
|
3332
|
+
(l = u && o[u]) && l.apply && G(o) && (e.result = l.apply(o, t),
|
|
3333
|
+
!1 === e.result && e.preventDefault());
|
|
3334
|
+
return e.type = d,
|
|
3335
|
+
r || e.isDefaultPrevented() || c._default && !1 !== c._default.apply(p.pop(), t) || !G(n) || u && m(n[d]) && !x(n) && ((a = n[u]) && (n[u] = null),
|
|
3336
|
+
k.event.triggered = d,
|
|
3337
|
+
e.isPropagationStopped() && f.addEventListener(d, Ct),
|
|
3338
|
+
n[d](),
|
|
3339
|
+
e.isPropagationStopped() && f.removeEventListener(d, Ct),
|
|
3340
|
+
k.event.triggered = void 0,
|
|
3341
|
+
a && (n[u] = a)),
|
|
3342
|
+
e.result
|
|
3343
|
+
}
|
|
3344
|
+
},
|
|
3345
|
+
simulate: function(e, t, n) {
|
|
3346
|
+
var r = k.extend(new k.Event, n, {
|
|
3347
|
+
type: e,
|
|
3348
|
+
isSimulated: !0
|
|
3349
|
+
});
|
|
3350
|
+
k.event.trigger(r, null, t)
|
|
3351
|
+
}
|
|
3352
|
+
}),
|
|
3353
|
+
k.fn.extend({
|
|
3354
|
+
trigger: function(e, t) {
|
|
3355
|
+
return this.each(function() {
|
|
3356
|
+
k.event.trigger(e, t, this)
|
|
3357
|
+
})
|
|
3358
|
+
},
|
|
3359
|
+
triggerHandler: function(e, t) {
|
|
3360
|
+
var n = this[0];
|
|
3361
|
+
if (n)
|
|
3362
|
+
return k.event.trigger(e, t, n, !0)
|
|
3363
|
+
}
|
|
3364
|
+
}),
|
|
3365
|
+
y.focusin || k.each({
|
|
3366
|
+
focus: "focusin",
|
|
3367
|
+
blur: "focusout"
|
|
3368
|
+
}, function(n, r) {
|
|
3369
|
+
var i = function(e) {
|
|
3370
|
+
k.event.simulate(r, e.target, k.event.fix(e))
|
|
3371
|
+
};
|
|
3372
|
+
k.event.special[r] = {
|
|
3373
|
+
setup: function() {
|
|
3374
|
+
var e = this.ownerDocument || this
|
|
3375
|
+
, t = Q.access(e, r);
|
|
3376
|
+
t || e.addEventListener(n, i, !0),
|
|
3377
|
+
Q.access(e, r, (t || 0) + 1)
|
|
3378
|
+
},
|
|
3379
|
+
teardown: function() {
|
|
3380
|
+
var e = this.ownerDocument || this
|
|
3381
|
+
, t = Q.access(e, r) - 1;
|
|
3382
|
+
t ? Q.access(e, r, t) : (e.removeEventListener(n, i, !0),
|
|
3383
|
+
Q.remove(e, r))
|
|
3384
|
+
}
|
|
3385
|
+
}
|
|
3386
|
+
});
|
|
3387
|
+
var Et = C.location
|
|
3388
|
+
, kt = Date.now()
|
|
3389
|
+
, St = /\?/;
|
|
3390
|
+
k.parseXML = function(e) {
|
|
3391
|
+
var t;
|
|
3392
|
+
if (!e || "string" != typeof e)
|
|
3393
|
+
return null;
|
|
3394
|
+
try {
|
|
3395
|
+
t = (new C.DOMParser).parseFromString(e, "text/xml")
|
|
3396
|
+
} catch (e) {
|
|
3397
|
+
t = void 0
|
|
3398
|
+
}
|
|
3399
|
+
return t && !t.getElementsByTagName("parsererror").length || k.error("Invalid XML: " + e),
|
|
3400
|
+
t
|
|
3401
|
+
}
|
|
3402
|
+
;
|
|
3403
|
+
var Nt = /\[\]$/
|
|
3404
|
+
, At = /\r?\n/g
|
|
3405
|
+
, Dt = /^(?:submit|button|image|reset|file)$/i
|
|
3406
|
+
, jt = /^(?:input|select|textarea|keygen)/i;
|
|
3407
|
+
function qt(n, e, r, i) {
|
|
3408
|
+
var t;
|
|
3409
|
+
if (Array.isArray(e))
|
|
3410
|
+
k.each(e, function(e, t) {
|
|
3411
|
+
r || Nt.test(n) ? i(n, t) : qt(n + "[" + ("object" == typeof t && null != t ? e : "") + "]", t, r, i)
|
|
3412
|
+
});
|
|
3413
|
+
else if (r || "object" !== w(e))
|
|
3414
|
+
i(n, e);
|
|
3415
|
+
else
|
|
3416
|
+
for (t in e)
|
|
3417
|
+
qt(n + "[" + t + "]", e[t], r, i)
|
|
3418
|
+
}
|
|
3419
|
+
k.param = function(e, t) {
|
|
3420
|
+
var n, r = [], i = function(e, t) {
|
|
3421
|
+
var n = m(t) ? t() : t;
|
|
3422
|
+
r[r.length] = encodeURIComponent(e) + "=" + encodeURIComponent(null == n ? "" : n)
|
|
3423
|
+
};
|
|
3424
|
+
if (null == e)
|
|
3425
|
+
return "";
|
|
3426
|
+
if (Array.isArray(e) || e.jquery && !k.isPlainObject(e))
|
|
3427
|
+
k.each(e, function() {
|
|
3428
|
+
i(this.name, this.value)
|
|
3429
|
+
});
|
|
3430
|
+
else
|
|
3431
|
+
for (n in e)
|
|
3432
|
+
qt(n, e[n], t, i);
|
|
3433
|
+
return r.join("&")
|
|
3434
|
+
}
|
|
3435
|
+
,
|
|
3436
|
+
k.fn.extend({
|
|
3437
|
+
serialize: function() {
|
|
3438
|
+
return k.param(this.serializeArray())
|
|
3439
|
+
},
|
|
3440
|
+
serializeArray: function() {
|
|
3441
|
+
return this.map(function() {
|
|
3442
|
+
var e = k.prop(this, "elements");
|
|
3443
|
+
return e ? k.makeArray(e) : this
|
|
3444
|
+
}).filter(function() {
|
|
3445
|
+
var e = this.type;
|
|
3446
|
+
return this.name && !k(this).is(":disabled") && jt.test(this.nodeName) && !Dt.test(e) && (this.checked || !pe.test(e))
|
|
3447
|
+
}).map(function(e, t) {
|
|
3448
|
+
var n = k(this).val();
|
|
3449
|
+
return null == n ? null : Array.isArray(n) ? k.map(n, function(e) {
|
|
3450
|
+
return {
|
|
3451
|
+
name: t.name,
|
|
3452
|
+
value: e.replace(At, "\r\n")
|
|
3453
|
+
}
|
|
3454
|
+
}) : {
|
|
3455
|
+
name: t.name,
|
|
3456
|
+
value: n.replace(At, "\r\n")
|
|
3457
|
+
}
|
|
3458
|
+
}).get()
|
|
3459
|
+
}
|
|
3460
|
+
});
|
|
3461
|
+
var Lt = /%20/g
|
|
3462
|
+
, Ht = /#.*$/
|
|
3463
|
+
, Ot = /([?&])_=[^&]*/
|
|
3464
|
+
, Pt = /^(.*?):[ \t]*([^\r\n]*)$/gm
|
|
3465
|
+
, Rt = /^(?:GET|HEAD)$/
|
|
3466
|
+
, Mt = /^\/\//
|
|
3467
|
+
, It = {}
|
|
3468
|
+
, Wt = {}
|
|
3469
|
+
, $t = "*/".concat("*")
|
|
3470
|
+
, Ft = E.createElement("a");
|
|
3471
|
+
function Bt(o) {
|
|
3472
|
+
return function(e, t) {
|
|
3473
|
+
"string" != typeof e && (t = e,
|
|
3474
|
+
e = "*");
|
|
3475
|
+
var n, r = 0, i = e.toLowerCase().match(R) || [];
|
|
3476
|
+
if (m(t))
|
|
3477
|
+
while (n = i[r++])
|
|
3478
|
+
"+" === n[0] ? (n = n.slice(1) || "*",
|
|
3479
|
+
(o[n] = o[n] || []).unshift(t)) : (o[n] = o[n] || []).push(t)
|
|
3480
|
+
}
|
|
3481
|
+
}
|
|
3482
|
+
function _t(t, i, o, a) {
|
|
3483
|
+
var s = {}
|
|
3484
|
+
, u = t === Wt;
|
|
3485
|
+
function l(e) {
|
|
3486
|
+
var r;
|
|
3487
|
+
return s[e] = !0,
|
|
3488
|
+
k.each(t[e] || [], function(e, t) {
|
|
3489
|
+
var n = t(i, o, a);
|
|
3490
|
+
return "string" != typeof n || u || s[n] ? u ? !(r = n) : void 0 : (i.dataTypes.unshift(n),
|
|
3491
|
+
l(n),
|
|
3492
|
+
!1)
|
|
3493
|
+
}),
|
|
3494
|
+
r
|
|
3495
|
+
}
|
|
3496
|
+
return l(i.dataTypes[0]) || !s["*"] && l("*")
|
|
3497
|
+
}
|
|
3498
|
+
function zt(e, t) {
|
|
3499
|
+
var n, r, i = k.ajaxSettings.flatOptions || {};
|
|
3500
|
+
for (n in t)
|
|
3501
|
+
void 0 !== t[n] && ((i[n] ? e : r || (r = {}))[n] = t[n]);
|
|
3502
|
+
return r && k.extend(!0, e, r),
|
|
3503
|
+
e
|
|
3504
|
+
}
|
|
3505
|
+
Ft.href = Et.href,
|
|
3506
|
+
k.extend({
|
|
3507
|
+
active: 0,
|
|
3508
|
+
lastModified: {},
|
|
3509
|
+
etag: {},
|
|
3510
|
+
ajaxSettings: {
|
|
3511
|
+
url: Et.href,
|
|
3512
|
+
type: "GET",
|
|
3513
|
+
isLocal: /^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),
|
|
3514
|
+
global: !0,
|
|
3515
|
+
processData: !0,
|
|
3516
|
+
async: !0,
|
|
3517
|
+
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
|
3518
|
+
accepts: {
|
|
3519
|
+
"*": $t,
|
|
3520
|
+
text: "text/plain",
|
|
3521
|
+
html: "text/html",
|
|
3522
|
+
xml: "application/xml, text/xml",
|
|
3523
|
+
json: "application/json, text/javascript"
|
|
3524
|
+
},
|
|
3525
|
+
contents: {
|
|
3526
|
+
xml: /\bxml\b/,
|
|
3527
|
+
html: /\bhtml/,
|
|
3528
|
+
json: /\bjson\b/
|
|
3529
|
+
},
|
|
3530
|
+
responseFields: {
|
|
3531
|
+
xml: "responseXML",
|
|
3532
|
+
text: "responseText",
|
|
3533
|
+
json: "responseJSON"
|
|
3534
|
+
},
|
|
3535
|
+
converters: {
|
|
3536
|
+
"* text": String,
|
|
3537
|
+
"text html": !0,
|
|
3538
|
+
"text json": JSON.parse,
|
|
3539
|
+
"text xml": k.parseXML
|
|
3540
|
+
},
|
|
3541
|
+
flatOptions: {
|
|
3542
|
+
url: !0,
|
|
3543
|
+
context: !0
|
|
3544
|
+
}
|
|
3545
|
+
},
|
|
3546
|
+
ajaxSetup: function(e, t) {
|
|
3547
|
+
return t ? zt(zt(e, k.ajaxSettings), t) : zt(k.ajaxSettings, e)
|
|
3548
|
+
},
|
|
3549
|
+
ajaxPrefilter: Bt(It),
|
|
3550
|
+
ajaxTransport: Bt(Wt),
|
|
3551
|
+
ajax: function(e, t) {
|
|
3552
|
+
"object" == typeof e && (t = e,
|
|
3553
|
+
e = void 0),
|
|
3554
|
+
t = t || {};
|
|
3555
|
+
var c, f, p, n, d, r, h, g, i, o, v = k.ajaxSetup({}, t), y = v.context || v, m = v.context && (y.nodeType || y.jquery) ? k(y) : k.event, x = k.Deferred(), b = k.Callbacks("once memory"), w = v.statusCode || {}, a = {}, s = {}, u = "canceled", T = {
|
|
3556
|
+
readyState: 0,
|
|
3557
|
+
getResponseHeader: function(e) {
|
|
3558
|
+
var t;
|
|
3559
|
+
if (h) {
|
|
3560
|
+
if (!n) {
|
|
3561
|
+
n = {};
|
|
3562
|
+
while (t = Pt.exec(p))
|
|
3563
|
+
n[t[1].toLowerCase() + " "] = (n[t[1].toLowerCase() + " "] || []).concat(t[2])
|
|
3564
|
+
}
|
|
3565
|
+
t = n[e.toLowerCase() + " "]
|
|
3566
|
+
}
|
|
3567
|
+
return null == t ? null : t.join(", ")
|
|
3568
|
+
},
|
|
3569
|
+
getAllResponseHeaders: function() {
|
|
3570
|
+
return h ? p : null
|
|
3571
|
+
},
|
|
3572
|
+
setRequestHeader: function(e, t) {
|
|
3573
|
+
return null == h && (e = s[e.toLowerCase()] = s[e.toLowerCase()] || e,
|
|
3574
|
+
a[e] = t),
|
|
3575
|
+
this
|
|
3576
|
+
},
|
|
3577
|
+
overrideMimeType: function(e) {
|
|
3578
|
+
return null == h && (v.mimeType = e),
|
|
3579
|
+
this
|
|
3580
|
+
},
|
|
3581
|
+
statusCode: function(e) {
|
|
3582
|
+
var t;
|
|
3583
|
+
if (e)
|
|
3584
|
+
if (h)
|
|
3585
|
+
T.always(e[T.status]);
|
|
3586
|
+
else
|
|
3587
|
+
for (t in e)
|
|
3588
|
+
w[t] = [w[t], e[t]];
|
|
3589
|
+
return this
|
|
3590
|
+
},
|
|
3591
|
+
abort: function(e) {
|
|
3592
|
+
var t = e || u;
|
|
3593
|
+
return c && c.abort(t),
|
|
3594
|
+
l(0, t),
|
|
3595
|
+
this
|
|
3596
|
+
}
|
|
3597
|
+
};
|
|
3598
|
+
if (x.promise(T),
|
|
3599
|
+
v.url = ((e || v.url || Et.href) + "").replace(Mt, Et.protocol + "//"),
|
|
3600
|
+
v.type = t.method || t.type || v.method || v.type,
|
|
3601
|
+
v.dataTypes = (v.dataType || "*").toLowerCase().match(R) || [""],
|
|
3602
|
+
null == v.crossDomain) {
|
|
3603
|
+
r = E.createElement("a");
|
|
3604
|
+
try {
|
|
3605
|
+
r.href = v.url,
|
|
3606
|
+
r.href = r.href,
|
|
3607
|
+
v.crossDomain = Ft.protocol + "//" + Ft.host != r.protocol + "//" + r.host
|
|
3608
|
+
} catch (e) {
|
|
3609
|
+
v.crossDomain = !0
|
|
3610
|
+
}
|
|
3611
|
+
}
|
|
3612
|
+
if (v.data && v.processData && "string" != typeof v.data && (v.data = k.param(v.data, v.traditional)),
|
|
3613
|
+
_t(It, v, t, T),
|
|
3614
|
+
h)
|
|
3615
|
+
return T;
|
|
3616
|
+
for (i in (g = k.event && v.global) && 0 == k.active++ && k.event.trigger("ajaxStart"),
|
|
3617
|
+
v.type = v.type.toUpperCase(),
|
|
3618
|
+
v.hasContent = !Rt.test(v.type),
|
|
3619
|
+
f = v.url.replace(Ht, ""),
|
|
3620
|
+
v.hasContent ? v.data && v.processData && 0 === (v.contentType || "").indexOf("application/x-www-form-urlencoded") && (v.data = v.data.replace(Lt, "+")) : (o = v.url.slice(f.length),
|
|
3621
|
+
v.data && (v.processData || "string" == typeof v.data) && (f += (St.test(f) ? "&" : "?") + v.data,
|
|
3622
|
+
delete v.data),
|
|
3623
|
+
!1 === v.cache && (f = f.replace(Ot, "$1"),
|
|
3624
|
+
o = (St.test(f) ? "&" : "?") + "_=" + kt++ + o),
|
|
3625
|
+
v.url = f + o),
|
|
3626
|
+
v.ifModified && (k.lastModified[f] && T.setRequestHeader("If-Modified-Since", k.lastModified[f]),
|
|
3627
|
+
k.etag[f] && T.setRequestHeader("If-None-Match", k.etag[f])),
|
|
3628
|
+
(v.data && v.hasContent && !1 !== v.contentType || t.contentType) && T.setRequestHeader("Content-Type", v.contentType),
|
|
3629
|
+
T.setRequestHeader("Accept", v.dataTypes[0] && v.accepts[v.dataTypes[0]] ? v.accepts[v.dataTypes[0]] + ("*" !== v.dataTypes[0] ? ", " + $t + "; q=0.01" : "") : v.accepts["*"]),
|
|
3630
|
+
v.headers)
|
|
3631
|
+
T.setRequestHeader(i, v.headers[i]);
|
|
3632
|
+
if (v.beforeSend && (!1 === v.beforeSend.call(y, T, v) || h))
|
|
3633
|
+
return T.abort();
|
|
3634
|
+
if (u = "abort",
|
|
3635
|
+
b.add(v.complete),
|
|
3636
|
+
T.done(v.success),
|
|
3637
|
+
T.fail(v.error),
|
|
3638
|
+
c = _t(Wt, v, t, T)) {
|
|
3639
|
+
if (T.readyState = 1,
|
|
3640
|
+
g && m.trigger("ajaxSend", [T, v]),
|
|
3641
|
+
h)
|
|
3642
|
+
return T;
|
|
3643
|
+
v.async && 0 < v.timeout && (d = C.setTimeout(function() {
|
|
3644
|
+
T.abort("timeout")
|
|
3645
|
+
}, v.timeout));
|
|
3646
|
+
try {
|
|
3647
|
+
h = !1,
|
|
3648
|
+
c.send(a, l)
|
|
3649
|
+
} catch (e) {
|
|
3650
|
+
if (h)
|
|
3651
|
+
throw e;
|
|
3652
|
+
l(-1, e)
|
|
3653
|
+
}
|
|
3654
|
+
} else
|
|
3655
|
+
l(-1, "No Transport");
|
|
3656
|
+
function l(e, t, n, r) {
|
|
3657
|
+
var i, o, a, s, u, l = t;
|
|
3658
|
+
h || (h = !0,
|
|
3659
|
+
d && C.clearTimeout(d),
|
|
3660
|
+
c = void 0,
|
|
3661
|
+
p = r || "",
|
|
3662
|
+
T.readyState = 0 < e ? 4 : 0,
|
|
3663
|
+
i = 200 <= e && e < 300 || 304 === e,
|
|
3664
|
+
n && (s = function(e, t, n) {
|
|
3665
|
+
var r, i, o, a, s = e.contents, u = e.dataTypes;
|
|
3666
|
+
while ("*" === u[0])
|
|
3667
|
+
u.shift(),
|
|
3668
|
+
void 0 === r && (r = e.mimeType || t.getResponseHeader("Content-Type"));
|
|
3669
|
+
if (r)
|
|
3670
|
+
for (i in s)
|
|
3671
|
+
if (s[i] && s[i].test(r)) {
|
|
3672
|
+
u.unshift(i);
|
|
3673
|
+
break
|
|
3674
|
+
}
|
|
3675
|
+
if (u[0]in n)
|
|
3676
|
+
o = u[0];
|
|
3677
|
+
else {
|
|
3678
|
+
for (i in n) {
|
|
3679
|
+
if (!u[0] || e.converters[i + " " + u[0]]) {
|
|
3680
|
+
o = i;
|
|
3681
|
+
break
|
|
3682
|
+
}
|
|
3683
|
+
a || (a = i)
|
|
3684
|
+
}
|
|
3685
|
+
o = o || a
|
|
3686
|
+
}
|
|
3687
|
+
if (o)
|
|
3688
|
+
return o !== u[0] && u.unshift(o),
|
|
3689
|
+
n[o]
|
|
3690
|
+
}(v, T, n)),
|
|
3691
|
+
s = function(e, t, n, r) {
|
|
3692
|
+
var i, o, a, s, u, l = {}, c = e.dataTypes.slice();
|
|
3693
|
+
if (c[1])
|
|
3694
|
+
for (a in e.converters)
|
|
3695
|
+
l[a.toLowerCase()] = e.converters[a];
|
|
3696
|
+
o = c.shift();
|
|
3697
|
+
while (o)
|
|
3698
|
+
if (e.responseFields[o] && (n[e.responseFields[o]] = t),
|
|
3699
|
+
!u && r && e.dataFilter && (t = e.dataFilter(t, e.dataType)),
|
|
3700
|
+
u = o,
|
|
3701
|
+
o = c.shift())
|
|
3702
|
+
if ("*" === o)
|
|
3703
|
+
o = u;
|
|
3704
|
+
else if ("*" !== u && u !== o) {
|
|
3705
|
+
if (!(a = l[u + " " + o] || l["* " + o]))
|
|
3706
|
+
for (i in l)
|
|
3707
|
+
if ((s = i.split(" "))[1] === o && (a = l[u + " " + s[0]] || l["* " + s[0]])) {
|
|
3708
|
+
!0 === a ? a = l[i] : !0 !== l[i] && (o = s[0],
|
|
3709
|
+
c.unshift(s[1]));
|
|
3710
|
+
break
|
|
3711
|
+
}
|
|
3712
|
+
if (!0 !== a)
|
|
3713
|
+
if (a && e["throws"])
|
|
3714
|
+
t = a(t);
|
|
3715
|
+
else
|
|
3716
|
+
try {
|
|
3717
|
+
t = a(t)
|
|
3718
|
+
} catch (e) {
|
|
3719
|
+
return {
|
|
3720
|
+
state: "parsererror",
|
|
3721
|
+
error: a ? e : "No conversion from " + u + " to " + o
|
|
3722
|
+
}
|
|
3723
|
+
}
|
|
3724
|
+
}
|
|
3725
|
+
return {
|
|
3726
|
+
state: "success",
|
|
3727
|
+
data: t
|
|
3728
|
+
}
|
|
3729
|
+
}(v, s, T, i),
|
|
3730
|
+
i ? (v.ifModified && ((u = T.getResponseHeader("Last-Modified")) && (k.lastModified[f] = u),
|
|
3731
|
+
(u = T.getResponseHeader("etag")) && (k.etag[f] = u)),
|
|
3732
|
+
204 === e || "HEAD" === v.type ? l = "nocontent" : 304 === e ? l = "notmodified" : (l = s.state,
|
|
3733
|
+
o = s.data,
|
|
3734
|
+
i = !(a = s.error))) : (a = l,
|
|
3735
|
+
!e && l || (l = "error",
|
|
3736
|
+
e < 0 && (e = 0))),
|
|
3737
|
+
T.status = e,
|
|
3738
|
+
T.statusText = (t || l) + "",
|
|
3739
|
+
i ? x.resolveWith(y, [o, l, T]) : x.rejectWith(y, [T, l, a]),
|
|
3740
|
+
T.statusCode(w),
|
|
3741
|
+
w = void 0,
|
|
3742
|
+
g && m.trigger(i ? "ajaxSuccess" : "ajaxError", [T, v, i ? o : a]),
|
|
3743
|
+
b.fireWith(y, [T, l]),
|
|
3744
|
+
g && (m.trigger("ajaxComplete", [T, v]),
|
|
3745
|
+
--k.active || k.event.trigger("ajaxStop")))
|
|
3746
|
+
}
|
|
3747
|
+
return T
|
|
3748
|
+
},
|
|
3749
|
+
getJSON: function(e, t, n) {
|
|
3750
|
+
return k.get(e, t, n, "json")
|
|
3751
|
+
},
|
|
3752
|
+
getScript: function(e, t) {
|
|
3753
|
+
return k.get(e, void 0, t, "script")
|
|
3754
|
+
}
|
|
3755
|
+
}),
|
|
3756
|
+
k.each(["get", "post"], function(e, i) {
|
|
3757
|
+
k[i] = function(e, t, n, r) {
|
|
3758
|
+
return m(t) && (r = r || n,
|
|
3759
|
+
n = t,
|
|
3760
|
+
t = void 0),
|
|
3761
|
+
k.ajax(k.extend({
|
|
3762
|
+
url: e,
|
|
3763
|
+
type: i,
|
|
3764
|
+
dataType: r,
|
|
3765
|
+
data: t,
|
|
3766
|
+
success: n
|
|
3767
|
+
}, k.isPlainObject(e) && e))
|
|
3768
|
+
}
|
|
3769
|
+
}),
|
|
3770
|
+
k._evalUrl = function(e, t) {
|
|
3771
|
+
return k.ajax({
|
|
3772
|
+
url: e,
|
|
3773
|
+
type: "GET",
|
|
3774
|
+
dataType: "script",
|
|
3775
|
+
cache: !0,
|
|
3776
|
+
async: !1,
|
|
3777
|
+
global: !1,
|
|
3778
|
+
converters: {
|
|
3779
|
+
"text script": function() {}
|
|
3780
|
+
},
|
|
3781
|
+
dataFilter: function(e) {
|
|
3782
|
+
k.globalEval(e, t)
|
|
3783
|
+
}
|
|
3784
|
+
})
|
|
3785
|
+
}
|
|
3786
|
+
,
|
|
3787
|
+
k.fn.extend({
|
|
3788
|
+
wrapAll: function(e) {
|
|
3789
|
+
var t;
|
|
3790
|
+
return this[0] && (m(e) && (e = e.call(this[0])),
|
|
3791
|
+
t = k(e, this[0].ownerDocument).eq(0).clone(!0),
|
|
3792
|
+
this[0].parentNode && t.insertBefore(this[0]),
|
|
3793
|
+
t.map(function() {
|
|
3794
|
+
var e = this;
|
|
3795
|
+
while (e.firstElementChild)
|
|
3796
|
+
e = e.firstElementChild;
|
|
3797
|
+
return e
|
|
3798
|
+
}).append(this)),
|
|
3799
|
+
this
|
|
3800
|
+
},
|
|
3801
|
+
wrapInner: function(n) {
|
|
3802
|
+
return m(n) ? this.each(function(e) {
|
|
3803
|
+
k(this).wrapInner(n.call(this, e))
|
|
3804
|
+
}) : this.each(function() {
|
|
3805
|
+
var e = k(this)
|
|
3806
|
+
, t = e.contents();
|
|
3807
|
+
t.length ? t.wrapAll(n) : e.append(n)
|
|
3808
|
+
})
|
|
3809
|
+
},
|
|
3810
|
+
wrap: function(t) {
|
|
3811
|
+
var n = m(t);
|
|
3812
|
+
return this.each(function(e) {
|
|
3813
|
+
k(this).wrapAll(n ? t.call(this, e) : t)
|
|
3814
|
+
})
|
|
3815
|
+
},
|
|
3816
|
+
unwrap: function(e) {
|
|
3817
|
+
return this.parent(e).not("body").each(function() {
|
|
3818
|
+
k(this).replaceWith(this.childNodes)
|
|
3819
|
+
}),
|
|
3820
|
+
this
|
|
3821
|
+
}
|
|
3822
|
+
}),
|
|
3823
|
+
k.expr.pseudos.hidden = function(e) {
|
|
3824
|
+
return !k.expr.pseudos.visible(e)
|
|
3825
|
+
}
|
|
3826
|
+
,
|
|
3827
|
+
k.expr.pseudos.visible = function(e) {
|
|
3828
|
+
return !!(e.offsetWidth || e.offsetHeight || e.getClientRects().length)
|
|
3829
|
+
}
|
|
3830
|
+
,
|
|
3831
|
+
k.ajaxSettings.xhr = function() {
|
|
3832
|
+
try {
|
|
3833
|
+
return new C.XMLHttpRequest
|
|
3834
|
+
} catch (e) {}
|
|
3835
|
+
}
|
|
3836
|
+
;
|
|
3837
|
+
var Ut = {
|
|
3838
|
+
0: 200,
|
|
3839
|
+
1223: 204
|
|
3840
|
+
}
|
|
3841
|
+
, Xt = k.ajaxSettings.xhr();
|
|
3842
|
+
y.cors = !!Xt && "withCredentials"in Xt,
|
|
3843
|
+
y.ajax = Xt = !!Xt,
|
|
3844
|
+
k.ajaxTransport(function(i) {
|
|
3845
|
+
var o, a;
|
|
3846
|
+
if (y.cors || Xt && !i.crossDomain)
|
|
3847
|
+
return {
|
|
3848
|
+
send: function(e, t) {
|
|
3849
|
+
var n, r = i.xhr();
|
|
3850
|
+
if (r.open(i.type, i.url, i.async, i.username, i.password),
|
|
3851
|
+
i.xhrFields)
|
|
3852
|
+
for (n in i.xhrFields)
|
|
3853
|
+
r[n] = i.xhrFields[n];
|
|
3854
|
+
for (n in i.mimeType && r.overrideMimeType && r.overrideMimeType(i.mimeType),
|
|
3855
|
+
i.crossDomain || e["X-Requested-With"] || (e["X-Requested-With"] = "XMLHttpRequest"),
|
|
3856
|
+
e)
|
|
3857
|
+
r.setRequestHeader(n, e[n]);
|
|
3858
|
+
o = function(e) {
|
|
3859
|
+
return function() {
|
|
3860
|
+
o && (o = a = r.onload = r.onerror = r.onabort = r.ontimeout = r.onreadystatechange = null,
|
|
3861
|
+
"abort" === e ? r.abort() : "error" === e ? "number" != typeof r.status ? t(0, "error") : t(r.status, r.statusText) : t(Ut[r.status] || r.status, r.statusText, "text" !== (r.responseType || "text") || "string" != typeof r.responseText ? {
|
|
3862
|
+
binary: r.response
|
|
3863
|
+
} : {
|
|
3864
|
+
text: r.responseText
|
|
3865
|
+
}, r.getAllResponseHeaders()))
|
|
3866
|
+
}
|
|
3867
|
+
}
|
|
3868
|
+
,
|
|
3869
|
+
r.onload = o(),
|
|
3870
|
+
a = r.onerror = r.ontimeout = o("error"),
|
|
3871
|
+
void 0 !== r.onabort ? r.onabort = a : r.onreadystatechange = function() {
|
|
3872
|
+
4 === r.readyState && C.setTimeout(function() {
|
|
3873
|
+
o && a()
|
|
3874
|
+
})
|
|
3875
|
+
}
|
|
3876
|
+
,
|
|
3877
|
+
o = o("abort");
|
|
3878
|
+
try {
|
|
3879
|
+
r.send(i.hasContent && i.data || null)
|
|
3880
|
+
} catch (e) {
|
|
3881
|
+
if (o)
|
|
3882
|
+
throw e
|
|
3883
|
+
}
|
|
3884
|
+
},
|
|
3885
|
+
abort: function() {
|
|
3886
|
+
o && o()
|
|
3887
|
+
}
|
|
3888
|
+
}
|
|
3889
|
+
}),
|
|
3890
|
+
k.ajaxPrefilter(function(e) {
|
|
3891
|
+
e.crossDomain && (e.contents.script = !1)
|
|
3892
|
+
}),
|
|
3893
|
+
k.ajaxSetup({
|
|
3894
|
+
accepts: {
|
|
3895
|
+
script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
|
|
3896
|
+
},
|
|
3897
|
+
contents: {
|
|
3898
|
+
script: /\b(?:java|ecma)script\b/
|
|
3899
|
+
},
|
|
3900
|
+
converters: {
|
|
3901
|
+
"text script": function(e) {
|
|
3902
|
+
return k.globalEval(e),
|
|
3903
|
+
e
|
|
3904
|
+
}
|
|
3905
|
+
}
|
|
3906
|
+
}),
|
|
3907
|
+
k.ajaxPrefilter("script", function(e) {
|
|
3908
|
+
void 0 === e.cache && (e.cache = !1),
|
|
3909
|
+
e.crossDomain && (e.type = "GET")
|
|
3910
|
+
}),
|
|
3911
|
+
k.ajaxTransport("script", function(n) {
|
|
3912
|
+
var r, i;
|
|
3913
|
+
if (n.crossDomain || n.scriptAttrs)
|
|
3914
|
+
return {
|
|
3915
|
+
send: function(e, t) {
|
|
3916
|
+
r = k("<script>").attr(n.scriptAttrs || {}).prop({
|
|
3917
|
+
charset: n.scriptCharset,
|
|
3918
|
+
src: n.url
|
|
3919
|
+
}).on("load error", i = function(e) {
|
|
3920
|
+
r.remove(),
|
|
3921
|
+
i = null,
|
|
3922
|
+
e && t("error" === e.type ? 404 : 200, e.type)
|
|
3923
|
+
}
|
|
3924
|
+
),
|
|
3925
|
+
E.head.appendChild(r[0])
|
|
3926
|
+
},
|
|
3927
|
+
abort: function() {
|
|
3928
|
+
i && i()
|
|
3929
|
+
}
|
|
3930
|
+
}
|
|
3931
|
+
});
|
|
3932
|
+
var Vt, Gt = [], Yt = /(=)\?(?=&|$)|\?\?/;
|
|
3933
|
+
k.ajaxSetup({
|
|
3934
|
+
jsonp: "callback",
|
|
3935
|
+
jsonpCallback: function() {
|
|
3936
|
+
var e = Gt.pop() || k.expando + "_" + kt++;
|
|
3937
|
+
return this[e] = !0,
|
|
3938
|
+
e
|
|
3939
|
+
}
|
|
3940
|
+
}),
|
|
3941
|
+
k.ajaxPrefilter("json jsonp", function(e, t, n) {
|
|
3942
|
+
var r, i, o, a = !1 !== e.jsonp && (Yt.test(e.url) ? "url" : "string" == typeof e.data && 0 === (e.contentType || "").indexOf("application/x-www-form-urlencoded") && Yt.test(e.data) && "data");
|
|
3943
|
+
if (a || "jsonp" === e.dataTypes[0])
|
|
3944
|
+
return r = e.jsonpCallback = m(e.jsonpCallback) ? e.jsonpCallback() : e.jsonpCallback,
|
|
3945
|
+
a ? e[a] = e[a].replace(Yt, "$1" + r) : !1 !== e.jsonp && (e.url += (St.test(e.url) ? "&" : "?") + e.jsonp + "=" + r),
|
|
3946
|
+
e.converters["script json"] = function() {
|
|
3947
|
+
return o || k.error(r + " was not called"),
|
|
3948
|
+
o[0]
|
|
3949
|
+
}
|
|
3950
|
+
,
|
|
3951
|
+
e.dataTypes[0] = "json",
|
|
3952
|
+
i = C[r],
|
|
3953
|
+
C[r] = function() {
|
|
3954
|
+
o = arguments
|
|
3955
|
+
}
|
|
3956
|
+
,
|
|
3957
|
+
n.always(function() {
|
|
3958
|
+
void 0 === i ? k(C).removeProp(r) : C[r] = i,
|
|
3959
|
+
e[r] && (e.jsonpCallback = t.jsonpCallback,
|
|
3960
|
+
Gt.push(r)),
|
|
3961
|
+
o && m(i) && i(o[0]),
|
|
3962
|
+
o = i = void 0
|
|
3963
|
+
}),
|
|
3964
|
+
"script"
|
|
3965
|
+
}),
|
|
3966
|
+
y.createHTMLDocument = ((Vt = E.implementation.createHTMLDocument("").body).innerHTML = "<form></form><form></form>",
|
|
3967
|
+
2 === Vt.childNodes.length),
|
|
3968
|
+
k.parseHTML = function(e, t, n) {
|
|
3969
|
+
return "string" != typeof e ? [] : ("boolean" == typeof t && (n = t,
|
|
3970
|
+
t = !1),
|
|
3971
|
+
t || (y.createHTMLDocument ? ((r = (t = E.implementation.createHTMLDocument("")).createElement("base")).href = E.location.href,
|
|
3972
|
+
t.head.appendChild(r)) : t = E),
|
|
3973
|
+
o = !n && [],
|
|
3974
|
+
(i = D.exec(e)) ? [t.createElement(i[1])] : (i = we([e], t, o),
|
|
3975
|
+
o && o.length && k(o).remove(),
|
|
3976
|
+
k.merge([], i.childNodes)));
|
|
3977
|
+
var r, i, o
|
|
3978
|
+
}
|
|
3979
|
+
,
|
|
3980
|
+
k.fn.load = function(e, t, n) {
|
|
3981
|
+
var r, i, o, a = this, s = e.indexOf(" ");
|
|
3982
|
+
return -1 < s && (r = mt(e.slice(s)),
|
|
3983
|
+
e = e.slice(0, s)),
|
|
3984
|
+
m(t) ? (n = t,
|
|
3985
|
+
t = void 0) : t && "object" == typeof t && (i = "POST"),
|
|
3986
|
+
0 < a.length && k.ajax({
|
|
3987
|
+
url: e,
|
|
3988
|
+
type: i || "GET",
|
|
3989
|
+
dataType: "html",
|
|
3990
|
+
data: t
|
|
3991
|
+
}).done(function(e) {
|
|
3992
|
+
o = arguments,
|
|
3993
|
+
a.html(r ? k("<div>").append(k.parseHTML(e)).find(r) : e)
|
|
3994
|
+
}).always(n && function(e, t) {
|
|
3995
|
+
a.each(function() {
|
|
3996
|
+
n.apply(this, o || [e.responseText, t, e])
|
|
3997
|
+
})
|
|
3998
|
+
}
|
|
3999
|
+
),
|
|
4000
|
+
this
|
|
4001
|
+
}
|
|
4002
|
+
,
|
|
4003
|
+
k.each(["ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend"], function(e, t) {
|
|
4004
|
+
k.fn[t] = function(e) {
|
|
4005
|
+
return this.on(t, e)
|
|
4006
|
+
}
|
|
4007
|
+
}),
|
|
4008
|
+
k.expr.pseudos.animated = function(t) {
|
|
4009
|
+
return k.grep(k.timers, function(e) {
|
|
4010
|
+
return t === e.elem
|
|
4011
|
+
}).length
|
|
4012
|
+
}
|
|
4013
|
+
,
|
|
4014
|
+
k.offset = {
|
|
4015
|
+
setOffset: function(e, t, n) {
|
|
4016
|
+
var r, i, o, a, s, u, l = k.css(e, "position"), c = k(e), f = {};
|
|
4017
|
+
"static" === l && (e.style.position = "relative"),
|
|
4018
|
+
s = c.offset(),
|
|
4019
|
+
o = k.css(e, "top"),
|
|
4020
|
+
u = k.css(e, "left"),
|
|
4021
|
+
("absolute" === l || "fixed" === l) && -1 < (o + u).indexOf("auto") ? (a = (r = c.position()).top,
|
|
4022
|
+
i = r.left) : (a = parseFloat(o) || 0,
|
|
4023
|
+
i = parseFloat(u) || 0),
|
|
4024
|
+
m(t) && (t = t.call(e, n, k.extend({}, s))),
|
|
4025
|
+
null != t.top && (f.top = t.top - s.top + a),
|
|
4026
|
+
null != t.left && (f.left = t.left - s.left + i),
|
|
4027
|
+
"using"in t ? t.using.call(e, f) : c.css(f)
|
|
4028
|
+
}
|
|
4029
|
+
},
|
|
4030
|
+
k.fn.extend({
|
|
4031
|
+
offset: function(t) {
|
|
4032
|
+
if (arguments.length)
|
|
4033
|
+
return void 0 === t ? this : this.each(function(e) {
|
|
4034
|
+
k.offset.setOffset(this, t, e)
|
|
4035
|
+
});
|
|
4036
|
+
var e, n, r = this[0];
|
|
4037
|
+
return r ? r.getClientRects().length ? (e = r.getBoundingClientRect(),
|
|
4038
|
+
n = r.ownerDocument.defaultView,
|
|
4039
|
+
{
|
|
4040
|
+
top: e.top + n.pageYOffset,
|
|
4041
|
+
left: e.left + n.pageXOffset
|
|
4042
|
+
}) : {
|
|
4043
|
+
top: 0,
|
|
4044
|
+
left: 0
|
|
4045
|
+
} : void 0
|
|
4046
|
+
},
|
|
4047
|
+
position: function() {
|
|
4048
|
+
if (this[0]) {
|
|
4049
|
+
var e, t, n, r = this[0], i = {
|
|
4050
|
+
top: 0,
|
|
4051
|
+
left: 0
|
|
4052
|
+
};
|
|
4053
|
+
if ("fixed" === k.css(r, "position"))
|
|
4054
|
+
t = r.getBoundingClientRect();
|
|
4055
|
+
else {
|
|
4056
|
+
t = this.offset(),
|
|
4057
|
+
n = r.ownerDocument,
|
|
4058
|
+
e = r.offsetParent || n.documentElement;
|
|
4059
|
+
while (e && (e === n.body || e === n.documentElement) && "static" === k.css(e, "position"))
|
|
4060
|
+
e = e.parentNode;
|
|
4061
|
+
e && e !== r && 1 === e.nodeType && ((i = k(e).offset()).top += k.css(e, "borderTopWidth", !0),
|
|
4062
|
+
i.left += k.css(e, "borderLeftWidth", !0))
|
|
4063
|
+
}
|
|
4064
|
+
return {
|
|
4065
|
+
top: t.top - i.top - k.css(r, "marginTop", !0),
|
|
4066
|
+
left: t.left - i.left - k.css(r, "marginLeft", !0)
|
|
4067
|
+
}
|
|
4068
|
+
}
|
|
4069
|
+
},
|
|
4070
|
+
offsetParent: function() {
|
|
4071
|
+
return this.map(function() {
|
|
4072
|
+
var e = this.offsetParent;
|
|
4073
|
+
while (e && "static" === k.css(e, "position"))
|
|
4074
|
+
e = e.offsetParent;
|
|
4075
|
+
return e || ie
|
|
4076
|
+
})
|
|
4077
|
+
}
|
|
4078
|
+
}),
|
|
4079
|
+
k.each({
|
|
4080
|
+
scrollLeft: "pageXOffset",
|
|
4081
|
+
scrollTop: "pageYOffset"
|
|
4082
|
+
}, function(t, i) {
|
|
4083
|
+
var o = "pageYOffset" === i;
|
|
4084
|
+
k.fn[t] = function(e) {
|
|
4085
|
+
return _(this, function(e, t, n) {
|
|
4086
|
+
var r;
|
|
4087
|
+
if (x(e) ? r = e : 9 === e.nodeType && (r = e.defaultView),
|
|
4088
|
+
void 0 === n)
|
|
4089
|
+
return r ? r[i] : e[t];
|
|
4090
|
+
r ? r.scrollTo(o ? r.pageXOffset : n, o ? n : r.pageYOffset) : e[t] = n
|
|
4091
|
+
}, t, e, arguments.length)
|
|
4092
|
+
}
|
|
4093
|
+
}),
|
|
4094
|
+
k.each(["top", "left"], function(e, n) {
|
|
4095
|
+
k.cssHooks[n] = ze(y.pixelPosition, function(e, t) {
|
|
4096
|
+
if (t)
|
|
4097
|
+
return t = _e(e, n),
|
|
4098
|
+
$e.test(t) ? k(e).position()[n] + "px" : t
|
|
4099
|
+
})
|
|
4100
|
+
}),
|
|
4101
|
+
k.each({
|
|
4102
|
+
Height: "height",
|
|
4103
|
+
Width: "width"
|
|
4104
|
+
}, function(a, s) {
|
|
4105
|
+
k.each({
|
|
4106
|
+
padding: "inner" + a,
|
|
4107
|
+
content: s,
|
|
4108
|
+
"": "outer" + a
|
|
4109
|
+
}, function(r, o) {
|
|
4110
|
+
k.fn[o] = function(e, t) {
|
|
4111
|
+
var n = arguments.length && (r || "boolean" != typeof e)
|
|
4112
|
+
, i = r || (!0 === e || !0 === t ? "margin" : "border");
|
|
4113
|
+
return _(this, function(e, t, n) {
|
|
4114
|
+
var r;
|
|
4115
|
+
return x(e) ? 0 === o.indexOf("outer") ? e["inner" + a] : e.document.documentElement["client" + a] : 9 === e.nodeType ? (r = e.documentElement,
|
|
4116
|
+
Math.max(e.body["scroll" + a], r["scroll" + a], e.body["offset" + a], r["offset" + a], r["client" + a])) : void 0 === n ? k.css(e, t, i) : k.style(e, t, n, i)
|
|
4117
|
+
}, s, n ? e : void 0, n)
|
|
4118
|
+
}
|
|
4119
|
+
})
|
|
4120
|
+
}),
|
|
4121
|
+
k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "), function(e, n) {
|
|
4122
|
+
k.fn[n] = function(e, t) {
|
|
4123
|
+
return 0 < arguments.length ? this.on(n, null, e, t) : this.trigger(n)
|
|
4124
|
+
}
|
|
4125
|
+
}),
|
|
4126
|
+
k.fn.extend({
|
|
4127
|
+
hover: function(e, t) {
|
|
4128
|
+
return this.mouseenter(e).mouseleave(t || e)
|
|
4129
|
+
}
|
|
4130
|
+
}),
|
|
4131
|
+
k.fn.extend({
|
|
4132
|
+
bind: function(e, t, n) {
|
|
4133
|
+
return this.on(e, null, t, n)
|
|
4134
|
+
},
|
|
4135
|
+
unbind: function(e, t) {
|
|
4136
|
+
return this.off(e, null, t)
|
|
4137
|
+
},
|
|
4138
|
+
delegate: function(e, t, n, r) {
|
|
4139
|
+
return this.on(t, e, n, r)
|
|
4140
|
+
},
|
|
4141
|
+
undelegate: function(e, t, n) {
|
|
4142
|
+
return 1 === arguments.length ? this.off(e, "**") : this.off(t, e || "**", n)
|
|
4143
|
+
}
|
|
4144
|
+
}),
|
|
4145
|
+
k.proxy = function(e, t) {
|
|
4146
|
+
var n, r, i;
|
|
4147
|
+
if ("string" == typeof t && (n = e[t],
|
|
4148
|
+
t = e,
|
|
4149
|
+
e = n),
|
|
4150
|
+
m(e))
|
|
4151
|
+
return r = s.call(arguments, 2),
|
|
4152
|
+
(i = function() {
|
|
4153
|
+
return e.apply(t || this, r.concat(s.call(arguments)))
|
|
4154
|
+
}
|
|
4155
|
+
).guid = e.guid = e.guid || k.guid++,
|
|
4156
|
+
i
|
|
4157
|
+
}
|
|
4158
|
+
,
|
|
4159
|
+
k.holdReady = function(e) {
|
|
4160
|
+
e ? k.readyWait++ : k.ready(!0)
|
|
4161
|
+
}
|
|
4162
|
+
,
|
|
4163
|
+
k.isArray = Array.isArray,
|
|
4164
|
+
k.parseJSON = JSON.parse,
|
|
4165
|
+
k.nodeName = A,
|
|
4166
|
+
k.isFunction = m,
|
|
4167
|
+
k.isWindow = x,
|
|
4168
|
+
k.camelCase = V,
|
|
4169
|
+
k.type = w,
|
|
4170
|
+
k.now = Date.now,
|
|
4171
|
+
k.isNumeric = function(e) {
|
|
4172
|
+
var t = k.type(e);
|
|
4173
|
+
return ("number" === t || "string" === t) && !isNaN(e - parseFloat(e))
|
|
4174
|
+
}
|
|
4175
|
+
,
|
|
4176
|
+
"function" == typeof define && define.amd && define("jquery", [], function() {
|
|
4177
|
+
return k
|
|
4178
|
+
});
|
|
4179
|
+
var Qt = C.jQuery
|
|
4180
|
+
, Jt = C.$;
|
|
4181
|
+
return k.noConflict = function(e) {
|
|
4182
|
+
return C.$ === k && (C.$ = Jt),
|
|
4183
|
+
e && C.jQuery === k && (C.jQuery = Qt),
|
|
4184
|
+
k
|
|
4185
|
+
}
|
|
4186
|
+
,
|
|
4187
|
+
e || (C.jQuery = C.$ = k),
|
|
4188
|
+
k
|
|
4189
|
+
});
|