diff --git a/PDA/PDA/pages.json b/PDA/PDA/pages.json
index d7a734f..ea60f9f 100644
--- a/PDA/PDA/pages.json
+++ b/PDA/PDA/pages.json
@@ -75,6 +75,13 @@
{
"navigationBarTitleText" : "智慧物流系统-任务管理"
}
+ },
+ {
+ "path" : "pages/allBindQuery/allBindQuery",
+ "style" :
+ {
+ "navigationBarTitleText" : "智慧物流系统-厂内物料查询"
+ }
}
],
"globalStyle": {
diff --git a/PDA/PDA/pages/allBindQuery/allBindQuery.vue b/PDA/PDA/pages/allBindQuery/allBindQuery.vue
new file mode 100644
index 0000000..4e43c59
--- /dev/null
+++ b/PDA/PDA/pages/allBindQuery/allBindQuery.vue
@@ -0,0 +1,408 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 记录数:[{{recordCount}}]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PDA/PDA/pages/index/index.vue b/PDA/PDA/pages/index/index.vue
index 2c9fa06..321e416 100644
--- a/PDA/PDA/pages/index/index.vue
+++ b/PDA/PDA/pages/index/index.vue
@@ -35,12 +35,18 @@
-
+
+
+
- {{serverIPAndPort}}
- V1.1
+ {{serverIPAndPort}}
+ {{version}}
-
+
+
+
+
+
@@ -48,7 +54,7 @@
import {
recive
} from '../../src/libs/Broadcast.js';
-
+
import {
unregisterReceiver
} from '../../src/libs/Broadcast.js';
@@ -65,6 +71,7 @@
saveConfig
} from '@/config.js';
+
export default {
data() {
return {
@@ -73,10 +80,73 @@
userName: '',
passWord: '',
serverIPAndPort: '',
+ version: 'V1.3',
+ downloadProgress: 0, // 下载进度
+ showProgressBar: false, // 控制进度条是否显示
}
},
onShow: function() {
this.serverIPAndPort = getServerIPAndPort();
+ if(this.showProgressBar)
+ {
+ return;
+ }
+ //获取最新版的APP接口
+ uni.request({
+ url: 'http://' + this.serverIPAndPort + '/fileDownload/getLatestAppVersion', // 请求的接口地址
+ method: 'GET ', // 设置请求方式为 POST
+ header: {
+ 'Content-Type': 'application/json', // 如果需要以JSON格式发送数据
+ },
+ success: (res) => {
+ // 请求成功的回调函数
+ if (res.statusCode === 200) {
+ //接口返回数据为200 表示获取成功!
+ if (res.data.code == 200) {
+ if (this.version != res.data.data.version)
+
+ uni.showModal({
+ title: '版本更新',
+ content: `发现新版本 ${res.data.data.version},是否立即更新?`,
+ success: (res1) => {
+ if (res1.confirm) {
+ var downloadUrl = 'http://' + this.serverIPAndPort +
+ '/fileDownload/downloadApp?fileName=' + res.data
+ .data.appName;
+ // 用户点击了确定,开始下载
+ this.downloadApk(downloadUrl);
+ } else if (res.cancel) {
+ // 用户点击了取消
+ console.log('用户取消了更新');
+ }
+ }
+ });
+ // uni.showToast({
+ // title: '获取到版本号' + res.data.data.version + '\r\n' + '当前版本' + this.version,
+ // icon: 'none',
+ // duration: 2000
+ // });
+ //拼凑下载地址
+
+ } else {
+
+ }
+ } else {
+
+ }
+ },
+ fail: (err) => {
+ // 请求失败的回调函数
+ uni.showToast({
+ title: '请求失败:' + '请检查网络连接',
+ icon: 'none',
+ duration: 2000
+ });
+ },
+ complete: (event) => {
+
+ }
+ });
},
onLoad: function() {
//加载上一次的用户名
@@ -88,6 +158,74 @@
unregisterReceiver()
},
methods: {
+ //下载APK文件
+ downloadApk(url) {
+ const task = uni.downloadFile({
+ url: url,
+ success: (res) => {
+ if (res.statusCode === 200) {
+ const tempFilePath = res.tempFilePath;
+ this.installApk(tempFilePath);
+ } else {
+ uni.showToast({
+ title: '下载失败',
+ icon: 'none'
+ });
+ }
+ },
+ fail: (err) => {
+ console.error('下载APK失败', err);
+ uni.showToast({
+ title: '下载失败',
+ icon: 'none'
+ });
+ }
+ });
+ this.showProgressBar = true;
+ // 监听下载进度
+ task.onProgressUpdate((res) => {
+ console.log('下载进度', res.progress);
+ // 更新下载进度
+ this.downloadProgress = res.progress;
+ });
+ },
+ //安装APK文件
+ installApk(filePath) {
+ if (uni.getSystemInfoSync().platform === 'android') {
+ console.log(plus);
+ if (plus) {
+ uni.showToast({
+ title: '当前平台不支持安装!',
+ icon: 'none'
+ });
+ }
+
+ console.log(plus);
+ console.log(plus);
+ plus.runtime.install(filePath, {}, (e) => {
+ if (e.code === 0) {
+ // 安装成功
+ uni.showToast({
+ title: '安装成功',
+ icon: 'success'
+ });
+ // 可以在这里退出应用或跳转到其他页面
+ } else {
+ // 安装失败
+ uni.showToast({
+ title: '安装失败:' + e.message,
+ icon: 'none'
+ });
+ }
+ });
+ } else {
+ uni.showToast({
+ title: '当前平台不支持直接安装APK',
+ icon: 'none'
+ });
+ }
+ },
+
login() {
var serverIPAndPort = getServerIPAndPort();
console.log('http://' + serverIPAndPort + '/user/userLogin');
@@ -115,13 +253,13 @@
//保存本次登录使用的用户名 密码
saveConfig('userName', this.userName);
saveConfig('passWord', this.passWord);
-
+
console.log(res.data.data.getRoles[0].authNames);
saveConfig('roleName', res.data.data.getRoles[0].authNames);
-
+
//重定向 直接就不能返回这个页面了
uni.redirectTo({
- url: '/pages/main/main'
+ url: '/pages/main/main'
});
} else {
uni.showToast({
diff --git a/PDA/PDA/pages/main/main.vue b/PDA/PDA/pages/main/main.vue
index e9997a3..c692ed9 100644
--- a/PDA/PDA/pages/main/main.vue
+++ b/PDA/PDA/pages/main/main.vue
@@ -78,7 +78,12 @@
-
+
+
+
+
+ 厂内物料查询
+
@@ -133,6 +138,9 @@
case '货架位置绑定解绑':
url = '../shelfLocationBindUnbind/shelfLocationBindUnbind';
break;
+ case '厂内物料查询':
+ url = '../allBindQuery/allBindQuery';
+ break;
default:
url = ''; // 默认情况,确保有一个有效的处理
}
diff --git a/PDA/PDA/static/allBindQuery.png b/PDA/PDA/static/allBindQuery.png
new file mode 100644
index 0000000..48b6664
Binary files /dev/null and b/PDA/PDA/static/allBindQuery.png differ
diff --git a/PDA/PDA/unpackage/dist/dev/app-plus/app-config-service.js b/PDA/PDA/unpackage/dist/dev/app-plus/app-config-service.js
index f29e061..465c67a 100644
--- a/PDA/PDA/unpackage/dist/dev/app-plus/app-config-service.js
+++ b/PDA/PDA/unpackage/dist/dev/app-plus/app-config-service.js
@@ -2,7 +2,7 @@
;(function(){
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"智慧物流系统-移动端","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"智慧物流","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.45","entryPagePath":"pages/index/index","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}};
- const __uniRoutes = [{"path":"pages/index/index","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"titleText":"智慧物流系统-登录","type":"default"},"isNVue":false}},{"path":"pages/config/config","meta":{"navigationBar":{"titleText":"智慧物流系统-用户配置","type":"default"},"isNVue":false}},{"path":"pages/main/main","meta":{"navigationBar":{"titleText":"智慧物流系统-主页","type":"default"},"isNVue":false}},{"path":"pages/bind/bind","meta":{"navigationBar":{"titleText":"智慧物流系统-物料绑定","type":"default"},"isNVue":false}},{"path":"pages/bindSelectMat/bindSelectMat","meta":{"navigationBar":{"titleText":"智慧物流系统-物料绑定选择物料","type":"default"},"isNVue":false}},{"path":"pages/queryBindList/queryBindList","meta":{"navigationBar":{"titleText":"智慧物流系统-绑定查询","type":"default"},"isNVue":false}},{"path":"pages/stockTaking/stockTaking","meta":{"navigationBar":{"titleText":"智慧物流系统-库存盘点","type":"default"},"isNVue":false}},{"path":"pages/shelfLocationBindUnbind/shelfLocationBindUnbind","meta":{"navigationBar":{"titleText":"智慧物流系统-货架位置绑定解绑","type":"default"},"isNVue":false}},{"path":"pages/productionLineCallIn/productionLineCallIn","meta":{"navigationBar":{"titleText":"智慧物流系统-产线呼叫","type":"default"},"isNVue":false}},{"path":"pages/productionLineCallOut/productionLineCallOut","meta":{"navigationBar":{"titleText":"智慧物流系统-货架送回","type":"default"},"isNVue":false}},{"path":"pages/agvTasks/agvTasks","meta":{"navigationBar":{"titleText":"智慧物流系统-任务管理","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
+ const __uniRoutes = [{"path":"pages/index/index","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"titleText":"智慧物流系统-登录","type":"default"},"isNVue":false}},{"path":"pages/config/config","meta":{"navigationBar":{"titleText":"智慧物流系统-用户配置","type":"default"},"isNVue":false}},{"path":"pages/main/main","meta":{"navigationBar":{"titleText":"智慧物流系统-主页","type":"default"},"isNVue":false}},{"path":"pages/bind/bind","meta":{"navigationBar":{"titleText":"智慧物流系统-物料绑定","type":"default"},"isNVue":false}},{"path":"pages/bindSelectMat/bindSelectMat","meta":{"navigationBar":{"titleText":"智慧物流系统-物料绑定选择物料","type":"default"},"isNVue":false}},{"path":"pages/queryBindList/queryBindList","meta":{"navigationBar":{"titleText":"智慧物流系统-绑定查询","type":"default"},"isNVue":false}},{"path":"pages/stockTaking/stockTaking","meta":{"navigationBar":{"titleText":"智慧物流系统-库存盘点","type":"default"},"isNVue":false}},{"path":"pages/shelfLocationBindUnbind/shelfLocationBindUnbind","meta":{"navigationBar":{"titleText":"智慧物流系统-货架位置绑定解绑","type":"default"},"isNVue":false}},{"path":"pages/productionLineCallIn/productionLineCallIn","meta":{"navigationBar":{"titleText":"智慧物流系统-产线呼叫","type":"default"},"isNVue":false}},{"path":"pages/productionLineCallOut/productionLineCallOut","meta":{"navigationBar":{"titleText":"智慧物流系统-货架送回","type":"default"},"isNVue":false}},{"path":"pages/agvTasks/agvTasks","meta":{"navigationBar":{"titleText":"智慧物流系统-任务管理","type":"default"},"isNVue":false}},{"path":"pages/allBindQuery/allBindQuery","meta":{"navigationBar":{"titleText":"智慧物流系统-厂内物料查询","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
__uniConfig.styles=[];//styles
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
diff --git a/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js b/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js
index e9c1a9f..5b72fbe 100644
--- a/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js
+++ b/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js
@@ -159,18 +159,64 @@ if (uni.restoreGlobal) {
}
return target;
};
- const _sfc_main$h = {
+ const _sfc_main$i = {
data() {
return {
title: "登录",
showPassword: true,
userName: "",
passWord: "",
- serverIPAndPort: ""
+ serverIPAndPort: "",
+ version: "V1.3",
+ downloadProgress: 0,
+ // 下载进度
+ showProgressBar: false
+ // 控制进度条是否显示
};
},
onShow: function() {
this.serverIPAndPort = getServerIPAndPort();
+ if (this.showProgressBar) {
+ return;
+ }
+ uni.request({
+ url: "http://" + this.serverIPAndPort + "/fileDownload/getLatestAppVersion",
+ // 请求的接口地址
+ method: "GET ",
+ // 设置请求方式为 POST
+ header: {
+ "Content-Type": "application/json"
+ // 如果需要以JSON格式发送数据
+ },
+ success: (res) => {
+ if (res.statusCode === 200) {
+ if (res.data.code == 200) {
+ if (this.version != res.data.data.version)
+ uni.showModal({
+ title: "版本更新",
+ content: `发现新版本 ${res.data.data.version},是否立即更新?`,
+ success: (res1) => {
+ if (res1.confirm) {
+ var downloadUrl = "http://" + this.serverIPAndPort + "/fileDownload/downloadApp?fileName=" + res.data.data.appName;
+ this.downloadApk(downloadUrl);
+ } else if (res.cancel) {
+ formatAppLog("log", "at pages/index/index.vue:120", "用户取消了更新");
+ }
+ }
+ });
+ }
+ }
+ },
+ fail: (err) => {
+ uni.showToast({
+ title: "请求失败:请检查网络连接",
+ icon: "none",
+ duration: 2e3
+ });
+ },
+ complete: (event) => {
+ }
+ });
},
onLoad: function() {
this.userName = getConfig("userName", "admin");
@@ -180,9 +226,70 @@ if (uni.restoreGlobal) {
unregisterReceiver();
},
methods: {
+ //下载APK文件
+ downloadApk(url) {
+ const task = uni.downloadFile({
+ url,
+ success: (res) => {
+ if (res.statusCode === 200) {
+ const tempFilePath = res.tempFilePath;
+ this.installApk(tempFilePath);
+ } else {
+ uni.showToast({
+ title: "下载失败",
+ icon: "none"
+ });
+ }
+ },
+ fail: (err) => {
+ formatAppLog("error", "at pages/index/index.vue:177", "下载APK失败", err);
+ uni.showToast({
+ title: "下载失败",
+ icon: "none"
+ });
+ }
+ });
+ this.showProgressBar = true;
+ task.onProgressUpdate((res) => {
+ formatAppLog("log", "at pages/index/index.vue:187", "下载进度", res.progress);
+ this.downloadProgress = res.progress;
+ });
+ },
+ //安装APK文件
+ installApk(filePath) {
+ if (uni.getSystemInfoSync().platform === "android") {
+ formatAppLog("log", "at pages/index/index.vue:195", plus);
+ if (plus) {
+ uni.showToast({
+ title: "当前平台不支持安装!",
+ icon: "none"
+ });
+ }
+ formatAppLog("log", "at pages/index/index.vue:203", plus);
+ formatAppLog("log", "at pages/index/index.vue:204", plus);
+ plus.runtime.install(filePath, {}, (e) => {
+ if (e.code === 0) {
+ uni.showToast({
+ title: "安装成功",
+ icon: "success"
+ });
+ } else {
+ uni.showToast({
+ title: "安装失败:" + e.message,
+ icon: "none"
+ });
+ }
+ });
+ } else {
+ uni.showToast({
+ title: "当前平台不支持直接安装APK",
+ icon: "none"
+ });
+ }
+ },
login() {
var serverIPAndPort = getServerIPAndPort();
- formatAppLog("log", "at pages/index/index.vue:93", "http://" + serverIPAndPort + "/user/userLogin");
+ formatAppLog("log", "at pages/index/index.vue:231", "http://" + serverIPAndPort + "/user/userLogin");
uni.request({
url: "http://" + serverIPAndPort + "/user/userLogin",
// 请求的接口地址
@@ -207,7 +314,7 @@ if (uni.restoreGlobal) {
});
saveConfig("userName", this.userName);
saveConfig("passWord", this.passWord);
- formatAppLog("log", "at pages/index/index.vue:119", res.data.data.getRoles[0].authNames);
+ formatAppLog("log", "at pages/index/index.vue:257", res.data.data.getRoles[0].authNames);
saveConfig("roleName", res.data.data.getRoles[0].authNames);
uni.redirectTo({
url: "/pages/main/main"
@@ -231,13 +338,13 @@ if (uni.restoreGlobal) {
});
},
complete: (event) => {
- formatAppLog("log", "at pages/index/index.vue:148", "请求完成", event);
+ formatAppLog("log", "at pages/index/index.vue:286", "请求完成", event);
}
});
}
}
};
- function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
vue.createElementVNode("navigator", {
url: "../config/config",
@@ -320,12 +427,28 @@ if (uni.restoreGlobal) {
1
/* TEXT */
),
- vue.createElementVNode("view", null, "V1.1")
- ])
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString($data.version),
+ 1
+ /* TEXT */
+ )
+ ]),
+ $data.showProgressBar ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 0,
+ style: { "margin-top": "20rpx", "margin-bottom": "20rpx", "text-align": "center" }
+ }, [
+ vue.createElementVNode("progress", {
+ percent: $data.downloadProgress,
+ "show-info": "",
+ "stroke-width": "10"
+ }, null, 8, ["percent"])
+ ])) : vue.createCommentVNode("v-if", true)
]);
}
- const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$g], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/index/index.vue"]]);
- const _sfc_main$g = {
+ const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["render", _sfc_render$h], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/index/index.vue"]]);
+ const _sfc_main$h = {
data() {
return {
serverIP: "",
@@ -347,7 +470,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [
vue.createElementVNode("view", null, [
vue.createElementVNode("label", null, "服务器IP:"),
@@ -384,7 +507,7 @@ if (uni.restoreGlobal) {
}, "保存配置")
]);
}
- const PagesConfigConfig = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["render", _sfc_render$f], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/config/config.vue"]]);
+ const PagesConfigConfig = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$g], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/config/config.vue"]]);
const _imports_0$1 = "/static/logOut.png";
const _imports_1 = "/static/bind.png";
const _imports_2 = "/static/bindQuery.png";
@@ -393,7 +516,8 @@ if (uni.restoreGlobal) {
const _imports_5 = "/static/callOut.png";
const _imports_6 = "/static/task.png";
const _imports_7 = "/static/shelfLocation.png";
- const _sfc_main$f = {
+ const _imports_8 = "/static/allBindQuery.png";
+ const _sfc_main$g = {
data() {
return {
hasPermission: true
@@ -403,8 +527,8 @@ if (uni.restoreGlobal) {
handleNavigatorTap: function(pageName) {
var roleName = getConfig("roleName", "");
var requiredRole = "PDA" + pageName;
- formatAppLog("log", "at pages/main/main.vue:107", "roleName:", roleName);
- formatAppLog("log", "at pages/main/main.vue:108", "requiredRole:", requiredRole);
+ formatAppLog("log", "at pages/main/main.vue:112", "roleName:", roleName);
+ formatAppLog("log", "at pages/main/main.vue:113", "requiredRole:", requiredRole);
this.hasPermission = roleName.includes(requiredRole);
let url = "";
switch (pageName) {
@@ -429,6 +553,9 @@ if (uni.restoreGlobal) {
case "货架位置绑定解绑":
url = "../shelfLocationBindUnbind/shelfLocationBindUnbind";
break;
+ case "厂内物料查询":
+ url = "../allBindQuery/allBindQuery";
+ break;
default:
url = "";
}
@@ -446,7 +573,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
vue.createElementVNode("view", null, [
vue.createElementVNode("navigator", {
@@ -615,7 +742,23 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", {
class: "uni-flex uni-column",
style: { "flex": "5" }
- }),
+ }, [
+ vue.createElementVNode("view", {
+ "hover-class": "navigator-hover",
+ onClick: _cache[7] || (_cache[7] = ($event) => $options.handleNavigatorTap("厂内物料查询"))
+ }, [
+ vue.createElementVNode("view", {
+ class: "uni-flex uni-row",
+ style: { "-webkit-justify-content": "center", "justify-content": "center" }
+ }, [
+ vue.createElementVNode("image", {
+ class: "function-image",
+ src: _imports_8
+ })
+ ]),
+ vue.createElementVNode("view", { class: "function-text" }, "厂内物料查询")
+ ])
+ ]),
vue.createElementVNode("view", {
class: "uni-flex uni-column",
style: { "flex": "5" }
@@ -624,8 +767,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesMainMain = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$e], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/main/main.vue"]]);
- const _sfc_main$e = {
+ const PagesMainMain = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["render", _sfc_render$f], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/main/main.vue"]]);
+ const _sfc_main$f = {
data() {
return {
visible: false,
@@ -734,7 +877,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
return $data.visible ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
class: "popup-container"
@@ -772,9 +915,9 @@ if (uni.restoreGlobal) {
}, "关 闭")
])) : vue.createCommentVNode("v-if", true);
}
- const PagesBindSelectMatBindSelectMat = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["render", _sfc_render$d], ["__scopeId", "data-v-68e7b952"], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/bindSelectMat/bindSelectMat.vue"]]);
+ const PagesBindSelectMatBindSelectMat = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$e], ["__scopeId", "data-v-68e7b952"], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/bindSelectMat/bindSelectMat.vue"]]);
const _imports_0 = "/static/scan.png";
- const _sfc_main$d = {
+ const _sfc_main$e = {
components: {
bindSelectMat: PagesBindSelectMatBindSelectMat
},
@@ -1257,7 +1400,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
const _component_bindSelectMat = vue.resolveComponent("bindSelectMat");
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
vue.createVNode(_component_bindSelectMat, {
@@ -1520,7 +1663,7 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesBindBind = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["render", _sfc_render$c], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/bind/bind.vue"]]);
+ const PagesBindBind = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["render", _sfc_render$d], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/bind/bind.vue"]]);
class MPAnimation {
constructor(options, _this) {
this.options = options;
@@ -1631,7 +1774,7 @@ if (uni.restoreGlobal) {
clearTimeout(_this.timer);
return new MPAnimation(option, _this);
}
- const _sfc_main$c = {
+ const _sfc_main$d = {
name: "uniTransition",
emits: ["click", "change"],
props: {
@@ -1878,7 +2021,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
return $data.isShow ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
ref: "ani",
@@ -1890,8 +2033,8 @@ if (uni.restoreGlobal) {
vue.renderSlot(_ctx.$slots, "default")
], 14, ["animation"])) : vue.createCommentVNode("v-if", true);
}
- const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$b], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]);
- const _sfc_main$b = {
+ const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["render", _sfc_render$c], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]);
+ const _sfc_main$c = {
name: "uniPopup",
components: {},
emits: ["change", "maskClick"],
@@ -2219,7 +2362,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
const _component_uni_transition = resolveEasycom(vue.resolveDynamicComponent("uni-transition"), __easycom_0$1);
return $data.showPopup ? (vue.openBlock(), vue.createElementBlock(
"view",
@@ -2279,8 +2422,8 @@ if (uni.restoreGlobal) {
/* CLASS */
)) : vue.createCommentVNode("v-if", true);
}
- const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$a], ["__scopeId", "data-v-4dd3c44b"], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]);
- const _sfc_main$a = {
+ const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$b], ["__scopeId", "data-v-4dd3c44b"], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]);
+ const _sfc_main$b = {
__name: "Card",
props: {
item: {
@@ -2304,7 +2447,7 @@ if (uni.restoreGlobal) {
return __returned__;
}
};
- function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "card" }, [
vue.createElementVNode("view", { class: "card-header" }, [
vue.createElementVNode("view", { class: "content-combined" }, [
@@ -2424,8 +2567,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const Card = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$9], ["__scopeId", "data-v-29c414df"], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/components/Card.vue"]]);
- const _sfc_main$9 = {
+ const Card = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$a], ["__scopeId", "data-v-29c414df"], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/components/Card.vue"]]);
+ const _sfc_main$a = {
name: "uniPopup",
components: {},
emits: ["change", "maskClick"],
@@ -2778,7 +2921,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
const _component_uni_transition = resolveEasycom(vue.resolveDynamicComponent("uni-transition"), __easycom_0$1);
return $data.showPopup ? (vue.openBlock(), vue.createElementBlock(
"view",
@@ -2838,8 +2981,8 @@ if (uni.restoreGlobal) {
/* CLASS */
)) : vue.createCommentVNode("v-if", true);
}
- const uniPopup = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$8], ["__scopeId", "data-v-7db519c7"], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/node_modules/@dcloudio/uni-ui/lib/uni-popup/uni-popup.vue"]]);
- const _sfc_main$8 = {
+ const uniPopup = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$9], ["__scopeId", "data-v-7db519c7"], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/node_modules/@dcloudio/uni-ui/lib/uni-popup/uni-popup.vue"]]);
+ const _sfc_main$9 = {
components: {
uniPopup,
Card
@@ -3236,7 +3379,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_0);
const _component_Card = vue.resolveComponent("Card");
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
@@ -3433,8 +3576,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesQueryBindListQueryBindList = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$7], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/queryBindList/queryBindList.vue"]]);
- const _sfc_main$7 = {
+ const PagesQueryBindListQueryBindList = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$8], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/queryBindList/queryBindList.vue"]]);
+ const _sfc_main$8 = {
__name: "StocktakingCard",
props: {
item: {
@@ -3458,7 +3601,7 @@ if (uni.restoreGlobal) {
return __returned__;
}
};
- function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", null, [
vue.createElementVNode("view", { class: "card-header" }, [
vue.createElementVNode("view", { class: "content-combined" }, [
@@ -3591,8 +3734,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const StocktakingCard = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["render", _sfc_render$6], ["__scopeId", "data-v-e2c0cdac"], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/components/StocktakingCard.vue"]]);
- const _sfc_main$6 = {
+ const StocktakingCard = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$7], ["__scopeId", "data-v-e2c0cdac"], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/components/StocktakingCard.vue"]]);
+ const _sfc_main$7 = {
components: {
uniPopup,
StocktakingCard
@@ -3864,7 +4007,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_0);
const _component_StocktakingCard = vue.resolveComponent("StocktakingCard");
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
@@ -4066,8 +4209,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesStockTakingStockTaking = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$5], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/stockTaking/stockTaking.vue"]]);
- const _sfc_main$5 = {
+ const PagesStockTakingStockTaking = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["render", _sfc_render$6], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/stockTaking/stockTaking.vue"]]);
+ const _sfc_main$6 = {
data() {
return {
//初始化
@@ -4367,7 +4510,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
vue.createElementVNode("view", { class: "diy-flex-row" }, [
vue.createElementVNode("view", { style: { "flex": "3" } }, [
@@ -4503,8 +4646,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesShelfLocationBindUnbindShelfLocationBindUnbind = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$4], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/shelfLocationBindUnbind/shelfLocationBindUnbind.vue"]]);
- const _sfc_main$4 = {
+ const PagesShelfLocationBindUnbindShelfLocationBindUnbind = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$5], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/shelfLocationBindUnbind/shelfLocationBindUnbind.vue"]]);
+ const _sfc_main$5 = {
components: {
uniPopup,
Card
@@ -4855,7 +4998,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_0);
const _component_Card = vue.resolveComponent("Card");
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
@@ -4993,8 +5136,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesProductionLineCallInProductionLineCallIn = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$3], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/productionLineCallIn/productionLineCallIn.vue"]]);
- const _sfc_main$3 = {
+ const PagesProductionLineCallInProductionLineCallIn = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$4], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/productionLineCallIn/productionLineCallIn.vue"]]);
+ const _sfc_main$4 = {
components: {
uniPopup,
Card
@@ -5438,7 +5581,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_0);
const _component_Card = vue.resolveComponent("Card");
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
@@ -5682,8 +5825,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesProductionLineCallOutProductionLineCallOut = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render$2], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/productionLineCallOut/productionLineCallOut.vue"]]);
- const _sfc_main$2 = {
+ const PagesProductionLineCallOutProductionLineCallOut = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$3], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/productionLineCallOut/productionLineCallOut.vue"]]);
+ const _sfc_main$3 = {
__name: "TaskCard",
props: {
item: {
@@ -5707,7 +5850,7 @@ if (uni.restoreGlobal) {
return __returned__;
}
};
- function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "card" }, [
vue.createElementVNode("view", { class: "card-header" }, [
vue.createElementVNode("view", { class: "content-combined" }, [
@@ -5825,8 +5968,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const TaskCard = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$1], ["__scopeId", "data-v-e5e76912"], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/components/TaskCard.vue"]]);
- const _sfc_main$1 = {
+ const TaskCard = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render$2], ["__scopeId", "data-v-e5e76912"], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/components/TaskCard.vue"]]);
+ const _sfc_main$2 = {
components: {
uniPopup,
TaskCard
@@ -6120,7 +6263,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_0);
const _component_TaskCard = vue.resolveComponent("TaskCard");
return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
@@ -6324,7 +6467,295 @@ if (uni.restoreGlobal) {
])
]);
}
- const PagesAgvTasksAgvTasks = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render], ["__file", "D:/代码/赛特制冷WCS/PDA/PDA/pages/agvTasks/agvTasks.vue"]]);
+ const PagesAgvTasksAgvTasks = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$1], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/agvTasks/agvTasks.vue"]]);
+ const _sfc_main$1 = {
+ components: {
+ uniPopup,
+ Card
+ },
+ data() {
+ return {
+ locationId: null,
+ locationCode: "",
+ userName: "",
+ //当前登录的用户名
+ recordCount: 0,
+ shelfId: null,
+ shelfCode: "",
+ placeholderText: "输入物料编码搜索",
+ matCodeCondition: "",
+ //物料编码搜索条件
+ cardData: null,
+ //监控滑动的位置
+ touchStartX: 0,
+ touchStartY: 0,
+ isMove: false
+ //滑动标识 是否滑动
+ };
+ },
+ onShow: function() {
+ this.userName = getConfig("userName", "admin");
+ const self = this;
+ recive(function(res) {
+ formatAppLog("log", "at pages/allBindQuery/allBindQuery.vue:121", "Success:" + res.data);
+ self.analysisScanCode(res.data);
+ }, function(err) {
+ formatAppLog("log", "at pages/allBindQuery/allBindQuery.vue:124", "Error:", JSON.stringify(err));
+ });
+ },
+ methods: {
+ //摄像头扫码
+ cameraScanCode() {
+ uni.scanCode({
+ success: (res) => {
+ formatAppLog("log", "at pages/allBindQuery/allBindQuery.vue:132", "扫码结果:", res.result);
+ this.analysisScanCode(res.result);
+ },
+ fail: (err) => {
+ formatAppLog("error", "at pages/allBindQuery/allBindQuery.vue:136", "扫码失败:", err);
+ }
+ });
+ },
+ //扫码枪扫码
+ analysisScanCode: function(encodedString) {
+ encodedString = encodedString.replace(/,\s*\.\.\.$/, "");
+ this.matCodeCondition = encodedString;
+ const regex = /^[1-9]\d{5}$/;
+ if (regex.test(this.matCodeCondition)) {
+ this.shelfCode = this.matCodeCondition;
+ this.matCodeCondition = "";
+ this.queryMatList();
+ return;
+ }
+ const regex1 = /^\d{6}XY\d{6}$/;
+ if (regex1.test(this.matCodeCondition)) {
+ this.locationCode = this.matCodeCondition;
+ this.matCodeCondition = "";
+ this.queryMatList();
+ return;
+ }
+ const regex2 = /^\d{6}xy\d{6}$/;
+ if (regex2.test(this.matCodeCondition)) {
+ this.locationCode = this.matCodeCondition.toUpperCase();
+ this.matCodeCondition = "";
+ this.queryMatList();
+ return;
+ }
+ },
+ queryMatList: function() {
+ if (this.matCodeCondition != "" && this.matCodeCondition != null) {
+ const regex = /^[1-9]\d{5}$/;
+ if (regex.test(this.matCodeCondition)) {
+ this.shelfCode = this.matCodeCondition;
+ this.matCodeCondition = "";
+ }
+ const regex1 = /^\d{6}XY\d{6}$/;
+ if (regex1.test(this.matCodeCondition)) {
+ this.locationCode = this.matCodeCondition;
+ this.matCodeCondition = "";
+ }
+ const regex2 = /^\d{6}xy\d{6}$/;
+ if (regex2.test(this.matCodeCondition)) {
+ this.locationCode = this.matCodeCondition.toUpperCase();
+ this.matCodeCondition = "";
+ }
+ }
+ var serverIPAndPort = getServerIPAndPort();
+ uni.request({
+ url: "http://" + serverIPAndPort + "/matDetailCurrenInfo/getMatDetailCurrentInfosWithOrder",
+ // 请求的接口地址
+ method: "POST",
+ // 设置请求方式为 POST
+ data: {
+ "locationCode": this.locationCode,
+ "shelfCode": this.shelfCode,
+ "matCode": this.matCodeCondition,
+ "userName": this.userName,
+ "deviceType": "PDA",
+ "pageNumber": 1,
+ "pageSize": 600
+ },
+ header: {
+ "Content-Type": "application/json"
+ // 如果需要以JSON格式发送数据
+ },
+ success: (res) => {
+ if (res.statusCode === 200) {
+ if (res.data.code == 200) {
+ if (res.data.data == null || res.data.data.count == 0) {
+ uni.showToast({
+ title: "该货架不存在绑定的物料信息!",
+ icon: "none",
+ duration: 3e3
+ });
+ this.clear();
+ return;
+ }
+ this.cardData = res.data.data.lists;
+ this.recordCount = res.data.data.count;
+ this.shelfCode = "";
+ this.locationCode = "";
+ uni.showToast({
+ title: "获取成功!",
+ icon: "none",
+ duration: 500
+ });
+ } else {
+ uni.showToast({
+ title: "获取失败:" + res.data.message,
+ icon: "none",
+ duration: 3500
+ });
+ this.clear();
+ }
+ } else {
+ uni.showToast({
+ title: "服务器返回错误状态码" + res.statusCode,
+ icon: "none",
+ duration: 3e3
+ });
+ this.clear();
+ }
+ },
+ fail: (err) => {
+ uni.showToast({
+ title: "请求失败:" + err.errMsg,
+ icon: "none",
+ duration: 3e3
+ });
+ this.clear();
+ },
+ complete: (event) => {
+ formatAppLog("log", "at pages/allBindQuery/allBindQuery.vue:269", "请求完成", event);
+ }
+ });
+ },
+ //清空当前界面所有内容
+ clear: function() {
+ this.placeholderText = "请先扫描货架码";
+ this.cardData = null;
+ this.recordCount = 0;
+ },
+ //解决长按和滑动冲突的问题
+ cardTouchStart(e) {
+ this.isMove = false;
+ this.touchStartX = e.touches[0].clientX;
+ this.touchStartY = e.touches[0].clientY;
+ },
+ cardTouchMove(e) {
+ var deltaX = e.changedTouches[0].clientX - this.touchStartX;
+ var deltaY = e.changedTouches[0].clientY - this.touchStartY;
+ if (Math.abs(deltaX) > 5 || Math.abs(deltaY) > 5) {
+ this.isMove = true;
+ }
+ },
+ //长按
+ longpress(item) {
+ if (this.isMove == false) {
+ uni.showToast({
+ title: "此功能仅供查询\r\n无法修改数量!",
+ icon: "none",
+ duration: 2e3
+ });
+ }
+ }
+ }
+ };
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
+ const _component_Card = vue.resolveComponent("Card");
+ return vue.openBlock(), vue.createElementBlock("view", { class: "bg-image" }, [
+ vue.createElementVNode("view", { class: "diy-flex-row" }, [
+ vue.createElementVNode("view", { style: { "flex": "3" } }, [
+ vue.createCommentVNode(" 占位 ")
+ ]),
+ vue.createElementVNode("view", { style: { "flex": "80", "margin": "5rpx" } }, [
+ vue.createElementVNode("view", { class: "diy-flex-row" }, [
+ vue.createElementVNode("view", {
+ class: "rightImageContainer",
+ onClick: _cache[0] || (_cache[0] = (...args) => $options.cameraScanCode && $options.cameraScanCode(...args)),
+ style: { "flex": "12", "padding-top": "20rpx" }
+ }, [
+ vue.createElementVNode("image", {
+ style: { "width": "60rpx", "height": "60rpx" },
+ src: _imports_0
+ })
+ ]),
+ vue.createElementVNode("view", {
+ class: "uni-input-wrapper",
+ style: { "flex": "60" }
+ }, [
+ vue.withDirectives(vue.createElementVNode("input", {
+ id: "inputMatCode",
+ class: "uni-input",
+ style: { "font-size": "50rpx", "padding": "10rpx" },
+ placeholder: $data.placeholderText,
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $data.matCodeCondition = $event)
+ }, null, 8, ["placeholder"]), [
+ [vue.vModelText, $data.matCodeCondition]
+ ])
+ ]),
+ vue.createElementVNode("view", { style: { "flex": "3" } }),
+ vue.createElementVNode("view", { style: { "flex": "30" } }, [
+ vue.createElementVNode("button", {
+ onClick: _cache[2] || (_cache[2] = (...args) => $options.queryMatList && $options.queryMatList(...args))
+ }, "查询")
+ ])
+ ])
+ ]),
+ vue.createElementVNode("view", { style: { "flex": "2" } }, [
+ vue.createCommentVNode(" 占位 ")
+ ])
+ ]),
+ vue.createElementVNode("view", {
+ class: "diy-flex-column",
+ style: { "margin-top": "5rpx" }
+ }, [
+ vue.createElementVNode("view", { class: "diy-flex-inforow" }, [
+ vue.createElementVNode("view", { style: { "width": "10rpx" } }),
+ vue.createElementVNode(
+ "view",
+ { style: { "width": "275rpx" } },
+ "记录数:[" + vue.toDisplayString($data.recordCount) + "]",
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", { style: { "width": "10rpx" } }),
+ vue.createCommentVNode(' 货架码:{{shelfCode}} ')
+ ])
+ ]),
+ vue.createElementVNode("view", {
+ class: "diy-flex-column",
+ style: { "margin-top": "5rpx" }
+ }, [
+ vue.createElementVNode("scroll-view", {
+ class: "scroll-view",
+ "scroll-y": "true"
+ }, [
+ (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList($data.cardData, (item, index) => {
+ return vue.openBlock(), vue.createElementBlock("view", {
+ key: index,
+ onTouchstart: _cache[3] || (_cache[3] = (...args) => $options.cardTouchStart && $options.cardTouchStart(...args)),
+ onTouchmove: _cache[4] || (_cache[4] = (...args) => $options.cardTouchMove && $options.cardTouchMove(...args)),
+ onLongpress: ($event) => $options.longpress(item)
+ }, [
+ vue.createVNode(_component_Card, {
+ item,
+ currentIndex: index,
+ cardData: $data.cardData
+ }, null, 8, ["item", "currentIndex", "cardData"])
+ ], 40, ["onLongpress"]);
+ }),
+ 128
+ /* KEYED_FRAGMENT */
+ ))
+ ])
+ ])
+ ]);
+ }
+ const PagesAllBindQueryAllBindQuery = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render], ["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/pages/allBindQuery/allBindQuery.vue"]]);
__definePage("pages/index/index", PagesIndexIndex);
__definePage("pages/config/config", PagesConfigConfig);
__definePage("pages/main/main", PagesMainMain);
@@ -6336,6 +6767,7 @@ if (uni.restoreGlobal) {
__definePage("pages/productionLineCallIn/productionLineCallIn", PagesProductionLineCallInProductionLineCallIn);
__definePage("pages/productionLineCallOut/productionLineCallOut", PagesProductionLineCallOutProductionLineCallOut);
__definePage("pages/agvTasks/agvTasks", PagesAgvTasksAgvTasks);
+ __definePage("pages/allBindQuery/allBindQuery", PagesAllBindQueryAllBindQuery);
const _sfc_main = {
onLaunch: function() {
formatAppLog("log", "at App.vue:4", "App Launch");
@@ -6347,7 +6779,7 @@ if (uni.restoreGlobal) {
formatAppLog("log", "at App.vue:10", "App Hide");
}
};
- const App = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "D:/代码/赛特制冷WCS/PDA/PDA/App.vue"]]);
+ const App = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "E:/代码/赛特制冷WCS/wcs/PDA/PDA/App.vue"]]);
function createApp() {
const app = vue.createVueApp(App);
return {
diff --git a/PDA/PDA/unpackage/dist/dev/cache/.app-plus/tsc/app-android/.tsbuildInfo b/PDA/PDA/unpackage/dist/dev/cache/.app-plus/tsc/app-android/.tsbuildInfo
index c189965..f307784 100644
--- a/PDA/PDA/unpackage/dist/dev/cache/.app-plus/tsc/app-android/.tsbuildInfo
+++ b/PDA/PDA/unpackage/dist/dev/cache/.app-plus/tsc/app-android/.tsbuildInfo
@@ -1 +1 @@
-{"program":{"fileNames":["../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/boolean.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/console.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/date.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/error.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/json.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/map.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/math.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/number.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/regexp.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/set.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/string.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/timers.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/utsjsonobject.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/arraybuffer.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/float32array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/float64array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/int8array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/int16array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/int32array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint8array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint8clampedarray.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint16array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint32array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/dataview.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/iterable.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/common.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/shims.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es5.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.collection.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.promise.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.symbol.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.symbol.wellknown.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.iterable.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2018.asynciterable.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2018.asyncgenerator.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2018.promise.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2020.symbol.wellknown.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/hbuilder-x/hbuilderx.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/hbuilder-x/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/shared/dist/shared.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/reactivity/dist/reactivity.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/runtime-core/dist/runtime-core.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/vue.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/shims/common.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/shims/app-android.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/array.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/utsactivitycallback.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/utsandroid.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/utsandroidhookproxy.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-js/utsjs.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/webviewstyles.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/viewtotempfilepathoptions.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/drawablecontext.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/snapshotoptions.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/cssstyledeclaration.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/domrect.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unicallbackwrapper.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/path2d.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/canvasrenderingcontext2d.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iunielement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unievent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipageevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewservicemessageevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unicustomevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewmessageevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewloadingevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewloadevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewerrorevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/nodedata.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/pagenode.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unielement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewdownloadevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/univideoelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitouchevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextarealinechangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextareafocusevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextareablurevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitabselement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitabtapevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniswipertransitionevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniswiperchangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniswiperanimationfinishevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unistopnestedscrollevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unistartnestedscrollevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniscrolltoupperevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniscrolltolowerevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniscrollevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unirichtextitemclickevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniresizeobserver.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniresizeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unirefresherevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniprovider.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipointerevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipagescrollevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unidocument.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/asyncapiresult.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iunierror.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unierror.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/nativeloadfontfaceoptions.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uninativepage.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipagemanager.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uninestedprescrollevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uninativeapp.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputkeyboardheightchangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputfocusevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputconfirmevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputblurevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniimageloadevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniimageerrorevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniformcontrol.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniformcontrolelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unicanvaselement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/sourceerror.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniaggregateerror.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/utsandroidhookproxy.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iuninativeviewelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iuniform.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/inavigationbar.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/checkboxgroupchangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/pickerviewchangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/progressactiveendevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/radiogroupchangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/sliderchangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/switchchangeevent.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/uninavigatorelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/uniclouddbelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/uniformelement.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/lifecycle.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/base/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/env/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-addphonecontact/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-addphonecontact/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-arraybuffertobase64/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-arraybuffertobase64/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-base64toarraybuffer/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-base64toarraybuffer/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-chooselocation/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-chooselocation/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-clipboard/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-clipboard/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-crash/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-crash/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createinneraudiocontext/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createinneraudiocontext/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createintersectionobserver/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createintersectionobserver/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createrequestpermissionlistener/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createrequestpermissionlistener/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createselectorquery/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createselectorquery/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createwebviewcontext/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createwebviewcontext/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-dialogpage/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-dialogpage/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-event/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-event/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-exit/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-exit/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-file/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-file/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-filesystemmanager/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-filesystemmanager/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getaccessibilityinfo/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getaccessibilityinfo/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappauthorizesetting/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappauthorizesetting/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappbaseinfo/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappbaseinfo/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getbackgroundaudiomanager/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getbackgroundaudiomanager/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getdeviceinfo/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getdeviceinfo/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getelementbyid/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getelementbyid/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getenteroptionssync/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getenteroptionssync/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlaunchoptionssync/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlaunchoptionssync/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-system/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-system/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent-uni1/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent-uni1/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getnetworktype/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getnetworktype/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getperformance/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getperformance/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getprovider/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getprovider/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getrecordermanager/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getrecordermanager/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsysteminfo/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsysteminfo/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsystemsetting/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsystemsetting/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-installapk/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-installapk/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-interceptor/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-interceptor/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-loadfontface/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-loadfontface/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-makephonecall/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-makephonecall/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-media/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-navigationbar/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-navigationbar/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-network/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth-huawei/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth-huawei/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-openappauthorizesetting/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-openappauthorizesetting/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-opendocument/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-opendocument/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pagescrollto/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pagescrollto/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-alipay/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-alipay/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-huawei/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-huawei/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-wxpay/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-wxpay/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pulldownrefresh/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pulldownrefresh/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-route/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-rpx2px/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-rpx2px/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-scancode/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-scancode/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-sharewithsystem/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-sharewithsystem/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-storage/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-storage/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-tabbar/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-tabbar/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-theme/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-theme/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-virtualpayment/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-virtualpayment/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-ad/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-ad/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-facialrecognitionverify/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-facialrecognitionverify/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-map-tencent/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-map-tencent/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-push/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-push/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-component/lib/uni-video/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-component/lib/uni-video/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-component/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-openlocation/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-openlocation/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-compass/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-compass/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-canvas/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-canvas/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-locale/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-locale/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-getbackgroundaudiomanager/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-getbackgroundaudiomanager/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-localechange/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-localechange/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-preloadpage/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-preloadpage/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-createmediaqueryobserver/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-createmediaqueryobserver/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-__f__/utssdk/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-__f__/utssdk/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uni-map-tencent-map.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uni-map-tencent-global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/global.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni-cloud/unicloud-db/index.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni-cloud/interface.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni-cloud/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/common.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/app.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/unipage.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/page.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/process.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/index.d.ts","../../../../../../../../../../../安装包备份/hbuilderx.4.29.2024093009/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/app-android.d.ts"],"fileInfos":[{"version":"697a13c6dcb1659c5c9b4c0bf423c12e70cc1d99a047cc1ac79d59bf5162703e","affectsGlobalScope":true},{"version":"6410a594bfd22fb12e3334378f7348e8f788823b9c0025e126718f807500d04b","affectsGlobalScope":true},{"version":"d3e1ff2a13f83b14ec1fb0fc7f3fecf6cba86c375cd5859f8ebba76e7e63af8b","affectsGlobalScope":true},{"version":"03dc998570e1758dcaad4dbe04497c00135581851f951df5d09dbea4c3f1398c","affectsGlobalScope":true},{"version":"173b34be3df2099c2da11fb3ceecf87e883bd64f5219c0ee7bc6add9bc812cde","affectsGlobalScope":true},{"version":"4b1be6e9f18cc02ca5aa88527cb40d5caa83a185ca9fd0e259ec4c9255d3564d","affectsGlobalScope":true},{"version":"678dba370c8fc27440a9a8504ace43bf8ddfd494a9add43cbe154234aeff436f","affectsGlobalScope":true},{"version":"9d1012759f6b154793d976b63602b3b9d7186c83a5d6be8489dc8dedfa128f2f","affectsGlobalScope":true},{"version":"78522750655dea0e7a4ae166045d3c26059f274221806df75d798618c139814c","affectsGlobalScope":true},{"version":"54d09077240fb49aa1d67fbbfc7c268d13f129b9fd6018cdea0a53aa42f3dfec","affectsGlobalScope":true},{"version":"c9c8b406139577e4fa32b52b110367bba2df72ea55679c705f6f57a3089b13f8","affectsGlobalScope":true},{"version":"edc9b456902d54542fbc0e65c92aceb9bf4bb4c2a05ac1e120f377a5c1dc0af0","affectsGlobalScope":true},{"version":"8966af49ef2d67a5985bd8db7af2ebdb002dd0ee038687553676aecb05c6a68d","affectsGlobalScope":true},{"version":"c9282d2a742f47bbc88683b5261a536e92a831921bc206e9d01baef64fe9bc7d","affectsGlobalScope":true},{"version":"bac8e74783f55c4e4cf796c667ec0c490192640b47102fe428b73deeeb32f6a7","affectsGlobalScope":true},{"version":"7fb56e3ddad0d2f99cd61f6c40805d15bf9b98c60e332dc11c2b6cd676b619a0","affectsGlobalScope":true},{"version":"dd4a4c0cb354520e1fb9e8d657817970bb5a65bfe51a440ca601c649f47e62c2","affectsGlobalScope":true},{"version":"4c468dbbe01f6655853439cbb429eee83bbbe55254d93cbeb3ea43fdaa9525bc","affectsGlobalScope":true},{"version":"b1b71a9e7cb04db90d3a3a4b46b3b16fc733a179b238fc572f956e08a0dbc91c","affectsGlobalScope":true},{"version":"90f572abc03bc19a83febf49181c19f067f21c259d1c031b9f39c58c1f90a4cc","affectsGlobalScope":true},{"version":"27472c9668c5abb1caee9dbd89d2ec3e49c9c8b5a010ffb3e96e645221d39d60","affectsGlobalScope":true},{"version":"bc34a03536169ac1bc436161a0526fda8fbd1ad16146498921640a7d9b1f2149","affectsGlobalScope":true},{"version":"3a6a8d8f3a2e91545c6033e6582ea711b6737ecb07da1494dd87baed3bf107fa","affectsGlobalScope":true},{"version":"b20c1e35fff11f7f13deab16dd4cfdeb039254b6fd820f538c75e004c26027b8","affectsGlobalScope":true},{"version":"da959460dc6ddeaf1ac488a4231416336becb3366c4624279b13500edb1ee17c","affectsGlobalScope":true},{"version":"f7f50a3c9b96a7e1056678b000998c5caef583dd3b39c3936e1f6191ffefa8d0","affectsGlobalScope":true},{"version":"e7615f1e8d08ff5637778b350910041817efe8cd9c0f44e1800670fc33003dfa","affectsGlobalScope":true},"db8eb85d3f5c85cc8b2b051fde29f227ec8fbe50fd53c0dc5fc7a35b0209de4a",{"version":"8b46e06cc0690b9a6bf177133da7a917969cacbd6a58c8b9b1a261abd33cb04d","affectsGlobalScope":true},{"version":"c2e5d9c9ebf7c1dc6e3f4de35ae66c635240fe1f90cccc58c88200a5aa4a227c","affectsGlobalScope":true},{"version":"c5277ad101105fbcb9e32c74cea42b2a3fbebc5b63d26ca5b0c900be136a7584","affectsGlobalScope":true},{"version":"46a47bc3acc0af133029fb44c0c25f102828995c1c633d141ac84240b68cdfad","affectsGlobalScope":true},{"version":"bf7e3cadb46cd342e77f1409a000ea51a26a336be4093ee1791288e990f3dadf","affectsGlobalScope":true},{"version":"3fb65674722f36d0cc143a1eb3f44b3ab9ecd8d5e09febcfbc0393bec72c16b5","affectsGlobalScope":true},{"version":"daf924aae59d404ac5e4b21d9a8b817b2118452e7eb2ec0c2c8494fb25cb4ab3","affectsGlobalScope":true},{"version":"120ddb03b09c36f2e2624563a384123d08f6243018e131e8c97a1bb1f0e73df5","affectsGlobalScope":true},{"version":"0daef79ef17e2d10a96f021096f6c02d51a0648514f39def46c9a8a3018196be","affectsGlobalScope":true},{"version":"571605fec3d26fc2b8fbffb6aa32d2ef810b06aa51c1b0c3c65bbc47bd5b4a5e","affectsGlobalScope":true},{"version":"51536e45c08d8b901d596d8d48db9ab14f2a2fd465ed5e2a18dda1d1bae6fe5a","affectsGlobalScope":true},"897a4b80718f9228e992483fefa164d61e78548e57fbf23c76557f9e9805285e","ab2680cfdaea321773953b64ec757510297477ad349307e93b883f0813e2a744",{"version":"8a931e7299563cecc9c06d5b0b656dca721af7339b37c7b4168e41b63b7cfd04","affectsGlobalScope":true},"7da94064e1304209e28b08779b3e1a9d2e939cf9b736c9c450bc2596521c417f","7cce3fa83b9b8cad28998e2ffa7bb802841bb843f83164ba12342b51bf3ae453","dc44a5ac4c9a05feede6d8acf7e6e768ca266b1ce56030af1a3ab4138234bf45",{"version":"451f4c4dd94dd827770739cc52e3c65ac6c3154ad35ae34ad066de2a664b727a","affectsGlobalScope":true},{"version":"228e6b61cb0eeb386a9e0818b485f7ea839d1cb5e56112ef341e215a1d98319e","affectsGlobalScope":true},{"version":"0c26e42734c9bf81c50813761fc91dc16a0682e4faa8944c218f4aaf73d74acf","affectsGlobalScope":true},{"version":"af11b7631baab8e9159d290632eb6d5aa2f44e08c34b5ea5dc3ac45493fffed5","affectsGlobalScope":true},{"version":"b1d7cf111ab4f55f5a4a2168d398122f944581ab523261e76b52d7fd1fc1677b","affectsGlobalScope":true},{"version":"b2bd4feee4a879f0ec7dfaf3ea564644f708dcfef8ef850a069877bd0dc29bdc","affectsGlobalScope":true},{"version":"e106482e04c23300c1544bc89ce83b9ae46e2f39e3b2b2c890cd9b69494a3cc0","affectsGlobalScope":true},"374921e9f915c42c9bc8af9b2c546d091afd75f43be29d915d25ecb1964e7956",{"version":"fd45f5d7408b4ade5b812478e612b59801d371e4b8e467cf1b1aca46acd1564a","affectsGlobalScope":true},{"version":"b9241ecb5024beeaeb98fb558000dbc55e650576e572d194508f52807af6bcba","affectsGlobalScope":true},"e29267438b18703287cd3b9cd05627bec136ac5ea107bf9a5321205e0e46f203","e0e39118af4d0ed66b8c96a2716fc58bbbdac0bc38c8550a5fb5035aad4827d4","f8cc7ac396a3ea99a6959ddbaf883388260e035721216e5971af17db61f11f0b","d899ec00224a7e6f4391371c039e9cbfb6b21d730815ffe222e9d1938bb17cc0","ea4facc7918e50e285a4419f7bc7ffdf978385899a3cf19ef7d7b782b896616d","1c6d38746a6f7202e7e2d18fea41a0d7b28560de879b7f03a9a652c16207f1fe","9a2f58ccb521c15cd8f30dc83618e614eba8c5323d1d38354b2184908032abdf","33b7db19877cf2f9306524371fcfc45dcb6436c8e905472ede7346c9f044bf20","2d5546a0d61aeab766a5acd88c983535101fbefe259935a4a6433c65a451889e","bff000a3f167e6df718d13f113ccaf9d3f08868fe9a08541b44e3d0d232d273e","2c612ea298e053ffec67a3704c2c0bfc74f9e8bcded1ca9362b11251b0401a5d","95f0df8e685a2c5cd1612b83d9a1937676557210d633e4a151e8670650c3b96d","e311e90ded1cd037cbece1bc6649eaa7b65f4346c94ae81ba5441a8f9df93fa3","8eb08fff3569e1b9eddb72e9541a21e9a88b0c069945e8618e9bc75074048249","d596c650714d80a93a2fe15dce31ed9a77c2f2b1b9f4540684eaf271f05e2691","8f9fb9a9d72997c334ca96106095da778555f81ac31f1d2a9534d187b94e8bf6","aea632713de6ee4a86e99873486c807d3104c2bf704acef8d9c2567d0d073301","1adb14a91196aa7104b1f3d108533771182dc7aaea5d636921bc0f812cfee5f5","8d90bb23d4e2a4708dbf507b721c1a63f3abd12d836e22e418011a5f37767665","8cb0d02bb611ea5e97884deb11d6177eb919f52703f0e8060d4f190c97bb3f6c","78880fa8d163b58c156843fda943cc029c80fac5fb769724125db8e884dce32d","90b8332c8929b81a0f6e438a6101578b61c5a7784748110fae8ec1ebb85dd21a","519480db65853df00fb314217406ca7abdcb12606414a53278b61933e44a988c","9d3db8aef76e0766621b93a1144069623346b9cfccf538b67859141a9793d16d","8868c445f34ee81895103fd83307eadbe213cfb53bbc5cd0e7f063e4214c49b0","277990f7c3f5cbbf2abd201df1d68b0001ff6f024d75ca874d55c2c58dd6e179","a31dfa9913def0386f7b538677c519094e4db7ce12db36d4d80a89891ef1a48f","f4c0c7ee2e447f369b8768deed1e4dd40b338f7af33b6cc15c77c44ff68f572d","2f268bd768d2b35871af601db7f640c9e6a7a2364de2fd83177158e0f7b454dc","dd591496573e7e1d5ff32c4633d663c91aef86dad520568ef344ce08bba21218","a004a3b60f23fcfb36d04221b4bef155e11fd57293ba4f1c020a220fadf0fc85","4e145e72e5600a49fa27282d63bb9715b19343d8826f91be0f324af73bc25322","62f734f7517d2ca3bf02abddaf8abf7e3de258667a63e8258373658bbb9153b6","ea9599ac048381647dca742eefdc602fdcafadb75d408592026da89accd1d599","7e72ef2b8a998108f132839c3fcf2cd47f917008ecba5f6ffed5c22e443a714d","781b566c3eccba1a2cafbb827fb6fc02d5147c89a40e11c7892057481a195270","c9befaf90879c27ee3f7f12afd15b4531fbbea9ec37d145b83807a67d9f55c82","8630f26d1038328e6b9da9c082f6fa911903bc638499baa6cfab002b5a70af96","73474d70a9b4f02771119085c4cd7562be4169e7973544c9541341ca2931aa3d","54da497c3b3b94fae91a66ed222e21411dc595a17f9e6bd229e233d0de732691","803da2f4e024efa2edc55c67d35c5240e7ae599baf9263b453acd02127a582e9","23ee02cf6dc1ea5e0937cbf4e235ceaa34b4529fce82a5438dc0780a31e6f0a5","a9716557f56781aef13d6d3c5dafc61236f64bfd48d462c4848a7eca25f924ff","3d15b5e24065431bf7831b8e84000c0e767d921135af86ef0b0c034f14df5d8f","a563202fc316d8926dc83759cec155d5c028a7828996cbd283470ac7e8c58727","e5c004f39619ebaaa2475b18e949e12e51ff629132f48d56608081e5f0195577","e6b7a14eb53f023f455f4513b6a560f004fa1ebf6cc298b479be796541e322e6","771bf8091a4e40be8f539648b5a0ff7ecba8f46e72fc16acc10466c4c1304524","cb66d1c49ad20e7246b73671f59acaaaac72c58b7e37faae69ae366fd6adf1d3","e5c1c52655dc3f8400a3406fd9da0c4888e6b28c29de33bee51f9eaeda290b4d","1e28ee6d718080b750621e18befe236487df6685b37c17958520aaf777b7aeff","8891345dbe1920b9ed3f446a87de27b5cd6b2053112f6ff3975a661f9a03ec34","e41502bb6f2911275ebef373dcf4c2c9cb396e8913576d744227fb2a21b2907f","a720d8028d38f2b94855967789252c6148957dcd24e280d193b78db00eb3a099","1b0818297187a33e2c24c39145b409e11624523d32364edc22bceaf1f4c86f1b","0354b7e1d89403b1dba33e185a75549d91a191572406c5ded5d38d5cc049c03c","84648722d2b1f16c55cb68dbfaf18b913a13a78274641f7236eeb4d7088f6db8","f63d313c2673117608b3ed762ac07f618ee873bee3764406b06bcfcb5a713afe","2e2a2a0f7ef2a7587cfe40a96dbca31e8badb15a8a42bf042fe7a63abc9e2f27","2bb32fb3f0fe14c48170dcad3d2a501c1883516d4da9cbd0a2043d90c9789a7b","64d93f4a24f8a70b64658a7d9b9e96bd46ad498ad5dc9cdb9d52da547e77ff68","8a728de3047a1dadcb69595e74c3d75bc80a2c8165f8cf875ab610042a137fbe","3eafed0be4b194295bcde379e7d083779d0f27f31b715738a3beac49547dc613","22139b0aa97f3752b1e42c9f582aec2b90c89f5ab3fd9700515dc2e151848a84","1874b0062376a18b760c12d442a385128a748f62e66f6a0740c73e26471836e9","6cf7182d798892394143549a7b27ed27f7bcf1bf058535ec21cc03f39904bfb3","abe524377702be43d1600db4a5a940da5c68949e7ac034c4092851c235c38803","daf4418239ceadb20481bff0111fe102ee0f6f40daaa4ee1fdaca6d582906a26","8a5c5bc61338c6f2476eb98799459fd8c0c7a0fc20cbcd559bb016021da98111","548e4455c61c6aa2d7a127caa02f9f19be3f7b83db4fa1071e298219d74251ae","d2c6adc44948dbfdece6673941547b0454748e2846bb1bcba900ee06f782b01d","d80b7e2287ee54b23fe6698cb4e09b1dabc8e1a90fb368e301ac6fbc9ad412e2","f819507105727e01aecf6dae7d5a457daf282ec1a0aa9b9b1e9933a86930c54f",{"version":"03ab1547a5890d0b1a8c67be491f0a694fcb8e06d0618c3629c573868ef7209a","affectsGlobalScope":true},"816f825b072afd246eb3905cf51528d65e6fe51c12a1f8fb370c93bb0e031c9b","f6a64974d6fab49d27f8b31578a08662b9a7f607de3b5ec2d7c45b3466d914fd","a8e9d24cd3dc3bd95b34eb6edeac7525b7fdbe23b373554bdc3e91572b8079ee","1d5fd841722ce9aa05b9d602153c15914108bdaa8154bdd24eddadb8a3df586c","14788c10b66324b98feee7a2567eb30d1066e11506e54bf1215b369d70da4932","316785de2c0af9fbd9f2191904670e880bc3836671dd306236675515e481973a","27d668b912bf3fd0a4ddf3886a8b405eed97505fdc78a9f0b708f38e3e51655d","72654e8bed98873e19827d9a661b419dfd695dbc89fd2bb20f7609e3d16ebd50","66bdb366b92004ba3bf97df0502b68010f244174ee27f8c344d0f62cb2ac8f1e","30090332e8886cf27c46f5830c28977eef25fc8b2eb77117e2e42b20f37419c2","007ed3730b98b09e6f5db2fb87f6d32655f77048ae2140b0bac884e8c1add89e",{"version":"30692aa797868e75e5882801d1506bb7b43fa31164dd059010549e10979c921a","affectsGlobalScope":true},{"version":"e04ea44fae6ce4dc40d15b76c9a96c846425fff7cc11abce7a00b6b7367cbf65","affectsGlobalScope":true},{"version":"33414cdf6c91e3af6cd2a2ccd4b4f75318fb684b9106fa7484d85278538f1480","affectsGlobalScope":true},"cfbae40cdd82817be17bd48a0484981de051ce251a645838a6fbfb6849548f64",{"version":"700d5c16f91eb843726008060aebf1a79902bd89bf6c032173ad8e59504bc7ea","affectsGlobalScope":true},"e8597f5ba46fb8998b002c6e2c047b1b67784bb01c595177c39c445bd7f72e4e",{"version":"b0b314030907c0badf21a107290223e97fe114f11d5e1deceea6f16cabd53745","affectsGlobalScope":true},"20267127730020ce8b2f008133caf805d32929bb95b2af45ecf434991cb1b987",{"version":"7ebf3428c311427fc9564c30ceff94699fb3a50e302d6210bc94c5b53ef5ed00","affectsGlobalScope":true},"50aadef0b13b21c9223b8a98d41347b8de2b6562d8ebceeb30b54cbc0166ec2f",{"version":"cc8e57cfe18cd11c3bab5157ec583cfe5d75eefefe4b9682e54b0055bf86159f","affectsGlobalScope":true},"ba802de6bc200fe66eb3c59d7cf168022c7a4f589eb686f89d9dd4a59584816a",{"version":"ea971b022429f7c1b7e3c2de79b8fb135da8caeeb57afe789ee7086e955f744c","affectsGlobalScope":true},"6853f5720c7a2b51973e162190cd2aa05a85bdba2440bc0408f6b3caf1575186",{"version":"8a3b75fccc93851209da864abe53d968629fab3125981b6f47008ec63061eb39","affectsGlobalScope":true},"e7fcb3b171f296e6abacacae10d1e744e22b24e935a600c95e4908e467238909",{"version":"488118c6e9eedc7265cfefdcd04fb44b21004e64dca1508783710ba47fbd2778","affectsGlobalScope":true},"c03eb568f641d35e691f474e6c140ca49f2cce64ecd09563ef4fcedb943adefd",{"version":"a2be624f9ffe2529fcefa5c6dd1e37474c3692c67376d17ff40d5a0813d4a2e1","affectsGlobalScope":true},"6a224e417c1227de394e6ab88102ff09cc3a5ca8b88e4fda1e6e606d3777806f",{"version":"8dc8c2116694d59ee41b1ef7acf0cbc9a512eee589c419cac07b66597198b3f7","affectsGlobalScope":true},"3e37a124e3cb4bcc05f01a6dcd6d84abcf7b9173fb269b39654517ab7316b506",{"version":"8f8ebce0e991de85323524170fad48f0f29e473b6dd0166118e2c2c3ba52f9d6","affectsGlobalScope":true},"857c144a26ebeee399a986bce924d68548fe1b470366c47e5e69dd7ab3084554",{"version":"f877e78f5304ec3e183666aab8d5a1c42c3a617ff616d27e88cc6e0307641beb","affectsGlobalScope":true},"9f71c1fccd09ffab9baa1e5a4ed5e78b042f543b57a33531769eb69e22d808b9",{"version":"4fc0006f46461bb20aac98aed6c0263c1836ef5e1bbf1ca268db4258ed6a965e","affectsGlobalScope":true},"e10f473143597b66ba25221cca9e3a9b28ceb24e3b6dc003e680aab73c3a5916",{"version":"46c0e257d5c2b2c547f962cb45f4b259b871bad469f7aa11f0889c3d2c1e66cd","affectsGlobalScope":true},"6f38dfe6853ecd836dfca01d45e56e0374e97071bd557bf44535767cd98995ec",{"version":"544f8c58d5e1b386997f5ae49c6a0453b10bd9c7034c5de51317c8ac8ea82e9a","affectsGlobalScope":true},"3f1da3165c5b2d032da9bfa09dadf84f70b03cb4fb0e6f4296c804323ff98202",{"version":"ae9b62dd72bf086ccc808ba2e0d626d7d086281328fc2cf47030fd48b5eb7b16","affectsGlobalScope":true},"c7730a6f4554ca876fe56e553f5a1456d31ea88156a40ef2a540070c1e18f874",{"version":"cc1bddca46e3993a368c85e6a3a37f143320b1c13e5bfe198186d7ed21205606","affectsGlobalScope":true},"4b341d407f62bf3233991976fe4e0a239b8c09d56707923835cf62876bcf89a5",{"version":"d1d1d0018361316a713467981cf72f2ed6905bc03eed411fb5cf4ac8f8c68862","affectsGlobalScope":true},"31adafd40138bf03b6a7dfb7352c81ca4f5e51d13b115e8118dcdb9c950e6738",{"version":"121e469053633ec36c72d3b151f3f8941ef0d3c4b6462f625ee82609b7b17abe","affectsGlobalScope":true},"ebd2ab74540c6142c6538d162a4928e36ebb74059b88aaf240d28084de4bc785",{"version":"2b8dc33e6e5b898a5bca6ae330cd29307f718dca241f6a2789785a0ddfaa0895","affectsGlobalScope":true},"42404b88c78c474a01acdc4c560985ca4e665e04b9a1931d338c8aee4314afea",{"version":"dde8acfb7dd736b0d71c8657f1be28325fea52b48f8bdb7a03c700347a0e3504","affectsGlobalScope":true},"45416b1aa6fd05087ca78b0607b0bd078bd2acb9dff3d4e9d10e2aa93570c6bd",{"version":"34c9c31b78d5b5ef568a565e11232decf3134f772325e7cd0e2128d0144ff1e5","affectsGlobalScope":true},"f95149318e24b9d9058bfd15c3c9e0dfa290362d3abfcd4bec24ebc0849664ac",{"version":"60cc5b4f0a18127b33f8202d0d0fde56bc5699f4da1764b62ed770da2d5d44f1","affectsGlobalScope":true},"a54bf08adb88d9321ccc9d83554655ca32352cf88b7bcda28bfd1269838bb087",{"version":"d11fa2d42f762954eb4a07a0ab16b0a46aa6faf7b239f6cd1a8f5a38cb08edcd","affectsGlobalScope":true},"00db993a74e5833d5a1b9d1afd53cc8524a34268bd67b655517ee03d71b8ce83",{"version":"781afd67249e2733eb65511694e19cdcdb3af496e5d8cdee0a80eba63557ff6e","affectsGlobalScope":true},"c4affc9ebd8a4b3bd20877fca4da786db42b2ab3e9175f785abaffecac2c0817",{"version":"f3275e1f0e5852b1a50fd3669f6ad8e6e04db94693bcfb97d31851e63f8e301e","affectsGlobalScope":true},"163c675d160c8945f2c995369a1b9685b103d8181e903d1f0f92f1903fea60c4",{"version":"8a6ecff784dafbdb121906a61009670121882523b646338196099d4f3b5761d8","affectsGlobalScope":true},"a1177139f09a5f86e723e4ac630f9b319e50efb53659d8225739bf0afb5c0c82",{"version":"28aaee0a7f07fbedb0b14c265a3c1f29b252fa615a98f771e168b27209431320","affectsGlobalScope":true},"a4c574a32cdd0df6912fa39efbd4eb6e218708115abc580b27740f74dd17fe13",{"version":"256bdff4c082d9f4e2303138f64c152c6bd7b9dbca3be565095b3f3d51e2ab36","affectsGlobalScope":true},"283541eb8136dcb44cd8cd3f5d717a8f3beb02f34f3b0e0c814763b352f3086b",{"version":"47585e37a2b7f617e1398147202cab3fc43aa813cfa874b52c549cffde349650","affectsGlobalScope":true},"8b0026b5d44c96f0ca0ad78a1979b905440394c681bc41d130e53ddfd599930a",{"version":"e2f2a8069308e91fdb26890b49a4da18925958c0d4b5236ce30596c3c5672d72","affectsGlobalScope":true},"d8b0fa2f8627b393a2f2606a49a7122d5cf39d6757bd7c0f15c7257442f36cb2",{"version":"e214a2a7769955cd4d4c29b74044036e4af6dca4ab9aaa2ed69286fcdf5d23b3","affectsGlobalScope":true},"722938f48fa46b716cd37b769a89c8e7dbcffcd67013d537971c6de8c9c87fac",{"version":"25659b24ac2917dbfcbb61577d73077d819bd235e3e7112c76a16de8818c5fd6","affectsGlobalScope":true},"15ef8504a4c2c553e8de9fdb8c1483d41b5383dc6e923f03d734dc5d4d722be8",{"version":"7402e6ca4224d9c8cdd742afd0b656470ea6a5efe2229644418198715bb4b557","affectsGlobalScope":true},"ff3cf23fe0b78c3fe62709510896ff80dd961ae7d748a882daeff1798166833f",{"version":"a36a403b346c945b67efcda76ae43a15316c943d8a06532597060c35008f8e35","affectsGlobalScope":true},"177c82501c421616434fe8cc5d8a1e4b9d51909453ea0625341dc99b2ad749b9",{"version":"242b00f3d86b322df41ed0bbea60ad286c033ac08d643b71989213403abcdf8a","affectsGlobalScope":true},"9b18ba75eec34cd8fa881bdb126837ed7610616898efffb6d58c58ad197a74c7",{"version":"4dc6e0aeb511a3538b6d6d13540496f06911941013643d81430075074634a375","affectsGlobalScope":true},"aa98d733987e236702e22da965a9b31189e902f7a3605e739e094d96be04996c",{"version":"7ed57d9cb47c621d4ef4d4d11791fec970237884ff9ef7e806be86b2662343e8","affectsGlobalScope":true},"85812ad39d1c43b57bfed8912b29ab2612b037bf185ed69caa05c2f0bf308f03",{"version":"5bd49ff5317b8099b386eb154d5f72eca807889a354bcee0dc23bdcd8154d224","affectsGlobalScope":true},"e8dff8cdd063231407e6e76d7fccf4c060e18df5e8c945314d3fa51471a0b064",{"version":"a8446946faa5c737e9de8c62655c8e4b25af4595eaf21259b9da514e86cb4902","affectsGlobalScope":true},"bd9f42434fc05f2052263855d07a26c3afa6296d1d0b07bb7dc38db9092462f0",{"version":"045db1a7ce9c226c6b7d3f9fda8d2b811c269a2ae4d3ab17848b8688adf45c04","affectsGlobalScope":true},"06471351c1182e5c9db959dd7b4baf757e87207e62d6dbf437780230dd655f8b",{"version":"8b4fb5ea52378ed4322f332dbeb8d83e45efdac5c8f5d485cb733f9ff6a92919","affectsGlobalScope":true},"09cad5a2d2df9766b580b4c06fae5a49475063faa88387bfb2cecb5339a6879d",{"version":"31139dde9f2b6675e0941384c26e5675fae48d5bce9b97e0ced16ee8ca2e4579","affectsGlobalScope":true},"406aec8c588a96008325e808db7aa2e16ed8cc57913c85471dec380f7213f936",{"version":"725128203f84341790bab6555e2c343db6e1108161f69d7650a96b141a3153be","affectsGlobalScope":true},"3d757b2bca54f0665f4cfef0268a46f945dce6a35c0df966c70d4d25332d18b8",{"version":"78365ae83661fc1f12d076527cfaf47fe4308709f66726b17bcb7ff9d381c5cf","affectsGlobalScope":true},"8eda6e4644c03f941c57061e33cef31cfde1503caadb095d0eb60704f573adee",{"version":"0538a53133eebb69d3007755def262464317adcf2ce95f1648482a0550ffc854","affectsGlobalScope":true},"1e4fed05a6467475809f42069f770d96f8d910a1f661c49be03f457efae3cbd1",{"version":"7a204f04caa4d1dff5d7afbfb3fcbbe4a2eb6b254f4cd1e3bdcfe96bb3399c0b","affectsGlobalScope":true},"5268ad818d25d4b10ac1dd70db380d04ae0404e7b4132b03417859439f354137",{"version":"220f860f55d18691bedf54ba7df667e0f1a7f0eed11485622111478b0ab46517","affectsGlobalScope":true},"cc6767bb7cd44f72dbdaec4616b415001173c3c78f5923b32ba4a73034d6c4e2",{"version":"e76993aca4bb0eb6e13094583e1724d8b3f0ab070a91e5210cddfb3927f89f1c","affectsGlobalScope":true},"caa3b228223753833153854dee221bbc5151b57105b95dd49c0eb893f0ad95c2",{"version":"20b41a2f0d37e930d7b52095422bea2090ab08f9b8fcdce269518fd9f8c59a21","affectsGlobalScope":true},"3ebb7d1bf4d2d1070d3fd88629000a1ebfd4a4abaee36e23b7e39badb22c3047",{"version":"36a721c16b519a4825846e42abbc8743138f44df623fa95091e36addaf57282b","affectsGlobalScope":true},"855391e91f3f1d3e5ff0677dbd7354861f33a264dc9bcd6814be9eec3c75dc96",{"version":"ebb2f05e6d17d9c9aa635e2befe083da4be0b8a62e47e7cc7992c20055fac4f0","affectsGlobalScope":true},"6654d019ede1e448ed6fb3eaa0bcd955a596201df89d0ff33255d57fbfa13990",{"version":"7c22044ff0e993d50e5583390bccb3e5d510df0aaf1efe91a44d9a0a326ba692","affectsGlobalScope":true},"cca57c70604d33e7cbe52522429585e2f94170e53713b8344b9fe384971c84e3",{"version":"261511e94ac5436a0354a30df4740e8dc1343a5eb1a9d250bf1c4d7c8cde65b3","affectsGlobalScope":true},"b6051a1eb1824913a4c2545ebadd56c76682be493919547bc46a2f13720047a8",{"version":"867b000c7a948de02761982c138124ad05344d5f8cb5a7bf087e45f60ff38e7c","affectsGlobalScope":true},"a40c8c5f6e4c013f3389ae7b3c992e3b82dceec8600cc677373984962d09e612",{"version":"02c22afdab9f51039e120327499536ac95e56803ceb6db68e55ad8751d25f599","affectsGlobalScope":true},"fc5f2d980a9cbb493a6f4c4de8b091fb89c6f3b270037cbd48d8f2605494fc20",{"version":"37129ad43dd9666177894b0f3ce63bba752dc3577a916aa7fe2baa105f863de3","affectsGlobalScope":true},"bb2706d102f6289abd9bf47d0396fb9dfae1cca263701b93a10d26f4e6ed83f8",{"version":"7832e8fe1841bee70f9a5c04943c5af1b1d4040ac6ff43472aeb1d43c692a957","affectsGlobalScope":true},"8a6da47ee83b6641e86df2f8ad4e6bdc210e942413e34276769a85ca51835950",{"version":"013853836ed002be194bc921b75e49246d15c44f72e9409273d4f78f2053fc8f","affectsGlobalScope":true},"d7a15dde353cee9f9346bb01b0851faa0a02abbaecf3490727ae383e5cad2fd1",{"version":"e08392a815b5a4a729d5f8628e3ed0d2402f83ed76b20c1bf551d454f59d3d16","affectsGlobalScope":true},"6f29f39c855519671fcdb1ce863a19d6c48c725f62777d8b25da730c06ad4dbf",{"version":"f366ca25885ab7c99fc71a54843420be31df1469f8556c37d24f72e4037cb601","affectsGlobalScope":true},"67f8d9e040b1de170fdcf8ce74aad87a5d4091e92cfbefc955adfd9c9ee12003",{"version":"d604893d4e88daade0087033797bbafc2916c66a6908da92e37c67f0bad608db","affectsGlobalScope":true},"f2062723399c7f826f7eb286c3bae264bf9c51d1ef2b793a79026e8619c9d7cb",{"version":"dc265f24d2ddad98f081eb76d1a25acfb29e18f569899b75f40b99865a5d9e3b","affectsGlobalScope":true},"e4c9a0c911e261c94664c5e79ff71efdbf414ff4efbc3384a7a5fe1b34fbf86a",{"version":"741bdf50041904fa413899635eb4fc123170c6b99e7f8ee7a87b55aae9c70e6b","affectsGlobalScope":true},"c372d0603a34d8cf17b896a4f247d123c01949322f2c616ea5d8ce9e7fb07e3c",{"version":"41ffc155348dd4993bc58ee901923f5ade9f44bc3b4d5da14012a8ded17c0edd","affectsGlobalScope":true},"50975059bb27c14be5e26675d090b658f02f1e23d53adfca9cc909ca503dbee5",{"version":"3e8e0655ed5a570a77ea9c46df87eeca341eed30a19d111070cf6b55512694e8","affectsGlobalScope":true},"bf0f1835e8e2fa4a4e7deaddc6e8d5379f1a643bc15254d442ffb0a1e83306be","3f35a7028a26080f7bd4cd94d15d44285588a5cfe6ef97b7c0e5255f89739807",{"version":"cc4c74d1c56e83aa22e2933bfabd9b0f9222aadc4b939c11f330c1ed6d6a52ca","affectsGlobalScope":true},"2c845919985bc55394a5df3927e64eceb8c3b0ecc7726ad68958c0d78992841c",{"version":"f6266ada92f0c4e677eb3fbf88039a8779327370f499690bf9720d6f7ad5f199","affectsGlobalScope":true},"a36c8ce9c6cfdb68afa6cf3c574bd1dd2725f994c77420414c785faed0858745",{"version":"f2eac49e9caa2240956e525024bf37132eae37ac50e66f6c9f3d6294a54c654c","affectsGlobalScope":true},"c8529a79a4273c3f80e7c172f679d24f34b3ffaab9222317280d3c2f2e4a3e98",{"version":"99a71914dd3eb5d2f037f80c3e13ba3caff0c3247d89a3f61a7493663c41b7ea","affectsGlobalScope":true},"16f14bfcc76ae21e951d55a615eb4e58289f87e3d0bf76e5d9e3a1b3eb163040",{"version":"399d6f0a7a326ff63d309323f04a65be7d93933e97ad97b963dfea7cd13dee0c","affectsGlobalScope":true},"6527022e052c44a3b1fe158a64a0fee2369308b192706555d81db7495dbc02f4","a5380359e9c125db37e4cffb4f7c8e74fab22a59bb468c078a2a98419baf5929",{"version":"bba30304a5ad2f7f319db7478616366b6318cf58010448cc96dde07d83b3602b","affectsGlobalScope":true},"41295c6dd1bab63f5274514b2390f8a8f92a3148fff01e26d982576daf9595a3","6a4f941252fa12a5e6ac4f4ccf4016199c0258434c517b844cd70f6d0fe0b2f6",{"version":"78402a74c2c1fc42b4d1ffbad45f2041327af5929222a264c44be2e23f26b76a","affectsGlobalScope":true},"cc93c43bc9895982441107582b3ecf8ab24a51d624c844a8c7333d2590c929e2",{"version":"c5d44fe7fb9b8f715327414c83fa0d335f703d3fe9f1045a047141bfd113caec","affectsGlobalScope":true},"f8b42b35100812c99430f7b8ce848cb630c33e35cc10db082e85c808c1757554",{"version":"ba28f83668cca1ad073188b0c2d86843f9e34f24c5279f2f7ba182ff051370a4","affectsGlobalScope":true},"349b276c58b9442936b049d5495e087aef7573ad9923d74c4fbb5690c2f42a2e",{"version":"ad8c67f8ddd4c3fcd5f3d90c3612f02b3e9479acafab240b651369292bb2b87a","affectsGlobalScope":true},"1954f24747d14471a5b42bd2ad022c563813a45a7d40ba172fc2e89f465503e2",{"version":"05bbb3d4f0f6ca8774de1a1cc8ba1267fffcc0dd4e9fc3c3478ee2f05824d75d","affectsGlobalScope":true},"52cd63ca2640be169c043b352573f2990b28ba028bae123a88970dd9b8404dc9",{"version":"154145d73e775ab80176a196c8da84bfc3827e177b9f4c74ddfac9c075b5b454","affectsGlobalScope":true},"89d80fcd9316e1cfad0b51c524a01da25f31dfcf669a4a558be0eb4c4d035c34",{"version":"177f63e11e00775d040f45f8847afdb578b1cac7ab3410a29afe9b8be07720f0","affectsGlobalScope":true},"37e69b0edd29cbe19be0685d44b180f7baf0bd74239f9ac42940f8a73f267e36",{"version":"afba2e7ffca47f1d37670963b0481eb35983a6e7d043c321b3cfa2723cab93c9","affectsGlobalScope":true},"bb146d5c2867f91eea113d7c91579da67d7d1e7e03eb48261fdbb0dfb0c04d36",{"version":"90b95d16bd0207bb5f6fedf65e5f6dba5a11910ce5b9ffc3955a902e5a8a8bd5","affectsGlobalScope":true},"3698fee6ae409b528a07581f542d5d69e588892f577e9ccdb32a4101e816e435",{"version":"26fc7c5e17d3bcc56ed060c8fb46c6afde9bc8b9dbf24f1c6bdfecca2228dac8","affectsGlobalScope":true},"46fd8192176411dac41055bdb1fdad11cfe58cdce62ccd68acff09391028d23f",{"version":"22791df15401d21a4d62fc958f3683e5edc9b5b727530c5475b766b363d87452","affectsGlobalScope":true},"b152da720b9df12994b65390bb47bbb1d7682a3b240a30f416b59c8fc6bc4e94","cb5f3c154d6948d4c04e97e0ae98e4220d6d11236fd1dddc0bc27d0a422210cf",{"version":"8491a961bff05416800362848049def1c11e95e3dc99aa56a8a239923742f7d2","affectsGlobalScope":true},"4d67dd3321c50c001037dfd3b7415446c0db3cd2a8eb8f126d809f8070a34c5d","4aaf6fd05956c617cc5083b7636da3c559e1062b1cadba1055882e037f57e94c","339e8e27ec03ea152417bf26cf2c7d3707077b91bcbd016930e5275c63705e47",{"version":"d4ce8dfc241ebea15e02f240290653075986daf19cf176c3ce8393911773ac1b","affectsGlobalScope":true},{"version":"52cd0384675a9fa39b785398b899e825b4d8ef0baff718ec2dd331b686e56814","affectsGlobalScope":true},{"version":"89fc1135bfc61a26b9e57c4ff1c87091bb01278ec566d46563046ea886f94d68","affectsGlobalScope":true},"10db42a459a3ed193aeca900bac7669ceffe5b0172fb48ca4f6dbba66cacdf51",{"version":"dcc56dd46eeec44d48904e80969c9743be2fe4732a33c8aa2c5278ac8e06033a","affectsGlobalScope":true},{"version":"769c459185e07f5b15c8d6ebc0e4fec7e7b584fd5c281f81324f79dd7a06e69c","affectsGlobalScope":true},"18c8ea5184ab9025f215e9f3759ef6b148e44583f02998314c13c387a6fa1c10","8ae46c432d6a66b15bce817f02d26231cf6e75d9690ae55e6a85278eb8242d21"],"root":[324],"options":{"inlineSources":true,"module":99,"noEmitOnError":false,"noImplicitAny":false,"noImplicitThis":true,"outDir":"../../../../.uvue/app-android","rootDir":"../../../../.tsc/app-android","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"tsBuildInfoFile":"./.tsbuildInfo","useDefineForClassFields":false},"fileIdsList":[[46,48,50,318,319,321],[129,141,314,317,319,321,322],[64,66],[128],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127],[59,60,61,62,63,65,67],[104],[66,70],[106],[122],[65,66,77],[67],[66,75],[59,60,61,62,63,66,67,75,76],[105],[66],[76,77,119],[63,67,107,109],[58,63,68,75,102,103,107],[108],[68],[62,66],[66,67],[66,77],[66,75,76,77],[70],[46,48,50,318,319,320],[316],[315],[142,143,274,285,288,311,313],[312],[145,147,149,151,153,155,157,159,161,163,165,167,169,171,173,175,177,179,181,183,185,187,189,191,193,195,197,199,201,203,205,207,209,211,213,215,217,219,221,223,225,227,229,231,233,235,237,239,241,243,245,247,249,251,253,255,257,259,261,263,265,267,269,271,273],[144],[146],[148],[150],[152],[154],[156],[158],[160],[162],[164],[166],[168],[170],[172],[174],[176],[178],[180],[182],[184],[186],[188],[190],[192],[194],[196],[198],[200],[202],[204],[206],[208],[210],[212],[214],[216],[218],[220],[222],[224],[226],[228],[230],[232],[234],[236],[238],[240],[242],[244],[246],[248],[250],[252],[254],[256],[258],[260],[262],[264],[266],[268],[270],[272],[276,278,280,282,284],[275],[277],[279],[281],[283],[287],[286],[290,292,294,296,298,300,302,304,306,308,310],[309],[297],[293],[291],[307],[299],[295],[301],[303],[289],[305],[70,77],[140],[130,131,132,133,134,135,136,137,138,139],[77],[70,77,126],[51,52,53,54,55],[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27],[46,48,50,319,321],[44],[44,45,46,48],[41,48,49,50],[42],[41,46,48,319,321],[45,46,47,50,319,321],[29,30,31,32,33,34,35,36,37,38,39],[33],[36],[33,35]],"referencedMap":[[319,1],[323,2],[65,3],[129,4],[128,5],[66,6],[105,7],[125,8],[107,9],[123,10],[121,11],[70,12],[103,13],[77,14],[106,15],[67,16],[120,17],[118,12],[117,12],[116,12],[115,12],[114,12],[113,12],[112,12],[111,18],[108,19],[110,12],[68,12],[109,20],[102,21],[101,12],[99,12],[98,12],[97,22],[96,12],[95,12],[94,12],[93,12],[92,23],[91,12],[90,12],[89,12],[88,12],[86,24],[87,12],[84,12],[83,12],[82,12],[85,25],[81,12],[80,16],[79,26],[78,24],[74,26],[73,26],[72,26],[71,26],[69,21],[321,27],[317,28],[316,29],[314,30],[313,31],[274,32],[145,33],[147,34],[149,35],[151,36],[153,37],[155,38],[157,39],[159,40],[161,41],[163,42],[165,43],[167,44],[169,45],[171,46],[173,47],[175,48],[177,49],[179,50],[181,51],[183,52],[185,53],[187,54],[189,55],[191,56],[193,57],[195,58],[197,59],[199,60],[201,61],[203,62],[205,63],[207,64],[209,65],[211,66],[213,67],[215,68],[217,69],[219,70],[221,71],[223,72],[225,73],[227,74],[229,75],[231,76],[233,77],[235,78],[237,79],[239,80],[241,81],[243,82],[245,83],[247,84],[249,85],[251,86],[253,87],[255,88],[257,89],[259,90],[261,91],[263,92],[265,93],[267,94],[269,95],[271,96],[273,97],[285,98],[276,99],[278,100],[280,101],[282,102],[284,103],[288,104],[287,105],[311,106],[310,107],[298,108],[294,109],[292,110],[308,111],[300,112],[296,113],[302,114],[304,115],[290,116],[306,117],[130,118],[141,119],[140,120],[131,118],[132,118],[133,118],[134,118],[135,118],[137,121],[138,122],[136,121],[56,123],[28,124],[47,125],[45,126],[46,127],[324,128],[43,129],[50,130],[48,131],[40,132],[35,133],[34,133],[37,134],[36,135],[39,135]],"exportedModulesMap":[[319,1],[323,2],[65,3],[129,4],[128,5],[66,6],[105,7],[125,8],[107,9],[123,10],[121,11],[70,12],[103,13],[77,14],[106,15],[67,16],[120,17],[118,12],[117,12],[116,12],[115,12],[114,12],[113,12],[112,12],[111,18],[108,19],[110,12],[68,12],[109,20],[102,21],[101,12],[99,12],[98,12],[97,22],[96,12],[95,12],[94,12],[93,12],[92,23],[91,12],[90,12],[89,12],[88,12],[86,24],[87,12],[84,12],[83,12],[82,12],[85,25],[81,12],[80,16],[79,26],[78,24],[74,26],[73,26],[72,26],[71,26],[69,21],[321,27],[317,28],[316,29],[314,30],[313,31],[274,32],[145,33],[147,34],[149,35],[151,36],[153,37],[155,38],[157,39],[159,40],[161,41],[163,42],[165,43],[167,44],[169,45],[171,46],[173,47],[175,48],[177,49],[179,50],[181,51],[183,52],[185,53],[187,54],[189,55],[191,56],[193,57],[195,58],[197,59],[199,60],[201,61],[203,62],[205,63],[207,64],[209,65],[211,66],[213,67],[215,68],[217,69],[219,70],[221,71],[223,72],[225,73],[227,74],[229,75],[231,76],[233,77],[235,78],[237,79],[239,80],[241,81],[243,82],[245,83],[247,84],[249,85],[251,86],[253,87],[255,88],[257,89],[259,90],[261,91],[263,92],[265,93],[267,94],[269,95],[271,96],[273,97],[285,98],[276,99],[278,100],[280,101],[282,102],[284,103],[288,104],[287,105],[311,106],[310,107],[298,108],[294,109],[292,110],[308,111],[300,112],[296,113],[302,114],[304,115],[290,116],[306,117],[130,118],[141,119],[140,120],[131,118],[132,118],[133,118],[134,118],[135,118],[137,121],[138,122],[136,121],[56,123],[28,124],[47,125],[45,126],[46,127],[324,128],[43,129],[50,130],[48,131],[40,132],[35,133],[34,133],[37,134],[36,135],[39,135]],"semanticDiagnosticsPerFile":[319,318,323,104,65,61,62,59,129,127,128,66,105,126,125,107,75,76,64,60,122,123,63,121,70,103,77,106,67,119,120,118,117,116,115,114,113,112,111,108,110,68,109,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,86,87,84,83,82,85,81,80,79,78,74,73,72,71,69,124,58,57,321,322,317,316,315,142,143,314,313,312,274,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,257,256,259,258,261,260,263,262,265,264,267,266,269,268,271,270,273,272,285,276,275,278,277,280,279,282,281,284,283,288,287,286,311,310,309,298,297,294,293,292,291,308,307,300,299,296,295,302,301,304,303,290,289,306,305,320,130,141,140,139,131,132,133,134,135,137,138,136,51,56,52,53,54,55,1,16,2,28,3,26,4,5,17,18,6,20,21,19,27,7,8,9,10,11,12,13,14,24,25,22,23,15,47,45,46,44,324,42,43,50,49,48,41,40,31,35,32,33,34,37,36,38,39,30,29]},"version":"5.2.2"}
\ No newline at end of file
+{"program":{"fileNames":["d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/boolean.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/console.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/date.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/error.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/json.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/map.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/math.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/number.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/regexp.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/set.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/string.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/timers.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/utsjsonobject.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/arraybuffer.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/float32array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/float64array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/int8array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/int16array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/int32array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint8array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint8clampedarray.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint16array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/uint32array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/dataview.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/iterable.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/common/common.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/shims.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es5.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.collection.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.promise.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.symbol.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.symbol.wellknown.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2015.iterable.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2018.asynciterable.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2018.asyncgenerator.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2018.promise.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/lib.es2020.symbol.wellknown.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/shims/index.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uts/index.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/hbuilder-x/hbuilderx.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/hbuilder-x/index.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/shared/dist/shared.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/reactivity/dist/reactivity.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/runtime-core/dist/runtime-core.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/@vue/global.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/vue.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/shims/common.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/shims/app-android.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/array.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/utsactivitycallback.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/utsandroid.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/utsandroidhookproxy.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-js/utsjs.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uts-types/app-android/index.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/webviewstyles.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/viewtotempfilepathoptions.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/drawablecontext.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/snapshotoptions.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/cssstyledeclaration.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/domrect.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unicallbackwrapper.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/path2d.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/canvasrenderingcontext2d.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iunielement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unievent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipageevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewservicemessageevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unicustomevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewmessageevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewloadingevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewloadevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewerrorevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/nodedata.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/pagenode.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unielement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniwebviewdownloadevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/univideoelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitouchevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextarealinechangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextareafocusevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextareablurevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitextelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitabselement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unitabtapevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniswipertransitionevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniswiperchangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniswiperanimationfinishevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unistopnestedscrollevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unistartnestedscrollevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniscrolltoupperevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniscrolltolowerevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniscrollevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unirichtextitemclickevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniresizeobserver.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniresizeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unirefresherevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniprovider.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipointerevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipagescrollevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unidocument.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/asyncapiresult.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iunierror.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unierror.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/nativeloadfontfaceoptions.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uninativepage.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unipagemanager.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uninestedprescrollevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uninativeapp.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputkeyboardheightchangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputfocusevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputconfirmevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniinputblurevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniimageloadevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniimageerrorevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniformcontrol.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniformcontrolelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/unicanvaselement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/sourceerror.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/uniaggregateerror.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/utsandroidhookproxy.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iuninativeviewelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/iuniform.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/inavigationbar.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/index.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/native/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/checkboxgroupchangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/pickerviewchangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/progressactiveendevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/radiogroupchangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/sliderchangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/switchchangeevent.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/uninavigatorelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/uniclouddbelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/uniformelement.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/lifecycle.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/index.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/vue/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/base/index.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/env/index.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-addphonecontact/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-addphonecontact/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-arraybuffertobase64/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-arraybuffertobase64/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-base64toarraybuffer/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-base64toarraybuffer/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-chooselocation/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-chooselocation/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-clipboard/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-clipboard/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-crash/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-crash/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createinneraudiocontext/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createinneraudiocontext/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createintersectionobserver/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createintersectionobserver/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createrequestpermissionlistener/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createrequestpermissionlistener/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createselectorquery/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createselectorquery/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createwebviewcontext/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-createwebviewcontext/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-dialogpage/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-dialogpage/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-event/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-event/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-exit/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-exit/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-file/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-file/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-filesystemmanager/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-filesystemmanager/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getaccessibilityinfo/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getaccessibilityinfo/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappauthorizesetting/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappauthorizesetting/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappbaseinfo/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getappbaseinfo/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getbackgroundaudiomanager/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getbackgroundaudiomanager/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getdeviceinfo/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getdeviceinfo/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getelementbyid/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getelementbyid/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getenteroptionssync/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getenteroptionssync/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlaunchoptionssync/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlaunchoptionssync/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-system/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-system/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent-uni1/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent-uni1/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation-tencent/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getlocation/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getnetworktype/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getnetworktype/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getperformance/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getperformance/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getprovider/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getprovider/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getrecordermanager/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getrecordermanager/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsysteminfo/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsysteminfo/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsystemsetting/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-getsystemsetting/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-installapk/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-installapk/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-interceptor/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-interceptor/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-loadfontface/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-loadfontface/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-makephonecall/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-makephonecall/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-media/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-navigationbar/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-navigationbar/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-network/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth-huawei/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth-huawei/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-openappauthorizesetting/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-openappauthorizesetting/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-opendocument/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-opendocument/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pagescrollto/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pagescrollto/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-alipay/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-alipay/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-huawei/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-huawei/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-wxpay/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment-wxpay/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-payment/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pulldownrefresh/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-pulldownrefresh/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-route/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-rpx2px/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-rpx2px/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-scancode/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-scancode/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-sharewithsystem/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-sharewithsystem/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-storage/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-storage/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-tabbar/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-tabbar/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-theme/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-theme/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-virtualpayment/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-virtualpayment/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-api/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-ad/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-ad/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-facialrecognitionverify/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-facialrecognitionverify/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-map-tencent/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-map-tencent/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-push/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-push/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-biz/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-component/lib/uni-video/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-component/lib/uni-video/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-component/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-openlocation/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-openlocation/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-compass/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-compass/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-canvas/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-canvas/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-locale/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-locale/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-getbackgroundaudiomanager/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-getbackgroundaudiomanager/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-localechange/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-localechange/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-preloadpage/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-preloadpage/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-createmediaqueryobserver/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-createmediaqueryobserver/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-__f__/utssdk/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/lib/uni-__f__/utssdk/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uts-plugin-extend/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uni-map-tencent-map.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/uni-map-tencent-global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni/global.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni-cloud/unicloud-db/index.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni-cloud/interface.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/uni-cloud/index.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/common.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/app.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/unipage.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/page.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/process.d.ts","d:/软件安装包/hbuilderx/plugins/hbuilderx-language-services/builtin-dts/uniappx/node_modules/@dcloudio/uni-app-x/types/index.d.ts","d:/软件安装包/hbuilderx/plugins/uniapp-uts-v1/node_modules/@dcloudio/uni-uts-v1/lib/uts/types/uni-x/app-android.d.ts"],"fileInfos":[{"version":"697a13c6dcb1659c5c9b4c0bf423c12e70cc1d99a047cc1ac79d59bf5162703e","affectsGlobalScope":true},{"version":"6410a594bfd22fb12e3334378f7348e8f788823b9c0025e126718f807500d04b","affectsGlobalScope":true},{"version":"d3e1ff2a13f83b14ec1fb0fc7f3fecf6cba86c375cd5859f8ebba76e7e63af8b","affectsGlobalScope":true},{"version":"03dc998570e1758dcaad4dbe04497c00135581851f951df5d09dbea4c3f1398c","affectsGlobalScope":true},{"version":"173b34be3df2099c2da11fb3ceecf87e883bd64f5219c0ee7bc6add9bc812cde","affectsGlobalScope":true},{"version":"4b1be6e9f18cc02ca5aa88527cb40d5caa83a185ca9fd0e259ec4c9255d3564d","affectsGlobalScope":true},{"version":"678dba370c8fc27440a9a8504ace43bf8ddfd494a9add43cbe154234aeff436f","affectsGlobalScope":true},{"version":"9d1012759f6b154793d976b63602b3b9d7186c83a5d6be8489dc8dedfa128f2f","affectsGlobalScope":true},{"version":"78522750655dea0e7a4ae166045d3c26059f274221806df75d798618c139814c","affectsGlobalScope":true},{"version":"54d09077240fb49aa1d67fbbfc7c268d13f129b9fd6018cdea0a53aa42f3dfec","affectsGlobalScope":true},{"version":"c9c8b406139577e4fa32b52b110367bba2df72ea55679c705f6f57a3089b13f8","affectsGlobalScope":true},{"version":"edc9b456902d54542fbc0e65c92aceb9bf4bb4c2a05ac1e120f377a5c1dc0af0","affectsGlobalScope":true},{"version":"8966af49ef2d67a5985bd8db7af2ebdb002dd0ee038687553676aecb05c6a68d","affectsGlobalScope":true},{"version":"c9282d2a742f47bbc88683b5261a536e92a831921bc206e9d01baef64fe9bc7d","affectsGlobalScope":true},{"version":"bac8e74783f55c4e4cf796c667ec0c490192640b47102fe428b73deeeb32f6a7","affectsGlobalScope":true},{"version":"7fb56e3ddad0d2f99cd61f6c40805d15bf9b98c60e332dc11c2b6cd676b619a0","affectsGlobalScope":true},{"version":"dd4a4c0cb354520e1fb9e8d657817970bb5a65bfe51a440ca601c649f47e62c2","affectsGlobalScope":true},{"version":"4c468dbbe01f6655853439cbb429eee83bbbe55254d93cbeb3ea43fdaa9525bc","affectsGlobalScope":true},{"version":"b1b71a9e7cb04db90d3a3a4b46b3b16fc733a179b238fc572f956e08a0dbc91c","affectsGlobalScope":true},{"version":"90f572abc03bc19a83febf49181c19f067f21c259d1c031b9f39c58c1f90a4cc","affectsGlobalScope":true},{"version":"27472c9668c5abb1caee9dbd89d2ec3e49c9c8b5a010ffb3e96e645221d39d60","affectsGlobalScope":true},{"version":"bc34a03536169ac1bc436161a0526fda8fbd1ad16146498921640a7d9b1f2149","affectsGlobalScope":true},{"version":"3a6a8d8f3a2e91545c6033e6582ea711b6737ecb07da1494dd87baed3bf107fa","affectsGlobalScope":true},{"version":"b20c1e35fff11f7f13deab16dd4cfdeb039254b6fd820f538c75e004c26027b8","affectsGlobalScope":true},{"version":"da959460dc6ddeaf1ac488a4231416336becb3366c4624279b13500edb1ee17c","affectsGlobalScope":true},{"version":"f7f50a3c9b96a7e1056678b000998c5caef583dd3b39c3936e1f6191ffefa8d0","affectsGlobalScope":true},{"version":"e7615f1e8d08ff5637778b350910041817efe8cd9c0f44e1800670fc33003dfa","affectsGlobalScope":true},"db8eb85d3f5c85cc8b2b051fde29f227ec8fbe50fd53c0dc5fc7a35b0209de4a",{"version":"8b46e06cc0690b9a6bf177133da7a917969cacbd6a58c8b9b1a261abd33cb04d","affectsGlobalScope":true},{"version":"c2e5d9c9ebf7c1dc6e3f4de35ae66c635240fe1f90cccc58c88200a5aa4a227c","affectsGlobalScope":true},{"version":"c5277ad101105fbcb9e32c74cea42b2a3fbebc5b63d26ca5b0c900be136a7584","affectsGlobalScope":true},{"version":"46a47bc3acc0af133029fb44c0c25f102828995c1c633d141ac84240b68cdfad","affectsGlobalScope":true},{"version":"bf7e3cadb46cd342e77f1409a000ea51a26a336be4093ee1791288e990f3dadf","affectsGlobalScope":true},{"version":"3fb65674722f36d0cc143a1eb3f44b3ab9ecd8d5e09febcfbc0393bec72c16b5","affectsGlobalScope":true},{"version":"daf924aae59d404ac5e4b21d9a8b817b2118452e7eb2ec0c2c8494fb25cb4ab3","affectsGlobalScope":true},{"version":"120ddb03b09c36f2e2624563a384123d08f6243018e131e8c97a1bb1f0e73df5","affectsGlobalScope":true},{"version":"0daef79ef17e2d10a96f021096f6c02d51a0648514f39def46c9a8a3018196be","affectsGlobalScope":true},{"version":"571605fec3d26fc2b8fbffb6aa32d2ef810b06aa51c1b0c3c65bbc47bd5b4a5e","affectsGlobalScope":true},{"version":"51536e45c08d8b901d596d8d48db9ab14f2a2fd465ed5e2a18dda1d1bae6fe5a","affectsGlobalScope":true},"897a4b80718f9228e992483fefa164d61e78548e57fbf23c76557f9e9805285e","ab2680cfdaea321773953b64ec757510297477ad349307e93b883f0813e2a744",{"version":"8a931e7299563cecc9c06d5b0b656dca721af7339b37c7b4168e41b63b7cfd04","affectsGlobalScope":true},"7da94064e1304209e28b08779b3e1a9d2e939cf9b736c9c450bc2596521c417f","7cce3fa83b9b8cad28998e2ffa7bb802841bb843f83164ba12342b51bf3ae453","dc44a5ac4c9a05feede6d8acf7e6e768ca266b1ce56030af1a3ab4138234bf45",{"version":"451f4c4dd94dd827770739cc52e3c65ac6c3154ad35ae34ad066de2a664b727a","affectsGlobalScope":true},{"version":"228e6b61cb0eeb386a9e0818b485f7ea839d1cb5e56112ef341e215a1d98319e","affectsGlobalScope":true},{"version":"0c26e42734c9bf81c50813761fc91dc16a0682e4faa8944c218f4aaf73d74acf","affectsGlobalScope":true},{"version":"af11b7631baab8e9159d290632eb6d5aa2f44e08c34b5ea5dc3ac45493fffed5","affectsGlobalScope":true},{"version":"b1d7cf111ab4f55f5a4a2168d398122f944581ab523261e76b52d7fd1fc1677b","affectsGlobalScope":true},{"version":"b2bd4feee4a879f0ec7dfaf3ea564644f708dcfef8ef850a069877bd0dc29bdc","affectsGlobalScope":true},{"version":"e106482e04c23300c1544bc89ce83b9ae46e2f39e3b2b2c890cd9b69494a3cc0","affectsGlobalScope":true},"374921e9f915c42c9bc8af9b2c546d091afd75f43be29d915d25ecb1964e7956",{"version":"fd45f5d7408b4ade5b812478e612b59801d371e4b8e467cf1b1aca46acd1564a","affectsGlobalScope":true},{"version":"b9241ecb5024beeaeb98fb558000dbc55e650576e572d194508f52807af6bcba","affectsGlobalScope":true},"e29267438b18703287cd3b9cd05627bec136ac5ea107bf9a5321205e0e46f203","e0e39118af4d0ed66b8c96a2716fc58bbbdac0bc38c8550a5fb5035aad4827d4","f8cc7ac396a3ea99a6959ddbaf883388260e035721216e5971af17db61f11f0b","d899ec00224a7e6f4391371c039e9cbfb6b21d730815ffe222e9d1938bb17cc0","ea4facc7918e50e285a4419f7bc7ffdf978385899a3cf19ef7d7b782b896616d","1c6d38746a6f7202e7e2d18fea41a0d7b28560de879b7f03a9a652c16207f1fe","9a2f58ccb521c15cd8f30dc83618e614eba8c5323d1d38354b2184908032abdf","33b7db19877cf2f9306524371fcfc45dcb6436c8e905472ede7346c9f044bf20","2d5546a0d61aeab766a5acd88c983535101fbefe259935a4a6433c65a451889e","bff000a3f167e6df718d13f113ccaf9d3f08868fe9a08541b44e3d0d232d273e","2c612ea298e053ffec67a3704c2c0bfc74f9e8bcded1ca9362b11251b0401a5d","95f0df8e685a2c5cd1612b83d9a1937676557210d633e4a151e8670650c3b96d","e311e90ded1cd037cbece1bc6649eaa7b65f4346c94ae81ba5441a8f9df93fa3","8eb08fff3569e1b9eddb72e9541a21e9a88b0c069945e8618e9bc75074048249","d596c650714d80a93a2fe15dce31ed9a77c2f2b1b9f4540684eaf271f05e2691","8f9fb9a9d72997c334ca96106095da778555f81ac31f1d2a9534d187b94e8bf6","aea632713de6ee4a86e99873486c807d3104c2bf704acef8d9c2567d0d073301","1adb14a91196aa7104b1f3d108533771182dc7aaea5d636921bc0f812cfee5f5","8d90bb23d4e2a4708dbf507b721c1a63f3abd12d836e22e418011a5f37767665","8cb0d02bb611ea5e97884deb11d6177eb919f52703f0e8060d4f190c97bb3f6c","78880fa8d163b58c156843fda943cc029c80fac5fb769724125db8e884dce32d","90b8332c8929b81a0f6e438a6101578b61c5a7784748110fae8ec1ebb85dd21a","519480db65853df00fb314217406ca7abdcb12606414a53278b61933e44a988c","9d3db8aef76e0766621b93a1144069623346b9cfccf538b67859141a9793d16d","8868c445f34ee81895103fd83307eadbe213cfb53bbc5cd0e7f063e4214c49b0","277990f7c3f5cbbf2abd201df1d68b0001ff6f024d75ca874d55c2c58dd6e179","a31dfa9913def0386f7b538677c519094e4db7ce12db36d4d80a89891ef1a48f","f4c0c7ee2e447f369b8768deed1e4dd40b338f7af33b6cc15c77c44ff68f572d","2f268bd768d2b35871af601db7f640c9e6a7a2364de2fd83177158e0f7b454dc","dd591496573e7e1d5ff32c4633d663c91aef86dad520568ef344ce08bba21218","a004a3b60f23fcfb36d04221b4bef155e11fd57293ba4f1c020a220fadf0fc85","4e145e72e5600a49fa27282d63bb9715b19343d8826f91be0f324af73bc25322","62f734f7517d2ca3bf02abddaf8abf7e3de258667a63e8258373658bbb9153b6","ea9599ac048381647dca742eefdc602fdcafadb75d408592026da89accd1d599","7e72ef2b8a998108f132839c3fcf2cd47f917008ecba5f6ffed5c22e443a714d","781b566c3eccba1a2cafbb827fb6fc02d5147c89a40e11c7892057481a195270","c9befaf90879c27ee3f7f12afd15b4531fbbea9ec37d145b83807a67d9f55c82","8630f26d1038328e6b9da9c082f6fa911903bc638499baa6cfab002b5a70af96","73474d70a9b4f02771119085c4cd7562be4169e7973544c9541341ca2931aa3d","54da497c3b3b94fae91a66ed222e21411dc595a17f9e6bd229e233d0de732691","803da2f4e024efa2edc55c67d35c5240e7ae599baf9263b453acd02127a582e9","23ee02cf6dc1ea5e0937cbf4e235ceaa34b4529fce82a5438dc0780a31e6f0a5","a9716557f56781aef13d6d3c5dafc61236f64bfd48d462c4848a7eca25f924ff","3d15b5e24065431bf7831b8e84000c0e767d921135af86ef0b0c034f14df5d8f","a563202fc316d8926dc83759cec155d5c028a7828996cbd283470ac7e8c58727","e5c004f39619ebaaa2475b18e949e12e51ff629132f48d56608081e5f0195577","e6b7a14eb53f023f455f4513b6a560f004fa1ebf6cc298b479be796541e322e6","771bf8091a4e40be8f539648b5a0ff7ecba8f46e72fc16acc10466c4c1304524","cb66d1c49ad20e7246b73671f59acaaaac72c58b7e37faae69ae366fd6adf1d3","e5c1c52655dc3f8400a3406fd9da0c4888e6b28c29de33bee51f9eaeda290b4d","1e28ee6d718080b750621e18befe236487df6685b37c17958520aaf777b7aeff","8891345dbe1920b9ed3f446a87de27b5cd6b2053112f6ff3975a661f9a03ec34","e41502bb6f2911275ebef373dcf4c2c9cb396e8913576d744227fb2a21b2907f","a720d8028d38f2b94855967789252c6148957dcd24e280d193b78db00eb3a099","1b0818297187a33e2c24c39145b409e11624523d32364edc22bceaf1f4c86f1b","0354b7e1d89403b1dba33e185a75549d91a191572406c5ded5d38d5cc049c03c","84648722d2b1f16c55cb68dbfaf18b913a13a78274641f7236eeb4d7088f6db8","f63d313c2673117608b3ed762ac07f618ee873bee3764406b06bcfcb5a713afe","2e2a2a0f7ef2a7587cfe40a96dbca31e8badb15a8a42bf042fe7a63abc9e2f27","2bb32fb3f0fe14c48170dcad3d2a501c1883516d4da9cbd0a2043d90c9789a7b","64d93f4a24f8a70b64658a7d9b9e96bd46ad498ad5dc9cdb9d52da547e77ff68","8a728de3047a1dadcb69595e74c3d75bc80a2c8165f8cf875ab610042a137fbe","3eafed0be4b194295bcde379e7d083779d0f27f31b715738a3beac49547dc613","22139b0aa97f3752b1e42c9f582aec2b90c89f5ab3fd9700515dc2e151848a84","1874b0062376a18b760c12d442a385128a748f62e66f6a0740c73e26471836e9","6cf7182d798892394143549a7b27ed27f7bcf1bf058535ec21cc03f39904bfb3","abe524377702be43d1600db4a5a940da5c68949e7ac034c4092851c235c38803","daf4418239ceadb20481bff0111fe102ee0f6f40daaa4ee1fdaca6d582906a26","8a5c5bc61338c6f2476eb98799459fd8c0c7a0fc20cbcd559bb016021da98111","548e4455c61c6aa2d7a127caa02f9f19be3f7b83db4fa1071e298219d74251ae","d2c6adc44948dbfdece6673941547b0454748e2846bb1bcba900ee06f782b01d","d80b7e2287ee54b23fe6698cb4e09b1dabc8e1a90fb368e301ac6fbc9ad412e2","f819507105727e01aecf6dae7d5a457daf282ec1a0aa9b9b1e9933a86930c54f",{"version":"03ab1547a5890d0b1a8c67be491f0a694fcb8e06d0618c3629c573868ef7209a","affectsGlobalScope":true},"816f825b072afd246eb3905cf51528d65e6fe51c12a1f8fb370c93bb0e031c9b","f6a64974d6fab49d27f8b31578a08662b9a7f607de3b5ec2d7c45b3466d914fd","a8e9d24cd3dc3bd95b34eb6edeac7525b7fdbe23b373554bdc3e91572b8079ee","1d5fd841722ce9aa05b9d602153c15914108bdaa8154bdd24eddadb8a3df586c","14788c10b66324b98feee7a2567eb30d1066e11506e54bf1215b369d70da4932","316785de2c0af9fbd9f2191904670e880bc3836671dd306236675515e481973a","27d668b912bf3fd0a4ddf3886a8b405eed97505fdc78a9f0b708f38e3e51655d","72654e8bed98873e19827d9a661b419dfd695dbc89fd2bb20f7609e3d16ebd50","66bdb366b92004ba3bf97df0502b68010f244174ee27f8c344d0f62cb2ac8f1e","30090332e8886cf27c46f5830c28977eef25fc8b2eb77117e2e42b20f37419c2","007ed3730b98b09e6f5db2fb87f6d32655f77048ae2140b0bac884e8c1add89e",{"version":"30692aa797868e75e5882801d1506bb7b43fa31164dd059010549e10979c921a","affectsGlobalScope":true},{"version":"e04ea44fae6ce4dc40d15b76c9a96c846425fff7cc11abce7a00b6b7367cbf65","affectsGlobalScope":true},{"version":"33414cdf6c91e3af6cd2a2ccd4b4f75318fb684b9106fa7484d85278538f1480","affectsGlobalScope":true},"cfbae40cdd82817be17bd48a0484981de051ce251a645838a6fbfb6849548f64",{"version":"700d5c16f91eb843726008060aebf1a79902bd89bf6c032173ad8e59504bc7ea","affectsGlobalScope":true},"e8597f5ba46fb8998b002c6e2c047b1b67784bb01c595177c39c445bd7f72e4e",{"version":"b0b314030907c0badf21a107290223e97fe114f11d5e1deceea6f16cabd53745","affectsGlobalScope":true},"20267127730020ce8b2f008133caf805d32929bb95b2af45ecf434991cb1b987",{"version":"7ebf3428c311427fc9564c30ceff94699fb3a50e302d6210bc94c5b53ef5ed00","affectsGlobalScope":true},"50aadef0b13b21c9223b8a98d41347b8de2b6562d8ebceeb30b54cbc0166ec2f",{"version":"cc8e57cfe18cd11c3bab5157ec583cfe5d75eefefe4b9682e54b0055bf86159f","affectsGlobalScope":true},"ba802de6bc200fe66eb3c59d7cf168022c7a4f589eb686f89d9dd4a59584816a",{"version":"ea971b022429f7c1b7e3c2de79b8fb135da8caeeb57afe789ee7086e955f744c","affectsGlobalScope":true},"6853f5720c7a2b51973e162190cd2aa05a85bdba2440bc0408f6b3caf1575186",{"version":"8a3b75fccc93851209da864abe53d968629fab3125981b6f47008ec63061eb39","affectsGlobalScope":true},"e7fcb3b171f296e6abacacae10d1e744e22b24e935a600c95e4908e467238909",{"version":"488118c6e9eedc7265cfefdcd04fb44b21004e64dca1508783710ba47fbd2778","affectsGlobalScope":true},"c03eb568f641d35e691f474e6c140ca49f2cce64ecd09563ef4fcedb943adefd",{"version":"a2be624f9ffe2529fcefa5c6dd1e37474c3692c67376d17ff40d5a0813d4a2e1","affectsGlobalScope":true},"6a224e417c1227de394e6ab88102ff09cc3a5ca8b88e4fda1e6e606d3777806f",{"version":"8dc8c2116694d59ee41b1ef7acf0cbc9a512eee589c419cac07b66597198b3f7","affectsGlobalScope":true},"3e37a124e3cb4bcc05f01a6dcd6d84abcf7b9173fb269b39654517ab7316b506",{"version":"8f8ebce0e991de85323524170fad48f0f29e473b6dd0166118e2c2c3ba52f9d6","affectsGlobalScope":true},"857c144a26ebeee399a986bce924d68548fe1b470366c47e5e69dd7ab3084554",{"version":"f877e78f5304ec3e183666aab8d5a1c42c3a617ff616d27e88cc6e0307641beb","affectsGlobalScope":true},"9f71c1fccd09ffab9baa1e5a4ed5e78b042f543b57a33531769eb69e22d808b9",{"version":"4fc0006f46461bb20aac98aed6c0263c1836ef5e1bbf1ca268db4258ed6a965e","affectsGlobalScope":true},"e10f473143597b66ba25221cca9e3a9b28ceb24e3b6dc003e680aab73c3a5916",{"version":"46c0e257d5c2b2c547f962cb45f4b259b871bad469f7aa11f0889c3d2c1e66cd","affectsGlobalScope":true},"6f38dfe6853ecd836dfca01d45e56e0374e97071bd557bf44535767cd98995ec",{"version":"544f8c58d5e1b386997f5ae49c6a0453b10bd9c7034c5de51317c8ac8ea82e9a","affectsGlobalScope":true},"3f1da3165c5b2d032da9bfa09dadf84f70b03cb4fb0e6f4296c804323ff98202",{"version":"ae9b62dd72bf086ccc808ba2e0d626d7d086281328fc2cf47030fd48b5eb7b16","affectsGlobalScope":true},"c7730a6f4554ca876fe56e553f5a1456d31ea88156a40ef2a540070c1e18f874",{"version":"cc1bddca46e3993a368c85e6a3a37f143320b1c13e5bfe198186d7ed21205606","affectsGlobalScope":true},"4b341d407f62bf3233991976fe4e0a239b8c09d56707923835cf62876bcf89a5",{"version":"d1d1d0018361316a713467981cf72f2ed6905bc03eed411fb5cf4ac8f8c68862","affectsGlobalScope":true},"31adafd40138bf03b6a7dfb7352c81ca4f5e51d13b115e8118dcdb9c950e6738",{"version":"121e469053633ec36c72d3b151f3f8941ef0d3c4b6462f625ee82609b7b17abe","affectsGlobalScope":true},"ebd2ab74540c6142c6538d162a4928e36ebb74059b88aaf240d28084de4bc785",{"version":"2b8dc33e6e5b898a5bca6ae330cd29307f718dca241f6a2789785a0ddfaa0895","affectsGlobalScope":true},"42404b88c78c474a01acdc4c560985ca4e665e04b9a1931d338c8aee4314afea",{"version":"dde8acfb7dd736b0d71c8657f1be28325fea52b48f8bdb7a03c700347a0e3504","affectsGlobalScope":true},"45416b1aa6fd05087ca78b0607b0bd078bd2acb9dff3d4e9d10e2aa93570c6bd",{"version":"34c9c31b78d5b5ef568a565e11232decf3134f772325e7cd0e2128d0144ff1e5","affectsGlobalScope":true},"f95149318e24b9d9058bfd15c3c9e0dfa290362d3abfcd4bec24ebc0849664ac",{"version":"60cc5b4f0a18127b33f8202d0d0fde56bc5699f4da1764b62ed770da2d5d44f1","affectsGlobalScope":true},"a54bf08adb88d9321ccc9d83554655ca32352cf88b7bcda28bfd1269838bb087",{"version":"d11fa2d42f762954eb4a07a0ab16b0a46aa6faf7b239f6cd1a8f5a38cb08edcd","affectsGlobalScope":true},"00db993a74e5833d5a1b9d1afd53cc8524a34268bd67b655517ee03d71b8ce83",{"version":"781afd67249e2733eb65511694e19cdcdb3af496e5d8cdee0a80eba63557ff6e","affectsGlobalScope":true},"c4affc9ebd8a4b3bd20877fca4da786db42b2ab3e9175f785abaffecac2c0817",{"version":"f3275e1f0e5852b1a50fd3669f6ad8e6e04db94693bcfb97d31851e63f8e301e","affectsGlobalScope":true},"163c675d160c8945f2c995369a1b9685b103d8181e903d1f0f92f1903fea60c4",{"version":"8a6ecff784dafbdb121906a61009670121882523b646338196099d4f3b5761d8","affectsGlobalScope":true},"a1177139f09a5f86e723e4ac630f9b319e50efb53659d8225739bf0afb5c0c82",{"version":"28aaee0a7f07fbedb0b14c265a3c1f29b252fa615a98f771e168b27209431320","affectsGlobalScope":true},"a4c574a32cdd0df6912fa39efbd4eb6e218708115abc580b27740f74dd17fe13",{"version":"256bdff4c082d9f4e2303138f64c152c6bd7b9dbca3be565095b3f3d51e2ab36","affectsGlobalScope":true},"283541eb8136dcb44cd8cd3f5d717a8f3beb02f34f3b0e0c814763b352f3086b",{"version":"47585e37a2b7f617e1398147202cab3fc43aa813cfa874b52c549cffde349650","affectsGlobalScope":true},"8b0026b5d44c96f0ca0ad78a1979b905440394c681bc41d130e53ddfd599930a",{"version":"e2f2a8069308e91fdb26890b49a4da18925958c0d4b5236ce30596c3c5672d72","affectsGlobalScope":true},"d8b0fa2f8627b393a2f2606a49a7122d5cf39d6757bd7c0f15c7257442f36cb2",{"version":"e214a2a7769955cd4d4c29b74044036e4af6dca4ab9aaa2ed69286fcdf5d23b3","affectsGlobalScope":true},"722938f48fa46b716cd37b769a89c8e7dbcffcd67013d537971c6de8c9c87fac",{"version":"25659b24ac2917dbfcbb61577d73077d819bd235e3e7112c76a16de8818c5fd6","affectsGlobalScope":true},"15ef8504a4c2c553e8de9fdb8c1483d41b5383dc6e923f03d734dc5d4d722be8",{"version":"7402e6ca4224d9c8cdd742afd0b656470ea6a5efe2229644418198715bb4b557","affectsGlobalScope":true},"ff3cf23fe0b78c3fe62709510896ff80dd961ae7d748a882daeff1798166833f",{"version":"a36a403b346c945b67efcda76ae43a15316c943d8a06532597060c35008f8e35","affectsGlobalScope":true},"177c82501c421616434fe8cc5d8a1e4b9d51909453ea0625341dc99b2ad749b9",{"version":"242b00f3d86b322df41ed0bbea60ad286c033ac08d643b71989213403abcdf8a","affectsGlobalScope":true},"9b18ba75eec34cd8fa881bdb126837ed7610616898efffb6d58c58ad197a74c7",{"version":"4dc6e0aeb511a3538b6d6d13540496f06911941013643d81430075074634a375","affectsGlobalScope":true},"aa98d733987e236702e22da965a9b31189e902f7a3605e739e094d96be04996c",{"version":"7ed57d9cb47c621d4ef4d4d11791fec970237884ff9ef7e806be86b2662343e8","affectsGlobalScope":true},"85812ad39d1c43b57bfed8912b29ab2612b037bf185ed69caa05c2f0bf308f03",{"version":"5bd49ff5317b8099b386eb154d5f72eca807889a354bcee0dc23bdcd8154d224","affectsGlobalScope":true},"e8dff8cdd063231407e6e76d7fccf4c060e18df5e8c945314d3fa51471a0b064",{"version":"a8446946faa5c737e9de8c62655c8e4b25af4595eaf21259b9da514e86cb4902","affectsGlobalScope":true},"bd9f42434fc05f2052263855d07a26c3afa6296d1d0b07bb7dc38db9092462f0",{"version":"045db1a7ce9c226c6b7d3f9fda8d2b811c269a2ae4d3ab17848b8688adf45c04","affectsGlobalScope":true},"06471351c1182e5c9db959dd7b4baf757e87207e62d6dbf437780230dd655f8b",{"version":"8b4fb5ea52378ed4322f332dbeb8d83e45efdac5c8f5d485cb733f9ff6a92919","affectsGlobalScope":true},"09cad5a2d2df9766b580b4c06fae5a49475063faa88387bfb2cecb5339a6879d",{"version":"31139dde9f2b6675e0941384c26e5675fae48d5bce9b97e0ced16ee8ca2e4579","affectsGlobalScope":true},"406aec8c588a96008325e808db7aa2e16ed8cc57913c85471dec380f7213f936",{"version":"725128203f84341790bab6555e2c343db6e1108161f69d7650a96b141a3153be","affectsGlobalScope":true},"3d757b2bca54f0665f4cfef0268a46f945dce6a35c0df966c70d4d25332d18b8",{"version":"78365ae83661fc1f12d076527cfaf47fe4308709f66726b17bcb7ff9d381c5cf","affectsGlobalScope":true},"8eda6e4644c03f941c57061e33cef31cfde1503caadb095d0eb60704f573adee",{"version":"0538a53133eebb69d3007755def262464317adcf2ce95f1648482a0550ffc854","affectsGlobalScope":true},"1e4fed05a6467475809f42069f770d96f8d910a1f661c49be03f457efae3cbd1",{"version":"7a204f04caa4d1dff5d7afbfb3fcbbe4a2eb6b254f4cd1e3bdcfe96bb3399c0b","affectsGlobalScope":true},"5268ad818d25d4b10ac1dd70db380d04ae0404e7b4132b03417859439f354137",{"version":"220f860f55d18691bedf54ba7df667e0f1a7f0eed11485622111478b0ab46517","affectsGlobalScope":true},"cc6767bb7cd44f72dbdaec4616b415001173c3c78f5923b32ba4a73034d6c4e2",{"version":"e76993aca4bb0eb6e13094583e1724d8b3f0ab070a91e5210cddfb3927f89f1c","affectsGlobalScope":true},"caa3b228223753833153854dee221bbc5151b57105b95dd49c0eb893f0ad95c2",{"version":"20b41a2f0d37e930d7b52095422bea2090ab08f9b8fcdce269518fd9f8c59a21","affectsGlobalScope":true},"3ebb7d1bf4d2d1070d3fd88629000a1ebfd4a4abaee36e23b7e39badb22c3047",{"version":"36a721c16b519a4825846e42abbc8743138f44df623fa95091e36addaf57282b","affectsGlobalScope":true},"855391e91f3f1d3e5ff0677dbd7354861f33a264dc9bcd6814be9eec3c75dc96",{"version":"ebb2f05e6d17d9c9aa635e2befe083da4be0b8a62e47e7cc7992c20055fac4f0","affectsGlobalScope":true},"6654d019ede1e448ed6fb3eaa0bcd955a596201df89d0ff33255d57fbfa13990",{"version":"7c22044ff0e993d50e5583390bccb3e5d510df0aaf1efe91a44d9a0a326ba692","affectsGlobalScope":true},"cca57c70604d33e7cbe52522429585e2f94170e53713b8344b9fe384971c84e3",{"version":"261511e94ac5436a0354a30df4740e8dc1343a5eb1a9d250bf1c4d7c8cde65b3","affectsGlobalScope":true},"b6051a1eb1824913a4c2545ebadd56c76682be493919547bc46a2f13720047a8",{"version":"867b000c7a948de02761982c138124ad05344d5f8cb5a7bf087e45f60ff38e7c","affectsGlobalScope":true},"a40c8c5f6e4c013f3389ae7b3c992e3b82dceec8600cc677373984962d09e612",{"version":"02c22afdab9f51039e120327499536ac95e56803ceb6db68e55ad8751d25f599","affectsGlobalScope":true},"fc5f2d980a9cbb493a6f4c4de8b091fb89c6f3b270037cbd48d8f2605494fc20",{"version":"37129ad43dd9666177894b0f3ce63bba752dc3577a916aa7fe2baa105f863de3","affectsGlobalScope":true},"bb2706d102f6289abd9bf47d0396fb9dfae1cca263701b93a10d26f4e6ed83f8",{"version":"7832e8fe1841bee70f9a5c04943c5af1b1d4040ac6ff43472aeb1d43c692a957","affectsGlobalScope":true},"8a6da47ee83b6641e86df2f8ad4e6bdc210e942413e34276769a85ca51835950",{"version":"013853836ed002be194bc921b75e49246d15c44f72e9409273d4f78f2053fc8f","affectsGlobalScope":true},"d7a15dde353cee9f9346bb01b0851faa0a02abbaecf3490727ae383e5cad2fd1",{"version":"e08392a815b5a4a729d5f8628e3ed0d2402f83ed76b20c1bf551d454f59d3d16","affectsGlobalScope":true},"6f29f39c855519671fcdb1ce863a19d6c48c725f62777d8b25da730c06ad4dbf",{"version":"f366ca25885ab7c99fc71a54843420be31df1469f8556c37d24f72e4037cb601","affectsGlobalScope":true},"67f8d9e040b1de170fdcf8ce74aad87a5d4091e92cfbefc955adfd9c9ee12003",{"version":"d604893d4e88daade0087033797bbafc2916c66a6908da92e37c67f0bad608db","affectsGlobalScope":true},"f2062723399c7f826f7eb286c3bae264bf9c51d1ef2b793a79026e8619c9d7cb",{"version":"dc265f24d2ddad98f081eb76d1a25acfb29e18f569899b75f40b99865a5d9e3b","affectsGlobalScope":true},"e4c9a0c911e261c94664c5e79ff71efdbf414ff4efbc3384a7a5fe1b34fbf86a",{"version":"741bdf50041904fa413899635eb4fc123170c6b99e7f8ee7a87b55aae9c70e6b","affectsGlobalScope":true},"c372d0603a34d8cf17b896a4f247d123c01949322f2c616ea5d8ce9e7fb07e3c",{"version":"41ffc155348dd4993bc58ee901923f5ade9f44bc3b4d5da14012a8ded17c0edd","affectsGlobalScope":true},"50975059bb27c14be5e26675d090b658f02f1e23d53adfca9cc909ca503dbee5",{"version":"3e8e0655ed5a570a77ea9c46df87eeca341eed30a19d111070cf6b55512694e8","affectsGlobalScope":true},"bf0f1835e8e2fa4a4e7deaddc6e8d5379f1a643bc15254d442ffb0a1e83306be","3f35a7028a26080f7bd4cd94d15d44285588a5cfe6ef97b7c0e5255f89739807",{"version":"cc4c74d1c56e83aa22e2933bfabd9b0f9222aadc4b939c11f330c1ed6d6a52ca","affectsGlobalScope":true},"2c845919985bc55394a5df3927e64eceb8c3b0ecc7726ad68958c0d78992841c",{"version":"f6266ada92f0c4e677eb3fbf88039a8779327370f499690bf9720d6f7ad5f199","affectsGlobalScope":true},"a36c8ce9c6cfdb68afa6cf3c574bd1dd2725f994c77420414c785faed0858745",{"version":"f2eac49e9caa2240956e525024bf37132eae37ac50e66f6c9f3d6294a54c654c","affectsGlobalScope":true},"c8529a79a4273c3f80e7c172f679d24f34b3ffaab9222317280d3c2f2e4a3e98",{"version":"99a71914dd3eb5d2f037f80c3e13ba3caff0c3247d89a3f61a7493663c41b7ea","affectsGlobalScope":true},"16f14bfcc76ae21e951d55a615eb4e58289f87e3d0bf76e5d9e3a1b3eb163040",{"version":"399d6f0a7a326ff63d309323f04a65be7d93933e97ad97b963dfea7cd13dee0c","affectsGlobalScope":true},"6527022e052c44a3b1fe158a64a0fee2369308b192706555d81db7495dbc02f4","a5380359e9c125db37e4cffb4f7c8e74fab22a59bb468c078a2a98419baf5929",{"version":"bba30304a5ad2f7f319db7478616366b6318cf58010448cc96dde07d83b3602b","affectsGlobalScope":true},"41295c6dd1bab63f5274514b2390f8a8f92a3148fff01e26d982576daf9595a3","6a4f941252fa12a5e6ac4f4ccf4016199c0258434c517b844cd70f6d0fe0b2f6",{"version":"78402a74c2c1fc42b4d1ffbad45f2041327af5929222a264c44be2e23f26b76a","affectsGlobalScope":true},"cc93c43bc9895982441107582b3ecf8ab24a51d624c844a8c7333d2590c929e2",{"version":"c5d44fe7fb9b8f715327414c83fa0d335f703d3fe9f1045a047141bfd113caec","affectsGlobalScope":true},"f8b42b35100812c99430f7b8ce848cb630c33e35cc10db082e85c808c1757554",{"version":"ba28f83668cca1ad073188b0c2d86843f9e34f24c5279f2f7ba182ff051370a4","affectsGlobalScope":true},"349b276c58b9442936b049d5495e087aef7573ad9923d74c4fbb5690c2f42a2e",{"version":"ad8c67f8ddd4c3fcd5f3d90c3612f02b3e9479acafab240b651369292bb2b87a","affectsGlobalScope":true},"1954f24747d14471a5b42bd2ad022c563813a45a7d40ba172fc2e89f465503e2",{"version":"05bbb3d4f0f6ca8774de1a1cc8ba1267fffcc0dd4e9fc3c3478ee2f05824d75d","affectsGlobalScope":true},"52cd63ca2640be169c043b352573f2990b28ba028bae123a88970dd9b8404dc9",{"version":"154145d73e775ab80176a196c8da84bfc3827e177b9f4c74ddfac9c075b5b454","affectsGlobalScope":true},"89d80fcd9316e1cfad0b51c524a01da25f31dfcf669a4a558be0eb4c4d035c34",{"version":"177f63e11e00775d040f45f8847afdb578b1cac7ab3410a29afe9b8be07720f0","affectsGlobalScope":true},"37e69b0edd29cbe19be0685d44b180f7baf0bd74239f9ac42940f8a73f267e36",{"version":"afba2e7ffca47f1d37670963b0481eb35983a6e7d043c321b3cfa2723cab93c9","affectsGlobalScope":true},"bb146d5c2867f91eea113d7c91579da67d7d1e7e03eb48261fdbb0dfb0c04d36",{"version":"90b95d16bd0207bb5f6fedf65e5f6dba5a11910ce5b9ffc3955a902e5a8a8bd5","affectsGlobalScope":true},"3698fee6ae409b528a07581f542d5d69e588892f577e9ccdb32a4101e816e435",{"version":"26fc7c5e17d3bcc56ed060c8fb46c6afde9bc8b9dbf24f1c6bdfecca2228dac8","affectsGlobalScope":true},"46fd8192176411dac41055bdb1fdad11cfe58cdce62ccd68acff09391028d23f",{"version":"22791df15401d21a4d62fc958f3683e5edc9b5b727530c5475b766b363d87452","affectsGlobalScope":true},"b152da720b9df12994b65390bb47bbb1d7682a3b240a30f416b59c8fc6bc4e94","cb5f3c154d6948d4c04e97e0ae98e4220d6d11236fd1dddc0bc27d0a422210cf",{"version":"8491a961bff05416800362848049def1c11e95e3dc99aa56a8a239923742f7d2","affectsGlobalScope":true},"4d67dd3321c50c001037dfd3b7415446c0db3cd2a8eb8f126d809f8070a34c5d","4aaf6fd05956c617cc5083b7636da3c559e1062b1cadba1055882e037f57e94c","339e8e27ec03ea152417bf26cf2c7d3707077b91bcbd016930e5275c63705e47",{"version":"d4ce8dfc241ebea15e02f240290653075986daf19cf176c3ce8393911773ac1b","affectsGlobalScope":true},{"version":"52cd0384675a9fa39b785398b899e825b4d8ef0baff718ec2dd331b686e56814","affectsGlobalScope":true},{"version":"89fc1135bfc61a26b9e57c4ff1c87091bb01278ec566d46563046ea886f94d68","affectsGlobalScope":true},"10db42a459a3ed193aeca900bac7669ceffe5b0172fb48ca4f6dbba66cacdf51",{"version":"dcc56dd46eeec44d48904e80969c9743be2fe4732a33c8aa2c5278ac8e06033a","affectsGlobalScope":true},{"version":"769c459185e07f5b15c8d6ebc0e4fec7e7b584fd5c281f81324f79dd7a06e69c","affectsGlobalScope":true},"18c8ea5184ab9025f215e9f3759ef6b148e44583f02998314c13c387a6fa1c10","8ae46c432d6a66b15bce817f02d26231cf6e75d9690ae55e6a85278eb8242d21"],"root":[324],"options":{"inlineSources":true,"module":99,"noEmitOnError":false,"noImplicitAny":false,"noImplicitThis":true,"outDir":"../../../../.uvue/app-android","rootDir":"../../../../.tsc/app-android","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"tsBuildInfoFile":"./.tsbuildInfo","useDefineForClassFields":false},"fileIdsList":[[46,48,50,318,319,321],[129,141,314,317,319,321,322],[64,66],[128],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127],[59,60,61,62,63,65,67],[104],[66,70],[106],[122],[65,66,77],[67],[66,75],[59,60,61,62,63,66,67,75,76],[105],[66],[76,77,119],[63,67,107,109],[58,63,68,75,102,103,107],[108],[68],[62,66],[66,67],[66,77],[66,75,76,77],[70],[46,48,50,318,319,320],[316],[315],[142,143,274,285,288,311,313],[312],[145,147,149,151,153,155,157,159,161,163,165,167,169,171,173,175,177,179,181,183,185,187,189,191,193,195,197,199,201,203,205,207,209,211,213,215,217,219,221,223,225,227,229,231,233,235,237,239,241,243,245,247,249,251,253,255,257,259,261,263,265,267,269,271,273],[144],[146],[148],[150],[152],[154],[156],[158],[160],[162],[164],[166],[168],[170],[172],[174],[176],[178],[180],[182],[184],[186],[188],[190],[192],[194],[196],[198],[200],[202],[204],[206],[208],[210],[212],[214],[216],[218],[220],[222],[224],[226],[228],[230],[232],[234],[236],[238],[240],[242],[244],[246],[248],[250],[252],[254],[256],[258],[260],[262],[264],[266],[268],[270],[272],[276,278,280,282,284],[275],[277],[279],[281],[283],[287],[286],[290,292,294,296,298,300,302,304,306,308,310],[309],[297],[293],[291],[307],[299],[295],[301],[303],[289],[305],[70,77],[140],[130,131,132,133,134,135,136,137,138,139],[77],[70,77,126],[51,52,53,54,55],[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27],[46,48,50,319,321],[44],[44,45,46,48],[41,48,49,50],[42],[41,46,48,319,321],[45,46,47,50,319,321],[29,30,31,32,33,34,35,36,37,38,39],[33],[36],[33,35]],"referencedMap":[[319,1],[323,2],[65,3],[129,4],[128,5],[66,6],[105,7],[125,8],[107,9],[123,10],[121,11],[70,12],[103,13],[77,14],[106,15],[67,16],[120,17],[118,12],[117,12],[116,12],[115,12],[114,12],[113,12],[112,12],[111,18],[108,19],[110,12],[68,12],[109,20],[102,21],[101,12],[99,12],[98,12],[97,22],[96,12],[95,12],[94,12],[93,12],[92,23],[91,12],[90,12],[89,12],[88,12],[86,24],[87,12],[84,12],[83,12],[82,12],[85,25],[81,12],[80,16],[79,26],[78,24],[74,26],[73,26],[72,26],[71,26],[69,21],[321,27],[317,28],[316,29],[314,30],[313,31],[274,32],[145,33],[147,34],[149,35],[151,36],[153,37],[155,38],[157,39],[159,40],[161,41],[163,42],[165,43],[167,44],[169,45],[171,46],[173,47],[175,48],[177,49],[179,50],[181,51],[183,52],[185,53],[187,54],[189,55],[191,56],[193,57],[195,58],[197,59],[199,60],[201,61],[203,62],[205,63],[207,64],[209,65],[211,66],[213,67],[215,68],[217,69],[219,70],[221,71],[223,72],[225,73],[227,74],[229,75],[231,76],[233,77],[235,78],[237,79],[239,80],[241,81],[243,82],[245,83],[247,84],[249,85],[251,86],[253,87],[255,88],[257,89],[259,90],[261,91],[263,92],[265,93],[267,94],[269,95],[271,96],[273,97],[285,98],[276,99],[278,100],[280,101],[282,102],[284,103],[288,104],[287,105],[311,106],[310,107],[298,108],[294,109],[292,110],[308,111],[300,112],[296,113],[302,114],[304,115],[290,116],[306,117],[130,118],[141,119],[140,120],[131,118],[132,118],[133,118],[134,118],[135,118],[137,121],[138,122],[136,121],[56,123],[28,124],[47,125],[45,126],[46,127],[324,128],[43,129],[50,130],[48,131],[40,132],[35,133],[34,133],[37,134],[36,135],[39,135]],"exportedModulesMap":[[319,1],[323,2],[65,3],[129,4],[128,5],[66,6],[105,7],[125,8],[107,9],[123,10],[121,11],[70,12],[103,13],[77,14],[106,15],[67,16],[120,17],[118,12],[117,12],[116,12],[115,12],[114,12],[113,12],[112,12],[111,18],[108,19],[110,12],[68,12],[109,20],[102,21],[101,12],[99,12],[98,12],[97,22],[96,12],[95,12],[94,12],[93,12],[92,23],[91,12],[90,12],[89,12],[88,12],[86,24],[87,12],[84,12],[83,12],[82,12],[85,25],[81,12],[80,16],[79,26],[78,24],[74,26],[73,26],[72,26],[71,26],[69,21],[321,27],[317,28],[316,29],[314,30],[313,31],[274,32],[145,33],[147,34],[149,35],[151,36],[153,37],[155,38],[157,39],[159,40],[161,41],[163,42],[165,43],[167,44],[169,45],[171,46],[173,47],[175,48],[177,49],[179,50],[181,51],[183,52],[185,53],[187,54],[189,55],[191,56],[193,57],[195,58],[197,59],[199,60],[201,61],[203,62],[205,63],[207,64],[209,65],[211,66],[213,67],[215,68],[217,69],[219,70],[221,71],[223,72],[225,73],[227,74],[229,75],[231,76],[233,77],[235,78],[237,79],[239,80],[241,81],[243,82],[245,83],[247,84],[249,85],[251,86],[253,87],[255,88],[257,89],[259,90],[261,91],[263,92],[265,93],[267,94],[269,95],[271,96],[273,97],[285,98],[276,99],[278,100],[280,101],[282,102],[284,103],[288,104],[287,105],[311,106],[310,107],[298,108],[294,109],[292,110],[308,111],[300,112],[296,113],[302,114],[304,115],[290,116],[306,117],[130,118],[141,119],[140,120],[131,118],[132,118],[133,118],[134,118],[135,118],[137,121],[138,122],[136,121],[56,123],[28,124],[47,125],[45,126],[46,127],[324,128],[43,129],[50,130],[48,131],[40,132],[35,133],[34,133],[37,134],[36,135],[39,135]],"semanticDiagnosticsPerFile":[319,318,323,104,65,61,62,59,129,127,128,66,105,126,125,107,75,76,64,60,122,123,63,121,70,103,77,106,67,119,120,118,117,116,115,114,113,112,111,108,110,68,109,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,86,87,84,83,82,85,81,80,79,78,74,73,72,71,69,124,58,57,321,322,317,316,315,142,143,314,313,312,274,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,257,256,259,258,261,260,263,262,265,264,267,266,269,268,271,270,273,272,285,276,275,278,277,280,279,282,281,284,283,288,287,286,311,310,309,298,297,294,293,292,291,308,307,300,299,296,295,302,301,304,303,290,289,306,305,320,130,141,140,139,131,132,133,134,135,137,138,136,51,56,52,53,54,55,1,16,2,28,3,26,4,5,17,18,6,20,21,19,27,7,8,9,10,11,12,13,14,24,25,22,23,15,47,45,46,44,324,42,43,50,49,48,41,40,31,35,32,33,34,37,36,38,39,30,29]},"version":"5.2.2"}
\ No newline at end of file