commit c9b25b1965a4745bff85a4180f32a2efca069498 Author: lichong <18518571399@163.com> Date: Fri Jul 26 09:28:22 2024 +0800 3211 diff --git a/basedemo/vitebase/.gitignore b/basedemo/vitebase/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/basedemo/vitebase/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/basedemo/vitebase/README.md b/basedemo/vitebase/README.md new file mode 100644 index 0000000..e62e093 --- /dev/null +++ b/basedemo/vitebase/README.md @@ -0,0 +1,7 @@ +# Vue 3 + Vite + +This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` + + diff --git a/basedemo/vitebase/package.json b/basedemo/vitebase/package.json new file mode 100644 index 0000000..84d369e --- /dev/null +++ b/basedemo/vitebase/package.json @@ -0,0 +1,18 @@ +{ + "name": "vitebase", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "vue": "^3.3.4" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.2.3", + "vite": "^4.4.5" + } +} diff --git a/basedemo/vitebase/public/vite.svg b/basedemo/vitebase/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/basedemo/vitebase/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/basedemo/vitebase/src/App.vue b/basedemo/vitebase/src/App.vue new file mode 100644 index 0000000..341dbf0 --- /dev/null +++ b/basedemo/vitebase/src/App.vue @@ -0,0 +1,30 @@ + + + + + diff --git a/basedemo/vitebase/src/assets/vue.svg b/basedemo/vitebase/src/assets/vue.svg new file mode 100644 index 0000000..770e9d3 --- /dev/null +++ b/basedemo/vitebase/src/assets/vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/basedemo/vitebase/src/components/HelloWorld.vue b/basedemo/vitebase/src/components/HelloWorld.vue new file mode 100644 index 0000000..f5e4f53 --- /dev/null +++ b/basedemo/vitebase/src/components/HelloWorld.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/basedemo/vitebase/src/main.js b/basedemo/vitebase/src/main.js new file mode 100644 index 0000000..2425c0f --- /dev/null +++ b/basedemo/vitebase/src/main.js @@ -0,0 +1,5 @@ +import { createApp } from 'vue' +import './style.css' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/basedemo/vitebase/src/style.css b/basedemo/vitebase/src/style.css new file mode 100644 index 0000000..84a0050 --- /dev/null +++ b/basedemo/vitebase/src/style.css @@ -0,0 +1,89 @@ +:root { + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +.card { + padding: 2em; +} + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/basedemo/vitebase/vite.config.js b/basedemo/vitebase/vite.config.js new file mode 100644 index 0000000..05c1740 --- /dev/null +++ b/basedemo/vitebase/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [vue()], +}) diff --git a/basedemo/vuebase/.gitignore b/basedemo/vuebase/.gitignore new file mode 100644 index 0000000..403adbc --- /dev/null +++ b/basedemo/vuebase/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/basedemo/vuebase/README.md b/basedemo/vuebase/README.md new file mode 100644 index 0000000..80581b4 --- /dev/null +++ b/basedemo/vuebase/README.md @@ -0,0 +1,24 @@ +# vuebase + +## Project setup +``` +npm install +``` + +### Compiles and hot-reloads for development +``` +npm run serve +``` + +### Compiles and minifies for production +``` +npm run build +``` + +### Lints and fixes files +``` +npm run lint +``` + +### Customize configuration +See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/basedemo/vuebase/babel.config.js b/basedemo/vuebase/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/basedemo/vuebase/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/basedemo/vuebase/jsconfig.json b/basedemo/vuebase/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/basedemo/vuebase/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/basedemo/vuebase/package.json b/basedemo/vuebase/package.json new file mode 100644 index 0000000..7921601 --- /dev/null +++ b/basedemo/vuebase/package.json @@ -0,0 +1,52 @@ +{ + "name": "vuebase", + "version": "0.1.0", + "private": true, + "scripts": { + "serve": "vue-cli-service serve", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint" + }, + "dependencies": { + "axios": "^1.5.0", + "core-js": "^3.8.3", + "dayjs": "^1.11.9", + "element-plus": "^2.3.12", + "lodash": "^4.17.21", + "nprogress": "^0.2.0", + "vue": "^3.2.13", + "vue-router": "^4.0.3", + "vuex": "^4.0.0" + }, + "devDependencies": { + "@babel/core": "^7.12.16", + "@babel/eslint-parser": "^7.12.16", + "@vue/cli-plugin-babel": "~5.0.0", + "@vue/cli-plugin-eslint": "~5.0.0", + "@vue/cli-plugin-router": "~5.0.0", + "@vue/cli-plugin-vuex": "~5.0.0", + "@vue/cli-service": "~5.0.0", + "eslint": "^7.32.0", + "eslint-plugin-vue": "^8.0.3" + }, + "eslintConfig": { + "root": true, + "env": { + "node": true + }, + "extends": [ + "plugin:vue/vue3-essential", + "eslint:recommended" + ], + "parserOptions": { + "parser": "@babel/eslint-parser" + }, + "rules": {} + }, + "browserslist": [ + "> 1%", + "last 2 versions", + "not dead", + "not ie 11" + ] +} diff --git a/basedemo/vuebase/public/favicon.ico b/basedemo/vuebase/public/favicon.ico new file mode 100644 index 0000000..df36fcf Binary files /dev/null and b/basedemo/vuebase/public/favicon.ico differ diff --git a/basedemo/vuebase/public/index.html b/basedemo/vuebase/public/index.html new file mode 100644 index 0000000..3e5a139 --- /dev/null +++ b/basedemo/vuebase/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= htmlWebpackPlugin.options.title %> + + + +
+ + + diff --git a/basedemo/vuebase/src/App.vue b/basedemo/vuebase/src/App.vue new file mode 100644 index 0000000..a753dba --- /dev/null +++ b/basedemo/vuebase/src/App.vue @@ -0,0 +1,30 @@ + + + diff --git a/basedemo/vuebase/src/assets/logo.png b/basedemo/vuebase/src/assets/logo.png new file mode 100644 index 0000000..f3d2503 Binary files /dev/null and b/basedemo/vuebase/src/assets/logo.png differ diff --git a/basedemo/vuebase/src/components/HelloWorld.vue b/basedemo/vuebase/src/components/HelloWorld.vue new file mode 100644 index 0000000..1c544cb --- /dev/null +++ b/basedemo/vuebase/src/components/HelloWorld.vue @@ -0,0 +1,60 @@ + + + + + + diff --git a/basedemo/vuebase/src/main.js b/basedemo/vuebase/src/main.js new file mode 100644 index 0000000..a92f228 --- /dev/null +++ b/basedemo/vuebase/src/main.js @@ -0,0 +1,6 @@ +import { createApp } from 'vue' +import App from './App.vue' +import router from './router' +import store from './store' + +createApp(App).use(store).use(router).mount('#app') diff --git a/basedemo/vuebase/src/router/index.js b/basedemo/vuebase/src/router/index.js new file mode 100644 index 0000000..d7a8d0a --- /dev/null +++ b/basedemo/vuebase/src/router/index.js @@ -0,0 +1,25 @@ +import { createRouter, createWebHashHistory } from 'vue-router' +import HomeView from '../views/HomeView.vue' + +const routes = [ + { + path: '/', + name: 'home', + component: HomeView + }, + { + path: '/about', + name: 'about', + // route level code-splitting + // this generates a separate chunk (about.[hash].js) for this route + // which is lazy-loaded when the route is visited. + component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue') + } +] + +const router = createRouter({ + history: createWebHashHistory(), + routes +}) + +export default router diff --git a/basedemo/vuebase/src/store/index.js b/basedemo/vuebase/src/store/index.js new file mode 100644 index 0000000..7f5b89c --- /dev/null +++ b/basedemo/vuebase/src/store/index.js @@ -0,0 +1,14 @@ +import { createStore } from 'vuex' + +export default createStore({ + state: { + }, + getters: { + }, + mutations: { + }, + actions: { + }, + modules: { + } +}) diff --git a/basedemo/vuebase/src/views/AboutView.vue b/basedemo/vuebase/src/views/AboutView.vue new file mode 100644 index 0000000..3fa2807 --- /dev/null +++ b/basedemo/vuebase/src/views/AboutView.vue @@ -0,0 +1,5 @@ + diff --git a/basedemo/vuebase/src/views/HomeView.vue b/basedemo/vuebase/src/views/HomeView.vue new file mode 100644 index 0000000..e8d96d7 --- /dev/null +++ b/basedemo/vuebase/src/views/HomeView.vue @@ -0,0 +1,18 @@ + + + diff --git a/basedemo/vuebase/vue.config.js b/basedemo/vuebase/vue.config.js new file mode 100644 index 0000000..6596a0b --- /dev/null +++ b/basedemo/vuebase/vue.config.js @@ -0,0 +1,5 @@ +const { defineConfig } = require('@vue/cli-service') +module.exports = defineConfig({ + transpileDependencies: true, + lintOnSave: false +}) diff --git a/demo/README.md b/demo/README.md new file mode 100644 index 0000000..0c37989 --- /dev/null +++ b/demo/README.md @@ -0,0 +1,33 @@ +# mqtttohttp + + + +## QuickStart + + + +see [egg docs][egg] for more detail. + +### Development + +```bash +$ npm i +$ npm run dev +$ open http://localhost:7001/ +``` + +### Deploy + +```bash +$ npm start +$ npm stop +``` + +### npm scripts + +- Use `npm run lint` to check code style. +- Use `npm test` to run unit test. +- Use `npm run autod` to auto detect dependencies upgrade, see [autod](https://www.npmjs.com/package/autod) for more detail. + + +[egg]: https://eggjs.org \ No newline at end of file diff --git a/demo/app.js b/demo/app.js new file mode 100644 index 0000000..61cbfad --- /dev/null +++ b/demo/app.js @@ -0,0 +1,74 @@ +// app.js +const mqtt = require("mqtt");//mqtt api包 +const _ = require("lodash")//工具包 +class AppBootHook { + constructor(app) { + this.app = app; + } + async didReady() { + //连接到小车上的mqtt服务器 + // const client = mqtt.connect("mqtt://192.168.1.102:1883", { + const client = mqtt.connect("mqtt://127.0.0.1:1883", { + clean: true,//持续链接 + connectTimeout: 4000,//超时 + clientId: 'map-editor-' + Math.random().toString(16).substr(2),//连接用户id唯一 + username: 'map-editor',//连接用户名(如果没有则可以不写) + password: 'leador',//连接用户密码(如果没有则可以不写) + }); + //连接服务器 + client.on("connect", function () { + console.log("appmqtt服务器连接成功"); + // 订阅电池信息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/sensor/battery`, { qos: 0 }, (a, b, c) => { + }); + // 订阅位置信息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/sensor/gps`, { qos: 0 }, (a, b, c) => { + }); + // 订阅位姿信息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/localization/pose`, { qos: 0 }, (a, b, c) => { + }); + // 订阅错误消息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/message/error`, { qos: 0 }, (a, b, c) => { + }); + // 订阅警告消息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/message/warn`, { qos: 0 }, (a, b, c) => { + }); + // 订阅日志消息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/message/info`, { qos: 0 }, (a, b, c) => { + }); + + }); + //监听消息 + client.on("message", async function (topic, message) { + if (_.endsWith(topic, "/sensor/battery")) { + //得到电池信息 + let resObj = JSON.parse(message.toString()) + console.log(resObj) + } else if (_.endsWith(topic, "/sensor/gps")) { + //得到位置信息 + let resObj = JSON.parse(message.toString()) + console.log(resObj) + } else if (_.endsWith(topic, "/localization/pose")) { + //得到位姿信息 + let resObj = JSON.parse(message.toString()) + console.log(resObj) + } else if (_.endsWith(topic, "/message/error")) { + //得到错误信息 + let resObj = JSON.parse(message.toString()) + console.log(resObj) + //得到错误信息后需要发布消息(自定义话题即可) + client.publish("/errorMessage", JSON.stringify(resObj), { qos: 1, }) + } else if (_.endsWith(topic, "/message/warn")) { + //得到警告信息 + let resObj = JSON.parse(message.toString()) + console.log(resObj) + } else if (_.endsWith(topic, "/message/info")) { + //得到日志信息 + let resObj = JSON.parse(message.toString()) + console.log(resObj) + } + }); + } +} + +module.exports = AppBootHook; diff --git a/demo/app/controller/home.js b/demo/app/controller/home.js new file mode 100644 index 0000000..4227970 --- /dev/null +++ b/demo/app/controller/home.js @@ -0,0 +1,11 @@ +'use strict'; + +const { Controller } = require('egg'); +const _ = require("lodash") +class HomeController extends Controller { + async index() { + + } +} + +module.exports = HomeController; diff --git a/demo/app/router.js b/demo/app/router.js new file mode 100644 index 0000000..ccb9ae5 --- /dev/null +++ b/demo/app/router.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * @param {Egg.Application} app - egg application + */ +module.exports = app => { + const { router, controller } = app; + router.post('/', controller.home.index); +}; diff --git a/demo/config/config.default.js b/demo/config/config.default.js new file mode 100644 index 0000000..32ef2b9 --- /dev/null +++ b/demo/config/config.default.js @@ -0,0 +1,36 @@ +/* eslint valid-jsdoc: "off" */ + +"use strict"; + +/** + * @param {Egg.EggAppInfo} appInfo app info + */ +module.exports = (appInfo) => { + /** + * built-in config + * @type {Egg.EggAppConfig} + **/ + const config = (exports = {}); + + // use for cookie sign key, should change to your own and keep security + config.keys = appInfo.name + "_1687851227647_4638"; + + // add your middleware config here + config.middleware = []; + config.cluster = { + listen: { + port: 7020 + } + } + // add your user config here + const userConfig = { + // myAppName: 'egg', + }; + + + + return { + ...config, + ...userConfig, + }; +}; diff --git a/demo/config/plugin.js b/demo/config/plugin.js new file mode 100644 index 0000000..d0ecaae --- /dev/null +++ b/demo/config/plugin.js @@ -0,0 +1,10 @@ +"use strict"; + +/** @type Egg.EggPlugin */ +module.exports = { + // had enabled by egg + // static: { + // enable: true, + // } + +}; diff --git a/demo/jsconfig.json b/demo/jsconfig.json new file mode 100644 index 0000000..1bbed3f --- /dev/null +++ b/demo/jsconfig.json @@ -0,0 +1,5 @@ +{ + "include": [ + "**/*" + ] +} \ No newline at end of file diff --git a/demo/package.json b/demo/package.json new file mode 100644 index 0000000..af89d83 --- /dev/null +++ b/demo/package.json @@ -0,0 +1,49 @@ +{ + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" +} \ No newline at end of file diff --git a/demo/run/agent_config.json b/demo/run/agent_config.json new file mode 100644 index 0000000..8c4de38 --- /dev/null +++ b/demo/run/agent_config.json @@ -0,0 +1,549 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true, + "logValue": true + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": true, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "supportedRequests": [ + { + "path": {}, + "methods": [ + "POST", + "PATCH", + "DELETE", + "PUT", + "CONNECT" + ] + } + ], + "refererWhiteList": [] + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true + }, + "methodnoallow": { + "enable": true + }, + "noopen": { + "enable": true + }, + "nosniff": { + "enable": true + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "ipExceptionList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "F:\\code\\demo\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y" + }, + "watcher": { + "type": "development", + "eventSources": { + "default": "F:\\code\\demo\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "F:\\code\\demo\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "defaultParamCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": "100kb", + "fields": 10, + "fileSize": "10mb", + "files": 10, + "fileExtensions": [], + "whitelist": null, + "allowArrayField": false, + "tmpdir": "C:\\Users\\lichong\\AppData\\Local\\Temp\\egg-multipart-tmp\\mqtttohttp", + "cleanSchedule": { + "cron": "0 30 4 * * *", + "disable": false + } + }, + "development": { + "watchDirs": [], + "ignoreDirs": [], + "fastReady": false, + "reloadOnDebug": true, + "overrideDefault": false, + "overrideIgnore": false + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "F:\\code\\demo\\app\\public", + "dynamic": true, + "preload": false, + "buffer": false, + "maxFiles": 1000 + }, + "view": { + "root": "F:\\code\\demo\\app\\view", + "cache": false, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "env": "local", + "name": "mqtttohttp", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "baseDir": "F:\\code\\demo", + "HOME": "C:\\Users\\lichong", + "rundir": "F:\\code\\demo\\run", + "dump": { + "ignore": "", + "timing": { + "slowBootActionMinDuration": 5000 + } + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "", + "cacheControl": "public, max-age=2592000" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "onerror": "" + }, + "logger": { + "dir": "F:\\code\\demo\\logs\\mqtttohttp", + "encoding": "utf8", + "env": "local", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": false, + "outputJSON": false, + "buffer": true, + "appLogName": "mqtttohttp-web.log", + "coreLogName": "egg-web.log", + "agentLogName": "egg-agent.log", + "errorLogName": "common-error.log", + "coreLogger": { + "consoleLevel": "WARN" + }, + "allowDebugAtProd": false, + "enablePerformanceTimer": false, + "enableFastContextLogger": false, + "type": "agent", + "localStorage": "" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "useHttpClientNext": false + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "meta", + "siteFile", + "notfound", + "bodyParser", + "overrideMethod" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 7020, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "middleware": [], + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware" + }, + "plugins": { + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-onerror", + "version": "2.2.0" + }, + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-session", + "version": "3.3.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-watcher", + "version": "3.1.1", + "dependents": [ + "development" + ] + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-multipart", + "version": "3.3.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-security", + "version": "3.1.0" + }, + "development": { + "enable": true, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-development", + "version": "2.7.0" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-schedule", + "version": "4.0.0", + "dependents": [ + "logrotator" + ] + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-static", + "version": "2.3.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-view", + "version": "2.1.4" + } + }, + "appInfo": { + "name": "mqtttohttp", + "baseDir": "F:\\code\\demo", + "env": "local", + "scope": "", + "HOME": "C:\\Users\\lichong", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "root": "F:\\code\\demo" + } +} \ No newline at end of file diff --git a/demo/run/agent_config_meta.json b/demo/run/agent_config_meta.json new file mode 100644 index 0000000..f391543 --- /dev/null +++ b/demo/run/agent_config_meta.json @@ -0,0 +1,310 @@ +{ + "keys": "F:\\code\\demo\\config\\config.default.js", + "middleware": "F:\\code\\demo\\config\\config.default.js", + "cluster": { + "listen": { + "port": "F:\\code\\demo\\config\\config.default.js", + "path": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "hostname": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + } + }, + "session": { + "maxAge": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "key": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "logValue": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js" + }, + "security": { + "domainWhiteList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "csrf": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "type": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "useSession": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "supportedRequests": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "xframe": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "value": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.local.js", + "maxAge": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "value": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "value": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "policy": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "ipExceptionList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "helper": { + "shtml": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "F:\\code\\demo\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "F:\\code\\demo\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "F:\\code\\demo\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "F:\\code\\demo\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "F:\\code\\demo\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "F:\\code\\demo\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "F:\\code\\demo\\node_modules\\egg-watcher\\config\\config.local.js", + "eventSources": { + "default": "F:\\code\\demo\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "F:\\code\\demo\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "F:\\code\\demo\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "F:\\code\\demo\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "F:\\code\\demo\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultParamCharset": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "allowArrayField": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "disable": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "development": { + "watchDirs": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "ignoreDirs": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "fastReady": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "reloadOnDebug": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "overrideDefault": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "overrideIgnore": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js" + }, + "logrotator": { + "filesRotateByHour": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "dir": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "preload": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "maxFiles": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js" + }, + "view": { + "root": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js", + "cache": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.local.js", + "defaultExtension": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js" + }, + "env": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "name": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "cookies": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "proxy": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "version": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "description": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "private": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg": { + "declarations": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "dependencies": { + "aedes": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "lodash": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "mqtt": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "egg-bin": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg-mock": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "eslint": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "eslint-config-egg": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "stop": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dev": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "npmPro": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "build": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "debug": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "test": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "test-local": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "cov": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "lint": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "ci": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "type": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "repository": { + "type": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "url": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "author": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "license": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "HOME": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "rundir": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dump": { + "ignore": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "timing": { + "slowBootActionMinDuration": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + } + }, + "confusedConfigurations": { + "bodyparser": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "notFound": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "sitefile": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "middlewares": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "httpClient": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "cacheControl": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "encoding": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "formLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "textLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "strict": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "depth": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "logger": { + "dir": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "encoding": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "env": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "level": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "outputJSON": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "buffer": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "appLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "coreLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "agentLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "errorLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "coreLogger": { + "consoleLevel": "F:\\code\\demo\\node_modules\\egg\\config\\config.local.js" + }, + "allowDebugAtProd": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "enablePerformanceTimer": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "enableFastContextLogger": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "useHttpClientNext": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "meta": { + "enable": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "logging": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "clusterClient": { + "maxWaitTime": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" +} \ No newline at end of file diff --git a/demo/run/agent_timing_7200.json b/demo/run/agent_timing_7200.json new file mode 100644 index 0000000..be3326a --- /dev/null +++ b/demo/run/agent_timing_7200.json @@ -0,0 +1,362 @@ +[ + { + "name": "Process Start", + "start": 1700526702429, + "end": 1700526703916, + "duration": 1487, + "pid": 7200, + "index": 0 + }, + { + "name": "Application Start", + "start": 1700526703917, + "end": 1700526705396, + "duration": 1479, + "pid": 7200, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1700526703927, + "end": 1700526703936, + "duration": 9, + "pid": 7200, + "index": 2 + }, + { + "name": "Load Config", + "start": 1700526703936, + "end": 1700526703965, + "duration": 29, + "pid": 7200, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1700526703937, + "end": 1700526703937, + "duration": 0, + "pid": 7200, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1700526703938, + "end": 1700526703938, + "duration": 0, + "pid": 7200, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1700526703938, + "end": 1700526703939, + "duration": 1, + "pid": 7200, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1700526703939, + "end": 1700526703940, + "duration": 1, + "pid": 7200, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1700526703940, + "end": 1700526703940, + "duration": 0, + "pid": 7200, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1700526703941, + "end": 1700526703941, + "duration": 0, + "pid": 7200, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1700526703941, + "end": 1700526703942, + "duration": 1, + "pid": 7200, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1700526703942, + "end": 1700526703942, + "duration": 0, + "pid": 7200, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1700526703943, + "end": 1700526703943, + "duration": 0, + "pid": 7200, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1700526703944, + "end": 1700526703944, + "duration": 0, + "pid": 7200, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1700526703944, + "end": 1700526703945, + "duration": 1, + "pid": 7200, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1700526703945, + "end": 1700526703945, + "duration": 0, + "pid": 7200, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1700526703946, + "end": 1700526703946, + "duration": 0, + "pid": 7200, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg/config/config.default.js", + "start": 1700526703946, + "end": 1700526703947, + "duration": 1, + "pid": 7200, + "index": 17 + }, + { + "name": "Require(14) config/config.default.js", + "start": 1700526703960, + "end": 1700526703960, + "duration": 0, + "pid": 7200, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg-security/config/config.local.js", + "start": 1700526703962, + "end": 1700526703962, + "duration": 0, + "pid": 7200, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-watcher/config/config.local.js", + "start": 1700526703963, + "end": 1700526703963, + "duration": 0, + "pid": 7200, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-view/config/config.local.js", + "start": 1700526703964, + "end": 1700526703964, + "duration": 0, + "pid": 7200, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg/config/config.local.js", + "start": 1700526703964, + "end": 1700526703965, + "duration": 1, + "pid": 7200, + "index": 22 + }, + { + "name": "Load extend/agent.js", + "start": 1700526703966, + "end": 1700526704402, + "duration": 436, + "pid": 7200, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-security/app/extend/agent.js", + "start": 1700526703977, + "end": 1700526703989, + "duration": 12, + "pid": 7200, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/agent.js", + "start": 1700526703990, + "end": 1700526704333, + "duration": 343, + "pid": 7200, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/agent.js", + "start": 1700526704342, + "end": 1700526704391, + "duration": 49, + "pid": 7200, + "index": 26 + }, + { + "name": "Load extend/context.js", + "start": 1700526704402, + "end": 1700526704860, + "duration": 458, + "pid": 7200, + "index": 27 + }, + { + "name": "Require(22) node_modules/egg-security/app/extend/context.js", + "start": 1700526704402, + "end": 1700526704610, + "duration": 208, + "pid": 7200, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg-jsonp/app/extend/context.js", + "start": 1700526704618, + "end": 1700526704631, + "duration": 13, + "pid": 7200, + "index": 29 + }, + { + "name": "Require(24) node_modules/egg-i18n/app/extend/context.js", + "start": 1700526704631, + "end": 1700526704632, + "duration": 1, + "pid": 7200, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg-multipart/app/extend/context.js", + "start": 1700526704632, + "end": 1700526704848, + "duration": 216, + "pid": 7200, + "index": 31 + }, + { + "name": "Require(26) node_modules/egg-view/app/extend/context.js", + "start": 1700526704849, + "end": 1700526704855, + "duration": 6, + "pid": 7200, + "index": 32 + }, + { + "name": "Require(27) node_modules/egg/app/extend/context.js", + "start": 1700526704856, + "end": 1700526704858, + "duration": 2, + "pid": 7200, + "index": 33 + }, + { + "name": "Load agent.js", + "start": 1700526704860, + "end": 1700526705184, + "duration": 324, + "pid": 7200, + "index": 34 + }, + { + "name": "Require(28) node_modules/egg-security/agent.js", + "start": 1700526704861, + "end": 1700526704861, + "duration": 0, + "pid": 7200, + "index": 35 + }, + { + "name": "Require(29) node_modules/egg-onerror/agent.js", + "start": 1700526704862, + "end": 1700526704862, + "duration": 0, + "pid": 7200, + "index": 36 + }, + { + "name": "Require(30) node_modules/egg-watcher/agent.js", + "start": 1700526704862, + "end": 1700526704874, + "duration": 12, + "pid": 7200, + "index": 37 + }, + { + "name": "Require(31) node_modules/egg-schedule/agent.js", + "start": 1700526704874, + "end": 1700526704887, + "duration": 13, + "pid": 7200, + "index": 38 + }, + { + "name": "Require(32) node_modules/egg-development/agent.js", + "start": 1700526704888, + "end": 1700526705171, + "duration": 283, + "pid": 7200, + "index": 39 + }, + { + "name": "Require(33) node_modules/egg-logrotator/agent.js", + "start": 1700526705171, + "end": 1700526705172, + "duration": 1, + "pid": 7200, + "index": 40 + }, + { + "name": "Require(34) node_modules/egg/agent.js", + "start": 1700526705183, + "end": 1700526705183, + "duration": 0, + "pid": 7200, + "index": 41 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1700526705188, + "end": 1700526705377, + "duration": 189, + "pid": 7200, + "index": 42 + }, + { + "name": "Before Start in node_modules/egg-schedule/agent.js:12:9", + "start": 1700526705189, + "end": 1700526705253, + "duration": 64, + "pid": 7200, + "index": 43 + }, + { + "name": "Before Start in node_modules/egg-development/agent.js:12:9", + "start": 1700526705189, + "end": 1700526705395, + "duration": 206, + "pid": 7200, + "index": 44 + } +] \ No newline at end of file diff --git a/demo/run/application_config.json b/demo/run/application_config.json new file mode 100644 index 0000000..33396e9 --- /dev/null +++ b/demo/run/application_config.json @@ -0,0 +1,584 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true, + "logValue": true, + "overwrite": true, + "signed": true, + "autoCommit": true, + "encode": "", + "decode": "", + "genid": "" + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": true, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "supportedRequests": [ + { + "path": {}, + "methods": [ + "POST", + "PATCH", + "DELETE", + "PUT", + "CONNECT" + ] + } + ], + "refererWhiteList": [], + "matching": "" + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN", + "matching": "" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true, + "matching": "" + }, + "methodnoallow": { + "enable": true, + "matching": "" + }, + "noopen": { + "enable": true, + "matching": "" + }, + "nosniff": { + "enable": true, + "matching": "" + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block", + "matching": "" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "ipExceptionList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "F:\\code\\demo\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [ + "F:\\code\\demo\\node_modules\\egg-session\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-security\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-jsonp\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-onerror\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-i18n\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-watcher\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-schedule\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-multipart\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-development\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-static\\config\\locales", + "F:\\code\\demo\\node_modules\\egg-view\\config\\locales", + "F:\\code\\demo\\node_modules\\egg\\config\\locales", + "F:\\code\\demo\\config\\locales" + ], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y", + "functionName": "__" + }, + "watcher": { + "type": "development", + "eventSources": { + "default": "F:\\code\\demo\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "F:\\code\\demo\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "defaultParamCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": 102400, + "fields": 10, + "fileSize": 10485760, + "files": 10, + "fileExtensions": [], + "whitelist": null, + "allowArrayField": false, + "tmpdir": "C:\\Users\\lichong\\AppData\\Local\\Temp\\egg-multipart-tmp\\mqtttohttp", + "cleanSchedule": { + "cron": "0 30 4 * * *", + "disable": false + }, + "checkFile": "" + }, + "development": { + "watchDirs": [], + "ignoreDirs": [], + "fastReady": false, + "reloadOnDebug": true, + "overrideDefault": false, + "overrideIgnore": false + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "F:\\code\\demo\\app\\public", + "dynamic": true, + "preload": false, + "buffer": false, + "maxFiles": 1000 + }, + "view": { + "root": "F:\\code\\demo\\app\\view", + "cache": false, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "env": "local", + "name": "mqtttohttp", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "baseDir": "F:\\code\\demo", + "HOME": "C:\\Users\\lichong", + "rundir": "F:\\code\\demo\\run", + "dump": { + "ignore": "", + "timing": { + "slowBootActionMinDuration": 5000 + } + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "", + "cacheControl": "public, max-age=2592000" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "returnRawBody": true + }, + "logger": { + "dir": "F:\\code\\demo\\logs\\mqtttohttp", + "encoding": "utf8", + "env": "local", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": false, + "outputJSON": false, + "buffer": true, + "appLogName": "mqtttohttp-web.log", + "coreLogName": "egg-web.log", + "agentLogName": "egg-agent.log", + "errorLogName": "common-error.log", + "coreLogger": { + "consoleLevel": "WARN" + }, + "allowDebugAtProd": false, + "enablePerformanceTimer": false, + "enableFastContextLogger": false, + "type": "application", + "localStorage": "" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "useHttpClientNext": false + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "meta", + "siteFile", + "notfound", + "static", + "bodyParser", + "overrideMethod", + "session", + "securities", + "i18n", + "eggLoaderTrace" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 7020, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "middleware": [], + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware" + }, + "plugins": { + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-onerror", + "version": "2.2.0" + }, + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-session", + "version": "3.3.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-watcher", + "version": "3.1.1", + "dependents": [ + "development" + ] + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-multipart", + "version": "3.3.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-security", + "version": "3.1.0" + }, + "development": { + "enable": true, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-development", + "version": "2.7.0" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-schedule", + "version": "4.0.0", + "dependents": [ + "logrotator" + ] + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-static", + "version": "2.3.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "F:\\code\\demo\\node_modules\\egg\\config\\plugin.js", + "path": "F:\\code\\demo\\node_modules\\egg-view", + "version": "2.1.4" + } + }, + "appInfo": { + "name": "mqtttohttp", + "baseDir": "F:\\code\\demo", + "env": "local", + "scope": "", + "HOME": "C:\\Users\\lichong", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "root": "F:\\code\\demo" + } +} \ No newline at end of file diff --git a/demo/run/application_config_meta.json b/demo/run/application_config_meta.json new file mode 100644 index 0000000..f391543 --- /dev/null +++ b/demo/run/application_config_meta.json @@ -0,0 +1,310 @@ +{ + "keys": "F:\\code\\demo\\config\\config.default.js", + "middleware": "F:\\code\\demo\\config\\config.default.js", + "cluster": { + "listen": { + "port": "F:\\code\\demo\\config\\config.default.js", + "path": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "hostname": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + } + }, + "session": { + "maxAge": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "key": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js", + "logValue": "F:\\code\\demo\\node_modules\\egg-session\\config\\config.default.js" + }, + "security": { + "domainWhiteList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "csrf": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "type": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "useSession": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "supportedRequests": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "xframe": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "value": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.local.js", + "maxAge": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "value": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "value": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "policy": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "ipExceptionList": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "helper": { + "shtml": "F:\\code\\demo\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "F:\\code\\demo\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "F:\\code\\demo\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "F:\\code\\demo\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "F:\\code\\demo\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "F:\\code\\demo\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "F:\\code\\demo\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "F:\\code\\demo\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "F:\\code\\demo\\node_modules\\egg-watcher\\config\\config.local.js", + "eventSources": { + "default": "F:\\code\\demo\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "F:\\code\\demo\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "F:\\code\\demo\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "F:\\code\\demo\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "F:\\code\\demo\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultParamCharset": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "allowArrayField": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js", + "disable": "F:\\code\\demo\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "development": { + "watchDirs": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "ignoreDirs": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "fastReady": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "reloadOnDebug": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "overrideDefault": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js", + "overrideIgnore": "F:\\code\\demo\\node_modules\\egg-development\\config\\config.default.js" + }, + "logrotator": { + "filesRotateByHour": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "F:\\code\\demo\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "dir": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "preload": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js", + "maxFiles": "F:\\code\\demo\\node_modules\\egg-static\\config\\config.default.js" + }, + "view": { + "root": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js", + "cache": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.local.js", + "defaultExtension": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "F:\\code\\demo\\node_modules\\egg-view\\config\\config.default.js" + }, + "env": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "name": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "cookies": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "proxy": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "version": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "description": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "private": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg": { + "declarations": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "dependencies": { + "aedes": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "lodash": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "mqtt": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "egg-bin": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "egg-mock": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "eslint": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "eslint-config-egg": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "stop": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dev": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "npmPro": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "build": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "debug": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "test": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "test-local": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "cov": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "lint": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "ci": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "type": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "repository": { + "type": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "url": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "author": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "license": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "HOME": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "rundir": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dump": { + "ignore": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "timing": { + "slowBootActionMinDuration": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + } + }, + "confusedConfigurations": { + "bodyparser": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "notFound": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "sitefile": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "middlewares": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "httpClient": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "cacheControl": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "encoding": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "formLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "textLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "strict": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "depth": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "logger": { + "dir": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "encoding": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "env": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "level": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "outputJSON": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "buffer": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "appLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "coreLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "agentLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "errorLogName": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "coreLogger": { + "consoleLevel": "F:\\code\\demo\\node_modules\\egg\\config\\config.local.js" + }, + "allowDebugAtProd": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "enablePerformanceTimer": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "enableFastContextLogger": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "useHttpClientNext": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "meta": { + "enable": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "logging": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "clusterClient": { + "maxWaitTime": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "F:\\code\\demo\\node_modules\\egg\\config\\config.default.js" +} \ No newline at end of file diff --git a/demo/run/application_timing_15252.json b/demo/run/application_timing_15252.json new file mode 100644 index 0000000..1b52379 --- /dev/null +++ b/demo/run/application_timing_15252.json @@ -0,0 +1,530 @@ +[ + { + "name": "Process Start", + "start": 1700526705421, + "end": 1700526706058, + "duration": 637, + "pid": 15252, + "index": 0 + }, + { + "name": "Application Start", + "start": 1700526706059, + "end": 1700526708946, + "duration": 2887, + "pid": 15252, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1700526706067, + "end": 1700526706075, + "duration": 8, + "pid": 15252, + "index": 2 + }, + { + "name": "Load Config", + "start": 1700526706075, + "end": 1700526706090, + "duration": 15, + "pid": 15252, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1700526706076, + "end": 1700526706076, + "duration": 0, + "pid": 15252, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1700526706077, + "end": 1700526706077, + "duration": 0, + "pid": 15252, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1700526706077, + "end": 1700526706078, + "duration": 1, + "pid": 15252, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1700526706078, + "end": 1700526706078, + "duration": 0, + "pid": 15252, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1700526706079, + "end": 1700526706079, + "duration": 0, + "pid": 15252, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1700526706079, + "end": 1700526706079, + "duration": 0, + "pid": 15252, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1700526706080, + "end": 1700526706080, + "duration": 0, + "pid": 15252, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1700526706080, + "end": 1700526706081, + "duration": 1, + "pid": 15252, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1700526706081, + "end": 1700526706082, + "duration": 1, + "pid": 15252, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1700526706083, + "end": 1700526706083, + "duration": 0, + "pid": 15252, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1700526706083, + "end": 1700526706084, + "duration": 1, + "pid": 15252, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1700526706084, + "end": 1700526706084, + "duration": 0, + "pid": 15252, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1700526706084, + "end": 1700526706084, + "duration": 0, + "pid": 15252, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg/config/config.default.js", + "start": 1700526706085, + "end": 1700526706085, + "duration": 0, + "pid": 15252, + "index": 17 + }, + { + "name": "Require(14) config/config.default.js", + "start": 1700526706086, + "end": 1700526706086, + "duration": 0, + "pid": 15252, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg-security/config/config.local.js", + "start": 1700526706087, + "end": 1700526706087, + "duration": 0, + "pid": 15252, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-watcher/config/config.local.js", + "start": 1700526706088, + "end": 1700526706088, + "duration": 0, + "pid": 15252, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-view/config/config.local.js", + "start": 1700526706089, + "end": 1700526706089, + "duration": 0, + "pid": 15252, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg/config/config.local.js", + "start": 1700526706090, + "end": 1700526706090, + "duration": 0, + "pid": 15252, + "index": 22 + }, + { + "name": "Load extend/application.js", + "start": 1700526706091, + "end": 1700526706127, + "duration": 36, + "pid": 15252, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-session/app/extend/application.js", + "start": 1700526706091, + "end": 1700526706092, + "duration": 1, + "pid": 15252, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-security/app/extend/application.js", + "start": 1700526706092, + "end": 1700526706096, + "duration": 4, + "pid": 15252, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-jsonp/app/extend/application.js", + "start": 1700526706096, + "end": 1700526706097, + "duration": 1, + "pid": 15252, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-schedule/app/extend/application.js", + "start": 1700526706097, + "end": 1700526706110, + "duration": 13, + "pid": 15252, + "index": 27 + }, + { + "name": "Require(23) node_modules/egg-logrotator/app/extend/application.js", + "start": 1700526706111, + "end": 1700526706115, + "duration": 4, + "pid": 15252, + "index": 28 + }, + { + "name": "Require(24) node_modules/egg-view/app/extend/application.js", + "start": 1700526706115, + "end": 1700526706126, + "duration": 11, + "pid": 15252, + "index": 29 + }, + { + "name": "Load extend/request.js", + "start": 1700526706127, + "end": 1700526706158, + "duration": 31, + "pid": 15252, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg/app/extend/request.js", + "start": 1700526706142, + "end": 1700526706155, + "duration": 13, + "pid": 15252, + "index": 31 + }, + { + "name": "Load extend/response.js", + "start": 1700526706158, + "end": 1700526706170, + "duration": 12, + "pid": 15252, + "index": 32 + }, + { + "name": "Require(26) node_modules/egg/app/extend/response.js", + "start": 1700526706160, + "end": 1700526706168, + "duration": 8, + "pid": 15252, + "index": 33 + }, + { + "name": "Load extend/context.js", + "start": 1700526706170, + "end": 1700526706191, + "duration": 21, + "pid": 15252, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-security/app/extend/context.js", + "start": 1700526706170, + "end": 1700526706176, + "duration": 6, + "pid": 15252, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-jsonp/app/extend/context.js", + "start": 1700526706176, + "end": 1700526706177, + "duration": 1, + "pid": 15252, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-i18n/app/extend/context.js", + "start": 1700526706177, + "end": 1700526706178, + "duration": 1, + "pid": 15252, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-multipart/app/extend/context.js", + "start": 1700526706178, + "end": 1700526706188, + "duration": 10, + "pid": 15252, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg-view/app/extend/context.js", + "start": 1700526706188, + "end": 1700526706189, + "duration": 1, + "pid": 15252, + "index": 39 + }, + { + "name": "Require(32) node_modules/egg/app/extend/context.js", + "start": 1700526706189, + "end": 1700526706190, + "duration": 1, + "pid": 15252, + "index": 40 + }, + { + "name": "Load extend/helper.js", + "start": 1700526706192, + "end": 1700526706388, + "duration": 196, + "pid": 15252, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg-security/app/extend/helper.js", + "start": 1700526706192, + "end": 1700526706370, + "duration": 178, + "pid": 15252, + "index": 42 + }, + { + "name": "Require(34) node_modules/egg/app/extend/helper.js", + "start": 1700526706372, + "end": 1700526706384, + "duration": 12, + "pid": 15252, + "index": 43 + }, + { + "name": "Load app.js", + "start": 1700526706389, + "end": 1700526707920, + "duration": 1531, + "pid": 15252, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-session/app.js", + "start": 1700526706389, + "end": 1700526706401, + "duration": 12, + "pid": 15252, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-security/app.js", + "start": 1700526706403, + "end": 1700526706413, + "duration": 10, + "pid": 15252, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-onerror/app.js", + "start": 1700526706414, + "end": 1700526706501, + "duration": 87, + "pid": 15252, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-i18n/app.js", + "start": 1700526706502, + "end": 1700526706591, + "duration": 89, + "pid": 15252, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-watcher/app.js", + "start": 1700526706591, + "end": 1700526706594, + "duration": 3, + "pid": 15252, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-schedule/app.js", + "start": 1700526706594, + "end": 1700526706595, + "duration": 1, + "pid": 15252, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-multipart/app.js", + "start": 1700526706595, + "end": 1700526706606, + "duration": 11, + "pid": 15252, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-development/app.js", + "start": 1700526706606, + "end": 1700526706607, + "duration": 1, + "pid": 15252, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-logrotator/app.js", + "start": 1700526706607, + "end": 1700526706607, + "duration": 0, + "pid": 15252, + "index": 53 + }, + { + "name": "Require(44) node_modules/egg-static/app.js", + "start": 1700526706608, + "end": 1700526706608, + "duration": 0, + "pid": 15252, + "index": 54 + }, + { + "name": "Require(45) app.js", + "start": 1700526706608, + "end": 1700526707920, + "duration": 1312, + "pid": 15252, + "index": 55 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1700526707940, + "end": 1700526708932, + "duration": 992, + "pid": 15252, + "index": 56 + }, + { + "name": "Load Service", + "start": 1700526707965, + "end": 1700526707969, + "duration": 4, + "pid": 15252, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1700526707965, + "end": 1700526707969, + "duration": 4, + "pid": 15252, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1700526707970, + "end": 1700526708898, + "duration": 928, + "pid": 15252, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1700526707970, + "end": 1700526708891, + "duration": 921, + "pid": 15252, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1700526708898, + "end": 1700526708900, + "duration": 2, + "pid": 15252, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1700526708898, + "end": 1700526708900, + "duration": 2, + "pid": 15252, + "index": 62 + }, + { + "name": "Load Router", + "start": 1700526708900, + "end": 1700526708901, + "duration": 1, + "pid": 15252, + "index": 63 + }, + { + "name": "Require(46) app/router.js", + "start": 1700526708900, + "end": 1700526708900, + "duration": 0, + "pid": 15252, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:304:10", + "start": 1700526708900, + "end": 1700526708918, + "duration": 18, + "pid": 15252, + "index": 65 + } +] \ No newline at end of file diff --git a/demo/run/application_timing_17632.json b/demo/run/application_timing_17632.json new file mode 100644 index 0000000..be67c1b --- /dev/null +++ b/demo/run/application_timing_17632.json @@ -0,0 +1,530 @@ +[ + { + "name": "Process Start", + "start": 1700535304054, + "end": 1700535304755, + "duration": 701, + "pid": 17632, + "index": 0 + }, + { + "name": "Application Start", + "start": 1700535304756, + "end": 1700535305081, + "duration": 325, + "pid": 17632, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1700535304764, + "end": 1700535304774, + "duration": 10, + "pid": 17632, + "index": 2 + }, + { + "name": "Load Config", + "start": 1700535304774, + "end": 1700535304792, + "duration": 18, + "pid": 17632, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1700535304774, + "end": 1700535304775, + "duration": 1, + "pid": 17632, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1700535304776, + "end": 1700535304779, + "duration": 3, + "pid": 17632, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1700535304779, + "end": 1700535304780, + "duration": 1, + "pid": 17632, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1700535304780, + "end": 1700535304780, + "duration": 0, + "pid": 17632, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1700535304781, + "end": 1700535304781, + "duration": 0, + "pid": 17632, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1700535304781, + "end": 1700535304782, + "duration": 1, + "pid": 17632, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1700535304782, + "end": 1700535304782, + "duration": 0, + "pid": 17632, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1700535304783, + "end": 1700535304783, + "duration": 0, + "pid": 17632, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1700535304783, + "end": 1700535304784, + "duration": 1, + "pid": 17632, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1700535304784, + "end": 1700535304784, + "duration": 0, + "pid": 17632, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1700535304785, + "end": 1700535304785, + "duration": 0, + "pid": 17632, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1700535304785, + "end": 1700535304786, + "duration": 1, + "pid": 17632, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1700535304786, + "end": 1700535304786, + "duration": 0, + "pid": 17632, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg/config/config.default.js", + "start": 1700535304787, + "end": 1700535304787, + "duration": 0, + "pid": 17632, + "index": 17 + }, + { + "name": "Require(14) config/config.default.js", + "start": 1700535304788, + "end": 1700535304788, + "duration": 0, + "pid": 17632, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg-security/config/config.local.js", + "start": 1700535304789, + "end": 1700535304790, + "duration": 1, + "pid": 17632, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-watcher/config/config.local.js", + "start": 1700535304790, + "end": 1700535304790, + "duration": 0, + "pid": 17632, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-view/config/config.local.js", + "start": 1700535304791, + "end": 1700535304791, + "duration": 0, + "pid": 17632, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg/config/config.local.js", + "start": 1700535304792, + "end": 1700535304792, + "duration": 0, + "pid": 17632, + "index": 22 + }, + { + "name": "Load extend/application.js", + "start": 1700535304793, + "end": 1700535304806, + "duration": 13, + "pid": 17632, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-session/app/extend/application.js", + "start": 1700535304793, + "end": 1700535304793, + "duration": 0, + "pid": 17632, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-security/app/extend/application.js", + "start": 1700535304794, + "end": 1700535304794, + "duration": 0, + "pid": 17632, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-jsonp/app/extend/application.js", + "start": 1700535304795, + "end": 1700535304796, + "duration": 1, + "pid": 17632, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-schedule/app/extend/application.js", + "start": 1700535304796, + "end": 1700535304797, + "duration": 1, + "pid": 17632, + "index": 27 + }, + { + "name": "Require(23) node_modules/egg-logrotator/app/extend/application.js", + "start": 1700535304798, + "end": 1700535304803, + "duration": 5, + "pid": 17632, + "index": 28 + }, + { + "name": "Require(24) node_modules/egg-view/app/extend/application.js", + "start": 1700535304803, + "end": 1700535304805, + "duration": 2, + "pid": 17632, + "index": 29 + }, + { + "name": "Load extend/request.js", + "start": 1700535304806, + "end": 1700535304809, + "duration": 3, + "pid": 17632, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg/app/extend/request.js", + "start": 1700535304807, + "end": 1700535304808, + "duration": 1, + "pid": 17632, + "index": 31 + }, + { + "name": "Load extend/response.js", + "start": 1700535304809, + "end": 1700535304813, + "duration": 4, + "pid": 17632, + "index": 32 + }, + { + "name": "Require(26) node_modules/egg/app/extend/response.js", + "start": 1700535304811, + "end": 1700535304812, + "duration": 1, + "pid": 17632, + "index": 33 + }, + { + "name": "Load extend/context.js", + "start": 1700535304813, + "end": 1700535304839, + "duration": 26, + "pid": 17632, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-security/app/extend/context.js", + "start": 1700535304814, + "end": 1700535304821, + "duration": 7, + "pid": 17632, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-jsonp/app/extend/context.js", + "start": 1700535304821, + "end": 1700535304822, + "duration": 1, + "pid": 17632, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-i18n/app/extend/context.js", + "start": 1700535304822, + "end": 1700535304823, + "duration": 1, + "pid": 17632, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-multipart/app/extend/context.js", + "start": 1700535304823, + "end": 1700535304834, + "duration": 11, + "pid": 17632, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg-view/app/extend/context.js", + "start": 1700535304835, + "end": 1700535304836, + "duration": 1, + "pid": 17632, + "index": 39 + }, + { + "name": "Require(32) node_modules/egg/app/extend/context.js", + "start": 1700535304836, + "end": 1700535304837, + "duration": 1, + "pid": 17632, + "index": 40 + }, + { + "name": "Load extend/helper.js", + "start": 1700535304839, + "end": 1700535304853, + "duration": 14, + "pid": 17632, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg-security/app/extend/helper.js", + "start": 1700535304839, + "end": 1700535304850, + "duration": 11, + "pid": 17632, + "index": 42 + }, + { + "name": "Require(34) node_modules/egg/app/extend/helper.js", + "start": 1700535304851, + "end": 1700535304851, + "duration": 0, + "pid": 17632, + "index": 43 + }, + { + "name": "Load app.js", + "start": 1700535304853, + "end": 1700535304948, + "duration": 95, + "pid": 17632, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-session/app.js", + "start": 1700535304854, + "end": 1700535304854, + "duration": 0, + "pid": 17632, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-security/app.js", + "start": 1700535304855, + "end": 1700535304856, + "duration": 1, + "pid": 17632, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-onerror/app.js", + "start": 1700535304856, + "end": 1700535304862, + "duration": 6, + "pid": 17632, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-i18n/app.js", + "start": 1700535304862, + "end": 1700535304869, + "duration": 7, + "pid": 17632, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-watcher/app.js", + "start": 1700535304870, + "end": 1700535304872, + "duration": 2, + "pid": 17632, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-schedule/app.js", + "start": 1700535304872, + "end": 1700535304873, + "duration": 1, + "pid": 17632, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-multipart/app.js", + "start": 1700535304873, + "end": 1700535304874, + "duration": 1, + "pid": 17632, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-development/app.js", + "start": 1700535304874, + "end": 1700535304874, + "duration": 0, + "pid": 17632, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-logrotator/app.js", + "start": 1700535304875, + "end": 1700535304875, + "duration": 0, + "pid": 17632, + "index": 53 + }, + { + "name": "Require(44) node_modules/egg-static/app.js", + "start": 1700535304875, + "end": 1700535304875, + "duration": 0, + "pid": 17632, + "index": 54 + }, + { + "name": "Require(45) app.js", + "start": 1700535304876, + "end": 1700535304948, + "duration": 72, + "pid": 17632, + "index": 55 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1700535304953, + "end": 1700535305067, + "duration": 114, + "pid": 17632, + "index": 56 + }, + { + "name": "Load Service", + "start": 1700535304979, + "end": 1700535304982, + "duration": 3, + "pid": 17632, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1700535304979, + "end": 1700535304982, + "duration": 3, + "pid": 17632, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1700535304982, + "end": 1700535305050, + "duration": 68, + "pid": 17632, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1700535304982, + "end": 1700535305043, + "duration": 61, + "pid": 17632, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1700535305050, + "end": 1700535305052, + "duration": 2, + "pid": 17632, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1700535305050, + "end": 1700535305052, + "duration": 2, + "pid": 17632, + "index": 62 + }, + { + "name": "Load Router", + "start": 1700535305052, + "end": 1700535305053, + "duration": 1, + "pid": 17632, + "index": 63 + }, + { + "name": "Require(46) app/router.js", + "start": 1700535305052, + "end": 1700535305052, + "duration": 0, + "pid": 17632, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:304:10", + "start": 1700535305052, + "end": 1700535305059, + "duration": 7, + "pid": 17632, + "index": 65 + } +] \ No newline at end of file diff --git a/demo/run/application_timing_9772.json b/demo/run/application_timing_9772.json new file mode 100644 index 0000000..973b21e --- /dev/null +++ b/demo/run/application_timing_9772.json @@ -0,0 +1,530 @@ +[ + { + "name": "Process Start", + "start": 1700535301978, + "end": 1700535302668, + "duration": 690, + "pid": 9772, + "index": 0 + }, + { + "name": "Application Start", + "start": 1700535302669, + "end": 1700535302992, + "duration": 323, + "pid": 9772, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1700535302677, + "end": 1700535302687, + "duration": 10, + "pid": 9772, + "index": 2 + }, + { + "name": "Load Config", + "start": 1700535302687, + "end": 1700535302703, + "duration": 16, + "pid": 9772, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1700535302688, + "end": 1700535302688, + "duration": 0, + "pid": 9772, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1700535302689, + "end": 1700535302689, + "duration": 0, + "pid": 9772, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1700535302689, + "end": 1700535302690, + "duration": 1, + "pid": 9772, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1700535302690, + "end": 1700535302692, + "duration": 2, + "pid": 9772, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1700535302692, + "end": 1700535302693, + "duration": 1, + "pid": 9772, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1700535302693, + "end": 1700535302693, + "duration": 0, + "pid": 9772, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1700535302694, + "end": 1700535302694, + "duration": 0, + "pid": 9772, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1700535302694, + "end": 1700535302695, + "duration": 1, + "pid": 9772, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1700535302695, + "end": 1700535302695, + "duration": 0, + "pid": 9772, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1700535302696, + "end": 1700535302696, + "duration": 0, + "pid": 9772, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1700535302696, + "end": 1700535302696, + "duration": 0, + "pid": 9772, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1700535302697, + "end": 1700535302697, + "duration": 0, + "pid": 9772, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1700535302697, + "end": 1700535302698, + "duration": 1, + "pid": 9772, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg/config/config.default.js", + "start": 1700535302698, + "end": 1700535302698, + "duration": 0, + "pid": 9772, + "index": 17 + }, + { + "name": "Require(14) config/config.default.js", + "start": 1700535302699, + "end": 1700535302699, + "duration": 0, + "pid": 9772, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg-security/config/config.local.js", + "start": 1700535302700, + "end": 1700535302700, + "duration": 0, + "pid": 9772, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-watcher/config/config.local.js", + "start": 1700535302701, + "end": 1700535302701, + "duration": 0, + "pid": 9772, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-view/config/config.local.js", + "start": 1700535302702, + "end": 1700535302702, + "duration": 0, + "pid": 9772, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg/config/config.local.js", + "start": 1700535302702, + "end": 1700535302703, + "duration": 1, + "pid": 9772, + "index": 22 + }, + { + "name": "Load extend/application.js", + "start": 1700535302703, + "end": 1700535302719, + "duration": 16, + "pid": 9772, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-session/app/extend/application.js", + "start": 1700535302704, + "end": 1700535302704, + "duration": 0, + "pid": 9772, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-security/app/extend/application.js", + "start": 1700535302705, + "end": 1700535302707, + "duration": 2, + "pid": 9772, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-jsonp/app/extend/application.js", + "start": 1700535302707, + "end": 1700535302708, + "duration": 1, + "pid": 9772, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-schedule/app/extend/application.js", + "start": 1700535302709, + "end": 1700535302710, + "duration": 1, + "pid": 9772, + "index": 27 + }, + { + "name": "Require(23) node_modules/egg-logrotator/app/extend/application.js", + "start": 1700535302711, + "end": 1700535302716, + "duration": 5, + "pid": 9772, + "index": 28 + }, + { + "name": "Require(24) node_modules/egg-view/app/extend/application.js", + "start": 1700535302716, + "end": 1700535302717, + "duration": 1, + "pid": 9772, + "index": 29 + }, + { + "name": "Load extend/request.js", + "start": 1700535302719, + "end": 1700535302722, + "duration": 3, + "pid": 9772, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg/app/extend/request.js", + "start": 1700535302720, + "end": 1700535302721, + "duration": 1, + "pid": 9772, + "index": 31 + }, + { + "name": "Load extend/response.js", + "start": 1700535302722, + "end": 1700535302726, + "duration": 4, + "pid": 9772, + "index": 32 + }, + { + "name": "Require(26) node_modules/egg/app/extend/response.js", + "start": 1700535302723, + "end": 1700535302725, + "duration": 2, + "pid": 9772, + "index": 33 + }, + { + "name": "Load extend/context.js", + "start": 1700535302726, + "end": 1700535302752, + "duration": 26, + "pid": 9772, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-security/app/extend/context.js", + "start": 1700535302726, + "end": 1700535302734, + "duration": 8, + "pid": 9772, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-jsonp/app/extend/context.js", + "start": 1700535302734, + "end": 1700535302735, + "duration": 1, + "pid": 9772, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-i18n/app/extend/context.js", + "start": 1700535302736, + "end": 1700535302736, + "duration": 0, + "pid": 9772, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-multipart/app/extend/context.js", + "start": 1700535302736, + "end": 1700535302749, + "duration": 13, + "pid": 9772, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg-view/app/extend/context.js", + "start": 1700535302749, + "end": 1700535302750, + "duration": 1, + "pid": 9772, + "index": 39 + }, + { + "name": "Require(32) node_modules/egg/app/extend/context.js", + "start": 1700535302750, + "end": 1700535302751, + "duration": 1, + "pid": 9772, + "index": 40 + }, + { + "name": "Load extend/helper.js", + "start": 1700535302752, + "end": 1700535302767, + "duration": 15, + "pid": 9772, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg-security/app/extend/helper.js", + "start": 1700535302753, + "end": 1700535302764, + "duration": 11, + "pid": 9772, + "index": 42 + }, + { + "name": "Require(34) node_modules/egg/app/extend/helper.js", + "start": 1700535302765, + "end": 1700535302766, + "duration": 1, + "pid": 9772, + "index": 43 + }, + { + "name": "Load app.js", + "start": 1700535302767, + "end": 1700535302861, + "duration": 94, + "pid": 9772, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-session/app.js", + "start": 1700535302767, + "end": 1700535302768, + "duration": 1, + "pid": 9772, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-security/app.js", + "start": 1700535302768, + "end": 1700535302769, + "duration": 1, + "pid": 9772, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-onerror/app.js", + "start": 1700535302770, + "end": 1700535302776, + "duration": 6, + "pid": 9772, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-i18n/app.js", + "start": 1700535302776, + "end": 1700535302783, + "duration": 7, + "pid": 9772, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-watcher/app.js", + "start": 1700535302783, + "end": 1700535302786, + "duration": 3, + "pid": 9772, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-schedule/app.js", + "start": 1700535302786, + "end": 1700535302787, + "duration": 1, + "pid": 9772, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-multipart/app.js", + "start": 1700535302787, + "end": 1700535302788, + "duration": 1, + "pid": 9772, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-development/app.js", + "start": 1700535302788, + "end": 1700535302788, + "duration": 0, + "pid": 9772, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-logrotator/app.js", + "start": 1700535302788, + "end": 1700535302789, + "duration": 1, + "pid": 9772, + "index": 53 + }, + { + "name": "Require(44) node_modules/egg-static/app.js", + "start": 1700535302789, + "end": 1700535302789, + "duration": 0, + "pid": 9772, + "index": 54 + }, + { + "name": "Require(45) app.js", + "start": 1700535302790, + "end": 1700535302861, + "duration": 71, + "pid": 9772, + "index": 55 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1700535302866, + "end": 1700535302979, + "duration": 113, + "pid": 9772, + "index": 56 + }, + { + "name": "Load Service", + "start": 1700535302890, + "end": 1700535302893, + "duration": 3, + "pid": 9772, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1700535302890, + "end": 1700535302893, + "duration": 3, + "pid": 9772, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1700535302893, + "end": 1700535302964, + "duration": 71, + "pid": 9772, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1700535302893, + "end": 1700535302958, + "duration": 65, + "pid": 9772, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1700535302964, + "end": 1700535302966, + "duration": 2, + "pid": 9772, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1700535302964, + "end": 1700535302966, + "duration": 2, + "pid": 9772, + "index": 62 + }, + { + "name": "Load Router", + "start": 1700535302966, + "end": 1700535302967, + "duration": 1, + "pid": 9772, + "index": 63 + }, + { + "name": "Require(46) app/router.js", + "start": 1700535302966, + "end": 1700535302966, + "duration": 0, + "pid": 9772, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:304:10", + "start": 1700535302966, + "end": 1700535302972, + "duration": 6, + "pid": 9772, + "index": 65 + } +] \ No newline at end of file diff --git a/demo/run/router.json b/demo/run/router.json new file mode 100644 index 0000000..0ad7725 --- /dev/null +++ b/demo/run/router.json @@ -0,0 +1,14 @@ +[ + { + "name": null, + "methods": [ + "POST" + ], + "paramNames": [], + "path": "/", + "regexp": "/^(?:\\/(?=$))?$/", + "stack": [ + "wrappedController" + ] + } +] \ No newline at end of file diff --git a/demo/typings/app/controller/index.d.ts b/demo/typings/app/controller/index.d.ts new file mode 100644 index 0000000..7dad0e3 --- /dev/null +++ b/demo/typings/app/controller/index.d.ts @@ -0,0 +1,12 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import ExportHome = require('../../../app/controller/home'); + +declare module 'egg' { + interface IController { + home: ExportHome; + } +} diff --git a/demo/typings/app/index.d.ts b/demo/typings/app/index.d.ts new file mode 100644 index 0000000..c604948 --- /dev/null +++ b/demo/typings/app/index.d.ts @@ -0,0 +1,7 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +export * from 'egg'; +export as namespace Egg; diff --git a/demo/typings/config/index.d.ts b/demo/typings/config/index.d.ts new file mode 100644 index 0000000..a8add35 --- /dev/null +++ b/demo/typings/config/index.d.ts @@ -0,0 +1,12 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import { EggAppConfig } from 'egg'; +import ExportConfigDefault = require('../../config/config.default'); +type ConfigDefault = ReturnType; +type NewEggAppConfig = ConfigDefault; +declare module 'egg' { + interface EggAppConfig extends NewEggAppConfig { } +} \ No newline at end of file diff --git a/demo/typings/config/plugin.d.ts b/demo/typings/config/plugin.d.ts new file mode 100644 index 0000000..57c59b0 --- /dev/null +++ b/demo/typings/config/plugin.d.ts @@ -0,0 +1,34 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import 'egg-onerror'; +import 'egg-session'; +import 'egg-i18n'; +import 'egg-watcher'; +import 'egg-multipart'; +import 'egg-security'; +import 'egg-development'; +import 'egg-logrotator'; +import 'egg-schedule'; +import 'egg-static'; +import 'egg-jsonp'; +import 'egg-view'; +import { EggPluginItem } from 'egg'; +declare module 'egg' { + interface EggPlugin { + onerror?: EggPluginItem; + session?: EggPluginItem; + i18n?: EggPluginItem; + watcher?: EggPluginItem; + multipart?: EggPluginItem; + security?: EggPluginItem; + development?: EggPluginItem; + logrotator?: EggPluginItem; + schedule?: EggPluginItem; + static?: EggPluginItem; + jsonp?: EggPluginItem; + view?: EggPluginItem; + } +} \ No newline at end of file diff --git a/developedcode/cegongji/back/.eslintignore b/developedcode/cegongji/back/.eslintignore new file mode 100644 index 0000000..4ebc8ae --- /dev/null +++ b/developedcode/cegongji/back/.eslintignore @@ -0,0 +1 @@ +coverage diff --git a/developedcode/cegongji/back/.eslintrc b/developedcode/cegongji/back/.eslintrc new file mode 100644 index 0000000..f304bdd --- /dev/null +++ b/developedcode/cegongji/back/.eslintrc @@ -0,0 +1,4 @@ +{ + "extends": "eslint-config-egg", + "root": true +} diff --git a/developedcode/cegongji/back/.gitignore b/developedcode/cegongji/back/.gitignore new file mode 100644 index 0000000..652759b --- /dev/null +++ b/developedcode/cegongji/back/.gitignore @@ -0,0 +1,15 @@ +logs/ +npm-debug.log +yarn-error.log +node_modules/ +*-lock.json +*-lock.yaml +yarn.lock +coverage/ +.idea/ +run/ +.DS_Store +*.sw* +*.un~ +typings/ +.nyc_output/ diff --git a/developedcode/cegongji/back/README.md b/developedcode/cegongji/back/README.md new file mode 100644 index 0000000..7f70ca2 --- /dev/null +++ b/developedcode/cegongji/back/README.md @@ -0,0 +1,33 @@ +# cegongji + +cegongji back + +## QuickStart + + + +see [egg docs][egg] for more detail. + +### Development + +```bash +$ npm i +$ npm run dev +$ open http://localhost:7001/ +``` + +### Deploy + +```bash +$ npm start +$ npm stop +``` + +### npm scripts + +- Use `npm run lint` to check code style. +- Use `npm test` to run unit test. +- Use `npm run autod` to auto detect dependencies upgrade, see [autod](https://www.npmjs.com/package/autod) for more detail. + + +[egg]: https://eggjs.org \ No newline at end of file diff --git a/developedcode/cegongji/back/agent.js b/developedcode/cegongji/back/agent.js new file mode 100644 index 0000000..6f73602 --- /dev/null +++ b/developedcode/cegongji/back/agent.js @@ -0,0 +1,3 @@ +module.exports = async app => { + +} diff --git a/developedcode/cegongji/back/app.js b/developedcode/cegongji/back/app.js new file mode 100644 index 0000000..8bf5012 --- /dev/null +++ b/developedcode/cegongji/back/app.js @@ -0,0 +1,128 @@ +const { SerialPort } = require('serialport') +const mqtt = require("mqtt"); +require('events').EventEmitter.defaultMaxListeners = 0; // 解除限制 +const serialPortParams = { + path: "COM5", + baudRate: 9600, //波特率 + dataBits: 8, //数据位 + parity: 'none', //奇偶校验 + stopBits: 1, //停止位 + flowControl: false, + autoOpen: false, //不自动打开 + // highWaterMark: 64 * 1024, + highWaterMark: 32, +} +class AppBootHook { + constructor(app) { + this.app = app; + } + configWillLoad() { + // 此时 config 文件已经被读取并合并,但是还并未生效 + // 这是应用层修改配置的最后时机 + // 注意:此函数只支持同步调用 + } + + async didLoad() { + // 所有的配置已经加载完毕 + // 可以用来加载应用自定义的文件,启动自定义的服务 + + + } + + async willReady() { + // 所有的插件都已启动完毕,但是应用整体还未 ready + // 可以做一些数据初始化等操作,这些操作成功才会启动应用 + + } + + async didReady() { + // 应用已经启动完毕 + + } + + async serverDidReady() { + // http / https server 已启动,开始接受外部请求 + // 此时可以从 app.server 拿到 server 的实例 + //生成串口连接 + function genSerialport(options) { + return new SerialPort({ ...serialPortParams, ...options }) + } + //转矩转速功率测量仪下"COM1" + //转矩转速功率测量仪中"COM2" + //转矩转速功率测量仪上"COM3" + //wlk-10A控制器(下上一体)"COM4" + //XSD5-2隔离型 "COM5" + //初始化串口 + this.app.comKey = [ + { + key: "XSD5", + ripCom: "COM5", + sendRipId: "01 03 00 00 00 06", + ripBackStart: "01 03", + recieveRipLength: 17, + ripComInstence: genSerialport({ path: "COM5" }), + }, + { + key: "TR4DU", + ripCom: "COM3", + sendRipId: "05 03 00 00 00 09", + ripBackStart: "05 03", + recieveRipLength: 23, + ripComInstence: genSerialport({ path: "COM3" }), + }, + { + key: "WLK10A", + ripCom: "COM4", + execFun: ["WLK10AU", "WLK10AD"], + sendRipId: "01 03 00 00 00 02", + ripBackStart: "01 03", + recieveRipLength: 9, + ripComInstence: genSerialport({ path: "COM4" }), + }, + { + key: "TR4DM", + ripCom: "COM2", + sendRipId: "05 03 00 00 00 09", + ripBackStart: "05 03", + recieveRipLength: 23, + ripComInstence: genSerialport({ path: "COM2" }), + }, + { + key: "TR4DD", + ripCom: "COM1", + sendRipId: "05 03 00 00 00 09", + ripBackStart: "05 03", + recieveRipLength: 23, + ripComInstence: genSerialport({ path: "COM1" }), + }, + { + key: "relay", + ripCom: "COM7", + // sendRipId: ["08 01 00 41 00 08", "02 01 00 41 00 08"], + sendRipId: ["08 01 00 41 00 08"], + // ripBackStart: ["01 01 01", "02 01 01"], + ripBackStart: ["08 01 01"], + recieveRipLength: 6, + ripComInstence: genSerialport({ path: "COM7" }), + }, + // { + // key: "COM6", + // ripCom: "COM6", + // sendRipId: ["01 01 00 41 00 08", "02 01 00 41 00 08"], + // ripBackStart: ["01 01 01", "02 01 01"], + // recieveRipLength: 6, + // ripComInstence: genSerialport({ path: "COM6" }), + // }, + ] + this.app.mqttServe = mqtt.connect("mqtt://127.0.0.1:1883", { + clean: true, + connectTimeout: 4000, + clientId: 'COM-' + Math.random().toString(16).substring(2), + }); + this.app.mqttServe.on("connect", function () { + console.log("appmqtt服务器连接成功"); + }); + } +} + +module.exports = AppBootHook; diff --git a/developedcode/cegongji/back/app/controller/dualFlowMotor.js b/developedcode/cegongji/back/app/controller/dualFlowMotor.js new file mode 100644 index 0000000..b0efe39 --- /dev/null +++ b/developedcode/cegongji/back/app/controller/dualFlowMotor.js @@ -0,0 +1,30 @@ +'use strict'; +const _ = require("lodash"); +const Controller = require('egg').Controller; +class DualFlowMotorController extends Controller { + //初始化双流电机 + async init() { + let { ctx } = this; + let params = ctx.request.body + let res = await ctx.service.dualFlowMotor.init(params); + ctx.body = res + ctx.status = 200 + } + //保存双流电机数据 + async send() { + let { ctx } = this; + let params = ctx.request.body + let res = await ctx.service.dualFlowMotor.send(params); + ctx.body = res + ctx.status = 200 + } + //保存双流电机数据 + async save() { + let { ctx } = this; + let params = ctx.request.body + let res = await ctx.service.dualFlowMotor.save(params); + ctx.body = res + ctx.status = 200 + } +} +module.exports = DualFlowMotorController; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/controller/home.js b/developedcode/cegongji/back/app/controller/home.js new file mode 100644 index 0000000..bf7b12c --- /dev/null +++ b/developedcode/cegongji/back/app/controller/home.js @@ -0,0 +1,32 @@ +'use strict'; +const Controller = require('egg').Controller; +const _ = require("lodash"); +class HomeController extends Controller { + //启动定时任务 + async startSend() { + let { ctx } = this; + ctx.service.home.startSend(ctx.request.body); + ctx.body = { + haserror: false, + msg: `(${_.join(_.map(ctx.request.body, "key"), "、")})定时任务开始`, + } + ctx.status = 200 + } + //初始化发送一次查询命令 + async startSendOnce() { + let { ctx } = this; + let res = await ctx.service.home.startSendOnce(ctx.request.body); + ctx.body = res + ctx.status = 200 + } + + //关闭定时任务 + async endSend() { + let { ctx } = this; + let res = await ctx.service.home.endSend(); + ctx.body = res + ctx.status = 200 + } +} + +module.exports = HomeController; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/controller/hubMotor.js b/developedcode/cegongji/back/app/controller/hubMotor.js new file mode 100644 index 0000000..ff3b4ec --- /dev/null +++ b/developedcode/cegongji/back/app/controller/hubMotor.js @@ -0,0 +1,22 @@ +'use strict'; +const _ = require("lodash"); +const Controller = require('egg').Controller; +class HubMotorController extends Controller { + //初始化轮毂电机 + async init() { + let { ctx } = this; + let params = ctx.request.body + let res = await ctx.service.hubMotor.init(params); + ctx.body = res + ctx.status = 200 + } + //保存轮毂电机数据 + async save() { + let { ctx } = this; + let params = ctx.request.body + let res = await ctx.service.hubMotor.save(params); + ctx.body = res + ctx.status = 200 + } +} +module.exports = HubMotorController; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/controller/message.js b/developedcode/cegongji/back/app/controller/message.js new file mode 100644 index 0000000..d38ce83 --- /dev/null +++ b/developedcode/cegongji/back/app/controller/message.js @@ -0,0 +1,33 @@ +'use strict'; +const _ = require("lodash"); +const Controller = require('egg').Controller; +class MessageController extends Controller { + //打开端口 + async openCom() { + let { ctx } = this; + let params = ctx.request.body + let SerialPortItem = _.find(ctx.app.comKey, { key: params.key }) + let res = await ctx.service.message.openCom(SerialPortItem); + ctx.body = res + ctx.status = 200 + } + //关闭端口 + async closeCom() { + let { ctx } = this; + let params = ctx.request.body + let SerialPortItem = _.find(ctx.app.comKey, { key: params.key }) + let res = await ctx.service.message.closeCom(SerialPortItem); + ctx.body = res + ctx.status = 200 + } + //发送指令 + async index() { + let { ctx } = this; + let params = ctx.request.body + let SerialPortItem = _.find(ctx.app.comKey, { ripCom: params.ripCom }) + let res = await ctx.service.message.index({ ...SerialPortItem, ...params }); + ctx.body = res + ctx.status = 200 + } +} +module.exports = MessageController; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/controller/users.js b/developedcode/cegongji/back/app/controller/users.js new file mode 100644 index 0000000..6b0cbec --- /dev/null +++ b/developedcode/cegongji/back/app/controller/users.js @@ -0,0 +1,48 @@ +'use strict'; +const Controller = require('egg').Controller; +class UserController extends Controller { + //用户登陆 + async login() { + let { ctx } = this; + let res = await ctx.service.users.login(ctx.request.body); + ctx.body = res + ctx.status = 200 + } + //新增用户 + async addUser() { + let { ctx } = this; + let res = await ctx.service.users.addUser(ctx.request.body); + ctx.body = res + } + // //修改用户 + // async updateUser() { + // let { ctx } = this; + // let id = await ctx.service.users.updateUser(ctx.request.body); + // ctx.body = { + // topic_id: id, + // }; + // } + // //删除用户 + // async delUser() { + // let { ctx } = this; + // let id = await ctx.service.users.delUser(ctx.request.body); + // ctx.body = { + // topic_id: id, + // }; + // } + //获取用户列表 + async getUserList() { + let { ctx } = this; + let res = await ctx.service.users.getUserList(ctx.request.body); + ctx.body = res + } + //获取用户登录列表 + async getUserLoginList() { + let { ctx } = this; + let res = await ctx.service.users.getUserLoginList(ctx.request.body); + ctx.body = res + } + + +} +module.exports = UserController; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/io/controller/gelixing.js b/developedcode/cegongji/back/app/io/controller/gelixing.js new file mode 100644 index 0000000..375cc97 --- /dev/null +++ b/developedcode/cegongji/back/app/io/controller/gelixing.js @@ -0,0 +1,9 @@ +'use strict'; +const Controller = require('egg').Controller; +class GelixingController extends Controller { + //message + async index1() { + + } +} +module.exports = GelixingController; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/middleware/error_handler.js b/developedcode/cegongji/back/app/middleware/error_handler.js new file mode 100644 index 0000000..deb7716 --- /dev/null +++ b/developedcode/cegongji/back/app/middleware/error_handler.js @@ -0,0 +1,24 @@ +// app/middleware/error_handler.js +module.exports = () => { + return async function errorHandler(ctx, next) { + try { + await next(); + } catch (err) { + // 所有的异常都在 app 上触发一个 error 事件,框架会记录一条错误日志 + ctx.app.emit('error', err, ctx); + const status = err.status || 500; + // 生产环境时 500 错误的详细错误内容不返回给客户端,因为可能包含敏感信息 + const error = + status === 500 && ctx.app.config.env === 'prod' + ? 'Internal Server Error' + : err.message; + + // 从 error 对象上读出各个属性,设置到响应中 + ctx.body = { error }; + if (status === 422) { + ctx.body.detail = err.errors; + } + ctx.status = status; + } + }; + }; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/middleware/jwtErr.js b/developedcode/cegongji/back/app/middleware/jwtErr.js new file mode 100644 index 0000000..389543f --- /dev/null +++ b/developedcode/cegongji/back/app/middleware/jwtErr.js @@ -0,0 +1,23 @@ +'use strict'; + +// middleware/jwtErr.js +module.exports = options => { + return async function jwtErr(ctx, next) { + try { + let tokenTemp = ctx.headers.authorization.split(' ') + let token = tokenTemp[tokenTemp.length - 1]; + let decode = await ctx.app.jwt.verify(token, options.secret) + let params = { + _id: decode.userID + } + let permission = await ctx.service.utils.checkPerssion("User", params) + if (permission) { + await next() + } else { + ctx.body = { "statusCode": 403, "errMsg": "没有权限" }; + } + } catch (err) { + ctx.body = { "statusCode": 403, "errMsg": `错误信息:${err}` }; + } + }; +}; diff --git a/developedcode/cegongji/back/app/model/dualFlowMotor.js b/developedcode/cegongji/back/app/model/dualFlowMotor.js new file mode 100644 index 0000000..95e2955 --- /dev/null +++ b/developedcode/cegongji/back/app/model/dualFlowMotor.js @@ -0,0 +1,47 @@ +'use strict'; + +module.exports = app => { + const mongoose = app.mongoose; + const Schema = mongoose.Schema; + + const DualFlowMotorSchema = new Schema({ + username: {//数据所属人 + type: String, + index: true + }, + canName: {//can名称 + type: String, + index: true + }, + canId: { //canId + type: String, + index: true + }, + sendRip: { //can发送的数据 + type: String, + index: true + }, + recieveRipArr: { //can接收的数据 + type: Array, + index: true + }, + delete: { + type: Number, + default: 0, //0代表未删除,1代表删除 + index: true + }, + create_at: { + type: Date, + default: Date.now, + index: true + }, + update_at: { + type: Date, + default: Date.now, + index: true + }, + }, { + strict: false + }); + return mongoose.model('dualFlowMotor', DualFlowMotorSchema, "dualFlowMotor"); +}; diff --git a/developedcode/cegongji/back/app/model/hubMotor.js b/developedcode/cegongji/back/app/model/hubMotor.js new file mode 100644 index 0000000..f5a2b0f --- /dev/null +++ b/developedcode/cegongji/back/app/model/hubMotor.js @@ -0,0 +1,47 @@ +'use strict'; + +module.exports = app => { + const mongoose = app.mongoose; + const Schema = mongoose.Schema; + + const HubMotorSchema = new Schema({ + username: {//数据所属人 + type: String, + index: true + }, + canName: {//can名称 + type: String, + index: true + }, + canId: { //canId + type: String, + index: true + }, + sendRip: { //can发送的数据 + type: String, + index: true + }, + recieveRipArr: { //can接收的数据 + type: Array, + index: true + }, + delete: { + type: Number, + default: 0, //0代表未删除,1代表删除 + index: true + }, + create_at: { + type: Date, + default: Date.now, + index: true + }, + update_at: { + type: Date, + default: Date.now, + index: true + }, + }, { + strict: false + }); + return mongoose.model('hubMotor', HubMotorSchema, "hubMotor"); +}; diff --git a/developedcode/cegongji/back/app/model/user.js b/developedcode/cegongji/back/app/model/user.js new file mode 100644 index 0000000..305145f --- /dev/null +++ b/developedcode/cegongji/back/app/model/user.js @@ -0,0 +1,43 @@ +'use strict'; + +module.exports = app => { + const mongoose = app.mongoose; + const Schema = mongoose.Schema; + + const UserSchema = new Schema({ + submission: { + username: { + type: String, + unique: true, + index: true + }, + password: { + type: String, + index: true + }, + }, + role: { //角色信息,默认操作员 + type: String, + default: 'operator', + index: true + }, + delete: { + type: Number, + default: 0, //0代表未删除,1代表删除 + index: true + }, + create_at: { + type: Date, + default: Date.now, + index: true + }, + update_at: { + type: Date, + default: Date.now, + index: true + }, + }, { + strict: false + }); + return mongoose.model('user', UserSchema, "user"); +}; diff --git a/developedcode/cegongji/back/app/model/userLoginRecord.js b/developedcode/cegongji/back/app/model/userLoginRecord.js new file mode 100644 index 0000000..1f613b4 --- /dev/null +++ b/developedcode/cegongji/back/app/model/userLoginRecord.js @@ -0,0 +1,37 @@ +'use strict'; + +module.exports = app => { + const mongoose = app.mongoose; + const Schema = mongoose.Schema; + + const UserLoginRecordSchema = new Schema({ + username: { + type: String, + ref: 'User', + index: true + }, + role: { //角色信息,默认操作员 + type: String, + default: 'operator', + index: true + }, + delete: { + type: Number, + default: 0, //0代表未删除,1代表删除 + index: true + }, + create_at: { + type: Date, + default: Date.now, + index: true + }, + update_at: { + type: Date, + default: Date.now, + index: true + }, + }, { + strict: false + }); + return mongoose.model('userLoginRecord', UserLoginRecordSchema, "userLoginRecord"); +}; diff --git a/developedcode/cegongji/back/app/router.js b/developedcode/cegongji/back/app/router.js new file mode 100644 index 0000000..b8706cb --- /dev/null +++ b/developedcode/cegongji/back/app/router.js @@ -0,0 +1,14 @@ +"use strict"; + +/** + * @param {Egg.Application} app - egg application + */ +module.exports = (app) => { + require('./router/user')(app) + //udp + app.udp.handle("index.handle") + // mqttio + require('./router/message')(app) + //自定义初始化页面 + require('./router/selfInit')(app) +}; diff --git a/developedcode/cegongji/back/app/router/message.js b/developedcode/cegongji/back/app/router/message.js new file mode 100644 index 0000000..ad10615 --- /dev/null +++ b/developedcode/cegongji/back/app/router/message.js @@ -0,0 +1,11 @@ +'use strict'; +/** + * @param {Egg.Application} app - egg application + */ +module.exports = app => { + const { router, controller } = app; + //串口接口 + router.post('/api/v1/openCom', controller.message.openCom) + router.post('/api/v1/closeCom', controller.message.closeCom) + router.post('/api/v1/message', controller.message.index) +}; diff --git a/developedcode/cegongji/back/app/router/selfInit.js b/developedcode/cegongji/back/app/router/selfInit.js new file mode 100644 index 0000000..2658ca3 --- /dev/null +++ b/developedcode/cegongji/back/app/router/selfInit.js @@ -0,0 +1,15 @@ +'use strict'; +/** + * @param {Egg.Application} app - egg application + */ +module.exports = app => { + const { router, controller } = app; + //hubMotor轮毂电机 + router.post('/api/v1/initDualFlowMotor', controller.dualFlowMotor.init) + router.post('/api/v1/saveDualFlowMotor', controller.dualFlowMotor.save) + router.post('/api/v1/sendDualFlowMotor', controller.dualFlowMotor.send) + //hubMotor轮毂电机 + router.post('/api/v1/initHubMotor', controller.hubMotor.init) + router.post('/api/v1/saveHubMotor', controller.hubMotor.save) + +}; diff --git a/developedcode/cegongji/back/app/router/user.js b/developedcode/cegongji/back/app/router/user.js new file mode 100644 index 0000000..babb7d3 --- /dev/null +++ b/developedcode/cegongji/back/app/router/user.js @@ -0,0 +1,17 @@ +'use strict'; +/** + * @param {Egg.Application} app - egg application + */ +module.exports = app => { + const { router, controller, middleware } = app; + // const jwtErr = middleware.jwtErr(app.config.jwt); + router.post('/api/v1/auth', controller.users.login)//用户登录 + router.post('/api/v1/adduser', controller.users.addUser)//增加用户、查用户列表 + // router.post('/api/v1/updateuser', jwtErr , controller.users.updateUser)//修改用户 + // router.post('/api/v1/deluser', jwtErr , controller.users.delUser)//删除用户 + router.post('/api/v1/getUserList', controller.users.getUserList) + router.post('/api/v1/getUserLoginList', controller.users.getUserLoginList)//查找用户登陆列表 + router.post('/api/v1/startSend', controller.home.startSend)//启动定时任务 + router.post('/api/v1/startSendOnce', controller.home.startSendOnce)//初始化发送一次查询命令 + router.get('/api/v1/endSend', controller.home.endSend)//关闭定时任务 +}; diff --git a/developedcode/cegongji/back/app/service/dealSerialport.js b/developedcode/cegongji/back/app/service/dealSerialport.js new file mode 100644 index 0000000..6917fd2 --- /dev/null +++ b/developedcode/cegongji/back/app/service/dealSerialport.js @@ -0,0 +1,88 @@ +'use strict'; +const Service = require('egg').Service; +const _ = require("lodash"); +class DealSerialportService extends Service { + + //打开串口 + async openSerialport(SerialPortItem, port) { + if (SerialPortItem.isOpen) { + await this.closeSerialport(SerialPortItem, port) + } + let returnData = { + haserror: true, + msg: `${port}串口打开出错`, + }; + await SerialPortItem.open(function (error) { + if (error) { + returnData.haserror = true + returnData.msg = `${port}端口打开出错:${error}` + } else { + returnData.haserror = false + returnData.msg = `${port}端口打开成功` + } + return returnData + }); + return returnData + } + //关闭串口 + async closeSerialport(SerialPortItem, port) { + if (SerialPortItem.isOpen) { + await SerialPortItem.close() + } + let returnData = { + haserror: false, + msg: `${port}串口关闭成功`, + }; + return returnData + } + //向串口发送指令 + async writeSerialport(SerialPortItem, params) { + let { ctx } = this + //每次发送数据停留50ms + await ctx.service.utils.sleep(50); + let returnData = { + haserror: false, + msg: `${params.ripCom}的指令(${JSON.stringify(params.sendRipId)})发送成功`, + }; + if (SerialPortItem.isOpen) { + await this.writeData(SerialPortItem, params) + } else { + await this.openSerialport(SerialPortItem, params.ripCom) + await this.writeData(SerialPortItem, params) + } + return returnData + } + //写数据后读取 + async writeData(SerialPortItem, params) { + let { ctx } = this + let dealData1 = "" + let dealData2 = "" + if (typeof (params.sendRipId) === "string") { + dealData1 = await ctx.service.utils.MODBUS_CRC(params.sendRipId, true, "hex"); + } else if (typeof (params.sendRipId) === "object") { + dealData1 = await ctx.service.utils.MODBUS_CRC(params.sendRipId[0], true, "hex"); + // dealData2 = await ctx.service.utils.MODBUS_CRC(params.sendRipId[1], true, "hex"); + } + await SerialPortItem.write(Buffer.from(dealData1)); // 发送字符串 + await ctx.service.utils.sleep(50); + let readResult1 = await SerialPortItem.read(); // 发送字符串 + if (dealData1 && readResult1) { + if (dealData1.toString("hex").substring(0, 4) === readResult1.toString("hex").substring(0, 4) && dealData1.toString("hex") !== readResult1.toString("hex")) { + await ctx.service.home.sendData(params, readResult1, params.isDirct); + } + } + if (dealData2) { + await ctx.service.utils.sleep(50); + await SerialPortItem.write(Buffer.from(dealData2)); // 发送字符串 + await ctx.service.utils.sleep(50); + let readResult2 = await SerialPortItem.read(); // 发送字符串 + if (dealData2 && readResult2) { + if (dealData2.toString("hex").substring(0, 4) === readResult2.toString("hex").substring(0, 4) && dealData2.toString("hex") !== readResult2.toString("hex")) { + await ctx.service.home.sendData(params, readResult2, params.isDirct); + } + } + } + } +} + +module.exports = DealSerialportService; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/service/dualFlowMotor.js b/developedcode/cegongji/back/app/service/dualFlowMotor.js new file mode 100644 index 0000000..e00441c --- /dev/null +++ b/developedcode/cegongji/back/app/service/dualFlowMotor.js @@ -0,0 +1,46 @@ +'use strict'; +const Service = require('egg').Service; +const _ = require("lodash"); +class DualFlowMotorService extends Service { + //初始化双流电机 + async init(params) { + let { ctx, app } = this; + app.cantest1 = params.start + return { + hasError: false, + msg: `${params.start ? '开启' : '关闭'}成功` + } + } + //保存双流电机数据 + async send(params) { + let { ctx, app } = this; + let returnData = { + hasError: false, + msg: "发送成功" + } + await app.udp.udp.send(params.key, 8096, "localhost", (err, bytes) => { + if (err) { + returnData.msg = err + } else { + returnData.msg = `已成功发送${bytes}字节` + // app.udp.udp.close(); + // app.udp.udp.on("close", () => { + // console.log("close"); + // }); + } + }); + return returnData + } + //保存双流电机数据 + async save(params) { + let { ctx, app } = this; + // let res = await ctx.model.DualFlowMotor.create(params) + // console.log(66688, res, params) + return { + a444: 52 + } + } + +} + +module.exports = DualFlowMotorService; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/service/home.js b/developedcode/cegongji/back/app/service/home.js new file mode 100644 index 0000000..3392215 --- /dev/null +++ b/developedcode/cegongji/back/app/service/home.js @@ -0,0 +1,121 @@ +'use strict'; +const Service = require('egg').Service; +const _ = require("lodash"); +class HomeService extends Service { + // 开始定时任务 + async startSend(params) { + let { app, ctx } = this; + await ctx.service.utils.sleep(500); + if (!_.isEmpty(params)) { + let newArr = [] + for (let i = 0; i < app.comKey.length; i++) { + let element = app.comKey[i]; + let item = _.find(params, o => o.key === element.key) + if (item) { + newArr.push({ ...element }) + } + } + app.timerTemp = true + while (app.timerTemp) { + await this.exec(newArr) + } + } + } + //初始化发送一次查询命令 + async startSendOnce(params) { + let { app } = this; + let newArr = [] + for (let i = 0; i < app.comKey.length; i++) { + let element = app.comKey[i]; + let item = _.find(params, o => o.key === element.key) + if (item) { + newArr.push({ ...element }) + } + } + await this.exec(newArr) + return { + haserror: false, + msg: '查询完成', + } + } + + //结束定时任务 + async endSend() { + let { app } = this; + app.timerTemp = false + return { + haserror: false, + msg: `成功关闭该页面定时任务`, + } + } + //执行任务 + async exec(newArr) { + let { ctx } = this; + for (let i = 0; i < newArr.length; i++) { + let element = newArr[i]; + await ctx.service.message.index(element); + } + } + // ArrayBuffer转16进制字符串 + arrayBuffer2Hex(buffer) { + let hexArr = Array.prototype.map.call( + new Uint8Array(buffer), + function (bit) { + return ('00' + bit.toString(16)).slice(-2) + } + ) + return hexArr.join(" ") + } + //收到数据后发送数据 + async sendData(params, data, isDirct = false) { + if (data) { + let { app } = this; + let resData = this.arrayBuffer2Hex(Buffer.from(data)) + //像端口发布信息 + if (isDirct) { + app.mqttServe.publish(`/${params.ripCom}`, resData, { + qos: 2, + retain: false, + }) + } else { + let keyList = ["relay", "WLK10A"] + if (keyList.indexOf(params.key) === -1) { + if (!resData.indexOf(params.ripBackStart)) { + app.mqttServe.publish(`/${params.key}`, resData, { + qos: 2, + retain: false, + }) + } + } else { + if (params.key === "WLK10A") { + if (!resData.indexOf(params.ripBackStart)) { + for (let j = 0; j < params.execFun.length; j++) { + let execItem = params.execFun[j]; + app.mqttServe.publish(`/${execItem}`, resData, { + qos: 2, + retain: false, + }) + } + } + } else { + if (params.key === "relay") { + if (!resData.indexOf(params.ripBackStart[0])) { + app.mqttServe.publish(`/${params.key}1`, resData, { + qos: 2, + retain: false, + }) + } else if (!resData.indexOf(params.ripBackStart[1])) { + app.mqttServe.publish(`/${params.key}2`, resData, { + qos: 2, + retain: false, + }) + } + } + } + } + } + } + } +} + +module.exports = HomeService; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/service/hubMotor.js b/developedcode/cegongji/back/app/service/hubMotor.js new file mode 100644 index 0000000..e3adeb6 --- /dev/null +++ b/developedcode/cegongji/back/app/service/hubMotor.js @@ -0,0 +1,24 @@ +'use strict'; +const Service = require('egg').Service; +const _ = require("lodash"); + +class HubMotorService extends Service { + //初始化轮毂电机 + async init(params) { + let { ctx, app } = this; + return { + a444: 55 + } + } + //保存轮毂电机数据 + async save(params) { + let { ctx, app } = this; + return { + a444: 53 + } + } + + +} + +module.exports = HubMotorService; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/service/message.js b/developedcode/cegongji/back/app/service/message.js new file mode 100644 index 0000000..1ea62f0 --- /dev/null +++ b/developedcode/cegongji/back/app/service/message.js @@ -0,0 +1,37 @@ +'use strict'; +const Service = require('egg').Service; +const _ = require("lodash"); +class MessageService extends Service { + //打开端口 + async openCom(params) { + let { ctx, app } = this; + let SerialPortItem = _.find(app.comKey, { key: params.key }) + let res = await ctx.service.dealSerialport.openSerialport(SerialPortItem.ripComInstence, params.ripCom); + return res + } + //关闭端口 + async closeCom(params) { + let { ctx, app } = this; + let SerialPortItem = _.find(app.comKey, { key: params.key }) + let res = await ctx.service.dealSerialport.closeSerialport(SerialPortItem.ripComInstence, params.ripCom); + return res + } + + //发送指令 + async send(SerialPortItem, params) { + let { ctx } = this; + let sendResult = await ctx.service.dealSerialport.writeSerialport(SerialPortItem, params); + if (sendResult) { + return sendResult + } else { + return "端口已被占用,请关闭已占用的端口后刷新页面。" + } + } + //发送指令 + async index(params) { + let sendResult = await this.send(params.ripComInstence, params); + return sendResult + } +} + +module.exports = MessageService; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/service/users.js b/developedcode/cegongji/back/app/service/users.js new file mode 100644 index 0000000..974ed62 --- /dev/null +++ b/developedcode/cegongji/back/app/service/users.js @@ -0,0 +1,156 @@ +'use strict'; +const Service = require('egg').Service; +const _ = require("lodash"); +class UserService extends Service { + //用户登录 + async login(uesrData) { + let { ctx } = this; + let filterOption = { + "filters": { + "submission.username": uesrData.username, + "submission.password": uesrData.password + }, + "sort": { + "create_at": -1 + }, + "skip": 0, + "limit": 1, + } + let res = await ctx.service.utils.getDataList("User", filterOption); + let returnData = + { + haserror: true, + msg: `账号或密码出错请重新登录`, + username: _.get(uesrData, ["username"], ""), + }; + if (res.total) { + //登录成功后新增一条登录信息 + await this.addLoginInfo(_.get(uesrData, ["username"], ""), _.get(res, ["results", 0, "role"], "operator")) + returnData = + { + haserror: false, + msg: `${_.get(uesrData, ["username"], "")}用户登录成功`, + username: _.get(uesrData, ["username"], ""), + _id: _.get(res, ["results", 0, "_id"], ""), + role: _.get(res, ["results", 0, "role"], "operator"), + token: this.genToken(_.get(res, ["results", 0, "_id"], "")), + } + } + return returnData + } + //新增用户 + async addUser(uesrData) { + let { ctx } = this; + let params = { + submission: { + username: _.get(uesrData, ["username"], ""), + password: _.get(uesrData, ["password"], "") + } + } + let returnData = + { + haserror: true, + msg: `${_.get(uesrData, ["username"], "")}用户重复,请输入不同用户`, + username: _.get(uesrData, ["username"]), + }; + try { + let result = await ctx.model.User.create(params) + //注册成功后新增一条登录信息 + await this.addLoginInfo(_.get(uesrData, ["username"], ""), result.role) + returnData = { + haserror: false, + msg: `${_.get(result, ["submission", "username"], "")}用户新建成功`, + username: _.get(result, ["submission", "username"]), + _id: result._id, + role: result.role, + token: this.genToken(result._id), + }; + + } catch (error) { + } + return returnData + } + // //修改用户 + // async updateUser(filter) { + // let { ctx } = this; + // let res = await ctx.model.User.findOneAndUpdate({ username: filter.username }, { password: filter.password }, function (err, data) { + // if (err) { + // return "修改失败" + // } else { + // return "修改成功" + // } + // } + // ); + // return res + // } + // //删除用户 + // async delUser(uesrData) { + // let { ctx } = this; + // let res = await ctx.model.User.findOneAndUpdate({ username: filter.username }, { delete: true }, function (err, data) { + // if (err) { + // return "删除失败" + // } else { + // return "删除成功" + // } + // } + // ); + // return res + // } + //获取用户列表 + async getUserList(uesrData) { + let { ctx } = this; + let filterOption = { + "project": { + "submission.username": "$submission.username", + "role": "$role", + "create_at": "$create_at" + }, + "sort": { + "create_at": -1 + }, + "skip": 0, + "limit": 10, + ...uesrData + } + filterOption = _.merge(filterOption, uesrData) + let res = await ctx.service.utils.getDataList("User", filterOption); + return res + } + //获取用户登录列表 + async getUserLoginList(uesrData) { + let { ctx } = this; + let filterOption = { + "project": { + "username": "$username", + "role": "$role", + "create_at": "$create_at" + }, + "sort": { + "create_at": -1 + }, + "skip": 0, + "limit": 10, + ...uesrData + } + filterOption = _.merge(filterOption, uesrData) + let res = await ctx.service.utils.getDataList("UserLoginRecord", filterOption); + return res + } + //登陆后或者注册后新增一条登录信息数据 + async addLoginInfo(username = "", role = "operator") { + let { ctx, app } = this + let res = await ctx.model.UserLoginRecord.create({ username: username, role: role }) + return res + } + //根据用户id生成token + genToken(id) { + // //生成Token + let { app } = this + let token = app.jwt.sign({ + userID: id, //需要存储的Token数据 + }, app.config.jwt.secret, { expiresIn: 24 * 60 * 60 + 's' }); + return token + } +} + +module.exports = UserService; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/service/utils.js b/developedcode/cegongji/back/app/service/utils.js new file mode 100644 index 0000000..44ae247 --- /dev/null +++ b/developedcode/cegongji/back/app/service/utils.js @@ -0,0 +1,241 @@ +'use strict'; +const Service = require('egg').Service; +const _ = require("lodash") +const mongoose = require('mongoose'); +const crc16 = require('crc/crc16'); +// const dayjs = require('dayjs'); +const ObjectId = mongoose.Types.ObjectId; +class UtilsService extends Service { + //基础表 + baseModel() { + let WorkflowlaunchSchema = new mongoose.Schema({ + create_at: { + type: Date, + default: Date.now, + index: true + }, + update_at: { + type: Date, + default: Date.now, + index: true + }, + title: { + type: String, + index: true + }, + user: { + type: String, + ref: 'XbyUser', + index: true + }, + delete: { + type: Number, + default: 0, //0代表未删除,1代表删除 + index: true + }, + }, { + strict: false + }); + return WorkflowlaunchSchema; + } + //数据库查找表 + async findModelByName(name) { + if (!this.ctx.model.hasOwnProperty(name)) { + let baseModel = this.baseModel(); + let lowerFirstName = _.lowerFirst(name) + this.ctx.model[name] = mongoose.model(lowerFirstName, baseModel, lowerFirstName); + } + return this.ctx.model[name]; + } + /** + * 通用数据获取接口 + * @param modelObj + * @param filterOption 过滤条件、排序、分页条件 + * { + "filters": { + "submission.name": { + "$regex": ".*66", + "$options": "i" + } + }, + "sort": { + "create_at": -1 + }, + "skip": 0, + "limit": 20, + } + * @returns {Promise<*>} + */ + async getDataList(name, filterOption = {}) { + // let { ctx } = this; + //facet 查询结果的同时显示总数 + let modelObj = await this.findModelByName(name) + let facet = { + $facet: { + total: [{ + $count: "total" + }], + results: [] + } + }; + //sort 排序用 + if (!_.isEmpty(filterOption.sort)) { + facet.$facet.results.push({ + $sort: filterOption.sort + }); + } + //skip 排序用 + facet.$facet.results.push({ + $skip: _.get(filterOption, ["skip"], 0) || 0 + }); + //limit 排序用 + if (_.get(filterOption, ["limit"], 1)) { + facet.$facet.results.push({ + $limit: filterOption.limit + }); + } + let agg = []; + //转换字符串_id为objectid,目前只能转第一层和第二层的id,要改为迭代查找 + for (let key in (_.get(filterOption, ["filters"], {}) || {})) { + if (key === '_id' && _.isString(filterOption.filters[key]) && ObjectId.isValid(filterOption.filters[key])) { + //值是一个 mongodb id字符串 + filterOption.filters[key] = ObjectId(filterOption.filters[key]); + } + else if (key === 'create_at' || key === 'update_at') { + filterOption.filters[key]["$gte"] = new Date(filterOption.filters[key]["$gte"]); + filterOption.filters[key]["$lt"] = new Date(filterOption.filters[key]["$lt"]); + } + } + agg.push({ + $match: { delete: 0, ...(_.get(filterOption, ["filters"], {}) || {}) } + }); + if (filterOption.hasOwnProperty('project') && !_.isEmpty(filterOption.project)) { + facet.$facet.results.push({ + $project: filterOption.project + }); + } + //当results ===0 时, 只保留统计 + let aggTotal = [] + let aggResults = [] + aggTotal = [...agg, ...facet["$facet"]["total"]] + aggResults = [...agg, ...facet["$facet"]["results"]] + // ctx.logger.debug(modelObj.modelName, JSON.stringify(aggResults)); + let resultRecords = []; + //allowDiskUse:解决管道内数据量超过100M时报错问题 + let resultTotal = await modelObj.collection.aggregate(aggTotal, { allowDiskUse: true }).toArray(); + if (filterOption.results !== 0) { + resultRecords = await modelObj.collection.aggregate(aggResults, { allowDiskUse: true }).toArray(); + } + let r = resultTotal[0] ? resultTotal[0] : { total: 0 } + r["results"] = resultRecords + return r; + } + //修改数据 + async update(name, updateData, filter = {}) { + let modelObj = await this.findModelByName(name) + updateData['update_at'] = Date.now(); + //转换子路径是因为更新子路径要用.点的形式,不能用字典形式 + if ("submission" in updateData) { + _.forEach(updateData.submission, function (value, key) { + updateData["submission." + key] = value; + }) + updateData = _.omit(updateData, "submission") + } + updateData = { + $set: updateData + }; + filter = _.isEmpty(filter) ? { "_id": updateData["$set"]._id } : filter + delete updateData["$set"]['_id'] + return await modelObj.findOneAndUpdate( + filter + , updateData, { + lean: true + }).exec(); + + } + //新增数据 + async save(name, addOption) { + let modelObj = await this.findModelByName(name) + if (!_.isArray(addOption)) { + addOption = [addOption] + } + let saveData = await modelObj.create(addOption) + return saveData + } + //modbus生成crc校验 + /** + * MODBUS-RTU CRC校验 + * @param data 命令(不带crc16循环冗余码的命令) + * @returns {any[]} 十六进制高低位 + * @constructor + */ + MODBUS_CRC(data, isAll = false, type = "string") { + let trimStr = _.replace(data, /[\s]/g, '') + let res = crc16(trimStr, 'hex') + let dataBuffer = Buffer.from(trimStr, "HEX") + let crcValue = 0xFFFF; + for (let i = 0; i < dataBuffer.length; i++) { + crcValue ^= dataBuffer[i] + for (let j = 0; j < 8; j++) { + if (crcValue & 0x0001) { + crcValue >>= 1 + crcValue ^= 0xA001 + } else { + crcValue >>= 1 + } + } + } + crcValue = crcValue.toString(16) + crcValue = _.padStart(crcValue, 4, "0") + //处理进来的字符串 + if (type === "string") { + let result = ""; + for (let i = 0; i < trimStr.length; i++) { + result += trimStr[i]; + if (i % 2 === 1) result += ' '; + } + + + let returnData = `${crcValue.substring(2, 4)} ${crcValue.substring(0, 2)}` + if (isAll) { + returnData = `${result}${crcValue.substring(2, 4)} ${crcValue.substring(0, 2)}` + } + return returnData + + } else { + let result = []; + for (let i = 0; i < trimStr.length; i++) { + if (i % 2 === 1) { + let item = trimStr.substr(i - 1, 2) + result.push(parseInt(`0x${item}`, 16)) + }; + } + let returnDataArr = [parseInt(`0x${crcValue.substring(2, 4)}`, 16), parseInt(`0x${crcValue.substring(0, 2)}`, 16)] + result.push(returnDataArr[0]) + result.push(returnDataArr[1]) + if (isAll) { + return Buffer.from(result) + } else { + return Buffer.from(returnDataArr) + } + } + } + sleep(time) { + return new Promise((resolve) => setTimeout(resolve, time)); + } + async checkPerssion(model, filter) { + let { ctx } = this + try { + let res = await ctx.model[model].find(filter) + if (res && res.length) { + return true + } else { + return false + } + } catch (err) { + return false + } + } +} + +module.exports = UtilsService; \ No newline at end of file diff --git a/developedcode/cegongji/back/app/udp/controller/index.js b/developedcode/cegongji/back/app/udp/controller/index.js new file mode 100644 index 0000000..b081c00 --- /dev/null +++ b/developedcode/cegongji/back/app/udp/controller/index.js @@ -0,0 +1,24 @@ +module.exports = app => { + return { + async handle(udp) { + udp.on('error', (err) => { + console.log(`udp error:\n${err.stack}`); + }); + + udp.on('message', (msg, rinfo) => { + //cantest接口 + if (app.cantest1) { + app.mqttServe.publish(`/cantest1`, msg.toString(), { + qos: 2, + retain: false, + }) + } + }); + + udp.on('listening', () => { + let address = udp.address(); + console.log(`udp listening ${address.address}:${address.port}`); + }); + }, + }; +}; \ No newline at end of file diff --git a/developedcode/cegongji/back/config/config.default.js b/developedcode/cegongji/back/config/config.default.js new file mode 100644 index 0000000..2a277c8 --- /dev/null +++ b/developedcode/cegongji/back/config/config.default.js @@ -0,0 +1,73 @@ +/* eslint valid-jsdoc: "off" */ + +'use strict'; + +/** + * @param {Egg.EggAppInfo} appInfo app info + */ +module.exports = appInfo => { + /** + * built-in config + * @type {Egg.EggAppConfig} + **/ + const config = exports = {}; + + // use for cookie sign key, should change to your own and keep security + config.keys = appInfo.name + '_1690006251624_276'; + + // add your middleware config here + config.middleware = []; + + // add your user config here + const userConfig = { + // myAppName: 'egg', + }; + config.mongoose = { + url: "mongodb://127.0.0.1:27020/cegongji", + options: { + useUnifiedTopology: true, + useNewUrlParser: true, + } + }; + + // 加载 errorHandler 中间件 + config.middleware = ['errorHandler']; + // 只对 /api 前缀的 url 路径生效 + config.errorHandler = { + match: '/api', + }; + //udp + config.udp = { + port: 5000 + }; + //跨域 + config.security = { + csrf: { + enable: false, + ignoreJSON: true + }, + domainWhiteList: ['http://localhost:80'] + }; + config.cors = { + origin: '*', + allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH' + }; + config.io = { + init: {}, + namespace: { + // 命名空间 + '/message/': { + connectionMiddleware: [], + packetMiddleware: [] + } + } + } + config.jwt = { + secret: 'xby123456', //自定义token的加密条件字符串,可按各自的需求填写 + }; + + return { + ...config, + ...userConfig, + }; +}; diff --git a/developedcode/cegongji/back/config/plugin.js b/developedcode/cegongji/back/config/plugin.js new file mode 100644 index 0000000..dccbd9e --- /dev/null +++ b/developedcode/cegongji/back/config/plugin.js @@ -0,0 +1,29 @@ +"use strict"; +/** @type Egg.EggPlugin */ +module.exports = { + // had enabled by egg + // static: { + // enable: true, + // } + + jwt: { + enable: true, + package: 'egg-jwt', + }, + mongoose: { + enable: true, + package: "egg-mongoose", + }, + validate: { + enable: true, + package: 'egg-validate', + }, + udp: { + enable: true, + package: 'egg-udp', + }, + cors: { + enable: true, + package: 'egg-cors', + }, +}; diff --git a/developedcode/cegongji/back/jsconfig.json b/developedcode/cegongji/back/jsconfig.json new file mode 100644 index 0000000..1bbed3f --- /dev/null +++ b/developedcode/cegongji/back/jsconfig.json @@ -0,0 +1,5 @@ +{ + "include": [ + "**/*" + ] +} \ No newline at end of file diff --git a/developedcode/cegongji/back/package.json b/developedcode/cegongji/back/package.json new file mode 100644 index 0000000..592c648 --- /dev/null +++ b/developedcode/cegongji/back/package.json @@ -0,0 +1,56 @@ +{ + "name": "cegongji", + "version": "1.0.0", + "description": "cegongji back", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "crc": "^4.3.2", + "dayjs": "^1.11.9", + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-jwt": "^3.1.7", + "egg-mongoose": "^3.3.1", + "egg-scripts": "^2", + "egg-udp": "^1.1.0", + "egg-validate": "^2.0.2", + "js-md5": "^0.7.3", + "lodash": "^4.17.21", + "mongoose": "^7.4.2", + "mqtt": "4.1.0", + "serialport": "^10.5.0" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-cegongji", + "stop": "egg-scripts stop --title=egg-server-cegongji", + "dev": "egg-bin dev", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "lichong", + "license": "MIT" +} diff --git a/developedcode/cegongji/back/test/app/controller/home.test.js b/developedcode/cegongji/back/test/app/controller/home.test.js new file mode 100644 index 0000000..a4f0fc9 --- /dev/null +++ b/developedcode/cegongji/back/test/app/controller/home.test.js @@ -0,0 +1,20 @@ +'use strict'; + +const { app, assert } = require('egg-mock/bootstrap'); + +describe('test/app/controller/home.test.js', () => { + it('should assert', async () => { + const pkg = require('../../../package.json'); + assert(app.config.keys.startsWith(pkg.name)); + + // const ctx = app.mockContext({}); + // yield ctx.service.xx(); + }); + + it('should GET /', async () => { + return app.httpRequest() + .get('/') + .expect('hi, egg') + .expect(200); + }); +}); diff --git a/developedcode/cegongji/front/.browserslistrc b/developedcode/cegongji/front/.browserslistrc new file mode 100644 index 0000000..dc3bc09 --- /dev/null +++ b/developedcode/cegongji/front/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/developedcode/cegongji/front/.editorconfig b/developedcode/cegongji/front/.editorconfig new file mode 100644 index 0000000..7053c49 --- /dev/null +++ b/developedcode/cegongji/front/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/developedcode/cegongji/front/.gitignore b/developedcode/cegongji/front/.gitignore new file mode 100644 index 0000000..403adbc --- /dev/null +++ b/developedcode/cegongji/front/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/developedcode/cegongji/front/README.md b/developedcode/cegongji/front/README.md new file mode 100644 index 0000000..50b30e0 --- /dev/null +++ b/developedcode/cegongji/front/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/developedcode/cegongji/front/index.html b/developedcode/cegongji/front/index.html new file mode 100644 index 0000000..895c399 --- /dev/null +++ b/developedcode/cegongji/front/index.html @@ -0,0 +1,16 @@ + + + + + + + + 测功机 + + + +
+ + + + \ No newline at end of file diff --git a/developedcode/cegongji/front/jsconfig.json b/developedcode/cegongji/front/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/developedcode/cegongji/front/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/developedcode/cegongji/front/package.json b/developedcode/cegongji/front/package.json new file mode 100644 index 0000000..c0c0329 --- /dev/null +++ b/developedcode/cegongji/front/package.json @@ -0,0 +1,34 @@ +{ + "name": "cegongji", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@mdi/font": "7.0.96", + "@soerenmartius/vue3-clipboard": "^0.1.2", + "axios": "^1.4.0", + "dayjs": "^1.11.7", + "element-plus": "^2.3.9", + "js-md5": "^0.7.3", + "lodash": "^4.17.21", + "mqtt": "4.1.0", + "nprogress": "^0.2.0", + "pinia": "^2.0.35", + "pinia-plugin-persist": "^1.0.0", + "qs": "^6.11.1", + "screenfull": "^6.0.2", + "ulid": "^2.3.0", + "vue": "^3.2.47", + "vue-router": "^4.1.6", + "vuetify": "^3.3.13" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.2.1", + "sass": "^1.62.1", + "vite": "^4.3.4", + "vite-plugin-vuetify": "^1.0.0" + } +} diff --git a/developedcode/cegongji/front/public/favicon.png b/developedcode/cegongji/front/public/favicon.png new file mode 100644 index 0000000..3b89289 Binary files /dev/null and b/developedcode/cegongji/front/public/favicon.png differ diff --git a/developedcode/cegongji/front/src/App.vue b/developedcode/cegongji/front/src/App.vue new file mode 100644 index 0000000..f955d39 --- /dev/null +++ b/developedcode/cegongji/front/src/App.vue @@ -0,0 +1,43 @@ + + + + diff --git a/developedcode/cegongji/front/src/api/dualFlowMotor.js b/developedcode/cegongji/front/src/api/dualFlowMotor.js new file mode 100644 index 0000000..00bc3d6 --- /dev/null +++ b/developedcode/cegongji/front/src/api/dualFlowMotor.js @@ -0,0 +1,31 @@ +import _axios from "@/plugins/axios"; + +//初始化轮毂电机页面 +export function initDualFlowMotor(data) { + return _axios({ + url: `v1/initDualFlowMotor`, + method: "POST", + data, + }); +} +//轮毂电机发送数据 +export function sendDualFlowMotor(data) { + return _axios({ + url: `v1/sendDualFlowMotor`, + method: "POST", + data, + }); +} +//todo 保存轮毂电机数据 +export function saveDualFlowMotor(data) { + return _axios({ + url: `v1/saveDualFlowMotor`, + method: "POST", + data, + }); +} + + + + + diff --git a/developedcode/cegongji/front/src/api/home.js b/developedcode/cegongji/front/src/api/home.js new file mode 100644 index 0000000..46814d7 --- /dev/null +++ b/developedcode/cegongji/front/src/api/home.js @@ -0,0 +1,26 @@ +import _axios from "@/plugins/axios"; +//初始化发送一次命令 +export function startSendOnce(data) { + return _axios({ + url: `v1/startSendOnce`, + method: "POST", + data + }); +} +//启动定时发送命令 +export function startSend(data) { + return _axios({ + url: `v1/startSend`, + method: "POST", + data + }); +} +//清除定时发送命令 +export function endSend() { + return _axios({ + url: `v1/endSend`, + method: "get" + }); +} + + diff --git a/developedcode/cegongji/front/src/api/hubMotor.js b/developedcode/cegongji/front/src/api/hubMotor.js new file mode 100644 index 0000000..e8e4004 --- /dev/null +++ b/developedcode/cegongji/front/src/api/hubMotor.js @@ -0,0 +1,23 @@ +import _axios from "@/plugins/axios"; + +//初始化轮毂电机页面 +export function initHubMotor(data) { + return _axios({ + url: `v1/initHubMotor`, + method: "POST", + data, + }); +} +//初始化轮毂电机页面 +export function saveHubMotor(data) { + return _axios({ + url: `v1/saveHubMotor`, + method: "POST", + data, + }); +} + + + + + diff --git a/developedcode/cegongji/front/src/api/message.js b/developedcode/cegongji/front/src/api/message.js new file mode 100644 index 0000000..a7fdd5b --- /dev/null +++ b/developedcode/cegongji/front/src/api/message.js @@ -0,0 +1,30 @@ +import _axios from "@/plugins/axios"; + +//打开端口 +export function openCom(data) { + return _axios({ + url: `v1/openCom`, + method: "POST", + data, + }); +} +//打开端口 +export function closeCom(data) { + return _axios({ + url: `v1/closeCom`, + method: "POST", + data, + }); +} +//发送指令 +export function tranRip(data) { + return _axios({ + url: `v1/message`, + method: "POST", + data, + }); +} + + + + diff --git a/developedcode/cegongji/front/src/api/user.js b/developedcode/cegongji/front/src/api/user.js new file mode 100644 index 0000000..ec8bf68 --- /dev/null +++ b/developedcode/cegongji/front/src/api/user.js @@ -0,0 +1,36 @@ +import _axios from "@/plugins/axios"; + +//登录 +export function login(data) { + return _axios({ + url: `v1/auth`, + method: "POST", + data, + }); +} +//注册 +export function registe(data) { + return _axios({ + url: `v1/adduser`, + method: "POST", + data, + }); +} +//注册列表 +export function registeList(data) { + return _axios({ + url: `v1/getUserList`, + method: "POST", + data, + }); +} +//登陆历史列表 +export function loginHistoryList(data) { + return _axios({ + url: `v1/getUserLoginList`, + method: "POST", + data, + }); +} + + diff --git a/developedcode/cegongji/front/src/assets/css/base.css b/developedcode/cegongji/front/src/assets/css/base.css new file mode 100644 index 0000000..642b65b --- /dev/null +++ b/developedcode/cegongji/front/src/assets/css/base.css @@ -0,0 +1,16 @@ +html::-webkit-scrollbar { + width: 10px; +} + +html::-webkit-scrollbar-thumb { + background: #ccc; + border-radius: 5px; +} + +html { + scrollbar-width: 10px; +} + +.v-container { + max-width: 1490px !important; +} \ No newline at end of file diff --git a/developedcode/cegongji/front/src/assets/img/login-bg.jpg b/developedcode/cegongji/front/src/assets/img/login-bg.jpg new file mode 100644 index 0000000..97ba68e Binary files /dev/null and b/developedcode/cegongji/front/src/assets/img/login-bg.jpg differ diff --git a/developedcode/cegongji/front/src/assets/img/login-logo.png b/developedcode/cegongji/front/src/assets/img/login-logo.png new file mode 100644 index 0000000..da5063d Binary files /dev/null and b/developedcode/cegongji/front/src/assets/img/login-logo.png differ diff --git a/developedcode/cegongji/front/src/assets/img/login-welcom.png b/developedcode/cegongji/front/src/assets/img/login-welcom.png new file mode 100644 index 0000000..f490738 Binary files /dev/null and b/developedcode/cegongji/front/src/assets/img/login-welcom.png differ diff --git a/developedcode/cegongji/front/src/main.js b/developedcode/cegongji/front/src/main.js new file mode 100644 index 0000000..b2795f6 --- /dev/null +++ b/developedcode/cegongji/front/src/main.js @@ -0,0 +1,34 @@ +import App from "./App.vue"; +import { createApp } from "vue"; +// 引入vuetify实例 +import { registerPlugins } from "@/plugins/vuetify"; +import { elementPlugins } from "@/plugins/element"; +// 引入pinia 实例 +import pinia from "@/store/index.js"; +// 引入路由实例 +import router from "@/router/index.js"; +// 剪切板 +import { VueClipboard } from "@soerenmartius/vue3-clipboard"; +//全局引入lodash +import _ from "lodash"; +//全局挂在axios +import axios from "@/plugins/axios"; +//全局挂在axios +import "@/assets/css/base.css"; +import dayjs from "dayjs"; +import "@/utils/permission"; +import 'element-plus/dist/index.css' +const app = createApp(App); +// 去掉Vue warn警告 +// app.config.warnHandler = () => null; + +app.config.globalProperties.$_ = _; //挂载到app实例上 +app.config.globalProperties.$axios = axios; //挂载到app实例上 +app.config.globalProperties.$dayjs = dayjs; //挂载到app实例上 +registerPlugins(app); +elementPlugins(app); +app + .use(pinia) //中央仓库pinia + .use(router) //路由 + .use(VueClipboard); //剪切板 +app.mount("#app"); diff --git a/developedcode/cegongji/front/src/mixin/totalmixin.js b/developedcode/cegongji/front/src/mixin/totalmixin.js new file mode 100644 index 0000000..83bde42 --- /dev/null +++ b/developedcode/cegongji/front/src/mixin/totalmixin.js @@ -0,0 +1,42 @@ +import { userStore, snackbarStore, fullscreenStore, } from "@/store"; +export default { + data() { + return { + userObj: userStore(), + snackbarsObj: snackbarStore(), + fullscreenObj: fullscreenStore(), + }; + }, + methods: { + // snackBar + openSnackbar(params) { + return this.snackbarsObj.openSnackbar(params); + }, + closeSnackbar(index) { + return this.snackbarsObj.closeSnackbar(index); + }, + openSuccessSnackbar(message) { + return this.snackbarsObj.openSuccessSnackbar(message); + }, + openFailureSnackbar(message) { + return this.snackbarsObj.openFailureSnackbar(message); + }, + openInfoSnackbar(message) { + return this.snackbarsObj.openInfoSnackbar(message); + }, + cleanSnackbar() { + return this.snackbarsObj.cleanSnackbar(); + }, + setFullscreen(bol) { + this.fullscreenObj.setFullscreen(bol) + }, + }, + computed: { + snackbars() { + return this.snackbarsObj.snackbars; + }, + fullscreen() { + return this.fullscreenObj.fullscreen; + }, + }, +}; diff --git a/developedcode/cegongji/front/src/plugins/axios.js b/developedcode/cegongji/front/src/plugins/axios.js new file mode 100644 index 0000000..96d4827 --- /dev/null +++ b/developedcode/cegongji/front/src/plugins/axios.js @@ -0,0 +1,65 @@ +import axios from "axios"; +import qs from "qs"; +import { getToken, removeToken, setTime, getTime, getExpTime } from "../utils/auth"; +import snackbarStore from "@/store/snackbar"; +import router from "@/router"; +import { remove } from "nprogress"; +let config = { + baseURL: "", + timeout: 600 * 1000, + withCredentials: true, // Check cross-site Access-Control + /* `paramsSerializer` 是一个负责 `params` 序列化的函数 + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }) + // 'a[0]=b&a[1]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }) + // 'a[]=b&a[]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }) + // 'a=b&a=c' + */ + paramsSerializer: (params) => { + return qs.stringify(params, { arrayFormat: "indices" }); + }, +}; + +const _axios = axios.create(config); + +_axios.interceptors.request.use( + (config) => { + let token = getToken() + let nowDate = Date.now() + let lastDate = getTime() + let expDate = getExpTime() + if (nowDate - lastDate > expDate) { + removeToken() + } + if (token) { + config.headers.authorization = token + } + return config; + }, + (error) => { + return Promise.reject(error); + } +); +_axios.interceptors.response.use( + (response) => { + if (response.status === 200) { + if (response.data.statusCode === 403) { + //无权限时退出登录 + // removeToken() + snackbarStore().openFailureSnackbar(response.data.errMsg) + // router.push("/login") + } else { + setTime() + return Promise.resolve(response.data); + } + } else { + return Promise.reject(response.data); + } + }, + (error) => { + console.log("error", error) + return Promise.reject(error); + } +); +export default _axios; diff --git a/developedcode/cegongji/front/src/plugins/element.js b/developedcode/cegongji/front/src/plugins/element.js new file mode 100644 index 0000000..f73bbef --- /dev/null +++ b/developedcode/cegongji/front/src/plugins/element.js @@ -0,0 +1,5 @@ +import ElementPlus from 'element-plus' +import 'element-plus/dist/index.css' +export function elementPlugins(app) { + app.use(ElementPlus); +} diff --git a/developedcode/cegongji/front/src/plugins/mqtt.js b/developedcode/cegongji/front/src/plugins/mqtt.js new file mode 100644 index 0000000..e1a7271 --- /dev/null +++ b/developedcode/cegongji/front/src/plugins/mqtt.js @@ -0,0 +1,122 @@ +import * as mqtt from "mqtt/dist/mqtt.min"; +import { ulid } from "ulid"; +class MQTT { + url = `ws://localhost:8083/mqtt`; // mqtt地址 + //初始化mqtt + init() { + let options = { + clean: true, + clientId: ulid(), // 客户端分类唯一 + connectTimeout: 4000, // 超时时间 + }; + if (!window.mqttClient) { + window.mqttClient = mqtt.connect(this.url, options); + window.mqttClient.setMaxListeners(100)//表示没有限制。 + window.mqttClient.on("connect", () => { + console.log("成功连接"); + }); + window.mqttClient.on("error", (error) => { + console.log(this.url + "异常中断" + error); + }); + window.mqttClient.on("reconnect", (error) => { + console.log(this.url + "重新连接" + error); + }); + } + } + //取消订阅 + unsubscribes(topic) { + window.mqttClient.unsubscribe(topic, (error) => { + if (!error) { + console.log(topic + "取消订阅成功"); + } else { + console.log(topic + "取消订阅失败"); + } + }); + } + + //连接 + link(topic, params) { + window.mqttClient.subscribe(topic, + params, + (error) => { + if (!error) { + console.log(topic + "订阅成功"); + } else { + console.log(topic + "订阅失败" + error); + } + } + ); + } + //发布函数 + pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback = () => { }, + failCallback = (e) => { } + ) { + if (window.mqttClient === null) return; + var timeNow = new Date(); + jobj.timestamp = timeNow.getTime(); + window.mqttClient.publish(`/mqtt/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } + + //收到的消息 + get(callback) { + window.mqttClient.on("message", callback); + } + //结束链接 + over() { + window.mqttClient.end(); + } +} + +export default function useMqtt() { + let startMqtt = (val, params, callback) => { + //设置订阅地址 + if (!window.PublicMqtt) { + window.PublicMqtt = new MQTT(); + //初始化mqtt + window.PublicMqtt.init(); + //链接mqtt + } + window.PublicMqtt.link(val, params); + getMessage(callback); + }; + let pubCommonFn = ( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ) => { + console.log("发布", topic); + //发布mqtt + window.PublicMqtt.pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ); + }; + let endMqtt = (val) => { + //取消链接mqtt + window.PublicMqtt.unsubscribes(val); + }; + let getMessage = (callback) => { + window.PublicMqtt?.get(callback); + }; + return { + startMqtt, + endMqtt, + pubCommonFn, + }; +} diff --git a/developedcode/cegongji/front/src/plugins/vuetify.js b/developedcode/cegongji/front/src/plugins/vuetify.js new file mode 100644 index 0000000..d1bf45f --- /dev/null +++ b/developedcode/cegongji/front/src/plugins/vuetify.js @@ -0,0 +1,29 @@ +// Styles +import "@mdi/font/css/materialdesignicons.css"; +import "vuetify/styles"; +import zhHans from "vuetify/lib/locale/zh-Hans.mjs"; +// Composables +import { createVuetify } from "vuetify"; +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +const vuetify = createVuetify({ + theme: { + themes: { + light: { + colors: { + primary: "#1867C0", + secondary: "#5CBBF6", + }, + }, + }, + }, + ssr: true, + lang: { + locales: { + zhHans, + }, + current: "zhHans", + }, +}); +export function registerPlugins(app) { + app.use(vuetify); +} diff --git a/developedcode/cegongji/front/src/router/index.js b/developedcode/cegongji/front/src/router/index.js new file mode 100644 index 0000000..b329835 --- /dev/null +++ b/developedcode/cegongji/front/src/router/index.js @@ -0,0 +1,88 @@ +import { createRouter, createWebHistory } from "vue-router"; +import { close, start } from "@/utils/nprogress"; +const routes = [ + { + path: "/", + name: "home", + component: () => import("../views/home.vue"), + redirect: "/index", + children: [ + { + path: "index", + name: "index", + meta: { + zhtitle: "首页", + }, + component: () => import("../views/index.vue"), + }, + { + path: "hubMotor", + name: "hubMotor", + meta: { + zhtitle: "轮毂电机", + }, + component: () => import("../views/hubMotor/index.vue"), + }, + { + path: "dualFlowMotor", + name: "dualFlowMotor", + meta: { + zhtitle: "双流电机", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/dualFlowMotor/index.vue"), + }, + { + path: "setting", + name: "setting", + meta: { + zhtitle: "自定义指令", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/setting/index.vue"), + }, + { + path: "user", + name: "user", + meta: { + zhtitle: "用户列表", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/user/index.vue"), + }, + { + path: "userLogin", + name: "userLogin", + meta: { + zhtitle: "登录历史", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/userLogin/index.vue"), + }, + ], + }, + + { name: "重定向", path: "/:catchAll(.*)", redirect: "/index" }, + { + path: "/login", + name: "login", + component: () => import("../views/login.vue"), + }, +]; + +// 创建路由实例 +const router = createRouter({ + history: createWebHistory(), + routes, //路由表 +}); +let witheRouter = ["login"]; +router.beforeEach((pre, next) => { + if (witheRouter.indexOf(pre.name) !== -1) { + } + start(); +}); + +router.afterEach(() => { + close(); +}); +export default router; diff --git a/developedcode/cegongji/front/src/store/fullscreen.js b/developedcode/cegongji/front/src/store/fullscreen.js new file mode 100644 index 0000000..8c3ea7b --- /dev/null +++ b/developedcode/cegongji/front/src/store/fullscreen.js @@ -0,0 +1,19 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const fullscreenStore = defineStore("fullscreen", { + // other options... + state() { + return { + fullscreen: false, + }; + }, + actions: { + getFullscreen() { + return this.fullscreen; + }, + setFullscreen(bol) { + this.fullscreen = bol; + }, + }, +}); +export default fullscreenStore; diff --git a/developedcode/cegongji/front/src/store/index.js b/developedcode/cegongji/front/src/store/index.js new file mode 100644 index 0000000..777405a --- /dev/null +++ b/developedcode/cegongji/front/src/store/index.js @@ -0,0 +1,9 @@ +import { createPinia } from "pinia"; +import piniaPersist from 'pinia-plugin-persist' +import userStore from "./user"; +import snackbarStore from "./snackbar"; +import fullscreenStore from "./fullscreen"; +const pinia = createPinia(); +pinia.use(piniaPersist) +export { userStore, snackbarStore, fullscreenStore }; +export default pinia; diff --git a/developedcode/cegongji/front/src/store/snackbar.js b/developedcode/cegongji/front/src/store/snackbar.js new file mode 100644 index 0000000..ca28e3b --- /dev/null +++ b/developedcode/cegongji/front/src/store/snackbar.js @@ -0,0 +1,59 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const snackbarStore = defineStore("snackbar", { + state() { + return { + snackbars: [], + }; + }, + actions: { + openSnackbar(params) { + let { snackbar_message, color, timeout = -1 } = params; + this.snackbars.push({ + snackbar: true, + snackbar_message: snackbar_message, + snackbar_color: color, + location: "top", + timeout: timeout, + id: Date.now(), + }); + }, + closeSnackbar(index) { + this.snackbars.splice(index, 1); + }, + openSuccessSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "success", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + openFailureSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "error", + location: "top", + timeout: -1, //不自动关闭 + id: Date.now(), + }); + }, + openInfoSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "warning", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + cleanSnackbar() { + this.snackbars = this.snackbars.filter((item) => item.snackbar); + }, + }, +}); +export default snackbarStore; diff --git a/developedcode/cegongji/front/src/store/user.js b/developedcode/cegongji/front/src/store/user.js new file mode 100644 index 0000000..99e4175 --- /dev/null +++ b/developedcode/cegongji/front/src/store/user.js @@ -0,0 +1,61 @@ +import { defineStore } from "pinia"; +import { login as userLogin, registe } from "@/api/user"; +import { setToken, removeToken } from "@/utils/auth"; +import md5 from "js-md5"; +const userStore = defineStore("user", { + state: () => { + return { + userInfo: { + role: "", + username: "", + _id: "", + } + }; + }, + actions: { + async login(loginForm = {}) { + try { + let loginRes = {} + let params = { + username: loginForm.username, + password: md5(loginForm.password) + } + if (loginForm.type === "submit") { + loginRes = await userLogin(params); + } else if (loginForm.type === "registe") { + loginRes = await registe(params); + } + if (!loginRes.haserror) { + setToken(`Bearer ${loginRes.token}`); + let userInfo = { + username: loginRes.username, + _id: loginRes._id, + role: loginRes.role, + } + this.setUserInfo(userInfo) + } else { + this.setUserInfo() + removeToken() + } + return loginRes; + } catch (err) { + this.setUserInfo() + removeToken(); + throw err; + } + }, + getUserInfo() { + return this.userInfo + }, + setUserInfo(userInfo = {}) { + this.userInfo = { ...userInfo }; + }, + }, + persist: { + enabled: true, + strategies: [ + { storage: localStorage, paths: ['userInfo'] }, + ], + }, +}); +export default userStore; diff --git a/developedcode/cegongji/front/src/utils/auth.js b/developedcode/cegongji/front/src/utils/auth.js new file mode 100644 index 0000000..52fb180 --- /dev/null +++ b/developedcode/cegongji/front/src/utils/auth.js @@ -0,0 +1,29 @@ +const TokenKey = `token`; +let EXPIRESTIME = 1000 * 60 * 60 * 24 +let lastTime = "lastTime" + +const getExpTime = () => { + return EXPIRESTIME; +}; +const setTime = () => { + localStorage.setItem(lastTime, Date.now()); +}; +const getTime = () => { + return localStorage.getItem(lastTime); +}; +const isLogin = () => { + return !!localStorage.getItem(TokenKey); +}; +const getToken = () => { + return localStorage.getItem(TokenKey); +}; + +const setToken = (token) => { + localStorage.setItem(TokenKey, token); +}; + +const removeToken = () => { + localStorage.removeItem(TokenKey); +}; + +export { getExpTime, setTime, getTime, isLogin, getToken, setToken, removeToken }; diff --git a/developedcode/cegongji/front/src/utils/nprogress.js b/developedcode/cegongji/front/src/utils/nprogress.js new file mode 100644 index 0000000..45f0f74 --- /dev/null +++ b/developedcode/cegongji/front/src/utils/nprogress.js @@ -0,0 +1,19 @@ +import NProgress from 'nprogress' +import 'nprogress/nprogress.css' +NProgress.configure({ + easing: 'ease', // 动画方式 + speed: 1000, // 递增进度条的速度 + showSpinner: false, // 是否显示加载ico + trickleSpeed: 200, // 自动递增间隔 + minimum: 0.3, // 更改启动时使用的最小百分比 + parent: 'body', //指定进度条的父容器 +}) +// 打开进度条 +export let start = () => { + NProgress.start() +} + +// 关闭进度条 +export let close = () => { + NProgress.done() +} \ No newline at end of file diff --git a/developedcode/cegongji/front/src/utils/permission.js b/developedcode/cegongji/front/src/utils/permission.js new file mode 100644 index 0000000..d051940 --- /dev/null +++ b/developedcode/cegongji/front/src/utils/permission.js @@ -0,0 +1,27 @@ +import router from "@/router/index"; +import { close, start } from "./nprogress"; +import { getToken } from "./auth"; + +let whiteList = ["/login"]; +router.beforeEach(async (to, from, next) => { + start(); + let token = getToken(); + if (token) { + if (to.path === "/login") { + next({ path: "/" }); + close(); + } else { + next(); + } + } else { + if (whiteList.includes(to.path)) { + next(); + } else { + next(`/login?redirect=${to.path}`); + } + } +}); + +router.afterEach((to) => { + close(); +}); diff --git a/developedcode/cegongji/front/src/utils/utils.js b/developedcode/cegongji/front/src/utils/utils.js new file mode 100644 index 0000000..023c00f --- /dev/null +++ b/developedcode/cegongji/front/src/utils/utils.js @@ -0,0 +1,55 @@ + +const hextonumber10 = function (value, offset = 0, mul = 1) { + value = value.replace(/ /g, '') + let returnValue = 0 + if (value) { + if (value.substr(0, 1) === "f" || value.substr(0, 1) === "F") { + let num = parseInt(value, 16); + num = num | 0xFFFF0000; + return num; + } else { + + returnValue = parseInt(value, 16) * mul - offset + } + } + return returnValue +} +const number10tohex = function (value, length = 4, offset = 0, type = "normal") { + value = Number(value) + offset + if (value) { + if (value < 0) { + value = Math.pow(2, 16) + value + } + let hex = value.toString(16).padStart(4, "0"); + let hesStr = "" + if (type === "normal") { + for (let i = 0; i < length; i++) { + if (i % 2 === 0 && i !== length - 2) { + hesStr += `${hex.substr(i, 2)} ` + } else if (i === length - 2) { + hesStr += `${hex.substr(i, 2)}` + } + } + } else { + for (let i = length - 1; i >= 0; i--) { + if (i % 2 === 0 && i !== length - 2) { + hesStr += `${hex.substr(i, 2)}` + } else if (i === length - 2) { + hesStr += `${hex.substr(i, 2)} ` + } + } + } + return hesStr; + } else { + let hexArr = [] + for (let i = 0; i < length; i++) { + if (i % 2 === 0) { + hexArr.push("00") + } + } + return hexArr.join(" ") + } + +} + +export { hextonumber10, number10tohex }; diff --git a/developedcode/cegongji/front/src/views/dualFlowMotor/index.vue b/developedcode/cegongji/front/src/views/dualFlowMotor/index.vue new file mode 100644 index 0000000..2761acb --- /dev/null +++ b/developedcode/cegongji/front/src/views/dualFlowMotor/index.vue @@ -0,0 +1,659 @@ + + + + \ No newline at end of file diff --git a/developedcode/cegongji/front/src/views/home.vue b/developedcode/cegongji/front/src/views/home.vue new file mode 100644 index 0000000..5111869 --- /dev/null +++ b/developedcode/cegongji/front/src/views/home.vue @@ -0,0 +1,123 @@ + + + diff --git a/developedcode/cegongji/front/src/views/hubMotor/index.vue b/developedcode/cegongji/front/src/views/hubMotor/index.vue new file mode 100644 index 0000000..3e480d0 --- /dev/null +++ b/developedcode/cegongji/front/src/views/hubMotor/index.vue @@ -0,0 +1,621 @@ + + + + \ No newline at end of file diff --git a/developedcode/cegongji/front/src/views/index.vue b/developedcode/cegongji/front/src/views/index.vue new file mode 100644 index 0000000..72aa81f --- /dev/null +++ b/developedcode/cegongji/front/src/views/index.vue @@ -0,0 +1,774 @@ + + + + \ No newline at end of file diff --git a/developedcode/cegongji/front/src/views/login.vue b/developedcode/cegongji/front/src/views/login.vue new file mode 100644 index 0000000..9db5e67 --- /dev/null +++ b/developedcode/cegongji/front/src/views/login.vue @@ -0,0 +1,132 @@ + + + diff --git a/developedcode/cegongji/front/src/views/setting/index.vue b/developedcode/cegongji/front/src/views/setting/index.vue new file mode 100644 index 0000000..ae55603 --- /dev/null +++ b/developedcode/cegongji/front/src/views/setting/index.vue @@ -0,0 +1,669 @@ + + + + \ No newline at end of file diff --git a/developedcode/cegongji/front/src/views/user/index.vue b/developedcode/cegongji/front/src/views/user/index.vue new file mode 100644 index 0000000..c77b098 --- /dev/null +++ b/developedcode/cegongji/front/src/views/user/index.vue @@ -0,0 +1,234 @@ + + + + + + + \ No newline at end of file diff --git a/developedcode/cegongji/front/src/views/userLogin/index.vue b/developedcode/cegongji/front/src/views/userLogin/index.vue new file mode 100644 index 0000000..387e12c --- /dev/null +++ b/developedcode/cegongji/front/src/views/userLogin/index.vue @@ -0,0 +1,218 @@ + + + + + + + \ No newline at end of file diff --git a/developedcode/cegongji/front/vite.config.js b/developedcode/cegongji/front/vite.config.js new file mode 100644 index 0000000..73db581 --- /dev/null +++ b/developedcode/cegongji/front/vite.config.js @@ -0,0 +1,40 @@ +// Plugins +import vue from "@vitejs/plugin-vue"; +import vuetify, { transformAssetUrls } from "vite-plugin-vuetify"; +require('events').EventEmitter.defaultMaxListeners = 0; // 解除限制 +// Utilities +import { defineConfig } from "vite"; +import { fileURLToPath, URL } from "node:url"; +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue({ + template: { transformAssetUrls }, + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + ], + define: { "process.env": {} }, + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"], + }, + server: { + port: 80, + // open: true, + proxy: { + "/v1": { + target: "http://127.0.0.1:7001/api/v1", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/v1/, ""), + }, + }, + }, + build: { + sourcemap: true, + }, +}); diff --git a/developedcode/cutpng/index.js b/developedcode/cutpng/index.js new file mode 100644 index 0000000..ace67c0 --- /dev/null +++ b/developedcode/cutpng/index.js @@ -0,0 +1,81 @@ +const sizeOf = require('image-size'); +const _ = require('lodash'); +const jimp = require('jimp'); +const progress = require('progress'); +const fs = require('fs'); +let pngList = fs.readdirSync('./respng') +// 该函数是一个异步函数,用于将指定路径下的PNG图片按照一定规则进行切割,并保存为多个小图。 +// 该函数使用了sizeOf函数来获取图片的大小,使用了jimp库来进行图片的裁剪和保存操作,还使用了lodash库来克隆图片对象。 +async function cutPng() { + for (let layer = 0; layer < pngList.length; layer++) { + let urlStr = `./respng/${pngList[layer]}` + const currentImageInfo = sizeOf(urlStr) // 加载一张图,获取图片的高度和宽度。 + let clientHeight = currentImageInfo.height + let clientWidth = currentImageInfo.width + + const heights = [] + const widths = [] + const SPLIT_HEIGHT = 256 + // 根据高度和宽度计算出需要切割的行数和列数。 + while (clientHeight > 0) { + // 切图高度充足时 + if (clientHeight >= SPLIT_HEIGHT) { + heights.push(SPLIT_HEIGHT) + clientHeight -= SPLIT_HEIGHT + + } else { + // 切割高度不够时,直接切成一张 + heights.push(clientHeight) + clientHeight = 0 + } + } + while (clientWidth > 0) { + // 切图宽度充足时 + if (clientWidth >= SPLIT_HEIGHT) { + widths.push(SPLIT_HEIGHT) + clientWidth -= SPLIT_HEIGHT + } else { + // 切割宽度不够时,直接切成一张 + widths.push(clientWidth) + clientWidth = 0 + } + } + let counti = 0 + let countiNumber = 0 + let savePngArr = [] + for (let i of widths) { + let conutj = 0 + let conutjNumber = 0 + for (let j of heights) { + savePngArr.push({ + z: layer, + x: counti, + y: conutj, + countiNumber, + conutjNumber, + width: i, + height: j, + }) + + conutj++ + conutjNumber += j + } + counti++ + countiNumber += i + } + let conutBar = savePngArr.length + let bar = new progress(':bar :current/:total', { total: conutBar }); + let imageAll = await jimp.read(urlStr) + for (let i = 0; i < conutBar; i++) { + let imageTemp = _.cloneDeep(imageAll) + let elei = savePngArr[i]; + let cropTemp = imageTemp.crop(elei.countiNumber, elei.conutjNumber, elei.width, elei.height) + //保存图片 + cropTemp.write(`./dealpng/${elei.z}/${elei.x}/${elei.y}.png`) + bar.tick(); + } + } + console.log(8774, "切割结束") + +} +cutPng() diff --git a/developedcode/cutpng/indextest.js b/developedcode/cutpng/indextest.js new file mode 100644 index 0000000..38e9298 --- /dev/null +++ b/developedcode/cutpng/indextest.js @@ -0,0 +1,85 @@ +const sizeOf = require('image-size'); +const _ = require('lodash'); +const jimp = require('jimp'); +const progress = require('progress'); +let layerMaxStart = 4 +let layerMax = 5 + +async function cutPng() { + for (let layer = layerMaxStart; layer < layerMax; layer++) { + let urlStr = `./dealpng/layer_${layer}.png` + const currentImageInfo = sizeOf(urlStr) // 加载一张图 + let clientHeight = currentImageInfo.height + let clientWidth = currentImageInfo.width + console.log(111, currentImageInfo) + + const heights = [] + const widths = [] + const SPLIT_HEIGHT = 256 + while (clientHeight > 0) { + // 切图高度充足时 + if (clientHeight >= SPLIT_HEIGHT) { + heights.push(SPLIT_HEIGHT) + + clientHeight -= SPLIT_HEIGHT + + } else { + // 切割高度不够时,直接切成一张 + heights.push(clientHeight) + + clientHeight = 0 + } + } + while (clientWidth > 0) { + // 切图宽度充足时 + if (clientWidth >= SPLIT_HEIGHT) { + widths.push(SPLIT_HEIGHT) + clientWidth -= SPLIT_HEIGHT + } else { + // 切割宽度不够时,直接切成一张 + widths.push(clientWidth) + clientWidth = 0 + } + } + let counti = 0 + let countiNumber = 0 + let savePngArr = [] + for (let i of widths) { + let conutj = 0 + let conutjNumber = 0 + for (let j of heights) { + // let imageTemp = await jimp.read(urlStr) + // let cropTemp = imageTemp.crop(countiNumber, conutjNumber, i, j) + // cropTemp.write(`./dealpng/${layer}/${counti}/${conutj}.png`) + savePngArr.push({ + z: layer, + x: counti, + y: conutj, + countiNumber, + conutjNumber, + width: i, + height: j, + }) + + conutj++ + conutjNumber += j + } + counti++ + countiNumber += i + } + let conutBar = savePngArr.length + let bar = new progress(':bar :current/:total', { total: conutBar }); + let imageTemp = await jimp.read(urlStr) + console.log(8777,imageTemp) + // for (let i = 0; i < conutBar; i++) { + // let imageTemp = await jimp.read(urlStr) + // let elei = savePngArr[i]; + // let cropTemp = imageTemp.crop(elei.countiNumber, elei.conutjNumber, elei.width, elei.height) + // cropTemp.write(`./dealpng/${elei.z}/${elei.x}/${elei.y}.png`) + // bar.tick(); + // } + } + console.log(8774, "切割结束") + +} +cutPng() diff --git a/developedcode/cutpng/package.json b/developedcode/cutpng/package.json new file mode 100644 index 0000000..31d0de5 --- /dev/null +++ b/developedcode/cutpng/package.json @@ -0,0 +1,18 @@ +{ + "name": "cutpng", + "version": "1.0.0", + "description": "lichong", + "main": "index.js", + "scripts": { + "deal": "node index.js", + "dealtest": "node indextest.js" + }, + "author": "", + "license": "ISC", + "dependencies": { + "image-size": "^1.1.1", + "jimp": "^0.22.10", + "lodash": "^4.17.21", + "progress": "^2.0.3" + } +} diff --git a/developedcode/cutpng/respng/layer_0.png b/developedcode/cutpng/respng/layer_0.png new file mode 100644 index 0000000..955ee93 Binary files /dev/null and b/developedcode/cutpng/respng/layer_0.png differ diff --git a/developedcode/cutpng/respng/layer_1.png b/developedcode/cutpng/respng/layer_1.png new file mode 100644 index 0000000..d9a583e Binary files /dev/null and b/developedcode/cutpng/respng/layer_1.png differ diff --git a/developedcode/cutpng/respng/layer_2.png b/developedcode/cutpng/respng/layer_2.png new file mode 100644 index 0000000..3fef43c Binary files /dev/null and b/developedcode/cutpng/respng/layer_2.png differ diff --git a/developedcode/cutpng/respng/layer_3.png b/developedcode/cutpng/respng/layer_3.png new file mode 100644 index 0000000..50b8a36 Binary files /dev/null and b/developedcode/cutpng/respng/layer_3.png differ diff --git a/developedcode/cutpng/respng/layer_4.png b/developedcode/cutpng/respng/layer_4.png new file mode 100644 index 0000000..f1f47e5 Binary files /dev/null and b/developedcode/cutpng/respng/layer_4.png differ diff --git a/developedcode/driverlessCarnew/.browserslistrc b/developedcode/driverlessCarnew/.browserslistrc new file mode 100644 index 0000000..dc3bc09 --- /dev/null +++ b/developedcode/driverlessCarnew/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/developedcode/driverlessCarnew/.editorconfig b/developedcode/driverlessCarnew/.editorconfig new file mode 100644 index 0000000..7053c49 --- /dev/null +++ b/developedcode/driverlessCarnew/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/developedcode/driverlessCarnew/.gitignore b/developedcode/driverlessCarnew/.gitignore new file mode 100644 index 0000000..403adbc --- /dev/null +++ b/developedcode/driverlessCarnew/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/developedcode/driverlessCarnew/README.md b/developedcode/driverlessCarnew/README.md new file mode 100644 index 0000000..50b30e0 --- /dev/null +++ b/developedcode/driverlessCarnew/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/developedcode/driverlessCarnew/index.html b/developedcode/driverlessCarnew/index.html new file mode 100644 index 0000000..999abef --- /dev/null +++ b/developedcode/driverlessCarnew/index.html @@ -0,0 +1,16 @@ + + + + + + + 路网编辑器 + + + +
+ + + + + diff --git a/developedcode/driverlessCarnew/jsconfig.json b/developedcode/driverlessCarnew/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/developedcode/driverlessCarnew/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/developedcode/driverlessCarnew/package.json b/developedcode/driverlessCarnew/package.json new file mode 100644 index 0000000..c67997a --- /dev/null +++ b/developedcode/driverlessCarnew/package.json @@ -0,0 +1,40 @@ +{ + "name": "driverlessCar", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@mdi/font": "7.0.96", + "@soerenmartius/vue3-clipboard": "^0.1.2", + "axios": "^1.4.0", + "dayjs": "^1.11.7", + "element-plus": "^2.3.4", + "js-md5": "^0.7.3", + "jsencrypt": "^3.3.2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "nprogress": "^0.2.0", + "ol": "^7.3.0", + "pinia": "^2.0.35", + "pinia-plugin-persist": "^1.0.0", + "qs": "^6.11.1", + "roboto-fontface": "*", + "screenfull": "^6.0.2", + "ulid": "^2.3.0", + "vue": "^3.2.47", + "vue-router": "^4.1.6", + "vuetify": "^3.0.0", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.2.1", + "sass": "^1.62.1", + "unplugin-auto-import": "^0.15.3", + "unplugin-vue-components": "^0.24.1", + "vite": "^4.3.4", + "vite-plugin-vuetify": "^1.0.0" + } +} diff --git a/developedcode/driverlessCarnew/public/assets/js/jquery-1.7.1.min.js b/developedcode/driverlessCarnew/public/assets/js/jquery-1.7.1.min.js new file mode 100644 index 0000000..835d77d --- /dev/null +++ b/developedcode/driverlessCarnew/public/assets/js/jquery-1.7.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,t2=/(trident.*rv:)([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i0&& b[1].indexOf("trident")>-1){b[1]="msie"}return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
"+""+"
",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
t
",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/developedcode/driverlessCarnew/public/assets/js/jsVideoPlugin-1.0.0.min.js b/developedcode/driverlessCarnew/public/assets/js/jsVideoPlugin-1.0.0.min.js new file mode 100644 index 0000000..861380e --- /dev/null +++ b/developedcode/driverlessCarnew/public/assets/js/jsVideoPlugin-1.0.0.min.js @@ -0,0 +1,37 @@ +/*! {"version":"V1.0.0 build230210","playCrtl":"V7.4.0.1","pluginVersion":"V3.0.7.50","localServiceVersion":"V1.0.38"} */ +(function webpackUniversalModuleDefinition(e,t){if(typeof exports==="object"&&typeof module==="object")module.exports=t();else if(typeof define==="function"&&define.amd)define([],t);else{var n=t();for(var i in n)(typeof exports==="object"?exports:e)[i]=n[i]}})(window,function(){return function(n){var i={};function r(e){if(i[e]){return i[e].exports}var t=i[e]={i:e,l:false,exports:{}};n[e].call(t.exports,t,t.exports,r);t.l=true;return t.exports}r.m=n;r.c=i;r.d=function(e,t,n){if(!r.o(e,t)){Object.defineProperty(e,t,{enumerable:true,get:n})}};r.r=function(e){if(typeof Symbol!=="undefined"&&Symbol.toStringTag){Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})}Object.defineProperty(e,"__esModule",{value:true})};r.t=function(t,e){if(e&1)t=r(t);if(e&8)return t;if(e&4&&typeof t==="object"&&t&&t.__esModule)return t;var n=Object.create(null);r.r(n);Object.defineProperty(n,"default",{enumerable:true,value:t});if(e&2&&typeof t!="string")for(var i in t)r.d(n,i,function(e){return t[e]}.bind(null,i));return n};r.n=function(e){var t=e&&e.__esModule?function n(){return e["default"]}:function i(){return e};r.d(t,"a",t);return t};r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)};r.p="";return r(r.s=60)}([function(e,t){(function(){e.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},function(nn,rn,e){var on,sn; +/*! + * jQuery JavaScript Library v3.6.0 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2021-03-02T17:08Z + */ +(function(e,t){"use strict";if(true&&typeof nn.exports==="object"){nn.exports=e.document?t(e,true):function(e){if(!e.document){throw new Error("jQuery requires a window with a document")}return t(e)}}else{t(e)}})(typeof window!=="undefined"?window:this,function(C,L){"use strict";var t=[];var F=Object.getPrototypeOf;var a=t.slice;var W=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)};var N=t.push;var B=t.indexOf;var z={};var J=z.toString;var H=z.hasOwnProperty;var U=H.toString;var j=U.call(Object);var v={};var m=function m(e){return typeof e==="function"&&typeof e.nodeType!=="number"&&typeof e.item!=="function"};var y=function y(e){return e!=null&&e===e.window};var k=C.document;var G={type:true,src:true,nonce:true,noModule:true};function V(e,t,n){n=n||k;var i,r,o=n.createElement("script");o.text=e;if(t){for(i in G){r=t[i]||t.getAttribute&&t.getAttribute(i);if(r){o.setAttribute(i,r)}}}n.head.appendChild(o).parentNode.removeChild(o)}function g(e){if(e==null){return e+""}return typeof e==="object"||typeof e==="function"?z[J.call(e)]||"object":typeof e}var Y="3.6.0",T=function(e,t){return new T.fn.init(e,t)};T.fn=T.prototype={jquery:Y,constructor:T,length:0,toArray:function(){return a.call(this)},get:function(e){if(e==null){return a.call(this)}return e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=T.merge(this.constructor(),e);t.prevObject=this;return t},each:function(e){return T.each(this,e)},map:function(n){return this.pushStack(T.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(a.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(T.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(T.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n0&&t-1 in e}var e= +/*! + * Sizzle CSS Selector Engine v2.3.6 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2021-02-16 + */ +function(L){var e,p,w,o,F,v,W,N,S,u,l,_,b,r,C,m,s,a,y,k="sizzle"+1*new Date,f=L.document,T=0,B=0,z=i(),J=i(),H=i(),g=i(),U=function(e,t){if(e===t){l=true}return 0},j={}.hasOwnProperty,t=[],G=t.pop,V=t.push,R=t.push,Y=t.slice,P=function(e,t){var n=0,i=e.length;for(;n+~]|"+c+")"+c+"*"),te=new RegExp(c+"|>"),ne=new RegExp(K),ie=new RegExp("^"+n+"$"),h={ID:new RegExp("^#("+n+")"),CLASS:new RegExp("^\\.("+n+")"),TAG:new RegExp("^("+n+"|[*])"),ATTR:new RegExp("^"+Z),PSEUDO:new RegExp("^"+K),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+c+"*(even|odd|(([+-]|)(\\d*)n|)"+c+"*(?:([+-]|)"+c+"*(\\d+)|))"+c+"*\\)|)","i"),bool:new RegExp("^(?:"+X+")$","i"),needsContext:new RegExp("^"+c+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+c+"*((?:-\\d)?\\d*)"+c+"*\\)|)(?=[^-]|$)","i")},re=/HTML$/i,oe=/^(?:input|select|textarea|button)$/i,se=/^h\d$/i,d=/^[^{]+\{\s*\[native \w/,ae=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ue=/[+~]/,x=new RegExp("\\\\[\\da-fA-F]{1,6}"+c+"?|\\\\([^\\r\\n\\f])","g"),I=function(e,t){var n="0x"+e.slice(1)-65536;return t?t:n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,n&1023|56320)},le=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,fe=function(e,t){if(t){if(e==="\0"){return"�"}return e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" "}return"\\"+e},ce=function(){_()},he=Se(function(e){return e.disabled===true&&e.nodeName.toLowerCase()==="fieldset"},{dir:"parentNode",next:"legend"});try{R.apply(t=Y.call(f.childNodes),f.childNodes);t[f.childNodes.length].nodeType}catch(M){R={apply:t.length?function(e,t){V.apply(e,Y.call(t))}:function(e,t){var n=e.length,i=0;while(e[n++]=t[i++]){}e.length=n-1}}}function E(e,t,n,i){var r,o,s,a,u,l,f,c=t&&t.ownerDocument,h=t?t.nodeType:9;n=n||[];if(typeof e!=="string"||!e||h!==1&&h!==9&&h!==11){return n}if(!i){_(t);t=t||b;if(C){if(h!==11&&(u=ae.exec(e))){if(r=u[1]){if(h===9){if(s=t.getElementById(r)){if(s.id===r){n.push(s);return n}}else{return n}}else{if(c&&(s=c.getElementById(r))&&y(t,s)&&s.id===r){n.push(s);return n}}}else if(u[2]){R.apply(n,t.getElementsByTagName(e));return n}else if((r=u[3])&&p.getElementsByClassName&&t.getElementsByClassName){R.apply(n,t.getElementsByClassName(r));return n}}if(p.qsa&&!g[e+" "]&&(!m||!m.test(e))&&(h!==1||t.nodeName.toLowerCase()!=="object")){f=e;c=t;if(h===1&&(te.test(e)||ee.test(e))){c=ue.test(e)&&ge(t.parentNode)||t;if(c!==t||!p.scope){if(a=t.getAttribute("id")){a=a.replace(le,fe)}else{t.setAttribute("id",a=k)}}l=v(e);o=l.length;while(o--){l[o]=(a?"#"+a:":scope")+" "+we(l[o])}f=l.join(",")}try{R.apply(n,c.querySelectorAll(f));return n}catch(d){g(e,true)}finally{if(a===k){t.removeAttribute("id")}}}}}return N(e.replace(D,"$1"),t,n,i)}function i(){var n=[];function i(e,t){if(n.push(e+" ")>w.cacheLength){delete i[n.shift()]}return i[e+" "]=t}return i}function q(e){e[k]=true;return e}function A(e){var t=b.createElement("fieldset");try{return!!e(t)}catch(M){return false}finally{if(t.parentNode){t.parentNode.removeChild(t)}t=null}}function de(e,t){var n=e.split("|"),i=n.length;while(i--){w.attrHandle[n[i]]=t}}function pe(e,t){var n=t&&e,i=n&&e.nodeType===1&&t.nodeType===1&&e.sourceIndex-t.sourceIndex;if(i){return i}if(n){while(n=n.nextSibling){if(n===t){return-1}}}return e?1:-1}function ve(n){return function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type===n}}function me(n){return function(e){var t=e.nodeName.toLowerCase();return(t==="input"||t==="button")&&e.type===n}}function ye(t){return function(e){if("form"in e){if(e.parentNode&&e.disabled===false){if("label"in e){if("label"in e.parentNode){return e.parentNode.disabled===t}else{return e.disabled===t}}return e.isDisabled===t||e.isDisabled!==!t&&he(e)===t}return e.disabled===t}else if("label"in e){return e.disabled===t}return false}}function O(s){return q(function(o){o=+o;return q(function(e,t){var n,i=s([],e.length,o),r=i.length;while(r--){if(e[n=i[r]]){e[n]=!(t[n]=e[n])}}})})}function ge(e){return e&&typeof e.getElementsByTagName!=="undefined"&&e}p=E.support={};F=E.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!re.test(t||n&&n.nodeName||"HTML")};_=E.setDocument=function(e){var t,n,i=e?e.ownerDocument||e:f;if(i==b||i.nodeType!==9||!i.documentElement){return b}b=i;r=b.documentElement;C=!F(b);if(f!=b&&(n=b.defaultView)&&n.top!==n){if(n.addEventListener){n.addEventListener("unload",ce,false)}else if(n.attachEvent){n.attachEvent("onunload",ce)}}p.scope=A(function(e){r.appendChild(e).appendChild(b.createElement("div"));return typeof e.querySelectorAll!=="undefined"&&!e.querySelectorAll(":scope fieldset div").length});p.attributes=A(function(e){e.className="i";return!e.getAttribute("className")});p.getElementsByTagName=A(function(e){e.appendChild(b.createComment(""));return!e.getElementsByTagName("*").length});p.getElementsByClassName=d.test(b.getElementsByClassName);p.getById=A(function(e){r.appendChild(e).id=k;return!b.getElementsByName||!b.getElementsByName(k).length});if(p.getById){w.filter["ID"]=function(e){var t=e.replace(x,I);return function(e){return e.getAttribute("id")===t}};w.find["ID"]=function(e,t){if(typeof t.getElementById!=="undefined"&&C){var n=t.getElementById(e);return n?[n]:[]}}}else{w.filter["ID"]=function(e){var n=e.replace(x,I);return function(e){var t=typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id");return t&&t.value===n}};w.find["ID"]=function(e,t){if(typeof t.getElementById!=="undefined"&&C){var n,i,r,o=t.getElementById(e);if(o){n=o.getAttributeNode("id");if(n&&n.value===e){return[o]}r=t.getElementsByName(e);i=0;while(o=r[i++]){n=o.getAttributeNode("id");if(n&&n.value===e){return[o]}}}return[]}}}w.find["TAG"]=p.getElementsByTagName?function(e,t){if(typeof t.getElementsByTagName!=="undefined"){return t.getElementsByTagName(e)}else if(p.qsa){return t.querySelectorAll(e)}}:function(e,t){var n,i=[],r=0,o=t.getElementsByTagName(e);if(e==="*"){while(n=o[r++]){if(n.nodeType===1){i.push(n)}}return i}return o};w.find["CLASS"]=p.getElementsByClassName&&function(e,t){if(typeof t.getElementsByClassName!=="undefined"&&C){return t.getElementsByClassName(e)}};s=[];m=[];if(p.qsa=d.test(b.querySelectorAll)){A(function(e){var t;r.appendChild(e).innerHTML=""+"";if(e.querySelectorAll("[msallowcapture^='']").length){m.push("[*^$]="+c+"*(?:''|\"\")")}if(!e.querySelectorAll("[selected]").length){m.push("\\["+c+"*(?:value|"+X+")")}if(!e.querySelectorAll("[id~="+k+"-]").length){m.push("~=")}t=b.createElement("input");t.setAttribute("name","");e.appendChild(t);if(!e.querySelectorAll("[name='']").length){m.push("\\["+c+"*name"+c+"*="+c+"*(?:''|\"\")")}if(!e.querySelectorAll(":checked").length){m.push(":checked")}if(!e.querySelectorAll("a#"+k+"+*").length){m.push(".#.+[+~]")}e.querySelectorAll("\\\f");m.push("[\\r\\n\\f]")});A(function(e){e.innerHTML=""+"";var t=b.createElement("input");t.setAttribute("type","hidden");e.appendChild(t).setAttribute("name","D");if(e.querySelectorAll("[name=d]").length){m.push("name"+c+"*[*^$|!~]?=")}if(e.querySelectorAll(":enabled").length!==2){m.push(":enabled",":disabled")}r.appendChild(e).disabled=true;if(e.querySelectorAll(":disabled").length!==2){m.push(":enabled",":disabled")}e.querySelectorAll("*,:x");m.push(",.*:")})}if(p.matchesSelector=d.test(a=r.matches||r.webkitMatchesSelector||r.mozMatchesSelector||r.oMatchesSelector||r.msMatchesSelector)){A(function(e){p.disconnectedMatch=a.call(e,"*");a.call(e,"[s!='']:x");s.push("!=",K)})}m=m.length&&new RegExp(m.join("|"));s=s.length&&new RegExp(s.join("|"));t=d.test(r.compareDocumentPosition);y=t||d.test(r.contains)?function(e,t){var n=e.nodeType===9?e.documentElement:e,i=t&&t.parentNode;return e===i||!!(i&&i.nodeType===1&&(n.contains?n.contains(i):e.compareDocumentPosition&&e.compareDocumentPosition(i)&16))}:function(e,t){if(t){while(t=t.parentNode){if(t===e){return true}}}return false};U=t?function(e,t){if(e===t){l=true;return 0}var n=!e.compareDocumentPosition-!t.compareDocumentPosition;if(n){return n}n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1;if(n&1||!p.sortDetached&&t.compareDocumentPosition(e)===n){if(e==b||e.ownerDocument==f&&y(f,e)){return-1}if(t==b||t.ownerDocument==f&&y(f,t)){return 1}return u?P(u,e)-P(u,t):0}return n&4?-1:1}:function(e,t){if(e===t){l=true;return 0}var n,i=0,r=e.parentNode,o=t.parentNode,s=[e],a=[t];if(!r||!o){return e==b?-1:t==b?1:r?-1:o?1:u?P(u,e)-P(u,t):0}else if(r===o){return pe(e,t)}n=e;while(n=n.parentNode){s.unshift(n)}n=t;while(n=n.parentNode){a.unshift(n)}while(s[i]===a[i]){i++}return i?pe(s[i],a[i]):s[i]==f?-1:a[i]==f?1:0};return b};E.matches=function(e,t){return E(e,null,null,t)};E.matchesSelector=function(e,t){_(e);if(p.matchesSelector&&C&&!g[t+" "]&&(!s||!s.test(t))&&(!m||!m.test(t))){try{var n=a.call(e,t);if(n||p.disconnectedMatch||e.document&&e.document.nodeType!==11){return n}}catch(M){g(t,true)}}return E(t,b,null,[e]).length>0};E.contains=function(e,t){if((e.ownerDocument||e)!=b){_(e)}return y(e,t)};E.attr=function(e,t){if((e.ownerDocument||e)!=b){_(e)}var n=w.attrHandle[t.toLowerCase()],i=n&&j.call(w.attrHandle,t.toLowerCase())?n(e,t,!C):undefined;return i!==undefined?i:p.attributes||!C?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null};E.escape=function(e){return(e+"").replace(le,fe)};E.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)};E.uniqueSort=function(e){var t,n=[],i=0,r=0;l=!p.detectDuplicates;u=!p.sortStable&&e.slice(0);e.sort(U);if(l){while(t=e[r++]){if(t===e[r]){i=n.push(r)}}while(i--){e.splice(n[i],1)}}u=null;return e};o=E.getText=function(e){var t,n="",i=0,r=e.nodeType;if(!r){while(t=e[i++]){n+=o(t)}}else if(r===1||r===9||r===11){if(typeof e.textContent==="string"){return e.textContent}else{for(e=e.firstChild;e;e=e.nextSibling){n+=o(e)}}}else if(r===3||r===4){return e.nodeValue}return n};w=E.selectors={cacheLength:50,createPseudo:q,match:h,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:true}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:true},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){e[1]=e[1].replace(x,I);e[3]=(e[3]||e[4]||e[5]||"").replace(x,I);if(e[2]==="~="){e[3]=" "+e[3]+" "}return e.slice(0,4)},CHILD:function(e){e[1]=e[1].toLowerCase();if(e[1].slice(0,3)==="nth"){if(!e[3]){E.error(e[0])}e[4]=+(e[4]?e[5]+(e[6]||1):2*(e[3]==="even"||e[3]==="odd"));e[5]=+(e[7]+e[8]||e[3]==="odd")}else if(e[3]){E.error(e[0])}return e},PSEUDO:function(e){var t,n=!e[6]&&e[2];if(h["CHILD"].test(e[0])){return null}if(e[3]){e[2]=e[4]||e[5]||""}else if(n&&ne.test(n)&&(t=v(n,true))&&(t=n.indexOf(")",n.length-t)-n.length)){e[0]=e[0].slice(0,t);e[2]=n.slice(0,t)}return e.slice(0,3)}},filter:{TAG:function(e){var t=e.replace(x,I).toLowerCase();return e==="*"?function(){return true}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=z[e+" "];return t||(t=new RegExp("(^|"+c+")"+e+"("+c+"|$)"))&&z(e,function(e){return t.test(typeof e.className==="string"&&e.className||typeof e.getAttribute!=="undefined"&&e.getAttribute("class")||"")})},ATTR:function(n,i,r){return function(e){var t=E.attr(e,n);if(t==null){return i==="!="}if(!i){return true}t+="";return i==="="?t===r:i==="!="?t!==r:i==="^="?r&&t.indexOf(r)===0:i==="*="?r&&t.indexOf(r)>-1:i==="$="?r&&t.slice(-r.length)===r:i==="~="?(" "+t.replace($," ")+" ").indexOf(r)>-1:i==="|="?t===r||t.slice(0,r.length+1)===r+"-":false}},CHILD:function(p,e,t,v,m){var y=p.slice(0,3)!=="nth",g=p.slice(-4)!=="last",P=e==="of-type";return v===1&&m===0?function(e){return!!e.parentNode}:function(e,t,n){var i,r,o,s,a,u,l=y!==g?"nextSibling":"previousSibling",f=e.parentNode,c=P&&e.nodeName.toLowerCase(),h=!n&&!P,d=false;if(f){if(y){while(l){s=e;while(s=s[l]){if(P?s.nodeName.toLowerCase()===c:s.nodeType===1){return false}}u=l=p==="only"&&!u&&"nextSibling"}return true}u=[g?f.firstChild:f.lastChild];if(g&&h){s=f;o=s[k]||(s[k]={});r=o[s.uniqueID]||(o[s.uniqueID]={});i=r[p]||[];a=i[0]===T&&i[1];d=a&&i[2];s=a&&f.childNodes[a];while(s=++a&&s&&s[l]||(d=a=0)||u.pop()){if(s.nodeType===1&&++d&&s===e){r[p]=[T,a,d];break}}}else{if(h){s=e;o=s[k]||(s[k]={});r=o[s.uniqueID]||(o[s.uniqueID]={});i=r[p]||[];a=i[0]===T&&i[1];d=a}if(d===false){while(s=++a&&s&&s[l]||(d=a=0)||u.pop()){if((P?s.nodeName.toLowerCase()===c:s.nodeType===1)&&++d){if(h){o=s[k]||(s[k]={});r=o[s.uniqueID]||(o[s.uniqueID]={});r[p]=[T,d]}if(s===e){break}}}}}d-=m;return d===v||d%v===0&&d/v>=0}}},PSEUDO:function(e,o){var t,s=w.pseudos[e]||w.setFilters[e.toLowerCase()]||E.error("unsupported pseudo: "+e);if(s[k]){return s(o)}if(s.length>1){t=[e,e,"",o];return w.setFilters.hasOwnProperty(e.toLowerCase())?q(function(e,t){var n,i=s(e,o),r=i.length;while(r--){n=P(e,i[r]);e[n]=!(t[n]=i[r])}}):function(e){return s(e,0,t)}}return s}},pseudos:{not:q(function(e){var i=[],r=[],a=W(e.replace(D,"$1"));return a[k]?q(function(e,t,n,i){var r,o=a(e,null,i,[]),s=e.length;while(s--){if(r=o[s]){e[s]=!(t[s]=r)}}}):function(e,t,n){i[0]=e;a(i,null,n,r);i[0]=null;return!r.pop()}}),has:q(function(t){return function(e){return E(t,e).length>0}}),contains:q(function(t){t=t.replace(x,I);return function(e){return(e.textContent||o(e)).indexOf(t)>-1}}),lang:q(function(n){if(!ie.test(n||"")){E.error("unsupported lang: "+n)}n=n.replace(x,I).toLowerCase();return function(e){var t;do{if(t=C?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang")){t=t.toLowerCase();return t===n||t.indexOf(n+"-")===0}}while((e=e.parentNode)&&e.nodeType===1);return false}}),target:function(e){var t=L.location&&L.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===r},focus:function(e){return e===b.activeElement&&(!b.hasFocus||b.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ye(false),disabled:ye(true),checked:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&!!e.checked||t==="option"&&!!e.selected},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling){if(e.nodeType<6){return false}}return true},parent:function(e){return!w.pseudos["empty"](e)},header:function(e){return se.test(e.nodeName)},input:function(e){return oe.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type==="button"||t==="button"},text:function(e){var t;return e.nodeName.toLowerCase()==="input"&&e.type==="text"&&((t=e.getAttribute("type"))==null||t.toLowerCase()==="text")},first:O(function(){return[0]}),last:O(function(e,t){return[t-1]}),eq:O(function(e,t,n){return[n<0?n+t:n]}),even:O(function(e,t){var n=0;for(;nt?t:n;for(;--i>=0;){e.push(i)}return e}),gt:O(function(e,t,n){var i=n<0?n+t:n;for(;++i1?function(e,t,n){var i=r.length;while(i--){if(!r[i](e,t,n)){return false}}return true}:r[0]}function be(e,t,n){var i=0,r=t.length;for(;i-1){e[r]=!(t[r]=s)}}}}else{h=Ce(h===t?h.splice(l,h.length):h);if(y){y(null,t,h,i)}else{R.apply(t,h)}}})}function Te(e){var r,t,n,i=e.length,o=w.relative[e[0].type],s=o||w.relative[" "],a=o?1:0,u=Se(function(e){return e===r},s,true),l=Se(function(e){return P(r,e)>-1},s,true),f=[function(e,t,n){var i=!o&&(n||t!==S)||((r=t).nodeType?u(e,t,n):l(e,t,n));r=null;return i}];for(;a1&&_e(f),a>1&&we(e.slice(0,a-1).concat({value:e[a-2].type===" "?"*":""})).replace(D,"$1"),t,a0,P=m.length>0,e=function(e,t,n,i,r){var o,s,a,u=0,l="0",f=e&&[],c=[],h=S,d=e||P&&w.find["TAG"]("*",r),p=T+=h==null?1:Math.random()||.1,v=d.length;if(r){S=t==b||t||r}for(;l!==v&&(o=d[l])!=null;l++){if(P&&o){s=0;if(!t&&o.ownerDocument!=b){_(o);n=!C}while(a=m[s++]){if(a(o,t||b,n)){i.push(o);break}}if(r){T=p}}if(g){if(o=!a&&o){u--}if(e){f.push(o)}}}u+=l;if(g&&l!==u){s=0;while(a=y[s++]){a(f,c,t,n)}if(e){if(u>0){while(l--){if(!(f[l]||c[l])){c[l]=G.call(i)}}}c=Ce(c)}R.apply(i,c);if(r&&!e&&c.length>0&&u+y.length>1){E.uniqueSort(i)}}if(r){T=p;S=h}return f};return g?q(e):e}W=E.compile=function(e,t){var n,i=[],r=[],o=H[e+" "];if(!o){if(!t){t=v(e)}n=t.length;while(n--){o=Te(t[n]);if(o[k]){i.push(o)}else{r.push(o)}}o=H(e,Re(r,i));o.selector=e}return o};N=E.select=function(e,t,n,i){var r,o,s,a,u,l=typeof e==="function"&&e,f=!i&&v(e=l.selector||e);n=n||[];if(f.length===1){o=f[0]=f[0].slice(0);if(o.length>2&&(s=o[0]).type==="ID"&&t.nodeType===9&&C&&w.relative[o[1].type]){t=(w.find["ID"](s.matches[0].replace(x,I),t)||[])[0];if(!t){return n}else if(l){t=t.parentNode}e=e.slice(o.shift().value.length)}r=h["needsContext"].test(e)?0:o.length;while(r--){s=o[r];if(w.relative[a=s.type]){break}if(u=w.find[a]){if(i=u(s.matches[0].replace(x,I),ue.test(o[0].type)&&ge(t.parentNode)||t)){o.splice(r,1);e=i.length&&we(o);if(!e){R.apply(n,i);return n}break}}}}(l||W(e,f))(i,t,!C,n,!t||ue.test(e)&&ge(t.parentNode)||t);return n};p.sortStable=k.split("").sort(U).join("")===k;p.detectDuplicates=!!l;_();p.sortDetached=A(function(e){return e.compareDocumentPosition(b.createElement("fieldset"))&1});if(!A(function(e){e.innerHTML="";return e.firstChild.getAttribute("href")==="#"})){de("type|href|height|width",function(e,t,n){if(!n){return e.getAttribute(t,t.toLowerCase()==="type"?1:2)}})}if(!p.attributes||!A(function(e){e.innerHTML="";e.firstChild.setAttribute("value","");return e.firstChild.getAttribute("value")===""})){de("value",function(e,t,n){if(!n&&e.nodeName.toLowerCase()==="input"){return e.defaultValue}})}if(!A(function(e){return e.getAttribute("disabled")==null})){de(X,function(e,t,n){var i;if(!n){return e[t]===true?t.toLowerCase():(i=e.getAttributeNode(t))&&i.specified?i.value:null}})}return E}(C);T.find=e;T.expr=e.selectors;T.expr[":"]=T.expr.pseudos;T.uniqueSort=T.unique=e.uniqueSort;T.text=e.getText;T.isXMLDoc=e.isXML;T.contains=e.contains;T.escapeSelector=e.escape;var i=function(e,t,n){var i=[],r=n!==undefined;while((e=e[t])&&e.nodeType!==9){if(e.nodeType===1){if(r&&T(e).is(n)){break}i.push(e)}}return i};var Z=function(e,t){var n=[];for(;e;e=e.nextSibling){if(e.nodeType===1&&e!==t){n.push(e)}}return n};var K=T.expr.match.needsContext;function l(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var $=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function Q(e,n,i){if(m(n)){return T.grep(e,function(e,t){return!!n.call(e,t,e)!==i})}if(n.nodeType){return T.grep(e,function(e){return e===n!==i})}if(typeof n!=="string"){return T.grep(e,function(e){return B.call(n,e)>-1!==i})}return T.filter(n,e,i)}T.filter=function(e,t,n){var i=t[0];if(n){e=":not("+e+")"}if(t.length===1&&i.nodeType===1){return T.find.matchesSelector(i,e)?[i]:[]}return T.find.matches(e,T.grep(t,function(e){return e.nodeType===1}))};T.fn.extend({find:function(e){var t,n,i=this.length,r=this;if(typeof e!=="string"){return this.pushStack(T(e).filter(function(){for(t=0;t1?T.uniqueSort(n):n},filter:function(e){return this.pushStack(Q(this,e||[],false))},not:function(e){return this.pushStack(Q(this,e||[],true))},is:function(e){return!!Q(this,typeof e==="string"&&K.test(e)?T(e):e||[],false).length}});var ee,te=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,ne=T.fn.init=function(e,t,n){var i,r;if(!e){return this}n=n||ee;if(typeof e==="string"){if(e[0]==="<"&&e[e.length-1]===">"&&e.length>=3){i=[null,e,null]}else{i=te.exec(e)}if(i&&(i[1]||!t)){if(i[1]){t=t instanceof T?t[0]:t;T.merge(this,T.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:k,true));if($.test(i[1])&&T.isPlainObject(t)){for(i in t){if(m(this[i])){this[i](t[i])}else{this.attr(i,t[i])}}}return this}else{r=k.getElementById(i[2]);if(r){this[0]=r;this.length=1}return this}}else if(!t||t.jquery){return(t||n).find(e)}else{return this.constructor(t).find(e)}}else if(e.nodeType){this[0]=e;this.length=1;return this}else if(m(e)){return n.ready!==undefined?n.ready(e):e(T)}return T.makeArray(e,this)};ne.prototype=T.fn;ee=T(k);var ie=/^(?:parents|prev(?:Until|All))/,re={children:true,contents:true,next:true,prev:true};T.fn.extend({has:function(e){var t=T(e,this),n=t.length;return this.filter(function(){var e=0;for(;e-1:n.nodeType===1&&T.find.matchesSelector(n,e))){o.push(n);break}}}}return this.pushStack(o.length>1?T.uniqueSort(o):o)},index:function(e){if(!e){return this[0]&&this[0].parentNode?this.first().prevAll().length:-1}if(typeof e==="string"){return B.call(T(e),this[0])}return B.call(this,e.jquery?e[0]:e)},add:function(e,t){return this.pushStack(T.uniqueSort(T.merge(this.get(),T(e,t))))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}});function oe(e,t){while((e=e[t])&&e.nodeType!==1){}return e}T.each({parent:function(e){var t=e.parentNode;return t&&t.nodeType!==11?t:null},parents:function(e){return i(e,"parentNode")},parentsUntil:function(e,t,n){return i(e,"parentNode",n)},next:function(e){return oe(e,"nextSibling")},prev:function(e){return oe(e,"previousSibling")},nextAll:function(e){return i(e,"nextSibling")},prevAll:function(e){return i(e,"previousSibling")},nextUntil:function(e,t,n){return i(e,"nextSibling",n)},prevUntil:function(e,t,n){return i(e,"previousSibling",n)},siblings:function(e){return Z((e.parentNode||{}).firstChild,e)},children:function(e){return Z(e.firstChild)},contents:function(e){if(e.contentDocument!=null&&F(e.contentDocument)){return e.contentDocument}if(l(e,"template")){e=e.content||e}return T.merge([],e.childNodes)}},function(i,r){T.fn[i]=function(e,t){var n=T.map(this,r,e);if(i.slice(-5)!=="Until"){t=e}if(t&&typeof t==="string"){n=T.filter(t,n)}if(this.length>1){if(!re[i]){T.uniqueSort(n)}if(ie.test(i)){n.reverse()}}return this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function se(e){var n={};T.each(e.match(R)||[],function(e,t){n[t]=true});return n}T.Callbacks=function(i){i=typeof i==="string"?se(i):T.extend({},i);var r,e,t,n,o=[],s=[],a=-1,u=function(){n=n||i.once;t=r=true;for(;s.length;a=-1){e=s.shift();while(++a-1){o.splice(n,1);if(n<=a){a--}}});return this},has:function(e){return e?T.inArray(e,o)>-1:o.length>0},empty:function(){if(o){o=[]}return this},disable:function(){n=s=[];o=e="";return this},disabled:function(){return!o},lock:function(){n=s=[];if(!e&&!r){o=e=""}return this},locked:function(){return!!n},fireWith:function(e,t){if(!n){t=t||[];t=[e,t.slice?t.slice():t];s.push(t);if(!r){u()}}return this},fire:function(){l.fireWith(this,arguments);return this},fired:function(){return!!t}};return l};function c(e){return e}function ae(e){throw e}function ue(e,t,n,i){var r;try{if(e&&m(r=e.promise)){r.call(e).done(t).fail(n)}else if(e&&m(r=e.then)){r.call(e,t,n)}else{t.apply(undefined,[e].slice(i))}}catch(e){n.apply(undefined,[e])}}T.extend({Deferred:function(e){var o=[["notify","progress",T.Callbacks("memory"),T.Callbacks("memory"),2],["resolve","done",T.Callbacks("once memory"),T.Callbacks("once memory"),0,"resolved"],["reject","fail",T.Callbacks("once memory"),T.Callbacks("once memory"),1,"rejected"]],r="pending",s={state:function(){return r},always:function(){a.done(arguments).fail(arguments);return this},"catch":function(e){return s.then(null,e)},pipe:function(){var r=arguments;return T.Deferred(function(i){T.each(o,function(e,t){var n=m(r[t[4]])&&r[t[4]];a[t[1]](function(){var e=n&&n.apply(this,arguments);if(e&&m(e.promise)){e.promise().progress(i.notify).done(i.resolve).fail(i.reject)}else{i[t[0]+"With"](this,n?[e]:arguments)}})});r=null}).promise()},then:function(t,n,i){var l=0;function f(o,s,a,u){return function(){var n=this,i=arguments,t=function(){var e,t;if(o=l){if(a!==ae){n=undefined;i=[e]}s.rejectWith(n,i)}}};if(o){r()}else{if(T.Deferred.getStackHook){r.stackTrace=T.Deferred.getStackHook()}C.setTimeout(r)}}}return T.Deferred(function(e){o[0][3].add(f(0,e,m(i)?i:c,e.notifyWith));o[1][3].add(f(0,e,m(t)?t:c));o[2][3].add(f(0,e,m(n)?n:ae))}).promise()},promise:function(e){return e!=null?T.extend(e,s):s}},a={};T.each(o,function(e,t){var n=t[2],i=t[5];s[t[1]]=n.add;if(i){n.add(function(){r=i},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock)}n.add(t[3].fire);a[t[0]]=function(){a[t[0]+"With"](this===a?undefined:this,arguments);return this};a[t[0]+"With"]=n.fireWith});s.promise(a);if(e){e.call(a,a)}return a},when:function(e){var n=arguments.length,t=n,i=Array(t),r=a.call(arguments),o=T.Deferred(),s=function(t){return function(e){i[t]=this;r[t]=arguments.length>1?a.call(arguments):e;if(!--n){o.resolveWith(i,r)}}};if(n<=1){ue(e,o.done(s(t)).resolve,o.reject,!n);if(o.state()==="pending"||m(r[t]&&r[t].then)){return o.then()}}while(t--){ue(r[t],s(t),o.reject)}return o.promise()}});var le=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;T.Deferred.exceptionHook=function(e,t){if(C.console&&C.console.warn&&e&&le.test(e.name)){C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)}};T.readyException=function(e){C.setTimeout(function(){throw e})};var fe=T.Deferred();T.fn.ready=function(e){fe.then(e)["catch"](function(e){T.readyException(e)});return this};T.extend({isReady:false,readyWait:1,ready:function(e){if(e===true?--T.readyWait:T.isReady){return}T.isReady=true;if(e!==true&&--T.readyWait>0){return}fe.resolveWith(k,[T])}});T.ready.then=fe.then;function ce(){k.removeEventListener("DOMContentLoaded",ce);C.removeEventListener("load",ce);T.ready()}if(k.readyState==="complete"||k.readyState!=="loading"&&!k.documentElement.doScroll){C.setTimeout(T.ready)}else{k.addEventListener("DOMContentLoaded",ce);C.addEventListener("load",ce)}var f=function(e,t,n,i,r,o,s){var a=0,u=e.length,l=n==null;if(g(n)==="object"){r=true;for(a in n){f(e,t,a,n[a],true,o,s)}}else if(i!==undefined){r=true;if(!m(i)){s=true}if(l){if(s){t.call(e,i);t=null}else{l=t;t=function(e,t,n){return l.call(T(e),n)}}}if(t){for(;a1,null,true)},removeData:function(e){return this.each(function(){d.remove(this,e)})}});T.extend({queue:function(e,t,n){var i;if(e){t=(t||"fx")+"queue";i=w.get(e,t);if(n){if(!i||Array.isArray(n)){i=w.access(e,t,T.makeArray(n))}else{i.push(n)}}return i||[]}},dequeue:function(e,t){t=t||"fx";var n=T.queue(e,t),i=n.length,r=n.shift(),o=T._queueHooks(e,t),s=function(){T.dequeue(e,t)};if(r==="inprogress"){r=n.shift();i--}if(r){if(t==="fx"){n.unshift("inprogress")}delete o.stop;r.call(e,s,o)}if(!i&&o){o.empty.fire()}},_queueHooks:function(e,t){var n=t+"queueHooks";return w.get(e,n)||w.access(e,n,{empty:T.Callbacks("once memory").add(function(){w.remove(e,[t+"queue",n])})})}});T.fn.extend({queue:function(t,n){var e=2;if(typeof t!=="string"){n=t;t="fx";e--}if(arguments.length\x20\t\r\n\f]*)/i;var Te=/^$|^module$|\/(?:java|ecma)script/i;(function(){var e=k.createDocumentFragment(),t=e.appendChild(k.createElement("div")),n=k.createElement("input");n.setAttribute("type","radio");n.setAttribute("checked","checked");n.setAttribute("name","t");t.appendChild(n);v.checkClone=t.cloneNode(true).cloneNode(true).lastChild.checked;t.innerHTML="";v.noCloneChecked=!!t.cloneNode(true).lastChild.defaultValue;t.innerHTML="";v.option=!!t.lastChild})();var x={thead:[1,"
","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};x.tbody=x.tfoot=x.colgroup=x.caption=x.thead;x.th=x.td;if(!v.option){x.optgroup=x.option=[1,""]}function I(e,t){var n;if(typeof e.getElementsByTagName!=="undefined"){n=e.getElementsByTagName(t||"*")}else if(typeof e.querySelectorAll!=="undefined"){n=e.querySelectorAll(t||"*")}else{n=[]}if(t===undefined||t&&l(e,t)){return T.merge([e],n)}return n}function Re(e,t){var n=0,i=e.length;for(;n-1){if(r){r.push(o)}continue}l=b(o);s=I(c.appendChild(o),"script");if(l){Re(s)}if(n){f=0;while(o=s[f++]){if(Te.test(o.type||"")){n.push(o)}}}}return c}var Ie=/^([^.]*)(?:\.(.+)|)/;function s(){return true}function u(){return false}function Ee(e,t){return e===qe()===(t==="focus")}function qe(){try{return k.activeElement}catch(e){}}function Ae(e,t,n,i,r,o){var s,a;if(typeof t==="object"){if(typeof n!=="string"){i=i||n;n=undefined}for(a in t){Ae(e,a,n,i,t[a],o)}return e}if(i==null&&r==null){r=n;i=n=undefined}else if(r==null){if(typeof n==="string"){r=i;i=undefined}else{r=i;i=n;n=undefined}}if(r===false){r=u}else if(!r){return e}if(o===1){s=r;r=function(e){T().off(e);return s.apply(this,arguments)};r.guid=s.guid||(s.guid=T.guid++)}return e.each(function(){T.event.add(this,t,r,i,n)})}T.event={global:{},add:function(t,e,n,i,r){var o,s,a,u,l,f,c,h,d,p,v,m=w.get(t);if(!P(t)){return}if(n.handler){o=n;n=o.handler;r=o.selector}if(r){T.find.matchesSelector(_,r)}if(!n.guid){n.guid=T.guid++}if(!(u=m.events)){u=m.events=Object.create(null)}if(!(s=m.handle)){s=m.handle=function(e){return typeof T!=="undefined"&&T.event.triggered!==e.type?T.event.dispatch.apply(t,arguments):undefined}}e=(e||"").match(R)||[""];l=e.length;while(l--){a=Ie.exec(e[l])||[];d=v=a[1];p=(a[2]||"").split(".").sort();if(!d){continue}c=T.event.special[d]||{};d=(r?c.delegateType:c.bindType)||d;c=T.event.special[d]||{};f=T.extend({type:d,origType:v,data:i,handler:n,guid:n.guid,selector:r,needsContext:r&&T.expr.match.needsContext.test(r),namespace:p.join(".")},o);if(!(h=u[d])){h=u[d]=[];h.delegateCount=0;if(!c.setup||c.setup.call(t,i,p,s)===false){if(t.addEventListener){t.addEventListener(d,s)}}}if(c.add){c.add.call(t,f);if(!f.handler.guid){f.handler.guid=n.guid}}if(r){h.splice(h.delegateCount++,0,f)}else{h.push(f)}T.event.global[d]=true}},remove:function(e,t,n,i,r){var o,s,a,u,l,f,c,h,d,p,v,m=w.hasData(e)&&w.get(e);if(!m||!(u=m.events)){return}t=(t||"").match(R)||[""];l=t.length;while(l--){a=Ie.exec(t[l])||[];d=v=a[1];p=(a[2]||"").split(".").sort();if(!d){for(d in u){T.event.remove(e,d+t[l],n,i,true)}continue}c=T.event.special[d]||{};d=(i?c.delegateType:c.bindType)||d;h=u[d]||[];a=a[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)");s=o=h.length;while(o--){f=h[o];if((r||v===f.origType)&&(!n||n.guid===f.guid)&&(!a||a.test(f.namespace))&&(!i||i===f.selector||i==="**"&&f.selector)){h.splice(o,1);if(f.selector){h.delegateCount--}if(c.remove){c.remove.call(e,f)}}}if(s&&!h.length){if(!c.teardown||c.teardown.call(e,p,m.handle)===false){T.removeEvent(e,d,m.handle)}delete u[d]}}if(T.isEmptyObject(u)){w.remove(e,"handle events")}},dispatch:function(e){var t,n,i,r,o,s,a=new Array(arguments.length),u=T.event.fix(e),l=(w.get(this,"events")||Object.create(null))[u.type]||[],f=T.event.special[u.type]||{};a[0]=u;for(t=1;t=1)){for(;l!==this;l=l.parentNode||this){if(l.nodeType===1&&!(e.type==="click"&&l.disabled===true)){o=[];s={};for(n=0;n-1:T.find(r,this,null,[l]).length}if(s[r]){o.push(i)}}if(o.length){a.push({elem:l,handlers:o})}}}}l=this;if(u\s*$/g;function We(e,t){if(l(e,"table")&&l(t.nodeType!==11?t:t.firstChild,"tr")){return T(e).children("tbody")[0]||e}return e}function Ne(e){e.type=(e.getAttribute("type")!==null)+"/"+e.type;return e}function Be(e){if((e.type||"").slice(0,5)==="true/"){e.type=e.type.slice(5)}else{e.removeAttribute("type")}return e}function ze(e,t){var n,i,r,o,s,a,u;if(t.nodeType!==1){return}if(w.hasData(e)){o=w.get(e);u=o.events;if(u){w.remove(t,"handle events");for(r in u){for(n=0,i=u[r].length;n1&&typeof d==="string"&&!v.checkClone&&Le.test(d)){return n.each(function(e){var t=n.eq(e);if(p){i[0]=d.call(this,e,t.html())}E(t,i,r,o)})}if(c){e=xe(i,n[0].ownerDocument,false,n,o);t=e.firstChild;if(e.childNodes.length===1){e=t}if(t||o){s=T.map(I(e,"script"),Ne);a=s.length;for(;f0){Re(s,!u&&I(e,"script"))}return a},cleanData:function(e){var t,n,i,r=T.event.special,o=0;for(;(n=e[o])!==undefined;o++){if(P(n)){if(t=n[w.expando]){if(t.events){for(i in t.events){if(r[i]){T.event.remove(n,i)}else{T.removeEvent(n,i,t.handle)}}}n[w.expando]=undefined}if(n[d.expando]){n[d.expando]=undefined}}}}});T.fn.extend({detach:function(e){return He(this,e,true)},remove:function(e){return He(this,e)},text:function(e){return f(this,function(e){return e===undefined?T.text(this):this.empty().each(function(){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){this.textContent=e}})},null,e,arguments.length)},append:function(){return E(this,arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=We(this,e);t.appendChild(e)}})},prepend:function(){return E(this,arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=We(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return E(this,arguments,function(e){if(this.parentNode){this.parentNode.insertBefore(e,this)}})},after:function(){return E(this,arguments,function(e){if(this.parentNode){this.parentNode.insertBefore(e,this.nextSibling)}})},empty:function(){var e,t=0;for(;(e=this[t])!=null;t++){if(e.nodeType===1){T.cleanData(I(e,false));e.textContent=""}}return this},clone:function(e,t){e=e==null?false:e;t=t==null?e:t;return this.map(function(){return T.clone(this,e,t)})},html:function(e){return f(this,function(e){var t=this[0]||{},n=0,i=this.length;if(e===undefined&&t.nodeType===1){return t.innerHTML}if(typeof e==="string"&&!Me.test(e)&&!x[(ke.exec(e)||["",""])[1].toLowerCase()]){e=T.htmlPrefilter(e);try{for(;n=0){u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-a-.5))||0}return u}function at(e,t,n){var i=je(e),r=!v.boxSizingReliable()||n,o=r&&T.css(e,"boxSizing",false,i)==="border-box",s=o,a=Ye(e,t,i),u="offset"+t[0].toUpperCase()+t.slice(1);if(Ue.test(a)){if(!n){return a}a="auto"}if((!v.boxSizingReliable()&&o||!v.reliableTrDimensions()&&l(e,"tr")||a==="auto"||!parseFloat(a)&&T.css(e,"display",false,i)==="inline")&&e.getClientRects().length){o=T.css(e,"boxSizing",false,i)==="border-box";s=u in e;if(s){a=e[u]}}a=parseFloat(a)||0;return a+st(e,t,n||(o?"border":"content"),s,i,a)+"px"}T.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ye(e,"opacity");return n===""?"1":n}}}},cssNumber:{animationIterationCount:true,columnCount:true,fillOpacity:true,flexGrow:true,flexShrink:true,fontWeight:true,gridArea:true,gridColumn:true,gridColumnEnd:true,gridColumnStart:true,gridRow:true,gridRowEnd:true,gridRowStart:true,lineHeight:true,opacity:true,order:true,orphans:true,widows:true,zIndex:true,zoom:true},cssProps:{},style:function(e,t,n,i){if(!e||e.nodeType===3||e.nodeType===8||!e.style){return}var r,o,s,a=h(t),u=nt.test(t),l=e.style;if(!u){t=et(a)}s=T.cssHooks[t]||T.cssHooks[a];if(n!==undefined){o=typeof n;if(o==="string"&&(r=p.exec(n))&&r[1]){n=_e(e,t,r);o="number"}if(n==null||n!==n){return}if(o==="number"&&!u){n+=r&&r[3]||(T.cssNumber[a]?"":"px")}if(!v.clearCloneStyle&&n===""&&t.indexOf("background")===0){l[t]="inherit"}if(!s||!("set"in s)||(n=s.set(e,n,i))!==undefined){if(u){l.setProperty(t,n)}else{l[t]=n}}}else{if(s&&"get"in s&&(r=s.get(e,false,i))!==undefined){return r}return l[t]}},css:function(e,t,n,i){var r,o,s,a=h(t),u=nt.test(t);if(!u){t=et(a)}s=T.cssHooks[t]||T.cssHooks[a];if(s&&"get"in s){r=s.get(e,true,n)}if(r===undefined){r=Ye(e,t,i)}if(r==="normal"&&t in rt){r=rt[t]}if(n===""||n){o=parseFloat(r);return n===true||isFinite(o)?o||0:r}return r}});T.each(["height","width"],function(e,l){T.cssHooks[l]={get:function(e,t,n){if(t){return tt.test(T.css(e,"display"))&&(!e.getClientRects().length||!e.getBoundingClientRect().width)?Ge(e,it,function(){return at(e,l,n)}):at(e,l,n)}},set:function(e,t,n){var i,r=je(e),o=!v.scrollboxSize()&&r.position==="absolute",s=o||n,a=s&&T.css(e,"boxSizing",false,r)==="border-box",u=n?st(e,l,n,a,r):0;if(a&&o){u-=Math.ceil(e["offset"+l[0].toUpperCase()+l.slice(1)]-parseFloat(r[l])-st(e,l,"border",false,r)-.5)}if(u&&(i=p.exec(t))&&(i[3]||"px")!=="px"){e.style[l]=t;t=T.css(e,l)}return ot(e,t,u)}}});T.cssHooks.marginLeft=Xe(v.reliableMarginLeft,function(e,t){if(t){return(parseFloat(Ye(e,"marginLeft"))||e.getBoundingClientRect().left-Ge(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}});T.each({margin:"",padding:"",border:"Width"},function(r,o){T.cssHooks[r+o]={expand:function(e){var t=0,n={},i=typeof e==="string"?e.split(" "):[e];for(;t<4;t++){n[r+S[t]+o]=i[t]||i[t-2]||i[0]}return n}};if(r!=="margin"){T.cssHooks[r+o].set=ot}});T.fn.extend({css:function(e,t){return f(this,function(e,t,n){var i,r,o={},s=0;if(Array.isArray(t)){i=je(e);r=t.length;for(;s1)}});function o(e,t,n,i,r){return new o.prototype.init(e,t,n,i,r)}T.Tween=o;o.prototype={constructor:o,init:function(e,t,n,i,r,o){this.elem=e;this.prop=n;this.easing=r||T.easing._default;this.options=t;this.start=this.now=this.cur();this.end=i;this.unit=o||(T.cssNumber[n]?"":"px")},cur:function(){var e=o.propHooks[this.prop];return e&&e.get?e.get(this):o.propHooks._default.get(this)},run:function(e){var t,n=o.propHooks[this.prop];if(this.options.duration){this.pos=t=T.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration)}else{this.pos=t=e}this.now=(this.end-this.start)*t+this.start;if(this.options.step){this.options.step.call(this.elem,this.now,this)}if(n&&n.set){n.set(this)}else{o.propHooks._default.set(this)}return this}};o.prototype.init.prototype=o.prototype;o.propHooks={_default:{get:function(e){var t;if(e.elem.nodeType!==1||e.elem[e.prop]!=null&&e.elem.style[e.prop]==null){return e.elem[e.prop]}t=T.css(e.elem,e.prop,"");return!t||t==="auto"?0:t},set:function(e){if(T.fx.step[e.prop]){T.fx.step[e.prop](e)}else if(e.elem.nodeType===1&&(T.cssHooks[e.prop]||e.elem.style[et(e.prop)]!=null)){T.style(e.elem,e.prop,e.now+e.unit)}else{e.elem[e.prop]=e.now}}}};o.propHooks.scrollTop=o.propHooks.scrollLeft={set:function(e){if(e.elem.nodeType&&e.elem.parentNode){e.elem[e.prop]=e.now}}};T.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"};T.fx=o.prototype.init;T.fx.step={};var q,ut,lt=/^(?:toggle|show|hide)$/,ft=/queueHooks$/;function ct(){if(ut){if(k.hidden===false&&C.requestAnimationFrame){C.requestAnimationFrame(ct)}else{C.setTimeout(ct,T.fx.interval)}T.fx.tick()}}function ht(){C.setTimeout(function(){q=undefined});return q=Date.now()}function dt(e,t){var n,i=0,r={height:e};t=t?1:0;for(;i<4;i+=2-t){n=S[i];r["margin"+n]=r["padding"+n]=e}if(t){r.opacity=r.width=e}return r}function pt(e,t,n){var i,r=(A.tweeners[t]||[]).concat(A.tweeners["*"]),o=0,s=r.length;for(;o1)},removeAttr:function(e){return this.each(function(){T.removeAttr(this,e)})}});T.extend({attr:function(e,t,n){var i,r,o=e.nodeType;if(o===3||o===8||o===2){return}if(typeof e.getAttribute==="undefined"){return T.prop(e,t,n)}if(o!==1||!T.isXMLDoc(e)){r=T.attrHooks[t.toLowerCase()]||(T.expr.match.bool.test(t)?yt:undefined)}if(n!==undefined){if(n===null){T.removeAttr(e,t);return}if(r&&"set"in r&&(i=r.set(e,n,t))!==undefined){return i}e.setAttribute(t,n+"");return n}if(r&&"get"in r&&(i=r.get(e,t))!==null){return i}i=T.find.attr(e,t);return i==null?undefined:i},attrHooks:{type:{set:function(e,t){if(!v.radioValue&&t==="radio"&&l(e,"input")){var n=e.value;e.setAttribute("type",t);if(n){e.value=n}return t}}}},removeAttr:function(e,t){var n,i=0,r=t&&t.match(R);if(r&&e.nodeType===1){while(n=r[i++]){e.removeAttribute(n)}}}});yt={set:function(e,t,n){if(t===false){T.removeAttr(e,n)}else{e.setAttribute(n,n)}return n}};T.each(T.expr.match.bool.source.match(/\w+/g),function(e,t){var s=gt[t]||T.find.attr;gt[t]=function(e,t,n){var i,r,o=t.toLowerCase();if(!n){r=gt[o];gt[o]=i;i=s(e,t,n)!=null?o:null;gt[o]=r}return i}});var Pt=/^(?:input|select|textarea|button)$/i,wt=/^(?:a|area)$/i;T.fn.extend({prop:function(e,t){return f(this,T.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[T.propFix[e]||e]})}});T.extend({prop:function(e,t,n){var i,r,o=e.nodeType;if(o===3||o===8||o===2){return}if(o!==1||!T.isXMLDoc(e)){t=T.propFix[t]||t;r=T.propHooks[t]}if(n!==undefined){if(r&&"set"in r&&(i=r.set(e,n,t))!==undefined){return i}return e[t]=n}if(r&&"get"in r&&(i=r.get(e,t))!==null){return i}return e[t]},propHooks:{tabIndex:{get:function(e){var t=T.find.attr(e,"tabindex");if(t){return parseInt(t,10)}if(Pt.test(e.nodeName)||wt.test(e.nodeName)&&e.href){return 0}return-1}}},propFix:{"for":"htmlFor","class":"className"}});if(!v.optSelected){T.propHooks.selected={get:function(e){var t=e.parentNode;if(t&&t.parentNode){t.parentNode.selectedIndex}return null},set:function(e){var t=e.parentNode;if(t){t.selectedIndex;if(t.parentNode){t.parentNode.selectedIndex}}}}}T.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){T.propFix[this.toLowerCase()]=this});function O(e){var t=e.match(R)||[];return t.join(" ")}function M(e){return e.getAttribute&&e.getAttribute("class")||""}function St(e){if(Array.isArray(e)){return e}if(typeof e==="string"){return e.match(R)||[]}return[]}T.fn.extend({addClass:function(t){var e,n,i,r,o,s,a,u=0;if(m(t)){return this.each(function(e){T(this).addClass(t.call(this,e,M(this)))})}e=St(t);if(e.length){while(n=this[u++]){r=M(n);i=n.nodeType===1&&" "+O(r)+" ";if(i){s=0;while(o=e[s++]){if(i.indexOf(" "+o+" ")<0){i+=o+" "}}a=O(i);if(r!==a){n.setAttribute("class",a)}}}}return this},removeClass:function(t){var e,n,i,r,o,s,a,u=0;if(m(t)){return this.each(function(e){T(this).removeClass(t.call(this,e,M(this)))})}if(!arguments.length){return this.attr("class","")}e=St(t);if(e.length){while(n=this[u++]){r=M(n);i=n.nodeType===1&&" "+O(r)+" ";if(i){s=0;while(o=e[s++]){while(i.indexOf(" "+o+" ")>-1){i=i.replace(" "+o+" "," ")}}a=O(i);if(r!==a){n.setAttribute("class",a)}}}}return this},toggleClass:function(r,t){var o=typeof r,s=o==="string"||Array.isArray(r);if(typeof t==="boolean"&&s){return t?this.addClass(r):this.removeClass(r)}if(m(r)){return this.each(function(e){T(this).toggleClass(r.call(this,e,M(this),t),t)})}return this.each(function(){var e,t,n,i;if(s){t=0;n=T(this);i=St(r);while(e=i[t++]){if(n.hasClass(e)){n.removeClass(e)}else{n.addClass(e)}}}else if(r===undefined||o==="boolean"){e=M(this);if(e){w.set(this,"__className__",e)}if(this.setAttribute){this.setAttribute("class",e||r===false?"":w.get(this,"__className__")||"")}}})},hasClass:function(e){var t,n,i=0;t=" "+e+" ";while(n=this[i++]){if(n.nodeType===1&&(" "+O(M(n))+" ").indexOf(t)>-1){return true}}return false}});var _t=/\r/g;T.fn.extend({val:function(n){var i,e,r,t=this[0];if(!arguments.length){if(t){i=T.valHooks[t.type]||T.valHooks[t.nodeName.toLowerCase()];if(i&&"get"in i&&(e=i.get(t,"value"))!==undefined){return e}e=t.value;if(typeof e==="string"){return e.replace(_t,"")}return e==null?"":e}return}r=m(n);return this.each(function(e){var t;if(this.nodeType!==1){return}if(r){t=n.call(this,e,T(this).val())}else{t=n}if(t==null){t=""}else if(typeof t==="number"){t+=""}else if(Array.isArray(t)){t=T.map(t,function(e){return e==null?"":e+""})}i=T.valHooks[this.type]||T.valHooks[this.nodeName.toLowerCase()];if(!i||!("set"in i)||i.set(this,t,"value")===undefined){this.value=t}})}});T.extend({valHooks:{option:{get:function(e){var t=T.find.attr(e,"value");return t!=null?t:O(T.text(e))}},select:{get:function(e){var t,n,i,r=e.options,o=e.selectedIndex,s=e.type==="select-one",a=s?null:[],u=s?o+1:r.length;if(o<0){i=u}else{i=s?o:0}for(;i-1){n=true}}if(!n){e.selectedIndex=-1}return o}}}});T.each(["radio","checkbox"],function(){T.valHooks[this]={set:function(e,t){if(Array.isArray(t)){return e.checked=T.inArray(T(e).val(),t)>-1}}};if(!v.checkOn){T.valHooks[this].get=function(e){return e.getAttribute("value")===null?"on":e.value}}});v.focusin="onfocusin"in C;var bt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};T.extend(T.event,{trigger:function(e,t,n,i){var r,o,s,a,u,l,f,c,h=[n||k],d=H.call(e,"type")?e.type:e,p=H.call(e,"namespace")?e.namespace.split("."):[];o=c=s=n=n||k;if(n.nodeType===3||n.nodeType===8){return}if(bt.test(d+T.event.triggered)){return}if(d.indexOf(".")>-1){p=d.split(".");d=p.shift();p.sort()}u=d.indexOf(":")<0&&"on"+d;e=e[T.expando]?e:new T.Event(d,typeof e==="object"&&e);e.isTrigger=i?2:3;e.namespace=p.join(".");e.rnamespace=e.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null;e.result=undefined;if(!e.target){e.target=n}t=t==null?[e]:T.makeArray(t,[e]);f=T.event.special[d]||{};if(!i&&f.trigger&&f.trigger.apply(n,t)===false){return}if(!i&&!f.noBubble&&!y(n)){a=f.delegateType||d;if(!bt.test(a+d)){o=o.parentNode}for(;o;o=o.parentNode){h.push(o);s=o}if(s===(n.ownerDocument||k)){h.push(s.defaultView||s.parentWindow||C)}}r=0;while((o=h[r++])&&!e.isPropagationStopped()){c=o;e.type=r>1?a:f.bindType||d;l=(w.get(o,"events")||Object.create(null))[e.type]&&w.get(o,"handle");if(l){l.apply(o,t)}l=u&&o[u];if(l&&l.apply&&P(o)){e.result=l.apply(o,t);if(e.result===false){e.preventDefault()}}}e.type=d;if(!i&&!e.isDefaultPrevented()){if((!f._default||f._default.apply(h.pop(),t)===false)&&P(n)){if(u&&m(n[d])&&!y(n)){s=n[u];if(s){n[u]=null}T.event.triggered=d;if(e.isPropagationStopped()){c.addEventListener(d,Ct)}n[d]();if(e.isPropagationStopped()){c.removeEventListener(d,Ct)}T.event.triggered=undefined;if(s){n[u]=s}}}}return e.result},simulate:function(e,t,n){var i=T.extend(new T.Event,n,{type:e,isSimulated:true});T.event.trigger(i,null,t)}});T.fn.extend({trigger:function(e,t){return this.each(function(){T.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n){return T.event.trigger(e,t,n,true)}}});if(!v.focusin){T.each({focus:"focusin",blur:"focusout"},function(n,i){var r=function(e){T.event.simulate(i,e.target,T.event.fix(e))};T.event.special[i]={setup:function(){var e=this.ownerDocument||this.document||this,t=w.access(e,i);if(!t){e.addEventListener(n,r,true)}w.access(e,i,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=w.access(e,i)-1;if(!t){e.removeEventListener(n,r,true);w.remove(e,i)}else{w.access(e,i,t)}}}})}var kt=C.location;var Tt={guid:Date.now()};var Rt=/\?/;T.parseXML=function(e){var t,n;if(!e||typeof e!=="string"){return null}try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(i){}n=t&&t.getElementsByTagName("parsererror")[0];if(!t||n){T.error("Invalid XML: "+(n?T.map(n.childNodes,function(e){return e.textContent}).join("\n"):e))}return t};var Dt=/\[\]$/,xt=/\r?\n/g,It=/^(?:submit|button|image|reset|file)$/i,Et=/^(?:input|select|textarea|keygen)/i;function qt(n,e,i,r){var t;if(Array.isArray(e)){T.each(e,function(e,t){if(i||Dt.test(n)){r(n,t)}else{qt(n+"["+(typeof t==="object"&&t!=null?e:"")+"]",t,i,r)}})}else if(!i&&g(e)==="object"){for(t in e){qt(n+"["+t+"]",e[t],i,r)}}else{r(n,e)}}T.param=function(e,t){var n,i=[],r=function(e,t){var n=m(t)?t():t;i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(n==null?"":n)};if(e==null){return""}if(Array.isArray(e)||e.jquery&&!T.isPlainObject(e)){T.each(e,function(){r(this.name,this.value)})}else{for(n in e){qt(n,e[n],t,r)}}return i.join("&")};T.fn.extend({serialize:function(){return T.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=T.prop(this,"elements");return e?T.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!T(this).is(":disabled")&&Et.test(this.nodeName)&&!It.test(e)&&(this.checked||!r.test(e))}).map(function(e,t){var n=T(this).val();if(n==null){return null}if(Array.isArray(n)){return T.map(n,function(e){return{name:t.name,value:e.replace(xt,"\r\n")}})}return{name:t.name,value:n.replace(xt,"\r\n")}}).get()}});var At=/%20/g,Ot=/#.*$/,Mt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ft=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Wt=/^(?:GET|HEAD)$/,Nt=/^\/\//,Bt={},zt={},Jt="*/".concat("*"),Ht=k.createElement("a");Ht.href=kt.href;function Ut(o){return function(e,t){if(typeof e!=="string"){t=e;e="*"}var n,i=0,r=e.toLowerCase().match(R)||[];if(m(t)){while(n=r[i++]){if(n[0]==="+"){n=n.slice(1)||"*";(o[n]=o[n]||[]).unshift(t)}else{(o[n]=o[n]||[]).push(t)}}}}}function jt(t,r,o,s){var a={},u=t===zt;function l(e){var i;a[e]=true;T.each(t[e]||[],function(e,t){var n=t(r,o,s);if(typeof n==="string"&&!u&&!a[n]){r.dataTypes.unshift(n);l(n);return false}else if(u){return!(i=n)}});return i}return l(r.dataTypes[0])||!a["*"]&&l("*")}function Gt(e,t){var n,i,r=T.ajaxSettings.flatOptions||{};for(n in t){if(t[n]!==undefined){(r[n]?e:i||(i={}))[n]=t[n]}}if(i){T.extend(true,e,i)}return e}function Vt(e,t,n){var i,r,o,s,a=e.contents,u=e.dataTypes;while(u[0]==="*"){u.shift();if(i===undefined){i=e.mimeType||t.getResponseHeader("Content-Type")}}if(i){for(r in a){if(a[r]&&a[r].test(i)){u.unshift(r);break}}}if(u[0]in n){o=u[0]}else{for(r in n){if(!u[0]||e.converters[r+" "+u[0]]){o=r;break}if(!s){s=r}}o=o||s}if(o){if(o!==u[0]){u.unshift(o)}return n[o]}}function Yt(e,t,n,i){var r,o,s,a,u,l={},f=e.dataTypes.slice();if(f[1]){for(s in e.converters){l[s.toLowerCase()]=e.converters[s]}}o=f.shift();while(o){if(e.responseFields[o]){n[e.responseFields[o]]=t}if(!u&&i&&e.dataFilter){t=e.dataFilter(t,e.dataType)}u=o;o=f.shift();if(o){if(o==="*"){o=u}else if(u!=="*"&&u!==o){s=l[u+" "+o]||l["* "+o];if(!s){for(r in l){a=r.split(" ");if(a[1]===o){s=l[u+" "+a[0]]||l["* "+a[0]];if(s){if(s===true){s=l[r]}else if(l[r]!==true){o=a[0];f.unshift(a[1])}break}}}}if(s!==true){if(s&&e["throws"]){t=s(t)}else{try{t=s(t)}catch(c){return{state:"parsererror",error:s?c:"No conversion from "+u+" to "+o}}}}}}}return{state:"success",data:t}}T.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:kt.href,type:"GET",isLocal:Ft.test(kt.protocol),global:true,processData:true,"async":true,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":true,"text json":JSON.parse,"text xml":T.parseXML},flatOptions:{url:true,context:true}},ajaxSetup:function(e,t){return t?Gt(Gt(e,T.ajaxSettings),t):Gt(T.ajaxSettings,e)},ajaxPrefilter:Ut(Bt),ajaxTransport:Ut(zt),ajax:function(e,t){if(typeof e==="object"){t=e;e=undefined}t=t||{};var f,c,h,n,d,i,p,v,r,o,m=T.ajaxSetup({},t),y=m.context||m,g=m.context&&(y.nodeType||y.jquery)?T(y):T.event,P=T.Deferred(),w=T.Callbacks("once memory"),S=m.statusCode||{},s={},a={},u="canceled",_={readyState:0,getResponseHeader:function(e){var t;if(p){if(!n){n={};while(t=Lt.exec(h)){n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}}t=n[e.toLowerCase()+" "]}return t==null?null:t.join(", ")},getAllResponseHeaders:function(){return p?h:null},setRequestHeader:function(e,t){if(p==null){e=a[e.toLowerCase()]=a[e.toLowerCase()]||e;s[e]=t}return this},overrideMimeType:function(e){if(p==null){m.mimeType=e}return this},statusCode:function(e){var t;if(e){if(p){_.always(e[_.status])}else{for(t in e){S[t]=[S[t],e[t]]}}}return this},abort:function(e){var t=e||u;if(f){f.abort(t)}l(0,t);return this}};P.promise(_);m.url=((e||m.url||kt.href)+"").replace(Nt,kt.protocol+"//");m.type=t.method||t.type||m.method||m.type;m.dataTypes=(m.dataType||"*").toLowerCase().match(R)||[""];if(m.crossDomain==null){i=k.createElement("a");try{i.href=m.url;i.href=i.href;m.crossDomain=Ht.protocol+"//"+Ht.host!==i.protocol+"//"+i.host}catch(b){m.crossDomain=true}}if(m.data&&m.processData&&typeof m.data!=="string"){m.data=T.param(m.data,m.traditional)}jt(Bt,m,t,_);if(p){return _}v=T.event&&m.global;if(v&&T.active++===0){T.event.trigger("ajaxStart")}m.type=m.type.toUpperCase();m.hasContent=!Wt.test(m.type);c=m.url.replace(Ot,"");if(!m.hasContent){o=m.url.slice(c.length);if(m.data&&(m.processData||typeof m.data==="string")){c+=(Rt.test(c)?"&":"?")+m.data;delete m.data}if(m.cache===false){c=c.replace(Mt,"$1");o=(Rt.test(c)?"&":"?")+"_="+Tt.guid+++o}m.url=c+o}else if(m.data&&m.processData&&(m.contentType||"").indexOf("application/x-www-form-urlencoded")===0){m.data=m.data.replace(At,"+")}if(m.ifModified){if(T.lastModified[c]){_.setRequestHeader("If-Modified-Since",T.lastModified[c])}if(T.etag[c]){_.setRequestHeader("If-None-Match",T.etag[c])}}if(m.data&&m.hasContent&&m.contentType!==false||t.contentType){_.setRequestHeader("Content-Type",m.contentType)}_.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+(m.dataTypes[0]!=="*"?", "+Jt+"; q=0.01":""):m.accepts["*"]);for(r in m.headers){_.setRequestHeader(r,m.headers[r])}if(m.beforeSend&&(m.beforeSend.call(y,_,m)===false||p)){return _.abort()}u="abort";w.add(m.complete);_.done(m.success);_.fail(m.error);f=jt(zt,m,t,_);if(!f){l(-1,"No Transport")}else{_.readyState=1;if(v){g.trigger("ajaxSend",[_,m])}if(p){return _}if(m["async"]&&m.timeout>0){d=C.setTimeout(function(){_.abort("timeout")},m.timeout)}try{p=false;f.send(s,l)}catch(b){if(p){throw b}l(-1,b)}}function l(e,t,n,i){var r,o,s,a,u,l=t;if(p){return}p=true;if(d){C.clearTimeout(d)}f=undefined;h=i||"";_.readyState=e>0?4:0;r=e>=200&&e<300||e===304;if(n){a=Vt(m,_,n)}if(!r&&T.inArray("script",m.dataTypes)>-1&&T.inArray("json",m.dataTypes)<0){m.converters["text script"]=function(){}}a=Yt(m,a,_,r);if(r){if(m.ifModified){u=_.getResponseHeader("Last-Modified");if(u){T.lastModified[c]=u}u=_.getResponseHeader("etag");if(u){T.etag[c]=u}}if(e===204||m.type==="HEAD"){l="nocontent"}else if(e===304){l="notmodified"}else{l=a.state;o=a.data;s=a.error;r=!s}}else{s=l;if(e||!l){l="error";if(e<0){e=0}}}_.status=e;_.statusText=(t||l)+"";if(r){P.resolveWith(y,[o,l,_])}else{P.rejectWith(y,[_,l,s])}_.statusCode(S);S=undefined;if(v){g.trigger(r?"ajaxSuccess":"ajaxError",[_,m,r?o:s])}w.fireWith(y,[_,l]);if(v){g.trigger("ajaxComplete",[_,m]);if(!--T.active){T.event.trigger("ajaxStop")}}}return _},getJSON:function(e,t,n){return T.get(e,t,n,"json")},getScript:function(e,t){return T.get(e,undefined,t,"script")}});T.each(["get","post"],function(e,r){T[r]=function(e,t,n,i){if(m(t)){i=i||n;n=t;t=undefined}return T.ajax(T.extend({url:e,type:r,dataType:i,data:t,success:n},T.isPlainObject(e)&&e))}});T.ajaxPrefilter(function(e){var t;for(t in e.headers){if(t.toLowerCase()==="content-type"){e.contentType=e.headers[t]||""}}});T._evalUrl=function(e,t,n){return T.ajax({url:e,type:"GET",dataType:"script",cache:true,"async":false,global:false,converters:{"text script":function(){}},dataFilter:function(e){T.globalEval(e,t,n)}})};T.fn.extend({wrapAll:function(e){var t;if(this[0]){if(m(e)){e=e.call(this[0])}t=T(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){t.insertBefore(this[0])}t.map(function(){var e=this;while(e.firstElementChild){e=e.firstElementChild}return e}).append(this)}return this},wrapInner:function(n){if(m(n)){return this.each(function(e){T(this).wrapInner(n.call(this,e))})}return this.each(function(){var e=T(this),t=e.contents();if(t.length){t.wrapAll(n)}else{e.append(n)}})},wrap:function(t){var n=m(t);return this.each(function(e){T(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){this.parent(e).not("body").each(function(){T(this).replaceWith(this.childNodes)});return this}});T.expr.pseudos.hidden=function(e){return!T.expr.pseudos.visible(e)};T.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)};T.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Xt={0:200,1223:204},Zt=T.ajaxSettings.xhr();v.cors=!!Zt&&"withCredentials"in Zt;v.ajax=Zt=!!Zt;T.ajaxTransport(function(o){var s,a;if(v.cors||Zt&&!o.crossDomain){return{send:function(e,t){var n,i=o.xhr();i.open(o.type,o.url,o["async"],o.username,o.password);if(o.xhrFields){for(n in o.xhrFields){i[n]=o.xhrFields[n]}}if(o.mimeType&&i.overrideMimeType){i.overrideMimeType(o.mimeType)}if(!o.crossDomain&&!e["X-Requested-With"]){e["X-Requested-With"]="XMLHttpRequest"}for(n in e){i.setRequestHeader(n,e[n])}s=function(e){return function(){if(s){s=a=i.onload=i.onerror=i.onabort=i.ontimeout=i.onreadystatechange=null;if(e==="abort"){i.abort()}else if(e==="error"){if(typeof i.status!=="number"){t(0,"error")}else{t(i.status,i.statusText)}}else{t(Xt[i.status]||i.status,i.statusText,(i.responseType||"text")!=="text"||typeof i.responseText!=="string"?{binary:i.response}:{text:i.responseText},i.getAllResponseHeaders())}}}};i.onload=s();a=i.onerror=i.ontimeout=s("error");if(i.onabort!==undefined){i.onabort=a}else{i.onreadystatechange=function(){if(i.readyState===4){C.setTimeout(function(){if(s){a()}})}}}s=s("abort");try{i.send(o.hasContent&&o.data||null)}catch(r){if(s){throw r}}},abort:function(){if(s){s()}}}}});T.ajaxPrefilter(function(e){if(e.crossDomain){e.contents.script=false}});T.ajaxSetup({accepts:{script:"text/javascript, application/javascript, "+"application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){T.globalEval(e);return e}}});T.ajaxPrefilter("script",function(e){if(e.cache===undefined){e.cache=false}if(e.crossDomain){e.type="GET"}});T.ajaxTransport("script",function(n){if(n.crossDomain||n.scriptAttrs){var i,r;return{send:function(e,t){i=T(" diff --git a/developedcode/driverlessCarnew/src/api/editor.js b/developedcode/driverlessCarnew/src/api/editor.js new file mode 100644 index 0000000..460e022 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/editor.js @@ -0,0 +1,38 @@ +import _axios from "@/plugins/axios"; +//获机器人端对应瓦片地图的详细信息 +/* map=地图名 */ +export function getDetails(params) { + return _axios({ + url: `/v1/tilemap/details`, + method: "GET", + params, + }); +} +//获机器人端对应瓦片地图的渲染信息 +/* map=地图名 */ +export function getGeojson(params) { + return _axios({ + url: `/v1/roadmap/geojson`, + method: "GET", + params, + }); +} +//保存器人端对应瓦片地图 +/* map=地图名 */ +export function postGeojson(data) { + return _axios({ + url: `/v1/roadmap/geojson`, + method: "POST", + data, + }); +} +//获机器人端对应地图中的瓦片图片 +/* 层级 : 起始值为1,代表第一层级 + x索引 : 列索引,起始值为0,增长方向为垂直向下 + y索引 : 行索引,起始值为0,增长方向为水平向右 */ +export function getTilemap(data) { + return _axios({ + url: `/v1/tilemap/tile/${data.mapName}/${data.zoom}/${xIndex}/${yIndex}`, + method: "GET", + }); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttability.js b/developedcode/driverlessCarnew/src/api/ldmqttability.js new file mode 100644 index 0000000..1fb5b5b --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttability.js @@ -0,0 +1,11 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// 远程调用机载能力 /ability/function/action/exec | 订阅 | QoS2 | Retain0 +export function actionExec(callback) { + return startMqtt( + "ability/function/action/exec", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttbuild.js b/developedcode/driverlessCarnew/src/api/ldmqttbuild.js new file mode 100644 index 0000000..e27037f --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttbuild.js @@ -0,0 +1,63 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); +//订阅地图状态 +export function mappingState(callback) { + return startMqtt("slam/mapping/state", { qos: 0 }, callback); +} + +//取消订阅地图状态 +export function endMappingState(callback) { + return endMqtt("slam/mapping/state"); +} + +//订阅构建进程 +export function recordProgress(callback) { + return startMqtt("map/record/progress", { qos: 2, retain: 0 }, callback); +} + +//取消订阅订阅构建进程 +export function endRecordProgress(callback) { + return endMqtt("map/record/progress"); +} +//订阅当前地图 +export function current_map(callback) { + return startMqtt("map/property/current_map", { qos: 2, retain: 1 }, callback); +} +//取消订阅当前地图 +export function endCurrent_map(callback) { + return endMqtt("map/property/current_map"); +} + +// 构建地图 slam/mapping/action/start | 发布 | QoS2 | Retain0 +export function pubSlamStart(map, map_type) { + return pubCommonFn( + "slam/mapping/action/start", + { + args: [map, map_type], + }, + 2, + 0 + ); +} +// 结束构建地图 slam/mapping/action/finish | 发布 | QoS2 | Retain0 +export function pubSlamFinish() { + return pubCommonFn( + "slam/mapping/action/finish", + { + args: null, + }, + 2, + 0 + ); +} +// 取消构建地图 slam/mapping/action/cancel | 发布 | QoS2 | Retain0 +export function pubSlamCancel(map, map_type) { + return pubCommonFn( + "slam/mapping/action/cancel", + { + args: null, + }, + 2, + 0 + ); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttio.js b/developedcode/driverlessCarnew/src/api/ldmqttio.js new file mode 100644 index 0000000..2901574 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttio.js @@ -0,0 +1,11 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// IO量操作 /io/common/state/action/set | 订阅 | QoS2 | Retain0 +export function ioActionSet(callback) { + return startMqtt( + "io/common/state/action/set", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttlocalization.js b/developedcode/driverlessCarnew/src/api/ldmqttlocalization.js new file mode 100644 index 0000000..501d908 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttlocalization.js @@ -0,0 +1,36 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// 机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function locPose(callback) { + return startMqtt("localization/pose", { qos: 0, retain: 0 }, callback); +} +// 取消机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function endLocPose() { + return endMqtt("localization/pose"); +} +// 位姿初始化 /localization/action/init | 订阅 | QoS2 | Retain0 +export function actionInit(x, y, yaw, callback) { + return pubCommonFn( + "localization/action/init", + { + args: [ + { + pose: { + xyz: [x, y, 0], + rpy: [0, 0, yaw], + blh: null, + }, + }, + ], + }, + 2, + 0, + callback + ); +} + +// 取消位姿初始化 /localization/action/init | 订阅 | QoS2 | Retain0 +export function endActionInit() { + return startMqtt("localization/action/init"); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttmessage.js b/developedcode/driverlessCarnew/src/api/ldmqttmessage.js new file mode 100644 index 0000000..8dab847 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttmessage.js @@ -0,0 +1,34 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + + + +// 机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function locPose(callback) { + return startMqtt("localization/pose", { qos: 0, retain: 0 }, callback); +} + +// 错误消息 [ /message/error | 发布 | QoS2 | Retain0 ] +export function messageError(callback) { + return startMqtt("message/error", { qos: 2, retain: 0 }, callback); +} +// 警告消息 [ /message/warn | 发布 | QoS2 | Retain0 ] +export function messageWarn(callback) { + return startMqtt("message/warn", { qos: 2, retain: 0 }, callback); +} +// 日志消息 [ /message/info | 发布 | QoS0 | Retain0 ] +export function messageInfo(callback) { + return startMqtt("message/info", { qos: 0, retain: 0 }, callback); +} +// 错误消息 [ /message/error | 发布 | QoS2 | Retain0 ] +export function endMessageError(callback) { + return endMqtt("message/error"); +} +// 警告消息 [ /message/warn | 发布 | QoS2 | Retain0 ] +export function endMessageWarn(callback) { + return endMqtt("message/warn"); +} +// 日志消息 [ /message/info | 发布 | QoS0 | Retain0 ] +export function endMessageInfo(callback) { + return endMqtt("message/info"); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttnavigation.js b/developedcode/driverlessCarnew/src/api/ldmqttnavigation.js new file mode 100644 index 0000000..c235dff --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttnavigation.js @@ -0,0 +1,83 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// // 导航控制- 开启导航 /navigation/stack/action/start | 订阅 | QoS2 | Retain0 +// export function subActionStart(callback) { +// return startMqtt( +// "task/procedure/action/start/reply", +// { qos: 2, retain: 0 }, +// callback +// ); +// } +// 导航控制- 结束导航 /navigation/stack/action/stop | 订阅 | QoS2 | Retain0 +export function actionStop() { + return pubCommonFn( + "navigation/stack/action/stop", + { + args: null, + }, + 2, + 0 + ); +} +// 导航控制- 重启导航 /navigation/stack/action/restart | 订阅 | QoS2 | Retain0 +export function actionRestart(mapName) { + return pubCommonFn( + "navigation/stack/action/restart", + { + args: [mapName], + }, + 2, + 0 + ); +} +// 前往目标点 [ /task/target/action/goto | 订阅 | QoS2 | Retain0 ] +export function actionGoto(callback) { + return startMqtt("task/target/action/goto", { qos: 2, retain: 0 }, callback); +} +// 到达目标点 [ /task/target/action/arrive | 订阅 | QoS2 | Retain1 ] +export function actionArrive(callback) { + return startMqtt("task/target/event/arrive", { qos: 2, retain: 1 }, callback); +} +// 重启导航 [ task/procedure/action/start | 订阅 | QoS2 | Retain0 ] +export function actionStart(map, task) { + return pubCommonFn( + "task/procedure/action/start", + { + args: [ + { + roadmap: map, + task: task, + }, + ], + }, + 2, + 0 + ); +} +// 继续任务 [ /task/procedure/action/resume | 订阅 | QoS2 | Retain0 ] +export function actionResume(callback) { + return startMqtt( + "task/procedure/action/resume", + { qos: 2, retain: 0 }, + callback + ); +} + +// 暂停任务 [ /task/procedure/action/pause | 订阅 | QoS1 | Retain0 ] +export function actionPause(callback) { + return startMqtt( + "task/procedure/action/pause", + { qos: 1, retain: 0 }, + callback + ); +} + +// 取消任务 [ /task/procedure/action/cancel | 订阅 | QoS1 | Retain0 ] +export function actionCancel(callback) { + return startMqtt( + "task/procedure/action/cancel", + { qos: 1, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttplanning.js b/developedcode/driverlessCarnew/src/api/ldmqttplanning.js new file mode 100644 index 0000000..03dfb88 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttplanning.js @@ -0,0 +1,19 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// 路径规划 /planning/service/plan/request | 订阅 | QoS2 | Retain0 +export function actionPlant(callback) { + return startMqtt( + "planning/service/plan/request", + { qos: 2, retain: 0 }, + callback + ); +} +// 遇障重规划 /planning/action/replan | 订阅 | QoS2 | Retain0 +export function actionReplan(callback) { + return startMqtt( + "planning/action/replan", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarnew/src/api/ldmqttsensor.js b/developedcode/driverlessCarnew/src/api/ldmqttsensor.js new file mode 100644 index 0000000..aa38711 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/ldmqttsensor.js @@ -0,0 +1,12 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// 电池信息 sensor/battery | 订阅 | QoS2 | Retain0 +export function sensorBattery(callback) { + return startMqtt("sensor/battery", { qos: 2, retain: 0 }, callback); +} + +// 取消电池信息 sensor/battery | 订阅 | QoS2 | Retain0 +export function endSensorBattery() { + return endMqtt("sensor/battery"); +} diff --git a/developedcode/driverlessCarnew/src/api/map.js b/developedcode/driverlessCarnew/src/api/map.js new file mode 100644 index 0000000..7d42f87 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/map.js @@ -0,0 +1,116 @@ +import _axios from "@/plugins/axios"; +//获取地图列表 +export function getMapList() { + return _axios({ + url: `/v1/map/list`, + method: "get", + }); +} +//获取当前地图 +export function getMapUsing() { + return { + data: { + status: true, + name: "ys202011_hc", + }, + }; +} +//新建地图 +export function createMap(data) { + return _axios({ + url: `/v1/map/create`, + method: "POST", + data, + }); +} +//获取地图缩略图 +// map=地图名 +export function getMapThumbnail(params) { + return { + data: { + status: true, + name: "图片", + }, + }; +} +//地图重命名 +/* { + "map" : "立得厂区地图", + "rename": "厂房室内地图" +} */ +export function postMapRename(data) { + return _axios({ + url: `/v1/map/rename`, + method: "post", + data, + }); +} +//删除地图工程 +/* { + "map" : "立得厂区地图" +} */ +export function delMap(data) { + return _axios({ + url: `/v1/map/delete`, + method: "delete", + data, + }); +} +//地图工程下载前压缩 +/* { + "map" : "立得厂区地图", + "ignore": ['pcap'] +} */ +export function postMapExportCompress(data) { + return _axios({ + url: `/v1/map/export/compress`, + method: "post", + data, + }); +} +//停止创建 +// map=地图名 +export function postRecordStop(data) { + return _axios({ + url: `/v1/map/record/stop`, + method: "POST", + data, + }); +} +//停止构建 +// map=地图名 +export function postBuildStop(data) { + return _axios({ + url: `/v1/map/build/stop`, + method: "POST", + data, + }); +} +//导入地图工程 +// filedata=地图工程压缩包文件内容 +export function postMapImport(data) { + return _axios({ + url: `/v1/map/import`, + method: "post", + headers: { + "Content-Type": "multipart/form-data", + }, + data, + }); +} +//地图工程组件列表 +// map=地图名 +export function getMapComponents(params) { + return _axios({ + url: `/v1/map/components`, + method: "get", + params, + }); +} +//地图工程任意文件获取 +/* 一个地图工程包含许多文件,如路网、地图瓦片、八叉树地图等,可以下载一个地图工程, +查看具体目录文件结构,本接口用于获取指定地图工程目录下的任意文件, +如/v1/map/file/map_test/tilemap/0/0.png,获取map_test地图工程tilemap/0/目录下的0.png文件。 */ +export function getMapFile(mapName) { + return `/v1/tilemap/tile/${mapName}/{z}/{x}/{y}.png`; +} diff --git a/developedcode/driverlessCarnew/src/api/nav.js b/developedcode/driverlessCarnew/src/api/nav.js new file mode 100644 index 0000000..a53d961 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/nav.js @@ -0,0 +1,69 @@ +import _axios from "@/plugins/axios"; +//生成任务 +/* { + "map": "guangchang", + "path": "1", + "coord_type": "local", + "cron": "00 55 15 ? * 1 *", + "coord": [ + [ + 2.33, + -6.9 + ] + ], + "plan": [ + "free" + ], + "repeate": 1 +} */ +export function postV1Path(data) { + return _axios({ + url: `/v1/path`, + method: "POST", + data, + }); +} +//获取任务列表 +/* { + "map": "guangchang", + "path": "1" +} */ +export function getV1Path(params) { + return _axios({ + url: `/v1/path/list`, + method: "GET", + params, + }); +} +//获取当前任务 +/* { + "map": "guangchang", + "path": "1" +} */ +export function getV1(params) { + return _axios({ + url: `/v1/path`, + method: "GET", + params, + }); +} + +//删除任务 +/* { + "map": "guangchang", + "path": "1" +} */ +export function delV1Path(data) { + return _axios({ + url: `/v1/path`, + method: "DELETE", + data, + }); +} +export function udp(data) { + return _axios({ + url: `/udp`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarnew/src/api/player.js b/developedcode/driverlessCarnew/src/api/player.js new file mode 100644 index 0000000..c51bb21 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/player.js @@ -0,0 +1,9 @@ +import _axios from "@/plugins/axios"; +//获取地图列表 +export function getPreviewUrl(params) { + return _axios({ + url: `/ay-video-manage/video/monitor/getRealTimeMonitorVideo`, + method: "post", + params, + }); +} diff --git a/developedcode/driverlessCarnew/src/api/roadmap.js b/developedcode/driverlessCarnew/src/api/roadmap.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/roadmap.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarnew/src/api/robot.js b/developedcode/driverlessCarnew/src/api/robot.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/robot.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarnew/src/api/sensing.js b/developedcode/driverlessCarnew/src/api/sensing.js new file mode 100644 index 0000000..fa76eab --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/sensing.js @@ -0,0 +1,5 @@ +import axios from "axios"; +//获取地图列表 +export function getPointcloud3d() { + return axios.get(`/v1/sensor/pointcloud/3d`, { responseType: "arraybuffer" }); +} diff --git a/developedcode/driverlessCarnew/src/api/tilemap.js b/developedcode/driverlessCarnew/src/api/tilemap.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/tilemap.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarnew/src/api/user.js b/developedcode/driverlessCarnew/src/api/user.js new file mode 100644 index 0000000..c6cf652 --- /dev/null +++ b/developedcode/driverlessCarnew/src/api/user.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; + +//登录 +export function login(data) { + return _axios({ + url: `v1/user/auth`, + method: "POST", + data, + }); +} +//修改用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/v1/user/info`, + method: "post", + data, + }); +} +//获取机器人MQTT信息 +export function getRobotInfo() { + return _axios({ + url: `/v1/robot/mqtt`, + method: "get", + }); +} diff --git a/developedcode/driverlessCarnew/src/assets/img/dir_backward.png b/developedcode/driverlessCarnew/src/assets/img/dir_backward.png new file mode 100644 index 0000000..fd4b924 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/dir_backward.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/dir_forward.png b/developedcode/driverlessCarnew/src/assets/img/dir_forward.png new file mode 100644 index 0000000..6686959 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/dir_forward.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/dir_two_way.png b/developedcode/driverlessCarnew/src/assets/img/dir_two_way.png new file mode 100644 index 0000000..263d6c0 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/dir_two_way.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/login-bg.jpg b/developedcode/driverlessCarnew/src/assets/img/login-bg.jpg new file mode 100644 index 0000000..97ba68e Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/login-bg.jpg differ diff --git a/developedcode/driverlessCarnew/src/assets/img/login-logo.png b/developedcode/driverlessCarnew/src/assets/img/login-logo.png new file mode 100644 index 0000000..da5063d Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/login-logo.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/login-welcom.png b/developedcode/driverlessCarnew/src/assets/img/login-welcom.png new file mode 100644 index 0000000..f490738 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/login-welcom.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/map-building.png b/developedcode/driverlessCarnew/src/assets/img/map-building.png new file mode 100644 index 0000000..363ffb3 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/map-building.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/map-recording.png b/developedcode/driverlessCarnew/src/assets/img/map-recording.png new file mode 100644 index 0000000..adc4d85 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/map-recording.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/map-unavailable.png b/developedcode/driverlessCarnew/src/assets/img/map-unavailable.png new file mode 100644 index 0000000..509fa26 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/map-unavailable.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/normal_point.png b/developedcode/driverlessCarnew/src/assets/img/normal_point.png new file mode 100644 index 0000000..f2756a7 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/normal_point.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/robot.png b/developedcode/driverlessCarnew/src/assets/img/robot.png new file mode 100644 index 0000000..2f16c7f Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/robot.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/target.png b/developedcode/driverlessCarnew/src/assets/img/target.png new file mode 100644 index 0000000..3e1502d Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/target.png differ diff --git a/developedcode/driverlessCarnew/src/assets/img/target_filled.png b/developedcode/driverlessCarnew/src/assets/img/target_filled.png new file mode 100644 index 0000000..c2e8da8 Binary files /dev/null and b/developedcode/driverlessCarnew/src/assets/img/target_filled.png differ diff --git a/developedcode/driverlessCarnew/src/assets/json/mapdetail.json b/developedcode/driverlessCarnew/src/assets/json/mapdetail.json new file mode 100644 index 0000000..f915502 --- /dev/null +++ b/developedcode/driverlessCarnew/src/assets/json/mapdetail.json @@ -0,0 +1,13 @@ +{ + "status": true, + "min_zoom": 1, + "projection": { + "extent": [ + -76.3218753, + -128.075505, + 333.27812470000003, + 281.524495 + ] + }, + "layer_cnt": 5 +} \ No newline at end of file diff --git a/developedcode/driverlessCarnew/src/assets/json/mapgeo.json b/developedcode/driverlessCarnew/src/assets/json/mapgeo.json new file mode 100644 index 0000000..52eaf4e --- /dev/null +++ b/developedcode/driverlessCarnew/src/assets/json/mapgeo.json @@ -0,0 +1,11357 @@ +{ + "status": true, + "type": "FeatureCollection", + "features": [ + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.33, + 109.2, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_209" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 114.74, + 120.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_210" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 123.98652741411871, + 39.621348055594005 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_65", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 116.89, + 38.99, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_190" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 128.22, + 40.64 + ], + [ + 163.39, + 40.36 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_236", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_202", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 128.22, + 40.64, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_206" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163.39, + 40.36, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_202" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 128.22, + 40.64 + ], + [ + 121.92, + 40.99 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_20", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 122.33, + 109.2 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_237", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_209" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.07, + 51.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_207" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.13, + 32.63, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_189" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 164.67, + 38.38 + ], + [ + 128.02, + 38.59 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_272", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_274", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_275" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 121.62737243638458, + 39.30414138493709 + ], + [ + 122.13, + 32.63 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_14", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_189", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 164.67, + 38.38 + ], + [ + 164.67, + 38.38 + ], + [ + 169.3094360602535, + 38.252569042998665 + ], + [ + 169.3, + 32.79 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_52", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_237", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_275" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 169.3, + 32.79, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_237" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164.67, + 38.38, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_275" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 128.02, + 38.59, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_274" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 128.02, + 38.59 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_278", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_274", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 74.74, + 114.74 + ], + [ + 74.36, + 43.76 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_233", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_195", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_197" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.74, + 114.74, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_197" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 78.12, + 120.27 + ], + [ + 74.12390249308922, + 121.12522557182305 + ], + [ + 74.74, + 114.74 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_67", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_197", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_198" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 78.12, + 120.27, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_198" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 78.12, + 120.27 + ], + [ + 114.74, + 120.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_238", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_210", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_198" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 68.75, + 119.94 + ], + [ + 74.8132454527776, + 119.94006080401383 + ], + [ + 74.74, + 114.74 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_42", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_197", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_261" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 68.75, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_261" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 114.74, + 120.78 + ], + [ + 122.27, + 120.28 + ], + [ + 122.33, + 109.2 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_21", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_209", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_210" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 79.05, + 38.77 + ], + [ + 74.41829350632814, + 38.335181813034936 + ], + [ + 74.36, + 43.76 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_62", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_195", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_192" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.36, + 43.76 + ], + [ + 74.99125979522887, + 38.03407766099702 + ], + [ + 66.75, + 38.85 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_64", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_280", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_195" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 79.05, + 38.77 + ], + [ + 116.89, + 38.99 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_229", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_190", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_192" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 79.05, + 38.77, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_192" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 66.75, + 38.85 + ], + [ + 42.55, + 39.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_282", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_285", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 42.55, + 39.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_285" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.36, + 43.76, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_195" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 66.75, + 38.85, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0.058, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_145" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 36.15, + 12.33 + ], + [ + 36.15, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_154", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_145", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_101" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_101" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.25, + 33.42 + ], + [ + 72.768378980487, + 39.45619861091159 + ], + [ + 79.05, + 38.77 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_63", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_192", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_191" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 38.91849277694247, + 39.15730761911717 + ], + [ + 42.55, + 39.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_59", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_285", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 66.75, + 38.85 + ], + [ + 75.44783316762961, + 39.271754774448404 + ], + [ + 74.25, + 33.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_55", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_191", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.25, + 33.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_191" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 39.89, + 34.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_254" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_100" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.1, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_260" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.1, + 119.94 + ], + [ + 68.75, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_265", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_261", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_260" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_96" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 39.89, + 39.21 + ], + [ + 34.84654755248199, + 39.21 + ], + [ + 33.97, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_54", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_279", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.97, + 39.21, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_279" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_105" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_98" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + 9.25 + ], + [ + 32.34, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_137", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_146", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_149" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + 12.33 + ], + [ + 34.88, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_153", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_147", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_102" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + 12.33 + ], + [ + 29.8, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_149", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_144", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_96" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + 12.32, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_104" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_102" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_149" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + 9.25 + ], + [ + 33.61, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_138", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_148", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_146" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_103" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_147" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_142" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + 12.33 + ], + [ + 33.61, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_152", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_148", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_105" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + 12.33 + ], + [ + 31.07, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_150", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_149", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_103" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_144" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + 9.25 + ], + [ + 36.15, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_140", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_145", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_147" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + 9.25 + ], + [ + 31.07, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_136", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_149", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_144" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + 9.25 + ], + [ + 29.8, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_135", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_144", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_143" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 74.25, + 33.42 + ], + [ + 74.51, + -28.83 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_231", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_194", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_191" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 168.47, + -28.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_233" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 169.3, + 32.79 + ], + [ + 168.47, + -28.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_252", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_233", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_237" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 121.31, + -27.49, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_188" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 122.13, + 32.63 + ], + [ + 121.31, + -27.49 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_228", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_188", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_189" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 67.76, + -33.25 + ], + [ + 44.56, + -33.05 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_281", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_283", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_282" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 163.24, + -33.12 + ], + [ + 168.43, + -33.17 + ], + [ + 168.47, + -28.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_28", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_233", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_183" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163.24, + -33.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_183" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 125.66, + -32.42 + ], + [ + 163.24, + -33.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_227", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_183", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_187" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 44.56, + -33.05, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 3.091, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_283" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 121.31, + -27.49 + ], + [ + 121.79827056936657, + -32.553832057902824 + ], + [ + 125.66, + -32.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_13", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_187", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_188" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 125.66, + -32.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_187" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.51, + -28.83, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_194" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 121.31, + -27.49 + ], + [ + 122.33934444074058, + -34.26533750433006 + ], + [ + 114.8, + -33.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_61", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_288", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_188" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.51, + -28.83 + ], + [ + 75.51014973047997, + -34.231841828585786 + ], + [ + 67.76, + -33.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_56", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_282", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_194" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 114.8, + -33.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.009, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_288" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.51, + -28.83 + ], + [ + 74.7277778507612, + -33.41796122948074 + ], + [ + 79.55, + -33.31 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_60", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_287", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_194" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 79.55, + -33.31, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.029, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_287" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 67.76, + -33.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -3.124, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_282" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 79.55, + -33.31 + ], + [ + 114.8, + -33.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_284", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_288", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_287" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + -7.42 + ], + [ + 34.88, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_167", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_134", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_133" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_133" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_135" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + -7.42 + ], + [ + 33.61, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_166", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_133", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_132" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_146" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_148" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + 12.32 + ], + [ + 32.34, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_151", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_146", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_104" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + 9.25 + ], + [ + 34.88, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_139", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_147", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_148" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_23" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_25" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_33" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 36.15, + -7.42 + ], + [ + 36.15, + -10.28 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_169", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_25", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_135" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_134" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + -10.28 + ], + [ + 33.61, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_171", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_133", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_33" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_132" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + -7.42 + ], + [ + 36.15, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_168", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_135", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_134" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 44.56, + -33.05 + ], + [ + 37.85430361325207, + -31.78547308012859 + ], + [ + 39.49, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_57", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_262", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_283" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.49, + -21.82 + ], + [ + 39.446528948723135, + -27.044624691423248 + ], + [ + 34.44, + -27.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_50", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_272", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_262" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 39.49, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_267", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_262", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + -10.28 + ], + [ + 32.34, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_172", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_132", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_32" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.44, + -27.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_272" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 39.49, + -21.82, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_262" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_32" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + -10.28 + ], + [ + 34.88, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_170", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_134", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_23" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.65, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_27" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.76, + 0.12 + ], + [ + 29.65, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_82", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_27", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_65" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_72" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.65, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_29" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + 9.25 + ], + [ + 28.53, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_148", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_100", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_143" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_143" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_73" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.76, + 1.81 + ], + [ + 29.65, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_78", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_29", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_72" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_129" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + -7.42 + ], + [ + 29.8, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_163", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_130", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_129" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_131" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_130" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + -7.42 + ], + [ + 31.07, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_164", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_131", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_130" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + -7.42 + ], + [ + 32.34, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_165", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_132", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_131" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_67" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_65" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + -10.28 + ], + [ + 28.53, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_175", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_129", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_35" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_31" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + -10.28 + ], + [ + 27.26, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_176", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_128", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_45" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + -10.28 + ], + [ + 31.07, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_173", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_131", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_31" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_45" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_40" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_35" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + -10.28 + ], + [ + 29.8, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_174", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_130", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_40" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3.19, + 115.43, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_238" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 6.65, + 119.85 + ], + [ + 3.19, + 119.8 + ], + [ + 3.19, + 115.43 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_31", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_238", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_225" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 6.65, + 119.85, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_225" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.65, + 119.85 + ], + [ + 20.9, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_247", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_216", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_225" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.9, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_216" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 26.9, + 114.31 + ], + [ + 26.76, + 50.63 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_244", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_212", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_218" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 26.76, + 50.63, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_212" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.19, + 115.43 + ], + [ + 3.16, + 92.46 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_256", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_240", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_238" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3.16, + 92.46, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_240" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.99, + 57.15, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_17" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 26.9, + 114.31 + ], + [ + 26.93039704949427, + 119.85714252816021 + ], + [ + 33.1, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_41", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_260", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_218" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 26.9, + 114.31, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_218" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 20.9, + 119.94 + ], + [ + 27.433144483648924, + 120.124457207128 + ], + [ + 26.9, + 114.31 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_68", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_218", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_216" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 11.46, + 31.84 + ], + [ + 11.38, + 38.99 + ], + [ + 18.75, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_53", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_277", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_162" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.75, + 39.21 + ], + [ + 33.97, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_275", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_279", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_277" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 26.76, + 50.63 + ], + [ + 28.30388596930195, + 39.90788123287311 + ], + [ + 18.75, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_66", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_277", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_212" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 11.46, + 31.84, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_162" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 2.97, + 43.9 + ], + [ + 2.97, + 39.03 + ], + [ + 7.28, + 39.03 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_36", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_250", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_244" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 7.28, + 39.03, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_250" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.75, + 39.21, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_277" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.99, + 57.15 + ], + [ + 2.97, + 43.9 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_257", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_244", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_17" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.79, + 89.91 + ], + [ + -1.85, + 87.13 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_5", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_7", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_8" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.79, + 89.91, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.554, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_8" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.96, + 89.84, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.035, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_9" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.96, + 89.84 + ], + [ + -1.79, + 89.91 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_4", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_8", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_9" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -5.27, + 90.47, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_243" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 3.16, + 92.46 + ], + [ + 3.16, + 90.47 + ], + [ + 0.27, + 90.53 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_32", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_241", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_240" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 0.27, + 90.53, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_241" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -5.27, + 90.47 + ], + [ + 0.27, + 90.53 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_255", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_241", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_243" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.43, + 75.19 + ], + [ + -9.4, + 73.73 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_2", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_3", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_2" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.43, + 75.19, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.047, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_2" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.85, + 79.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.535, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_6" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.85, + 87.13 + ], + [ + -1.85, + 79.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_6", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_6", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_7" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -3.64, + 74.72, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0.638, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_5" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -3.59, + 82.47, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_160" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -3.59, + 82.47 + ], + [ + -1.85, + 87.13 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_199", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_7", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_160" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.85, + 87.13, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.553, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_7" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.85, + 79.25 + ], + [ + -1.82, + 70.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_271", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_273", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_6" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.97, + 43.9, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_244" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -6.93, + 73.69, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.024, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_4" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + -1.85, + 79.25 + ], + [ + -1.6137476620900153, + 76.24595335465719 + ], + [ + -3.4489290751355384, + 73.63419016812544 + ], + [ + -6.93, + 73.69 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_3", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_4", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_6" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.4, + 73.73 + ], + [ + -6.93, + 73.69 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_3", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_4", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_3" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.96, + 89.84 + ], + [ + 2.99, + 57.15 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_11", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_17", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_9" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.82, + 70.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_273" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.4, + 73.73, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -1.55, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_3" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.74, + 87.92 + ], + [ + -12.75, + 82.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_200", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_157", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_156" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.75, + 82.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_157" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.74, + 87.92, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_156" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.74, + 87.92 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_192", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_156" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.47, + 88.02, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_152" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -1.79, + 89.91 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_195", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_8", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.26, + 88.07, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_153" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_188", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.75, + 82.44 + ], + [ + -12.76, + 76.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_201", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_155", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_157" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.24, + 82.42 + ], + [ + -9.45, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_197", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_159", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.24, + 82.42 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_203", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.75, + 82.44 + ], + [ + -11.24, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_196", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_158", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_157" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -9.45, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_204", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_159", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.45, + 82.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_159" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.45, + 82.42 + ], + [ + -3.59, + 82.47 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_198", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_160", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_159" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.24, + 82.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.45, + 82.42 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_205", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_159" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_193", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.92, + 75.29 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 109, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_1", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_1" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -11.24, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_202", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_158", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.92, + 75.29, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.045, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_1" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -12.76, + 76.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_190", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_155", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.21, + 76.14, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.76, + 76.19, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_155" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + 12.33 + ], + [ + 24.72, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_145", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_140", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_86" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + 9.25 + ], + [ + 27.26, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_133", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_142", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_141" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + 9.25 + ], + [ + 28.53, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_134", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_143", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_142" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_94" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_86" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_91" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_74" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_93" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + 9.25 + ], + [ + 25.99, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_146", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_94", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_141" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_141" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + 12.33 + ], + [ + 27.26, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_147", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_142", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_98" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_140" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + 9.25 + ], + [ + 25.99, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_132", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_141", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_140" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 3.11 + ], + [ + 27.76, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_88", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_73", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_70" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_66" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 1.81 + ], + [ + 27.76, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_77", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_72", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_71" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_71" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_70" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 3.11 + ], + [ + 25.94, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_87", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_70", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_92" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_92" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 4.41 + ], + [ + 25.94, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_90", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_74", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_91" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_137" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + 9.25 + ], + [ + 22.18, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_129", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_138", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_137" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + 9.25 + ], + [ + 22.18, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_143", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_95", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_138" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + 12.33 + ], + [ + 20.91, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_142", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_137", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_85" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_138" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_85" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_95" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_97" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 5.71 + ], + [ + 23.96, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_91", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_93", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_88" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_88" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_139" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 7.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_81" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + 9.25 + ], + [ + 24.72, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_131", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_140", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_139" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + 9.25 + ], + [ + 23.45, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_130", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_139", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_138" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + 9.25 + ], + [ + 20.91, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_128", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_137", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_136" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + 12.33 + ], + [ + 23.45, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_144", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_139", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_97" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 1.81 + ], + [ + 23.96, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_75", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_90", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_77" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_78" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 1.81 + ], + [ + 25.94, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_76", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_71", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_90" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_90" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_77" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 3.11 + ], + [ + 23.96, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_86", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_92", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_78" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 4.41 + ], + [ + 23.96, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_89", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_91", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_76" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_76" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 9.25 + ], + [ + 18.37, + 7.01 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_109", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_109", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_136" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + 12.33 + ], + [ + 19.64, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_127", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_136", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_99" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 12.33 + ], + [ + 18.37, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_108", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_119", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_107" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_107" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_99" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 9.25 + ], + [ + 19.64, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_141", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_136", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 4.41 + ], + [ + 21.97, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_103", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_76", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 7.01 + ], + [ + 18.37, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_110", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_110", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_109" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_110" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 5.71 + ], + [ + 18.37, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_111", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_111", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_110" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 5.71 + ], + [ + 21.97, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_107", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_88", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_110" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 7.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_109" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 7.01 + ], + [ + 21.97, + 7.01 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_105", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_81", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_109" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_112" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_114" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 1.81 + ], + [ + 21.97, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_101", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_77", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_113" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_113" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 0.12 + ], + [ + 21.97, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_100", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_82", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_114" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 3.11 + ], + [ + 18.37, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_113", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_113", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_112" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 4.41 + ], + [ + 18.37, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_112", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_112", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 3.11 + ], + [ + 21.97, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_102", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_78", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_112" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + -1.18 + ], + [ + 25.94, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_84", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_68", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_79" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_68" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 0.12 + ], + [ + 25.94, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_80", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_66", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_106" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_106" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 0.12 + ], + [ + 27.76, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_81", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_65", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_66" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + -7.42 + ], + [ + 27.26, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_161", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_128", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_127" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_126" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_89" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_69" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_80" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_79" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + -2.48 + ], + [ + 25.94, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_93", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_69", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_80" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + -1.18 + ], + [ + 27.76, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_85", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_67", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_68" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_128" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_37" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_48" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + -10.28 + ], + [ + 25.99, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_177", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_127", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_48" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_127" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + -10.28 + ], + [ + 24.72, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_178", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_126", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_37" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + -7.42 + ], + [ + 25.99, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_160", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_127", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_126" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + -7.42 + ], + [ + 28.53, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_162", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_129", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_128" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_84" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -3.78 + ], + [ + 23.96, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_94", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_89", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_84" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_87" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -2.48 + ], + [ + 23.96, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_92", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_80", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_87" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_83" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 0.12 + ], + [ + 23.96, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_79", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_106", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_82" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -1.18 + ], + [ + 23.96, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_83", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_79", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_83" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_82" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + -7.42 + ], + [ + 22.18, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_157", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_124", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_123" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + -7.42 + ], + [ + 20.91, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_156", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_123", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_122" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_125" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_124" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + -7.42 + ], + [ + 23.45, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_158", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_125", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_124" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_123" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + -7.42 + ], + [ + 24.72, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_159", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_126", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_125" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -5.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_75" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + -10.28 + ], + [ + 19.64, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_182", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_122", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_59" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + -10.28 + ], + [ + 20.91, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_181", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_123", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_53" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_39" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_53" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_59" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + -10.28 + ], + [ + 22.18, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_180", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_124", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_39" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_51" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + -10.28 + ], + [ + 23.45, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_179", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_125", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_51" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -2.48 + ], + [ + 21.97, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_98", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_87", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 0.12 + ], + [ + 18.37, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_115", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_115", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_114" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -1.18 + ], + [ + 21.97, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_99", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_83", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_115" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 1.81 + ], + [ + 18.37, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_114", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_114", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_113" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -1.18 + ], + [ + 18.37, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_116", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_116", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_115" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_115" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_118" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_122" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -7.42 + ], + [ + 19.64, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_155", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_122", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_118" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -3.78 + ], + [ + 21.97, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_97", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_84", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -5.08 + ], + [ + 21.97, + -5.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_106", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_75", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_117" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -5.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_117" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -3.78 + ], + [ + 18.37, + -5.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_118", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_117", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -2.48 + ], + [ + 18.37, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_117", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_108", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 16.63, + -27 + ], + [ + 34.44, + -27.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_270", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_272", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_271" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_61" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.46, + 31.84 + ], + [ + 11.42, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_268", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_266", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_162" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 11.42, + -21.82 + ], + [ + 11.635992797409926, + -27.016661067827307 + ], + [ + 16.63, + -27 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_51", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_271", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_266" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 16.63, + -27, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_271" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 11.42, + -21.82, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_266" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -7.42 + ], + [ + 18.37, + -10.28 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_120", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_61", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_118" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -5.08 + ], + [ + 18.37, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_119", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_118", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_117" + } + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -62.92, + -83.33 + ], + [ + -62.92, + 170.78 + ], + [ + 219.3, + 170.78 + ], + [ + 219.3, + -83.33 + ], + [ + -62.92, + -83.33 + ] + ] + ] + }, + "type": "Feature", + "properties": { + "color": "#cccccc", + "type": 0, + "id": "s_auto", + "name": "auto", + "transparent": 50 + } + } + ] +} \ No newline at end of file diff --git a/developedcode/driverlessCarnew/src/main.js b/developedcode/driverlessCarnew/src/main.js new file mode 100644 index 0000000..add5306 --- /dev/null +++ b/developedcode/driverlessCarnew/src/main.js @@ -0,0 +1,30 @@ +import App from "./App.vue"; +import { createApp } from "vue"; +// 引入acro实例 +import { registerPlugins } from "@/plugins/vuetify"; +//全局使用message +import { ElMessage } from "element-plus"; +// 引入pinia 实例 +import pinia from "@/store/index.js"; +// 引入路由实例 +import router from "@/router/index.js"; +// 剪切板 +import { VueClipboard } from "@soerenmartius/vue3-clipboard"; +//全局引入lodash +import _ from "lodash"; +//全局挂在axios +import axios from "@/plugins/axios"; +import dayjs from "dayjs"; +import "@/utils/permission"; +const app = createApp(App); +app.config.globalProperties.$_ = _; //挂载到app实例上 +app.config.globalProperties.$axios = axios; //挂载到app实例上 +app.config.globalProperties.$dayjs = dayjs; //挂载到app实例上 +app.config.globalProperties.$message = ElMessage; //挂载到app实例上 + +registerPlugins(app); +app + .use(pinia) //中央仓库pinia + .use(router) //路由 + .use(VueClipboard); //剪切板 +app.mount("#app"); diff --git a/developedcode/driverlessCarnew/src/mixin/totalmixin.js b/developedcode/driverlessCarnew/src/mixin/totalmixin.js new file mode 100644 index 0000000..e54122d --- /dev/null +++ b/developedcode/driverlessCarnew/src/mixin/totalmixin.js @@ -0,0 +1,69 @@ +import { + userStore, + snackbarStore, + breadcrumbsStore, + dialogFullscreenStore, +} from "@/store"; +export default { + data() { + return { + userObj: userStore(), + snackbarsObj: snackbarStore(), + breadcrumbsObj: breadcrumbsStore(), + dialogFullscreenObj: dialogFullscreenStore(), + }; + }, + methods: { + // snackBar + openSnackbar(params) { + return this.snackbarsObj.openSnackbar(params); + }, + closeSnackbar(index) { + return this.snackbarsObj.closeSnackbar(index); + }, + openSuccessSnackbar(message) { + return this.snackbarsObj.openSuccessSnackbar(message); + }, + openFailureSnackbar(message) { + return this.snackbarsObj.openFailureSnackbar(message); + }, + openInfoSnackbar(message) { + return this.snackbarsObj.openInfoSnackbar(message); + }, + cleanSnackbar() { + return this.snackbarsObj.cleanSnackbar(); + }, + // breadcrumbs + editBreadcrumbs(breadcrumbsList) { + return this.breadcrumbsObj.editBreadcrumbs(breadcrumbsList); + }, + // breadcrumbs + setDialogFullscreen(bol = false) { + return this.dialogFullscreenObj.setDialogFullscreen(bol); + }, + // breadcrumbs + setRobot(robot) { + return this.userObj.setRobot(robot); + }, + setBattery(battery) { + return this.userObj.setBattery(battery); + }, + }, + computed: { + snackbars() { + return this.snackbarsObj.snackbars; + }, + breadcrumbsList() { + return this.breadcrumbsObj.breadcrumbsList; + }, + dialogFullscreen() { + return this.dialogFullscreenObj.dialogFullscreen; + }, + robotObj() { + return this.userObj.robot; + }, + batteryObj() { + return this.userObj.battery; + }, + }, +}; diff --git a/developedcode/driverlessCarnew/src/plugins/axios.js b/developedcode/driverlessCarnew/src/plugins/axios.js new file mode 100644 index 0000000..a008707 --- /dev/null +++ b/developedcode/driverlessCarnew/src/plugins/axios.js @@ -0,0 +1,47 @@ +import axios from "axios"; +import qs from "qs"; +import { ElMessage } from "element-plus"; +let config = { + baseURL: "", + timeout: 600 * 1000, + withCredentials: true, // Check cross-site Access-Control + /* `paramsSerializer` 是一个负责 `params` 序列化的函数 + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }) + // 'a[0]=b&a[1]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }) + // 'a[]=b&a[]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }) + // 'a=b&a=c' + */ + paramsSerializer: (params) => { + return qs.stringify(params, { arrayFormat: "indices" }); + }, +}; + +const _axios = axios.create(config); + +_axios.interceptors.request.use( + (config) => { + return config; + }, + (error) => { + return Promise.reject(error); + } +); +_axios.interceptors.response.use( + (response) => { + if (response.status === 200) { + if (!response.data.status) { + ElMessage.error(response.data.msg); + } + return Promise.resolve(response.data); + } else { + ElMessage.error(response.msg); + return Promise.reject(response.data); + } + }, + (error) => { + ElMessage.error(error); + } +); +export default _axios; diff --git a/developedcode/driverlessCarnew/src/plugins/mqtt.js b/developedcode/driverlessCarnew/src/plugins/mqtt.js new file mode 100644 index 0000000..d8396ba --- /dev/null +++ b/developedcode/driverlessCarnew/src/plugins/mqtt.js @@ -0,0 +1,199 @@ +import * as mqtt from "mqtt/dist/mqtt.min"; +import { ulid } from "ulid"; +let robot = { + did: "ede2a4d227b81d36", + pid: "robot4inspection", +}; +const mqttSlamPID = "slam_server"; +let client = null; +let PublicMqtt = null; + +class MQTT { + // url = `ws://s3.s100.vip:8083/mqtt`; // mqtt地址 + url = `ws://192.168.1.141:8083/mqtt`; // mqtt地址 + //初始化mqtt + init() { + let options = { + clean: true, + clientId: ulid(), // 客户端分类唯一 + username: "map-editor", + password: "leador", + connectTimeout: 4000, // 超时时间 + }; + client = mqtt.connect(this.url, options); + client.on("connect", () => {}); + client.on("error", (error) => { + console.log(this.url + "异常中断"); + }); + client.on("reconnect", (error) => { + console.log(this.url + "重新连接"); + }); + } + //取消订阅 + unsubscribes(topic) { + if (topic.indexOf("slam/") === 0) { + client.unsubscribe(`/${mqttSlamPID}/${robot.did}/${topic}`, (error) => { + if (!error) { + console.log(`/${mqttSlamPID}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${mqttSlamPID}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } else if (topic.indexOf("other/") === 0) { + client.unsubscribe(`/${topic}`, (error) => { + if (!error) { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } else { + client.unsubscribe(`/${robot.pid}/${robot.did}/${topic}`, (error) => { + if (!error) { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } + } + + //连接 + link(topic, params) { + if (topic.indexOf("slam/") === 0) { + client.subscribe( + `/${mqttSlamPID}/${robot.did}/${topic}`, + params, + (error) => { + if (!error) { + console.log( + `/${mqttSlamPID}/${robot.did}/${topic}` + "订阅成功", + JSON.stringify(params) + ); + } else { + console.log( + `/${mqttSlamPID}/${robot.did}/${topic}` + "订阅失败", + JSON.stringify(params) + ); + } + } + ); + } else if (topic.indexOf("other/") === 0) { + client.subscribe(`/${topic}`, params, (error) => { + if (!error) { + console.log(`/${topic}` + "订阅成功", JSON.stringify(params)); + } else { + console.log(`/${topic}` + "订阅失败", JSON.stringify(params)); + } + }); + } else { + client.subscribe( + `/${robot.pid}/${robot.did}/${topic}`, + params, + (error) => { + if (!error) { + console.log( + `/${robot.pid}/${robot.did}/${topic}` + "订阅成功", + JSON.stringify(params) + ); + } else { + console.log( + `/${robot.pid}/${robot.did}/${topic}` + "订阅失败", + JSON.stringify(params) + ); + } + } + ); + } + } + //发布函数 + pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback = () => {}, + failCallback = (e) => {} + ) { + if (client === null) return; + var timeNow = new Date(); + jobj.timestamp = timeNow.getTime(); + if (topic.indexOf("slam/") === 0) { + client.publish( + `/${mqttSlamPID}/${robot.did}/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } else if (topic.indexOf("other/") === 0) { + client.publish( + `/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } else { + client.publish( + `/${robot.pid}/${robot.did}/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } + } + + //收到的消息 + get(callback) { + client.on("message", callback); + } + //结束链接 + over() { + client.end(); + } +} + +export default function useMqtt() { + let startMqtt = (val, params, callback) => { + //设置订阅地址 + if (!PublicMqtt) { + PublicMqtt = new MQTT(); + //初始化mqtt + PublicMqtt.init(); + //链接mqtt + } + PublicMqtt.link(val, params); + getMessage(callback); + }; + let pubCommonFn = ( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ) => { + console.log("发布", topic); + //发布mqtt + PublicMqtt.pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ); + }; + let endMqtt = (val) => { + //取消链接mqtt + PublicMqtt.unsubscribes(val); + }; + let getMessage = (callback) => { + PublicMqtt?.get(callback); + }; + + return { + startMqtt, + endMqtt, + pubCommonFn, + }; +} diff --git a/developedcode/driverlessCarnew/src/plugins/vuetify.js b/developedcode/driverlessCarnew/src/plugins/vuetify.js new file mode 100644 index 0000000..fddda4f --- /dev/null +++ b/developedcode/driverlessCarnew/src/plugins/vuetify.js @@ -0,0 +1,38 @@ +/** + * plugins/vuetify.js + * + * Framework documentation: https://vuetifyjs.com` + */ + +// Styles +import "@mdi/font/css/materialdesignicons.css"; +import "vuetify/styles"; +import { loadFonts } from "./webfontloader"; +import zhHans from "vuetify/lib/locale/zh-Hans.mjs"; +// Composables +import { createVuetify } from "vuetify"; + +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +const vuetify = createVuetify({ + theme: { + themes: { + light: { + colors: { + primary: "#1867C0", + secondary: "#5CBBF6", + }, + }, + }, + }, + ssr: true, + lang: { + locales: { + zhHans, + }, + current: "zhHans", + }, +}); +export function registerPlugins(app) { + loadFonts(); + app.use(vuetify); +} diff --git a/developedcode/driverlessCarnew/src/plugins/webfontloader.js b/developedcode/driverlessCarnew/src/plugins/webfontloader.js new file mode 100644 index 0000000..92afa8a --- /dev/null +++ b/developedcode/driverlessCarnew/src/plugins/webfontloader.js @@ -0,0 +1,15 @@ +/** + * plugins/webfontloader.js + * + * webfontloader documentation: https://github.com/typekit/webfontloader + */ + + export async function loadFonts () { + const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') + + webFontLoader.load({ + google: { + families: ['Roboto:100,300,400,500,700,900&display=swap'], + }, + }) +} diff --git a/developedcode/driverlessCarnew/src/router/index.js b/developedcode/driverlessCarnew/src/router/index.js new file mode 100644 index 0000000..8c0ec23 --- /dev/null +++ b/developedcode/driverlessCarnew/src/router/index.js @@ -0,0 +1,64 @@ +import { createRouter, createWebHistory } from "vue-router"; +import { close, start } from "@/utils/nprogress"; +import HomeView from "@/views/Home.vue"; +const routes = [ + { + path: "/", + name: "home", + component: HomeView, + redirect: "/driverlessCars", + children: [ + { + path: "driverlessCars", + name: "driverlessCars", + meta: { + zhtitle: "首页", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/index.vue"), + }, + { + path: "navigation", + name: "navigation", + meta: { + zhtitle: "导航", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/navigation.vue"), + }, + { + path: "editor", + name: "editor", + meta: { + zhtitle: "编辑", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/editor.vue"), + }, + ], + }, + + { name: "重定向", path: "/:catchAll(.*)", redirect: "/" }, + { + path: "/login", + name: "login", + component: () => import("../views/login.vue"), + }, +]; + +// 创建路由实例 +const router = createRouter({ + history: createWebHistory(), + routes, //路由表 +}); +let witheRouter = ["login"]; +router.beforeEach((pre, next) => { + if (witheRouter.indexOf(pre.name) !== -1) { + } + start(); +}); + +router.afterEach(() => { + close(); +}); +export default router; diff --git a/developedcode/driverlessCarnew/src/store/breadcrumbs.js b/developedcode/driverlessCarnew/src/store/breadcrumbs.js new file mode 100644 index 0000000..17e7126 --- /dev/null +++ b/developedcode/driverlessCarnew/src/store/breadcrumbs.js @@ -0,0 +1,35 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const breadcrumbsStore = defineStore("breadcrumbs", { + // other options... + state() { + return { + breadcrumbsList: [ + { + title: "首页", + href: "/driverlessCars", + id: Date.now(), + }, + ], + }; + }, + actions: { + getBreadcrumbs() { + return this.breadcrumbsList; + }, + editBreadcrumbs(breadcrumbsList) { + this.breadcrumbsList = []; + for (let i = 0; i < breadcrumbsList.length; i++) { + let ele = breadcrumbsList[i]; + this.breadcrumbsList.push({ + ...ele, + id: Date.now() + 1000 * i, + }); + } + }, + }, + persist: { + enabled: true, // true 表示开启持久化保存 + }, +}); +export default breadcrumbsStore; diff --git a/developedcode/driverlessCarnew/src/store/fullscreen.js b/developedcode/driverlessCarnew/src/store/fullscreen.js new file mode 100644 index 0000000..9d919b6 --- /dev/null +++ b/developedcode/driverlessCarnew/src/store/fullscreen.js @@ -0,0 +1,19 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const dialogFullscreenStore = defineStore("dialogFullscreen", { + // other options... + state() { + return { + dialogFullscreen: false, + }; + }, + actions: { + getDialogFullscreen() { + return this.dialogFullscreen; + }, + setDialogFullscreen(bol) { + this.dialogFullscreen = bol; + }, + }, +}); +export default dialogFullscreenStore; diff --git a/developedcode/driverlessCarnew/src/store/index.js b/developedcode/driverlessCarnew/src/store/index.js new file mode 100644 index 0000000..c1bad36 --- /dev/null +++ b/developedcode/driverlessCarnew/src/store/index.js @@ -0,0 +1,10 @@ +import { createPinia } from "pinia"; +import piniaPersist from "pinia-plugin-persist"; +import userStore from "./user"; +import snackbarStore from "./snackbar"; +import breadcrumbsStore from "./breadcrumbs"; +import dialogFullscreenStore from "./fullscreen"; +const pinia = createPinia(); +pinia.use(piniaPersist); +export { userStore, snackbarStore, breadcrumbsStore, dialogFullscreenStore }; +export default pinia; diff --git a/developedcode/driverlessCarnew/src/store/snackbar.js b/developedcode/driverlessCarnew/src/store/snackbar.js new file mode 100644 index 0000000..a4b6efc --- /dev/null +++ b/developedcode/driverlessCarnew/src/store/snackbar.js @@ -0,0 +1,60 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const snackbarStore = defineStore("snackbar", { + // other options... + state() { + return { + snackbars: [], + }; + }, + actions: { + openSnackbar(params) { + let { snackbar_message, color, timeout = -1 } = params; + this.snackbars.push({ + snackbar: true, + snackbar_message: snackbar_message, + snackbar_color: color, + location: "top", + timeout: timeout, + id: Date.now(), + }); + }, + closeSnackbar(index) { + this.snackbars.splice(index, 1); + }, + openSuccessSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "success", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + openFailureSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "error", + location: "top", + timeout: -1, //不自动关闭 + id: Date.now(), + }); + }, + openInfoSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "warning", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + cleanSnackbar() { + this.snackbars = this.snackbars.filter((item) => item.snackbar); + }, + }, +}); +export default snackbarStore; diff --git a/developedcode/driverlessCarnew/src/store/user.js b/developedcode/driverlessCarnew/src/store/user.js new file mode 100644 index 0000000..319995e --- /dev/null +++ b/developedcode/driverlessCarnew/src/store/user.js @@ -0,0 +1,51 @@ +import { defineStore } from "pinia"; +import { login as userLogin, getRobotInfo } from "@/api/user"; +import { setToken, removeToken } from "@/utils/auth"; +const userStore = defineStore("user", { + // other options... + state() { + return { + name: "", + robot: { + did: "ede2a4d227b81d36", + pid: "robot4inspection", + }, + battery: {}, + }; + }, + getters: { + userInfo(state) { + return { ...state }; + }, + }, + actions: { + // Login + async login(loginForm) { + try { + setToken(true); + let loginRes = await userLogin(loginForm); + if (loginRes.status) { + setToken(loginRes.token); + let robotRes = await getRobotInfo(); + this.robot = { + ...robotRes, + }; + } + return loginRes; + } catch (err) { + removeToken(); + throw err; + } + }, + async setRobot(robot) { + this.robot = robot; + }, + async setBattery(battery) { + this.battery = battery; + }, + }, + persist: { + enabled: true, // true 表示开启持久化保存 + }, +}); +export default userStore; diff --git a/developedcode/driverlessCarnew/src/utils/auth.js b/developedcode/driverlessCarnew/src/utils/auth.js new file mode 100644 index 0000000..5c68cf8 --- /dev/null +++ b/developedcode/driverlessCarnew/src/utils/auth.js @@ -0,0 +1,19 @@ +const TokenKey = `wurenche-token`; + +const isLogin = () => { + return !!localStorage.getItem(TokenKey); +}; + +const getToken = () => { + return localStorage.getItem(TokenKey); +}; + +const setToken = (token) => { + localStorage.setItem(TokenKey, token); +}; + +const removeToken = () => { + localStorage.removeItem(TokenKey); +}; + +export { isLogin, getToken, setToken, removeToken }; diff --git a/developedcode/driverlessCarnew/src/utils/nprogress.js b/developedcode/driverlessCarnew/src/utils/nprogress.js new file mode 100644 index 0000000..6b5f15a --- /dev/null +++ b/developedcode/driverlessCarnew/src/utils/nprogress.js @@ -0,0 +1,19 @@ +import NProgress from 'nprogress' +import 'nprogress/nprogress.css' +NProgress.configure({ + easing: 'ease', // 动画方式 + speed: 1000, // 递增进度条的速度 + showSpinner: false, // 是否显示加载ico + trickleSpeed: 200, // 自动递增间隔 + minimum: 0.3, // 更改启动时使用的最小百分比 + parent: 'body', //指定进度条的父容器 +}) +// 打开进度条 +export const start = () => { + NProgress.start() +} + +// 关闭进度条 +export const close = () => { + NProgress.done() +} \ No newline at end of file diff --git a/developedcode/driverlessCarnew/src/utils/permission.js b/developedcode/driverlessCarnew/src/utils/permission.js new file mode 100644 index 0000000..b30d482 --- /dev/null +++ b/developedcode/driverlessCarnew/src/utils/permission.js @@ -0,0 +1,27 @@ +import router from "@/router/index"; +import { close, start } from "./nprogress"; +import { getToken } from "./auth"; + +const whiteList = ["/login"]; +router.beforeEach(async (to, from, next) => { + start(); + const token = getToken(); + if (token) { + if (to.path === "/login") { + next({ path: "/" }); + close(); + } else { + next(); + } + } else { + if (whiteList.includes(to.path)) { + next(); + } else { + next(`/login?redirect=${to.path}`); + } + } +}); + +router.afterEach((to) => { + close(); +}); diff --git a/developedcode/driverlessCarnew/src/utils/util.js b/developedcode/driverlessCarnew/src/utils/util.js new file mode 100644 index 0000000..a6cc5fe --- /dev/null +++ b/developedcode/driverlessCarnew/src/utils/util.js @@ -0,0 +1,8 @@ +// 获取assets静态资源 +const getAssetsFile = (url) => { + return new URL(`../assets/${url}`, import.meta.url).href; +}; + +export default { + getAssetsFile, +}; diff --git a/developedcode/driverlessCarnew/src/views/Home.vue b/developedcode/driverlessCarnew/src/views/Home.vue new file mode 100644 index 0000000..bda157c --- /dev/null +++ b/developedcode/driverlessCarnew/src/views/Home.vue @@ -0,0 +1,582 @@ + + + diff --git a/developedcode/driverlessCarnew/src/views/driverlessCars/editor.vue b/developedcode/driverlessCarnew/src/views/driverlessCars/editor.vue new file mode 100644 index 0000000..8299862 --- /dev/null +++ b/developedcode/driverlessCarnew/src/views/driverlessCars/editor.vue @@ -0,0 +1,1880 @@ + + + diff --git a/developedcode/driverlessCarnew/src/views/driverlessCars/index.vue b/developedcode/driverlessCarnew/src/views/driverlessCars/index.vue new file mode 100644 index 0000000..c19e031 --- /dev/null +++ b/developedcode/driverlessCarnew/src/views/driverlessCars/index.vue @@ -0,0 +1,804 @@ + + + diff --git a/developedcode/driverlessCarnew/src/views/driverlessCars/navigation.vue b/developedcode/driverlessCarnew/src/views/driverlessCars/navigation.vue new file mode 100644 index 0000000..f328b01 --- /dev/null +++ b/developedcode/driverlessCarnew/src/views/driverlessCars/navigation.vue @@ -0,0 +1,2161 @@ + + + diff --git a/developedcode/driverlessCarnew/src/views/login.vue b/developedcode/driverlessCarnew/src/views/login.vue new file mode 100644 index 0000000..745b32d --- /dev/null +++ b/developedcode/driverlessCarnew/src/views/login.vue @@ -0,0 +1,156 @@ + + + diff --git a/developedcode/driverlessCarnew/vite.config.js b/developedcode/driverlessCarnew/vite.config.js new file mode 100644 index 0000000..ecbdae5 --- /dev/null +++ b/developedcode/driverlessCarnew/vite.config.js @@ -0,0 +1,65 @@ +// Plugins +import vue from "@vitejs/plugin-vue"; +import vuetify, { transformAssetUrls } from "vite-plugin-vuetify"; + +// Utilities +import { defineConfig } from "vite"; +import { fileURLToPath, URL } from "node:url"; +import AutoImport from "unplugin-auto-import/vite"; +import Components from "unplugin-vue-components/vite"; +import { ElementPlusResolver } from "unplugin-vue-components/resolvers"; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue({ + template: { transformAssetUrls }, + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + AutoImport({ + resolvers: [ElementPlusResolver()], + }), + Components({ + resolvers: [ElementPlusResolver()], + }), + ], + define: { "process.env": {} }, + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"], + }, + server: { + port: 3000, + proxy: { + "/v1": { + // target: "http://s3.s100.vip:26381/v1", + target: "http://192.168.1.141:8086/v1", + // target: "http://127.0.0.1:3000/v1", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/v1/, ""), + }, + "/udp": { + // target: "http://s3.s100.vip:26381/v1", + // target: "http://192.168.1.55:8001/", + target: "http://127.0.0.1:9010/udp", + // target: "http://192.168.8.109:9010/udp", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/udp/, ""), + }, + // "/vedio": { + // target: "http://192.168.1.64/vedio", + // // target: "http://192.168.1.141:8086/v1", + // changeOrigin: true, + // rewrite: (path) => path.replace(/^\/vedio/, ""), + // }, + }, + }, + build: { + sourcemap: true, + }, +}); diff --git a/developedcode/driverlessCarold/.browserslistrc b/developedcode/driverlessCarold/.browserslistrc new file mode 100644 index 0000000..dc3bc09 --- /dev/null +++ b/developedcode/driverlessCarold/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/developedcode/driverlessCarold/.editorconfig b/developedcode/driverlessCarold/.editorconfig new file mode 100644 index 0000000..7053c49 --- /dev/null +++ b/developedcode/driverlessCarold/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/developedcode/driverlessCarold/.gitignore b/developedcode/driverlessCarold/.gitignore new file mode 100644 index 0000000..403adbc --- /dev/null +++ b/developedcode/driverlessCarold/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/developedcode/driverlessCarold/README.md b/developedcode/driverlessCarold/README.md new file mode 100644 index 0000000..50b30e0 --- /dev/null +++ b/developedcode/driverlessCarold/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/developedcode/driverlessCarold/index.html b/developedcode/driverlessCarold/index.html new file mode 100644 index 0000000..999abef --- /dev/null +++ b/developedcode/driverlessCarold/index.html @@ -0,0 +1,16 @@ + + + + + + + 路网编辑器 + + + +
+ + + + + diff --git a/developedcode/driverlessCarold/jsconfig.json b/developedcode/driverlessCarold/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/developedcode/driverlessCarold/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/developedcode/driverlessCarold/package.json b/developedcode/driverlessCarold/package.json new file mode 100644 index 0000000..c67997a --- /dev/null +++ b/developedcode/driverlessCarold/package.json @@ -0,0 +1,40 @@ +{ + "name": "driverlessCar", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@mdi/font": "7.0.96", + "@soerenmartius/vue3-clipboard": "^0.1.2", + "axios": "^1.4.0", + "dayjs": "^1.11.7", + "element-plus": "^2.3.4", + "js-md5": "^0.7.3", + "jsencrypt": "^3.3.2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "nprogress": "^0.2.0", + "ol": "^7.3.0", + "pinia": "^2.0.35", + "pinia-plugin-persist": "^1.0.0", + "qs": "^6.11.1", + "roboto-fontface": "*", + "screenfull": "^6.0.2", + "ulid": "^2.3.0", + "vue": "^3.2.47", + "vue-router": "^4.1.6", + "vuetify": "^3.0.0", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.2.1", + "sass": "^1.62.1", + "unplugin-auto-import": "^0.15.3", + "unplugin-vue-components": "^0.24.1", + "vite": "^4.3.4", + "vite-plugin-vuetify": "^1.0.0" + } +} diff --git a/developedcode/driverlessCarold/public/assets/js/jquery-1.7.1.min.js b/developedcode/driverlessCarold/public/assets/js/jquery-1.7.1.min.js new file mode 100644 index 0000000..835d77d --- /dev/null +++ b/developedcode/driverlessCarold/public/assets/js/jquery-1.7.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,t2=/(trident.*rv:)([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i0&& b[1].indexOf("trident")>-1){b[1]="msie"}return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
"+""+"
",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
t
",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/developedcode/driverlessCarold/public/assets/js/jsVideoPlugin-1.0.0.min.js b/developedcode/driverlessCarold/public/assets/js/jsVideoPlugin-1.0.0.min.js new file mode 100644 index 0000000..861380e --- /dev/null +++ b/developedcode/driverlessCarold/public/assets/js/jsVideoPlugin-1.0.0.min.js @@ -0,0 +1,37 @@ +/*! {"version":"V1.0.0 build230210","playCrtl":"V7.4.0.1","pluginVersion":"V3.0.7.50","localServiceVersion":"V1.0.38"} */ +(function webpackUniversalModuleDefinition(e,t){if(typeof exports==="object"&&typeof module==="object")module.exports=t();else if(typeof define==="function"&&define.amd)define([],t);else{var n=t();for(var i in n)(typeof exports==="object"?exports:e)[i]=n[i]}})(window,function(){return function(n){var i={};function r(e){if(i[e]){return i[e].exports}var t=i[e]={i:e,l:false,exports:{}};n[e].call(t.exports,t,t.exports,r);t.l=true;return t.exports}r.m=n;r.c=i;r.d=function(e,t,n){if(!r.o(e,t)){Object.defineProperty(e,t,{enumerable:true,get:n})}};r.r=function(e){if(typeof Symbol!=="undefined"&&Symbol.toStringTag){Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})}Object.defineProperty(e,"__esModule",{value:true})};r.t=function(t,e){if(e&1)t=r(t);if(e&8)return t;if(e&4&&typeof t==="object"&&t&&t.__esModule)return t;var n=Object.create(null);r.r(n);Object.defineProperty(n,"default",{enumerable:true,value:t});if(e&2&&typeof t!="string")for(var i in t)r.d(n,i,function(e){return t[e]}.bind(null,i));return n};r.n=function(e){var t=e&&e.__esModule?function n(){return e["default"]}:function i(){return e};r.d(t,"a",t);return t};r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)};r.p="";return r(r.s=60)}([function(e,t){(function(){e.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},function(nn,rn,e){var on,sn; +/*! + * jQuery JavaScript Library v3.6.0 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2021-03-02T17:08Z + */ +(function(e,t){"use strict";if(true&&typeof nn.exports==="object"){nn.exports=e.document?t(e,true):function(e){if(!e.document){throw new Error("jQuery requires a window with a document")}return t(e)}}else{t(e)}})(typeof window!=="undefined"?window:this,function(C,L){"use strict";var t=[];var F=Object.getPrototypeOf;var a=t.slice;var W=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)};var N=t.push;var B=t.indexOf;var z={};var J=z.toString;var H=z.hasOwnProperty;var U=H.toString;var j=U.call(Object);var v={};var m=function m(e){return typeof e==="function"&&typeof e.nodeType!=="number"&&typeof e.item!=="function"};var y=function y(e){return e!=null&&e===e.window};var k=C.document;var G={type:true,src:true,nonce:true,noModule:true};function V(e,t,n){n=n||k;var i,r,o=n.createElement("script");o.text=e;if(t){for(i in G){r=t[i]||t.getAttribute&&t.getAttribute(i);if(r){o.setAttribute(i,r)}}}n.head.appendChild(o).parentNode.removeChild(o)}function g(e){if(e==null){return e+""}return typeof e==="object"||typeof e==="function"?z[J.call(e)]||"object":typeof e}var Y="3.6.0",T=function(e,t){return new T.fn.init(e,t)};T.fn=T.prototype={jquery:Y,constructor:T,length:0,toArray:function(){return a.call(this)},get:function(e){if(e==null){return a.call(this)}return e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=T.merge(this.constructor(),e);t.prevObject=this;return t},each:function(e){return T.each(this,e)},map:function(n){return this.pushStack(T.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(a.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(T.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(T.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n0&&t-1 in e}var e= +/*! + * Sizzle CSS Selector Engine v2.3.6 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2021-02-16 + */ +function(L){var e,p,w,o,F,v,W,N,S,u,l,_,b,r,C,m,s,a,y,k="sizzle"+1*new Date,f=L.document,T=0,B=0,z=i(),J=i(),H=i(),g=i(),U=function(e,t){if(e===t){l=true}return 0},j={}.hasOwnProperty,t=[],G=t.pop,V=t.push,R=t.push,Y=t.slice,P=function(e,t){var n=0,i=e.length;for(;n+~]|"+c+")"+c+"*"),te=new RegExp(c+"|>"),ne=new RegExp(K),ie=new RegExp("^"+n+"$"),h={ID:new RegExp("^#("+n+")"),CLASS:new RegExp("^\\.("+n+")"),TAG:new RegExp("^("+n+"|[*])"),ATTR:new RegExp("^"+Z),PSEUDO:new RegExp("^"+K),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+c+"*(even|odd|(([+-]|)(\\d*)n|)"+c+"*(?:([+-]|)"+c+"*(\\d+)|))"+c+"*\\)|)","i"),bool:new RegExp("^(?:"+X+")$","i"),needsContext:new RegExp("^"+c+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+c+"*((?:-\\d)?\\d*)"+c+"*\\)|)(?=[^-]|$)","i")},re=/HTML$/i,oe=/^(?:input|select|textarea|button)$/i,se=/^h\d$/i,d=/^[^{]+\{\s*\[native \w/,ae=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ue=/[+~]/,x=new RegExp("\\\\[\\da-fA-F]{1,6}"+c+"?|\\\\([^\\r\\n\\f])","g"),I=function(e,t){var n="0x"+e.slice(1)-65536;return t?t:n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,n&1023|56320)},le=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,fe=function(e,t){if(t){if(e==="\0"){return"�"}return e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" "}return"\\"+e},ce=function(){_()},he=Se(function(e){return e.disabled===true&&e.nodeName.toLowerCase()==="fieldset"},{dir:"parentNode",next:"legend"});try{R.apply(t=Y.call(f.childNodes),f.childNodes);t[f.childNodes.length].nodeType}catch(M){R={apply:t.length?function(e,t){V.apply(e,Y.call(t))}:function(e,t){var n=e.length,i=0;while(e[n++]=t[i++]){}e.length=n-1}}}function E(e,t,n,i){var r,o,s,a,u,l,f,c=t&&t.ownerDocument,h=t?t.nodeType:9;n=n||[];if(typeof e!=="string"||!e||h!==1&&h!==9&&h!==11){return n}if(!i){_(t);t=t||b;if(C){if(h!==11&&(u=ae.exec(e))){if(r=u[1]){if(h===9){if(s=t.getElementById(r)){if(s.id===r){n.push(s);return n}}else{return n}}else{if(c&&(s=c.getElementById(r))&&y(t,s)&&s.id===r){n.push(s);return n}}}else if(u[2]){R.apply(n,t.getElementsByTagName(e));return n}else if((r=u[3])&&p.getElementsByClassName&&t.getElementsByClassName){R.apply(n,t.getElementsByClassName(r));return n}}if(p.qsa&&!g[e+" "]&&(!m||!m.test(e))&&(h!==1||t.nodeName.toLowerCase()!=="object")){f=e;c=t;if(h===1&&(te.test(e)||ee.test(e))){c=ue.test(e)&&ge(t.parentNode)||t;if(c!==t||!p.scope){if(a=t.getAttribute("id")){a=a.replace(le,fe)}else{t.setAttribute("id",a=k)}}l=v(e);o=l.length;while(o--){l[o]=(a?"#"+a:":scope")+" "+we(l[o])}f=l.join(",")}try{R.apply(n,c.querySelectorAll(f));return n}catch(d){g(e,true)}finally{if(a===k){t.removeAttribute("id")}}}}}return N(e.replace(D,"$1"),t,n,i)}function i(){var n=[];function i(e,t){if(n.push(e+" ")>w.cacheLength){delete i[n.shift()]}return i[e+" "]=t}return i}function q(e){e[k]=true;return e}function A(e){var t=b.createElement("fieldset");try{return!!e(t)}catch(M){return false}finally{if(t.parentNode){t.parentNode.removeChild(t)}t=null}}function de(e,t){var n=e.split("|"),i=n.length;while(i--){w.attrHandle[n[i]]=t}}function pe(e,t){var n=t&&e,i=n&&e.nodeType===1&&t.nodeType===1&&e.sourceIndex-t.sourceIndex;if(i){return i}if(n){while(n=n.nextSibling){if(n===t){return-1}}}return e?1:-1}function ve(n){return function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type===n}}function me(n){return function(e){var t=e.nodeName.toLowerCase();return(t==="input"||t==="button")&&e.type===n}}function ye(t){return function(e){if("form"in e){if(e.parentNode&&e.disabled===false){if("label"in e){if("label"in e.parentNode){return e.parentNode.disabled===t}else{return e.disabled===t}}return e.isDisabled===t||e.isDisabled!==!t&&he(e)===t}return e.disabled===t}else if("label"in e){return e.disabled===t}return false}}function O(s){return q(function(o){o=+o;return q(function(e,t){var n,i=s([],e.length,o),r=i.length;while(r--){if(e[n=i[r]]){e[n]=!(t[n]=e[n])}}})})}function ge(e){return e&&typeof e.getElementsByTagName!=="undefined"&&e}p=E.support={};F=E.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!re.test(t||n&&n.nodeName||"HTML")};_=E.setDocument=function(e){var t,n,i=e?e.ownerDocument||e:f;if(i==b||i.nodeType!==9||!i.documentElement){return b}b=i;r=b.documentElement;C=!F(b);if(f!=b&&(n=b.defaultView)&&n.top!==n){if(n.addEventListener){n.addEventListener("unload",ce,false)}else if(n.attachEvent){n.attachEvent("onunload",ce)}}p.scope=A(function(e){r.appendChild(e).appendChild(b.createElement("div"));return typeof e.querySelectorAll!=="undefined"&&!e.querySelectorAll(":scope fieldset div").length});p.attributes=A(function(e){e.className="i";return!e.getAttribute("className")});p.getElementsByTagName=A(function(e){e.appendChild(b.createComment(""));return!e.getElementsByTagName("*").length});p.getElementsByClassName=d.test(b.getElementsByClassName);p.getById=A(function(e){r.appendChild(e).id=k;return!b.getElementsByName||!b.getElementsByName(k).length});if(p.getById){w.filter["ID"]=function(e){var t=e.replace(x,I);return function(e){return e.getAttribute("id")===t}};w.find["ID"]=function(e,t){if(typeof t.getElementById!=="undefined"&&C){var n=t.getElementById(e);return n?[n]:[]}}}else{w.filter["ID"]=function(e){var n=e.replace(x,I);return function(e){var t=typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id");return t&&t.value===n}};w.find["ID"]=function(e,t){if(typeof t.getElementById!=="undefined"&&C){var n,i,r,o=t.getElementById(e);if(o){n=o.getAttributeNode("id");if(n&&n.value===e){return[o]}r=t.getElementsByName(e);i=0;while(o=r[i++]){n=o.getAttributeNode("id");if(n&&n.value===e){return[o]}}}return[]}}}w.find["TAG"]=p.getElementsByTagName?function(e,t){if(typeof t.getElementsByTagName!=="undefined"){return t.getElementsByTagName(e)}else if(p.qsa){return t.querySelectorAll(e)}}:function(e,t){var n,i=[],r=0,o=t.getElementsByTagName(e);if(e==="*"){while(n=o[r++]){if(n.nodeType===1){i.push(n)}}return i}return o};w.find["CLASS"]=p.getElementsByClassName&&function(e,t){if(typeof t.getElementsByClassName!=="undefined"&&C){return t.getElementsByClassName(e)}};s=[];m=[];if(p.qsa=d.test(b.querySelectorAll)){A(function(e){var t;r.appendChild(e).innerHTML=""+"";if(e.querySelectorAll("[msallowcapture^='']").length){m.push("[*^$]="+c+"*(?:''|\"\")")}if(!e.querySelectorAll("[selected]").length){m.push("\\["+c+"*(?:value|"+X+")")}if(!e.querySelectorAll("[id~="+k+"-]").length){m.push("~=")}t=b.createElement("input");t.setAttribute("name","");e.appendChild(t);if(!e.querySelectorAll("[name='']").length){m.push("\\["+c+"*name"+c+"*="+c+"*(?:''|\"\")")}if(!e.querySelectorAll(":checked").length){m.push(":checked")}if(!e.querySelectorAll("a#"+k+"+*").length){m.push(".#.+[+~]")}e.querySelectorAll("\\\f");m.push("[\\r\\n\\f]")});A(function(e){e.innerHTML=""+"";var t=b.createElement("input");t.setAttribute("type","hidden");e.appendChild(t).setAttribute("name","D");if(e.querySelectorAll("[name=d]").length){m.push("name"+c+"*[*^$|!~]?=")}if(e.querySelectorAll(":enabled").length!==2){m.push(":enabled",":disabled")}r.appendChild(e).disabled=true;if(e.querySelectorAll(":disabled").length!==2){m.push(":enabled",":disabled")}e.querySelectorAll("*,:x");m.push(",.*:")})}if(p.matchesSelector=d.test(a=r.matches||r.webkitMatchesSelector||r.mozMatchesSelector||r.oMatchesSelector||r.msMatchesSelector)){A(function(e){p.disconnectedMatch=a.call(e,"*");a.call(e,"[s!='']:x");s.push("!=",K)})}m=m.length&&new RegExp(m.join("|"));s=s.length&&new RegExp(s.join("|"));t=d.test(r.compareDocumentPosition);y=t||d.test(r.contains)?function(e,t){var n=e.nodeType===9?e.documentElement:e,i=t&&t.parentNode;return e===i||!!(i&&i.nodeType===1&&(n.contains?n.contains(i):e.compareDocumentPosition&&e.compareDocumentPosition(i)&16))}:function(e,t){if(t){while(t=t.parentNode){if(t===e){return true}}}return false};U=t?function(e,t){if(e===t){l=true;return 0}var n=!e.compareDocumentPosition-!t.compareDocumentPosition;if(n){return n}n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1;if(n&1||!p.sortDetached&&t.compareDocumentPosition(e)===n){if(e==b||e.ownerDocument==f&&y(f,e)){return-1}if(t==b||t.ownerDocument==f&&y(f,t)){return 1}return u?P(u,e)-P(u,t):0}return n&4?-1:1}:function(e,t){if(e===t){l=true;return 0}var n,i=0,r=e.parentNode,o=t.parentNode,s=[e],a=[t];if(!r||!o){return e==b?-1:t==b?1:r?-1:o?1:u?P(u,e)-P(u,t):0}else if(r===o){return pe(e,t)}n=e;while(n=n.parentNode){s.unshift(n)}n=t;while(n=n.parentNode){a.unshift(n)}while(s[i]===a[i]){i++}return i?pe(s[i],a[i]):s[i]==f?-1:a[i]==f?1:0};return b};E.matches=function(e,t){return E(e,null,null,t)};E.matchesSelector=function(e,t){_(e);if(p.matchesSelector&&C&&!g[t+" "]&&(!s||!s.test(t))&&(!m||!m.test(t))){try{var n=a.call(e,t);if(n||p.disconnectedMatch||e.document&&e.document.nodeType!==11){return n}}catch(M){g(t,true)}}return E(t,b,null,[e]).length>0};E.contains=function(e,t){if((e.ownerDocument||e)!=b){_(e)}return y(e,t)};E.attr=function(e,t){if((e.ownerDocument||e)!=b){_(e)}var n=w.attrHandle[t.toLowerCase()],i=n&&j.call(w.attrHandle,t.toLowerCase())?n(e,t,!C):undefined;return i!==undefined?i:p.attributes||!C?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null};E.escape=function(e){return(e+"").replace(le,fe)};E.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)};E.uniqueSort=function(e){var t,n=[],i=0,r=0;l=!p.detectDuplicates;u=!p.sortStable&&e.slice(0);e.sort(U);if(l){while(t=e[r++]){if(t===e[r]){i=n.push(r)}}while(i--){e.splice(n[i],1)}}u=null;return e};o=E.getText=function(e){var t,n="",i=0,r=e.nodeType;if(!r){while(t=e[i++]){n+=o(t)}}else if(r===1||r===9||r===11){if(typeof e.textContent==="string"){return e.textContent}else{for(e=e.firstChild;e;e=e.nextSibling){n+=o(e)}}}else if(r===3||r===4){return e.nodeValue}return n};w=E.selectors={cacheLength:50,createPseudo:q,match:h,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:true}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:true},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){e[1]=e[1].replace(x,I);e[3]=(e[3]||e[4]||e[5]||"").replace(x,I);if(e[2]==="~="){e[3]=" "+e[3]+" "}return e.slice(0,4)},CHILD:function(e){e[1]=e[1].toLowerCase();if(e[1].slice(0,3)==="nth"){if(!e[3]){E.error(e[0])}e[4]=+(e[4]?e[5]+(e[6]||1):2*(e[3]==="even"||e[3]==="odd"));e[5]=+(e[7]+e[8]||e[3]==="odd")}else if(e[3]){E.error(e[0])}return e},PSEUDO:function(e){var t,n=!e[6]&&e[2];if(h["CHILD"].test(e[0])){return null}if(e[3]){e[2]=e[4]||e[5]||""}else if(n&&ne.test(n)&&(t=v(n,true))&&(t=n.indexOf(")",n.length-t)-n.length)){e[0]=e[0].slice(0,t);e[2]=n.slice(0,t)}return e.slice(0,3)}},filter:{TAG:function(e){var t=e.replace(x,I).toLowerCase();return e==="*"?function(){return true}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=z[e+" "];return t||(t=new RegExp("(^|"+c+")"+e+"("+c+"|$)"))&&z(e,function(e){return t.test(typeof e.className==="string"&&e.className||typeof e.getAttribute!=="undefined"&&e.getAttribute("class")||"")})},ATTR:function(n,i,r){return function(e){var t=E.attr(e,n);if(t==null){return i==="!="}if(!i){return true}t+="";return i==="="?t===r:i==="!="?t!==r:i==="^="?r&&t.indexOf(r)===0:i==="*="?r&&t.indexOf(r)>-1:i==="$="?r&&t.slice(-r.length)===r:i==="~="?(" "+t.replace($," ")+" ").indexOf(r)>-1:i==="|="?t===r||t.slice(0,r.length+1)===r+"-":false}},CHILD:function(p,e,t,v,m){var y=p.slice(0,3)!=="nth",g=p.slice(-4)!=="last",P=e==="of-type";return v===1&&m===0?function(e){return!!e.parentNode}:function(e,t,n){var i,r,o,s,a,u,l=y!==g?"nextSibling":"previousSibling",f=e.parentNode,c=P&&e.nodeName.toLowerCase(),h=!n&&!P,d=false;if(f){if(y){while(l){s=e;while(s=s[l]){if(P?s.nodeName.toLowerCase()===c:s.nodeType===1){return false}}u=l=p==="only"&&!u&&"nextSibling"}return true}u=[g?f.firstChild:f.lastChild];if(g&&h){s=f;o=s[k]||(s[k]={});r=o[s.uniqueID]||(o[s.uniqueID]={});i=r[p]||[];a=i[0]===T&&i[1];d=a&&i[2];s=a&&f.childNodes[a];while(s=++a&&s&&s[l]||(d=a=0)||u.pop()){if(s.nodeType===1&&++d&&s===e){r[p]=[T,a,d];break}}}else{if(h){s=e;o=s[k]||(s[k]={});r=o[s.uniqueID]||(o[s.uniqueID]={});i=r[p]||[];a=i[0]===T&&i[1];d=a}if(d===false){while(s=++a&&s&&s[l]||(d=a=0)||u.pop()){if((P?s.nodeName.toLowerCase()===c:s.nodeType===1)&&++d){if(h){o=s[k]||(s[k]={});r=o[s.uniqueID]||(o[s.uniqueID]={});r[p]=[T,d]}if(s===e){break}}}}}d-=m;return d===v||d%v===0&&d/v>=0}}},PSEUDO:function(e,o){var t,s=w.pseudos[e]||w.setFilters[e.toLowerCase()]||E.error("unsupported pseudo: "+e);if(s[k]){return s(o)}if(s.length>1){t=[e,e,"",o];return w.setFilters.hasOwnProperty(e.toLowerCase())?q(function(e,t){var n,i=s(e,o),r=i.length;while(r--){n=P(e,i[r]);e[n]=!(t[n]=i[r])}}):function(e){return s(e,0,t)}}return s}},pseudos:{not:q(function(e){var i=[],r=[],a=W(e.replace(D,"$1"));return a[k]?q(function(e,t,n,i){var r,o=a(e,null,i,[]),s=e.length;while(s--){if(r=o[s]){e[s]=!(t[s]=r)}}}):function(e,t,n){i[0]=e;a(i,null,n,r);i[0]=null;return!r.pop()}}),has:q(function(t){return function(e){return E(t,e).length>0}}),contains:q(function(t){t=t.replace(x,I);return function(e){return(e.textContent||o(e)).indexOf(t)>-1}}),lang:q(function(n){if(!ie.test(n||"")){E.error("unsupported lang: "+n)}n=n.replace(x,I).toLowerCase();return function(e){var t;do{if(t=C?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang")){t=t.toLowerCase();return t===n||t.indexOf(n+"-")===0}}while((e=e.parentNode)&&e.nodeType===1);return false}}),target:function(e){var t=L.location&&L.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===r},focus:function(e){return e===b.activeElement&&(!b.hasFocus||b.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ye(false),disabled:ye(true),checked:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&!!e.checked||t==="option"&&!!e.selected},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling){if(e.nodeType<6){return false}}return true},parent:function(e){return!w.pseudos["empty"](e)},header:function(e){return se.test(e.nodeName)},input:function(e){return oe.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type==="button"||t==="button"},text:function(e){var t;return e.nodeName.toLowerCase()==="input"&&e.type==="text"&&((t=e.getAttribute("type"))==null||t.toLowerCase()==="text")},first:O(function(){return[0]}),last:O(function(e,t){return[t-1]}),eq:O(function(e,t,n){return[n<0?n+t:n]}),even:O(function(e,t){var n=0;for(;nt?t:n;for(;--i>=0;){e.push(i)}return e}),gt:O(function(e,t,n){var i=n<0?n+t:n;for(;++i1?function(e,t,n){var i=r.length;while(i--){if(!r[i](e,t,n)){return false}}return true}:r[0]}function be(e,t,n){var i=0,r=t.length;for(;i-1){e[r]=!(t[r]=s)}}}}else{h=Ce(h===t?h.splice(l,h.length):h);if(y){y(null,t,h,i)}else{R.apply(t,h)}}})}function Te(e){var r,t,n,i=e.length,o=w.relative[e[0].type],s=o||w.relative[" "],a=o?1:0,u=Se(function(e){return e===r},s,true),l=Se(function(e){return P(r,e)>-1},s,true),f=[function(e,t,n){var i=!o&&(n||t!==S)||((r=t).nodeType?u(e,t,n):l(e,t,n));r=null;return i}];for(;a1&&_e(f),a>1&&we(e.slice(0,a-1).concat({value:e[a-2].type===" "?"*":""})).replace(D,"$1"),t,a0,P=m.length>0,e=function(e,t,n,i,r){var o,s,a,u=0,l="0",f=e&&[],c=[],h=S,d=e||P&&w.find["TAG"]("*",r),p=T+=h==null?1:Math.random()||.1,v=d.length;if(r){S=t==b||t||r}for(;l!==v&&(o=d[l])!=null;l++){if(P&&o){s=0;if(!t&&o.ownerDocument!=b){_(o);n=!C}while(a=m[s++]){if(a(o,t||b,n)){i.push(o);break}}if(r){T=p}}if(g){if(o=!a&&o){u--}if(e){f.push(o)}}}u+=l;if(g&&l!==u){s=0;while(a=y[s++]){a(f,c,t,n)}if(e){if(u>0){while(l--){if(!(f[l]||c[l])){c[l]=G.call(i)}}}c=Ce(c)}R.apply(i,c);if(r&&!e&&c.length>0&&u+y.length>1){E.uniqueSort(i)}}if(r){T=p;S=h}return f};return g?q(e):e}W=E.compile=function(e,t){var n,i=[],r=[],o=H[e+" "];if(!o){if(!t){t=v(e)}n=t.length;while(n--){o=Te(t[n]);if(o[k]){i.push(o)}else{r.push(o)}}o=H(e,Re(r,i));o.selector=e}return o};N=E.select=function(e,t,n,i){var r,o,s,a,u,l=typeof e==="function"&&e,f=!i&&v(e=l.selector||e);n=n||[];if(f.length===1){o=f[0]=f[0].slice(0);if(o.length>2&&(s=o[0]).type==="ID"&&t.nodeType===9&&C&&w.relative[o[1].type]){t=(w.find["ID"](s.matches[0].replace(x,I),t)||[])[0];if(!t){return n}else if(l){t=t.parentNode}e=e.slice(o.shift().value.length)}r=h["needsContext"].test(e)?0:o.length;while(r--){s=o[r];if(w.relative[a=s.type]){break}if(u=w.find[a]){if(i=u(s.matches[0].replace(x,I),ue.test(o[0].type)&&ge(t.parentNode)||t)){o.splice(r,1);e=i.length&&we(o);if(!e){R.apply(n,i);return n}break}}}}(l||W(e,f))(i,t,!C,n,!t||ue.test(e)&&ge(t.parentNode)||t);return n};p.sortStable=k.split("").sort(U).join("")===k;p.detectDuplicates=!!l;_();p.sortDetached=A(function(e){return e.compareDocumentPosition(b.createElement("fieldset"))&1});if(!A(function(e){e.innerHTML="";return e.firstChild.getAttribute("href")==="#"})){de("type|href|height|width",function(e,t,n){if(!n){return e.getAttribute(t,t.toLowerCase()==="type"?1:2)}})}if(!p.attributes||!A(function(e){e.innerHTML="";e.firstChild.setAttribute("value","");return e.firstChild.getAttribute("value")===""})){de("value",function(e,t,n){if(!n&&e.nodeName.toLowerCase()==="input"){return e.defaultValue}})}if(!A(function(e){return e.getAttribute("disabled")==null})){de(X,function(e,t,n){var i;if(!n){return e[t]===true?t.toLowerCase():(i=e.getAttributeNode(t))&&i.specified?i.value:null}})}return E}(C);T.find=e;T.expr=e.selectors;T.expr[":"]=T.expr.pseudos;T.uniqueSort=T.unique=e.uniqueSort;T.text=e.getText;T.isXMLDoc=e.isXML;T.contains=e.contains;T.escapeSelector=e.escape;var i=function(e,t,n){var i=[],r=n!==undefined;while((e=e[t])&&e.nodeType!==9){if(e.nodeType===1){if(r&&T(e).is(n)){break}i.push(e)}}return i};var Z=function(e,t){var n=[];for(;e;e=e.nextSibling){if(e.nodeType===1&&e!==t){n.push(e)}}return n};var K=T.expr.match.needsContext;function l(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var $=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function Q(e,n,i){if(m(n)){return T.grep(e,function(e,t){return!!n.call(e,t,e)!==i})}if(n.nodeType){return T.grep(e,function(e){return e===n!==i})}if(typeof n!=="string"){return T.grep(e,function(e){return B.call(n,e)>-1!==i})}return T.filter(n,e,i)}T.filter=function(e,t,n){var i=t[0];if(n){e=":not("+e+")"}if(t.length===1&&i.nodeType===1){return T.find.matchesSelector(i,e)?[i]:[]}return T.find.matches(e,T.grep(t,function(e){return e.nodeType===1}))};T.fn.extend({find:function(e){var t,n,i=this.length,r=this;if(typeof e!=="string"){return this.pushStack(T(e).filter(function(){for(t=0;t1?T.uniqueSort(n):n},filter:function(e){return this.pushStack(Q(this,e||[],false))},not:function(e){return this.pushStack(Q(this,e||[],true))},is:function(e){return!!Q(this,typeof e==="string"&&K.test(e)?T(e):e||[],false).length}});var ee,te=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,ne=T.fn.init=function(e,t,n){var i,r;if(!e){return this}n=n||ee;if(typeof e==="string"){if(e[0]==="<"&&e[e.length-1]===">"&&e.length>=3){i=[null,e,null]}else{i=te.exec(e)}if(i&&(i[1]||!t)){if(i[1]){t=t instanceof T?t[0]:t;T.merge(this,T.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:k,true));if($.test(i[1])&&T.isPlainObject(t)){for(i in t){if(m(this[i])){this[i](t[i])}else{this.attr(i,t[i])}}}return this}else{r=k.getElementById(i[2]);if(r){this[0]=r;this.length=1}return this}}else if(!t||t.jquery){return(t||n).find(e)}else{return this.constructor(t).find(e)}}else if(e.nodeType){this[0]=e;this.length=1;return this}else if(m(e)){return n.ready!==undefined?n.ready(e):e(T)}return T.makeArray(e,this)};ne.prototype=T.fn;ee=T(k);var ie=/^(?:parents|prev(?:Until|All))/,re={children:true,contents:true,next:true,prev:true};T.fn.extend({has:function(e){var t=T(e,this),n=t.length;return this.filter(function(){var e=0;for(;e-1:n.nodeType===1&&T.find.matchesSelector(n,e))){o.push(n);break}}}}return this.pushStack(o.length>1?T.uniqueSort(o):o)},index:function(e){if(!e){return this[0]&&this[0].parentNode?this.first().prevAll().length:-1}if(typeof e==="string"){return B.call(T(e),this[0])}return B.call(this,e.jquery?e[0]:e)},add:function(e,t){return this.pushStack(T.uniqueSort(T.merge(this.get(),T(e,t))))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}});function oe(e,t){while((e=e[t])&&e.nodeType!==1){}return e}T.each({parent:function(e){var t=e.parentNode;return t&&t.nodeType!==11?t:null},parents:function(e){return i(e,"parentNode")},parentsUntil:function(e,t,n){return i(e,"parentNode",n)},next:function(e){return oe(e,"nextSibling")},prev:function(e){return oe(e,"previousSibling")},nextAll:function(e){return i(e,"nextSibling")},prevAll:function(e){return i(e,"previousSibling")},nextUntil:function(e,t,n){return i(e,"nextSibling",n)},prevUntil:function(e,t,n){return i(e,"previousSibling",n)},siblings:function(e){return Z((e.parentNode||{}).firstChild,e)},children:function(e){return Z(e.firstChild)},contents:function(e){if(e.contentDocument!=null&&F(e.contentDocument)){return e.contentDocument}if(l(e,"template")){e=e.content||e}return T.merge([],e.childNodes)}},function(i,r){T.fn[i]=function(e,t){var n=T.map(this,r,e);if(i.slice(-5)!=="Until"){t=e}if(t&&typeof t==="string"){n=T.filter(t,n)}if(this.length>1){if(!re[i]){T.uniqueSort(n)}if(ie.test(i)){n.reverse()}}return this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function se(e){var n={};T.each(e.match(R)||[],function(e,t){n[t]=true});return n}T.Callbacks=function(i){i=typeof i==="string"?se(i):T.extend({},i);var r,e,t,n,o=[],s=[],a=-1,u=function(){n=n||i.once;t=r=true;for(;s.length;a=-1){e=s.shift();while(++a-1){o.splice(n,1);if(n<=a){a--}}});return this},has:function(e){return e?T.inArray(e,o)>-1:o.length>0},empty:function(){if(o){o=[]}return this},disable:function(){n=s=[];o=e="";return this},disabled:function(){return!o},lock:function(){n=s=[];if(!e&&!r){o=e=""}return this},locked:function(){return!!n},fireWith:function(e,t){if(!n){t=t||[];t=[e,t.slice?t.slice():t];s.push(t);if(!r){u()}}return this},fire:function(){l.fireWith(this,arguments);return this},fired:function(){return!!t}};return l};function c(e){return e}function ae(e){throw e}function ue(e,t,n,i){var r;try{if(e&&m(r=e.promise)){r.call(e).done(t).fail(n)}else if(e&&m(r=e.then)){r.call(e,t,n)}else{t.apply(undefined,[e].slice(i))}}catch(e){n.apply(undefined,[e])}}T.extend({Deferred:function(e){var o=[["notify","progress",T.Callbacks("memory"),T.Callbacks("memory"),2],["resolve","done",T.Callbacks("once memory"),T.Callbacks("once memory"),0,"resolved"],["reject","fail",T.Callbacks("once memory"),T.Callbacks("once memory"),1,"rejected"]],r="pending",s={state:function(){return r},always:function(){a.done(arguments).fail(arguments);return this},"catch":function(e){return s.then(null,e)},pipe:function(){var r=arguments;return T.Deferred(function(i){T.each(o,function(e,t){var n=m(r[t[4]])&&r[t[4]];a[t[1]](function(){var e=n&&n.apply(this,arguments);if(e&&m(e.promise)){e.promise().progress(i.notify).done(i.resolve).fail(i.reject)}else{i[t[0]+"With"](this,n?[e]:arguments)}})});r=null}).promise()},then:function(t,n,i){var l=0;function f(o,s,a,u){return function(){var n=this,i=arguments,t=function(){var e,t;if(o=l){if(a!==ae){n=undefined;i=[e]}s.rejectWith(n,i)}}};if(o){r()}else{if(T.Deferred.getStackHook){r.stackTrace=T.Deferred.getStackHook()}C.setTimeout(r)}}}return T.Deferred(function(e){o[0][3].add(f(0,e,m(i)?i:c,e.notifyWith));o[1][3].add(f(0,e,m(t)?t:c));o[2][3].add(f(0,e,m(n)?n:ae))}).promise()},promise:function(e){return e!=null?T.extend(e,s):s}},a={};T.each(o,function(e,t){var n=t[2],i=t[5];s[t[1]]=n.add;if(i){n.add(function(){r=i},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock)}n.add(t[3].fire);a[t[0]]=function(){a[t[0]+"With"](this===a?undefined:this,arguments);return this};a[t[0]+"With"]=n.fireWith});s.promise(a);if(e){e.call(a,a)}return a},when:function(e){var n=arguments.length,t=n,i=Array(t),r=a.call(arguments),o=T.Deferred(),s=function(t){return function(e){i[t]=this;r[t]=arguments.length>1?a.call(arguments):e;if(!--n){o.resolveWith(i,r)}}};if(n<=1){ue(e,o.done(s(t)).resolve,o.reject,!n);if(o.state()==="pending"||m(r[t]&&r[t].then)){return o.then()}}while(t--){ue(r[t],s(t),o.reject)}return o.promise()}});var le=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;T.Deferred.exceptionHook=function(e,t){if(C.console&&C.console.warn&&e&&le.test(e.name)){C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)}};T.readyException=function(e){C.setTimeout(function(){throw e})};var fe=T.Deferred();T.fn.ready=function(e){fe.then(e)["catch"](function(e){T.readyException(e)});return this};T.extend({isReady:false,readyWait:1,ready:function(e){if(e===true?--T.readyWait:T.isReady){return}T.isReady=true;if(e!==true&&--T.readyWait>0){return}fe.resolveWith(k,[T])}});T.ready.then=fe.then;function ce(){k.removeEventListener("DOMContentLoaded",ce);C.removeEventListener("load",ce);T.ready()}if(k.readyState==="complete"||k.readyState!=="loading"&&!k.documentElement.doScroll){C.setTimeout(T.ready)}else{k.addEventListener("DOMContentLoaded",ce);C.addEventListener("load",ce)}var f=function(e,t,n,i,r,o,s){var a=0,u=e.length,l=n==null;if(g(n)==="object"){r=true;for(a in n){f(e,t,a,n[a],true,o,s)}}else if(i!==undefined){r=true;if(!m(i)){s=true}if(l){if(s){t.call(e,i);t=null}else{l=t;t=function(e,t,n){return l.call(T(e),n)}}}if(t){for(;a1,null,true)},removeData:function(e){return this.each(function(){d.remove(this,e)})}});T.extend({queue:function(e,t,n){var i;if(e){t=(t||"fx")+"queue";i=w.get(e,t);if(n){if(!i||Array.isArray(n)){i=w.access(e,t,T.makeArray(n))}else{i.push(n)}}return i||[]}},dequeue:function(e,t){t=t||"fx";var n=T.queue(e,t),i=n.length,r=n.shift(),o=T._queueHooks(e,t),s=function(){T.dequeue(e,t)};if(r==="inprogress"){r=n.shift();i--}if(r){if(t==="fx"){n.unshift("inprogress")}delete o.stop;r.call(e,s,o)}if(!i&&o){o.empty.fire()}},_queueHooks:function(e,t){var n=t+"queueHooks";return w.get(e,n)||w.access(e,n,{empty:T.Callbacks("once memory").add(function(){w.remove(e,[t+"queue",n])})})}});T.fn.extend({queue:function(t,n){var e=2;if(typeof t!=="string"){n=t;t="fx";e--}if(arguments.length\x20\t\r\n\f]*)/i;var Te=/^$|^module$|\/(?:java|ecma)script/i;(function(){var e=k.createDocumentFragment(),t=e.appendChild(k.createElement("div")),n=k.createElement("input");n.setAttribute("type","radio");n.setAttribute("checked","checked");n.setAttribute("name","t");t.appendChild(n);v.checkClone=t.cloneNode(true).cloneNode(true).lastChild.checked;t.innerHTML="";v.noCloneChecked=!!t.cloneNode(true).lastChild.defaultValue;t.innerHTML="";v.option=!!t.lastChild})();var x={thead:[1,"
","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};x.tbody=x.tfoot=x.colgroup=x.caption=x.thead;x.th=x.td;if(!v.option){x.optgroup=x.option=[1,""]}function I(e,t){var n;if(typeof e.getElementsByTagName!=="undefined"){n=e.getElementsByTagName(t||"*")}else if(typeof e.querySelectorAll!=="undefined"){n=e.querySelectorAll(t||"*")}else{n=[]}if(t===undefined||t&&l(e,t)){return T.merge([e],n)}return n}function Re(e,t){var n=0,i=e.length;for(;n-1){if(r){r.push(o)}continue}l=b(o);s=I(c.appendChild(o),"script");if(l){Re(s)}if(n){f=0;while(o=s[f++]){if(Te.test(o.type||"")){n.push(o)}}}}return c}var Ie=/^([^.]*)(?:\.(.+)|)/;function s(){return true}function u(){return false}function Ee(e,t){return e===qe()===(t==="focus")}function qe(){try{return k.activeElement}catch(e){}}function Ae(e,t,n,i,r,o){var s,a;if(typeof t==="object"){if(typeof n!=="string"){i=i||n;n=undefined}for(a in t){Ae(e,a,n,i,t[a],o)}return e}if(i==null&&r==null){r=n;i=n=undefined}else if(r==null){if(typeof n==="string"){r=i;i=undefined}else{r=i;i=n;n=undefined}}if(r===false){r=u}else if(!r){return e}if(o===1){s=r;r=function(e){T().off(e);return s.apply(this,arguments)};r.guid=s.guid||(s.guid=T.guid++)}return e.each(function(){T.event.add(this,t,r,i,n)})}T.event={global:{},add:function(t,e,n,i,r){var o,s,a,u,l,f,c,h,d,p,v,m=w.get(t);if(!P(t)){return}if(n.handler){o=n;n=o.handler;r=o.selector}if(r){T.find.matchesSelector(_,r)}if(!n.guid){n.guid=T.guid++}if(!(u=m.events)){u=m.events=Object.create(null)}if(!(s=m.handle)){s=m.handle=function(e){return typeof T!=="undefined"&&T.event.triggered!==e.type?T.event.dispatch.apply(t,arguments):undefined}}e=(e||"").match(R)||[""];l=e.length;while(l--){a=Ie.exec(e[l])||[];d=v=a[1];p=(a[2]||"").split(".").sort();if(!d){continue}c=T.event.special[d]||{};d=(r?c.delegateType:c.bindType)||d;c=T.event.special[d]||{};f=T.extend({type:d,origType:v,data:i,handler:n,guid:n.guid,selector:r,needsContext:r&&T.expr.match.needsContext.test(r),namespace:p.join(".")},o);if(!(h=u[d])){h=u[d]=[];h.delegateCount=0;if(!c.setup||c.setup.call(t,i,p,s)===false){if(t.addEventListener){t.addEventListener(d,s)}}}if(c.add){c.add.call(t,f);if(!f.handler.guid){f.handler.guid=n.guid}}if(r){h.splice(h.delegateCount++,0,f)}else{h.push(f)}T.event.global[d]=true}},remove:function(e,t,n,i,r){var o,s,a,u,l,f,c,h,d,p,v,m=w.hasData(e)&&w.get(e);if(!m||!(u=m.events)){return}t=(t||"").match(R)||[""];l=t.length;while(l--){a=Ie.exec(t[l])||[];d=v=a[1];p=(a[2]||"").split(".").sort();if(!d){for(d in u){T.event.remove(e,d+t[l],n,i,true)}continue}c=T.event.special[d]||{};d=(i?c.delegateType:c.bindType)||d;h=u[d]||[];a=a[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)");s=o=h.length;while(o--){f=h[o];if((r||v===f.origType)&&(!n||n.guid===f.guid)&&(!a||a.test(f.namespace))&&(!i||i===f.selector||i==="**"&&f.selector)){h.splice(o,1);if(f.selector){h.delegateCount--}if(c.remove){c.remove.call(e,f)}}}if(s&&!h.length){if(!c.teardown||c.teardown.call(e,p,m.handle)===false){T.removeEvent(e,d,m.handle)}delete u[d]}}if(T.isEmptyObject(u)){w.remove(e,"handle events")}},dispatch:function(e){var t,n,i,r,o,s,a=new Array(arguments.length),u=T.event.fix(e),l=(w.get(this,"events")||Object.create(null))[u.type]||[],f=T.event.special[u.type]||{};a[0]=u;for(t=1;t=1)){for(;l!==this;l=l.parentNode||this){if(l.nodeType===1&&!(e.type==="click"&&l.disabled===true)){o=[];s={};for(n=0;n-1:T.find(r,this,null,[l]).length}if(s[r]){o.push(i)}}if(o.length){a.push({elem:l,handlers:o})}}}}l=this;if(u\s*$/g;function We(e,t){if(l(e,"table")&&l(t.nodeType!==11?t:t.firstChild,"tr")){return T(e).children("tbody")[0]||e}return e}function Ne(e){e.type=(e.getAttribute("type")!==null)+"/"+e.type;return e}function Be(e){if((e.type||"").slice(0,5)==="true/"){e.type=e.type.slice(5)}else{e.removeAttribute("type")}return e}function ze(e,t){var n,i,r,o,s,a,u;if(t.nodeType!==1){return}if(w.hasData(e)){o=w.get(e);u=o.events;if(u){w.remove(t,"handle events");for(r in u){for(n=0,i=u[r].length;n1&&typeof d==="string"&&!v.checkClone&&Le.test(d)){return n.each(function(e){var t=n.eq(e);if(p){i[0]=d.call(this,e,t.html())}E(t,i,r,o)})}if(c){e=xe(i,n[0].ownerDocument,false,n,o);t=e.firstChild;if(e.childNodes.length===1){e=t}if(t||o){s=T.map(I(e,"script"),Ne);a=s.length;for(;f0){Re(s,!u&&I(e,"script"))}return a},cleanData:function(e){var t,n,i,r=T.event.special,o=0;for(;(n=e[o])!==undefined;o++){if(P(n)){if(t=n[w.expando]){if(t.events){for(i in t.events){if(r[i]){T.event.remove(n,i)}else{T.removeEvent(n,i,t.handle)}}}n[w.expando]=undefined}if(n[d.expando]){n[d.expando]=undefined}}}}});T.fn.extend({detach:function(e){return He(this,e,true)},remove:function(e){return He(this,e)},text:function(e){return f(this,function(e){return e===undefined?T.text(this):this.empty().each(function(){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){this.textContent=e}})},null,e,arguments.length)},append:function(){return E(this,arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=We(this,e);t.appendChild(e)}})},prepend:function(){return E(this,arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=We(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return E(this,arguments,function(e){if(this.parentNode){this.parentNode.insertBefore(e,this)}})},after:function(){return E(this,arguments,function(e){if(this.parentNode){this.parentNode.insertBefore(e,this.nextSibling)}})},empty:function(){var e,t=0;for(;(e=this[t])!=null;t++){if(e.nodeType===1){T.cleanData(I(e,false));e.textContent=""}}return this},clone:function(e,t){e=e==null?false:e;t=t==null?e:t;return this.map(function(){return T.clone(this,e,t)})},html:function(e){return f(this,function(e){var t=this[0]||{},n=0,i=this.length;if(e===undefined&&t.nodeType===1){return t.innerHTML}if(typeof e==="string"&&!Me.test(e)&&!x[(ke.exec(e)||["",""])[1].toLowerCase()]){e=T.htmlPrefilter(e);try{for(;n=0){u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-a-.5))||0}return u}function at(e,t,n){var i=je(e),r=!v.boxSizingReliable()||n,o=r&&T.css(e,"boxSizing",false,i)==="border-box",s=o,a=Ye(e,t,i),u="offset"+t[0].toUpperCase()+t.slice(1);if(Ue.test(a)){if(!n){return a}a="auto"}if((!v.boxSizingReliable()&&o||!v.reliableTrDimensions()&&l(e,"tr")||a==="auto"||!parseFloat(a)&&T.css(e,"display",false,i)==="inline")&&e.getClientRects().length){o=T.css(e,"boxSizing",false,i)==="border-box";s=u in e;if(s){a=e[u]}}a=parseFloat(a)||0;return a+st(e,t,n||(o?"border":"content"),s,i,a)+"px"}T.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ye(e,"opacity");return n===""?"1":n}}}},cssNumber:{animationIterationCount:true,columnCount:true,fillOpacity:true,flexGrow:true,flexShrink:true,fontWeight:true,gridArea:true,gridColumn:true,gridColumnEnd:true,gridColumnStart:true,gridRow:true,gridRowEnd:true,gridRowStart:true,lineHeight:true,opacity:true,order:true,orphans:true,widows:true,zIndex:true,zoom:true},cssProps:{},style:function(e,t,n,i){if(!e||e.nodeType===3||e.nodeType===8||!e.style){return}var r,o,s,a=h(t),u=nt.test(t),l=e.style;if(!u){t=et(a)}s=T.cssHooks[t]||T.cssHooks[a];if(n!==undefined){o=typeof n;if(o==="string"&&(r=p.exec(n))&&r[1]){n=_e(e,t,r);o="number"}if(n==null||n!==n){return}if(o==="number"&&!u){n+=r&&r[3]||(T.cssNumber[a]?"":"px")}if(!v.clearCloneStyle&&n===""&&t.indexOf("background")===0){l[t]="inherit"}if(!s||!("set"in s)||(n=s.set(e,n,i))!==undefined){if(u){l.setProperty(t,n)}else{l[t]=n}}}else{if(s&&"get"in s&&(r=s.get(e,false,i))!==undefined){return r}return l[t]}},css:function(e,t,n,i){var r,o,s,a=h(t),u=nt.test(t);if(!u){t=et(a)}s=T.cssHooks[t]||T.cssHooks[a];if(s&&"get"in s){r=s.get(e,true,n)}if(r===undefined){r=Ye(e,t,i)}if(r==="normal"&&t in rt){r=rt[t]}if(n===""||n){o=parseFloat(r);return n===true||isFinite(o)?o||0:r}return r}});T.each(["height","width"],function(e,l){T.cssHooks[l]={get:function(e,t,n){if(t){return tt.test(T.css(e,"display"))&&(!e.getClientRects().length||!e.getBoundingClientRect().width)?Ge(e,it,function(){return at(e,l,n)}):at(e,l,n)}},set:function(e,t,n){var i,r=je(e),o=!v.scrollboxSize()&&r.position==="absolute",s=o||n,a=s&&T.css(e,"boxSizing",false,r)==="border-box",u=n?st(e,l,n,a,r):0;if(a&&o){u-=Math.ceil(e["offset"+l[0].toUpperCase()+l.slice(1)]-parseFloat(r[l])-st(e,l,"border",false,r)-.5)}if(u&&(i=p.exec(t))&&(i[3]||"px")!=="px"){e.style[l]=t;t=T.css(e,l)}return ot(e,t,u)}}});T.cssHooks.marginLeft=Xe(v.reliableMarginLeft,function(e,t){if(t){return(parseFloat(Ye(e,"marginLeft"))||e.getBoundingClientRect().left-Ge(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}});T.each({margin:"",padding:"",border:"Width"},function(r,o){T.cssHooks[r+o]={expand:function(e){var t=0,n={},i=typeof e==="string"?e.split(" "):[e];for(;t<4;t++){n[r+S[t]+o]=i[t]||i[t-2]||i[0]}return n}};if(r!=="margin"){T.cssHooks[r+o].set=ot}});T.fn.extend({css:function(e,t){return f(this,function(e,t,n){var i,r,o={},s=0;if(Array.isArray(t)){i=je(e);r=t.length;for(;s1)}});function o(e,t,n,i,r){return new o.prototype.init(e,t,n,i,r)}T.Tween=o;o.prototype={constructor:o,init:function(e,t,n,i,r,o){this.elem=e;this.prop=n;this.easing=r||T.easing._default;this.options=t;this.start=this.now=this.cur();this.end=i;this.unit=o||(T.cssNumber[n]?"":"px")},cur:function(){var e=o.propHooks[this.prop];return e&&e.get?e.get(this):o.propHooks._default.get(this)},run:function(e){var t,n=o.propHooks[this.prop];if(this.options.duration){this.pos=t=T.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration)}else{this.pos=t=e}this.now=(this.end-this.start)*t+this.start;if(this.options.step){this.options.step.call(this.elem,this.now,this)}if(n&&n.set){n.set(this)}else{o.propHooks._default.set(this)}return this}};o.prototype.init.prototype=o.prototype;o.propHooks={_default:{get:function(e){var t;if(e.elem.nodeType!==1||e.elem[e.prop]!=null&&e.elem.style[e.prop]==null){return e.elem[e.prop]}t=T.css(e.elem,e.prop,"");return!t||t==="auto"?0:t},set:function(e){if(T.fx.step[e.prop]){T.fx.step[e.prop](e)}else if(e.elem.nodeType===1&&(T.cssHooks[e.prop]||e.elem.style[et(e.prop)]!=null)){T.style(e.elem,e.prop,e.now+e.unit)}else{e.elem[e.prop]=e.now}}}};o.propHooks.scrollTop=o.propHooks.scrollLeft={set:function(e){if(e.elem.nodeType&&e.elem.parentNode){e.elem[e.prop]=e.now}}};T.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"};T.fx=o.prototype.init;T.fx.step={};var q,ut,lt=/^(?:toggle|show|hide)$/,ft=/queueHooks$/;function ct(){if(ut){if(k.hidden===false&&C.requestAnimationFrame){C.requestAnimationFrame(ct)}else{C.setTimeout(ct,T.fx.interval)}T.fx.tick()}}function ht(){C.setTimeout(function(){q=undefined});return q=Date.now()}function dt(e,t){var n,i=0,r={height:e};t=t?1:0;for(;i<4;i+=2-t){n=S[i];r["margin"+n]=r["padding"+n]=e}if(t){r.opacity=r.width=e}return r}function pt(e,t,n){var i,r=(A.tweeners[t]||[]).concat(A.tweeners["*"]),o=0,s=r.length;for(;o1)},removeAttr:function(e){return this.each(function(){T.removeAttr(this,e)})}});T.extend({attr:function(e,t,n){var i,r,o=e.nodeType;if(o===3||o===8||o===2){return}if(typeof e.getAttribute==="undefined"){return T.prop(e,t,n)}if(o!==1||!T.isXMLDoc(e)){r=T.attrHooks[t.toLowerCase()]||(T.expr.match.bool.test(t)?yt:undefined)}if(n!==undefined){if(n===null){T.removeAttr(e,t);return}if(r&&"set"in r&&(i=r.set(e,n,t))!==undefined){return i}e.setAttribute(t,n+"");return n}if(r&&"get"in r&&(i=r.get(e,t))!==null){return i}i=T.find.attr(e,t);return i==null?undefined:i},attrHooks:{type:{set:function(e,t){if(!v.radioValue&&t==="radio"&&l(e,"input")){var n=e.value;e.setAttribute("type",t);if(n){e.value=n}return t}}}},removeAttr:function(e,t){var n,i=0,r=t&&t.match(R);if(r&&e.nodeType===1){while(n=r[i++]){e.removeAttribute(n)}}}});yt={set:function(e,t,n){if(t===false){T.removeAttr(e,n)}else{e.setAttribute(n,n)}return n}};T.each(T.expr.match.bool.source.match(/\w+/g),function(e,t){var s=gt[t]||T.find.attr;gt[t]=function(e,t,n){var i,r,o=t.toLowerCase();if(!n){r=gt[o];gt[o]=i;i=s(e,t,n)!=null?o:null;gt[o]=r}return i}});var Pt=/^(?:input|select|textarea|button)$/i,wt=/^(?:a|area)$/i;T.fn.extend({prop:function(e,t){return f(this,T.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[T.propFix[e]||e]})}});T.extend({prop:function(e,t,n){var i,r,o=e.nodeType;if(o===3||o===8||o===2){return}if(o!==1||!T.isXMLDoc(e)){t=T.propFix[t]||t;r=T.propHooks[t]}if(n!==undefined){if(r&&"set"in r&&(i=r.set(e,n,t))!==undefined){return i}return e[t]=n}if(r&&"get"in r&&(i=r.get(e,t))!==null){return i}return e[t]},propHooks:{tabIndex:{get:function(e){var t=T.find.attr(e,"tabindex");if(t){return parseInt(t,10)}if(Pt.test(e.nodeName)||wt.test(e.nodeName)&&e.href){return 0}return-1}}},propFix:{"for":"htmlFor","class":"className"}});if(!v.optSelected){T.propHooks.selected={get:function(e){var t=e.parentNode;if(t&&t.parentNode){t.parentNode.selectedIndex}return null},set:function(e){var t=e.parentNode;if(t){t.selectedIndex;if(t.parentNode){t.parentNode.selectedIndex}}}}}T.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){T.propFix[this.toLowerCase()]=this});function O(e){var t=e.match(R)||[];return t.join(" ")}function M(e){return e.getAttribute&&e.getAttribute("class")||""}function St(e){if(Array.isArray(e)){return e}if(typeof e==="string"){return e.match(R)||[]}return[]}T.fn.extend({addClass:function(t){var e,n,i,r,o,s,a,u=0;if(m(t)){return this.each(function(e){T(this).addClass(t.call(this,e,M(this)))})}e=St(t);if(e.length){while(n=this[u++]){r=M(n);i=n.nodeType===1&&" "+O(r)+" ";if(i){s=0;while(o=e[s++]){if(i.indexOf(" "+o+" ")<0){i+=o+" "}}a=O(i);if(r!==a){n.setAttribute("class",a)}}}}return this},removeClass:function(t){var e,n,i,r,o,s,a,u=0;if(m(t)){return this.each(function(e){T(this).removeClass(t.call(this,e,M(this)))})}if(!arguments.length){return this.attr("class","")}e=St(t);if(e.length){while(n=this[u++]){r=M(n);i=n.nodeType===1&&" "+O(r)+" ";if(i){s=0;while(o=e[s++]){while(i.indexOf(" "+o+" ")>-1){i=i.replace(" "+o+" "," ")}}a=O(i);if(r!==a){n.setAttribute("class",a)}}}}return this},toggleClass:function(r,t){var o=typeof r,s=o==="string"||Array.isArray(r);if(typeof t==="boolean"&&s){return t?this.addClass(r):this.removeClass(r)}if(m(r)){return this.each(function(e){T(this).toggleClass(r.call(this,e,M(this),t),t)})}return this.each(function(){var e,t,n,i;if(s){t=0;n=T(this);i=St(r);while(e=i[t++]){if(n.hasClass(e)){n.removeClass(e)}else{n.addClass(e)}}}else if(r===undefined||o==="boolean"){e=M(this);if(e){w.set(this,"__className__",e)}if(this.setAttribute){this.setAttribute("class",e||r===false?"":w.get(this,"__className__")||"")}}})},hasClass:function(e){var t,n,i=0;t=" "+e+" ";while(n=this[i++]){if(n.nodeType===1&&(" "+O(M(n))+" ").indexOf(t)>-1){return true}}return false}});var _t=/\r/g;T.fn.extend({val:function(n){var i,e,r,t=this[0];if(!arguments.length){if(t){i=T.valHooks[t.type]||T.valHooks[t.nodeName.toLowerCase()];if(i&&"get"in i&&(e=i.get(t,"value"))!==undefined){return e}e=t.value;if(typeof e==="string"){return e.replace(_t,"")}return e==null?"":e}return}r=m(n);return this.each(function(e){var t;if(this.nodeType!==1){return}if(r){t=n.call(this,e,T(this).val())}else{t=n}if(t==null){t=""}else if(typeof t==="number"){t+=""}else if(Array.isArray(t)){t=T.map(t,function(e){return e==null?"":e+""})}i=T.valHooks[this.type]||T.valHooks[this.nodeName.toLowerCase()];if(!i||!("set"in i)||i.set(this,t,"value")===undefined){this.value=t}})}});T.extend({valHooks:{option:{get:function(e){var t=T.find.attr(e,"value");return t!=null?t:O(T.text(e))}},select:{get:function(e){var t,n,i,r=e.options,o=e.selectedIndex,s=e.type==="select-one",a=s?null:[],u=s?o+1:r.length;if(o<0){i=u}else{i=s?o:0}for(;i-1){n=true}}if(!n){e.selectedIndex=-1}return o}}}});T.each(["radio","checkbox"],function(){T.valHooks[this]={set:function(e,t){if(Array.isArray(t)){return e.checked=T.inArray(T(e).val(),t)>-1}}};if(!v.checkOn){T.valHooks[this].get=function(e){return e.getAttribute("value")===null?"on":e.value}}});v.focusin="onfocusin"in C;var bt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};T.extend(T.event,{trigger:function(e,t,n,i){var r,o,s,a,u,l,f,c,h=[n||k],d=H.call(e,"type")?e.type:e,p=H.call(e,"namespace")?e.namespace.split("."):[];o=c=s=n=n||k;if(n.nodeType===3||n.nodeType===8){return}if(bt.test(d+T.event.triggered)){return}if(d.indexOf(".")>-1){p=d.split(".");d=p.shift();p.sort()}u=d.indexOf(":")<0&&"on"+d;e=e[T.expando]?e:new T.Event(d,typeof e==="object"&&e);e.isTrigger=i?2:3;e.namespace=p.join(".");e.rnamespace=e.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null;e.result=undefined;if(!e.target){e.target=n}t=t==null?[e]:T.makeArray(t,[e]);f=T.event.special[d]||{};if(!i&&f.trigger&&f.trigger.apply(n,t)===false){return}if(!i&&!f.noBubble&&!y(n)){a=f.delegateType||d;if(!bt.test(a+d)){o=o.parentNode}for(;o;o=o.parentNode){h.push(o);s=o}if(s===(n.ownerDocument||k)){h.push(s.defaultView||s.parentWindow||C)}}r=0;while((o=h[r++])&&!e.isPropagationStopped()){c=o;e.type=r>1?a:f.bindType||d;l=(w.get(o,"events")||Object.create(null))[e.type]&&w.get(o,"handle");if(l){l.apply(o,t)}l=u&&o[u];if(l&&l.apply&&P(o)){e.result=l.apply(o,t);if(e.result===false){e.preventDefault()}}}e.type=d;if(!i&&!e.isDefaultPrevented()){if((!f._default||f._default.apply(h.pop(),t)===false)&&P(n)){if(u&&m(n[d])&&!y(n)){s=n[u];if(s){n[u]=null}T.event.triggered=d;if(e.isPropagationStopped()){c.addEventListener(d,Ct)}n[d]();if(e.isPropagationStopped()){c.removeEventListener(d,Ct)}T.event.triggered=undefined;if(s){n[u]=s}}}}return e.result},simulate:function(e,t,n){var i=T.extend(new T.Event,n,{type:e,isSimulated:true});T.event.trigger(i,null,t)}});T.fn.extend({trigger:function(e,t){return this.each(function(){T.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n){return T.event.trigger(e,t,n,true)}}});if(!v.focusin){T.each({focus:"focusin",blur:"focusout"},function(n,i){var r=function(e){T.event.simulate(i,e.target,T.event.fix(e))};T.event.special[i]={setup:function(){var e=this.ownerDocument||this.document||this,t=w.access(e,i);if(!t){e.addEventListener(n,r,true)}w.access(e,i,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=w.access(e,i)-1;if(!t){e.removeEventListener(n,r,true);w.remove(e,i)}else{w.access(e,i,t)}}}})}var kt=C.location;var Tt={guid:Date.now()};var Rt=/\?/;T.parseXML=function(e){var t,n;if(!e||typeof e!=="string"){return null}try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(i){}n=t&&t.getElementsByTagName("parsererror")[0];if(!t||n){T.error("Invalid XML: "+(n?T.map(n.childNodes,function(e){return e.textContent}).join("\n"):e))}return t};var Dt=/\[\]$/,xt=/\r?\n/g,It=/^(?:submit|button|image|reset|file)$/i,Et=/^(?:input|select|textarea|keygen)/i;function qt(n,e,i,r){var t;if(Array.isArray(e)){T.each(e,function(e,t){if(i||Dt.test(n)){r(n,t)}else{qt(n+"["+(typeof t==="object"&&t!=null?e:"")+"]",t,i,r)}})}else if(!i&&g(e)==="object"){for(t in e){qt(n+"["+t+"]",e[t],i,r)}}else{r(n,e)}}T.param=function(e,t){var n,i=[],r=function(e,t){var n=m(t)?t():t;i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(n==null?"":n)};if(e==null){return""}if(Array.isArray(e)||e.jquery&&!T.isPlainObject(e)){T.each(e,function(){r(this.name,this.value)})}else{for(n in e){qt(n,e[n],t,r)}}return i.join("&")};T.fn.extend({serialize:function(){return T.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=T.prop(this,"elements");return e?T.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!T(this).is(":disabled")&&Et.test(this.nodeName)&&!It.test(e)&&(this.checked||!r.test(e))}).map(function(e,t){var n=T(this).val();if(n==null){return null}if(Array.isArray(n)){return T.map(n,function(e){return{name:t.name,value:e.replace(xt,"\r\n")}})}return{name:t.name,value:n.replace(xt,"\r\n")}}).get()}});var At=/%20/g,Ot=/#.*$/,Mt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ft=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Wt=/^(?:GET|HEAD)$/,Nt=/^\/\//,Bt={},zt={},Jt="*/".concat("*"),Ht=k.createElement("a");Ht.href=kt.href;function Ut(o){return function(e,t){if(typeof e!=="string"){t=e;e="*"}var n,i=0,r=e.toLowerCase().match(R)||[];if(m(t)){while(n=r[i++]){if(n[0]==="+"){n=n.slice(1)||"*";(o[n]=o[n]||[]).unshift(t)}else{(o[n]=o[n]||[]).push(t)}}}}}function jt(t,r,o,s){var a={},u=t===zt;function l(e){var i;a[e]=true;T.each(t[e]||[],function(e,t){var n=t(r,o,s);if(typeof n==="string"&&!u&&!a[n]){r.dataTypes.unshift(n);l(n);return false}else if(u){return!(i=n)}});return i}return l(r.dataTypes[0])||!a["*"]&&l("*")}function Gt(e,t){var n,i,r=T.ajaxSettings.flatOptions||{};for(n in t){if(t[n]!==undefined){(r[n]?e:i||(i={}))[n]=t[n]}}if(i){T.extend(true,e,i)}return e}function Vt(e,t,n){var i,r,o,s,a=e.contents,u=e.dataTypes;while(u[0]==="*"){u.shift();if(i===undefined){i=e.mimeType||t.getResponseHeader("Content-Type")}}if(i){for(r in a){if(a[r]&&a[r].test(i)){u.unshift(r);break}}}if(u[0]in n){o=u[0]}else{for(r in n){if(!u[0]||e.converters[r+" "+u[0]]){o=r;break}if(!s){s=r}}o=o||s}if(o){if(o!==u[0]){u.unshift(o)}return n[o]}}function Yt(e,t,n,i){var r,o,s,a,u,l={},f=e.dataTypes.slice();if(f[1]){for(s in e.converters){l[s.toLowerCase()]=e.converters[s]}}o=f.shift();while(o){if(e.responseFields[o]){n[e.responseFields[o]]=t}if(!u&&i&&e.dataFilter){t=e.dataFilter(t,e.dataType)}u=o;o=f.shift();if(o){if(o==="*"){o=u}else if(u!=="*"&&u!==o){s=l[u+" "+o]||l["* "+o];if(!s){for(r in l){a=r.split(" ");if(a[1]===o){s=l[u+" "+a[0]]||l["* "+a[0]];if(s){if(s===true){s=l[r]}else if(l[r]!==true){o=a[0];f.unshift(a[1])}break}}}}if(s!==true){if(s&&e["throws"]){t=s(t)}else{try{t=s(t)}catch(c){return{state:"parsererror",error:s?c:"No conversion from "+u+" to "+o}}}}}}}return{state:"success",data:t}}T.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:kt.href,type:"GET",isLocal:Ft.test(kt.protocol),global:true,processData:true,"async":true,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":true,"text json":JSON.parse,"text xml":T.parseXML},flatOptions:{url:true,context:true}},ajaxSetup:function(e,t){return t?Gt(Gt(e,T.ajaxSettings),t):Gt(T.ajaxSettings,e)},ajaxPrefilter:Ut(Bt),ajaxTransport:Ut(zt),ajax:function(e,t){if(typeof e==="object"){t=e;e=undefined}t=t||{};var f,c,h,n,d,i,p,v,r,o,m=T.ajaxSetup({},t),y=m.context||m,g=m.context&&(y.nodeType||y.jquery)?T(y):T.event,P=T.Deferred(),w=T.Callbacks("once memory"),S=m.statusCode||{},s={},a={},u="canceled",_={readyState:0,getResponseHeader:function(e){var t;if(p){if(!n){n={};while(t=Lt.exec(h)){n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}}t=n[e.toLowerCase()+" "]}return t==null?null:t.join(", ")},getAllResponseHeaders:function(){return p?h:null},setRequestHeader:function(e,t){if(p==null){e=a[e.toLowerCase()]=a[e.toLowerCase()]||e;s[e]=t}return this},overrideMimeType:function(e){if(p==null){m.mimeType=e}return this},statusCode:function(e){var t;if(e){if(p){_.always(e[_.status])}else{for(t in e){S[t]=[S[t],e[t]]}}}return this},abort:function(e){var t=e||u;if(f){f.abort(t)}l(0,t);return this}};P.promise(_);m.url=((e||m.url||kt.href)+"").replace(Nt,kt.protocol+"//");m.type=t.method||t.type||m.method||m.type;m.dataTypes=(m.dataType||"*").toLowerCase().match(R)||[""];if(m.crossDomain==null){i=k.createElement("a");try{i.href=m.url;i.href=i.href;m.crossDomain=Ht.protocol+"//"+Ht.host!==i.protocol+"//"+i.host}catch(b){m.crossDomain=true}}if(m.data&&m.processData&&typeof m.data!=="string"){m.data=T.param(m.data,m.traditional)}jt(Bt,m,t,_);if(p){return _}v=T.event&&m.global;if(v&&T.active++===0){T.event.trigger("ajaxStart")}m.type=m.type.toUpperCase();m.hasContent=!Wt.test(m.type);c=m.url.replace(Ot,"");if(!m.hasContent){o=m.url.slice(c.length);if(m.data&&(m.processData||typeof m.data==="string")){c+=(Rt.test(c)?"&":"?")+m.data;delete m.data}if(m.cache===false){c=c.replace(Mt,"$1");o=(Rt.test(c)?"&":"?")+"_="+Tt.guid+++o}m.url=c+o}else if(m.data&&m.processData&&(m.contentType||"").indexOf("application/x-www-form-urlencoded")===0){m.data=m.data.replace(At,"+")}if(m.ifModified){if(T.lastModified[c]){_.setRequestHeader("If-Modified-Since",T.lastModified[c])}if(T.etag[c]){_.setRequestHeader("If-None-Match",T.etag[c])}}if(m.data&&m.hasContent&&m.contentType!==false||t.contentType){_.setRequestHeader("Content-Type",m.contentType)}_.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+(m.dataTypes[0]!=="*"?", "+Jt+"; q=0.01":""):m.accepts["*"]);for(r in m.headers){_.setRequestHeader(r,m.headers[r])}if(m.beforeSend&&(m.beforeSend.call(y,_,m)===false||p)){return _.abort()}u="abort";w.add(m.complete);_.done(m.success);_.fail(m.error);f=jt(zt,m,t,_);if(!f){l(-1,"No Transport")}else{_.readyState=1;if(v){g.trigger("ajaxSend",[_,m])}if(p){return _}if(m["async"]&&m.timeout>0){d=C.setTimeout(function(){_.abort("timeout")},m.timeout)}try{p=false;f.send(s,l)}catch(b){if(p){throw b}l(-1,b)}}function l(e,t,n,i){var r,o,s,a,u,l=t;if(p){return}p=true;if(d){C.clearTimeout(d)}f=undefined;h=i||"";_.readyState=e>0?4:0;r=e>=200&&e<300||e===304;if(n){a=Vt(m,_,n)}if(!r&&T.inArray("script",m.dataTypes)>-1&&T.inArray("json",m.dataTypes)<0){m.converters["text script"]=function(){}}a=Yt(m,a,_,r);if(r){if(m.ifModified){u=_.getResponseHeader("Last-Modified");if(u){T.lastModified[c]=u}u=_.getResponseHeader("etag");if(u){T.etag[c]=u}}if(e===204||m.type==="HEAD"){l="nocontent"}else if(e===304){l="notmodified"}else{l=a.state;o=a.data;s=a.error;r=!s}}else{s=l;if(e||!l){l="error";if(e<0){e=0}}}_.status=e;_.statusText=(t||l)+"";if(r){P.resolveWith(y,[o,l,_])}else{P.rejectWith(y,[_,l,s])}_.statusCode(S);S=undefined;if(v){g.trigger(r?"ajaxSuccess":"ajaxError",[_,m,r?o:s])}w.fireWith(y,[_,l]);if(v){g.trigger("ajaxComplete",[_,m]);if(!--T.active){T.event.trigger("ajaxStop")}}}return _},getJSON:function(e,t,n){return T.get(e,t,n,"json")},getScript:function(e,t){return T.get(e,undefined,t,"script")}});T.each(["get","post"],function(e,r){T[r]=function(e,t,n,i){if(m(t)){i=i||n;n=t;t=undefined}return T.ajax(T.extend({url:e,type:r,dataType:i,data:t,success:n},T.isPlainObject(e)&&e))}});T.ajaxPrefilter(function(e){var t;for(t in e.headers){if(t.toLowerCase()==="content-type"){e.contentType=e.headers[t]||""}}});T._evalUrl=function(e,t,n){return T.ajax({url:e,type:"GET",dataType:"script",cache:true,"async":false,global:false,converters:{"text script":function(){}},dataFilter:function(e){T.globalEval(e,t,n)}})};T.fn.extend({wrapAll:function(e){var t;if(this[0]){if(m(e)){e=e.call(this[0])}t=T(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){t.insertBefore(this[0])}t.map(function(){var e=this;while(e.firstElementChild){e=e.firstElementChild}return e}).append(this)}return this},wrapInner:function(n){if(m(n)){return this.each(function(e){T(this).wrapInner(n.call(this,e))})}return this.each(function(){var e=T(this),t=e.contents();if(t.length){t.wrapAll(n)}else{e.append(n)}})},wrap:function(t){var n=m(t);return this.each(function(e){T(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){this.parent(e).not("body").each(function(){T(this).replaceWith(this.childNodes)});return this}});T.expr.pseudos.hidden=function(e){return!T.expr.pseudos.visible(e)};T.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)};T.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Xt={0:200,1223:204},Zt=T.ajaxSettings.xhr();v.cors=!!Zt&&"withCredentials"in Zt;v.ajax=Zt=!!Zt;T.ajaxTransport(function(o){var s,a;if(v.cors||Zt&&!o.crossDomain){return{send:function(e,t){var n,i=o.xhr();i.open(o.type,o.url,o["async"],o.username,o.password);if(o.xhrFields){for(n in o.xhrFields){i[n]=o.xhrFields[n]}}if(o.mimeType&&i.overrideMimeType){i.overrideMimeType(o.mimeType)}if(!o.crossDomain&&!e["X-Requested-With"]){e["X-Requested-With"]="XMLHttpRequest"}for(n in e){i.setRequestHeader(n,e[n])}s=function(e){return function(){if(s){s=a=i.onload=i.onerror=i.onabort=i.ontimeout=i.onreadystatechange=null;if(e==="abort"){i.abort()}else if(e==="error"){if(typeof i.status!=="number"){t(0,"error")}else{t(i.status,i.statusText)}}else{t(Xt[i.status]||i.status,i.statusText,(i.responseType||"text")!=="text"||typeof i.responseText!=="string"?{binary:i.response}:{text:i.responseText},i.getAllResponseHeaders())}}}};i.onload=s();a=i.onerror=i.ontimeout=s("error");if(i.onabort!==undefined){i.onabort=a}else{i.onreadystatechange=function(){if(i.readyState===4){C.setTimeout(function(){if(s){a()}})}}}s=s("abort");try{i.send(o.hasContent&&o.data||null)}catch(r){if(s){throw r}}},abort:function(){if(s){s()}}}}});T.ajaxPrefilter(function(e){if(e.crossDomain){e.contents.script=false}});T.ajaxSetup({accepts:{script:"text/javascript, application/javascript, "+"application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){T.globalEval(e);return e}}});T.ajaxPrefilter("script",function(e){if(e.cache===undefined){e.cache=false}if(e.crossDomain){e.type="GET"}});T.ajaxTransport("script",function(n){if(n.crossDomain||n.scriptAttrs){var i,r;return{send:function(e,t){i=T(" diff --git a/developedcode/driverlessCarold/src/api/editor.js b/developedcode/driverlessCarold/src/api/editor.js new file mode 100644 index 0000000..460e022 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/editor.js @@ -0,0 +1,38 @@ +import _axios from "@/plugins/axios"; +//获机器人端对应瓦片地图的详细信息 +/* map=地图名 */ +export function getDetails(params) { + return _axios({ + url: `/v1/tilemap/details`, + method: "GET", + params, + }); +} +//获机器人端对应瓦片地图的渲染信息 +/* map=地图名 */ +export function getGeojson(params) { + return _axios({ + url: `/v1/roadmap/geojson`, + method: "GET", + params, + }); +} +//保存器人端对应瓦片地图 +/* map=地图名 */ +export function postGeojson(data) { + return _axios({ + url: `/v1/roadmap/geojson`, + method: "POST", + data, + }); +} +//获机器人端对应地图中的瓦片图片 +/* 层级 : 起始值为1,代表第一层级 + x索引 : 列索引,起始值为0,增长方向为垂直向下 + y索引 : 行索引,起始值为0,增长方向为水平向右 */ +export function getTilemap(data) { + return _axios({ + url: `/v1/tilemap/tile/${data.mapName}/${data.zoom}/${xIndex}/${yIndex}`, + method: "GET", + }); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttability.js b/developedcode/driverlessCarold/src/api/ldmqttability.js new file mode 100644 index 0000000..1fb5b5b --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttability.js @@ -0,0 +1,11 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// 远程调用机载能力 /ability/function/action/exec | 订阅 | QoS2 | Retain0 +export function actionExec(callback) { + return startMqtt( + "ability/function/action/exec", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttbuild.js b/developedcode/driverlessCarold/src/api/ldmqttbuild.js new file mode 100644 index 0000000..e27037f --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttbuild.js @@ -0,0 +1,63 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); +//订阅地图状态 +export function mappingState(callback) { + return startMqtt("slam/mapping/state", { qos: 0 }, callback); +} + +//取消订阅地图状态 +export function endMappingState(callback) { + return endMqtt("slam/mapping/state"); +} + +//订阅构建进程 +export function recordProgress(callback) { + return startMqtt("map/record/progress", { qos: 2, retain: 0 }, callback); +} + +//取消订阅订阅构建进程 +export function endRecordProgress(callback) { + return endMqtt("map/record/progress"); +} +//订阅当前地图 +export function current_map(callback) { + return startMqtt("map/property/current_map", { qos: 2, retain: 1 }, callback); +} +//取消订阅当前地图 +export function endCurrent_map(callback) { + return endMqtt("map/property/current_map"); +} + +// 构建地图 slam/mapping/action/start | 发布 | QoS2 | Retain0 +export function pubSlamStart(map, map_type) { + return pubCommonFn( + "slam/mapping/action/start", + { + args: [map, map_type], + }, + 2, + 0 + ); +} +// 结束构建地图 slam/mapping/action/finish | 发布 | QoS2 | Retain0 +export function pubSlamFinish() { + return pubCommonFn( + "slam/mapping/action/finish", + { + args: null, + }, + 2, + 0 + ); +} +// 取消构建地图 slam/mapping/action/cancel | 发布 | QoS2 | Retain0 +export function pubSlamCancel(map, map_type) { + return pubCommonFn( + "slam/mapping/action/cancel", + { + args: null, + }, + 2, + 0 + ); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttio.js b/developedcode/driverlessCarold/src/api/ldmqttio.js new file mode 100644 index 0000000..2901574 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttio.js @@ -0,0 +1,11 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// IO量操作 /io/common/state/action/set | 订阅 | QoS2 | Retain0 +export function ioActionSet(callback) { + return startMqtt( + "io/common/state/action/set", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttlocalization.js b/developedcode/driverlessCarold/src/api/ldmqttlocalization.js new file mode 100644 index 0000000..501d908 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttlocalization.js @@ -0,0 +1,36 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// 机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function locPose(callback) { + return startMqtt("localization/pose", { qos: 0, retain: 0 }, callback); +} +// 取消机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function endLocPose() { + return endMqtt("localization/pose"); +} +// 位姿初始化 /localization/action/init | 订阅 | QoS2 | Retain0 +export function actionInit(x, y, yaw, callback) { + return pubCommonFn( + "localization/action/init", + { + args: [ + { + pose: { + xyz: [x, y, 0], + rpy: [0, 0, yaw], + blh: null, + }, + }, + ], + }, + 2, + 0, + callback + ); +} + +// 取消位姿初始化 /localization/action/init | 订阅 | QoS2 | Retain0 +export function endActionInit() { + return startMqtt("localization/action/init"); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttmessage.js b/developedcode/driverlessCarold/src/api/ldmqttmessage.js new file mode 100644 index 0000000..8dab847 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttmessage.js @@ -0,0 +1,34 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + + + +// 机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function locPose(callback) { + return startMqtt("localization/pose", { qos: 0, retain: 0 }, callback); +} + +// 错误消息 [ /message/error | 发布 | QoS2 | Retain0 ] +export function messageError(callback) { + return startMqtt("message/error", { qos: 2, retain: 0 }, callback); +} +// 警告消息 [ /message/warn | 发布 | QoS2 | Retain0 ] +export function messageWarn(callback) { + return startMqtt("message/warn", { qos: 2, retain: 0 }, callback); +} +// 日志消息 [ /message/info | 发布 | QoS0 | Retain0 ] +export function messageInfo(callback) { + return startMqtt("message/info", { qos: 0, retain: 0 }, callback); +} +// 错误消息 [ /message/error | 发布 | QoS2 | Retain0 ] +export function endMessageError(callback) { + return endMqtt("message/error"); +} +// 警告消息 [ /message/warn | 发布 | QoS2 | Retain0 ] +export function endMessageWarn(callback) { + return endMqtt("message/warn"); +} +// 日志消息 [ /message/info | 发布 | QoS0 | Retain0 ] +export function endMessageInfo(callback) { + return endMqtt("message/info"); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttnavigation.js b/developedcode/driverlessCarold/src/api/ldmqttnavigation.js new file mode 100644 index 0000000..c235dff --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttnavigation.js @@ -0,0 +1,83 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// // 导航控制- 开启导航 /navigation/stack/action/start | 订阅 | QoS2 | Retain0 +// export function subActionStart(callback) { +// return startMqtt( +// "task/procedure/action/start/reply", +// { qos: 2, retain: 0 }, +// callback +// ); +// } +// 导航控制- 结束导航 /navigation/stack/action/stop | 订阅 | QoS2 | Retain0 +export function actionStop() { + return pubCommonFn( + "navigation/stack/action/stop", + { + args: null, + }, + 2, + 0 + ); +} +// 导航控制- 重启导航 /navigation/stack/action/restart | 订阅 | QoS2 | Retain0 +export function actionRestart(mapName) { + return pubCommonFn( + "navigation/stack/action/restart", + { + args: [mapName], + }, + 2, + 0 + ); +} +// 前往目标点 [ /task/target/action/goto | 订阅 | QoS2 | Retain0 ] +export function actionGoto(callback) { + return startMqtt("task/target/action/goto", { qos: 2, retain: 0 }, callback); +} +// 到达目标点 [ /task/target/action/arrive | 订阅 | QoS2 | Retain1 ] +export function actionArrive(callback) { + return startMqtt("task/target/event/arrive", { qos: 2, retain: 1 }, callback); +} +// 重启导航 [ task/procedure/action/start | 订阅 | QoS2 | Retain0 ] +export function actionStart(map, task) { + return pubCommonFn( + "task/procedure/action/start", + { + args: [ + { + roadmap: map, + task: task, + }, + ], + }, + 2, + 0 + ); +} +// 继续任务 [ /task/procedure/action/resume | 订阅 | QoS2 | Retain0 ] +export function actionResume(callback) { + return startMqtt( + "task/procedure/action/resume", + { qos: 2, retain: 0 }, + callback + ); +} + +// 暂停任务 [ /task/procedure/action/pause | 订阅 | QoS1 | Retain0 ] +export function actionPause(callback) { + return startMqtt( + "task/procedure/action/pause", + { qos: 1, retain: 0 }, + callback + ); +} + +// 取消任务 [ /task/procedure/action/cancel | 订阅 | QoS1 | Retain0 ] +export function actionCancel(callback) { + return startMqtt( + "task/procedure/action/cancel", + { qos: 1, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttplanning.js b/developedcode/driverlessCarold/src/api/ldmqttplanning.js new file mode 100644 index 0000000..03dfb88 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttplanning.js @@ -0,0 +1,19 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// 路径规划 /planning/service/plan/request | 订阅 | QoS2 | Retain0 +export function actionPlant(callback) { + return startMqtt( + "planning/service/plan/request", + { qos: 2, retain: 0 }, + callback + ); +} +// 遇障重规划 /planning/action/replan | 订阅 | QoS2 | Retain0 +export function actionReplan(callback) { + return startMqtt( + "planning/action/replan", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/driverlessCarold/src/api/ldmqttsensor.js b/developedcode/driverlessCarold/src/api/ldmqttsensor.js new file mode 100644 index 0000000..aa38711 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/ldmqttsensor.js @@ -0,0 +1,12 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// 电池信息 sensor/battery | 订阅 | QoS2 | Retain0 +export function sensorBattery(callback) { + return startMqtt("sensor/battery", { qos: 2, retain: 0 }, callback); +} + +// 取消电池信息 sensor/battery | 订阅 | QoS2 | Retain0 +export function endSensorBattery() { + return endMqtt("sensor/battery"); +} diff --git a/developedcode/driverlessCarold/src/api/map.js b/developedcode/driverlessCarold/src/api/map.js new file mode 100644 index 0000000..7d42f87 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/map.js @@ -0,0 +1,116 @@ +import _axios from "@/plugins/axios"; +//获取地图列表 +export function getMapList() { + return _axios({ + url: `/v1/map/list`, + method: "get", + }); +} +//获取当前地图 +export function getMapUsing() { + return { + data: { + status: true, + name: "ys202011_hc", + }, + }; +} +//新建地图 +export function createMap(data) { + return _axios({ + url: `/v1/map/create`, + method: "POST", + data, + }); +} +//获取地图缩略图 +// map=地图名 +export function getMapThumbnail(params) { + return { + data: { + status: true, + name: "图片", + }, + }; +} +//地图重命名 +/* { + "map" : "立得厂区地图", + "rename": "厂房室内地图" +} */ +export function postMapRename(data) { + return _axios({ + url: `/v1/map/rename`, + method: "post", + data, + }); +} +//删除地图工程 +/* { + "map" : "立得厂区地图" +} */ +export function delMap(data) { + return _axios({ + url: `/v1/map/delete`, + method: "delete", + data, + }); +} +//地图工程下载前压缩 +/* { + "map" : "立得厂区地图", + "ignore": ['pcap'] +} */ +export function postMapExportCompress(data) { + return _axios({ + url: `/v1/map/export/compress`, + method: "post", + data, + }); +} +//停止创建 +// map=地图名 +export function postRecordStop(data) { + return _axios({ + url: `/v1/map/record/stop`, + method: "POST", + data, + }); +} +//停止构建 +// map=地图名 +export function postBuildStop(data) { + return _axios({ + url: `/v1/map/build/stop`, + method: "POST", + data, + }); +} +//导入地图工程 +// filedata=地图工程压缩包文件内容 +export function postMapImport(data) { + return _axios({ + url: `/v1/map/import`, + method: "post", + headers: { + "Content-Type": "multipart/form-data", + }, + data, + }); +} +//地图工程组件列表 +// map=地图名 +export function getMapComponents(params) { + return _axios({ + url: `/v1/map/components`, + method: "get", + params, + }); +} +//地图工程任意文件获取 +/* 一个地图工程包含许多文件,如路网、地图瓦片、八叉树地图等,可以下载一个地图工程, +查看具体目录文件结构,本接口用于获取指定地图工程目录下的任意文件, +如/v1/map/file/map_test/tilemap/0/0.png,获取map_test地图工程tilemap/0/目录下的0.png文件。 */ +export function getMapFile(mapName) { + return `/v1/tilemap/tile/${mapName}/{z}/{x}/{y}.png`; +} diff --git a/developedcode/driverlessCarold/src/api/nav.js b/developedcode/driverlessCarold/src/api/nav.js new file mode 100644 index 0000000..a53d961 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/nav.js @@ -0,0 +1,69 @@ +import _axios from "@/plugins/axios"; +//生成任务 +/* { + "map": "guangchang", + "path": "1", + "coord_type": "local", + "cron": "00 55 15 ? * 1 *", + "coord": [ + [ + 2.33, + -6.9 + ] + ], + "plan": [ + "free" + ], + "repeate": 1 +} */ +export function postV1Path(data) { + return _axios({ + url: `/v1/path`, + method: "POST", + data, + }); +} +//获取任务列表 +/* { + "map": "guangchang", + "path": "1" +} */ +export function getV1Path(params) { + return _axios({ + url: `/v1/path/list`, + method: "GET", + params, + }); +} +//获取当前任务 +/* { + "map": "guangchang", + "path": "1" +} */ +export function getV1(params) { + return _axios({ + url: `/v1/path`, + method: "GET", + params, + }); +} + +//删除任务 +/* { + "map": "guangchang", + "path": "1" +} */ +export function delV1Path(data) { + return _axios({ + url: `/v1/path`, + method: "DELETE", + data, + }); +} +export function udp(data) { + return _axios({ + url: `/udp`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarold/src/api/player.js b/developedcode/driverlessCarold/src/api/player.js new file mode 100644 index 0000000..c51bb21 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/player.js @@ -0,0 +1,9 @@ +import _axios from "@/plugins/axios"; +//获取地图列表 +export function getPreviewUrl(params) { + return _axios({ + url: `/ay-video-manage/video/monitor/getRealTimeMonitorVideo`, + method: "post", + params, + }); +} diff --git a/developedcode/driverlessCarold/src/api/roadmap.js b/developedcode/driverlessCarold/src/api/roadmap.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/driverlessCarold/src/api/roadmap.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarold/src/api/robot.js b/developedcode/driverlessCarold/src/api/robot.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/driverlessCarold/src/api/robot.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarold/src/api/sensing.js b/developedcode/driverlessCarold/src/api/sensing.js new file mode 100644 index 0000000..fa76eab --- /dev/null +++ b/developedcode/driverlessCarold/src/api/sensing.js @@ -0,0 +1,5 @@ +import axios from "axios"; +//获取地图列表 +export function getPointcloud3d() { + return axios.get(`/v1/sensor/pointcloud/3d`, { responseType: "arraybuffer" }); +} diff --git a/developedcode/driverlessCarold/src/api/tilemap.js b/developedcode/driverlessCarold/src/api/tilemap.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/driverlessCarold/src/api/tilemap.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/driverlessCarold/src/api/user.js b/developedcode/driverlessCarold/src/api/user.js new file mode 100644 index 0000000..c6cf652 --- /dev/null +++ b/developedcode/driverlessCarold/src/api/user.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; + +//登录 +export function login(data) { + return _axios({ + url: `v1/user/auth`, + method: "POST", + data, + }); +} +//修改用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/v1/user/info`, + method: "post", + data, + }); +} +//获取机器人MQTT信息 +export function getRobotInfo() { + return _axios({ + url: `/v1/robot/mqtt`, + method: "get", + }); +} diff --git a/developedcode/driverlessCarold/src/assets/img/dir_backward.png b/developedcode/driverlessCarold/src/assets/img/dir_backward.png new file mode 100644 index 0000000..fd4b924 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/dir_backward.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/dir_forward.png b/developedcode/driverlessCarold/src/assets/img/dir_forward.png new file mode 100644 index 0000000..6686959 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/dir_forward.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/dir_two_way.png b/developedcode/driverlessCarold/src/assets/img/dir_two_way.png new file mode 100644 index 0000000..263d6c0 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/dir_two_way.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/login-bg.jpg b/developedcode/driverlessCarold/src/assets/img/login-bg.jpg new file mode 100644 index 0000000..97ba68e Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/login-bg.jpg differ diff --git a/developedcode/driverlessCarold/src/assets/img/login-logo.png b/developedcode/driverlessCarold/src/assets/img/login-logo.png new file mode 100644 index 0000000..da5063d Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/login-logo.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/login-welcom.png b/developedcode/driverlessCarold/src/assets/img/login-welcom.png new file mode 100644 index 0000000..f490738 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/login-welcom.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/map-building.png b/developedcode/driverlessCarold/src/assets/img/map-building.png new file mode 100644 index 0000000..363ffb3 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/map-building.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/map-recording.png b/developedcode/driverlessCarold/src/assets/img/map-recording.png new file mode 100644 index 0000000..adc4d85 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/map-recording.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/map-unavailable.png b/developedcode/driverlessCarold/src/assets/img/map-unavailable.png new file mode 100644 index 0000000..509fa26 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/map-unavailable.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/normal_point.png b/developedcode/driverlessCarold/src/assets/img/normal_point.png new file mode 100644 index 0000000..f2756a7 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/normal_point.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/robot.png b/developedcode/driverlessCarold/src/assets/img/robot.png new file mode 100644 index 0000000..2f16c7f Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/robot.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/target.png b/developedcode/driverlessCarold/src/assets/img/target.png new file mode 100644 index 0000000..3e1502d Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/target.png differ diff --git a/developedcode/driverlessCarold/src/assets/img/target_filled.png b/developedcode/driverlessCarold/src/assets/img/target_filled.png new file mode 100644 index 0000000..c2e8da8 Binary files /dev/null and b/developedcode/driverlessCarold/src/assets/img/target_filled.png differ diff --git a/developedcode/driverlessCarold/src/assets/json/mapdetail.json b/developedcode/driverlessCarold/src/assets/json/mapdetail.json new file mode 100644 index 0000000..f915502 --- /dev/null +++ b/developedcode/driverlessCarold/src/assets/json/mapdetail.json @@ -0,0 +1,13 @@ +{ + "status": true, + "min_zoom": 1, + "projection": { + "extent": [ + -76.3218753, + -128.075505, + 333.27812470000003, + 281.524495 + ] + }, + "layer_cnt": 5 +} \ No newline at end of file diff --git a/developedcode/driverlessCarold/src/assets/json/mapgeo.json b/developedcode/driverlessCarold/src/assets/json/mapgeo.json new file mode 100644 index 0000000..52eaf4e --- /dev/null +++ b/developedcode/driverlessCarold/src/assets/json/mapgeo.json @@ -0,0 +1,11357 @@ +{ + "status": true, + "type": "FeatureCollection", + "features": [ + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.33, + 109.2, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_209" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 114.74, + 120.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_210" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 123.98652741411871, + 39.621348055594005 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_65", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 116.89, + 38.99, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_190" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 128.22, + 40.64 + ], + [ + 163.39, + 40.36 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_236", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_202", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 128.22, + 40.64, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_206" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163.39, + 40.36, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_202" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 128.22, + 40.64 + ], + [ + 121.92, + 40.99 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_20", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 122.33, + 109.2 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_237", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_209" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.07, + 51.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_207" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.13, + 32.63, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_189" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 164.67, + 38.38 + ], + [ + 128.02, + 38.59 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_272", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_274", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_275" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 121.62737243638458, + 39.30414138493709 + ], + [ + 122.13, + 32.63 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_14", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_189", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 164.67, + 38.38 + ], + [ + 164.67, + 38.38 + ], + [ + 169.3094360602535, + 38.252569042998665 + ], + [ + 169.3, + 32.79 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_52", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_237", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_275" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 169.3, + 32.79, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_237" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164.67, + 38.38, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_275" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 128.02, + 38.59, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_274" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 128.02, + 38.59 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_278", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_274", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 74.74, + 114.74 + ], + [ + 74.36, + 43.76 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_233", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_195", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_197" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.74, + 114.74, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_197" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 78.12, + 120.27 + ], + [ + 74.12390249308922, + 121.12522557182305 + ], + [ + 74.74, + 114.74 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_67", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_197", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_198" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 78.12, + 120.27, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_198" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 78.12, + 120.27 + ], + [ + 114.74, + 120.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_238", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_210", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_198" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 68.75, + 119.94 + ], + [ + 74.8132454527776, + 119.94006080401383 + ], + [ + 74.74, + 114.74 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_42", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_197", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_261" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 68.75, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_261" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 114.74, + 120.78 + ], + [ + 122.27, + 120.28 + ], + [ + 122.33, + 109.2 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_21", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_209", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_210" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 79.05, + 38.77 + ], + [ + 74.41829350632814, + 38.335181813034936 + ], + [ + 74.36, + 43.76 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_62", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_195", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_192" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.36, + 43.76 + ], + [ + 74.99125979522887, + 38.03407766099702 + ], + [ + 66.75, + 38.85 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_64", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_280", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_195" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 79.05, + 38.77 + ], + [ + 116.89, + 38.99 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_229", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_190", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_192" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 79.05, + 38.77, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_192" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 66.75, + 38.85 + ], + [ + 42.55, + 39.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_282", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_285", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 42.55, + 39.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_285" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.36, + 43.76, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_195" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 66.75, + 38.85, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0.058, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_145" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 36.15, + 12.33 + ], + [ + 36.15, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_154", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_145", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_101" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_101" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.25, + 33.42 + ], + [ + 72.768378980487, + 39.45619861091159 + ], + [ + 79.05, + 38.77 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_63", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_192", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_191" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 38.91849277694247, + 39.15730761911717 + ], + [ + 42.55, + 39.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_59", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_285", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 66.75, + 38.85 + ], + [ + 75.44783316762961, + 39.271754774448404 + ], + [ + 74.25, + 33.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_55", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_191", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.25, + 33.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_191" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 39.89, + 34.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_254" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_100" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.1, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_260" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.1, + 119.94 + ], + [ + 68.75, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_265", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_261", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_260" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_96" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 39.89, + 39.21 + ], + [ + 34.84654755248199, + 39.21 + ], + [ + 33.97, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_54", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_279", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.97, + 39.21, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_279" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_105" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_98" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + 9.25 + ], + [ + 32.34, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_137", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_146", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_149" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + 12.33 + ], + [ + 34.88, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_153", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_147", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_102" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + 12.33 + ], + [ + 29.8, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_149", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_144", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_96" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + 12.32, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_104" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_102" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_149" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + 9.25 + ], + [ + 33.61, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_138", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_148", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_146" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_103" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_147" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_142" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + 12.33 + ], + [ + 33.61, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_152", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_148", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_105" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + 12.33 + ], + [ + 31.07, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_150", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_149", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_103" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_144" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + 9.25 + ], + [ + 36.15, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_140", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_145", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_147" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + 9.25 + ], + [ + 31.07, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_136", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_149", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_144" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + 9.25 + ], + [ + 29.8, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_135", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_144", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_143" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 74.25, + 33.42 + ], + [ + 74.51, + -28.83 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_231", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_194", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_191" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 168.47, + -28.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_233" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 169.3, + 32.79 + ], + [ + 168.47, + -28.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_252", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_233", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_237" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 121.31, + -27.49, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_188" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 122.13, + 32.63 + ], + [ + 121.31, + -27.49 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_228", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_188", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_189" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 67.76, + -33.25 + ], + [ + 44.56, + -33.05 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_281", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_283", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_282" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 163.24, + -33.12 + ], + [ + 168.43, + -33.17 + ], + [ + 168.47, + -28.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_28", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_233", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_183" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163.24, + -33.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_183" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 125.66, + -32.42 + ], + [ + 163.24, + -33.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_227", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_183", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_187" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 44.56, + -33.05, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 3.091, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_283" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 121.31, + -27.49 + ], + [ + 121.79827056936657, + -32.553832057902824 + ], + [ + 125.66, + -32.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_13", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_187", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_188" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 125.66, + -32.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_187" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.51, + -28.83, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_194" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 121.31, + -27.49 + ], + [ + 122.33934444074058, + -34.26533750433006 + ], + [ + 114.8, + -33.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_61", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_288", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_188" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.51, + -28.83 + ], + [ + 75.51014973047997, + -34.231841828585786 + ], + [ + 67.76, + -33.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_56", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_282", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_194" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 114.8, + -33.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.009, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_288" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.51, + -28.83 + ], + [ + 74.7277778507612, + -33.41796122948074 + ], + [ + 79.55, + -33.31 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_60", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_287", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_194" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 79.55, + -33.31, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.029, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_287" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 67.76, + -33.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -3.124, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_282" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 79.55, + -33.31 + ], + [ + 114.8, + -33.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_284", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_288", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_287" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + -7.42 + ], + [ + 34.88, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_167", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_134", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_133" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_133" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_135" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + -7.42 + ], + [ + 33.61, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_166", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_133", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_132" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_146" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_148" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + 12.32 + ], + [ + 32.34, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_151", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_146", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_104" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + 9.25 + ], + [ + 34.88, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_139", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_147", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_148" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_23" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_25" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_33" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 36.15, + -7.42 + ], + [ + 36.15, + -10.28 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_169", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_25", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_135" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_134" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + -10.28 + ], + [ + 33.61, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_171", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_133", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_33" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_132" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + -7.42 + ], + [ + 36.15, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_168", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_135", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_134" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 44.56, + -33.05 + ], + [ + 37.85430361325207, + -31.78547308012859 + ], + [ + 39.49, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_57", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_262", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_283" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.49, + -21.82 + ], + [ + 39.446528948723135, + -27.044624691423248 + ], + [ + 34.44, + -27.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_50", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_272", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_262" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 39.49, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_267", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_262", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + -10.28 + ], + [ + 32.34, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_172", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_132", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_32" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.44, + -27.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_272" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 39.49, + -21.82, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_262" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_32" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + -10.28 + ], + [ + 34.88, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_170", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_134", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_23" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.65, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_27" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.76, + 0.12 + ], + [ + 29.65, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_82", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_27", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_65" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_72" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.65, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_29" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + 9.25 + ], + [ + 28.53, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_148", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_100", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_143" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_143" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_73" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.76, + 1.81 + ], + [ + 29.65, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_78", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_29", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_72" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_129" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + -7.42 + ], + [ + 29.8, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_163", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_130", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_129" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_131" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_130" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + -7.42 + ], + [ + 31.07, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_164", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_131", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_130" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + -7.42 + ], + [ + 32.34, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_165", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_132", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_131" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_67" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_65" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + -10.28 + ], + [ + 28.53, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_175", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_129", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_35" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_31" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + -10.28 + ], + [ + 27.26, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_176", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_128", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_45" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + -10.28 + ], + [ + 31.07, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_173", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_131", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_31" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_45" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_40" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_35" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + -10.28 + ], + [ + 29.8, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_174", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_130", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_40" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3.19, + 115.43, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_238" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 6.65, + 119.85 + ], + [ + 3.19, + 119.8 + ], + [ + 3.19, + 115.43 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_31", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_238", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_225" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 6.65, + 119.85, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_225" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.65, + 119.85 + ], + [ + 20.9, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_247", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_216", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_225" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.9, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_216" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 26.9, + 114.31 + ], + [ + 26.76, + 50.63 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_244", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_212", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_218" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 26.76, + 50.63, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_212" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.19, + 115.43 + ], + [ + 3.16, + 92.46 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_256", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_240", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_238" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3.16, + 92.46, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_240" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.99, + 57.15, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_17" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 26.9, + 114.31 + ], + [ + 26.93039704949427, + 119.85714252816021 + ], + [ + 33.1, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_41", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_260", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_218" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 26.9, + 114.31, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_218" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 20.9, + 119.94 + ], + [ + 27.433144483648924, + 120.124457207128 + ], + [ + 26.9, + 114.31 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_68", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_218", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_216" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 11.46, + 31.84 + ], + [ + 11.38, + 38.99 + ], + [ + 18.75, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_53", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_277", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_162" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.75, + 39.21 + ], + [ + 33.97, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_275", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_279", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_277" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 26.76, + 50.63 + ], + [ + 28.30388596930195, + 39.90788123287311 + ], + [ + 18.75, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_66", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_277", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_212" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 11.46, + 31.84, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_162" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 2.97, + 43.9 + ], + [ + 2.97, + 39.03 + ], + [ + 7.28, + 39.03 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_36", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_250", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_244" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 7.28, + 39.03, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_250" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.75, + 39.21, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_277" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.99, + 57.15 + ], + [ + 2.97, + 43.9 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_257", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_244", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_17" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.79, + 89.91 + ], + [ + -1.85, + 87.13 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_5", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_7", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_8" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.79, + 89.91, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.554, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_8" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.96, + 89.84, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.035, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_9" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.96, + 89.84 + ], + [ + -1.79, + 89.91 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_4", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_8", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_9" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -5.27, + 90.47, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_243" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 3.16, + 92.46 + ], + [ + 3.16, + 90.47 + ], + [ + 0.27, + 90.53 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_32", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_241", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_240" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 0.27, + 90.53, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_241" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -5.27, + 90.47 + ], + [ + 0.27, + 90.53 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_255", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_241", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_243" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.43, + 75.19 + ], + [ + -9.4, + 73.73 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_2", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_3", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_2" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.43, + 75.19, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.047, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_2" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.85, + 79.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.535, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_6" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.85, + 87.13 + ], + [ + -1.85, + 79.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_6", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_6", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_7" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -3.64, + 74.72, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0.638, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_5" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -3.59, + 82.47, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_160" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -3.59, + 82.47 + ], + [ + -1.85, + 87.13 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_199", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_7", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_160" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.85, + 87.13, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.553, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_7" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.85, + 79.25 + ], + [ + -1.82, + 70.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_271", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_273", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_6" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.97, + 43.9, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_244" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -6.93, + 73.69, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.024, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_4" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + -1.85, + 79.25 + ], + [ + -1.6137476620900153, + 76.24595335465719 + ], + [ + -3.4489290751355384, + 73.63419016812544 + ], + [ + -6.93, + 73.69 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_3", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_4", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_6" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.4, + 73.73 + ], + [ + -6.93, + 73.69 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_3", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_4", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_3" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.96, + 89.84 + ], + [ + 2.99, + 57.15 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_11", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_17", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_9" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.82, + 70.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_273" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.4, + 73.73, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -1.55, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_3" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.74, + 87.92 + ], + [ + -12.75, + 82.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_200", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_157", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_156" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.75, + 82.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_157" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.74, + 87.92, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_156" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.74, + 87.92 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_192", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_156" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.47, + 88.02, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_152" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -1.79, + 89.91 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_195", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_8", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.26, + 88.07, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_153" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_188", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.75, + 82.44 + ], + [ + -12.76, + 76.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_201", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_155", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_157" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.24, + 82.42 + ], + [ + -9.45, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_197", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_159", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.24, + 82.42 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_203", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.75, + 82.44 + ], + [ + -11.24, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_196", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_158", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_157" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -9.45, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_204", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_159", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.45, + 82.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_159" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.45, + 82.42 + ], + [ + -3.59, + 82.47 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_198", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_160", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_159" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.24, + 82.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.45, + 82.42 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_205", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_159" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_193", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.92, + 75.29 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 109, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_1", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_1" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -11.24, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_202", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_158", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.92, + 75.29, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.045, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_1" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -12.76, + 76.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_190", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_155", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.21, + 76.14, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.76, + 76.19, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_155" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + 12.33 + ], + [ + 24.72, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_145", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_140", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_86" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + 9.25 + ], + [ + 27.26, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_133", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_142", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_141" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + 9.25 + ], + [ + 28.53, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_134", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_143", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_142" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_94" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_86" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_91" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_74" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_93" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + 9.25 + ], + [ + 25.99, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_146", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_94", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_141" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_141" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + 12.33 + ], + [ + 27.26, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_147", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_142", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_98" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_140" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + 9.25 + ], + [ + 25.99, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_132", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_141", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_140" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 3.11 + ], + [ + 27.76, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_88", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_73", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_70" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_66" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 1.81 + ], + [ + 27.76, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_77", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_72", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_71" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_71" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_70" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 3.11 + ], + [ + 25.94, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_87", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_70", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_92" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_92" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 4.41 + ], + [ + 25.94, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_90", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_74", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_91" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_137" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + 9.25 + ], + [ + 22.18, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_129", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_138", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_137" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + 9.25 + ], + [ + 22.18, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_143", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_95", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_138" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + 12.33 + ], + [ + 20.91, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_142", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_137", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_85" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_138" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_85" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_95" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_97" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 5.71 + ], + [ + 23.96, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_91", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_93", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_88" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_88" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_139" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 7.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_81" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + 9.25 + ], + [ + 24.72, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_131", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_140", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_139" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + 9.25 + ], + [ + 23.45, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_130", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_139", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_138" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + 9.25 + ], + [ + 20.91, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_128", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_137", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_136" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + 12.33 + ], + [ + 23.45, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_144", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_139", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_97" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 1.81 + ], + [ + 23.96, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_75", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_90", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_77" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_78" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 1.81 + ], + [ + 25.94, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_76", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_71", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_90" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_90" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_77" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 3.11 + ], + [ + 23.96, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_86", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_92", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_78" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 4.41 + ], + [ + 23.96, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_89", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_91", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_76" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_76" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 9.25 + ], + [ + 18.37, + 7.01 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_109", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_109", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_136" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + 12.33 + ], + [ + 19.64, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_127", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_136", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_99" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 12.33 + ], + [ + 18.37, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_108", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_119", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_107" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_107" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_99" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 9.25 + ], + [ + 19.64, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_141", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_136", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 4.41 + ], + [ + 21.97, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_103", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_76", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 7.01 + ], + [ + 18.37, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_110", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_110", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_109" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_110" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 5.71 + ], + [ + 18.37, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_111", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_111", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_110" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 5.71 + ], + [ + 21.97, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_107", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_88", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_110" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 7.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_109" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 7.01 + ], + [ + 21.97, + 7.01 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_105", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_81", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_109" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_112" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_114" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 1.81 + ], + [ + 21.97, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_101", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_77", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_113" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_113" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 0.12 + ], + [ + 21.97, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_100", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_82", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_114" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 3.11 + ], + [ + 18.37, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_113", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_113", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_112" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 4.41 + ], + [ + 18.37, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_112", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_112", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 3.11 + ], + [ + 21.97, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_102", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_78", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_112" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + -1.18 + ], + [ + 25.94, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_84", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_68", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_79" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_68" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 0.12 + ], + [ + 25.94, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_80", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_66", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_106" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_106" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 0.12 + ], + [ + 27.76, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_81", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_65", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_66" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + -7.42 + ], + [ + 27.26, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_161", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_128", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_127" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_126" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_89" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_69" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_80" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_79" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + -2.48 + ], + [ + 25.94, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_93", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_69", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_80" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + -1.18 + ], + [ + 27.76, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_85", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_67", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_68" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_128" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_37" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_48" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + -10.28 + ], + [ + 25.99, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_177", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_127", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_48" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_127" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + -10.28 + ], + [ + 24.72, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_178", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_126", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_37" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + -7.42 + ], + [ + 25.99, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_160", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_127", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_126" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + -7.42 + ], + [ + 28.53, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_162", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_129", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_128" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_84" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -3.78 + ], + [ + 23.96, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_94", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_89", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_84" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_87" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -2.48 + ], + [ + 23.96, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_92", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_80", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_87" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_83" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 0.12 + ], + [ + 23.96, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_79", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_106", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_82" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -1.18 + ], + [ + 23.96, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_83", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_79", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_83" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_82" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + -7.42 + ], + [ + 22.18, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_157", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_124", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_123" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + -7.42 + ], + [ + 20.91, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_156", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_123", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_122" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_125" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_124" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + -7.42 + ], + [ + 23.45, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_158", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_125", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_124" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_123" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + -7.42 + ], + [ + 24.72, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_159", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_126", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_125" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -5.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_75" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + -10.28 + ], + [ + 19.64, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_182", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_122", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_59" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + -10.28 + ], + [ + 20.91, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_181", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_123", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_53" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_39" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_53" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_59" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + -10.28 + ], + [ + 22.18, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_180", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_124", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_39" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_51" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + -10.28 + ], + [ + 23.45, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_179", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_125", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_51" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -2.48 + ], + [ + 21.97, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_98", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_87", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 0.12 + ], + [ + 18.37, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_115", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_115", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_114" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -1.18 + ], + [ + 21.97, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_99", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_83", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_115" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 1.81 + ], + [ + 18.37, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_114", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_114", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_113" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -1.18 + ], + [ + 18.37, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_116", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_116", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_115" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_115" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_118" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_122" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -7.42 + ], + [ + 19.64, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_155", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_122", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_118" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -3.78 + ], + [ + 21.97, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_97", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_84", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -5.08 + ], + [ + 21.97, + -5.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_106", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_75", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_117" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -5.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_117" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -3.78 + ], + [ + 18.37, + -5.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_118", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_117", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -2.48 + ], + [ + 18.37, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_117", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_108", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 16.63, + -27 + ], + [ + 34.44, + -27.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_270", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_272", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_271" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_61" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.46, + 31.84 + ], + [ + 11.42, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_268", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_266", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_162" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 11.42, + -21.82 + ], + [ + 11.635992797409926, + -27.016661067827307 + ], + [ + 16.63, + -27 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_51", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_271", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_266" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 16.63, + -27, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_271" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 11.42, + -21.82, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_266" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -7.42 + ], + [ + 18.37, + -10.28 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_120", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_61", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_118" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -5.08 + ], + [ + 18.37, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_119", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_118", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_117" + } + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -62.92, + -83.33 + ], + [ + -62.92, + 170.78 + ], + [ + 219.3, + 170.78 + ], + [ + 219.3, + -83.33 + ], + [ + -62.92, + -83.33 + ] + ] + ] + }, + "type": "Feature", + "properties": { + "color": "#cccccc", + "type": 0, + "id": "s_auto", + "name": "auto", + "transparent": 50 + } + } + ] +} \ No newline at end of file diff --git a/developedcode/driverlessCarold/src/main.js b/developedcode/driverlessCarold/src/main.js new file mode 100644 index 0000000..add5306 --- /dev/null +++ b/developedcode/driverlessCarold/src/main.js @@ -0,0 +1,30 @@ +import App from "./App.vue"; +import { createApp } from "vue"; +// 引入acro实例 +import { registerPlugins } from "@/plugins/vuetify"; +//全局使用message +import { ElMessage } from "element-plus"; +// 引入pinia 实例 +import pinia from "@/store/index.js"; +// 引入路由实例 +import router from "@/router/index.js"; +// 剪切板 +import { VueClipboard } from "@soerenmartius/vue3-clipboard"; +//全局引入lodash +import _ from "lodash"; +//全局挂在axios +import axios from "@/plugins/axios"; +import dayjs from "dayjs"; +import "@/utils/permission"; +const app = createApp(App); +app.config.globalProperties.$_ = _; //挂载到app实例上 +app.config.globalProperties.$axios = axios; //挂载到app实例上 +app.config.globalProperties.$dayjs = dayjs; //挂载到app实例上 +app.config.globalProperties.$message = ElMessage; //挂载到app实例上 + +registerPlugins(app); +app + .use(pinia) //中央仓库pinia + .use(router) //路由 + .use(VueClipboard); //剪切板 +app.mount("#app"); diff --git a/developedcode/driverlessCarold/src/mixin/totalmixin.js b/developedcode/driverlessCarold/src/mixin/totalmixin.js new file mode 100644 index 0000000..e54122d --- /dev/null +++ b/developedcode/driverlessCarold/src/mixin/totalmixin.js @@ -0,0 +1,69 @@ +import { + userStore, + snackbarStore, + breadcrumbsStore, + dialogFullscreenStore, +} from "@/store"; +export default { + data() { + return { + userObj: userStore(), + snackbarsObj: snackbarStore(), + breadcrumbsObj: breadcrumbsStore(), + dialogFullscreenObj: dialogFullscreenStore(), + }; + }, + methods: { + // snackBar + openSnackbar(params) { + return this.snackbarsObj.openSnackbar(params); + }, + closeSnackbar(index) { + return this.snackbarsObj.closeSnackbar(index); + }, + openSuccessSnackbar(message) { + return this.snackbarsObj.openSuccessSnackbar(message); + }, + openFailureSnackbar(message) { + return this.snackbarsObj.openFailureSnackbar(message); + }, + openInfoSnackbar(message) { + return this.snackbarsObj.openInfoSnackbar(message); + }, + cleanSnackbar() { + return this.snackbarsObj.cleanSnackbar(); + }, + // breadcrumbs + editBreadcrumbs(breadcrumbsList) { + return this.breadcrumbsObj.editBreadcrumbs(breadcrumbsList); + }, + // breadcrumbs + setDialogFullscreen(bol = false) { + return this.dialogFullscreenObj.setDialogFullscreen(bol); + }, + // breadcrumbs + setRobot(robot) { + return this.userObj.setRobot(robot); + }, + setBattery(battery) { + return this.userObj.setBattery(battery); + }, + }, + computed: { + snackbars() { + return this.snackbarsObj.snackbars; + }, + breadcrumbsList() { + return this.breadcrumbsObj.breadcrumbsList; + }, + dialogFullscreen() { + return this.dialogFullscreenObj.dialogFullscreen; + }, + robotObj() { + return this.userObj.robot; + }, + batteryObj() { + return this.userObj.battery; + }, + }, +}; diff --git a/developedcode/driverlessCarold/src/plugins/axios.js b/developedcode/driverlessCarold/src/plugins/axios.js new file mode 100644 index 0000000..a008707 --- /dev/null +++ b/developedcode/driverlessCarold/src/plugins/axios.js @@ -0,0 +1,47 @@ +import axios from "axios"; +import qs from "qs"; +import { ElMessage } from "element-plus"; +let config = { + baseURL: "", + timeout: 600 * 1000, + withCredentials: true, // Check cross-site Access-Control + /* `paramsSerializer` 是一个负责 `params` 序列化的函数 + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }) + // 'a[0]=b&a[1]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }) + // 'a[]=b&a[]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }) + // 'a=b&a=c' + */ + paramsSerializer: (params) => { + return qs.stringify(params, { arrayFormat: "indices" }); + }, +}; + +const _axios = axios.create(config); + +_axios.interceptors.request.use( + (config) => { + return config; + }, + (error) => { + return Promise.reject(error); + } +); +_axios.interceptors.response.use( + (response) => { + if (response.status === 200) { + if (!response.data.status) { + ElMessage.error(response.data.msg); + } + return Promise.resolve(response.data); + } else { + ElMessage.error(response.msg); + return Promise.reject(response.data); + } + }, + (error) => { + ElMessage.error(error); + } +); +export default _axios; diff --git a/developedcode/driverlessCarold/src/plugins/mqtt.js b/developedcode/driverlessCarold/src/plugins/mqtt.js new file mode 100644 index 0000000..d8396ba --- /dev/null +++ b/developedcode/driverlessCarold/src/plugins/mqtt.js @@ -0,0 +1,199 @@ +import * as mqtt from "mqtt/dist/mqtt.min"; +import { ulid } from "ulid"; +let robot = { + did: "ede2a4d227b81d36", + pid: "robot4inspection", +}; +const mqttSlamPID = "slam_server"; +let client = null; +let PublicMqtt = null; + +class MQTT { + // url = `ws://s3.s100.vip:8083/mqtt`; // mqtt地址 + url = `ws://192.168.1.141:8083/mqtt`; // mqtt地址 + //初始化mqtt + init() { + let options = { + clean: true, + clientId: ulid(), // 客户端分类唯一 + username: "map-editor", + password: "leador", + connectTimeout: 4000, // 超时时间 + }; + client = mqtt.connect(this.url, options); + client.on("connect", () => {}); + client.on("error", (error) => { + console.log(this.url + "异常中断"); + }); + client.on("reconnect", (error) => { + console.log(this.url + "重新连接"); + }); + } + //取消订阅 + unsubscribes(topic) { + if (topic.indexOf("slam/") === 0) { + client.unsubscribe(`/${mqttSlamPID}/${robot.did}/${topic}`, (error) => { + if (!error) { + console.log(`/${mqttSlamPID}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${mqttSlamPID}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } else if (topic.indexOf("other/") === 0) { + client.unsubscribe(`/${topic}`, (error) => { + if (!error) { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } else { + client.unsubscribe(`/${robot.pid}/${robot.did}/${topic}`, (error) => { + if (!error) { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } + } + + //连接 + link(topic, params) { + if (topic.indexOf("slam/") === 0) { + client.subscribe( + `/${mqttSlamPID}/${robot.did}/${topic}`, + params, + (error) => { + if (!error) { + console.log( + `/${mqttSlamPID}/${robot.did}/${topic}` + "订阅成功", + JSON.stringify(params) + ); + } else { + console.log( + `/${mqttSlamPID}/${robot.did}/${topic}` + "订阅失败", + JSON.stringify(params) + ); + } + } + ); + } else if (topic.indexOf("other/") === 0) { + client.subscribe(`/${topic}`, params, (error) => { + if (!error) { + console.log(`/${topic}` + "订阅成功", JSON.stringify(params)); + } else { + console.log(`/${topic}` + "订阅失败", JSON.stringify(params)); + } + }); + } else { + client.subscribe( + `/${robot.pid}/${robot.did}/${topic}`, + params, + (error) => { + if (!error) { + console.log( + `/${robot.pid}/${robot.did}/${topic}` + "订阅成功", + JSON.stringify(params) + ); + } else { + console.log( + `/${robot.pid}/${robot.did}/${topic}` + "订阅失败", + JSON.stringify(params) + ); + } + } + ); + } + } + //发布函数 + pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback = () => {}, + failCallback = (e) => {} + ) { + if (client === null) return; + var timeNow = new Date(); + jobj.timestamp = timeNow.getTime(); + if (topic.indexOf("slam/") === 0) { + client.publish( + `/${mqttSlamPID}/${robot.did}/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } else if (topic.indexOf("other/") === 0) { + client.publish( + `/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } else { + client.publish( + `/${robot.pid}/${robot.did}/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } + } + + //收到的消息 + get(callback) { + client.on("message", callback); + } + //结束链接 + over() { + client.end(); + } +} + +export default function useMqtt() { + let startMqtt = (val, params, callback) => { + //设置订阅地址 + if (!PublicMqtt) { + PublicMqtt = new MQTT(); + //初始化mqtt + PublicMqtt.init(); + //链接mqtt + } + PublicMqtt.link(val, params); + getMessage(callback); + }; + let pubCommonFn = ( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ) => { + console.log("发布", topic); + //发布mqtt + PublicMqtt.pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ); + }; + let endMqtt = (val) => { + //取消链接mqtt + PublicMqtt.unsubscribes(val); + }; + let getMessage = (callback) => { + PublicMqtt?.get(callback); + }; + + return { + startMqtt, + endMqtt, + pubCommonFn, + }; +} diff --git a/developedcode/driverlessCarold/src/plugins/vuetify.js b/developedcode/driverlessCarold/src/plugins/vuetify.js new file mode 100644 index 0000000..fddda4f --- /dev/null +++ b/developedcode/driverlessCarold/src/plugins/vuetify.js @@ -0,0 +1,38 @@ +/** + * plugins/vuetify.js + * + * Framework documentation: https://vuetifyjs.com` + */ + +// Styles +import "@mdi/font/css/materialdesignicons.css"; +import "vuetify/styles"; +import { loadFonts } from "./webfontloader"; +import zhHans from "vuetify/lib/locale/zh-Hans.mjs"; +// Composables +import { createVuetify } from "vuetify"; + +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +const vuetify = createVuetify({ + theme: { + themes: { + light: { + colors: { + primary: "#1867C0", + secondary: "#5CBBF6", + }, + }, + }, + }, + ssr: true, + lang: { + locales: { + zhHans, + }, + current: "zhHans", + }, +}); +export function registerPlugins(app) { + loadFonts(); + app.use(vuetify); +} diff --git a/developedcode/driverlessCarold/src/plugins/webfontloader.js b/developedcode/driverlessCarold/src/plugins/webfontloader.js new file mode 100644 index 0000000..92afa8a --- /dev/null +++ b/developedcode/driverlessCarold/src/plugins/webfontloader.js @@ -0,0 +1,15 @@ +/** + * plugins/webfontloader.js + * + * webfontloader documentation: https://github.com/typekit/webfontloader + */ + + export async function loadFonts () { + const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') + + webFontLoader.load({ + google: { + families: ['Roboto:100,300,400,500,700,900&display=swap'], + }, + }) +} diff --git a/developedcode/driverlessCarold/src/router/index.js b/developedcode/driverlessCarold/src/router/index.js new file mode 100644 index 0000000..8c0ec23 --- /dev/null +++ b/developedcode/driverlessCarold/src/router/index.js @@ -0,0 +1,64 @@ +import { createRouter, createWebHistory } from "vue-router"; +import { close, start } from "@/utils/nprogress"; +import HomeView from "@/views/Home.vue"; +const routes = [ + { + path: "/", + name: "home", + component: HomeView, + redirect: "/driverlessCars", + children: [ + { + path: "driverlessCars", + name: "driverlessCars", + meta: { + zhtitle: "首页", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/index.vue"), + }, + { + path: "navigation", + name: "navigation", + meta: { + zhtitle: "导航", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/navigation.vue"), + }, + { + path: "editor", + name: "editor", + meta: { + zhtitle: "编辑", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/editor.vue"), + }, + ], + }, + + { name: "重定向", path: "/:catchAll(.*)", redirect: "/" }, + { + path: "/login", + name: "login", + component: () => import("../views/login.vue"), + }, +]; + +// 创建路由实例 +const router = createRouter({ + history: createWebHistory(), + routes, //路由表 +}); +let witheRouter = ["login"]; +router.beforeEach((pre, next) => { + if (witheRouter.indexOf(pre.name) !== -1) { + } + start(); +}); + +router.afterEach(() => { + close(); +}); +export default router; diff --git a/developedcode/driverlessCarold/src/store/breadcrumbs.js b/developedcode/driverlessCarold/src/store/breadcrumbs.js new file mode 100644 index 0000000..17e7126 --- /dev/null +++ b/developedcode/driverlessCarold/src/store/breadcrumbs.js @@ -0,0 +1,35 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const breadcrumbsStore = defineStore("breadcrumbs", { + // other options... + state() { + return { + breadcrumbsList: [ + { + title: "首页", + href: "/driverlessCars", + id: Date.now(), + }, + ], + }; + }, + actions: { + getBreadcrumbs() { + return this.breadcrumbsList; + }, + editBreadcrumbs(breadcrumbsList) { + this.breadcrumbsList = []; + for (let i = 0; i < breadcrumbsList.length; i++) { + let ele = breadcrumbsList[i]; + this.breadcrumbsList.push({ + ...ele, + id: Date.now() + 1000 * i, + }); + } + }, + }, + persist: { + enabled: true, // true 表示开启持久化保存 + }, +}); +export default breadcrumbsStore; diff --git a/developedcode/driverlessCarold/src/store/fullscreen.js b/developedcode/driverlessCarold/src/store/fullscreen.js new file mode 100644 index 0000000..9d919b6 --- /dev/null +++ b/developedcode/driverlessCarold/src/store/fullscreen.js @@ -0,0 +1,19 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const dialogFullscreenStore = defineStore("dialogFullscreen", { + // other options... + state() { + return { + dialogFullscreen: false, + }; + }, + actions: { + getDialogFullscreen() { + return this.dialogFullscreen; + }, + setDialogFullscreen(bol) { + this.dialogFullscreen = bol; + }, + }, +}); +export default dialogFullscreenStore; diff --git a/developedcode/driverlessCarold/src/store/index.js b/developedcode/driverlessCarold/src/store/index.js new file mode 100644 index 0000000..c1bad36 --- /dev/null +++ b/developedcode/driverlessCarold/src/store/index.js @@ -0,0 +1,10 @@ +import { createPinia } from "pinia"; +import piniaPersist from "pinia-plugin-persist"; +import userStore from "./user"; +import snackbarStore from "./snackbar"; +import breadcrumbsStore from "./breadcrumbs"; +import dialogFullscreenStore from "./fullscreen"; +const pinia = createPinia(); +pinia.use(piniaPersist); +export { userStore, snackbarStore, breadcrumbsStore, dialogFullscreenStore }; +export default pinia; diff --git a/developedcode/driverlessCarold/src/store/snackbar.js b/developedcode/driverlessCarold/src/store/snackbar.js new file mode 100644 index 0000000..a4b6efc --- /dev/null +++ b/developedcode/driverlessCarold/src/store/snackbar.js @@ -0,0 +1,60 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const snackbarStore = defineStore("snackbar", { + // other options... + state() { + return { + snackbars: [], + }; + }, + actions: { + openSnackbar(params) { + let { snackbar_message, color, timeout = -1 } = params; + this.snackbars.push({ + snackbar: true, + snackbar_message: snackbar_message, + snackbar_color: color, + location: "top", + timeout: timeout, + id: Date.now(), + }); + }, + closeSnackbar(index) { + this.snackbars.splice(index, 1); + }, + openSuccessSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "success", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + openFailureSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "error", + location: "top", + timeout: -1, //不自动关闭 + id: Date.now(), + }); + }, + openInfoSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "warning", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + cleanSnackbar() { + this.snackbars = this.snackbars.filter((item) => item.snackbar); + }, + }, +}); +export default snackbarStore; diff --git a/developedcode/driverlessCarold/src/store/user.js b/developedcode/driverlessCarold/src/store/user.js new file mode 100644 index 0000000..ecff4ca --- /dev/null +++ b/developedcode/driverlessCarold/src/store/user.js @@ -0,0 +1,51 @@ +import { defineStore } from "pinia"; +import { login as userLogin, getRobotInfo } from "@/api/user"; +import { setToken, removeToken } from "@/utils/auth"; +const userStore = defineStore("user", { + // other options... + state() { + return { + name: "", + robot: { + did: "ede2a4d227b81d36", + pid: "robot4inspection", + }, + battery: {}, + }; + }, + getters: { + userInfo(state) { + return { ...state }; + }, + }, + actions: { + // Login + async login(loginForm) { + try { + // setToken(true); + let loginRes = await userLogin(loginForm); + if (loginRes.status) { + setToken(loginRes.token); + let robotRes = await getRobotInfo(); + this.robot = { + ...robotRes, + }; + } + return loginRes; + } catch (err) { + removeToken(); + throw err; + } + }, + async setRobot(robot) { + this.robot = robot; + }, + async setBattery(battery) { + this.battery = battery; + }, + }, + persist: { + enabled: true, // true 表示开启持久化保存 + }, +}); +export default userStore; diff --git a/developedcode/driverlessCarold/src/utils/auth.js b/developedcode/driverlessCarold/src/utils/auth.js new file mode 100644 index 0000000..5c68cf8 --- /dev/null +++ b/developedcode/driverlessCarold/src/utils/auth.js @@ -0,0 +1,19 @@ +const TokenKey = `wurenche-token`; + +const isLogin = () => { + return !!localStorage.getItem(TokenKey); +}; + +const getToken = () => { + return localStorage.getItem(TokenKey); +}; + +const setToken = (token) => { + localStorage.setItem(TokenKey, token); +}; + +const removeToken = () => { + localStorage.removeItem(TokenKey); +}; + +export { isLogin, getToken, setToken, removeToken }; diff --git a/developedcode/driverlessCarold/src/utils/nprogress.js b/developedcode/driverlessCarold/src/utils/nprogress.js new file mode 100644 index 0000000..6b5f15a --- /dev/null +++ b/developedcode/driverlessCarold/src/utils/nprogress.js @@ -0,0 +1,19 @@ +import NProgress from 'nprogress' +import 'nprogress/nprogress.css' +NProgress.configure({ + easing: 'ease', // 动画方式 + speed: 1000, // 递增进度条的速度 + showSpinner: false, // 是否显示加载ico + trickleSpeed: 200, // 自动递增间隔 + minimum: 0.3, // 更改启动时使用的最小百分比 + parent: 'body', //指定进度条的父容器 +}) +// 打开进度条 +export const start = () => { + NProgress.start() +} + +// 关闭进度条 +export const close = () => { + NProgress.done() +} \ No newline at end of file diff --git a/developedcode/driverlessCarold/src/utils/permission.js b/developedcode/driverlessCarold/src/utils/permission.js new file mode 100644 index 0000000..b30d482 --- /dev/null +++ b/developedcode/driverlessCarold/src/utils/permission.js @@ -0,0 +1,27 @@ +import router from "@/router/index"; +import { close, start } from "./nprogress"; +import { getToken } from "./auth"; + +const whiteList = ["/login"]; +router.beforeEach(async (to, from, next) => { + start(); + const token = getToken(); + if (token) { + if (to.path === "/login") { + next({ path: "/" }); + close(); + } else { + next(); + } + } else { + if (whiteList.includes(to.path)) { + next(); + } else { + next(`/login?redirect=${to.path}`); + } + } +}); + +router.afterEach((to) => { + close(); +}); diff --git a/developedcode/driverlessCarold/src/utils/util.js b/developedcode/driverlessCarold/src/utils/util.js new file mode 100644 index 0000000..a6cc5fe --- /dev/null +++ b/developedcode/driverlessCarold/src/utils/util.js @@ -0,0 +1,8 @@ +// 获取assets静态资源 +const getAssetsFile = (url) => { + return new URL(`../assets/${url}`, import.meta.url).href; +}; + +export default { + getAssetsFile, +}; diff --git a/developedcode/driverlessCarold/src/views/Home.vue b/developedcode/driverlessCarold/src/views/Home.vue new file mode 100644 index 0000000..bda157c --- /dev/null +++ b/developedcode/driverlessCarold/src/views/Home.vue @@ -0,0 +1,582 @@ + + + diff --git a/developedcode/driverlessCarold/src/views/driverlessCars/editor.vue b/developedcode/driverlessCarold/src/views/driverlessCars/editor.vue new file mode 100644 index 0000000..df6f2e5 --- /dev/null +++ b/developedcode/driverlessCarold/src/views/driverlessCars/editor.vue @@ -0,0 +1,1880 @@ + + + diff --git a/developedcode/driverlessCarold/src/views/driverlessCars/index.vue b/developedcode/driverlessCarold/src/views/driverlessCars/index.vue new file mode 100644 index 0000000..b90e36e --- /dev/null +++ b/developedcode/driverlessCarold/src/views/driverlessCars/index.vue @@ -0,0 +1,804 @@ + + + diff --git a/developedcode/driverlessCarold/src/views/driverlessCars/navigation.vue b/developedcode/driverlessCarold/src/views/driverlessCars/navigation.vue new file mode 100644 index 0000000..dec3227 --- /dev/null +++ b/developedcode/driverlessCarold/src/views/driverlessCars/navigation.vue @@ -0,0 +1,2161 @@ + + + diff --git a/developedcode/driverlessCarold/src/views/login.vue b/developedcode/driverlessCarold/src/views/login.vue new file mode 100644 index 0000000..745b32d --- /dev/null +++ b/developedcode/driverlessCarold/src/views/login.vue @@ -0,0 +1,156 @@ + + + diff --git a/developedcode/driverlessCarold/vite.config.js b/developedcode/driverlessCarold/vite.config.js new file mode 100644 index 0000000..ecbdae5 --- /dev/null +++ b/developedcode/driverlessCarold/vite.config.js @@ -0,0 +1,65 @@ +// Plugins +import vue from "@vitejs/plugin-vue"; +import vuetify, { transformAssetUrls } from "vite-plugin-vuetify"; + +// Utilities +import { defineConfig } from "vite"; +import { fileURLToPath, URL } from "node:url"; +import AutoImport from "unplugin-auto-import/vite"; +import Components from "unplugin-vue-components/vite"; +import { ElementPlusResolver } from "unplugin-vue-components/resolvers"; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue({ + template: { transformAssetUrls }, + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + AutoImport({ + resolvers: [ElementPlusResolver()], + }), + Components({ + resolvers: [ElementPlusResolver()], + }), + ], + define: { "process.env": {} }, + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"], + }, + server: { + port: 3000, + proxy: { + "/v1": { + // target: "http://s3.s100.vip:26381/v1", + target: "http://192.168.1.141:8086/v1", + // target: "http://127.0.0.1:3000/v1", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/v1/, ""), + }, + "/udp": { + // target: "http://s3.s100.vip:26381/v1", + // target: "http://192.168.1.55:8001/", + target: "http://127.0.0.1:9010/udp", + // target: "http://192.168.8.109:9010/udp", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/udp/, ""), + }, + // "/vedio": { + // target: "http://192.168.1.64/vedio", + // // target: "http://192.168.1.141:8086/v1", + // changeOrigin: true, + // rewrite: (path) => path.replace(/^\/vedio/, ""), + // }, + }, + }, + build: { + sourcemap: true, + }, +}); diff --git a/developedcode/editmap/.browserslistrc b/developedcode/editmap/.browserslistrc new file mode 100644 index 0000000..dc3bc09 --- /dev/null +++ b/developedcode/editmap/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/developedcode/editmap/.editorconfig b/developedcode/editmap/.editorconfig new file mode 100644 index 0000000..7053c49 --- /dev/null +++ b/developedcode/editmap/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/developedcode/editmap/.gitignore b/developedcode/editmap/.gitignore new file mode 100644 index 0000000..403adbc --- /dev/null +++ b/developedcode/editmap/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/developedcode/editmap/README.md b/developedcode/editmap/README.md new file mode 100644 index 0000000..50b30e0 --- /dev/null +++ b/developedcode/editmap/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/developedcode/editmap/index.html b/developedcode/editmap/index.html new file mode 100644 index 0000000..f1b52c8 --- /dev/null +++ b/developedcode/editmap/index.html @@ -0,0 +1,16 @@ + + + + + + + + 线路编辑 + + + +
+ + + + \ No newline at end of file diff --git a/developedcode/editmap/jsconfig.json b/developedcode/editmap/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/developedcode/editmap/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/developedcode/editmap/package.json b/developedcode/editmap/package.json new file mode 100644 index 0000000..7f41814 --- /dev/null +++ b/developedcode/editmap/package.json @@ -0,0 +1,24 @@ +{ + "name": "editmap", + "version": "0.0.0", + "scripts": { + "start": "electron-vite preview", + "elecdev": "electron-vite dev", + "prebuild": "electron-vite build", + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "electron": "^23.3.13", + "lodash": "^4.17.21", + "ol": "^7.3.0", + "vue": "^3.2.47" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.2.1", + "electron-vite": "^1.0.28", + "sass": "^1.62.1", + "vite": "^4.3.4" + } +} diff --git a/developedcode/editmap/public/favicon.png b/developedcode/editmap/public/favicon.png new file mode 100644 index 0000000..3b89289 Binary files /dev/null and b/developedcode/editmap/public/favicon.png differ diff --git a/developedcode/editmap/src/App.vue b/developedcode/editmap/src/App.vue new file mode 100644 index 0000000..01c884a --- /dev/null +++ b/developedcode/editmap/src/App.vue @@ -0,0 +1,991 @@ + + + diff --git a/developedcode/editmap/src/assets/css/base.css b/developedcode/editmap/src/assets/css/base.css new file mode 100644 index 0000000..293d3b1 --- /dev/null +++ b/developedcode/editmap/src/assets/css/base.css @@ -0,0 +1,3 @@ +body { + margin: 0; +} diff --git a/developedcode/editmap/src/assets/img/dir_backward.png b/developedcode/editmap/src/assets/img/dir_backward.png new file mode 100644 index 0000000..fd4b924 Binary files /dev/null and b/developedcode/editmap/src/assets/img/dir_backward.png differ diff --git a/developedcode/editmap/src/assets/img/dir_forward.png b/developedcode/editmap/src/assets/img/dir_forward.png new file mode 100644 index 0000000..6686959 Binary files /dev/null and b/developedcode/editmap/src/assets/img/dir_forward.png differ diff --git a/developedcode/editmap/src/assets/img/dir_two_way.png b/developedcode/editmap/src/assets/img/dir_two_way.png new file mode 100644 index 0000000..263d6c0 Binary files /dev/null and b/developedcode/editmap/src/assets/img/dir_two_way.png differ diff --git a/developedcode/editmap/src/assets/img/normal_point.png b/developedcode/editmap/src/assets/img/normal_point.png new file mode 100644 index 0000000..f2756a7 Binary files /dev/null and b/developedcode/editmap/src/assets/img/normal_point.png differ diff --git a/developedcode/editmap/src/assets/json/mapdetail.json b/developedcode/editmap/src/assets/json/mapdetail.json new file mode 100644 index 0000000..9566ba6 --- /dev/null +++ b/developedcode/editmap/src/assets/json/mapdetail.json @@ -0,0 +1,11 @@ +{ + "min_zoom": 1, + "max_zoom": 6, + "zoom": 3, + "extent": [ + 0, + 0, + 1920, + 900 + ] +} \ No newline at end of file diff --git a/developedcode/editmap/src/assets/json/mapgeo.json b/developedcode/editmap/src/assets/json/mapgeo.json new file mode 100644 index 0000000..705b381 --- /dev/null +++ b/developedcode/editmap/src/assets/json/mapgeo.json @@ -0,0 +1,181 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "geometry": { + "type": "Point", + "coordinates": [ + 600, + 400, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_207" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 700, + 500, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_190" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 800, + 400, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_202" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 800, + 450, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_206" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 800, + 450 + ], + [ + 800, + 400 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_236", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_202", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 700, + 500 + ], + [ + 650, + 450 + ], + [ + 600, + 400 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_65", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + } + ] +} \ No newline at end of file diff --git a/developedcode/editmap/src/main.js b/developedcode/editmap/src/main.js new file mode 100644 index 0000000..6e1f2a4 --- /dev/null +++ b/developedcode/editmap/src/main.js @@ -0,0 +1,10 @@ +import App from "./App.vue"; +import { createApp } from "vue"; +//全局引入lodash +import _ from "lodash"; +import "@/assets/css/base.css"; +//全局挂在axios +const app = createApp(App); +app.config.globalProperties.$_ = _; //挂载到app实例上 + +app.mount("#app"); diff --git a/developedcode/editmap/vite.config.js b/developedcode/editmap/vite.config.js new file mode 100644 index 0000000..8bf0b04 --- /dev/null +++ b/developedcode/editmap/vite.config.js @@ -0,0 +1,33 @@ +// Plugins +import vue from "@vitejs/plugin-vue"; +import { defineConfig } from "vite"; +import { fileURLToPath, URL } from "node:url"; +import electron from "vite-plugin-electron"; +import electronRenderer from "vite-plugin-electron/renderer"; +import polyfillExports from "vite-plugin-electron/polyfill-exports"; + +export default defineConfig({ + plugins: [ + vue(), + electron({ + main: { + entry: "electron-main/index.ts", // 主进程文件 + }, + preload: { + input: fileURLToPath(new URL("./index.js", import.meta.url)), // 预加载文件 + }, + }), + electronRenderer(), + polyfillExports(), + ], + define: { "process.env": {} }, + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"], + }, + build: { + sourcemap: true, + }, +}); diff --git a/developedcode/egg_udp/.eslintignore b/developedcode/egg_udp/.eslintignore new file mode 100644 index 0000000..4ebc8ae --- /dev/null +++ b/developedcode/egg_udp/.eslintignore @@ -0,0 +1 @@ +coverage diff --git a/developedcode/egg_udp/.eslintrc b/developedcode/egg_udp/.eslintrc new file mode 100644 index 0000000..f304bdd --- /dev/null +++ b/developedcode/egg_udp/.eslintrc @@ -0,0 +1,4 @@ +{ + "extends": "eslint-config-egg", + "root": true +} diff --git a/developedcode/egg_udp/.gitignore b/developedcode/egg_udp/.gitignore new file mode 100644 index 0000000..652759b --- /dev/null +++ b/developedcode/egg_udp/.gitignore @@ -0,0 +1,15 @@ +logs/ +npm-debug.log +yarn-error.log +node_modules/ +*-lock.json +*-lock.yaml +yarn.lock +coverage/ +.idea/ +run/ +.DS_Store +*.sw* +*.un~ +typings/ +.nyc_output/ diff --git a/developedcode/egg_udp/README.md b/developedcode/egg_udp/README.md new file mode 100644 index 0000000..d4da78e --- /dev/null +++ b/developedcode/egg_udp/README.md @@ -0,0 +1,33 @@ +# egg_udp + + + +## QuickStart + + + +see [egg docs][egg] for more detail. + +### Development + +```bash +$ npm i +$ npm run dev +$ open http://localhost:7001/ +``` + +### Deploy + +```bash +$ npm start +$ npm stop +``` + +### npm scripts + +- Use `npm run lint` to check code style. +- Use `npm test` to run unit test. +- Use `npm run autod` to auto detect dependencies upgrade, see [autod](https://www.npmjs.com/package/autod) for more detail. + + +[egg]: https://eggjs.org \ No newline at end of file diff --git a/developedcode/egg_udp/app/controller/home.js b/developedcode/egg_udp/app/controller/home.js new file mode 100644 index 0000000..395bddf --- /dev/null +++ b/developedcode/egg_udp/app/controller/home.js @@ -0,0 +1,23 @@ +"use strict"; + +const { Controller } = require("egg"); + +class HomeController extends Controller { + async index() { + const { ctx } = this; + let array = ctx.request.body.hex.split(" "); + let hex_array = array.map((el) => parseInt(el, 16)); + let uarray = new Uint8Array(hex_array); + let buf = Buffer.from(uarray); + const dgram = require("dgram"); + + const clientSocket = dgram.createSocket("udp4"); + + //监听指定地址以及端口 + //第一个参数是发送数据,第二个参是位端口号,第三个参数为ip地址 + clientSocket.send(buf, 80, "192.168.1.64"); + // ctx.body = "发送"; + } +} + +module.exports = HomeController; diff --git a/developedcode/egg_udp/app/router.js b/developedcode/egg_udp/app/router.js new file mode 100644 index 0000000..1c4e8d6 --- /dev/null +++ b/developedcode/egg_udp/app/router.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * @param {Egg.Application} app - egg application + */ +module.exports = app => { + const { router, controller } = app; + router.post('/udp', controller.home.index); +}; diff --git a/developedcode/egg_udp/config/config.default.js b/developedcode/egg_udp/config/config.default.js new file mode 100644 index 0000000..4986afe --- /dev/null +++ b/developedcode/egg_udp/config/config.default.js @@ -0,0 +1,46 @@ +/* eslint valid-jsdoc: "off" */ + +"use strict"; + +/** + * @param {Egg.EggAppInfo} appInfo app info + */ +module.exports = (appInfo) => { + /** + * built-in config + * @type {Egg.EggAppConfig} + **/ + const config = (exports = {}); + + // use for cookie sign key, should change to your own and keep security + config.keys = appInfo.name + "_1686280994314_6082"; + config.cluster = { + listen: { + path: "", + port: 9010, + }, + }; + config.security = { + csrf: { + enable: false, + }, + domainWhiteList: ["/udp"], //允许访问接口的白名单,例如:http://localhost:8080 *表示均可访问 + }; + + config.cors = { + origin: "*", + allowMethods: "GET", + }; + // add your middleware config here + config.middleware = []; + + // add your user config here + const userConfig = { + // myAppName: 'egg', + }; + + return { + ...config, + ...userConfig, + }; +}; diff --git a/developedcode/egg_udp/config/plugin.js b/developedcode/egg_udp/config/plugin.js new file mode 100644 index 0000000..d59db1a --- /dev/null +++ b/developedcode/egg_udp/config/plugin.js @@ -0,0 +1,13 @@ +"use strict"; + +/** @type Egg.EggPlugin */ +module.exports = { + // had enabled by egg + // static: { + // enable: true, + // } + cors: { + enable: true, + package: "egg-cors", + }, +}; diff --git a/developedcode/egg_udp/jsconfig.json b/developedcode/egg_udp/jsconfig.json new file mode 100644 index 0000000..1bbed3f --- /dev/null +++ b/developedcode/egg_udp/jsconfig.json @@ -0,0 +1,5 @@ +{ + "include": [ + "**/*" + ] +} \ No newline at end of file diff --git a/developedcode/egg_udp/package.json b/developedcode/egg_udp/package.json new file mode 100644 index 0000000..cdb3d5b --- /dev/null +++ b/developedcode/egg_udp/package.json @@ -0,0 +1,47 @@ +{ + "name": "egg_udp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-scripts": "^2", + "node-media-server": "^2.6.2" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-egg_udp", + "stop": "egg-scripts stop --title=egg-server-egg_udp", + "dev": "egg-bin dev", + "build": "npm install --production && tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" +} diff --git a/developedcode/egg_udp/test/app/controller/home.test.js b/developedcode/egg_udp/test/app/controller/home.test.js new file mode 100644 index 0000000..a4f0fc9 --- /dev/null +++ b/developedcode/egg_udp/test/app/controller/home.test.js @@ -0,0 +1,20 @@ +'use strict'; + +const { app, assert } = require('egg-mock/bootstrap'); + +describe('test/app/controller/home.test.js', () => { + it('should assert', async () => { + const pkg = require('../../../package.json'); + assert(app.config.keys.startsWith(pkg.name)); + + // const ctx = app.mockContext({}); + // yield ctx.service.xx(); + }); + + it('should GET /', async () => { + return app.httpRequest() + .get('/') + .expect('hi, egg') + .expect(200); + }); +}); diff --git a/developedcode/electronEditmap/.editorconfig b/developedcode/electronEditmap/.editorconfig new file mode 100644 index 0000000..3dce414 --- /dev/null +++ b/developedcode/electronEditmap/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true \ No newline at end of file diff --git a/developedcode/electronEditmap/.eslintignore b/developedcode/electronEditmap/.eslintignore new file mode 100644 index 0000000..a6f34fe --- /dev/null +++ b/developedcode/electronEditmap/.eslintignore @@ -0,0 +1,4 @@ +node_modules +dist +out +.gitignore diff --git a/developedcode/electronEditmap/.eslintrc.cjs b/developedcode/electronEditmap/.eslintrc.cjs new file mode 100644 index 0000000..55db58d --- /dev/null +++ b/developedcode/electronEditmap/.eslintrc.cjs @@ -0,0 +1,15 @@ +/* eslint-env node */ +require('@rushstack/eslint-patch/modern-module-resolution') + +module.exports = { + extends: [ + 'eslint:recommended', + 'plugin:vue/vue3-recommended', + '@electron-toolkit', + '@vue/eslint-config-prettier' + ], + rules: { + 'vue/require-default-prop': 'off', + 'vue/multi-word-component-names': 'off' + } +} diff --git a/developedcode/electronEditmap/.gitignore b/developedcode/electronEditmap/.gitignore new file mode 100644 index 0000000..e7c3088 --- /dev/null +++ b/developedcode/electronEditmap/.gitignore @@ -0,0 +1,4 @@ +node_modules +dist +out +*.log* diff --git a/developedcode/electronEditmap/.npmrc b/developedcode/electronEditmap/.npmrc new file mode 100644 index 0000000..30df4ad --- /dev/null +++ b/developedcode/electronEditmap/.npmrc @@ -0,0 +1,2 @@ +ELECTRON_MIRROR=https://npmmirror.com/mirrors/electron/ +registry =https://registry.npm.taobao.org diff --git a/developedcode/electronEditmap/.prettierignore b/developedcode/electronEditmap/.prettierignore new file mode 100644 index 0000000..9c6b791 --- /dev/null +++ b/developedcode/electronEditmap/.prettierignore @@ -0,0 +1,6 @@ +out +dist +pnpm-lock.yaml +LICENSE.md +tsconfig.json +tsconfig.*.json diff --git a/developedcode/electronEditmap/.prettierrc.yaml b/developedcode/electronEditmap/.prettierrc.yaml new file mode 100644 index 0000000..35893b3 --- /dev/null +++ b/developedcode/electronEditmap/.prettierrc.yaml @@ -0,0 +1,4 @@ +singleQuote: true +semi: false +printWidth: 100 +trailingComma: none diff --git a/developedcode/electronEditmap/README.md b/developedcode/electronEditmap/README.md new file mode 100644 index 0000000..89e5547 --- /dev/null +++ b/developedcode/electronEditmap/README.md @@ -0,0 +1,34 @@ +# electroneditmap + +An Electron application with Vue + +## Recommended IDE Setup + +- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) + +## Project Setup + +### Install + +```bash +$ npm install +``` + +### Development + +```bash +$ npm run dev +``` + +### Build + +```bash +# For windows +$ npm run build:win + +# For macOS +$ npm run build:mac + +# For Linux +$ npm run build:linux +``` diff --git a/developedcode/electronEditmap/dev-app-update.yml b/developedcode/electronEditmap/dev-app-update.yml new file mode 100644 index 0000000..44df3e9 --- /dev/null +++ b/developedcode/electronEditmap/dev-app-update.yml @@ -0,0 +1,3 @@ +provider: generic +url: https://example.com/auto-updates +updaterCacheDirName: electroneditmap-updater diff --git a/developedcode/electronEditmap/electron-builder.yml b/developedcode/electronEditmap/electron-builder.yml new file mode 100644 index 0000000..eb501c4 --- /dev/null +++ b/developedcode/electronEditmap/electron-builder.yml @@ -0,0 +1,42 @@ +appId: com.electron.app +productName: electroneditmap +directories: + buildResources: build +files: + - '!**/.vscode/*' + - '!src/*' + - '!electron.vite.config.{js,ts,mjs,cjs}' + - '!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}' + - '!{.env,.env.*,.npmrc,pnpm-lock.yaml}' +asarUnpack: + - resources/** +win: + executableName: electroneditmap +nsis: + artifactName: ${name}-${version}-setup.${ext} + shortcutName: ${productName} + uninstallDisplayName: ${productName} + createDesktopShortcut: always +mac: + entitlementsInherit: build/entitlements.mac.plist + extendInfo: + - NSCameraUsageDescription: Application requests access to the device's camera. + - NSMicrophoneUsageDescription: Application requests access to the device's microphone. + - NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder. + - NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder. + notarize: false +dmg: + artifactName: ${name}-${version}.${ext} +linux: + target: + - AppImage + - snap + - deb + maintainer: electronjs.org + category: Utility +appImage: + artifactName: ${name}-${version}.${ext} +npmRebuild: false +publish: + provider: generic + url: https://example.com/auto-updates diff --git a/developedcode/electronEditmap/electron.vite.config.js b/developedcode/electronEditmap/electron.vite.config.js new file mode 100644 index 0000000..470c4a0 --- /dev/null +++ b/developedcode/electronEditmap/electron.vite.config.js @@ -0,0 +1,20 @@ +import { resolve } from 'path' +import { defineConfig, externalizeDepsPlugin } from 'electron-vite' +import vue from '@vitejs/plugin-vue' + +export default defineConfig({ + main: { + plugins: [externalizeDepsPlugin()] + }, + preload: { + plugins: [externalizeDepsPlugin()] + }, + renderer: { + resolve: { + alias: { + '@renderer': resolve('src/renderer/src') + } + }, + plugins: [vue()] + } +}) diff --git a/developedcode/electronEditmap/package.json b/developedcode/electronEditmap/package.json new file mode 100644 index 0000000..792d096 --- /dev/null +++ b/developedcode/electronEditmap/package.json @@ -0,0 +1,41 @@ +{ + "name": "electroneditmap", + "version": "1.0.0", + "description": "An Electron application with Vue", + "main": "./out/main/index.js", + "author": "example.com", + "homepage": "https://www.electronjs.org", + "scripts": { + "format": "prettier --write .", + "lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix", + "start": "electron-vite preview", + "dev": "electron-vite dev", + "build": "electron-vite build", + "postinstall": "electron-builder install-app-deps", + "build:win": "npm run build && electron-builder --win --config", + "build:mac": "npm run build && electron-builder --mac --config", + "build:linux": "npm run build && electron-builder --linux --config" + }, + "dependencies": { + "@electron-toolkit/preload": "^2.0.0", + "@electron-toolkit/utils": "^2.0.0", + "electron-updater": "^6.1.1", + "lodash": "^4.17.21", + "ol": "^7.5.2" + }, + "devDependencies": { + "@electron-toolkit/eslint-config": "^1.0.1", + "@rushstack/eslint-patch": "^1.3.3", + "@vitejs/plugin-vue": "^4.3.1", + "@vue/eslint-config-prettier": "^8.0.0", + "electron": "^25.6.0", + "electron-builder": "^24.6.3", + "electron-vite": "^1.0.27", + "eslint": "^8.47.0", + "eslint-plugin-vue": "^9.17.0", + "less": "^4.2.0", + "prettier": "^3.0.2", + "vite": "^4.4.9", + "vue": "^3.3.4" + } +} diff --git a/developedcode/electronEditmap/resources/icon.png b/developedcode/electronEditmap/resources/icon.png new file mode 100644 index 0000000..cf9e8b2 Binary files /dev/null and b/developedcode/electronEditmap/resources/icon.png differ diff --git a/developedcode/electronEditmap/src/main/index.js b/developedcode/electronEditmap/src/main/index.js new file mode 100644 index 0000000..c666c8b --- /dev/null +++ b/developedcode/electronEditmap/src/main/index.js @@ -0,0 +1,71 @@ +import { app, shell, BrowserWindow } from 'electron' +import { join } from 'path' +import { electronApp, optimizer, is } from '@electron-toolkit/utils' +import icon from '../../resources/icon.png?asset' + +function createWindow() { + // Create the browser window. + const mainWindow = new BrowserWindow({ + width: 900, + height: 670, + show: false, + autoHideMenuBar: true, + ...(process.platform === 'linux' ? { icon } : {}), + webPreferences: { + preload: join(__dirname, '../preload/index.js'), + sandbox: false + } + }) + + mainWindow.on('ready-to-show', () => { + mainWindow.show() + }) + + mainWindow.webContents.setWindowOpenHandler((details) => { + shell.openExternal(details.url) + return { action: 'deny' } + }) + + // HMR for renderer base on electron-vite cli. + // Load the remote URL for development or the local html file for production. + if (is.dev && process.env['ELECTRON_RENDERER_URL']) { + mainWindow.loadURL(process.env['ELECTRON_RENDERER_URL']) + } else { + mainWindow.loadFile(join(__dirname, '../renderer/index.html')) + } +} + +// This method will be called when Electron has finished +// initialization and is ready to create browser windows. +// Some APIs can only be used after this event occurs. +app.whenReady().then(() => { + // Set app user model id for windows + electronApp.setAppUserModelId('com.electron') + + // Default open or close DevTools by F12 in development + // and ignore CommandOrControl + R in production. + // see https://github.com/alex8088/electron-toolkit/tree/master/packages/utils + app.on('browser-window-created', (_, window) => { + optimizer.watchWindowShortcuts(window) + }) + + createWindow() + + app.on('activate', function () { + // On macOS it's common to re-create a window in the app when the + // dock icon is clicked and there are no other windows open. + if (BrowserWindow.getAllWindows().length === 0) createWindow() + }) +}) + +// Quit when all windows are closed, except on macOS. There, it's common +// for applications and their menu bar to stay active until the user quits +// explicitly with Cmd + Q. +app.on('window-all-closed', () => { + if (process.platform !== 'darwin') { + app.quit() + } +}) + +// In this file you can include the rest of your app"s specific main process +// code. You can also put them in separate files and require them here. diff --git a/developedcode/electronEditmap/src/preload/index.js b/developedcode/electronEditmap/src/preload/index.js new file mode 100644 index 0000000..8d62cb9 --- /dev/null +++ b/developedcode/electronEditmap/src/preload/index.js @@ -0,0 +1,20 @@ +import { contextBridge } from 'electron' +import { electronAPI } from '@electron-toolkit/preload' + +// Custom APIs for renderer +const api = {} + +// Use `contextBridge` APIs to expose Electron APIs to +// renderer only if context isolation is enabled, otherwise +// just add to the DOM global. +if (process.contextIsolated) { + try { + contextBridge.exposeInMainWorld('electron', electronAPI) + contextBridge.exposeInMainWorld('api', api) + } catch (error) { + console.error(error) + } +} else { + window.electron = electronAPI + window.api = api +} diff --git a/developedcode/electronEditmap/src/renderer/index.html b/developedcode/electronEditmap/src/renderer/index.html new file mode 100644 index 0000000..ce5875b --- /dev/null +++ b/developedcode/electronEditmap/src/renderer/index.html @@ -0,0 +1,23 @@ + + + + + Electron + + + + + + + +
+ + + diff --git a/developedcode/electronEditmap/src/renderer/src/App.vue b/developedcode/electronEditmap/src/renderer/src/App.vue new file mode 100644 index 0000000..8b1007c --- /dev/null +++ b/developedcode/electronEditmap/src/renderer/src/App.vue @@ -0,0 +1,1023 @@ + + + diff --git a/developedcode/electronEditmap/src/renderer/src/assets/css/base.css b/developedcode/electronEditmap/src/renderer/src/assets/css/base.css new file mode 100644 index 0000000..293d3b1 --- /dev/null +++ b/developedcode/electronEditmap/src/renderer/src/assets/css/base.css @@ -0,0 +1,3 @@ +body { + margin: 0; +} diff --git a/developedcode/electronEditmap/src/renderer/src/assets/img/dir_backward.png b/developedcode/electronEditmap/src/renderer/src/assets/img/dir_backward.png new file mode 100644 index 0000000..fd4b924 Binary files /dev/null and b/developedcode/electronEditmap/src/renderer/src/assets/img/dir_backward.png differ diff --git a/developedcode/electronEditmap/src/renderer/src/assets/img/dir_forward.png b/developedcode/electronEditmap/src/renderer/src/assets/img/dir_forward.png new file mode 100644 index 0000000..6686959 Binary files /dev/null and b/developedcode/electronEditmap/src/renderer/src/assets/img/dir_forward.png differ diff --git a/developedcode/electronEditmap/src/renderer/src/assets/img/dir_two_way.png b/developedcode/electronEditmap/src/renderer/src/assets/img/dir_two_way.png new file mode 100644 index 0000000..263d6c0 Binary files /dev/null and b/developedcode/electronEditmap/src/renderer/src/assets/img/dir_two_way.png differ diff --git a/developedcode/electronEditmap/src/renderer/src/assets/img/normal_point.png b/developedcode/electronEditmap/src/renderer/src/assets/img/normal_point.png new file mode 100644 index 0000000..f2756a7 Binary files /dev/null and b/developedcode/electronEditmap/src/renderer/src/assets/img/normal_point.png differ diff --git a/developedcode/electronEditmap/src/renderer/src/assets/json/mapdetail.json b/developedcode/electronEditmap/src/renderer/src/assets/json/mapdetail.json new file mode 100644 index 0000000..ef19041 --- /dev/null +++ b/developedcode/electronEditmap/src/renderer/src/assets/json/mapdetail.json @@ -0,0 +1,11 @@ +{ + "min_zoom": 1, + "max_zoom": 6, + "zoom": 3, + "extent": [ + -10, + -10, + 10, + 10 + ] +} \ No newline at end of file diff --git a/developedcode/electronEditmap/src/renderer/src/assets/json/mapgeo.json b/developedcode/electronEditmap/src/renderer/src/assets/json/mapgeo.json new file mode 100644 index 0000000..705b381 --- /dev/null +++ b/developedcode/electronEditmap/src/renderer/src/assets/json/mapgeo.json @@ -0,0 +1,181 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "geometry": { + "type": "Point", + "coordinates": [ + 600, + 400, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_207" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 700, + 500, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_190" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 800, + 400, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_202" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 800, + 450, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_206" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 800, + 450 + ], + [ + 800, + 400 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_236", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_202", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 700, + 500 + ], + [ + 650, + 450 + ], + [ + 600, + 400 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_65", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + } + ] +} \ No newline at end of file diff --git a/developedcode/electronEditmap/src/renderer/src/main.js b/developedcode/electronEditmap/src/renderer/src/main.js new file mode 100644 index 0000000..7e0d6e1 --- /dev/null +++ b/developedcode/electronEditmap/src/renderer/src/main.js @@ -0,0 +1,10 @@ +import App from "./App.vue"; +import { createApp } from "vue"; +//全局引入lodash +import _ from "lodash"; +import "@renderer/assets/css/base.css"; +//全局挂在axios +const app = createApp(App); +app.config.globalProperties.$_ = _; //挂载到app实例上 + +app.mount("#app"); diff --git a/developedcode/haikangweishi/README.md b/developedcode/haikangweishi/README.md new file mode 100644 index 0000000..51630d2 --- /dev/null +++ b/developedcode/haikangweishi/README.md @@ -0,0 +1,32 @@ +# mqtttohttp + + +## QuickStart + + + +see [egg docs][egg] for more detail. + +### Development + +```bash +$ npm i +$ npm run dev +$ open http://localhost:7001/ +``` + +### Deploy + +```bash +$ npm start +$ npm stop +``` + +### npm scripts + +- Use `npm run lint` to check code style. +- Use `npm test` to run unit test. +- Use `npm run autod` to auto detect dependencies upgrade, see [autod](https://www.npmjs.com/package/autod) for more detail. + + +[egg]: https://eggjs.org \ No newline at end of file diff --git a/developedcode/haikangweishi/app.js b/developedcode/haikangweishi/app.js new file mode 100644 index 0000000..07154b0 --- /dev/null +++ b/developedcode/haikangweishi/app.js @@ -0,0 +1,31 @@ +class AppBootHook { + constructor(app) { + this.app = app; + } + + configWillLoad() { + // 此时 config 文件已经被读取并合并,但是还并未生效 + // 这是应用层修改配置的最后时机 + // 注意:此函数只支持同步调用 + } + + async didLoad() { + // 所有的配置已经加载完毕 + // 可以用来加载应用自定义的文件,启动自定义的服务 + } + + async willReady() { + // 所有的插件都已启动完毕,但是应用整体还未 ready + // 可以做一些数据初始化等操作,这些操作成功才会启动应用 + } + + async didReady() {} + + async serverDidReady() { + // http / https server 已启动,开始接受外部请求 + // 此时可以从 app.server 拿到 server 的实例 + // 应用已经启动完毕 + } +} + +module.exports = AppBootHook; diff --git a/developedcode/haikangweishi/app/controller/haikangweishi.js b/developedcode/haikangweishi/app/controller/haikangweishi.js new file mode 100644 index 0000000..67a09a7 --- /dev/null +++ b/developedcode/haikangweishi/app/controller/haikangweishi.js @@ -0,0 +1,49 @@ +"use strict"; + +const { Controller } = require("egg"); +class HaikangweishiController extends Controller { + //旋转 + async continuous() { + let { ctx, service } = this; + let res = await service.haikangweishi.continuous(ctx.query); + ctx.body = res; + } + //到达预置点 + async goto() { + let { ctx, service } = this; + let res = await service.haikangweishi.goto(ctx.query); + ctx.body = res; + } + //设置预置点 + async presets() { + let { ctx, service } = this; + let res = await service.haikangweishi.presets(ctx.query); + ctx.body = res; + } + //删除预置点 + async delPresets() { + let { ctx, service } = this; + let res = await service.haikangweishi.delPresets(ctx.query); + ctx.body = res; + } + //调焦 + async zoom() { + let { ctx, service } = this; + let res = await service.haikangweishi.zoom(ctx.query); + ctx.body = res; + } + //聚焦 + async focus() { + let { ctx, service } = this; + let res = await service.haikangweishi.focus(ctx.query); + ctx.body = res; + } + //曝光度 + async iris() { + let { ctx, service } = this; + let res = await service.haikangweishi.iris(ctx.query); + ctx.body = res; + } +} + +module.exports = HaikangweishiController; diff --git a/developedcode/haikangweishi/app/controller/home.js b/developedcode/haikangweishi/app/controller/home.js new file mode 100644 index 0000000..fcc7dad --- /dev/null +++ b/developedcode/haikangweishi/app/controller/home.js @@ -0,0 +1,13 @@ +"use strict"; + +const { Controller } = require("egg"); +class HaikangweishiController extends Controller { + //获取权限 + async index() { + let { ctx, service } = this; + let res = await service.home.index(); + ctx.body = res; + } +} + +module.exports = HaikangweishiController; diff --git a/developedcode/haikangweishi/app/router.js b/developedcode/haikangweishi/app/router.js new file mode 100644 index 0000000..aeb6f8a --- /dev/null +++ b/developedcode/haikangweishi/app/router.js @@ -0,0 +1,24 @@ +"use strict"; + +/** + * @param {Egg.Application} app - egg application + */ +module.exports = (app) => { + const { router, controller } = app; + //获取权限 + router.get("/", controller.home.index); + //旋转 + router.get("/continuous", controller.haikangweishi.continuous); + //到达预置点 + router.get("/goto", controller.haikangweishi.goto); + //设置预置点 + router.get("/presets", controller.haikangweishi.presets); + //删除预置点 + router.get("/delPresets", controller.haikangweishi.delPresets); + //调焦 + router.get("/zoom", controller.haikangweishi.zoom); + //聚焦 + router.get("/focus", controller.haikangweishi.focus); + //曝光度 + router.get("/iris", controller.haikangweishi.iris); +}; diff --git a/developedcode/haikangweishi/app/service/haikangweishi.js b/developedcode/haikangweishi/app/service/haikangweishi.js new file mode 100644 index 0000000..40e0fce --- /dev/null +++ b/developedcode/haikangweishi/app/service/haikangweishi.js @@ -0,0 +1,137 @@ +// app/service/user.js +const Service = require("egg").Service; +const parseString = require("xml2js").parseString; +const _ = require("lodash"); +class HaikangweishiService extends Service { + //旋转 + async continuous(params) { + let paramsTemp = { + url: `http://192.168.1.64/ISAPI/PTZCtrl/channels/${ + _.get(params, ["channels"], 1) || 1 + }/continuous`, + method: "PUT", + data: `${_.get( + params, + ["pan"], + 0 + )}${_.get(params, ["tilt"], 0)}`, + }; + return await this.togetherCurl(paramsTemp); + } + //到达预置点 + async goto(params) { + let paramsTemp = { + url: `http://192.168.1.64/ISAPI/PTZCtrl/channels/${ + _.get(params, ["channels"], 1) || 1 + }/presets/${_.get(params, ["presets"], 1) || 1}/goto`, + method: "PUT", + }; + return await this.togetherCurl(paramsTemp); + } + //设置预置点 + async presets(params) { + let paramsTemp = { + url: `http://192.168.1.64/ISAPI/PTZCtrl/channels/${ + _.get(params, ["channels"], 1) || 1 + }/presets/${_.get(params, ["presets"], 1) || 1}`, + method: "PUT", + data: `${ + _.get(params, ["presets"], 1) || 1 + }${ + _.get( + params, + ["presetsName"], + "预置点 " + _.get(params, ["presets"], 1) + ) || "预置点 1" + }`, + }; + return await this.togetherCurl(paramsTemp); + } + //删除预置点 + async delPresets(params) { + let paramsTemp = { + url: `http://192.168.1.64/ISAPI/PTZCtrl/channels/${ + _.get(params, ["channels"], 1) || 1 + }/presets/${_.get(params, ["presets"], 1) || 1}`, + method: "DELETE", + }; + return await this.togetherCurl(paramsTemp); + } + //调焦 + async zoom(params) { + let paramsTemp = { + url: `http://192.168.1.64/ISAPI/PTZCtrl/channels/${ + _.get(params, ["channels"], 1) || 1 + }/continuous`, + method: "PUT", + data: `${ + _.get(params, ["zoom"], 0) || 0 + }`, + }; + return await this.togetherCurl(paramsTemp); + } + //聚焦 + async focus(params) { + let paramsTemp = { + url: `http://192.168.1.64/ISAPI/System/Video/inputs/channels/${ + _.get(params, ["channels"], 1) || 1 + }/focus`, + method: "PUT", + data: `${ + _.get(params, ["focus"], 0) || 0 + }`, + }; + return await this.togetherCurl(paramsTemp); + } + //曝光度 + async iris(params) { + let paramsTemp = { + url: `http://192.168.1.64/ISAPI/System/Video/inputs/channels/${ + _.get(params, ["channels"], 1) || 1 + }/iris`, + method: "PUT", + data: `${ + _.get(params, ["iris"], 0) || 0 + }`, + }; + return await this.togetherCurl(paramsTemp); + } + //统一请求 + async togetherCurl(params) { + let { ctx } = this; + try { + const loginResult1 = await ctx.curl(params.url, { + method: params.method, + data: params.data, + headers: { + Cookie: this.config.cookie, + }, + }); + this.config.duplicateReq++; + let resData1 = {}; + let resDataStr = ""; + parseString(loginResult1.data.toString(), function (err, result) { + resData1 = result; + resDataStr = JSON.stringify(result); + }); + if (resDataStr.indexOf("Unauthorized") === -1) { + this.config.duplicateReq = 0; + return { + haserror: false, + data: resData1, + }; + } else { + await ctx.service.home.index(); + if (this.config.duplicateReq < 10) { + return await this.togetherCurl(params); + } else { + return { haserror: true, msg: "请求次数过多,请稍后重试" }; + } + } + } catch (error) { + return { haserror: true, msg: error }; + } + } +} + +module.exports = HaikangweishiService; diff --git a/developedcode/haikangweishi/app/service/home.js b/developedcode/haikangweishi/app/service/home.js new file mode 100644 index 0000000..ef18076 --- /dev/null +++ b/developedcode/haikangweishi/app/service/home.js @@ -0,0 +1,98 @@ +const md5 = require("md5"); +const parseString = require("xml2js").parseString; +const _ = require("lodash"); +const Service = require("egg").Service; +class HomeService extends Service { + //登录 + async index() { + let { ctx } = this; + let loginResult1 = {}; + try { + loginResult1 = await ctx.curl( + "http://admin:xby123456@192.168.1.64/ISAPI/Security/sessionLogin/capabilities", + { + // 必须指定 method + method: "GET", + data: { + username: "admin", + }, + } + ); + } catch (error) { + this.config.cookie = ""; + return { + haserror: true, + msg: "请链接海康相机", + }; + } + let randomFirst = md5("" + new Date().getTime()).substring(0, 8); + let random = ("" + parseInt(randomFirst.replace("#", ""), 16)).substring( + 0, + 8 + ); + const loginResult2 = await ctx.curl( + "http://admin:xby123456@192.168.1.64/ISAPI/Security/sessionLogin/capabilities", + { + // 必须指定 method + method: "GET", + data: { + username: "admin", + random, + }, + } + ); + let resData1 = {}; + let resData2 = {}; + parseString(loginResult1.data.toString(), function (err, result) { + resData1 = result; + }); + parseString(loginResult2.data.toString(), function (err, result) { + resData2 = result; + }); + let passwordEncode = await ctx.service.utils.encodePwd( + "xby123456", + { + challenge: _.get(resData2, ["SessionLoginCap", "challenge", 0], ""), + userName: "admin", + salt: _.get(resData2, ["SessionLoginCap", "salt", 0], ""), + iIterate: parseInt( + _.get(resData2, ["SessionLoginCap", "iterations", 0], 100), + 10 + ), + }, + "true" === + _.get(resData2, ["SessionLoginCap", "isIrreversible", 0], "true") + ); + let dataStr = `admin${passwordEncode}${_.get( + resData2, + ["SessionLoginCap", "sessionID", 0], + "" + )}${ + "true" === + _.get( + resData2, + ["SessionLoginCap", "isSessionIDValidLongTerm", 0], + "true" + ) + }${parseInt( + _.get(resData2, ["SessionLoginCap", "sessionIDVersion", 0], "2"), + 10 + )}`; + const loginRes = await ctx.curl( + "http://192.168.1.64/ISAPI/Security/sessionLogin", + { + // 必须指定 method + method: "POST", + data: dataStr, + } + ); + let loginResData = {}; + parseString(loginRes.data.toString(), function (err, result) { + loginResData = result; + }); + this.config.cookie = _.get(loginRes, ["headers", "set-cookie", 0]); + return _.get(loginRes, ["headers", "set-cookie", 0]); + } +} + +module.exports = HomeService; diff --git a/developedcode/haikangweishi/app/service/utils.js b/developedcode/haikangweishi/app/service/utils.js new file mode 100644 index 0000000..8fb5c51 --- /dev/null +++ b/developedcode/haikangweishi/app/service/utils.js @@ -0,0 +1,24 @@ +const Service = require("egg").Service; +const SHA256 = require("sha256"); + +class UtilsService extends Service { + //密码加密 + async encodePwd(password, params, bol) { + let newPassword = ""; + if (bol) { + let newPasswordTemp = SHA256(params.userName + params.salt + password); + newPassword = SHA256(newPasswordTemp + params.challenge); + for (let n = 2; params.iIterate > n; n++) { + newPassword = SHA256(newPassword); + } + } else { + newPassword = SHA256(password) + params.challenge; + for (let n = 1; params.iIterate > n; n++) { + newPassword = SHA256(newPassword); + } + } + return newPassword; + } +} + +module.exports = UtilsService; diff --git a/developedcode/haikangweishi/config/config.default.js b/developedcode/haikangweishi/config/config.default.js new file mode 100644 index 0000000..9dff9e6 --- /dev/null +++ b/developedcode/haikangweishi/config/config.default.js @@ -0,0 +1,45 @@ +/* eslint valid-jsdoc: "off" */ + +"use strict"; + +/** + * @param {Egg.EggAppInfo} appInfo app info + */ +module.exports = (appInfo) => { + /** + * built-in config + * @type {Egg.EggAppConfig} + **/ + const config = (exports = {}); + + // use for cookie sign key, should change to your own and keep security + config.keys = appInfo.name + "_1687851227654_4638"; + config.cookie = ""; + config.duplicateReq = 0; + // add your middleware config here + config.middleware = []; + config.cluster = { + listen: { + port: 7006, + }, + }; + // add your user config here + const userConfig = { + // myAppName: 'egg', + }; + config.cors = { + //允许跨域的网址,*表示所有网址都可以跨域请求文件资源,也可以指定域名 + origin: "*", + allowMethods: "POST,GET", + }; + config.security = { + csrf: { + enable: false, + }, + }; + + return { + ...config, + ...userConfig, + }; +}; diff --git a/developedcode/haikangweishi/config/plugin.js b/developedcode/haikangweishi/config/plugin.js new file mode 100644 index 0000000..2c16191 --- /dev/null +++ b/developedcode/haikangweishi/config/plugin.js @@ -0,0 +1,14 @@ +"use strict"; + +/** @type Egg.EggPlugin */ +module.exports = { + // had enabled by egg + // static: { + // enable: true, + // } + cors:{ + enable: true, + package: 'egg-cors', + } + +}; diff --git a/developedcode/haikangweishi/jsconfig.json b/developedcode/haikangweishi/jsconfig.json new file mode 100644 index 0000000..1bbed3f --- /dev/null +++ b/developedcode/haikangweishi/jsconfig.json @@ -0,0 +1,5 @@ +{ + "include": [ + "**/*" + ] +} \ No newline at end of file diff --git a/developedcode/haikangweishi/package.json b/developedcode/haikangweishi/package.json new file mode 100644 index 0000000..37fe2f0 --- /dev/null +++ b/developedcode/haikangweishi/package.json @@ -0,0 +1,51 @@ +{ + "name": "haikangweishi", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "md5": "^2.3.0", + "sha256": "^0.2.0", + "xml2js": "^0.6.2" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-haikangweishi", + "stop": "egg-scripts stop --title=egg-server-haikangweishi", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" +} \ No newline at end of file diff --git a/developedcode/haikangweishi/typings/app/controller/index.d.ts b/developedcode/haikangweishi/typings/app/controller/index.d.ts new file mode 100644 index 0000000..b38d9e3 --- /dev/null +++ b/developedcode/haikangweishi/typings/app/controller/index.d.ts @@ -0,0 +1,14 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import ExportHaikangweishi = require('../../../app/controller/haikangweishi'); +import ExportHome = require('../../../app/controller/home'); + +declare module 'egg' { + interface IController { + haikangweishi: ExportHaikangweishi; + home: ExportHome; + } +} diff --git a/developedcode/haikangweishi/typings/app/index.d.ts b/developedcode/haikangweishi/typings/app/index.d.ts new file mode 100644 index 0000000..c604948 --- /dev/null +++ b/developedcode/haikangweishi/typings/app/index.d.ts @@ -0,0 +1,7 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +export * from 'egg'; +export as namespace Egg; diff --git a/developedcode/haikangweishi/typings/app/service/index.d.ts b/developedcode/haikangweishi/typings/app/service/index.d.ts new file mode 100644 index 0000000..e1daeca --- /dev/null +++ b/developedcode/haikangweishi/typings/app/service/index.d.ts @@ -0,0 +1,20 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +type AnyClass = new (...args: any[]) => any; +type AnyFunc = (...args: any[]) => T; +type CanExportFunc = AnyFunc> | AnyFunc>; +type AutoInstanceType : T> = U extends AnyClass ? InstanceType : U; +import ExportHaikangweishi = require('../../../app/service/haikangweishi'); +import ExportHome = require('../../../app/service/home'); +import ExportUtils = require('../../../app/service/utils'); + +declare module 'egg' { + interface IService { + haikangweishi: AutoInstanceType; + home: AutoInstanceType; + utils: AutoInstanceType; + } +} diff --git a/developedcode/haikangweishi/typings/config/index.d.ts b/developedcode/haikangweishi/typings/config/index.d.ts new file mode 100644 index 0000000..a8add35 --- /dev/null +++ b/developedcode/haikangweishi/typings/config/index.d.ts @@ -0,0 +1,12 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import { EggAppConfig } from 'egg'; +import ExportConfigDefault = require('../../config/config.default'); +type ConfigDefault = ReturnType; +type NewEggAppConfig = ConfigDefault; +declare module 'egg' { + interface EggAppConfig extends NewEggAppConfig { } +} \ No newline at end of file diff --git a/developedcode/haikangweishi/typings/config/plugin.d.ts b/developedcode/haikangweishi/typings/config/plugin.d.ts new file mode 100644 index 0000000..ea17565 --- /dev/null +++ b/developedcode/haikangweishi/typings/config/plugin.d.ts @@ -0,0 +1,36 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import 'egg-onerror'; +import 'egg-session'; +import 'egg-i18n'; +import 'egg-watcher'; +import 'egg-multipart'; +import 'egg-security'; +import 'egg-development'; +import 'egg-logrotator'; +import 'egg-schedule'; +import 'egg-static'; +import 'egg-jsonp'; +import 'egg-view'; +import 'egg-cors'; +import { EggPluginItem } from 'egg'; +declare module 'egg' { + interface EggPlugin { + onerror?: EggPluginItem; + session?: EggPluginItem; + i18n?: EggPluginItem; + watcher?: EggPluginItem; + multipart?: EggPluginItem; + security?: EggPluginItem; + development?: EggPluginItem; + logrotator?: EggPluginItem; + schedule?: EggPluginItem; + static?: EggPluginItem; + jsonp?: EggPluginItem; + view?: EggPluginItem; + cors?: EggPluginItem; + } +} \ No newline at end of file diff --git a/developedcode/map-client/.browserslistrc b/developedcode/map-client/.browserslistrc new file mode 100644 index 0000000..dc3bc09 --- /dev/null +++ b/developedcode/map-client/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/developedcode/map-client/.editorconfig b/developedcode/map-client/.editorconfig new file mode 100644 index 0000000..7053c49 --- /dev/null +++ b/developedcode/map-client/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/developedcode/map-client/.gitignore b/developedcode/map-client/.gitignore new file mode 100644 index 0000000..403adbc --- /dev/null +++ b/developedcode/map-client/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/developedcode/map-client/README.md b/developedcode/map-client/README.md new file mode 100644 index 0000000..50b30e0 --- /dev/null +++ b/developedcode/map-client/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/developedcode/map-client/index.html b/developedcode/map-client/index.html new file mode 100644 index 0000000..57b8c4f --- /dev/null +++ b/developedcode/map-client/index.html @@ -0,0 +1,14 @@ + + + + + + + 路网编辑器 + + + +
+ + + diff --git a/developedcode/map-client/jsconfig.json b/developedcode/map-client/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/developedcode/map-client/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/developedcode/map-client/package.json b/developedcode/map-client/package.json new file mode 100644 index 0000000..694498d --- /dev/null +++ b/developedcode/map-client/package.json @@ -0,0 +1,42 @@ +{ + "name": "driverlessCar", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview", + "npmi": "npm i" + }, + "dependencies": { + "@kjgl77/datav-vue3": "^1.7.1", + "@mdi/font": "^7.2.96", + "@soerenmartius/vue3-clipboard": "^0.1.2", + "axios": "^1.4.0", + "dayjs": "^1.11.7", + "echarts": "^5.4.3", + "element-plus": "^2.3.4", + "js-md5": "^0.7.3", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "nprogress": "^0.2.0", + "ol": "^7.3.0", + "pinia": "^2.0.35", + "pinia-plugin-persist": "^1.0.0", + "qs": "^6.11.1", + "roboto-fontface": "*", + "screenfull": "^6.0.2", + "ulid": "^2.3.0", + "vue": "^3.2.47", + "vue-router": "^4.1.6", + "vuetify": "^3.0.0", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.2.1", + "sass": "^1.62.1", + "unplugin-auto-import": "^0.15.3", + "unplugin-vue-components": "^0.24.1", + "vite": "^4.3.4", + "vite-plugin-vuetify": "^1.0.0" + } +} diff --git a/developedcode/map-client/public/favicon.png b/developedcode/map-client/public/favicon.png new file mode 100644 index 0000000..3b89289 Binary files /dev/null and b/developedcode/map-client/public/favicon.png differ diff --git a/developedcode/map-client/src/App.vue b/developedcode/map-client/src/App.vue new file mode 100644 index 0000000..e1fcb95 --- /dev/null +++ b/developedcode/map-client/src/App.vue @@ -0,0 +1,35 @@ + + + diff --git a/developedcode/map-client/src/api/download.js b/developedcode/map-client/src/api/download.js new file mode 100644 index 0000000..69c478e --- /dev/null +++ b/developedcode/map-client/src/api/download.js @@ -0,0 +1,10 @@ +import _axios from "@/plugins/axios"; +//获取地图列表 +//获取机器人MQTT信息 +export function getFile(params) { + return _axios({ + url: `/self/getFile`, + method: "get", + params, + }); +} \ No newline at end of file diff --git a/developedcode/map-client/src/api/editor.js b/developedcode/map-client/src/api/editor.js new file mode 100644 index 0000000..460e022 --- /dev/null +++ b/developedcode/map-client/src/api/editor.js @@ -0,0 +1,38 @@ +import _axios from "@/plugins/axios"; +//获机器人端对应瓦片地图的详细信息 +/* map=地图名 */ +export function getDetails(params) { + return _axios({ + url: `/v1/tilemap/details`, + method: "GET", + params, + }); +} +//获机器人端对应瓦片地图的渲染信息 +/* map=地图名 */ +export function getGeojson(params) { + return _axios({ + url: `/v1/roadmap/geojson`, + method: "GET", + params, + }); +} +//保存器人端对应瓦片地图 +/* map=地图名 */ +export function postGeojson(data) { + return _axios({ + url: `/v1/roadmap/geojson`, + method: "POST", + data, + }); +} +//获机器人端对应地图中的瓦片图片 +/* 层级 : 起始值为1,代表第一层级 + x索引 : 列索引,起始值为0,增长方向为垂直向下 + y索引 : 行索引,起始值为0,增长方向为水平向右 */ +export function getTilemap(data) { + return _axios({ + url: `/v1/tilemap/tile/${data.mapName}/${data.zoom}/${xIndex}/${yIndex}`, + method: "GET", + }); +} diff --git a/developedcode/map-client/src/api/ldmqttability.js b/developedcode/map-client/src/api/ldmqttability.js new file mode 100644 index 0000000..1fb5b5b --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttability.js @@ -0,0 +1,11 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// 远程调用机载能力 /ability/function/action/exec | 订阅 | QoS2 | Retain0 +export function actionExec(callback) { + return startMqtt( + "ability/function/action/exec", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/map-client/src/api/ldmqttbuild.js b/developedcode/map-client/src/api/ldmqttbuild.js new file mode 100644 index 0000000..e27037f --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttbuild.js @@ -0,0 +1,63 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); +//订阅地图状态 +export function mappingState(callback) { + return startMqtt("slam/mapping/state", { qos: 0 }, callback); +} + +//取消订阅地图状态 +export function endMappingState(callback) { + return endMqtt("slam/mapping/state"); +} + +//订阅构建进程 +export function recordProgress(callback) { + return startMqtt("map/record/progress", { qos: 2, retain: 0 }, callback); +} + +//取消订阅订阅构建进程 +export function endRecordProgress(callback) { + return endMqtt("map/record/progress"); +} +//订阅当前地图 +export function current_map(callback) { + return startMqtt("map/property/current_map", { qos: 2, retain: 1 }, callback); +} +//取消订阅当前地图 +export function endCurrent_map(callback) { + return endMqtt("map/property/current_map"); +} + +// 构建地图 slam/mapping/action/start | 发布 | QoS2 | Retain0 +export function pubSlamStart(map, map_type) { + return pubCommonFn( + "slam/mapping/action/start", + { + args: [map, map_type], + }, + 2, + 0 + ); +} +// 结束构建地图 slam/mapping/action/finish | 发布 | QoS2 | Retain0 +export function pubSlamFinish() { + return pubCommonFn( + "slam/mapping/action/finish", + { + args: null, + }, + 2, + 0 + ); +} +// 取消构建地图 slam/mapping/action/cancel | 发布 | QoS2 | Retain0 +export function pubSlamCancel(map, map_type) { + return pubCommonFn( + "slam/mapping/action/cancel", + { + args: null, + }, + 2, + 0 + ); +} diff --git a/developedcode/map-client/src/api/ldmqttio.js b/developedcode/map-client/src/api/ldmqttio.js new file mode 100644 index 0000000..2901574 --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttio.js @@ -0,0 +1,11 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// IO量操作 /io/common/state/action/set | 订阅 | QoS2 | Retain0 +export function ioActionSet(callback) { + return startMqtt( + "io/common/state/action/set", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/map-client/src/api/ldmqttlocalization.js b/developedcode/map-client/src/api/ldmqttlocalization.js new file mode 100644 index 0000000..f4e900d --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttlocalization.js @@ -0,0 +1,40 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// 机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function locPose(callback) { + return startMqtt("localization/pose", { qos: 0, retain: 0 }, callback); +} +//添加图片 /channel/img | 订阅 | QoS2 | Retain0 +export function addVedioImge(callback) { + return startMqtt("channel/img", { qos: 0, retain: 0 }, callback); +} +// 取消机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function endLocPose() { + return endMqtt("localization/pose"); +} +// 位姿初始化 /localization/action/init | 订阅 | QoS2 | Retain0 +export function actionInit(x, y, yaw, callback) { + return pubCommonFn( + "localization/action/init", + { + args: [ + { + pose: { + xyz: [x, y, 0], + rpy: [0, 0, yaw], + blh: null, + }, + }, + ], + }, + 2, + 0, + callback + ); +} + +// 取消位姿初始化 /localization/action/init | 订阅 | QoS2 | Retain0 +export function endActionInit() { + return startMqtt("localization/action/init"); +} diff --git a/developedcode/map-client/src/api/ldmqttmessage.js b/developedcode/map-client/src/api/ldmqttmessage.js new file mode 100644 index 0000000..8dab847 --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttmessage.js @@ -0,0 +1,34 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + + + +// 机器人位姿 /localization/pose | 订阅 | QoS2 | Retain0 +export function locPose(callback) { + return startMqtt("localization/pose", { qos: 0, retain: 0 }, callback); +} + +// 错误消息 [ /message/error | 发布 | QoS2 | Retain0 ] +export function messageError(callback) { + return startMqtt("message/error", { qos: 2, retain: 0 }, callback); +} +// 警告消息 [ /message/warn | 发布 | QoS2 | Retain0 ] +export function messageWarn(callback) { + return startMqtt("message/warn", { qos: 2, retain: 0 }, callback); +} +// 日志消息 [ /message/info | 发布 | QoS0 | Retain0 ] +export function messageInfo(callback) { + return startMqtt("message/info", { qos: 0, retain: 0 }, callback); +} +// 错误消息 [ /message/error | 发布 | QoS2 | Retain0 ] +export function endMessageError(callback) { + return endMqtt("message/error"); +} +// 警告消息 [ /message/warn | 发布 | QoS2 | Retain0 ] +export function endMessageWarn(callback) { + return endMqtt("message/warn"); +} +// 日志消息 [ /message/info | 发布 | QoS0 | Retain0 ] +export function endMessageInfo(callback) { + return endMqtt("message/info"); +} diff --git a/developedcode/map-client/src/api/ldmqttnavigation.js b/developedcode/map-client/src/api/ldmqttnavigation.js new file mode 100644 index 0000000..01decd3 --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttnavigation.js @@ -0,0 +1,93 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// // 导航控制- 开启导航 /navigation/stack/action/start | 订阅 | QoS2 | Retain0 +// export function subActionStart(callback) { +// return startMqtt( +// "task/procedure/action/start/reply", +// { qos: 2, retain: 0 }, +// callback +// ); +// } +// 导航控制- 结束导航 /navigation/stack/action/stop | 订阅 | QoS2 | Retain0 +export function actionStop() { + return pubCommonFn( + "navigation/stack/action/stop", + { + args: null, + }, + 2, + 0 + ); +} +// 导航控制- 重启导航 /navigation/stack/action/restart | 订阅 | QoS2 | Retain0 +export function actionRestart(mapName) { + return pubCommonFn( + "navigation/stack/action/restart", + { + args: [mapName], + }, + 2, + 0 + ); +} +// 前往目标点 [ /task/target/action/goto | 订阅 | QoS2 | Retain0 ] +export function actionGoto(callback) { + return startMqtt("task/target/action/goto", { qos: 2, retain: 0 }, callback); +} +// 到达目标点 [ /task/target/action/arrive | 订阅 | QoS2 | Retain1 ] +export function actionArrive(callback) { + return startMqtt("task/target/event/arrive", { qos: 2, retain: 1 }, callback); +} +// 重启导航 [ task/procedure/action/start | 订阅 | QoS2 | Retain0 ] +export function actionStart(map, task) { + return pubCommonFn( + "task/procedure/action/start", + { + args: [ + { + roadmap: map, + task: task, + }, + ], + }, + 2, + 0 + ); +} + +// 继续任务 [ /task/procedure/action/resume | 订阅 | QoS2 | Retain0 ] +export function actionResume() { + return pubCommonFn( + "task/procedure/action/resume", + { + args: null, + }, + 2, + 0 + ); +} + +// 暂停任务 [ /task/procedure/action/pause | 订阅 | QoS1 | Retain0 ] +export function actionPause() { + return pubCommonFn( + "task/procedure/action/pause", + { + args: null, + }, + 2, + 0 + ); +} + +// 取消任务 [ /task/procedure/action/cancel | 订阅 | QoS1 | Retain0 ] +export function actionCancel() { + return pubCommonFn( + "task/procedure/action/cancel", + { + args: null, + }, + 2, + 0 + ); +} diff --git a/developedcode/map-client/src/api/ldmqttplanning.js b/developedcode/map-client/src/api/ldmqttplanning.js new file mode 100644 index 0000000..03dfb88 --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttplanning.js @@ -0,0 +1,19 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt } = useMqtt(); + +// 路径规划 /planning/service/plan/request | 订阅 | QoS2 | Retain0 +export function actionPlant(callback) { + return startMqtt( + "planning/service/plan/request", + { qos: 2, retain: 0 }, + callback + ); +} +// 遇障重规划 /planning/action/replan | 订阅 | QoS2 | Retain0 +export function actionReplan(callback) { + return startMqtt( + "planning/action/replan", + { qos: 2, retain: 0 }, + callback + ); +} diff --git a/developedcode/map-client/src/api/ldmqttsensor.js b/developedcode/map-client/src/api/ldmqttsensor.js new file mode 100644 index 0000000..aa38711 --- /dev/null +++ b/developedcode/map-client/src/api/ldmqttsensor.js @@ -0,0 +1,12 @@ +import useMqtt from "@/plugins/mqtt"; +const { startMqtt, endMqtt, pubCommonFn } = useMqtt(); + +// 电池信息 sensor/battery | 订阅 | QoS2 | Retain0 +export function sensorBattery(callback) { + return startMqtt("sensor/battery", { qos: 2, retain: 0 }, callback); +} + +// 取消电池信息 sensor/battery | 订阅 | QoS2 | Retain0 +export function endSensorBattery() { + return endMqtt("sensor/battery"); +} diff --git a/developedcode/map-client/src/api/map.js b/developedcode/map-client/src/api/map.js new file mode 100644 index 0000000..b418dbd --- /dev/null +++ b/developedcode/map-client/src/api/map.js @@ -0,0 +1,114 @@ +import _axios from "@/plugins/axios"; +//获取地图列表 +export function getMapList() { + return _axios({ + url: `/v1/map/list`, + method: "get", + }); +} +//获取当前地图 +export function getMapUsing() { + return _axios({ + url: `/v1/map/using`, + method: "get", + }); +} +//新建地图 +export function createMap(data) { + return _axios({ + url: `/v1/map/create`, + method: "POST", + data, + }); +} +//获取地图缩略图 +// map=地图名 +export function getMapThumbnail(params) { + return { + data: { + status: true, + name: "图片", + }, + }; +} +//地图重命名 +/* { + "map" : "立得厂区地图", + "rename": "厂房室内地图" +} */ +export function postMapRename(data) { + return _axios({ + url: `/v1/map/rename`, + method: "post", + data, + }); +} +//删除地图工程 +/* { + "map" : "立得厂区地图" +} */ +export function delMap(data) { + return _axios({ + url: `/v1/map/delete`, + method: "delete", + data, + }); +} +//地图工程下载前压缩 +/* { + "map" : "立得厂区地图", + "ignore": ['pcap'] +} */ +export function postMapExportCompress(data) { + return _axios({ + url: `/v1/map/export/compress`, + method: "post", + data, + }); +} +//停止创建 +// map=地图名 +export function postRecordStop(data) { + return _axios({ + url: `/v1/map/record/stop`, + method: "POST", + data, + }); +} +//停止构建 +// map=地图名 +export function postBuildStop(data) { + return _axios({ + url: `/v1/map/build/stop`, + method: "POST", + data, + }); +} +//导入地图工程 +// filedata=地图工程压缩包文件内容 +export function postMapImport(data) { + return _axios({ + url: `/v1/map/import`, + method: "post", + headers: { + "Content-Type": "multipart/form-data", + }, + data, + }); +} +//地图工程组件列表 +// map=地图名 +export function getMapComponents(params) { + return _axios({ + url: `/v1/map/components`, + method: "get", + params, + }); +} +//地图工程任意文件获取 +/* 一个地图工程包含许多文件,如路网、地图瓦片、八叉树地图等,可以下载一个地图工程, +查看具体目录文件结构,本接口用于获取指定地图工程目录下的任意文件, +如/v1/map/file/map_test/tilemap/0/0.png,获取map_test地图工程tilemap/0/目录下的0.png文件。 */ +export function getMapFile(mapName) { + return `/v1/tilemap/tile/${mapName}/{z}/{x}/{y}.png`; +} diff --git a/developedcode/map-client/src/api/nav.js b/developedcode/map-client/src/api/nav.js new file mode 100644 index 0000000..1c6a3de --- /dev/null +++ b/developedcode/map-client/src/api/nav.js @@ -0,0 +1,94 @@ +import _axios from "@/plugins/axios"; +//生成任务 +/* { + "map": "guangchang", + "path": "1", + "coord_type": "local", + "cron": "00 55 15 ? * 1 *", + "coord": [ + [ + 2.33, + -6.9 + ] + ], + "plan": [ + "free" + ], + "repeate": 1 +} */ +export function postV1Path(data) { + return _axios({ + url: `/v1/path`, + method: "POST", + data, + }); +} +//获取任务列表 +/* { + "map": "guangchang", + "path": "1" +} */ +export function getV1Path(params) { + return _axios({ + url: `/v1/path/list`, + method: "GET", + params, + }); +} +//获取当前任务 +/* { + "map": "guangchang", + "path": "1" +} */ +export function getV1(params) { + return _axios({ + url: `/v1/path`, + method: "GET", + params, + }); +} + +//删除任务 +/* { + "map": "guangchang", + "path": "1" +} */ +export function delV1Path(data) { + return _axios({ + url: `/v1/path`, + method: "DELETE", + data, + }); +} +//三色灯 +export function udp(data) { + return _axios({ + url: `/udp`, + method: "post", + data, + }); +} +//音乐列表 +export function mp3List() { + return _axios({ + url: `/mp3/getmp3List`, + method: "get", + }); +} + +//播放 +export function mp3Play(mp3Name) { + return _axios({ + url: `/mp3/play/${mp3Name}`, + method: "get", + }); +} + +//取消 +export function cancelmp3() { + return _axios({ + url: `/mp3/cancelmp3`, + method: "get", + }); +} + diff --git a/developedcode/map-client/src/api/player.js b/developedcode/map-client/src/api/player.js new file mode 100644 index 0000000..c51bb21 --- /dev/null +++ b/developedcode/map-client/src/api/player.js @@ -0,0 +1,9 @@ +import _axios from "@/plugins/axios"; +//获取地图列表 +export function getPreviewUrl(params) { + return _axios({ + url: `/ay-video-manage/video/monitor/getRealTimeMonitorVideo`, + method: "post", + params, + }); +} diff --git a/developedcode/map-client/src/api/roadmap.js b/developedcode/map-client/src/api/roadmap.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/map-client/src/api/roadmap.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/map-client/src/api/robot.js b/developedcode/map-client/src/api/robot.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/map-client/src/api/robot.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/map-client/src/api/sensing.js b/developedcode/map-client/src/api/sensing.js new file mode 100644 index 0000000..fa76eab --- /dev/null +++ b/developedcode/map-client/src/api/sensing.js @@ -0,0 +1,5 @@ +import axios from "axios"; +//获取地图列表 +export function getPointcloud3d() { + return axios.get(`/v1/sensor/pointcloud/3d`, { responseType: "arraybuffer" }); +} diff --git a/developedcode/map-client/src/api/tilemap.js b/developedcode/map-client/src/api/tilemap.js new file mode 100644 index 0000000..97d59ee --- /dev/null +++ b/developedcode/map-client/src/api/tilemap.js @@ -0,0 +1,25 @@ +import _axios from "@/plugins/axios"; +//登录 +export function login(data) { + return _axios({ + url: `/api/user/login`, + method: "post", + data, + }); +} +//登出 +export function logout(data) { + return _axios({ + url: `/api/user/logout`, + method: "post", + data, + }); +} +//获取用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/api/user/info`, + method: "post", + data, + }); +} diff --git a/developedcode/map-client/src/api/user.js b/developedcode/map-client/src/api/user.js new file mode 100644 index 0000000..4e6c188 --- /dev/null +++ b/developedcode/map-client/src/api/user.js @@ -0,0 +1,41 @@ +import _axios from "@/plugins/axios"; + +//登录 +export function login(data) { + return _axios({ + url: `v1/user/auth`, + method: "POST", + data, + }); +} +//修改用户信息 +export function getUserInfo(data) { + return _axios({ + url: `/v1/user/info`, + method: "post", + data, + }); +} +//获取机器人MQTT信息 +export function getRobotInfo() { + return _axios({ + url: `/v1/robot/mqtt`, + method: "get", + }); +} +//获取机器人MQTT信息 +export function setRouterFav(data) { + return _axios({ + url: `/self/setRouterFav`, + method: "post", + data, + }); +} +//获取机器人MQTT信息 +export function getRouterFav(data) { + return _axios({ + url: `/self/getRouterFav`, + method: "post", + data, + }); +} diff --git a/developedcode/map-client/src/assets/img/carLogo.png b/developedcode/map-client/src/assets/img/carLogo.png new file mode 100644 index 0000000..ba9491d Binary files /dev/null and b/developedcode/map-client/src/assets/img/carLogo.png differ diff --git a/developedcode/map-client/src/assets/img/carrotate.gif b/developedcode/map-client/src/assets/img/carrotate.gif new file mode 100644 index 0000000..ce70233 Binary files /dev/null and b/developedcode/map-client/src/assets/img/carrotate.gif differ diff --git a/developedcode/map-client/src/assets/img/carrotate.zip b/developedcode/map-client/src/assets/img/carrotate.zip new file mode 100644 index 0000000..0d28a4e Binary files /dev/null and b/developedcode/map-client/src/assets/img/carrotate.zip differ diff --git a/developedcode/map-client/src/assets/img/dir_backward.png b/developedcode/map-client/src/assets/img/dir_backward.png new file mode 100644 index 0000000..fd4b924 Binary files /dev/null and b/developedcode/map-client/src/assets/img/dir_backward.png differ diff --git a/developedcode/map-client/src/assets/img/dir_forward.png b/developedcode/map-client/src/assets/img/dir_forward.png new file mode 100644 index 0000000..6686959 Binary files /dev/null and b/developedcode/map-client/src/assets/img/dir_forward.png differ diff --git a/developedcode/map-client/src/assets/img/dir_two_way.png b/developedcode/map-client/src/assets/img/dir_two_way.png new file mode 100644 index 0000000..263d6c0 Binary files /dev/null and b/developedcode/map-client/src/assets/img/dir_two_way.png differ diff --git a/developedcode/map-client/src/assets/img/download.jpg b/developedcode/map-client/src/assets/img/download.jpg new file mode 100644 index 0000000..fcd44f5 Binary files /dev/null and b/developedcode/map-client/src/assets/img/download.jpg differ diff --git a/developedcode/map-client/src/assets/img/login-bg.jpg b/developedcode/map-client/src/assets/img/login-bg.jpg new file mode 100644 index 0000000..a99f97d Binary files /dev/null and b/developedcode/map-client/src/assets/img/login-bg.jpg differ diff --git a/developedcode/map-client/src/assets/img/login-logo.png b/developedcode/map-client/src/assets/img/login-logo.png new file mode 100644 index 0000000..da5063d Binary files /dev/null and b/developedcode/map-client/src/assets/img/login-logo.png differ diff --git a/developedcode/map-client/src/assets/img/login-welcom.png b/developedcode/map-client/src/assets/img/login-welcom.png new file mode 100644 index 0000000..f490738 Binary files /dev/null and b/developedcode/map-client/src/assets/img/login-welcom.png differ diff --git a/developedcode/map-client/src/assets/img/map-building.png b/developedcode/map-client/src/assets/img/map-building.png new file mode 100644 index 0000000..363ffb3 Binary files /dev/null and b/developedcode/map-client/src/assets/img/map-building.png differ diff --git a/developedcode/map-client/src/assets/img/map-recording.png b/developedcode/map-client/src/assets/img/map-recording.png new file mode 100644 index 0000000..adc4d85 Binary files /dev/null and b/developedcode/map-client/src/assets/img/map-recording.png differ diff --git a/developedcode/map-client/src/assets/img/map-unavailable.png b/developedcode/map-client/src/assets/img/map-unavailable.png new file mode 100644 index 0000000..509fa26 Binary files /dev/null and b/developedcode/map-client/src/assets/img/map-unavailable.png differ diff --git a/developedcode/map-client/src/assets/img/normal_point.png b/developedcode/map-client/src/assets/img/normal_point.png new file mode 100644 index 0000000..f2756a7 Binary files /dev/null and b/developedcode/map-client/src/assets/img/normal_point.png differ diff --git a/developedcode/map-client/src/assets/img/positionBg.png b/developedcode/map-client/src/assets/img/positionBg.png new file mode 100644 index 0000000..255f69c Binary files /dev/null and b/developedcode/map-client/src/assets/img/positionBg.png differ diff --git a/developedcode/map-client/src/assets/img/robot.png b/developedcode/map-client/src/assets/img/robot.png new file mode 100644 index 0000000..5a43083 Binary files /dev/null and b/developedcode/map-client/src/assets/img/robot.png differ diff --git a/developedcode/map-client/src/assets/img/target.png b/developedcode/map-client/src/assets/img/target.png new file mode 100644 index 0000000..3e1502d Binary files /dev/null and b/developedcode/map-client/src/assets/img/target.png differ diff --git a/developedcode/map-client/src/assets/img/target_filled.png b/developedcode/map-client/src/assets/img/target_filled.png new file mode 100644 index 0000000..c2e8da8 Binary files /dev/null and b/developedcode/map-client/src/assets/img/target_filled.png differ diff --git a/developedcode/map-client/src/assets/img/totalbg.png b/developedcode/map-client/src/assets/img/totalbg.png new file mode 100644 index 0000000..1c9a019 Binary files /dev/null and b/developedcode/map-client/src/assets/img/totalbg.png differ diff --git a/developedcode/map-client/src/assets/json/mapdetail.json b/developedcode/map-client/src/assets/json/mapdetail.json new file mode 100644 index 0000000..f915502 --- /dev/null +++ b/developedcode/map-client/src/assets/json/mapdetail.json @@ -0,0 +1,13 @@ +{ + "status": true, + "min_zoom": 1, + "projection": { + "extent": [ + -76.3218753, + -128.075505, + 333.27812470000003, + 281.524495 + ] + }, + "layer_cnt": 5 +} \ No newline at end of file diff --git a/developedcode/map-client/src/assets/json/mapgeo.json b/developedcode/map-client/src/assets/json/mapgeo.json new file mode 100644 index 0000000..52eaf4e --- /dev/null +++ b/developedcode/map-client/src/assets/json/mapgeo.json @@ -0,0 +1,11357 @@ +{ + "status": true, + "type": "FeatureCollection", + "features": [ + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.33, + 109.2, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_209" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 114.74, + 120.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_210" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 123.98652741411871, + 39.621348055594005 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_65", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 116.89, + 38.99, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_190" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 128.22, + 40.64 + ], + [ + 163.39, + 40.36 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_236", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_202", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 128.22, + 40.64, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_206" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163.39, + 40.36, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_202" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 128.22, + 40.64 + ], + [ + 121.92, + 40.99 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_20", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_206" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 122.33, + 109.2 + ], + [ + 122.07, + 51.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_237", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_207", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_209" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.07, + 51.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_207" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 122.13, + 32.63, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_189" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 164.67, + 38.38 + ], + [ + 128.02, + 38.59 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_272", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_274", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_275" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 121.62737243638458, + 39.30414138493709 + ], + [ + 122.13, + 32.63 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_14", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_189", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 164.67, + 38.38 + ], + [ + 164.67, + 38.38 + ], + [ + 169.3094360602535, + 38.252569042998665 + ], + [ + 169.3, + 32.79 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_52", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_237", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_275" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 169.3, + 32.79, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_237" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164.67, + 38.38, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_275" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 128.02, + 38.59, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_274" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 116.89, + 38.99 + ], + [ + 128.02, + 38.59 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_278", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_274", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_190" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 74.74, + 114.74 + ], + [ + 74.36, + 43.76 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_233", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_195", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_197" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.74, + 114.74, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_197" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 78.12, + 120.27 + ], + [ + 74.12390249308922, + 121.12522557182305 + ], + [ + 74.74, + 114.74 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_67", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_197", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_198" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 78.12, + 120.27, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_198" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 78.12, + 120.27 + ], + [ + 114.74, + 120.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_238", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_210", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_198" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 68.75, + 119.94 + ], + [ + 74.8132454527776, + 119.94006080401383 + ], + [ + 74.74, + 114.74 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_42", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_197", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_261" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 68.75, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_261" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 114.74, + 120.78 + ], + [ + 122.27, + 120.28 + ], + [ + 122.33, + 109.2 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_21", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_209", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_210" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 79.05, + 38.77 + ], + [ + 74.41829350632814, + 38.335181813034936 + ], + [ + 74.36, + 43.76 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_62", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_195", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_192" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.36, + 43.76 + ], + [ + 74.99125979522887, + 38.03407766099702 + ], + [ + 66.75, + 38.85 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_64", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_280", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_195" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 79.05, + 38.77 + ], + [ + 116.89, + 38.99 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 1, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_229", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_190", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_192" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 79.05, + 38.77, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_192" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 66.75, + 38.85 + ], + [ + 42.55, + 39.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_282", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_285", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 42.55, + 39.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_285" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.36, + 43.76, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_195" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 66.75, + 38.85, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0.058, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_145" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 36.15, + 12.33 + ], + [ + 36.15, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_154", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_145", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_101" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_101" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.25, + 33.42 + ], + [ + 72.768378980487, + 39.45619861091159 + ], + [ + 79.05, + 38.77 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_63", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_192", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_191" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 38.91849277694247, + 39.15730761911717 + ], + [ + 42.55, + 39.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_59", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_285", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 66.75, + 38.85 + ], + [ + 75.44783316762961, + 39.271754774448404 + ], + [ + 74.25, + 33.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_55", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_191", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_280" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.25, + 33.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_191" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 39.89, + 34.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_254" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_100" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.1, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_260" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.1, + 119.94 + ], + [ + 68.75, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_265", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_261", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_260" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_96" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 39.89, + 39.21 + ], + [ + 34.84654755248199, + 39.21 + ], + [ + 33.97, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_54", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_279", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.97, + 39.21, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_279" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_105" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_98" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + 9.25 + ], + [ + 32.34, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_137", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_146", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_149" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + 12.33 + ], + [ + 34.88, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_153", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_147", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_102" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + 12.33 + ], + [ + 29.8, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_149", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_144", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_96" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + 12.32, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_104" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_102" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_149" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + 9.25 + ], + [ + 33.61, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_138", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_148", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_146" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_103" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_147" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_142" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + 12.33 + ], + [ + 33.61, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_152", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_148", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_105" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + 12.33 + ], + [ + 31.07, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_150", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_149", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_103" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_144" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + 9.25 + ], + [ + 36.15, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_140", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_145", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_147" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + 9.25 + ], + [ + 31.07, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_136", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_149", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_144" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + 9.25 + ], + [ + 29.8, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_135", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_144", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_143" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 74.25, + 33.42 + ], + [ + 74.51, + -28.83 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_231", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_194", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_191" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 168.47, + -28.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_233" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 169.3, + 32.79 + ], + [ + 168.47, + -28.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_252", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_233", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_237" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 121.31, + -27.49, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_188" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 122.13, + 32.63 + ], + [ + 121.31, + -27.49 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_228", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_188", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_189" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 67.76, + -33.25 + ], + [ + 44.56, + -33.05 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_281", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_283", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_282" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 163.24, + -33.12 + ], + [ + 168.43, + -33.17 + ], + [ + 168.47, + -28.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_28", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_233", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_183" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163.24, + -33.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_183" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 125.66, + -32.42 + ], + [ + 163.24, + -33.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_227", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_183", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_187" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 44.56, + -33.05, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 3.091, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_283" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 121.31, + -27.49 + ], + [ + 121.79827056936657, + -32.553832057902824 + ], + [ + 125.66, + -32.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_13", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_187", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_188" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 125.66, + -32.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_187" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74.51, + -28.83, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_194" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 121.31, + -27.49 + ], + [ + 122.33934444074058, + -34.26533750433006 + ], + [ + 114.8, + -33.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_61", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_288", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_188" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.51, + -28.83 + ], + [ + 75.51014973047997, + -34.231841828585786 + ], + [ + 67.76, + -33.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_56", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_282", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_194" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 114.8, + -33.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.009, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_288" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 74.51, + -28.83 + ], + [ + 74.7277778507612, + -33.41796122948074 + ], + [ + 79.55, + -33.31 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_60", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_287", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_194" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 79.55, + -33.31, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.029, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_287" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 67.76, + -33.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -3.124, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_282" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 79.55, + -33.31 + ], + [ + 114.8, + -33.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_284", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_288", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_287" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + -7.42 + ], + [ + 34.88, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_167", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_134", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_133" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_133" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_135" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + -7.42 + ], + [ + 33.61, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_166", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_133", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_132" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_146" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_148" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + 12.32 + ], + [ + 32.34, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_151", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_146", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_104" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + 9.25 + ], + [ + 34.88, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_139", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_147", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_148" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_23" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 36.15, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_25" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 33.61, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_33" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 36.15, + -7.42 + ], + [ + 36.15, + -10.28 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_169", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_25", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_135" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.88, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_134" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.61, + -10.28 + ], + [ + 33.61, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_171", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_133", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_33" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_132" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + -7.42 + ], + [ + 36.15, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_168", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_135", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_134" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 44.56, + -33.05 + ], + [ + 37.85430361325207, + -31.78547308012859 + ], + [ + 39.49, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_57", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_262", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_283" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 39.49, + -21.82 + ], + [ + 39.446528948723135, + -27.044624691423248 + ], + [ + 34.44, + -27.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_50", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_272", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_262" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 39.89, + 34.01 + ], + [ + 39.49, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_267", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_262", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_254" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 32.34, + -10.28 + ], + [ + 32.34, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_172", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_132", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_32" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 34.44, + -27.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_272" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 39.49, + -21.82, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_262" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 32.34, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_32" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.88, + -10.28 + ], + [ + 34.88, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_170", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_134", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_23" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.65, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_27" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.76, + 0.12 + ], + [ + 29.65, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_82", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_27", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_65" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_72" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.65, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_29" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + 9.25 + ], + [ + 28.53, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_148", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_100", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_143" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_143" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_73" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.76, + 1.81 + ], + [ + 29.65, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_78", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_29", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_72" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_129" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + -7.42 + ], + [ + 29.8, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_163", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_130", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_129" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_131" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_130" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + -7.42 + ], + [ + 31.07, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_164", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_131", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_130" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + -7.42 + ], + [ + 32.34, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_165", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_132", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_131" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_67" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.76, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_65" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.53, + -10.28 + ], + [ + 28.53, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_175", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_129", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_35" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 31.07, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_31" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + -10.28 + ], + [ + 27.26, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_176", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_128", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_45" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 31.07, + -10.28 + ], + [ + 31.07, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_173", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_131", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_31" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_45" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 29.8, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_40" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 28.53, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_35" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 29.8, + -10.28 + ], + [ + 29.8, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_174", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_130", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_40" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3.19, + 115.43, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_238" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 6.65, + 119.85 + ], + [ + 3.19, + 119.8 + ], + [ + 3.19, + 115.43 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_31", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_238", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_225" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 6.65, + 119.85, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_225" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.65, + 119.85 + ], + [ + 20.9, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_247", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_216", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_225" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.9, + 119.94, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_216" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 26.9, + 114.31 + ], + [ + 26.76, + 50.63 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_244", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_212", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_218" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 26.76, + 50.63, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_212" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.19, + 115.43 + ], + [ + 3.16, + 92.46 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_256", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_240", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_238" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3.16, + 92.46, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_240" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.99, + 57.15, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_17" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 26.9, + 114.31 + ], + [ + 26.93039704949427, + 119.85714252816021 + ], + [ + 33.1, + 119.94 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_41", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_260", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_218" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 26.9, + 114.31, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_218" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 20.9, + 119.94 + ], + [ + 27.433144483648924, + 120.124457207128 + ], + [ + 26.9, + 114.31 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_68", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_218", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_216" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 11.46, + 31.84 + ], + [ + 11.38, + 38.99 + ], + [ + 18.75, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_53", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_277", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_162" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.75, + 39.21 + ], + [ + 33.97, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_275", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_279", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_277" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 26.76, + 50.63 + ], + [ + 28.30388596930195, + 39.90788123287311 + ], + [ + 18.75, + 39.21 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_66", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_277", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_212" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 11.46, + 31.84, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_162" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 2.97, + 43.9 + ], + [ + 2.97, + 39.03 + ], + [ + 7.28, + 39.03 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_36", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_250", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_244" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 7.28, + 39.03, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_250" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.75, + 39.21, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_277" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.99, + 57.15 + ], + [ + 2.97, + 43.9 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_257", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_244", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_17" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.79, + 89.91 + ], + [ + -1.85, + 87.13 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_5", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_7", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_8" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.79, + 89.91, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.554, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_8" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.96, + 89.84, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.035, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_9" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.96, + 89.84 + ], + [ + -1.79, + 89.91 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_4", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_8", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_9" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -5.27, + 90.47, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_243" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 3.16, + 92.46 + ], + [ + 3.16, + 90.47 + ], + [ + 0.27, + 90.53 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_32", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_241", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_240" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 0.27, + 90.53, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_241" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -5.27, + 90.47 + ], + [ + 0.27, + 90.53 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_255", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_241", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_243" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.43, + 75.19 + ], + [ + -9.4, + 73.73 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_2", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_3", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_2" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.43, + 75.19, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.047, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_2" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.85, + 79.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.535, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_6" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.85, + 87.13 + ], + [ + -1.85, + 79.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_6", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_6", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_7" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -3.64, + 74.72, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0.638, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_5" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -3.59, + 82.47, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_160" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -3.59, + 82.47 + ], + [ + -1.85, + 87.13 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_199", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_7", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_160" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.85, + 87.13, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 1.553, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_7" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1.85, + 79.25 + ], + [ + -1.82, + 70.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_271", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_273", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_6" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2.97, + 43.9, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_244" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -6.93, + 73.69, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.024, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_4" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + -1.85, + 79.25 + ], + [ + -1.6137476620900153, + 76.24595335465719 + ], + [ + -3.4489290751355384, + 73.63419016812544 + ], + [ + -6.93, + 73.69 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_3", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_4", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_6" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.4, + 73.73 + ], + [ + -6.93, + 73.69 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_3", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_4", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_3" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 2.96, + 89.84 + ], + [ + 2.99, + 57.15 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "xytolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_11", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "name": "", + "minspeed": 0, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_17", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_9" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -1.82, + 70.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_273" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.4, + 73.73, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -1.55, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_3" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.74, + 87.92 + ], + [ + -12.75, + 82.44 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_200", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_157", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_156" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.75, + 82.44, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_157" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.74, + 87.92, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_156" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.74, + 87.92 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_192", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_156" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.47, + 88.02, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_152" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -1.79, + 89.91 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_195", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_8", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.26, + 88.07, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_153" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_188", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.75, + 82.44 + ], + [ + -12.76, + 76.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_201", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_155", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_157" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.24, + 82.42 + ], + [ + -9.45, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_197", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_159", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.24, + 82.42 + ], + [ + -11.26, + 88.07 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_203", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_153", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.75, + 82.44 + ], + [ + -11.24, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_196", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_158", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_157" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.47, + 88.02 + ], + [ + -9.45, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_204", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_159", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_152" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -9.45, + 82.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_159" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.45, + 82.42 + ], + [ + -3.59, + 82.47 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_198", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_160", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_159" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.24, + 82.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_158" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -9.45, + 82.42 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_205", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_159" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_193", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -12.92, + 75.29 + ], + [ + -9.43, + 75.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 109, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_1", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_2", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_1" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -11.24, + 82.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_202", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_158", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.92, + 75.29, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": -0.045, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_1" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -11.21, + 76.14 + ], + [ + -12.76, + 76.19 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_190", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_155", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -11.21, + 76.14, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_154" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -12.76, + 76.19, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_155" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + 12.33 + ], + [ + 24.72, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_145", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_140", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_86" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + 9.25 + ], + [ + 27.26, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_133", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_142", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_141" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + 9.25 + ], + [ + 28.53, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_134", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_143", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_142" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_94" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_86" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_91" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_74" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_93" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + 9.25 + ], + [ + 25.99, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_146", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_94", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_141" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_141" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + 12.33 + ], + [ + 27.26, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_147", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_142", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_98" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_140" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + 9.25 + ], + [ + 25.99, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_132", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_141", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_140" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 3.11 + ], + [ + 27.76, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_88", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_73", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_70" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_66" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 1.81 + ], + [ + 27.76, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_77", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_72", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_71" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_71" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_70" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 3.11 + ], + [ + 25.94, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_87", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_70", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_92" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_92" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 4.41 + ], + [ + 25.94, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_90", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_74", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_91" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_137" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + 9.25 + ], + [ + 22.18, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_129", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_138", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_137" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + 9.25 + ], + [ + 22.18, + 12.33 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_143", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_95", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_138" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + 12.33 + ], + [ + 20.91, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_142", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_137", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_85" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_138" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_85" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_95" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_97" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 5.71 + ], + [ + 23.96, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_91", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_93", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_88" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_88" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_139" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 7.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_81" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + 9.25 + ], + [ + 24.72, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_131", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_140", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_139" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + 9.25 + ], + [ + 23.45, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_130", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_139", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_138" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + 9.25 + ], + [ + 20.91, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_128", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_137", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_136" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + 12.33 + ], + [ + 23.45, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_144", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_139", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_97" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 1.81 + ], + [ + 23.96, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_75", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_90", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_77" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_78" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 1.81 + ], + [ + 25.94, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_76", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_71", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_90" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_90" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_77" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 3.11 + ], + [ + 23.96, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_86", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_92", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_78" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 4.41 + ], + [ + 23.96, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_89", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_91", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_76" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_76" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 9.25 + ], + [ + 18.37, + 7.01 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_109", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_109", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_136" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + 12.33 + ], + [ + 19.64, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_127", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_136", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_99" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 12.33 + ], + [ + 18.37, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_108", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_119", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_107" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_107" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 9.25, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + 12.33, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_99" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 9.25 + ], + [ + 19.64, + 9.25 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_141", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_136", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_119" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 4.41, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 4.41 + ], + [ + 21.97, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_103", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_76", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 7.01 + ], + [ + 18.37, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_110", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_110", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_109" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 5.71, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_110" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 5.71 + ], + [ + 18.37, + 4.41 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_111", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_111", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_110" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 5.71 + ], + [ + 21.97, + 5.71 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_107", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_88", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_110" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 7.01, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_109" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 7.01 + ], + [ + 21.97, + 7.01 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_105", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_81", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_109" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 3.11, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_112" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_114" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 1.81 + ], + [ + 21.97, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_101", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_77", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_113" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + 1.81, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_113" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 0.12 + ], + [ + 21.97, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_100", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_82", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_114" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 3.11 + ], + [ + 18.37, + 1.81 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_113", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_113", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_112" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 4.41 + ], + [ + 18.37, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_112", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_112", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_111" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 3.11 + ], + [ + 21.97, + 3.11 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_102", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_78", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_112" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + -1.18 + ], + [ + 25.94, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_84", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_68", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_79" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_68" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + 0.12 + ], + [ + 25.94, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_80", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_66", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_106" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_106" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + 0.12 + ], + [ + 27.76, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_81", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_65", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_66" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + -7.42 + ], + [ + 27.26, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_161", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_128", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_127" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_126" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_89" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.94, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_69" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_80" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.96, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_79" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.96, + -2.48 + ], + [ + 25.94, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_93", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_69", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_80" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.94, + -1.18 + ], + [ + 27.76, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_85", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_67", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_68" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 27.26, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_128" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 24.72, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_37" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_48" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 25.99, + -10.28 + ], + [ + 25.99, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_177", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_127", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_48" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 25.99, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_127" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + -10.28 + ], + [ + 24.72, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_178", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_126", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_37" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.72, + -7.42 + ], + [ + 25.99, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_160", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_127", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_126" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.26, + -7.42 + ], + [ + 28.53, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_162", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_129", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_128" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_84" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -3.78 + ], + [ + 23.96, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_94", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_89", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_84" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_87" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -2.48 + ], + [ + 23.96, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_92", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_80", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_87" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_83" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + 0.12 + ], + [ + 23.96, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_79", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_106", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_82" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 21.97, + -1.18 + ], + [ + 23.96, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_83", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_79", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_83" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + 0.12, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_82" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + -7.42 + ], + [ + 22.18, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_157", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_124", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_123" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + -7.42 + ], + [ + 20.91, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_156", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_123", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_122" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_125" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_124" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + -7.42 + ], + [ + 23.45, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_158", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_125", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_124" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_123" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + -7.42 + ], + [ + 24.72, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_159", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_126", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_125" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 21.97, + -5.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_75" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 19.64, + -10.28 + ], + [ + 19.64, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_182", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_122", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_59" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 20.91, + -10.28 + ], + [ + 20.91, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_181", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_123", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_53" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 22.18, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_39" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 20.91, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_53" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_59" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 22.18, + -10.28 + ], + [ + 22.18, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_180", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_124", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_39" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 23.45, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_51" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 23.45, + -10.28 + ], + [ + 23.45, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_179", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_125", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_51" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -3.78, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -2.48 + ], + [ + 21.97, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_98", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_87", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 0.12 + ], + [ + 18.37, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_115", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_115", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_114" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -2.48, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -1.18 + ], + [ + 21.97, + -1.18 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_99", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_83", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_115" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + 1.81 + ], + [ + 18.37, + 0.12 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_114", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_114", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_113" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -1.18 + ], + [ + 18.37, + -2.48 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_116", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_116", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_115" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -1.18, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_115" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_118" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 19.64, + -7.42, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_122" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -7.42 + ], + [ + 19.64, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_155", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_122", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_118" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -3.78 + ], + [ + 21.97, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_97", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_84", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -5.08 + ], + [ + 21.97, + -5.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_106", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_75", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_117" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -5.08, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_117" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -3.78 + ], + [ + 18.37, + -5.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_118", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_117", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_108" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -2.48 + ], + [ + 18.37, + -3.78 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_117", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_108", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_116" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 16.63, + -27 + ], + [ + 34.44, + -27.08 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_270", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_272", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_271" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 18.37, + -10.28, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_61" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.46, + 31.84 + ], + [ + 11.42, + -21.82 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_268", + "name": "", + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "minspeed": 0, + "xytolerance": 0.2, + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_266", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_162" + } + }, + { + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 11.42, + -21.82 + ], + [ + 11.635992797409926, + -27.016661067827307 + ], + [ + 16.63, + -27 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "b_51", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_271", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_266" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 16.63, + -27, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_271" + } + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 11.42, + -21.82, + 0 + ] + }, + "type": "Feature", + "properties": { + "name": "", + "yaw": 0, + "pitch": 0, + "roll": 0, + "isyawfix": false, + "taskid": 0, + "offset": 0, + "id": "p_266" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -7.42 + ], + [ + 18.37, + -10.28 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_120", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_61", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_118" + } + }, + { + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 18.37, + -5.08 + ], + [ + 18.37, + -7.42 + ] + ] + }, + "type": "Feature", + "properties": { + "maxspeed": 8, + "s2eforward": 0, + "thtolerance": 0.2, + "direct": 110, + "lanewidth": 1, + "controltype": 0, + "chassistype": 10, + "mintheta": -1, + "id": "l_119", + "minspeed": 0, + "obsvalue": 200, + "followdis": 0.4, + "e2sforward": 0, + "selftheta": 0.5, + "runtype": 0, + "xytolerance": 0.2, + "name": "", + "maxtheta": 1, + "leftlanenum": 0, + "plantype": 0, + "rightlanenum": 0, + "endid": "p_118", + "roadwidth": 0, + "obstype": 0, + "slowdis": 2, + "startid": "p_117" + } + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -62.92, + -83.33 + ], + [ + -62.92, + 170.78 + ], + [ + 219.3, + 170.78 + ], + [ + 219.3, + -83.33 + ], + [ + -62.92, + -83.33 + ] + ] + ] + }, + "type": "Feature", + "properties": { + "color": "#cccccc", + "type": 0, + "id": "s_auto", + "name": "auto", + "transparent": 50 + } + } + ] +} \ No newline at end of file diff --git a/developedcode/map-client/src/main.js b/developedcode/map-client/src/main.js new file mode 100644 index 0000000..81f92d1 --- /dev/null +++ b/developedcode/map-client/src/main.js @@ -0,0 +1,32 @@ +import App from "./App.vue"; +import { createApp } from "vue"; +// 引入acro实例 +import { registerPlugins } from "@/plugins/vuetify"; +//全局使用message +import { ElMessage } from "element-plus"; +// 引入pinia 实例 +import pinia from "@/store/index.js"; +// 引入路由实例 +import router from "@/router/index.js"; +// 剪切板 +import { VueClipboard } from "@soerenmartius/vue3-clipboard"; +//全局引入lodash +import _ from "lodash"; +//全局引入大屏组件 +import DataVVue3 from '@kjgl77/datav-vue3' +//全局挂在axios +import axios from "@/plugins/axios"; +import dayjs from "dayjs"; +import "@/utils/permission"; +const app = createApp(App); +app.config.globalProperties.$_ = _; //挂载到app实例上 +app.config.globalProperties.$axios = axios; //挂载到app实例上 +app.config.globalProperties.$dayjs = dayjs; //挂载到app实例上 +app.config.globalProperties.$message = ElMessage; //挂载到app实例上 +registerPlugins(app); +app + .use(pinia) //中央仓库pinia + .use(router) //路由 + .use(VueClipboard)//剪切板 + .use(DataVVue3); //大屏 +app.mount("#app"); diff --git a/developedcode/map-client/src/mixin/totalmixin.js b/developedcode/map-client/src/mixin/totalmixin.js new file mode 100644 index 0000000..e5c7aa2 --- /dev/null +++ b/developedcode/map-client/src/mixin/totalmixin.js @@ -0,0 +1,75 @@ +import { + userStore, + snackbarStore, + breadcrumbsStore, + dialogFullscreenStore, +} from "@/store"; +export default { + data() { + return { + userObj: userStore(), + snackbarsObj: snackbarStore(), + breadcrumbsObj: breadcrumbsStore(), + dialogFullscreenObj: dialogFullscreenStore(), + }; + }, + methods: { + // snackBar + openSnackbar(params) { + return this.snackbarsObj.openSnackbar(params); + }, + closeSnackbar(index) { + return this.snackbarsObj.closeSnackbar(index); + }, + openSuccessSnackbar(message) { + return this.snackbarsObj.openSuccessSnackbar(message); + }, + openFailureSnackbar(message, timeout) { + return this.snackbarsObj.openFailureSnackbar(message, timeout); + }, + openInfoSnackbar(message) { + return this.snackbarsObj.openInfoSnackbar(message); + }, + cleanSnackbar() { + return this.snackbarsObj.cleanSnackbar(); + }, + // breadcrumbs + editBreadcrumbs(breadcrumbsList) { + return this.breadcrumbsObj.editBreadcrumbs(breadcrumbsList); + }, + // breadcrumbs + setDialogFullscreen(bol = false) { + return this.dialogFullscreenObj.setDialogFullscreen(bol); + }, + // breadcrumbs + setRobot(robot) { + return this.userObj.setRobot(robot); + }, + setBattery(battery) { + return this.userObj.setBattery(battery); + }, + setRouteList(routeList, isSave) { + return this.userObj.setRouteList(routeList, isSave); + }, + }, + computed: { + snackbars() { + return this.snackbarsObj.snackbars; + }, + breadcrumbsList() { + return this.breadcrumbsObj.breadcrumbsList; + }, + dialogFullscreen() { + return this.dialogFullscreenObj.dialogFullscreen; + }, + robotObj() { + return this.userObj.robot; + }, + batteryObj() { + return this.userObj.battery; + }, + routeListObj() { + return this.userObj.routeList; + }, + }, +}; diff --git a/developedcode/map-client/src/plugins/axios.js b/developedcode/map-client/src/plugins/axios.js new file mode 100644 index 0000000..a008707 --- /dev/null +++ b/developedcode/map-client/src/plugins/axios.js @@ -0,0 +1,47 @@ +import axios from "axios"; +import qs from "qs"; +import { ElMessage } from "element-plus"; +let config = { + baseURL: "", + timeout: 600 * 1000, + withCredentials: true, // Check cross-site Access-Control + /* `paramsSerializer` 是一个负责 `params` 序列化的函数 + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }) + // 'a[0]=b&a[1]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }) + // 'a[]=b&a[]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }) + // 'a=b&a=c' + */ + paramsSerializer: (params) => { + return qs.stringify(params, { arrayFormat: "indices" }); + }, +}; + +const _axios = axios.create(config); + +_axios.interceptors.request.use( + (config) => { + return config; + }, + (error) => { + return Promise.reject(error); + } +); +_axios.interceptors.response.use( + (response) => { + if (response.status === 200) { + if (!response.data.status) { + ElMessage.error(response.data.msg); + } + return Promise.resolve(response.data); + } else { + ElMessage.error(response.msg); + return Promise.reject(response.data); + } + }, + (error) => { + ElMessage.error(error); + } +); +export default _axios; diff --git a/developedcode/map-client/src/plugins/mqtt.js b/developedcode/map-client/src/plugins/mqtt.js new file mode 100644 index 0000000..72788ef --- /dev/null +++ b/developedcode/map-client/src/plugins/mqtt.js @@ -0,0 +1,224 @@ +import * as mqtt from "mqtt/dist/mqtt.min"; +import { ulid } from "ulid"; +import { snackbarStore } from "@/store"; +import _ from "lodash"; +let robot = { + did: "ede2a4d227b81d36", + pid: "robot4inspection", +}; +const mqttSlamPID = "slam_server"; +let client = null; +let PublicMqtt = null; +let urlLocal = "ws://42.235.239.240:8004/mqtt" +class MQTT { + url = urlLocal; // mqtt地址 + connectedSuccess = false + //初始化mqtt + init() { + let options = { + clean: true, + keepalive: 5, + clientId: ulid(), // 客户端分类唯一 + username: "map-editor", + password: "leador", + connectTimeout: 1000, // 超时时间 + }; + client = mqtt.connect(this.url, options); + if (client.connected) { + this.connectedSuccess = true + } + client.on("connect", (connack) => { + let iseExit = _.filter(snackbarStore().snackbars, { + snackbar: true, snackbar_message: "网络连接错误,请检查是否连接网络", + }) + if (iseExit.length) { + iseExit[0].snackbar = false + } + }); + if (!this.connectedSuccess) { + client.on("error", (error) => { + console.log(this.url + "异常中断"); + }); + client.on("reconnect", (error) => { + let iseExit = _.filter(snackbarStore().snackbars, { + snackbar: true, snackbar_message: "网络连接错误,请检查是否连接网络", + }) + if (iseExit.length) { + } else { + snackbarStore().openFailureSnackbar("网络连接错误,请检查是否连接网络") + } + console.log(this.url + "需要重新连接", error); + }); + } + } + //取消订阅 + unsubscribes(topic) { + if (topic.indexOf("slam/") === 0) { + client.unsubscribe(`/${mqttSlamPID}/${robot.did}/${topic}`, (error) => { + if (!error) { + console.log(`/${mqttSlamPID}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${mqttSlamPID}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } else if (topic.indexOf("other/") === 0) { + client.unsubscribe(`/${topic}`, (error) => { + if (!error) { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } else { + client.unsubscribe(`/${robot.pid}/${robot.did}/${topic}`, (error) => { + if (!error) { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅成功"); + } else { + console.log(`/${robot.pid}/${robot.did}/${topic}` + "取消订阅失败"); + } + }); + } + } + + //连接 + link(topic, params) { + if (topic.indexOf("slam/") === 0) { + client.subscribe( + `/${mqttSlamPID}/${robot.did}/${topic}`, + params, + (error) => { + if (!error) { + console.log( + `/${mqttSlamPID}/${robot.did}/${topic}` + "订阅成功", + JSON.stringify(params) + ); + } else { + console.log( + `/${mqttSlamPID}/${robot.did}/${topic}` + "订阅失败", + JSON.stringify(params) + ); + } + } + ); + } else if (topic.indexOf("other/") === 0) { + client.subscribe(`/${topic}`, params, (error) => { + if (!error) { + console.log(`/${topic}` + "订阅成功", JSON.stringify(params)); + } else { + console.log(`/${topic}` + "订阅失败", JSON.stringify(params)); + } + }); + } else { + client.subscribe( + `/${robot.pid}/${robot.did}/${topic}`, + params, + (error) => { + if (!error) { + console.log( + `/${robot.pid}/${robot.did}/${topic}` + "订阅成功", + JSON.stringify(params) + ); + } else { + console.log( + `/${robot.pid}/${robot.did}/${topic}` + "订阅失败", + JSON.stringify(params) + ); + } + } + ); + } + } + //发布函数 + pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback = () => { }, + failCallback = (e) => { } + ) { + if (client === null) return; + var timeNow = new Date(); + jobj.timestamp = timeNow.getTime(); + if (topic.indexOf("slam/") === 0) { + client.publish( + `/${mqttSlamPID}/${robot.did}/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } else if (topic.indexOf("other/") === 0) { + client.publish( + `/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } else { + client.publish( + `/${robot.pid}/${robot.did}/${topic}`, + JSON.stringify(jobj), + { qos: qos, retain: retain, cbStorePut: successCallback }, + failCallback + ); + } + } + + //收到的消息 + get(callback) { + client.on("message", callback); + } + //结束链接 + over() { + client.end(); + } +} + +export default function useMqtt() { + let startMqtt = (val, params, callback) => { + //设置订阅地址 + if (!PublicMqtt) { + PublicMqtt = new MQTT(); + //初始化mqtt + PublicMqtt.init(); + //链接mqtt + } + PublicMqtt.link(val, params); + getMessage(callback); + }; + let pubCommonFn = ( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ) => { + console.log("发布", topic); + //发布mqtt + PublicMqtt.pubCommonFn( + topic, + jobj, + qos, + retain, + successCallback, + failCallback + ); + }; + let endMqtt = (val) => { + //取消链接mqtt + PublicMqtt.unsubscribes(val); + }; + let getMessage = (callback) => { + if (PublicMqtt) { + PublicMqtt.get(callback); + } + + }; + + return { + startMqtt, + endMqtt, + pubCommonFn, + }; +} diff --git a/developedcode/map-client/src/plugins/vuetify.js b/developedcode/map-client/src/plugins/vuetify.js new file mode 100644 index 0000000..fddda4f --- /dev/null +++ b/developedcode/map-client/src/plugins/vuetify.js @@ -0,0 +1,38 @@ +/** + * plugins/vuetify.js + * + * Framework documentation: https://vuetifyjs.com` + */ + +// Styles +import "@mdi/font/css/materialdesignicons.css"; +import "vuetify/styles"; +import { loadFonts } from "./webfontloader"; +import zhHans from "vuetify/lib/locale/zh-Hans.mjs"; +// Composables +import { createVuetify } from "vuetify"; + +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +const vuetify = createVuetify({ + theme: { + themes: { + light: { + colors: { + primary: "#1867C0", + secondary: "#5CBBF6", + }, + }, + }, + }, + ssr: true, + lang: { + locales: { + zhHans, + }, + current: "zhHans", + }, +}); +export function registerPlugins(app) { + loadFonts(); + app.use(vuetify); +} diff --git a/developedcode/map-client/src/plugins/webfontloader.js b/developedcode/map-client/src/plugins/webfontloader.js new file mode 100644 index 0000000..79c7ac7 --- /dev/null +++ b/developedcode/map-client/src/plugins/webfontloader.js @@ -0,0 +1,15 @@ +/** + * plugins/webfontloader.js + * + * webfontloader documentation: https://github.com/typekit/webfontloader + */ + + export async function loadFonts () { + const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') + + webFontLoader.load({ + // google: { + // families: ['Roboto:100,300,400,500,700,900&display=swap'], + // }, + }) +} diff --git a/developedcode/map-client/src/router/index.js b/developedcode/map-client/src/router/index.js new file mode 100644 index 0000000..53612dc --- /dev/null +++ b/developedcode/map-client/src/router/index.js @@ -0,0 +1,68 @@ +import { createRouter, createWebHistory } from "vue-router"; +import { close, start } from "@/utils/nprogress"; +import HomeView from "@/views/Home.vue"; +const routes = [ + { + path: "/", + name: "home", + component: HomeView, + children: [ + { + path: "driverlessCars", + name: "driverlessCars", + meta: { + zhtitle: "首页", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/index.vue"), + }, + { + path: "navigation", + name: "navigation_dataV", + meta: { + zhtitle: "导航", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/navigation_dataV.vue"), + }, + { + path: "editor", + name: "editor", + meta: { + zhtitle: "编辑", + }, + // which is lazy-loaded when the route is visited. + component: () => import("../views/driverlessCars/editor.vue"), + }, + ], + }, + + { name: "重定向", path: "/:catchAll(.*)", redirect: "/" }, + { + path: "/login", + name: "login", + component: () => import("../views/login.vue"), + }, + { + path: "/download", + name: "download", + component: () => import("../views/download.vue"), + }, +]; + +// 创建路由实例 +const router = createRouter({ + history: createWebHistory(), + routes, //路由表 +}); +let witheRouter = ["login", "download"]; +router.beforeEach((pre, next) => { + if (witheRouter.indexOf(pre.name) !== -1) { + } + start(); +}); + +router.afterEach(() => { + close(); +}); +export default router; diff --git a/developedcode/map-client/src/store/breadcrumbs.js b/developedcode/map-client/src/store/breadcrumbs.js new file mode 100644 index 0000000..17e7126 --- /dev/null +++ b/developedcode/map-client/src/store/breadcrumbs.js @@ -0,0 +1,35 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const breadcrumbsStore = defineStore("breadcrumbs", { + // other options... + state() { + return { + breadcrumbsList: [ + { + title: "首页", + href: "/driverlessCars", + id: Date.now(), + }, + ], + }; + }, + actions: { + getBreadcrumbs() { + return this.breadcrumbsList; + }, + editBreadcrumbs(breadcrumbsList) { + this.breadcrumbsList = []; + for (let i = 0; i < breadcrumbsList.length; i++) { + let ele = breadcrumbsList[i]; + this.breadcrumbsList.push({ + ...ele, + id: Date.now() + 1000 * i, + }); + } + }, + }, + persist: { + enabled: true, // true 表示开启持久化保存 + }, +}); +export default breadcrumbsStore; diff --git a/developedcode/map-client/src/store/fullscreen.js b/developedcode/map-client/src/store/fullscreen.js new file mode 100644 index 0000000..9d919b6 --- /dev/null +++ b/developedcode/map-client/src/store/fullscreen.js @@ -0,0 +1,19 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const dialogFullscreenStore = defineStore("dialogFullscreen", { + // other options... + state() { + return { + dialogFullscreen: false, + }; + }, + actions: { + getDialogFullscreen() { + return this.dialogFullscreen; + }, + setDialogFullscreen(bol) { + this.dialogFullscreen = bol; + }, + }, +}); +export default dialogFullscreenStore; diff --git a/developedcode/map-client/src/store/index.js b/developedcode/map-client/src/store/index.js new file mode 100644 index 0000000..c1bad36 --- /dev/null +++ b/developedcode/map-client/src/store/index.js @@ -0,0 +1,10 @@ +import { createPinia } from "pinia"; +import piniaPersist from "pinia-plugin-persist"; +import userStore from "./user"; +import snackbarStore from "./snackbar"; +import breadcrumbsStore from "./breadcrumbs"; +import dialogFullscreenStore from "./fullscreen"; +const pinia = createPinia(); +pinia.use(piniaPersist); +export { userStore, snackbarStore, breadcrumbsStore, dialogFullscreenStore }; +export default pinia; diff --git a/developedcode/map-client/src/store/snackbar.js b/developedcode/map-client/src/store/snackbar.js new file mode 100644 index 0000000..30c6a4f --- /dev/null +++ b/developedcode/map-client/src/store/snackbar.js @@ -0,0 +1,60 @@ +import { defineStore } from "pinia"; +import _ from "lodash"; +const snackbarStore = defineStore("snackbar", { + // other options... + state() { + return { + snackbars: [], + }; + }, + actions: { + openSnackbar(params) { + let { snackbar_message, color, timeout = -1 } = params; + this.snackbars.push({ + snackbar: true, + snackbar_message: snackbar_message, + snackbar_color: color, + location: "top", + timeout: timeout, + id: Date.now(), + }); + }, + closeSnackbar(index) { + this.snackbars.splice(index, 1); + }, + openSuccessSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "success", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + openFailureSnackbar(message, timeout = -1) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "error", + location: "top", + timeout: timeout, //不自动关闭 + id: Date.now(), + }); + }, + openInfoSnackbar(message) { + this.snackbars.push({ + snackbar: true, + snackbar_message: message, + snackbar_color: "warning", + location: "top", + timeout: 5000, + id: Date.now(), + }); + }, + cleanSnackbar() { + this.snackbars = this.snackbars.filter((item) => item.snackbar); + }, + }, +}); +export default snackbarStore; diff --git a/developedcode/map-client/src/store/user.js b/developedcode/map-client/src/store/user.js new file mode 100644 index 0000000..ea40598 --- /dev/null +++ b/developedcode/map-client/src/store/user.js @@ -0,0 +1,66 @@ +import { defineStore } from "pinia"; +import { login as userLogin, getRobotInfo } from "@/api/user"; +import { setToken, removeToken } from "@/utils/auth"; +import { setRouterFav } from "@/api/user"; +const userStore = defineStore("user", { + // other options... + state() { + return { + name: "", + robotid: { + did: "", + pid: "", + }, + robot: {}, + battery: {}, + routeList: [] + }; + }, + getters: { + userInfo(state) { + return { ...state }; + }, + }, + actions: { + // Login + async login(loginForm) { + try { + // setToken(true); + let loginRes = await userLogin(loginForm); + if (loginRes && loginRes.status) { + setToken(loginRes.token); + let robotRes = await getRobotInfo(); + this.robotid = { + ...robotRes, + }; + } + return loginRes; + } catch (err) { + removeToken(); + throw err; + } + }, + async setRobot(robot) { + this.robot = robot; + }, + async setBattery(battery) { + this.battery = battery; + }, + async setRouteList(routeList, isSave = true) { + this.routeList = routeList; + let params = { pid: this.robotid.pid, did: this.robotid.did, routeList } + if (isSave) { + setRouterFav(params) + } + }, + }, + persist: { + enabled: true, // true 表示开启持久化保存 + strategies: [ + { + storage: localStorage, + }, + ], + }, +}); +export default userStore; diff --git a/developedcode/map-client/src/utils/auth.js b/developedcode/map-client/src/utils/auth.js new file mode 100644 index 0000000..5c68cf8 --- /dev/null +++ b/developedcode/map-client/src/utils/auth.js @@ -0,0 +1,19 @@ +const TokenKey = `wurenche-token`; + +const isLogin = () => { + return !!localStorage.getItem(TokenKey); +}; + +const getToken = () => { + return localStorage.getItem(TokenKey); +}; + +const setToken = (token) => { + localStorage.setItem(TokenKey, token); +}; + +const removeToken = () => { + localStorage.removeItem(TokenKey); +}; + +export { isLogin, getToken, setToken, removeToken }; diff --git a/developedcode/map-client/src/utils/nprogress.js b/developedcode/map-client/src/utils/nprogress.js new file mode 100644 index 0000000..6b5f15a --- /dev/null +++ b/developedcode/map-client/src/utils/nprogress.js @@ -0,0 +1,19 @@ +import NProgress from 'nprogress' +import 'nprogress/nprogress.css' +NProgress.configure({ + easing: 'ease', // 动画方式 + speed: 1000, // 递增进度条的速度 + showSpinner: false, // 是否显示加载ico + trickleSpeed: 200, // 自动递增间隔 + minimum: 0.3, // 更改启动时使用的最小百分比 + parent: 'body', //指定进度条的父容器 +}) +// 打开进度条 +export const start = () => { + NProgress.start() +} + +// 关闭进度条 +export const close = () => { + NProgress.done() +} \ No newline at end of file diff --git a/developedcode/map-client/src/utils/permission.js b/developedcode/map-client/src/utils/permission.js new file mode 100644 index 0000000..18bd583 --- /dev/null +++ b/developedcode/map-client/src/utils/permission.js @@ -0,0 +1,28 @@ +import router from "@/router/index"; +import { close, start } from "./nprogress"; +import { getToken } from "./auth"; + +const whiteList = ["/login"]; +router.beforeEach(async (to, from, next) => { + start(); + next(); + // const token = getToken(); + // if (token) { + // if (to.path === "/login") { + // next({ path: "/" }); + // close(); + // } else { + // next(); + // } + // } else { + // if (whiteList.includes(to.path)) { + // next(); + // } else { + // next(`/login?redirect=${to.path}`); + // } + // } +}); + +router.afterEach((to) => { + close(); +}); diff --git a/developedcode/map-client/src/utils/util.js b/developedcode/map-client/src/utils/util.js new file mode 100644 index 0000000..a6cc5fe --- /dev/null +++ b/developedcode/map-client/src/utils/util.js @@ -0,0 +1,8 @@ +// 获取assets静态资源 +const getAssetsFile = (url) => { + return new URL(`../assets/${url}`, import.meta.url).href; +}; + +export default { + getAssetsFile, +}; diff --git a/developedcode/map-client/src/views/Home.vue b/developedcode/map-client/src/views/Home.vue new file mode 100644 index 0000000..b32d669 --- /dev/null +++ b/developedcode/map-client/src/views/Home.vue @@ -0,0 +1,541 @@ + + + diff --git a/developedcode/map-client/src/views/download.vue b/developedcode/map-client/src/views/download.vue new file mode 100644 index 0000000..b38dfe1 --- /dev/null +++ b/developedcode/map-client/src/views/download.vue @@ -0,0 +1,44 @@ + + + diff --git a/developedcode/map-client/src/views/driverlessCars/editor.vue b/developedcode/map-client/src/views/driverlessCars/editor.vue new file mode 100644 index 0000000..60bb5a1 --- /dev/null +++ b/developedcode/map-client/src/views/driverlessCars/editor.vue @@ -0,0 +1,1712 @@ + + + diff --git a/developedcode/map-client/src/views/driverlessCars/index.vue b/developedcode/map-client/src/views/driverlessCars/index.vue new file mode 100644 index 0000000..973e27d --- /dev/null +++ b/developedcode/map-client/src/views/driverlessCars/index.vue @@ -0,0 +1,700 @@ + + + diff --git a/developedcode/map-client/src/views/driverlessCars/navigation.vue b/developedcode/map-client/src/views/driverlessCars/navigation.vue new file mode 100644 index 0000000..08e9e67 --- /dev/null +++ b/developedcode/map-client/src/views/driverlessCars/navigation.vue @@ -0,0 +1,1817 @@ + + + diff --git a/developedcode/map-client/src/views/driverlessCars/navigation_dataV.vue b/developedcode/map-client/src/views/driverlessCars/navigation_dataV.vue new file mode 100644 index 0000000..f972314 --- /dev/null +++ b/developedcode/map-client/src/views/driverlessCars/navigation_dataV.vue @@ -0,0 +1,2554 @@ + + + diff --git a/developedcode/map-client/src/views/login.vue b/developedcode/map-client/src/views/login.vue new file mode 100644 index 0000000..2ad10f3 --- /dev/null +++ b/developedcode/map-client/src/views/login.vue @@ -0,0 +1,135 @@ + + + diff --git a/developedcode/map-client/vite.config.js b/developedcode/map-client/vite.config.js new file mode 100644 index 0000000..8076c12 --- /dev/null +++ b/developedcode/map-client/vite.config.js @@ -0,0 +1,93 @@ +// Plugins +import vue from "@vitejs/plugin-vue"; +import vuetify, { transformAssetUrls } from "vite-plugin-vuetify"; + +// Utilities +import { defineConfig } from "vite"; +import { fileURLToPath, URL } from "node:url"; +import AutoImport from "unplugin-auto-import/vite"; +import Components from "unplugin-vue-components/vite"; +import { ElementPlusResolver } from "unplugin-vue-components/resolvers"; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue({ + template: { transformAssetUrls }, + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + AutoImport({ + resolvers: [ElementPlusResolver()], + }), + Components({ + resolvers: [ElementPlusResolver()], + }), + ], + define: { "process.env": {} }, + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"], + }, + server: { + port: 3000, + proxy: { + "/v1": { + target: "http://42.235.239.240:8003/v1", + // target: "http://s3.s100.vip:26381/v1", + // target: "http://192.168.1.141:8086/v1", + // target: "http://127.0.0.1:3000/v1", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/v1/, ""), + }, + //228 215 208 140 141 + "/udp": { + target: "http://42.235.239.240:8005/udp", + // target: "http://s3.s100.vip:26381/udp", + // target: "http://192.168.1.55:8001/", + // target: "http://192.168.1.141:9010/udp", + // target: "http://192.168.1.102:9010/udp", + // target: "http://192.168.8.109:9010/udp", + // target: "http://127.0.0.1:9010/udp", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/udp/, ""), + }, + "/mp3": { + // target: "http://42.235.239.240:8005/mp3", + // target: "http://s3.s100.vip:26381/mp3", + // target: "http://192.168.1.55:8001/mp3", + // target: "http://192.168.1.141:9010/mp3", + // target: "http://192.168.1.102:9010/mp3", + // target: "http://192.168.8.109:9010/mp3", + target: "http://127.0.0.1:9010/mp3", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/mp3/, ""), + }, + "/self": { + // target: "http://42.235.239.240:8005/self", + // target: "http://s3.s100.vip:26381/self", + // target: "http://192.168.1.55:8001/self", + // target: "http://192.168.1.141:9010/self", + // target: "http://192.168.1.102:9010/self", + // target: "http://192.168.1.119:9010/self", + target: "http://127.0.0.1:9001/self", + // target: "http://42.235.239.240:8016/self", + changeOrigin: true, + rewrite: (path) => path.replace(/^\/self/, ""), + }, + // "/vedio": { + // target: "http://192.168.1.64/vedio", + // // target: "http://192.168.1.141:8086/v1", + // changeOrigin: true, + // rewrite: (path) => path.replace(/^\/vedio/, ""), + // }, + }, + }, + build: { + sourcemap: true, + }, +}); diff --git a/developedcode/setgetdata/README.md b/developedcode/setgetdata/README.md new file mode 100644 index 0000000..2ce860b --- /dev/null +++ b/developedcode/setgetdata/README.md @@ -0,0 +1,32 @@ +# setgetdata + + +## QuickStart + + + +see [egg docs][egg] for more detail. + +### Development + +```bash +$ npm i +$ npm run dev +$ open http://localhost:9001/ +``` + +### Deploy + +```bash +$ npm start +$ npm stop +``` + +### npm scripts + +- Use `npm run lint` to check code style. +- Use `npm test` to run unit test. +- Use `npm run autod` to auto detect dependencies upgrade, see [autod](https://www.npmjs.com/package/autod) for more detail. + + +[egg]: https://eggjs.org \ No newline at end of file diff --git a/developedcode/setgetdata/app.js b/developedcode/setgetdata/app.js new file mode 100644 index 0000000..02070dd --- /dev/null +++ b/developedcode/setgetdata/app.js @@ -0,0 +1,34 @@ +const fs = require("fs") +const path = require("path") +class AppBootHook { + constructor(app) { + this.app = app; + } + + configWillLoad() { + // 此时 config 文件已经被读取并合并,但是还并未生效 + // 这是应用层修改配置的最后时机 + // 注意:此函数只支持同步调用 + } + + async didLoad() { + // 所有的配置已经加载完毕 + // 可以用来加载应用自定义的文件,启动自定义的服务 + } + + async willReady() { + // 所有的插件都已启动完毕,但是应用整体还未 ready + // 可以做一些数据初始化等操作,这些操作成功才会启动应用 + } + + async didReady() { + } + + async serverDidReady() { + // http / https server 已启动,开始接受外部请求 + // 此时可以从 app.server 拿到 server 的实例 + // 应用已经启动完毕 + } +} + +module.exports = AppBootHook; diff --git a/developedcode/setgetdata/app/controller/home.js b/developedcode/setgetdata/app/controller/home.js new file mode 100644 index 0000000..ab5ba65 --- /dev/null +++ b/developedcode/setgetdata/app/controller/home.js @@ -0,0 +1,56 @@ +"use strict"; +const fs = require("fs") +const path = require("path") +const _ = require("lodash"); +const { Controller } = require("egg"); +const { promisify } = require("util"); +class setgetdataController extends Controller { + //设置收藏数据 + async setRouterFav() { + let { ctx, service } = this; + let params = ctx.request.body + let res = await service.home.setRouterFav(params); + ctx.body = res; + } + //获取收藏数据 + async getRouterFav() { + let { ctx, service } = this; + let params = ctx.request.body + let res = await service.home.getRouterFav(params); + ctx.body = res; + } + //获取文件 + async getFile() { + let { ctx } = this; + let url = ctx.request.url + let fileNameArr = _.split(url, "=") + let filePath = `${ctx.app.baseDir}/app/public/file/${_.get(fileNameArr, [1])}` + // let fileSize = (await promisify(fs.stat)(filePath)).size.toString() + // ctx.attachment(filePath); + // ctx.set('Content-Length', fileSize); + // ctx.set('content-Type', 'application/octet-stream'); + // ctx.set('Content-Disposition', `attachment; filename=${_.get(fileNameArr, [1])}`) + console.log(9744, await ctx.downloader(filePath)) + ctx.boby = await ctx.downloader(filePath); + } + //获取瓦片地图 + async getMapPng() { + let { ctx, service } = this; + let params = { + url: ctx.request.url + } + console.log(7878774,params) + let pathRes = await service.home.getMapPng(params); + ctx.set('content-type', 'image/jpeg') + if (pathRes) { + try { + ctx.body = fs.createReadStream(pathRes); + } catch (e) { + console.log(e) + } + + } + } +} + +module.exports = setgetdataController; diff --git a/developedcode/setgetdata/app/public/file/xbyzydh.apk b/developedcode/setgetdata/app/public/file/xbyzydh.apk new file mode 100644 index 0000000..6434502 Binary files /dev/null and b/developedcode/setgetdata/app/public/file/xbyzydh.apk differ diff --git a/developedcode/setgetdata/app/public/map/xby/0/0/0.png b/developedcode/setgetdata/app/public/map/xby/0/0/0.png new file mode 100644 index 0000000..6eeb0b6 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/0/0/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/0/0/1.png b/developedcode/setgetdata/app/public/map/xby/0/0/1.png new file mode 100644 index 0000000..941b93d Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/0/0/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/0/1/0.png b/developedcode/setgetdata/app/public/map/xby/0/1/0.png new file mode 100644 index 0000000..352b9b5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/0/1/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/0/1/1.png b/developedcode/setgetdata/app/public/map/xby/0/1/1.png new file mode 100644 index 0000000..bb70842 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/0/1/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/0/0.png b/developedcode/setgetdata/app/public/map/xby/1/0/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/0/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/0/1.png b/developedcode/setgetdata/app/public/map/xby/1/0/1.png new file mode 100644 index 0000000..9ea3662 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/0/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/0/2.png b/developedcode/setgetdata/app/public/map/xby/1/0/2.png new file mode 100644 index 0000000..a9e1dd4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/0/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/0/3.png b/developedcode/setgetdata/app/public/map/xby/1/0/3.png new file mode 100644 index 0000000..b77580b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/0/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/1/0.png b/developedcode/setgetdata/app/public/map/xby/1/1/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/1/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/1/1.png b/developedcode/setgetdata/app/public/map/xby/1/1/1.png new file mode 100644 index 0000000..22d0a9c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/1/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/1/2.png b/developedcode/setgetdata/app/public/map/xby/1/1/2.png new file mode 100644 index 0000000..3eff5cf Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/1/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/1/3.png b/developedcode/setgetdata/app/public/map/xby/1/1/3.png new file mode 100644 index 0000000..f23dc08 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/1/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/2/0.png b/developedcode/setgetdata/app/public/map/xby/1/2/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/2/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/2/1.png b/developedcode/setgetdata/app/public/map/xby/1/2/1.png new file mode 100644 index 0000000..1378cee Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/2/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/2/2.png b/developedcode/setgetdata/app/public/map/xby/1/2/2.png new file mode 100644 index 0000000..2e34c1a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/2/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/2/3.png b/developedcode/setgetdata/app/public/map/xby/1/2/3.png new file mode 100644 index 0000000..d986b69 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/2/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/3/0.png b/developedcode/setgetdata/app/public/map/xby/1/3/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/3/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/3/1.png b/developedcode/setgetdata/app/public/map/xby/1/3/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/3/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/3/2.png b/developedcode/setgetdata/app/public/map/xby/1/3/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/3/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/1/3/3.png b/developedcode/setgetdata/app/public/map/xby/1/3/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/1/3/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/0/0.png b/developedcode/setgetdata/app/public/map/xby/2/0/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/0/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/0/1.png b/developedcode/setgetdata/app/public/map/xby/2/0/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/0/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/0/2.png b/developedcode/setgetdata/app/public/map/xby/2/0/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/0/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/0/3.png b/developedcode/setgetdata/app/public/map/xby/2/0/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/0/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/0/4.png b/developedcode/setgetdata/app/public/map/xby/2/0/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/0/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/0/5.png b/developedcode/setgetdata/app/public/map/xby/2/0/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/0/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/0/6.png b/developedcode/setgetdata/app/public/map/xby/2/0/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/0/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/1/0.png b/developedcode/setgetdata/app/public/map/xby/2/1/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/1/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/1/1.png b/developedcode/setgetdata/app/public/map/xby/2/1/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/1/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/1/2.png b/developedcode/setgetdata/app/public/map/xby/2/1/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/1/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/1/3.png b/developedcode/setgetdata/app/public/map/xby/2/1/3.png new file mode 100644 index 0000000..d65b29f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/1/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/1/4.png b/developedcode/setgetdata/app/public/map/xby/2/1/4.png new file mode 100644 index 0000000..c48cf35 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/1/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/1/5.png b/developedcode/setgetdata/app/public/map/xby/2/1/5.png new file mode 100644 index 0000000..3e3e156 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/1/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/1/6.png b/developedcode/setgetdata/app/public/map/xby/2/1/6.png new file mode 100644 index 0000000..5d7255c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/1/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/2/0.png b/developedcode/setgetdata/app/public/map/xby/2/2/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/2/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/2/1.png b/developedcode/setgetdata/app/public/map/xby/2/2/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/2/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/2/2.png b/developedcode/setgetdata/app/public/map/xby/2/2/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/2/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/2/3.png b/developedcode/setgetdata/app/public/map/xby/2/2/3.png new file mode 100644 index 0000000..06910d5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/2/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/2/4.png b/developedcode/setgetdata/app/public/map/xby/2/2/4.png new file mode 100644 index 0000000..e20b512 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/2/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/2/5.png b/developedcode/setgetdata/app/public/map/xby/2/2/5.png new file mode 100644 index 0000000..41c5794 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/2/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/2/6.png b/developedcode/setgetdata/app/public/map/xby/2/2/6.png new file mode 100644 index 0000000..358a143 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/2/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/3/0.png b/developedcode/setgetdata/app/public/map/xby/2/3/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/3/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/3/1.png b/developedcode/setgetdata/app/public/map/xby/2/3/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/3/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/3/2.png b/developedcode/setgetdata/app/public/map/xby/2/3/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/3/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/3/3.png b/developedcode/setgetdata/app/public/map/xby/2/3/3.png new file mode 100644 index 0000000..0674538 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/3/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/3/4.png b/developedcode/setgetdata/app/public/map/xby/2/3/4.png new file mode 100644 index 0000000..289fc45 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/3/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/3/5.png b/developedcode/setgetdata/app/public/map/xby/2/3/5.png new file mode 100644 index 0000000..9bdd30c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/3/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/3/6.png b/developedcode/setgetdata/app/public/map/xby/2/3/6.png new file mode 100644 index 0000000..9c006d8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/3/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/4/0.png b/developedcode/setgetdata/app/public/map/xby/2/4/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/4/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/4/1.png b/developedcode/setgetdata/app/public/map/xby/2/4/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/4/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/4/2.png b/developedcode/setgetdata/app/public/map/xby/2/4/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/4/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/4/3.png b/developedcode/setgetdata/app/public/map/xby/2/4/3.png new file mode 100644 index 0000000..630ef00 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/4/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/4/4.png b/developedcode/setgetdata/app/public/map/xby/2/4/4.png new file mode 100644 index 0000000..c038b13 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/4/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/4/5.png b/developedcode/setgetdata/app/public/map/xby/2/4/5.png new file mode 100644 index 0000000..cf9ddbb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/4/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/4/6.png b/developedcode/setgetdata/app/public/map/xby/2/4/6.png new file mode 100644 index 0000000..13071a7 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/4/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/5/0.png b/developedcode/setgetdata/app/public/map/xby/2/5/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/5/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/5/1.png b/developedcode/setgetdata/app/public/map/xby/2/5/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/5/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/5/2.png b/developedcode/setgetdata/app/public/map/xby/2/5/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/5/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/5/3.png b/developedcode/setgetdata/app/public/map/xby/2/5/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/5/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/5/4.png b/developedcode/setgetdata/app/public/map/xby/2/5/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/5/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/5/5.png b/developedcode/setgetdata/app/public/map/xby/2/5/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/5/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/5/6.png b/developedcode/setgetdata/app/public/map/xby/2/5/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/5/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/6/0.png b/developedcode/setgetdata/app/public/map/xby/2/6/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/6/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/6/1.png b/developedcode/setgetdata/app/public/map/xby/2/6/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/6/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/6/2.png b/developedcode/setgetdata/app/public/map/xby/2/6/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/6/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/6/3.png b/developedcode/setgetdata/app/public/map/xby/2/6/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/6/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/6/4.png b/developedcode/setgetdata/app/public/map/xby/2/6/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/6/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/6/5.png b/developedcode/setgetdata/app/public/map/xby/2/6/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/6/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/2/6/6.png b/developedcode/setgetdata/app/public/map/xby/2/6/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/2/6/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/0.png b/developedcode/setgetdata/app/public/map/xby/3/0/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/1.png b/developedcode/setgetdata/app/public/map/xby/3/0/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/10.png b/developedcode/setgetdata/app/public/map/xby/3/0/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/11.png b/developedcode/setgetdata/app/public/map/xby/3/0/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/12.png b/developedcode/setgetdata/app/public/map/xby/3/0/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/2.png b/developedcode/setgetdata/app/public/map/xby/3/0/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/3.png b/developedcode/setgetdata/app/public/map/xby/3/0/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/4.png b/developedcode/setgetdata/app/public/map/xby/3/0/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/5.png b/developedcode/setgetdata/app/public/map/xby/3/0/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/6.png b/developedcode/setgetdata/app/public/map/xby/3/0/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/7.png b/developedcode/setgetdata/app/public/map/xby/3/0/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/8.png b/developedcode/setgetdata/app/public/map/xby/3/0/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/0/9.png b/developedcode/setgetdata/app/public/map/xby/3/0/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/0/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/0.png b/developedcode/setgetdata/app/public/map/xby/3/1/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/1.png b/developedcode/setgetdata/app/public/map/xby/3/1/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/10.png b/developedcode/setgetdata/app/public/map/xby/3/1/10.png new file mode 100644 index 0000000..7da8f2c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/11.png b/developedcode/setgetdata/app/public/map/xby/3/1/11.png new file mode 100644 index 0000000..593ae7c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/12.png b/developedcode/setgetdata/app/public/map/xby/3/1/12.png new file mode 100644 index 0000000..0866577 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/2.png b/developedcode/setgetdata/app/public/map/xby/3/1/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/3.png b/developedcode/setgetdata/app/public/map/xby/3/1/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/4.png b/developedcode/setgetdata/app/public/map/xby/3/1/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/5.png b/developedcode/setgetdata/app/public/map/xby/3/1/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/6.png b/developedcode/setgetdata/app/public/map/xby/3/1/6.png new file mode 100644 index 0000000..d7a093f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/7.png b/developedcode/setgetdata/app/public/map/xby/3/1/7.png new file mode 100644 index 0000000..31e7826 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/8.png b/developedcode/setgetdata/app/public/map/xby/3/1/8.png new file mode 100644 index 0000000..e95e488 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/1/9.png b/developedcode/setgetdata/app/public/map/xby/3/1/9.png new file mode 100644 index 0000000..5063d7b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/1/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/0.png b/developedcode/setgetdata/app/public/map/xby/3/10/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/1.png b/developedcode/setgetdata/app/public/map/xby/3/10/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/10.png b/developedcode/setgetdata/app/public/map/xby/3/10/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/11.png b/developedcode/setgetdata/app/public/map/xby/3/10/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/12.png b/developedcode/setgetdata/app/public/map/xby/3/10/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/2.png b/developedcode/setgetdata/app/public/map/xby/3/10/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/3.png b/developedcode/setgetdata/app/public/map/xby/3/10/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/4.png b/developedcode/setgetdata/app/public/map/xby/3/10/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/5.png b/developedcode/setgetdata/app/public/map/xby/3/10/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/6.png b/developedcode/setgetdata/app/public/map/xby/3/10/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/7.png b/developedcode/setgetdata/app/public/map/xby/3/10/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/8.png b/developedcode/setgetdata/app/public/map/xby/3/10/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/10/9.png b/developedcode/setgetdata/app/public/map/xby/3/10/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/10/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/0.png b/developedcode/setgetdata/app/public/map/xby/3/11/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/1.png b/developedcode/setgetdata/app/public/map/xby/3/11/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/10.png b/developedcode/setgetdata/app/public/map/xby/3/11/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/11.png b/developedcode/setgetdata/app/public/map/xby/3/11/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/12.png b/developedcode/setgetdata/app/public/map/xby/3/11/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/2.png b/developedcode/setgetdata/app/public/map/xby/3/11/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/3.png b/developedcode/setgetdata/app/public/map/xby/3/11/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/4.png b/developedcode/setgetdata/app/public/map/xby/3/11/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/5.png b/developedcode/setgetdata/app/public/map/xby/3/11/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/6.png b/developedcode/setgetdata/app/public/map/xby/3/11/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/7.png b/developedcode/setgetdata/app/public/map/xby/3/11/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/8.png b/developedcode/setgetdata/app/public/map/xby/3/11/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/11/9.png b/developedcode/setgetdata/app/public/map/xby/3/11/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/11/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/0.png b/developedcode/setgetdata/app/public/map/xby/3/12/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/1.png b/developedcode/setgetdata/app/public/map/xby/3/12/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/10.png b/developedcode/setgetdata/app/public/map/xby/3/12/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/11.png b/developedcode/setgetdata/app/public/map/xby/3/12/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/12.png b/developedcode/setgetdata/app/public/map/xby/3/12/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/2.png b/developedcode/setgetdata/app/public/map/xby/3/12/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/3.png b/developedcode/setgetdata/app/public/map/xby/3/12/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/4.png b/developedcode/setgetdata/app/public/map/xby/3/12/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/5.png b/developedcode/setgetdata/app/public/map/xby/3/12/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/6.png b/developedcode/setgetdata/app/public/map/xby/3/12/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/7.png b/developedcode/setgetdata/app/public/map/xby/3/12/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/8.png b/developedcode/setgetdata/app/public/map/xby/3/12/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/12/9.png b/developedcode/setgetdata/app/public/map/xby/3/12/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/12/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/0.png b/developedcode/setgetdata/app/public/map/xby/3/2/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/1.png b/developedcode/setgetdata/app/public/map/xby/3/2/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/10.png b/developedcode/setgetdata/app/public/map/xby/3/2/10.png new file mode 100644 index 0000000..ed3f4b2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/11.png b/developedcode/setgetdata/app/public/map/xby/3/2/11.png new file mode 100644 index 0000000..75d8414 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/12.png b/developedcode/setgetdata/app/public/map/xby/3/2/12.png new file mode 100644 index 0000000..b700ed4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/2.png b/developedcode/setgetdata/app/public/map/xby/3/2/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/3.png b/developedcode/setgetdata/app/public/map/xby/3/2/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/4.png b/developedcode/setgetdata/app/public/map/xby/3/2/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/5.png b/developedcode/setgetdata/app/public/map/xby/3/2/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/6.png b/developedcode/setgetdata/app/public/map/xby/3/2/6.png new file mode 100644 index 0000000..99b4402 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/7.png b/developedcode/setgetdata/app/public/map/xby/3/2/7.png new file mode 100644 index 0000000..f2a7fb8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/8.png b/developedcode/setgetdata/app/public/map/xby/3/2/8.png new file mode 100644 index 0000000..4c8c529 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/2/9.png b/developedcode/setgetdata/app/public/map/xby/3/2/9.png new file mode 100644 index 0000000..8cd2cc4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/2/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/0.png b/developedcode/setgetdata/app/public/map/xby/3/3/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/1.png b/developedcode/setgetdata/app/public/map/xby/3/3/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/10.png b/developedcode/setgetdata/app/public/map/xby/3/3/10.png new file mode 100644 index 0000000..507fbd4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/11.png b/developedcode/setgetdata/app/public/map/xby/3/3/11.png new file mode 100644 index 0000000..4b99b59 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/12.png b/developedcode/setgetdata/app/public/map/xby/3/3/12.png new file mode 100644 index 0000000..d5e85ad Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/2.png b/developedcode/setgetdata/app/public/map/xby/3/3/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/3.png b/developedcode/setgetdata/app/public/map/xby/3/3/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/4.png b/developedcode/setgetdata/app/public/map/xby/3/3/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/5.png b/developedcode/setgetdata/app/public/map/xby/3/3/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/6.png b/developedcode/setgetdata/app/public/map/xby/3/3/6.png new file mode 100644 index 0000000..e7b7fde Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/7.png b/developedcode/setgetdata/app/public/map/xby/3/3/7.png new file mode 100644 index 0000000..0322cf5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/8.png b/developedcode/setgetdata/app/public/map/xby/3/3/8.png new file mode 100644 index 0000000..11ebb37 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/3/9.png b/developedcode/setgetdata/app/public/map/xby/3/3/9.png new file mode 100644 index 0000000..d88d224 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/3/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/0.png b/developedcode/setgetdata/app/public/map/xby/3/4/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/1.png b/developedcode/setgetdata/app/public/map/xby/3/4/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/10.png b/developedcode/setgetdata/app/public/map/xby/3/4/10.png new file mode 100644 index 0000000..c527485 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/11.png b/developedcode/setgetdata/app/public/map/xby/3/4/11.png new file mode 100644 index 0000000..9d748db Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/12.png b/developedcode/setgetdata/app/public/map/xby/3/4/12.png new file mode 100644 index 0000000..324e779 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/2.png b/developedcode/setgetdata/app/public/map/xby/3/4/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/3.png b/developedcode/setgetdata/app/public/map/xby/3/4/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/4.png b/developedcode/setgetdata/app/public/map/xby/3/4/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/5.png b/developedcode/setgetdata/app/public/map/xby/3/4/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/6.png b/developedcode/setgetdata/app/public/map/xby/3/4/6.png new file mode 100644 index 0000000..bcb7f33 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/7.png b/developedcode/setgetdata/app/public/map/xby/3/4/7.png new file mode 100644 index 0000000..dd3bf74 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/8.png b/developedcode/setgetdata/app/public/map/xby/3/4/8.png new file mode 100644 index 0000000..93f2a7e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/4/9.png b/developedcode/setgetdata/app/public/map/xby/3/4/9.png new file mode 100644 index 0000000..54d81b3 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/4/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/0.png b/developedcode/setgetdata/app/public/map/xby/3/5/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/1.png b/developedcode/setgetdata/app/public/map/xby/3/5/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/10.png b/developedcode/setgetdata/app/public/map/xby/3/5/10.png new file mode 100644 index 0000000..7a456ce Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/11.png b/developedcode/setgetdata/app/public/map/xby/3/5/11.png new file mode 100644 index 0000000..c05e05b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/12.png b/developedcode/setgetdata/app/public/map/xby/3/5/12.png new file mode 100644 index 0000000..ad9f3a0 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/2.png b/developedcode/setgetdata/app/public/map/xby/3/5/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/3.png b/developedcode/setgetdata/app/public/map/xby/3/5/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/4.png b/developedcode/setgetdata/app/public/map/xby/3/5/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/5.png b/developedcode/setgetdata/app/public/map/xby/3/5/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/6.png b/developedcode/setgetdata/app/public/map/xby/3/5/6.png new file mode 100644 index 0000000..7030009 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/7.png b/developedcode/setgetdata/app/public/map/xby/3/5/7.png new file mode 100644 index 0000000..96d9457 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/8.png b/developedcode/setgetdata/app/public/map/xby/3/5/8.png new file mode 100644 index 0000000..8cb6f88 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/5/9.png b/developedcode/setgetdata/app/public/map/xby/3/5/9.png new file mode 100644 index 0000000..94dfe9d Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/5/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/0.png b/developedcode/setgetdata/app/public/map/xby/3/6/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/1.png b/developedcode/setgetdata/app/public/map/xby/3/6/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/10.png b/developedcode/setgetdata/app/public/map/xby/3/6/10.png new file mode 100644 index 0000000..0bcfa54 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/11.png b/developedcode/setgetdata/app/public/map/xby/3/6/11.png new file mode 100644 index 0000000..93c526f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/12.png b/developedcode/setgetdata/app/public/map/xby/3/6/12.png new file mode 100644 index 0000000..5a42661 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/2.png b/developedcode/setgetdata/app/public/map/xby/3/6/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/3.png b/developedcode/setgetdata/app/public/map/xby/3/6/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/4.png b/developedcode/setgetdata/app/public/map/xby/3/6/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/5.png b/developedcode/setgetdata/app/public/map/xby/3/6/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/6.png b/developedcode/setgetdata/app/public/map/xby/3/6/6.png new file mode 100644 index 0000000..b28f6cb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/7.png b/developedcode/setgetdata/app/public/map/xby/3/6/7.png new file mode 100644 index 0000000..4b90c9a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/8.png b/developedcode/setgetdata/app/public/map/xby/3/6/8.png new file mode 100644 index 0000000..26ba55e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/6/9.png b/developedcode/setgetdata/app/public/map/xby/3/6/9.png new file mode 100644 index 0000000..71984a8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/6/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/0.png b/developedcode/setgetdata/app/public/map/xby/3/7/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/1.png b/developedcode/setgetdata/app/public/map/xby/3/7/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/10.png b/developedcode/setgetdata/app/public/map/xby/3/7/10.png new file mode 100644 index 0000000..26d27c2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/11.png b/developedcode/setgetdata/app/public/map/xby/3/7/11.png new file mode 100644 index 0000000..d833547 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/12.png b/developedcode/setgetdata/app/public/map/xby/3/7/12.png new file mode 100644 index 0000000..6ee352a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/2.png b/developedcode/setgetdata/app/public/map/xby/3/7/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/3.png b/developedcode/setgetdata/app/public/map/xby/3/7/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/4.png b/developedcode/setgetdata/app/public/map/xby/3/7/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/5.png b/developedcode/setgetdata/app/public/map/xby/3/7/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/6.png b/developedcode/setgetdata/app/public/map/xby/3/7/6.png new file mode 100644 index 0000000..555d4f1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/7.png b/developedcode/setgetdata/app/public/map/xby/3/7/7.png new file mode 100644 index 0000000..5a8b5ea Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/8.png b/developedcode/setgetdata/app/public/map/xby/3/7/8.png new file mode 100644 index 0000000..c217772 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/7/9.png b/developedcode/setgetdata/app/public/map/xby/3/7/9.png new file mode 100644 index 0000000..5203e82 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/7/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/0.png b/developedcode/setgetdata/app/public/map/xby/3/8/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/1.png b/developedcode/setgetdata/app/public/map/xby/3/8/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/10.png b/developedcode/setgetdata/app/public/map/xby/3/8/10.png new file mode 100644 index 0000000..c329197 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/11.png b/developedcode/setgetdata/app/public/map/xby/3/8/11.png new file mode 100644 index 0000000..b00dd56 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/12.png b/developedcode/setgetdata/app/public/map/xby/3/8/12.png new file mode 100644 index 0000000..4d5b653 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/2.png b/developedcode/setgetdata/app/public/map/xby/3/8/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/3.png b/developedcode/setgetdata/app/public/map/xby/3/8/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/4.png b/developedcode/setgetdata/app/public/map/xby/3/8/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/5.png b/developedcode/setgetdata/app/public/map/xby/3/8/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/6.png b/developedcode/setgetdata/app/public/map/xby/3/8/6.png new file mode 100644 index 0000000..75e9467 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/7.png b/developedcode/setgetdata/app/public/map/xby/3/8/7.png new file mode 100644 index 0000000..4b19a21 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/8.png b/developedcode/setgetdata/app/public/map/xby/3/8/8.png new file mode 100644 index 0000000..8d73ee1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/8/9.png b/developedcode/setgetdata/app/public/map/xby/3/8/9.png new file mode 100644 index 0000000..18def90 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/8/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/0.png b/developedcode/setgetdata/app/public/map/xby/3/9/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/1.png b/developedcode/setgetdata/app/public/map/xby/3/9/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/10.png b/developedcode/setgetdata/app/public/map/xby/3/9/10.png new file mode 100644 index 0000000..1eafe3f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/11.png b/developedcode/setgetdata/app/public/map/xby/3/9/11.png new file mode 100644 index 0000000..9010b83 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/12.png b/developedcode/setgetdata/app/public/map/xby/3/9/12.png new file mode 100644 index 0000000..674865b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/2.png b/developedcode/setgetdata/app/public/map/xby/3/9/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/3.png b/developedcode/setgetdata/app/public/map/xby/3/9/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/4.png b/developedcode/setgetdata/app/public/map/xby/3/9/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/5.png b/developedcode/setgetdata/app/public/map/xby/3/9/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/6.png b/developedcode/setgetdata/app/public/map/xby/3/9/6.png new file mode 100644 index 0000000..32afd5b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/7.png b/developedcode/setgetdata/app/public/map/xby/3/9/7.png new file mode 100644 index 0000000..1e3f13c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/8.png b/developedcode/setgetdata/app/public/map/xby/3/9/8.png new file mode 100644 index 0000000..696b74b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/3/9/9.png b/developedcode/setgetdata/app/public/map/xby/3/9/9.png new file mode 100644 index 0000000..9a533c4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/3/9/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/0.png b/developedcode/setgetdata/app/public/map/xby/4/0/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/1.png b/developedcode/setgetdata/app/public/map/xby/4/0/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/10.png b/developedcode/setgetdata/app/public/map/xby/4/0/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/11.png b/developedcode/setgetdata/app/public/map/xby/4/0/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/12.png b/developedcode/setgetdata/app/public/map/xby/4/0/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/13.png b/developedcode/setgetdata/app/public/map/xby/4/0/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/14.png b/developedcode/setgetdata/app/public/map/xby/4/0/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/15.png b/developedcode/setgetdata/app/public/map/xby/4/0/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/16.png b/developedcode/setgetdata/app/public/map/xby/4/0/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/17.png b/developedcode/setgetdata/app/public/map/xby/4/0/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/18.png b/developedcode/setgetdata/app/public/map/xby/4/0/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/19.png b/developedcode/setgetdata/app/public/map/xby/4/0/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/2.png b/developedcode/setgetdata/app/public/map/xby/4/0/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/20.png b/developedcode/setgetdata/app/public/map/xby/4/0/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/21.png b/developedcode/setgetdata/app/public/map/xby/4/0/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/22.png b/developedcode/setgetdata/app/public/map/xby/4/0/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/23.png b/developedcode/setgetdata/app/public/map/xby/4/0/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/24.png b/developedcode/setgetdata/app/public/map/xby/4/0/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/3.png b/developedcode/setgetdata/app/public/map/xby/4/0/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/4.png b/developedcode/setgetdata/app/public/map/xby/4/0/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/5.png b/developedcode/setgetdata/app/public/map/xby/4/0/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/6.png b/developedcode/setgetdata/app/public/map/xby/4/0/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/7.png b/developedcode/setgetdata/app/public/map/xby/4/0/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/8.png b/developedcode/setgetdata/app/public/map/xby/4/0/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/0/9.png b/developedcode/setgetdata/app/public/map/xby/4/0/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/0/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/0.png b/developedcode/setgetdata/app/public/map/xby/4/1/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/1.png b/developedcode/setgetdata/app/public/map/xby/4/1/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/10.png b/developedcode/setgetdata/app/public/map/xby/4/1/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/11.png b/developedcode/setgetdata/app/public/map/xby/4/1/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/12.png b/developedcode/setgetdata/app/public/map/xby/4/1/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/13.png b/developedcode/setgetdata/app/public/map/xby/4/1/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/14.png b/developedcode/setgetdata/app/public/map/xby/4/1/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/15.png b/developedcode/setgetdata/app/public/map/xby/4/1/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/16.png b/developedcode/setgetdata/app/public/map/xby/4/1/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/17.png b/developedcode/setgetdata/app/public/map/xby/4/1/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/18.png b/developedcode/setgetdata/app/public/map/xby/4/1/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/19.png b/developedcode/setgetdata/app/public/map/xby/4/1/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/2.png b/developedcode/setgetdata/app/public/map/xby/4/1/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/20.png b/developedcode/setgetdata/app/public/map/xby/4/1/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/21.png b/developedcode/setgetdata/app/public/map/xby/4/1/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/22.png b/developedcode/setgetdata/app/public/map/xby/4/1/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/23.png b/developedcode/setgetdata/app/public/map/xby/4/1/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/24.png b/developedcode/setgetdata/app/public/map/xby/4/1/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/3.png b/developedcode/setgetdata/app/public/map/xby/4/1/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/4.png b/developedcode/setgetdata/app/public/map/xby/4/1/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/5.png b/developedcode/setgetdata/app/public/map/xby/4/1/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/6.png b/developedcode/setgetdata/app/public/map/xby/4/1/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/7.png b/developedcode/setgetdata/app/public/map/xby/4/1/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/8.png b/developedcode/setgetdata/app/public/map/xby/4/1/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/1/9.png b/developedcode/setgetdata/app/public/map/xby/4/1/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/1/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/0.png b/developedcode/setgetdata/app/public/map/xby/4/10/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/1.png b/developedcode/setgetdata/app/public/map/xby/4/10/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/10.png b/developedcode/setgetdata/app/public/map/xby/4/10/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/11.png b/developedcode/setgetdata/app/public/map/xby/4/10/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/12.png b/developedcode/setgetdata/app/public/map/xby/4/10/12.png new file mode 100644 index 0000000..f1eaf45 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/13.png b/developedcode/setgetdata/app/public/map/xby/4/10/13.png new file mode 100644 index 0000000..d61106e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/14.png b/developedcode/setgetdata/app/public/map/xby/4/10/14.png new file mode 100644 index 0000000..ac60334 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/15.png b/developedcode/setgetdata/app/public/map/xby/4/10/15.png new file mode 100644 index 0000000..19aa2f9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/16.png b/developedcode/setgetdata/app/public/map/xby/4/10/16.png new file mode 100644 index 0000000..168f861 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/17.png b/developedcode/setgetdata/app/public/map/xby/4/10/17.png new file mode 100644 index 0000000..c78df89 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/18.png b/developedcode/setgetdata/app/public/map/xby/4/10/18.png new file mode 100644 index 0000000..4074bd7 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/19.png b/developedcode/setgetdata/app/public/map/xby/4/10/19.png new file mode 100644 index 0000000..7c9b481 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/2.png b/developedcode/setgetdata/app/public/map/xby/4/10/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/20.png b/developedcode/setgetdata/app/public/map/xby/4/10/20.png new file mode 100644 index 0000000..27cc4aa Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/21.png b/developedcode/setgetdata/app/public/map/xby/4/10/21.png new file mode 100644 index 0000000..94c45e1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/22.png b/developedcode/setgetdata/app/public/map/xby/4/10/22.png new file mode 100644 index 0000000..7976e2e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/23.png b/developedcode/setgetdata/app/public/map/xby/4/10/23.png new file mode 100644 index 0000000..dbdbf28 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/24.png b/developedcode/setgetdata/app/public/map/xby/4/10/24.png new file mode 100644 index 0000000..319566a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/3.png b/developedcode/setgetdata/app/public/map/xby/4/10/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/4.png b/developedcode/setgetdata/app/public/map/xby/4/10/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/5.png b/developedcode/setgetdata/app/public/map/xby/4/10/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/6.png b/developedcode/setgetdata/app/public/map/xby/4/10/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/7.png b/developedcode/setgetdata/app/public/map/xby/4/10/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/8.png b/developedcode/setgetdata/app/public/map/xby/4/10/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/10/9.png b/developedcode/setgetdata/app/public/map/xby/4/10/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/10/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/0.png b/developedcode/setgetdata/app/public/map/xby/4/11/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/1.png b/developedcode/setgetdata/app/public/map/xby/4/11/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/10.png b/developedcode/setgetdata/app/public/map/xby/4/11/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/11.png b/developedcode/setgetdata/app/public/map/xby/4/11/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/12.png b/developedcode/setgetdata/app/public/map/xby/4/11/12.png new file mode 100644 index 0000000..dedbf0f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/13.png b/developedcode/setgetdata/app/public/map/xby/4/11/13.png new file mode 100644 index 0000000..d87dafe Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/14.png b/developedcode/setgetdata/app/public/map/xby/4/11/14.png new file mode 100644 index 0000000..0dfd772 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/15.png b/developedcode/setgetdata/app/public/map/xby/4/11/15.png new file mode 100644 index 0000000..83387ca Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/16.png b/developedcode/setgetdata/app/public/map/xby/4/11/16.png new file mode 100644 index 0000000..786ee19 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/17.png b/developedcode/setgetdata/app/public/map/xby/4/11/17.png new file mode 100644 index 0000000..e1e6d68 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/18.png b/developedcode/setgetdata/app/public/map/xby/4/11/18.png new file mode 100644 index 0000000..78474df Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/19.png b/developedcode/setgetdata/app/public/map/xby/4/11/19.png new file mode 100644 index 0000000..92edfef Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/2.png b/developedcode/setgetdata/app/public/map/xby/4/11/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/20.png b/developedcode/setgetdata/app/public/map/xby/4/11/20.png new file mode 100644 index 0000000..160b504 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/21.png b/developedcode/setgetdata/app/public/map/xby/4/11/21.png new file mode 100644 index 0000000..8bf520b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/22.png b/developedcode/setgetdata/app/public/map/xby/4/11/22.png new file mode 100644 index 0000000..263fa4e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/23.png b/developedcode/setgetdata/app/public/map/xby/4/11/23.png new file mode 100644 index 0000000..65b01a2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/24.png b/developedcode/setgetdata/app/public/map/xby/4/11/24.png new file mode 100644 index 0000000..bfa25ac Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/3.png b/developedcode/setgetdata/app/public/map/xby/4/11/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/4.png b/developedcode/setgetdata/app/public/map/xby/4/11/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/5.png b/developedcode/setgetdata/app/public/map/xby/4/11/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/6.png b/developedcode/setgetdata/app/public/map/xby/4/11/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/7.png b/developedcode/setgetdata/app/public/map/xby/4/11/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/8.png b/developedcode/setgetdata/app/public/map/xby/4/11/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/11/9.png b/developedcode/setgetdata/app/public/map/xby/4/11/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/11/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/0.png b/developedcode/setgetdata/app/public/map/xby/4/12/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/1.png b/developedcode/setgetdata/app/public/map/xby/4/12/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/10.png b/developedcode/setgetdata/app/public/map/xby/4/12/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/11.png b/developedcode/setgetdata/app/public/map/xby/4/12/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/12.png b/developedcode/setgetdata/app/public/map/xby/4/12/12.png new file mode 100644 index 0000000..fa65396 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/13.png b/developedcode/setgetdata/app/public/map/xby/4/12/13.png new file mode 100644 index 0000000..3658103 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/14.png b/developedcode/setgetdata/app/public/map/xby/4/12/14.png new file mode 100644 index 0000000..0ad98f5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/15.png b/developedcode/setgetdata/app/public/map/xby/4/12/15.png new file mode 100644 index 0000000..a5ffdd0 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/16.png b/developedcode/setgetdata/app/public/map/xby/4/12/16.png new file mode 100644 index 0000000..9028d53 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/17.png b/developedcode/setgetdata/app/public/map/xby/4/12/17.png new file mode 100644 index 0000000..a0101f3 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/18.png b/developedcode/setgetdata/app/public/map/xby/4/12/18.png new file mode 100644 index 0000000..a0d9b32 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/19.png b/developedcode/setgetdata/app/public/map/xby/4/12/19.png new file mode 100644 index 0000000..833c3d4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/2.png b/developedcode/setgetdata/app/public/map/xby/4/12/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/20.png b/developedcode/setgetdata/app/public/map/xby/4/12/20.png new file mode 100644 index 0000000..9048ea8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/21.png b/developedcode/setgetdata/app/public/map/xby/4/12/21.png new file mode 100644 index 0000000..b0ab682 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/22.png b/developedcode/setgetdata/app/public/map/xby/4/12/22.png new file mode 100644 index 0000000..1da5607 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/23.png b/developedcode/setgetdata/app/public/map/xby/4/12/23.png new file mode 100644 index 0000000..3fb0270 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/24.png b/developedcode/setgetdata/app/public/map/xby/4/12/24.png new file mode 100644 index 0000000..bd9b7b8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/3.png b/developedcode/setgetdata/app/public/map/xby/4/12/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/4.png b/developedcode/setgetdata/app/public/map/xby/4/12/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/5.png b/developedcode/setgetdata/app/public/map/xby/4/12/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/6.png b/developedcode/setgetdata/app/public/map/xby/4/12/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/7.png b/developedcode/setgetdata/app/public/map/xby/4/12/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/8.png b/developedcode/setgetdata/app/public/map/xby/4/12/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/12/9.png b/developedcode/setgetdata/app/public/map/xby/4/12/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/12/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/0.png b/developedcode/setgetdata/app/public/map/xby/4/13/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/1.png b/developedcode/setgetdata/app/public/map/xby/4/13/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/10.png b/developedcode/setgetdata/app/public/map/xby/4/13/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/11.png b/developedcode/setgetdata/app/public/map/xby/4/13/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/12.png b/developedcode/setgetdata/app/public/map/xby/4/13/12.png new file mode 100644 index 0000000..2e78555 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/13.png b/developedcode/setgetdata/app/public/map/xby/4/13/13.png new file mode 100644 index 0000000..787eff4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/14.png b/developedcode/setgetdata/app/public/map/xby/4/13/14.png new file mode 100644 index 0000000..f907d00 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/15.png b/developedcode/setgetdata/app/public/map/xby/4/13/15.png new file mode 100644 index 0000000..c1b8b05 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/16.png b/developedcode/setgetdata/app/public/map/xby/4/13/16.png new file mode 100644 index 0000000..642895c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/17.png b/developedcode/setgetdata/app/public/map/xby/4/13/17.png new file mode 100644 index 0000000..ec867ef Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/18.png b/developedcode/setgetdata/app/public/map/xby/4/13/18.png new file mode 100644 index 0000000..1e3472f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/19.png b/developedcode/setgetdata/app/public/map/xby/4/13/19.png new file mode 100644 index 0000000..cc098c5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/2.png b/developedcode/setgetdata/app/public/map/xby/4/13/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/20.png b/developedcode/setgetdata/app/public/map/xby/4/13/20.png new file mode 100644 index 0000000..c6d0f31 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/21.png b/developedcode/setgetdata/app/public/map/xby/4/13/21.png new file mode 100644 index 0000000..e9f6d7a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/22.png b/developedcode/setgetdata/app/public/map/xby/4/13/22.png new file mode 100644 index 0000000..3dcc3b3 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/23.png b/developedcode/setgetdata/app/public/map/xby/4/13/23.png new file mode 100644 index 0000000..713097e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/24.png b/developedcode/setgetdata/app/public/map/xby/4/13/24.png new file mode 100644 index 0000000..35518b6 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/3.png b/developedcode/setgetdata/app/public/map/xby/4/13/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/4.png b/developedcode/setgetdata/app/public/map/xby/4/13/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/5.png b/developedcode/setgetdata/app/public/map/xby/4/13/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/6.png b/developedcode/setgetdata/app/public/map/xby/4/13/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/7.png b/developedcode/setgetdata/app/public/map/xby/4/13/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/8.png b/developedcode/setgetdata/app/public/map/xby/4/13/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/13/9.png b/developedcode/setgetdata/app/public/map/xby/4/13/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/13/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/0.png b/developedcode/setgetdata/app/public/map/xby/4/14/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/1.png b/developedcode/setgetdata/app/public/map/xby/4/14/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/10.png b/developedcode/setgetdata/app/public/map/xby/4/14/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/11.png b/developedcode/setgetdata/app/public/map/xby/4/14/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/12.png b/developedcode/setgetdata/app/public/map/xby/4/14/12.png new file mode 100644 index 0000000..8713ab5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/13.png b/developedcode/setgetdata/app/public/map/xby/4/14/13.png new file mode 100644 index 0000000..b469a3d Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/14.png b/developedcode/setgetdata/app/public/map/xby/4/14/14.png new file mode 100644 index 0000000..8295038 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/15.png b/developedcode/setgetdata/app/public/map/xby/4/14/15.png new file mode 100644 index 0000000..f77f919 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/16.png b/developedcode/setgetdata/app/public/map/xby/4/14/16.png new file mode 100644 index 0000000..8e399e5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/17.png b/developedcode/setgetdata/app/public/map/xby/4/14/17.png new file mode 100644 index 0000000..44c17b9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/18.png b/developedcode/setgetdata/app/public/map/xby/4/14/18.png new file mode 100644 index 0000000..c58429b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/19.png b/developedcode/setgetdata/app/public/map/xby/4/14/19.png new file mode 100644 index 0000000..5dcc157 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/2.png b/developedcode/setgetdata/app/public/map/xby/4/14/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/20.png b/developedcode/setgetdata/app/public/map/xby/4/14/20.png new file mode 100644 index 0000000..cb8429b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/21.png b/developedcode/setgetdata/app/public/map/xby/4/14/21.png new file mode 100644 index 0000000..39e2e20 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/22.png b/developedcode/setgetdata/app/public/map/xby/4/14/22.png new file mode 100644 index 0000000..3e66885 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/23.png b/developedcode/setgetdata/app/public/map/xby/4/14/23.png new file mode 100644 index 0000000..e2b75c9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/24.png b/developedcode/setgetdata/app/public/map/xby/4/14/24.png new file mode 100644 index 0000000..fa491a3 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/3.png b/developedcode/setgetdata/app/public/map/xby/4/14/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/4.png b/developedcode/setgetdata/app/public/map/xby/4/14/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/5.png b/developedcode/setgetdata/app/public/map/xby/4/14/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/6.png b/developedcode/setgetdata/app/public/map/xby/4/14/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/7.png b/developedcode/setgetdata/app/public/map/xby/4/14/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/8.png b/developedcode/setgetdata/app/public/map/xby/4/14/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/14/9.png b/developedcode/setgetdata/app/public/map/xby/4/14/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/14/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/0.png b/developedcode/setgetdata/app/public/map/xby/4/15/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/1.png b/developedcode/setgetdata/app/public/map/xby/4/15/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/10.png b/developedcode/setgetdata/app/public/map/xby/4/15/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/11.png b/developedcode/setgetdata/app/public/map/xby/4/15/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/12.png b/developedcode/setgetdata/app/public/map/xby/4/15/12.png new file mode 100644 index 0000000..476e0e9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/13.png b/developedcode/setgetdata/app/public/map/xby/4/15/13.png new file mode 100644 index 0000000..dba78c3 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/14.png b/developedcode/setgetdata/app/public/map/xby/4/15/14.png new file mode 100644 index 0000000..1758a0b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/15.png b/developedcode/setgetdata/app/public/map/xby/4/15/15.png new file mode 100644 index 0000000..580549c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/16.png b/developedcode/setgetdata/app/public/map/xby/4/15/16.png new file mode 100644 index 0000000..0ffb770 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/17.png b/developedcode/setgetdata/app/public/map/xby/4/15/17.png new file mode 100644 index 0000000..6a9a373 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/18.png b/developedcode/setgetdata/app/public/map/xby/4/15/18.png new file mode 100644 index 0000000..071abe5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/19.png b/developedcode/setgetdata/app/public/map/xby/4/15/19.png new file mode 100644 index 0000000..517fd96 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/2.png b/developedcode/setgetdata/app/public/map/xby/4/15/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/20.png b/developedcode/setgetdata/app/public/map/xby/4/15/20.png new file mode 100644 index 0000000..96be979 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/21.png b/developedcode/setgetdata/app/public/map/xby/4/15/21.png new file mode 100644 index 0000000..e8c2c76 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/22.png b/developedcode/setgetdata/app/public/map/xby/4/15/22.png new file mode 100644 index 0000000..37a44a9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/23.png b/developedcode/setgetdata/app/public/map/xby/4/15/23.png new file mode 100644 index 0000000..7e43859 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/24.png b/developedcode/setgetdata/app/public/map/xby/4/15/24.png new file mode 100644 index 0000000..1ca405e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/3.png b/developedcode/setgetdata/app/public/map/xby/4/15/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/4.png b/developedcode/setgetdata/app/public/map/xby/4/15/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/5.png b/developedcode/setgetdata/app/public/map/xby/4/15/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/6.png b/developedcode/setgetdata/app/public/map/xby/4/15/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/7.png b/developedcode/setgetdata/app/public/map/xby/4/15/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/8.png b/developedcode/setgetdata/app/public/map/xby/4/15/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/15/9.png b/developedcode/setgetdata/app/public/map/xby/4/15/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/15/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/0.png b/developedcode/setgetdata/app/public/map/xby/4/16/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/1.png b/developedcode/setgetdata/app/public/map/xby/4/16/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/10.png b/developedcode/setgetdata/app/public/map/xby/4/16/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/11.png b/developedcode/setgetdata/app/public/map/xby/4/16/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/12.png b/developedcode/setgetdata/app/public/map/xby/4/16/12.png new file mode 100644 index 0000000..a8b7f9d Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/13.png b/developedcode/setgetdata/app/public/map/xby/4/16/13.png new file mode 100644 index 0000000..0b5e47f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/14.png b/developedcode/setgetdata/app/public/map/xby/4/16/14.png new file mode 100644 index 0000000..67f19c2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/15.png b/developedcode/setgetdata/app/public/map/xby/4/16/15.png new file mode 100644 index 0000000..11d5df1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/16.png b/developedcode/setgetdata/app/public/map/xby/4/16/16.png new file mode 100644 index 0000000..4f3e2c4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/17.png b/developedcode/setgetdata/app/public/map/xby/4/16/17.png new file mode 100644 index 0000000..da53323 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/18.png b/developedcode/setgetdata/app/public/map/xby/4/16/18.png new file mode 100644 index 0000000..ebc103f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/19.png b/developedcode/setgetdata/app/public/map/xby/4/16/19.png new file mode 100644 index 0000000..327023f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/2.png b/developedcode/setgetdata/app/public/map/xby/4/16/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/20.png b/developedcode/setgetdata/app/public/map/xby/4/16/20.png new file mode 100644 index 0000000..1f94800 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/21.png b/developedcode/setgetdata/app/public/map/xby/4/16/21.png new file mode 100644 index 0000000..e697ae1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/22.png b/developedcode/setgetdata/app/public/map/xby/4/16/22.png new file mode 100644 index 0000000..605e137 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/23.png b/developedcode/setgetdata/app/public/map/xby/4/16/23.png new file mode 100644 index 0000000..5df36fe Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/24.png b/developedcode/setgetdata/app/public/map/xby/4/16/24.png new file mode 100644 index 0000000..bc2909c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/3.png b/developedcode/setgetdata/app/public/map/xby/4/16/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/4.png b/developedcode/setgetdata/app/public/map/xby/4/16/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/5.png b/developedcode/setgetdata/app/public/map/xby/4/16/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/6.png b/developedcode/setgetdata/app/public/map/xby/4/16/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/7.png b/developedcode/setgetdata/app/public/map/xby/4/16/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/8.png b/developedcode/setgetdata/app/public/map/xby/4/16/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/16/9.png b/developedcode/setgetdata/app/public/map/xby/4/16/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/16/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/0.png b/developedcode/setgetdata/app/public/map/xby/4/17/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/1.png b/developedcode/setgetdata/app/public/map/xby/4/17/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/10.png b/developedcode/setgetdata/app/public/map/xby/4/17/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/11.png b/developedcode/setgetdata/app/public/map/xby/4/17/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/12.png b/developedcode/setgetdata/app/public/map/xby/4/17/12.png new file mode 100644 index 0000000..dded754 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/13.png b/developedcode/setgetdata/app/public/map/xby/4/17/13.png new file mode 100644 index 0000000..3448555 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/14.png b/developedcode/setgetdata/app/public/map/xby/4/17/14.png new file mode 100644 index 0000000..473b0d7 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/15.png b/developedcode/setgetdata/app/public/map/xby/4/17/15.png new file mode 100644 index 0000000..e336fb0 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/16.png b/developedcode/setgetdata/app/public/map/xby/4/17/16.png new file mode 100644 index 0000000..1925a7b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/17.png b/developedcode/setgetdata/app/public/map/xby/4/17/17.png new file mode 100644 index 0000000..efea376 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/18.png b/developedcode/setgetdata/app/public/map/xby/4/17/18.png new file mode 100644 index 0000000..d8db96f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/19.png b/developedcode/setgetdata/app/public/map/xby/4/17/19.png new file mode 100644 index 0000000..e8c5d3f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/2.png b/developedcode/setgetdata/app/public/map/xby/4/17/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/20.png b/developedcode/setgetdata/app/public/map/xby/4/17/20.png new file mode 100644 index 0000000..a933801 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/21.png b/developedcode/setgetdata/app/public/map/xby/4/17/21.png new file mode 100644 index 0000000..c26b744 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/22.png b/developedcode/setgetdata/app/public/map/xby/4/17/22.png new file mode 100644 index 0000000..b1f011e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/23.png b/developedcode/setgetdata/app/public/map/xby/4/17/23.png new file mode 100644 index 0000000..0216a7e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/24.png b/developedcode/setgetdata/app/public/map/xby/4/17/24.png new file mode 100644 index 0000000..ba59347 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/3.png b/developedcode/setgetdata/app/public/map/xby/4/17/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/4.png b/developedcode/setgetdata/app/public/map/xby/4/17/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/5.png b/developedcode/setgetdata/app/public/map/xby/4/17/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/6.png b/developedcode/setgetdata/app/public/map/xby/4/17/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/7.png b/developedcode/setgetdata/app/public/map/xby/4/17/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/8.png b/developedcode/setgetdata/app/public/map/xby/4/17/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/17/9.png b/developedcode/setgetdata/app/public/map/xby/4/17/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/17/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/0.png b/developedcode/setgetdata/app/public/map/xby/4/18/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/1.png b/developedcode/setgetdata/app/public/map/xby/4/18/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/10.png b/developedcode/setgetdata/app/public/map/xby/4/18/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/11.png b/developedcode/setgetdata/app/public/map/xby/4/18/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/12.png b/developedcode/setgetdata/app/public/map/xby/4/18/12.png new file mode 100644 index 0000000..8aca2b4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/13.png b/developedcode/setgetdata/app/public/map/xby/4/18/13.png new file mode 100644 index 0000000..ecad398 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/14.png b/developedcode/setgetdata/app/public/map/xby/4/18/14.png new file mode 100644 index 0000000..c7d1c91 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/15.png b/developedcode/setgetdata/app/public/map/xby/4/18/15.png new file mode 100644 index 0000000..9996ea8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/16.png b/developedcode/setgetdata/app/public/map/xby/4/18/16.png new file mode 100644 index 0000000..138d478 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/17.png b/developedcode/setgetdata/app/public/map/xby/4/18/17.png new file mode 100644 index 0000000..61d9f0a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/18.png b/developedcode/setgetdata/app/public/map/xby/4/18/18.png new file mode 100644 index 0000000..022827a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/19.png b/developedcode/setgetdata/app/public/map/xby/4/18/19.png new file mode 100644 index 0000000..ff00e98 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/2.png b/developedcode/setgetdata/app/public/map/xby/4/18/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/20.png b/developedcode/setgetdata/app/public/map/xby/4/18/20.png new file mode 100644 index 0000000..503fd4e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/21.png b/developedcode/setgetdata/app/public/map/xby/4/18/21.png new file mode 100644 index 0000000..73ea0e1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/22.png b/developedcode/setgetdata/app/public/map/xby/4/18/22.png new file mode 100644 index 0000000..6cbd393 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/23.png b/developedcode/setgetdata/app/public/map/xby/4/18/23.png new file mode 100644 index 0000000..982d9cb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/24.png b/developedcode/setgetdata/app/public/map/xby/4/18/24.png new file mode 100644 index 0000000..19fe003 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/3.png b/developedcode/setgetdata/app/public/map/xby/4/18/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/4.png b/developedcode/setgetdata/app/public/map/xby/4/18/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/5.png b/developedcode/setgetdata/app/public/map/xby/4/18/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/6.png b/developedcode/setgetdata/app/public/map/xby/4/18/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/7.png b/developedcode/setgetdata/app/public/map/xby/4/18/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/8.png b/developedcode/setgetdata/app/public/map/xby/4/18/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/18/9.png b/developedcode/setgetdata/app/public/map/xby/4/18/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/18/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/0.png b/developedcode/setgetdata/app/public/map/xby/4/19/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/1.png b/developedcode/setgetdata/app/public/map/xby/4/19/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/10.png b/developedcode/setgetdata/app/public/map/xby/4/19/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/11.png b/developedcode/setgetdata/app/public/map/xby/4/19/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/12.png b/developedcode/setgetdata/app/public/map/xby/4/19/12.png new file mode 100644 index 0000000..19b282f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/13.png b/developedcode/setgetdata/app/public/map/xby/4/19/13.png new file mode 100644 index 0000000..0757ccc Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/14.png b/developedcode/setgetdata/app/public/map/xby/4/19/14.png new file mode 100644 index 0000000..ec342da Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/15.png b/developedcode/setgetdata/app/public/map/xby/4/19/15.png new file mode 100644 index 0000000..e2189d2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/16.png b/developedcode/setgetdata/app/public/map/xby/4/19/16.png new file mode 100644 index 0000000..b56f08d Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/17.png b/developedcode/setgetdata/app/public/map/xby/4/19/17.png new file mode 100644 index 0000000..92cf1b5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/18.png b/developedcode/setgetdata/app/public/map/xby/4/19/18.png new file mode 100644 index 0000000..c43ad68 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/19.png b/developedcode/setgetdata/app/public/map/xby/4/19/19.png new file mode 100644 index 0000000..b412c87 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/2.png b/developedcode/setgetdata/app/public/map/xby/4/19/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/20.png b/developedcode/setgetdata/app/public/map/xby/4/19/20.png new file mode 100644 index 0000000..8c7a929 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/21.png b/developedcode/setgetdata/app/public/map/xby/4/19/21.png new file mode 100644 index 0000000..4ce5be2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/22.png b/developedcode/setgetdata/app/public/map/xby/4/19/22.png new file mode 100644 index 0000000..6a01ce2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/23.png b/developedcode/setgetdata/app/public/map/xby/4/19/23.png new file mode 100644 index 0000000..5424f98 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/24.png b/developedcode/setgetdata/app/public/map/xby/4/19/24.png new file mode 100644 index 0000000..112c817 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/3.png b/developedcode/setgetdata/app/public/map/xby/4/19/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/4.png b/developedcode/setgetdata/app/public/map/xby/4/19/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/5.png b/developedcode/setgetdata/app/public/map/xby/4/19/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/6.png b/developedcode/setgetdata/app/public/map/xby/4/19/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/7.png b/developedcode/setgetdata/app/public/map/xby/4/19/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/8.png b/developedcode/setgetdata/app/public/map/xby/4/19/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/19/9.png b/developedcode/setgetdata/app/public/map/xby/4/19/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/19/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/0.png b/developedcode/setgetdata/app/public/map/xby/4/2/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/1.png b/developedcode/setgetdata/app/public/map/xby/4/2/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/10.png b/developedcode/setgetdata/app/public/map/xby/4/2/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/11.png b/developedcode/setgetdata/app/public/map/xby/4/2/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/12.png b/developedcode/setgetdata/app/public/map/xby/4/2/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/13.png b/developedcode/setgetdata/app/public/map/xby/4/2/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/14.png b/developedcode/setgetdata/app/public/map/xby/4/2/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/15.png b/developedcode/setgetdata/app/public/map/xby/4/2/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/16.png b/developedcode/setgetdata/app/public/map/xby/4/2/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/17.png b/developedcode/setgetdata/app/public/map/xby/4/2/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/18.png b/developedcode/setgetdata/app/public/map/xby/4/2/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/19.png b/developedcode/setgetdata/app/public/map/xby/4/2/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/2.png b/developedcode/setgetdata/app/public/map/xby/4/2/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/20.png b/developedcode/setgetdata/app/public/map/xby/4/2/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/21.png b/developedcode/setgetdata/app/public/map/xby/4/2/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/22.png b/developedcode/setgetdata/app/public/map/xby/4/2/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/23.png b/developedcode/setgetdata/app/public/map/xby/4/2/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/24.png b/developedcode/setgetdata/app/public/map/xby/4/2/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/3.png b/developedcode/setgetdata/app/public/map/xby/4/2/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/4.png b/developedcode/setgetdata/app/public/map/xby/4/2/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/5.png b/developedcode/setgetdata/app/public/map/xby/4/2/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/6.png b/developedcode/setgetdata/app/public/map/xby/4/2/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/7.png b/developedcode/setgetdata/app/public/map/xby/4/2/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/8.png b/developedcode/setgetdata/app/public/map/xby/4/2/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/2/9.png b/developedcode/setgetdata/app/public/map/xby/4/2/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/2/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/0.png b/developedcode/setgetdata/app/public/map/xby/4/20/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/1.png b/developedcode/setgetdata/app/public/map/xby/4/20/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/10.png b/developedcode/setgetdata/app/public/map/xby/4/20/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/11.png b/developedcode/setgetdata/app/public/map/xby/4/20/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/12.png b/developedcode/setgetdata/app/public/map/xby/4/20/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/13.png b/developedcode/setgetdata/app/public/map/xby/4/20/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/14.png b/developedcode/setgetdata/app/public/map/xby/4/20/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/15.png b/developedcode/setgetdata/app/public/map/xby/4/20/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/16.png b/developedcode/setgetdata/app/public/map/xby/4/20/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/17.png b/developedcode/setgetdata/app/public/map/xby/4/20/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/18.png b/developedcode/setgetdata/app/public/map/xby/4/20/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/19.png b/developedcode/setgetdata/app/public/map/xby/4/20/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/2.png b/developedcode/setgetdata/app/public/map/xby/4/20/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/20.png b/developedcode/setgetdata/app/public/map/xby/4/20/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/21.png b/developedcode/setgetdata/app/public/map/xby/4/20/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/22.png b/developedcode/setgetdata/app/public/map/xby/4/20/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/23.png b/developedcode/setgetdata/app/public/map/xby/4/20/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/24.png b/developedcode/setgetdata/app/public/map/xby/4/20/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/3.png b/developedcode/setgetdata/app/public/map/xby/4/20/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/4.png b/developedcode/setgetdata/app/public/map/xby/4/20/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/5.png b/developedcode/setgetdata/app/public/map/xby/4/20/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/6.png b/developedcode/setgetdata/app/public/map/xby/4/20/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/7.png b/developedcode/setgetdata/app/public/map/xby/4/20/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/8.png b/developedcode/setgetdata/app/public/map/xby/4/20/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/20/9.png b/developedcode/setgetdata/app/public/map/xby/4/20/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/20/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/0.png b/developedcode/setgetdata/app/public/map/xby/4/21/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/1.png b/developedcode/setgetdata/app/public/map/xby/4/21/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/10.png b/developedcode/setgetdata/app/public/map/xby/4/21/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/11.png b/developedcode/setgetdata/app/public/map/xby/4/21/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/12.png b/developedcode/setgetdata/app/public/map/xby/4/21/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/13.png b/developedcode/setgetdata/app/public/map/xby/4/21/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/14.png b/developedcode/setgetdata/app/public/map/xby/4/21/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/15.png b/developedcode/setgetdata/app/public/map/xby/4/21/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/16.png b/developedcode/setgetdata/app/public/map/xby/4/21/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/17.png b/developedcode/setgetdata/app/public/map/xby/4/21/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/18.png b/developedcode/setgetdata/app/public/map/xby/4/21/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/19.png b/developedcode/setgetdata/app/public/map/xby/4/21/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/2.png b/developedcode/setgetdata/app/public/map/xby/4/21/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/20.png b/developedcode/setgetdata/app/public/map/xby/4/21/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/21.png b/developedcode/setgetdata/app/public/map/xby/4/21/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/22.png b/developedcode/setgetdata/app/public/map/xby/4/21/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/23.png b/developedcode/setgetdata/app/public/map/xby/4/21/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/24.png b/developedcode/setgetdata/app/public/map/xby/4/21/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/3.png b/developedcode/setgetdata/app/public/map/xby/4/21/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/4.png b/developedcode/setgetdata/app/public/map/xby/4/21/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/5.png b/developedcode/setgetdata/app/public/map/xby/4/21/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/6.png b/developedcode/setgetdata/app/public/map/xby/4/21/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/7.png b/developedcode/setgetdata/app/public/map/xby/4/21/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/8.png b/developedcode/setgetdata/app/public/map/xby/4/21/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/21/9.png b/developedcode/setgetdata/app/public/map/xby/4/21/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/21/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/0.png b/developedcode/setgetdata/app/public/map/xby/4/22/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/1.png b/developedcode/setgetdata/app/public/map/xby/4/22/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/10.png b/developedcode/setgetdata/app/public/map/xby/4/22/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/11.png b/developedcode/setgetdata/app/public/map/xby/4/22/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/12.png b/developedcode/setgetdata/app/public/map/xby/4/22/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/13.png b/developedcode/setgetdata/app/public/map/xby/4/22/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/14.png b/developedcode/setgetdata/app/public/map/xby/4/22/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/15.png b/developedcode/setgetdata/app/public/map/xby/4/22/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/16.png b/developedcode/setgetdata/app/public/map/xby/4/22/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/17.png b/developedcode/setgetdata/app/public/map/xby/4/22/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/18.png b/developedcode/setgetdata/app/public/map/xby/4/22/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/19.png b/developedcode/setgetdata/app/public/map/xby/4/22/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/2.png b/developedcode/setgetdata/app/public/map/xby/4/22/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/20.png b/developedcode/setgetdata/app/public/map/xby/4/22/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/21.png b/developedcode/setgetdata/app/public/map/xby/4/22/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/22.png b/developedcode/setgetdata/app/public/map/xby/4/22/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/23.png b/developedcode/setgetdata/app/public/map/xby/4/22/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/24.png b/developedcode/setgetdata/app/public/map/xby/4/22/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/3.png b/developedcode/setgetdata/app/public/map/xby/4/22/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/4.png b/developedcode/setgetdata/app/public/map/xby/4/22/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/5.png b/developedcode/setgetdata/app/public/map/xby/4/22/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/6.png b/developedcode/setgetdata/app/public/map/xby/4/22/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/7.png b/developedcode/setgetdata/app/public/map/xby/4/22/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/8.png b/developedcode/setgetdata/app/public/map/xby/4/22/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/22/9.png b/developedcode/setgetdata/app/public/map/xby/4/22/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/22/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/0.png b/developedcode/setgetdata/app/public/map/xby/4/23/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/1.png b/developedcode/setgetdata/app/public/map/xby/4/23/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/10.png b/developedcode/setgetdata/app/public/map/xby/4/23/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/11.png b/developedcode/setgetdata/app/public/map/xby/4/23/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/12.png b/developedcode/setgetdata/app/public/map/xby/4/23/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/13.png b/developedcode/setgetdata/app/public/map/xby/4/23/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/14.png b/developedcode/setgetdata/app/public/map/xby/4/23/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/15.png b/developedcode/setgetdata/app/public/map/xby/4/23/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/16.png b/developedcode/setgetdata/app/public/map/xby/4/23/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/17.png b/developedcode/setgetdata/app/public/map/xby/4/23/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/18.png b/developedcode/setgetdata/app/public/map/xby/4/23/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/19.png b/developedcode/setgetdata/app/public/map/xby/4/23/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/2.png b/developedcode/setgetdata/app/public/map/xby/4/23/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/20.png b/developedcode/setgetdata/app/public/map/xby/4/23/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/21.png b/developedcode/setgetdata/app/public/map/xby/4/23/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/22.png b/developedcode/setgetdata/app/public/map/xby/4/23/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/23.png b/developedcode/setgetdata/app/public/map/xby/4/23/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/24.png b/developedcode/setgetdata/app/public/map/xby/4/23/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/3.png b/developedcode/setgetdata/app/public/map/xby/4/23/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/4.png b/developedcode/setgetdata/app/public/map/xby/4/23/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/5.png b/developedcode/setgetdata/app/public/map/xby/4/23/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/6.png b/developedcode/setgetdata/app/public/map/xby/4/23/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/7.png b/developedcode/setgetdata/app/public/map/xby/4/23/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/8.png b/developedcode/setgetdata/app/public/map/xby/4/23/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/23/9.png b/developedcode/setgetdata/app/public/map/xby/4/23/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/23/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/0.png b/developedcode/setgetdata/app/public/map/xby/4/24/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/1.png b/developedcode/setgetdata/app/public/map/xby/4/24/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/10.png b/developedcode/setgetdata/app/public/map/xby/4/24/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/11.png b/developedcode/setgetdata/app/public/map/xby/4/24/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/12.png b/developedcode/setgetdata/app/public/map/xby/4/24/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/13.png b/developedcode/setgetdata/app/public/map/xby/4/24/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/14.png b/developedcode/setgetdata/app/public/map/xby/4/24/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/15.png b/developedcode/setgetdata/app/public/map/xby/4/24/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/16.png b/developedcode/setgetdata/app/public/map/xby/4/24/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/17.png b/developedcode/setgetdata/app/public/map/xby/4/24/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/18.png b/developedcode/setgetdata/app/public/map/xby/4/24/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/19.png b/developedcode/setgetdata/app/public/map/xby/4/24/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/2.png b/developedcode/setgetdata/app/public/map/xby/4/24/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/20.png b/developedcode/setgetdata/app/public/map/xby/4/24/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/21.png b/developedcode/setgetdata/app/public/map/xby/4/24/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/22.png b/developedcode/setgetdata/app/public/map/xby/4/24/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/23.png b/developedcode/setgetdata/app/public/map/xby/4/24/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/24.png b/developedcode/setgetdata/app/public/map/xby/4/24/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/3.png b/developedcode/setgetdata/app/public/map/xby/4/24/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/4.png b/developedcode/setgetdata/app/public/map/xby/4/24/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/5.png b/developedcode/setgetdata/app/public/map/xby/4/24/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/6.png b/developedcode/setgetdata/app/public/map/xby/4/24/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/7.png b/developedcode/setgetdata/app/public/map/xby/4/24/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/8.png b/developedcode/setgetdata/app/public/map/xby/4/24/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/24/9.png b/developedcode/setgetdata/app/public/map/xby/4/24/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/24/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/0.png b/developedcode/setgetdata/app/public/map/xby/4/25/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/1.png b/developedcode/setgetdata/app/public/map/xby/4/25/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/10.png b/developedcode/setgetdata/app/public/map/xby/4/25/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/11.png b/developedcode/setgetdata/app/public/map/xby/4/25/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/12.png b/developedcode/setgetdata/app/public/map/xby/4/25/12.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/13.png b/developedcode/setgetdata/app/public/map/xby/4/25/13.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/14.png b/developedcode/setgetdata/app/public/map/xby/4/25/14.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/15.png b/developedcode/setgetdata/app/public/map/xby/4/25/15.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/16.png b/developedcode/setgetdata/app/public/map/xby/4/25/16.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/17.png b/developedcode/setgetdata/app/public/map/xby/4/25/17.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/18.png b/developedcode/setgetdata/app/public/map/xby/4/25/18.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/19.png b/developedcode/setgetdata/app/public/map/xby/4/25/19.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/2.png b/developedcode/setgetdata/app/public/map/xby/4/25/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/20.png b/developedcode/setgetdata/app/public/map/xby/4/25/20.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/21.png b/developedcode/setgetdata/app/public/map/xby/4/25/21.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/22.png b/developedcode/setgetdata/app/public/map/xby/4/25/22.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/23.png b/developedcode/setgetdata/app/public/map/xby/4/25/23.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/24.png b/developedcode/setgetdata/app/public/map/xby/4/25/24.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/3.png b/developedcode/setgetdata/app/public/map/xby/4/25/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/4.png b/developedcode/setgetdata/app/public/map/xby/4/25/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/5.png b/developedcode/setgetdata/app/public/map/xby/4/25/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/6.png b/developedcode/setgetdata/app/public/map/xby/4/25/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/7.png b/developedcode/setgetdata/app/public/map/xby/4/25/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/8.png b/developedcode/setgetdata/app/public/map/xby/4/25/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/25/9.png b/developedcode/setgetdata/app/public/map/xby/4/25/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/25/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/0.png b/developedcode/setgetdata/app/public/map/xby/4/3/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/1.png b/developedcode/setgetdata/app/public/map/xby/4/3/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/10.png b/developedcode/setgetdata/app/public/map/xby/4/3/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/11.png b/developedcode/setgetdata/app/public/map/xby/4/3/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/12.png b/developedcode/setgetdata/app/public/map/xby/4/3/12.png new file mode 100644 index 0000000..21a85b4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/13.png b/developedcode/setgetdata/app/public/map/xby/4/3/13.png new file mode 100644 index 0000000..8019d01 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/14.png b/developedcode/setgetdata/app/public/map/xby/4/3/14.png new file mode 100644 index 0000000..a848a35 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/15.png b/developedcode/setgetdata/app/public/map/xby/4/3/15.png new file mode 100644 index 0000000..e77bf03 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/16.png b/developedcode/setgetdata/app/public/map/xby/4/3/16.png new file mode 100644 index 0000000..1bdac8a Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/17.png b/developedcode/setgetdata/app/public/map/xby/4/3/17.png new file mode 100644 index 0000000..2ad4ba2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/18.png b/developedcode/setgetdata/app/public/map/xby/4/3/18.png new file mode 100644 index 0000000..38e5a3f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/19.png b/developedcode/setgetdata/app/public/map/xby/4/3/19.png new file mode 100644 index 0000000..e7f6139 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/2.png b/developedcode/setgetdata/app/public/map/xby/4/3/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/20.png b/developedcode/setgetdata/app/public/map/xby/4/3/20.png new file mode 100644 index 0000000..163ea22 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/21.png b/developedcode/setgetdata/app/public/map/xby/4/3/21.png new file mode 100644 index 0000000..c285ea1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/22.png b/developedcode/setgetdata/app/public/map/xby/4/3/22.png new file mode 100644 index 0000000..7716edb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/23.png b/developedcode/setgetdata/app/public/map/xby/4/3/23.png new file mode 100644 index 0000000..ec52326 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/24.png b/developedcode/setgetdata/app/public/map/xby/4/3/24.png new file mode 100644 index 0000000..ce19fee Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/3.png b/developedcode/setgetdata/app/public/map/xby/4/3/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/4.png b/developedcode/setgetdata/app/public/map/xby/4/3/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/5.png b/developedcode/setgetdata/app/public/map/xby/4/3/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/6.png b/developedcode/setgetdata/app/public/map/xby/4/3/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/7.png b/developedcode/setgetdata/app/public/map/xby/4/3/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/8.png b/developedcode/setgetdata/app/public/map/xby/4/3/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/3/9.png b/developedcode/setgetdata/app/public/map/xby/4/3/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/3/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/0.png b/developedcode/setgetdata/app/public/map/xby/4/4/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/1.png b/developedcode/setgetdata/app/public/map/xby/4/4/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/10.png b/developedcode/setgetdata/app/public/map/xby/4/4/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/11.png b/developedcode/setgetdata/app/public/map/xby/4/4/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/12.png b/developedcode/setgetdata/app/public/map/xby/4/4/12.png new file mode 100644 index 0000000..e8fc26f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/13.png b/developedcode/setgetdata/app/public/map/xby/4/4/13.png new file mode 100644 index 0000000..d8dbef9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/14.png b/developedcode/setgetdata/app/public/map/xby/4/4/14.png new file mode 100644 index 0000000..2b8e4c0 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/15.png b/developedcode/setgetdata/app/public/map/xby/4/4/15.png new file mode 100644 index 0000000..3cf0d64 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/16.png b/developedcode/setgetdata/app/public/map/xby/4/4/16.png new file mode 100644 index 0000000..e7bcedc Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/17.png b/developedcode/setgetdata/app/public/map/xby/4/4/17.png new file mode 100644 index 0000000..7443c16 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/18.png b/developedcode/setgetdata/app/public/map/xby/4/4/18.png new file mode 100644 index 0000000..3b74c86 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/19.png b/developedcode/setgetdata/app/public/map/xby/4/4/19.png new file mode 100644 index 0000000..b2f39d7 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/2.png b/developedcode/setgetdata/app/public/map/xby/4/4/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/20.png b/developedcode/setgetdata/app/public/map/xby/4/4/20.png new file mode 100644 index 0000000..46ea6e8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/21.png b/developedcode/setgetdata/app/public/map/xby/4/4/21.png new file mode 100644 index 0000000..48d2c78 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/22.png b/developedcode/setgetdata/app/public/map/xby/4/4/22.png new file mode 100644 index 0000000..0644c67 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/23.png b/developedcode/setgetdata/app/public/map/xby/4/4/23.png new file mode 100644 index 0000000..e3a7e58 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/24.png b/developedcode/setgetdata/app/public/map/xby/4/4/24.png new file mode 100644 index 0000000..d729a40 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/3.png b/developedcode/setgetdata/app/public/map/xby/4/4/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/4.png b/developedcode/setgetdata/app/public/map/xby/4/4/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/5.png b/developedcode/setgetdata/app/public/map/xby/4/4/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/6.png b/developedcode/setgetdata/app/public/map/xby/4/4/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/7.png b/developedcode/setgetdata/app/public/map/xby/4/4/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/8.png b/developedcode/setgetdata/app/public/map/xby/4/4/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/4/9.png b/developedcode/setgetdata/app/public/map/xby/4/4/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/4/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/0.png b/developedcode/setgetdata/app/public/map/xby/4/5/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/1.png b/developedcode/setgetdata/app/public/map/xby/4/5/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/10.png b/developedcode/setgetdata/app/public/map/xby/4/5/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/11.png b/developedcode/setgetdata/app/public/map/xby/4/5/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/12.png b/developedcode/setgetdata/app/public/map/xby/4/5/12.png new file mode 100644 index 0000000..b4170c6 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/13.png b/developedcode/setgetdata/app/public/map/xby/4/5/13.png new file mode 100644 index 0000000..3895e6f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/14.png b/developedcode/setgetdata/app/public/map/xby/4/5/14.png new file mode 100644 index 0000000..52027b2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/15.png b/developedcode/setgetdata/app/public/map/xby/4/5/15.png new file mode 100644 index 0000000..4b43503 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/16.png b/developedcode/setgetdata/app/public/map/xby/4/5/16.png new file mode 100644 index 0000000..85da8b5 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/17.png b/developedcode/setgetdata/app/public/map/xby/4/5/17.png new file mode 100644 index 0000000..4154428 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/18.png b/developedcode/setgetdata/app/public/map/xby/4/5/18.png new file mode 100644 index 0000000..54a34be Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/19.png b/developedcode/setgetdata/app/public/map/xby/4/5/19.png new file mode 100644 index 0000000..7330b22 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/2.png b/developedcode/setgetdata/app/public/map/xby/4/5/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/20.png b/developedcode/setgetdata/app/public/map/xby/4/5/20.png new file mode 100644 index 0000000..af5b9c7 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/21.png b/developedcode/setgetdata/app/public/map/xby/4/5/21.png new file mode 100644 index 0000000..09e5754 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/22.png b/developedcode/setgetdata/app/public/map/xby/4/5/22.png new file mode 100644 index 0000000..66be0a9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/23.png b/developedcode/setgetdata/app/public/map/xby/4/5/23.png new file mode 100644 index 0000000..5146f19 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/24.png b/developedcode/setgetdata/app/public/map/xby/4/5/24.png new file mode 100644 index 0000000..47deabb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/3.png b/developedcode/setgetdata/app/public/map/xby/4/5/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/4.png b/developedcode/setgetdata/app/public/map/xby/4/5/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/5.png b/developedcode/setgetdata/app/public/map/xby/4/5/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/6.png b/developedcode/setgetdata/app/public/map/xby/4/5/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/7.png b/developedcode/setgetdata/app/public/map/xby/4/5/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/8.png b/developedcode/setgetdata/app/public/map/xby/4/5/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/5/9.png b/developedcode/setgetdata/app/public/map/xby/4/5/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/5/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/0.png b/developedcode/setgetdata/app/public/map/xby/4/6/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/1.png b/developedcode/setgetdata/app/public/map/xby/4/6/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/10.png b/developedcode/setgetdata/app/public/map/xby/4/6/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/11.png b/developedcode/setgetdata/app/public/map/xby/4/6/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/12.png b/developedcode/setgetdata/app/public/map/xby/4/6/12.png new file mode 100644 index 0000000..f8fa8d8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/13.png b/developedcode/setgetdata/app/public/map/xby/4/6/13.png new file mode 100644 index 0000000..7051195 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/14.png b/developedcode/setgetdata/app/public/map/xby/4/6/14.png new file mode 100644 index 0000000..fff1047 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/15.png b/developedcode/setgetdata/app/public/map/xby/4/6/15.png new file mode 100644 index 0000000..4df898f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/16.png b/developedcode/setgetdata/app/public/map/xby/4/6/16.png new file mode 100644 index 0000000..5cc259c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/17.png b/developedcode/setgetdata/app/public/map/xby/4/6/17.png new file mode 100644 index 0000000..77c6e9d Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/18.png b/developedcode/setgetdata/app/public/map/xby/4/6/18.png new file mode 100644 index 0000000..37059e9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/19.png b/developedcode/setgetdata/app/public/map/xby/4/6/19.png new file mode 100644 index 0000000..da5ddc9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/2.png b/developedcode/setgetdata/app/public/map/xby/4/6/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/20.png b/developedcode/setgetdata/app/public/map/xby/4/6/20.png new file mode 100644 index 0000000..9216940 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/21.png b/developedcode/setgetdata/app/public/map/xby/4/6/21.png new file mode 100644 index 0000000..a15435e Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/22.png b/developedcode/setgetdata/app/public/map/xby/4/6/22.png new file mode 100644 index 0000000..5b126bf Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/23.png b/developedcode/setgetdata/app/public/map/xby/4/6/23.png new file mode 100644 index 0000000..c2c7629 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/24.png b/developedcode/setgetdata/app/public/map/xby/4/6/24.png new file mode 100644 index 0000000..7d74ed1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/3.png b/developedcode/setgetdata/app/public/map/xby/4/6/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/4.png b/developedcode/setgetdata/app/public/map/xby/4/6/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/5.png b/developedcode/setgetdata/app/public/map/xby/4/6/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/6.png b/developedcode/setgetdata/app/public/map/xby/4/6/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/7.png b/developedcode/setgetdata/app/public/map/xby/4/6/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/8.png b/developedcode/setgetdata/app/public/map/xby/4/6/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/6/9.png b/developedcode/setgetdata/app/public/map/xby/4/6/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/6/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/0.png b/developedcode/setgetdata/app/public/map/xby/4/7/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/1.png b/developedcode/setgetdata/app/public/map/xby/4/7/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/10.png b/developedcode/setgetdata/app/public/map/xby/4/7/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/11.png b/developedcode/setgetdata/app/public/map/xby/4/7/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/12.png b/developedcode/setgetdata/app/public/map/xby/4/7/12.png new file mode 100644 index 0000000..40be8cf Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/13.png b/developedcode/setgetdata/app/public/map/xby/4/7/13.png new file mode 100644 index 0000000..6bcbda0 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/14.png b/developedcode/setgetdata/app/public/map/xby/4/7/14.png new file mode 100644 index 0000000..c1f2021 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/15.png b/developedcode/setgetdata/app/public/map/xby/4/7/15.png new file mode 100644 index 0000000..2cea398 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/16.png b/developedcode/setgetdata/app/public/map/xby/4/7/16.png new file mode 100644 index 0000000..8bac8db Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/17.png b/developedcode/setgetdata/app/public/map/xby/4/7/17.png new file mode 100644 index 0000000..951d695 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/18.png b/developedcode/setgetdata/app/public/map/xby/4/7/18.png new file mode 100644 index 0000000..8a18c02 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/19.png b/developedcode/setgetdata/app/public/map/xby/4/7/19.png new file mode 100644 index 0000000..192e129 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/2.png b/developedcode/setgetdata/app/public/map/xby/4/7/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/20.png b/developedcode/setgetdata/app/public/map/xby/4/7/20.png new file mode 100644 index 0000000..d7667a3 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/21.png b/developedcode/setgetdata/app/public/map/xby/4/7/21.png new file mode 100644 index 0000000..84968f4 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/22.png b/developedcode/setgetdata/app/public/map/xby/4/7/22.png new file mode 100644 index 0000000..b635f58 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/23.png b/developedcode/setgetdata/app/public/map/xby/4/7/23.png new file mode 100644 index 0000000..ac7d494 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/24.png b/developedcode/setgetdata/app/public/map/xby/4/7/24.png new file mode 100644 index 0000000..4f87d03 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/3.png b/developedcode/setgetdata/app/public/map/xby/4/7/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/4.png b/developedcode/setgetdata/app/public/map/xby/4/7/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/5.png b/developedcode/setgetdata/app/public/map/xby/4/7/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/6.png b/developedcode/setgetdata/app/public/map/xby/4/7/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/7.png b/developedcode/setgetdata/app/public/map/xby/4/7/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/8.png b/developedcode/setgetdata/app/public/map/xby/4/7/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/7/9.png b/developedcode/setgetdata/app/public/map/xby/4/7/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/7/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/0.png b/developedcode/setgetdata/app/public/map/xby/4/8/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/1.png b/developedcode/setgetdata/app/public/map/xby/4/8/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/10.png b/developedcode/setgetdata/app/public/map/xby/4/8/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/11.png b/developedcode/setgetdata/app/public/map/xby/4/8/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/12.png b/developedcode/setgetdata/app/public/map/xby/4/8/12.png new file mode 100644 index 0000000..aa6b7a0 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/13.png b/developedcode/setgetdata/app/public/map/xby/4/8/13.png new file mode 100644 index 0000000..87255dc Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/14.png b/developedcode/setgetdata/app/public/map/xby/4/8/14.png new file mode 100644 index 0000000..45289ca Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/15.png b/developedcode/setgetdata/app/public/map/xby/4/8/15.png new file mode 100644 index 0000000..f84b9ce Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/16.png b/developedcode/setgetdata/app/public/map/xby/4/8/16.png new file mode 100644 index 0000000..75c98bd Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/17.png b/developedcode/setgetdata/app/public/map/xby/4/8/17.png new file mode 100644 index 0000000..0700235 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/18.png b/developedcode/setgetdata/app/public/map/xby/4/8/18.png new file mode 100644 index 0000000..ec48172 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/19.png b/developedcode/setgetdata/app/public/map/xby/4/8/19.png new file mode 100644 index 0000000..c45812b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/2.png b/developedcode/setgetdata/app/public/map/xby/4/8/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/20.png b/developedcode/setgetdata/app/public/map/xby/4/8/20.png new file mode 100644 index 0000000..2dfcdc1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/21.png b/developedcode/setgetdata/app/public/map/xby/4/8/21.png new file mode 100644 index 0000000..d875664 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/22.png b/developedcode/setgetdata/app/public/map/xby/4/8/22.png new file mode 100644 index 0000000..e03e713 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/23.png b/developedcode/setgetdata/app/public/map/xby/4/8/23.png new file mode 100644 index 0000000..4aaf75d Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/24.png b/developedcode/setgetdata/app/public/map/xby/4/8/24.png new file mode 100644 index 0000000..7a9119f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/3.png b/developedcode/setgetdata/app/public/map/xby/4/8/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/4.png b/developedcode/setgetdata/app/public/map/xby/4/8/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/5.png b/developedcode/setgetdata/app/public/map/xby/4/8/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/6.png b/developedcode/setgetdata/app/public/map/xby/4/8/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/7.png b/developedcode/setgetdata/app/public/map/xby/4/8/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/8.png b/developedcode/setgetdata/app/public/map/xby/4/8/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/8/9.png b/developedcode/setgetdata/app/public/map/xby/4/8/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/8/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/0.png b/developedcode/setgetdata/app/public/map/xby/4/9/0.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/1.png b/developedcode/setgetdata/app/public/map/xby/4/9/1.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/10.png b/developedcode/setgetdata/app/public/map/xby/4/9/10.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/10.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/11.png b/developedcode/setgetdata/app/public/map/xby/4/9/11.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/11.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/12.png b/developedcode/setgetdata/app/public/map/xby/4/9/12.png new file mode 100644 index 0000000..27ff43b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/12.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/13.png b/developedcode/setgetdata/app/public/map/xby/4/9/13.png new file mode 100644 index 0000000..d7dffcb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/13.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/14.png b/developedcode/setgetdata/app/public/map/xby/4/9/14.png new file mode 100644 index 0000000..2857edb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/14.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/15.png b/developedcode/setgetdata/app/public/map/xby/4/9/15.png new file mode 100644 index 0000000..87b429c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/15.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/16.png b/developedcode/setgetdata/app/public/map/xby/4/9/16.png new file mode 100644 index 0000000..1447ac3 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/16.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/17.png b/developedcode/setgetdata/app/public/map/xby/4/9/17.png new file mode 100644 index 0000000..3adafd8 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/17.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/18.png b/developedcode/setgetdata/app/public/map/xby/4/9/18.png new file mode 100644 index 0000000..dfa1154 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/18.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/19.png b/developedcode/setgetdata/app/public/map/xby/4/9/19.png new file mode 100644 index 0000000..3255a12 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/19.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/2.png b/developedcode/setgetdata/app/public/map/xby/4/9/2.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/20.png b/developedcode/setgetdata/app/public/map/xby/4/9/20.png new file mode 100644 index 0000000..76f8204 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/20.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/21.png b/developedcode/setgetdata/app/public/map/xby/4/9/21.png new file mode 100644 index 0000000..c224ade Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/21.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/22.png b/developedcode/setgetdata/app/public/map/xby/4/9/22.png new file mode 100644 index 0000000..238b3f2 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/22.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/23.png b/developedcode/setgetdata/app/public/map/xby/4/9/23.png new file mode 100644 index 0000000..822c32c Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/23.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/24.png b/developedcode/setgetdata/app/public/map/xby/4/9/24.png new file mode 100644 index 0000000..c49313b Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/24.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/3.png b/developedcode/setgetdata/app/public/map/xby/4/9/3.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/4.png b/developedcode/setgetdata/app/public/map/xby/4/9/4.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/4.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/5.png b/developedcode/setgetdata/app/public/map/xby/4/9/5.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/5.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/6.png b/developedcode/setgetdata/app/public/map/xby/4/9/6.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/6.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/7.png b/developedcode/setgetdata/app/public/map/xby/4/9/7.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/7.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/8.png b/developedcode/setgetdata/app/public/map/xby/4/9/8.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/8.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/4/9/9.png b/developedcode/setgetdata/app/public/map/xby/4/9/9.png new file mode 100644 index 0000000..371fcb1 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/4/9/9.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/layer_0.png b/developedcode/setgetdata/app/public/map/xby/layer_0.png new file mode 100644 index 0000000..2ef3adb Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/layer_0.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/layer_1.png b/developedcode/setgetdata/app/public/map/xby/layer_1.png new file mode 100644 index 0000000..ebc992f Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/layer_1.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/layer_2.png b/developedcode/setgetdata/app/public/map/xby/layer_2.png new file mode 100644 index 0000000..ae4a3a9 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/layer_2.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/layer_3.png b/developedcode/setgetdata/app/public/map/xby/layer_3.png new file mode 100644 index 0000000..349d771 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/layer_3.png differ diff --git a/developedcode/setgetdata/app/public/map/xby/layer_4.png b/developedcode/setgetdata/app/public/map/xby/layer_4.png new file mode 100644 index 0000000..fe63851 Binary files /dev/null and b/developedcode/setgetdata/app/public/map/xby/layer_4.png differ diff --git a/developedcode/setgetdata/app/public/task/xby/ede2a4d227b81d36/robot4inspection/routeList.json b/developedcode/setgetdata/app/public/task/xby/ede2a4d227b81d36/robot4inspection/routeList.json new file mode 100644 index 0000000..37d1cee --- /dev/null +++ b/developedcode/setgetdata/app/public/task/xby/ede2a4d227b81d36/robot4inspection/routeList.json @@ -0,0 +1,136 @@ +{ + "pid": "robot4inspection", + "did": "ede2a4d227b81d36", + "routeList": [ + { + "map": "xby", + "path": "广场3圈", + "coord_type": "local", + "cron": "", + "coord": [ + [39.68, 5.79], + [27.06, 39.21], + [11.43, 2.91], + [24.66, -27.04] + ], + "plan": ["route", "route", "route", "route"], + "repeate": 3 + }, + { + "map": "xby", + "path": "行政楼3圈", + "coord_type": "local", + "cron": "", + "coord": [ + [74.38, 2.04], + [56.3, 38.96], + [39.67, 4.39], + [56.83, -33.16] + ], + "plan": ["route", "route", "route", "route"], + "repeate": 3 + }, + { + "map": "xby", + "path": "技术楼3圈", + "coord_type": "local", + "cron": "", + "coord": [ + [95.4, -33.32], + [121.82, 9.98], + [96.69, 38.87], + [74.38, 0.71] + ], + "plan": ["route", "route", "route", "route"], + "repeate": 3 + }, + { + "map": "xby", + "path": "一车间3圈", + "coord_type": "local", + "cron": "", + "coord": [ + [74.53, 76.73], + [94.94, 120.5], + [122.18, 77.74], + [99.52, 38.88] + ], + "plan": ["route", "route", "route", "route"], + "repeate": 3 + }, + { + "map": "xby", + "path": "全厂3圈", + "coord_type": "local", + "cron": "", + "coord": [ + [64.49, -33.23], + [74.38, 1.73], + [99.05, 38.88], + [121.64, -2.67], + [95.57, -33.32], + [74.37, 3.35], + [95.57, 38.86], + [122.2, 81.56], + [102.53, 120.61], + [74.55, 81.08], + [57.51, 38.95], + [39.69, 6.14], + [48.95, -33.09] + ], + "plan": [ + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route" + ], + "repeate": 3 + }, + { + "map": "xby", + "path": "全厂循环", + "coord_type": "local", + "cron": "", + "coord": [ + [64.49, -33.23], + [74.38, 1.73], + [99.05, 38.88], + [121.64, -2.67], + [95.57, -33.32], + [74.37, 3.35], + [95.57, 38.86], + [122.2, 81.56], + [102.53, 120.61], + [74.55, 81.08], + [57.51, 38.95], + [39.69, 6.14], + [48.95, -33.09] + ], + "plan": [ + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route", + "route" + ], + "repeate": 100 + } + ] +} diff --git a/developedcode/setgetdata/app/router.js b/developedcode/setgetdata/app/router.js new file mode 100644 index 0000000..8558b81 --- /dev/null +++ b/developedcode/setgetdata/app/router.js @@ -0,0 +1,18 @@ +"use strict"; + +/** + * @param {Egg.Application} app - egg application + */ +module.exports = (app) => { + const { router, controller } = app; + //设置收藏数据 + router.post('/self/setRouterFav', controller.home.setRouterFav); + //获取收藏数据 + router.post("/self/getRouterFav", controller.home.getRouterFav); + //获取瓦片地图 + router.get("/self/:mapName/:z/:x/:y", controller.home.getMapPng); + //获取文件 + router.get("/self/getFile", controller.home.getFile); + + +}; diff --git a/developedcode/setgetdata/app/service/home.js b/developedcode/setgetdata/app/service/home.js new file mode 100644 index 0000000..63b988e --- /dev/null +++ b/developedcode/setgetdata/app/service/home.js @@ -0,0 +1,39 @@ +const fs = require("fs") +const _ = require("lodash"); +const Service = require("egg").Service; +class HomeService extends Service { + //设置收藏数据 + async setRouterFav(params) { + let { ctx } = this + let pathStr = `${ctx.app.baseDir}/app/public/task/${_.get(params, ["routeList", 0, "map"])}/${params.did}/${params.pid}` + fs.mkdirSync(pathStr, { recursive: true, }) + fs.writeFileSync(`${pathStr}/routeList.json`, JSON.stringify(params, null, 2)) + return { haserror: false, msg: `${pathStr}/routeList.json:成功写入。` } + } + //获取收藏数据 + async getRouterFav(params) { + let { ctx } = this + try { + let pathStr = `${ctx.app.baseDir}/app/public/task/${_.get(params, ["mapName"])}/${params.did}/${params.pid}/routeList.json` + let readResult = fs.readFileSync(pathStr, { encoding: "utf8" }) + return readResult + } catch (error) { + return { + ...params, + routeList: [] + } + } + } + //获取瓦片地图 + async getMapPng(params) { + let { ctx } = this + let pathObj = _.drop(_.compact(_.split(params.url, "/"))) + let z = parseInt(pathObj[1]) - 1 + let y = parseInt(pathObj[2]) + let x = parseInt(pathObj[3]) + let pngPath = `${ctx.app.baseDir}/app/public/map/${pathObj[0]}/${z}/${y}/${x}.png` + return pngPath + } +} + +module.exports = HomeService; diff --git a/developedcode/setgetdata/config/config.default.js b/developedcode/setgetdata/config/config.default.js new file mode 100644 index 0000000..5c90389 --- /dev/null +++ b/developedcode/setgetdata/config/config.default.js @@ -0,0 +1,45 @@ +/* eslint valid-jsdoc: "off" */ + +"use strict"; + +/** + * @param {Egg.EggAppInfo} appInfo app info + */ +module.exports = (appInfo) => { + /** + * built-in config + * @type {Egg.EggAppConfig} + **/ + const config = (exports = {}); + + // use for cookie sign key, should change to your own and keep security + config.keys = appInfo.name + "_1687851227654_4638"; + config.cookie = ""; + config.duplicateReq = 0; + // add your middleware config here + config.middleware = []; + config.cluster = { + listen: { + port: 9001, + }, + }; + // add your user config here + const userConfig = { + // myAppName: 'egg', + }; + config.cors = { + //允许跨域的网址,*表示所有网址都可以跨域请求文件资源,也可以指定域名 + origin: "*", + allowMethods: "POST,GET", + }; + config.security = { + csrf: { + enable: false, + }, + }; + + return { + ...config, + ...userConfig, + }; +}; diff --git a/developedcode/setgetdata/config/plugin.js b/developedcode/setgetdata/config/plugin.js new file mode 100644 index 0000000..e891d1d --- /dev/null +++ b/developedcode/setgetdata/config/plugin.js @@ -0,0 +1,17 @@ +"use strict"; + +/** @type Egg.EggPlugin */ +module.exports = { + // had enabled by egg + // static: { + // enable: true, + // } + cors: { + enable: true, + package: 'egg-cors', + }, + downloader: { + enable: true, + package: 'egg-downloader', + } +}; diff --git a/developedcode/setgetdata/jsconfig.json b/developedcode/setgetdata/jsconfig.json new file mode 100644 index 0000000..1bbed3f --- /dev/null +++ b/developedcode/setgetdata/jsconfig.json @@ -0,0 +1,5 @@ +{ + "include": [ + "**/*" + ] +} \ No newline at end of file diff --git a/developedcode/setgetdata/package.json b/developedcode/setgetdata/package.json new file mode 100644 index 0000000..d7c5720 --- /dev/null +++ b/developedcode/setgetdata/package.json @@ -0,0 +1,45 @@ +{ + "name": "setgetdata", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "cnpm": "^9.4.0", + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-downloader": "^1.0.5", + "egg-scripts": "^2", + "lodash": "^4.17.21" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-setgetdata", + "stop": "egg-scripts stop --title=egg-server-setgetdata", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "npmi": "npm i" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" +} diff --git a/developedcode/setgetdata/run/agent_config.json b/developedcode/setgetdata/run/agent_config.json new file mode 100644 index 0000000..e187412 --- /dev/null +++ b/developedcode/setgetdata/run/agent_config.json @@ -0,0 +1,565 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true, + "logValue": true + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": false, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "rotateWhenInvalid": false, + "supportedRequests": [ + { + "path": {}, + "methods": [ + "POST", + "PATCH", + "DELETE", + "PUT", + "CONNECT" + ] + } + ], + "refererWhiteList": [], + "cookieOptions": { + "signed": false + } + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true + }, + "methodnoallow": { + "enable": true + }, + "noopen": { + "enable": true + }, + "nosniff": { + "enable": true + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "ipExceptionList": null, + "hostnameExceptionList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y" + }, + "watcher": { + "type": "default", + "eventSources": { + "default": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "defaultParamCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": "100kb", + "fields": 10, + "fileSize": "10mb", + "files": 10, + "fileExtensions": [], + "whitelist": null, + "allowArrayField": false, + "tmpdir": "C:\\Users\\wurenche\\AppData\\Local\\Temp\\egg-multipart-tmp\\setgetdata", + "cleanSchedule": { + "cron": "0 30 4 * * *", + "disable": false + } + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\app\\public", + "dynamic": true, + "preload": false, + "buffer": true, + "maxFiles": 1000, + "maxAge": 31536000 + }, + "view": { + "root": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\app\\view", + "cache": true, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "cors": { + "origin": "*", + "allowMethods": "POST,GET" + }, + "downloader": { + "content_type": "application/octet-stream" + }, + "env": "prod", + "name": "setgetdata", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "setgetdata", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "cnpm": "^9.4.0", + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-downloader": "^1.0.5", + "egg-scripts": "^2", + "lodash": "^4.17.21" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-setgetdata", + "stop": "egg-scripts stop --title=egg-server-setgetdata", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "npmi": "npm i" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "baseDir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata", + "HOME": "C:\\Users\\wurenche", + "rundir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\run", + "dump": { + "ignore": "", + "timing": { + "slowBootActionMinDuration": 5000 + } + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "", + "cacheControl": "public, max-age=2592000" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "onerror": "" + }, + "logger": { + "dir": "C:\\Users\\wurenche\\logs\\setgetdata", + "encoding": "utf8", + "env": "prod", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": true, + "outputJSON": false, + "buffer": true, + "appLogName": "setgetdata-web.log", + "coreLogName": "egg-web.log", + "agentLogName": "egg-agent.log", + "errorLogName": "common-error.log", + "coreLogger": {}, + "allowDebugAtProd": false, + "enablePerformanceTimer": false, + "enableFastContextLogger": false, + "type": "agent", + "localStorage": "" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "useHttpClientNext": false + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "meta", + "siteFile", + "notfound", + "bodyParser", + "overrideMethod" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 9001, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "cookie": "", + "duplicateReq": 0, + "middleware": [], + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware" + }, + "plugins": { + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror", + "version": "2.2.0" + }, + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session", + "version": "3.3.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher", + "version": "3.1.1" + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart", + "version": "3.4.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security", + "version": "3.6.0" + }, + "development": { + "enable": false, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-development", + "version": "3.0.0" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule", + "version": "4.0.1", + "dependents": [ + "logrotator" + ] + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static", + "version": "2.3.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view", + "version": "2.1.4" + }, + "cors": { + "enable": true, + "package": "egg-cors", + "name": "cors", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-cors", + "version": "2.2.4" + }, + "downloader": { + "enable": true, + "package": "egg-downloader", + "name": "downloader", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-downloader", + "version": "1.0.5" + } + }, + "appInfo": { + "name": "setgetdata", + "baseDir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata", + "env": "prod", + "scope": "", + "HOME": "C:\\Users\\wurenche", + "pkg": { + "name": "setgetdata", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "cnpm": "^9.4.0", + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-downloader": "^1.0.5", + "egg-scripts": "^2", + "lodash": "^4.17.21" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-setgetdata", + "stop": "egg-scripts stop --title=egg-server-setgetdata", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "npmi": "npm i" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "root": "C:\\Users\\wurenche" + } +} \ No newline at end of file diff --git a/developedcode/setgetdata/run/agent_config_meta.json b/developedcode/setgetdata/run/agent_config_meta.json new file mode 100644 index 0000000..d2f7cd9 --- /dev/null +++ b/developedcode/setgetdata/run/agent_config_meta.json @@ -0,0 +1,311 @@ +{ + "keys": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "cookie": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "duplicateReq": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "middleware": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "cluster": { + "listen": { + "port": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "hostname": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + } + }, + "cors": { + "origin": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "allowMethods": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js" + }, + "security": { + "csrf": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "useSession": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "rotateWhenInvalid": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "supportedRequests": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "cookieOptions": { + "signed": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "domainWhiteList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "xframe": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "maxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "policy": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "ipExceptionList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "hostnameExceptionList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "session": { + "maxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "key": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "logValue": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js" + }, + "helper": { + "shtml": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\config\\config.default.js", + "eventSources": { + "default": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultParamCharset": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "allowArrayField": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "disable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "logrotator": { + "filesRotateByHour": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "dir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "preload": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.prod.js", + "maxFiles": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "maxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.prod.js" + }, + "view": { + "root": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "cache": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "defaultExtension": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js" + }, + "downloader": { + "content_type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-downloader\\config\\config.default.js" + }, + "env": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "name": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "cookies": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "proxy": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "version": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "description": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "private": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg": { + "declarations": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "dependencies": { + "cnpm": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-cors": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-downloader": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "lodash": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "egg-bin": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-mock": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "eslint": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "eslint-config-egg": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "stop": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dev": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "npmPro": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "build": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "npmi": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "repository": { + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "url": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "author": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "license": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "HOME": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "rundir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dump": { + "ignore": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "timing": { + "slowBootActionMinDuration": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + } + }, + "confusedConfigurations": { + "bodyparser": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "notFound": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "sitefile": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "middlewares": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "httpClient": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "cacheControl": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "formLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "textLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "strict": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "depth": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "logger": { + "dir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "env": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "level": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "outputJSON": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "buffer": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "appLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "coreLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "agentLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "errorLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "coreLogger": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "allowDebugAtProd": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "enablePerformanceTimer": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "enableFastContextLogger": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "useHttpClientNext": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "meta": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "logging": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "clusterClient": { + "maxWaitTime": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" +} \ No newline at end of file diff --git a/developedcode/setgetdata/run/agent_timing_1836.json b/developedcode/setgetdata/run/agent_timing_1836.json new file mode 100644 index 0000000..6fc348f --- /dev/null +++ b/developedcode/setgetdata/run/agent_timing_1836.json @@ -0,0 +1,386 @@ +[ + { + "name": "Process Start", + "start": 1720504677941, + "end": 1720504679093, + "duration": 1152, + "pid": 1836, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504679093, + "end": 1720504679596, + "duration": 503, + "pid": 1836, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504679102, + "end": 1720504679108, + "duration": 6, + "pid": 1836, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504679109, + "end": 1720504679120, + "duration": 11, + "pid": 1836, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504679109, + "end": 1720504679110, + "duration": 1, + "pid": 1836, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504679111, + "end": 1720504679111, + "duration": 0, + "pid": 1836, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504679111, + "end": 1720504679112, + "duration": 1, + "pid": 1836, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504679113, + "end": 1720504679113, + "duration": 0, + "pid": 1836, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504679113, + "end": 1720504679113, + "duration": 0, + "pid": 1836, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504679113, + "end": 1720504679114, + "duration": 1, + "pid": 1836, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504679114, + "end": 1720504679114, + "duration": 0, + "pid": 1836, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504679114, + "end": 1720504679115, + "duration": 1, + "pid": 1836, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504679115, + "end": 1720504679115, + "duration": 0, + "pid": 1836, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1720504679115, + "end": 1720504679116, + "duration": 1, + "pid": 1836, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504679116, + "end": 1720504679116, + "duration": 0, + "pid": 1836, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1720504679116, + "end": 1720504679116, + "duration": 0, + "pid": 1836, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1720504679116, + "end": 1720504679117, + "duration": 1, + "pid": 1836, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-cors/config/config.default.js", + "start": 1720504679117, + "end": 1720504679117, + "duration": 0, + "pid": 1836, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg-downloader/config/config.default.js", + "start": 1720504679117, + "end": 1720504679117, + "duration": 0, + "pid": 1836, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg/config/config.default.js", + "start": 1720504679117, + "end": 1720504679118, + "duration": 1, + "pid": 1836, + "index": 19 + }, + { + "name": "Require(16) config/config.default.js", + "start": 1720504679118, + "end": 1720504679118, + "duration": 0, + "pid": 1836, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-security/config/config.local.js", + "start": 1720504679119, + "end": 1720504679119, + "duration": 0, + "pid": 1836, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg-watcher/config/config.local.js", + "start": 1720504679119, + "end": 1720504679119, + "duration": 0, + "pid": 1836, + "index": 22 + }, + { + "name": "Require(19) node_modules/egg-view/config/config.local.js", + "start": 1720504679120, + "end": 1720504679120, + "duration": 0, + "pid": 1836, + "index": 23 + }, + { + "name": "Require(20) node_modules/egg/config/config.local.js", + "start": 1720504679120, + "end": 1720504679120, + "duration": 0, + "pid": 1836, + "index": 24 + }, + { + "name": "Load extend/agent.js", + "start": 1720504679121, + "end": 1720504679284, + "duration": 163, + "pid": 1836, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-security/app/extend/agent.js", + "start": 1720504679121, + "end": 1720504679122, + "duration": 1, + "pid": 1836, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-schedule/app/extend/agent.js", + "start": 1720504679123, + "end": 1720504679264, + "duration": 141, + "pid": 1836, + "index": 27 + }, + { + "name": "Require(23) node_modules/egg-logrotator/app/extend/agent.js", + "start": 1720504679264, + "end": 1720504679282, + "duration": 18, + "pid": 1836, + "index": 28 + }, + { + "name": "Load extend/context.js", + "start": 1720504679284, + "end": 1720504679416, + "duration": 132, + "pid": 1836, + "index": 29 + }, + { + "name": "Require(24) node_modules/egg-security/app/extend/context.js", + "start": 1720504679284, + "end": 1720504679326, + "duration": 42, + "pid": 1836, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504679327, + "end": 1720504679335, + "duration": 8, + "pid": 1836, + "index": 31 + }, + { + "name": "Require(26) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504679336, + "end": 1720504679336, + "duration": 0, + "pid": 1836, + "index": 32 + }, + { + "name": "Require(27) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504679336, + "end": 1720504679411, + "duration": 75, + "pid": 1836, + "index": 33 + }, + { + "name": "Require(28) node_modules/egg-view/app/extend/context.js", + "start": 1720504679412, + "end": 1720504679413, + "duration": 1, + "pid": 1836, + "index": 34 + }, + { + "name": "Require(29) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504679413, + "end": 1720504679414, + "duration": 1, + "pid": 1836, + "index": 35 + }, + { + "name": "Require(30) node_modules/egg/app/extend/context.js", + "start": 1720504679414, + "end": 1720504679414, + "duration": 0, + "pid": 1836, + "index": 36 + }, + { + "name": "Load agent.js", + "start": 1720504679416, + "end": 1720504679482, + "duration": 66, + "pid": 1836, + "index": 37 + }, + { + "name": "Require(31) node_modules/egg-security/agent.js", + "start": 1720504679416, + "end": 1720504679416, + "duration": 0, + "pid": 1836, + "index": 38 + }, + { + "name": "Require(32) node_modules/egg-onerror/agent.js", + "start": 1720504679416, + "end": 1720504679417, + "duration": 1, + "pid": 1836, + "index": 39 + }, + { + "name": "Require(33) node_modules/egg-watcher/agent.js", + "start": 1720504679417, + "end": 1720504679431, + "duration": 14, + "pid": 1836, + "index": 40 + }, + { + "name": "Require(34) node_modules/egg-schedule/agent.js", + "start": 1720504679431, + "end": 1720504679432, + "duration": 1, + "pid": 1836, + "index": 41 + }, + { + "name": "Require(35) node_modules/egg-development/agent.js", + "start": 1720504679433, + "end": 1720504679481, + "duration": 48, + "pid": 1836, + "index": 42 + }, + { + "name": "Require(36) node_modules/egg-logrotator/agent.js", + "start": 1720504679481, + "end": 1720504679481, + "duration": 0, + "pid": 1836, + "index": 43 + }, + { + "name": "Require(37) node_modules/egg/agent.js", + "start": 1720504679482, + "end": 1720504679482, + "duration": 0, + "pid": 1836, + "index": 44 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504679490, + "end": 1720504679580, + "duration": 90, + "pid": 1836, + "index": 45 + }, + { + "name": "Before Start in node_modules/egg-schedule/agent.js:12:9", + "start": 1720504679491, + "end": 1720504679532, + "duration": 41, + "pid": 1836, + "index": 46 + }, + { + "name": "Before Start in node_modules/egg-development/agent.js:8:9", + "start": 1720504679491, + "end": 1720504679596, + "duration": 105, + "pid": 1836, + "index": 47 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/agent_timing_9808.json b/developedcode/setgetdata/run/agent_timing_9808.json new file mode 100644 index 0000000..2a86f1d --- /dev/null +++ b/developedcode/setgetdata/run/agent_timing_9808.json @@ -0,0 +1,338 @@ +[ + { + "name": "Process Start", + "start": 1720504857081, + "end": 1720504857478, + "duration": 397, + "pid": 9808, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504857479, + "end": 1720504857594, + "duration": 115, + "pid": 9808, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504857487, + "end": 1720504857497, + "duration": 10, + "pid": 9808, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504857497, + "end": 1720504857508, + "duration": 11, + "pid": 9808, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504857497, + "end": 1720504857497, + "duration": 0, + "pid": 9808, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504857498, + "end": 1720504857498, + "duration": 0, + "pid": 9808, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504857499, + "end": 1720504857499, + "duration": 0, + "pid": 9808, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504857499, + "end": 1720504857500, + "duration": 1, + "pid": 9808, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504857500, + "end": 1720504857500, + "duration": 0, + "pid": 9808, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504857500, + "end": 1720504857500, + "duration": 0, + "pid": 9808, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504857501, + "end": 1720504857501, + "duration": 0, + "pid": 9808, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504857501, + "end": 1720504857501, + "duration": 0, + "pid": 9808, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504857502, + "end": 1720504857502, + "duration": 0, + "pid": 9808, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504857502, + "end": 1720504857502, + "duration": 0, + "pid": 9808, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504857504, + "end": 1720504857504, + "duration": 0, + "pid": 9808, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504857504, + "end": 1720504857504, + "duration": 0, + "pid": 9808, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504857505, + "end": 1720504857505, + "duration": 0, + "pid": 9808, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504857505, + "end": 1720504857505, + "duration": 0, + "pid": 9808, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504857506, + "end": 1720504857506, + "duration": 0, + "pid": 9808, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504857507, + "end": 1720504857507, + "duration": 0, + "pid": 9808, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504857507, + "end": 1720504857508, + "duration": 1, + "pid": 9808, + "index": 20 + }, + { + "name": "Load extend/agent.js", + "start": 1720504857509, + "end": 1720504857539, + "duration": 30, + "pid": 9808, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-security/app/extend/agent.js", + "start": 1720504857509, + "end": 1720504857510, + "duration": 1, + "pid": 9808, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-schedule/app/extend/agent.js", + "start": 1720504857511, + "end": 1720504857533, + "duration": 22, + "pid": 9808, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-logrotator/app/extend/agent.js", + "start": 1720504857534, + "end": 1720504857537, + "duration": 3, + "pid": 9808, + "index": 24 + }, + { + "name": "Load extend/context.js", + "start": 1720504857539, + "end": 1720504857559, + "duration": 20, + "pid": 9808, + "index": 25 + }, + { + "name": "Require(20) node_modules/egg-security/app/extend/context.js", + "start": 1720504857539, + "end": 1720504857544, + "duration": 5, + "pid": 9808, + "index": 26 + }, + { + "name": "Require(21) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504857544, + "end": 1720504857545, + "duration": 1, + "pid": 9808, + "index": 27 + }, + { + "name": "Require(22) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504857546, + "end": 1720504857546, + "duration": 0, + "pid": 9808, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504857546, + "end": 1720504857555, + "duration": 9, + "pid": 9808, + "index": 29 + }, + { + "name": "Require(24) node_modules/egg-view/app/extend/context.js", + "start": 1720504857556, + "end": 1720504857556, + "duration": 0, + "pid": 9808, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504857557, + "end": 1720504857557, + "duration": 0, + "pid": 9808, + "index": 31 + }, + { + "name": "Require(26) node_modules/egg/app/extend/context.js", + "start": 1720504857557, + "end": 1720504857558, + "duration": 1, + "pid": 9808, + "index": 32 + }, + { + "name": "Load agent.js", + "start": 1720504857559, + "end": 1720504857566, + "duration": 7, + "pid": 9808, + "index": 33 + }, + { + "name": "Require(27) node_modules/egg-security/agent.js", + "start": 1720504857559, + "end": 1720504857559, + "duration": 0, + "pid": 9808, + "index": 34 + }, + { + "name": "Require(28) node_modules/egg-onerror/agent.js", + "start": 1720504857560, + "end": 1720504857560, + "duration": 0, + "pid": 9808, + "index": 35 + }, + { + "name": "Require(29) node_modules/egg-watcher/agent.js", + "start": 1720504857560, + "end": 1720504857564, + "duration": 4, + "pid": 9808, + "index": 36 + }, + { + "name": "Require(30) node_modules/egg-schedule/agent.js", + "start": 1720504857564, + "end": 1720504857564, + "duration": 0, + "pid": 9808, + "index": 37 + }, + { + "name": "Require(31) node_modules/egg-logrotator/agent.js", + "start": 1720504857565, + "end": 1720504857565, + "duration": 0, + "pid": 9808, + "index": 38 + }, + { + "name": "Require(32) node_modules/egg/agent.js", + "start": 1720504857565, + "end": 1720504857565, + "duration": 0, + "pid": 9808, + "index": 39 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504857569, + "end": 1720504857593, + "duration": 24, + "pid": 9808, + "index": 40 + }, + { + "name": "Before Start in node_modules/egg-schedule/agent.js:12:9", + "start": 1720504857570, + "end": 1720504857591, + "duration": 21, + "pid": 9808, + "index": 41 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_config.json b/developedcode/setgetdata/run/application_config.json new file mode 100644 index 0000000..e98ba06 --- /dev/null +++ b/developedcode/setgetdata/run/application_config.json @@ -0,0 +1,601 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true, + "logValue": true, + "overwrite": true, + "signed": true, + "autoCommit": true, + "encode": "", + "decode": "", + "genid": "" + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": false, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "rotateWhenInvalid": false, + "supportedRequests": [ + { + "path": {}, + "methods": [ + "POST", + "PATCH", + "DELETE", + "PUT", + "CONNECT" + ] + } + ], + "refererWhiteList": [], + "cookieOptions": { + "signed": false + } + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN", + "matching": "" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true, + "matching": "" + }, + "methodnoallow": { + "enable": true, + "matching": "" + }, + "noopen": { + "enable": true, + "matching": "" + }, + "nosniff": { + "enable": true, + "matching": "" + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block", + "matching": "" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "ipExceptionList": null, + "hostnameExceptionList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [ + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-cors\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-downloader\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\locales", + "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\locales" + ], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y", + "functionName": "__" + }, + "watcher": { + "type": "default", + "eventSources": { + "default": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "defaultParamCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": 102400, + "fields": 10, + "fileSize": 10485760, + "files": 10, + "fileExtensions": [], + "whitelist": null, + "allowArrayField": false, + "tmpdir": "C:\\Users\\wurenche\\AppData\\Local\\Temp\\egg-multipart-tmp\\setgetdata", + "cleanSchedule": { + "cron": "0 30 4 * * *", + "disable": false + }, + "checkFile": "" + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\app\\public", + "dynamic": true, + "preload": false, + "buffer": true, + "maxFiles": 1000, + "maxAge": 31536000 + }, + "view": { + "root": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\app\\view", + "cache": true, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "cors": { + "origin": "*", + "allowMethods": "POST,GET", + "hasCustomOriginHandler": true + }, + "downloader": { + "content_type": "application/octet-stream" + }, + "env": "prod", + "name": "setgetdata", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "setgetdata", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "cnpm": "^9.4.0", + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-downloader": "^1.0.5", + "egg-scripts": "^2", + "lodash": "^4.17.21" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-setgetdata", + "stop": "egg-scripts stop --title=egg-server-setgetdata", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "npmi": "npm i" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "baseDir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata", + "HOME": "C:\\Users\\wurenche", + "rundir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\run", + "dump": { + "ignore": "", + "timing": { + "slowBootActionMinDuration": 5000 + } + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "", + "cacheControl": "public, max-age=2592000" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "returnRawBody": true + }, + "logger": { + "dir": "C:\\Users\\wurenche\\logs\\setgetdata", + "encoding": "utf8", + "env": "prod", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": true, + "outputJSON": false, + "buffer": true, + "appLogName": "setgetdata-web.log", + "coreLogName": "egg-web.log", + "agentLogName": "egg-agent.log", + "errorLogName": "common-error.log", + "coreLogger": {}, + "allowDebugAtProd": false, + "enablePerformanceTimer": false, + "enableFastContextLogger": false, + "type": "application", + "localStorage": "" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "useHttpClientNext": false + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "cors", + "meta", + "siteFile", + "notfound", + "static", + "bodyParser", + "overrideMethod", + "session", + "securities", + "i18n" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 9001, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "cookie": "", + "duplicateReq": 0, + "middleware": [], + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware" + }, + "plugins": { + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror", + "version": "2.2.0" + }, + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session", + "version": "3.3.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher", + "version": "3.1.1" + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart", + "version": "3.4.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security", + "version": "3.6.0" + }, + "development": { + "enable": false, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-development", + "version": "3.0.0" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule", + "version": "4.0.1", + "dependents": [ + "logrotator" + ] + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static", + "version": "2.3.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view", + "version": "2.1.4" + }, + "cors": { + "enable": true, + "package": "egg-cors", + "name": "cors", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-cors", + "version": "2.2.4" + }, + "downloader": { + "enable": true, + "package": "egg-downloader", + "name": "downloader", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\plugin.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-downloader", + "version": "1.0.5" + } + }, + "appInfo": { + "name": "setgetdata", + "baseDir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata", + "env": "prod", + "scope": "", + "HOME": "C:\\Users\\wurenche", + "pkg": { + "name": "setgetdata", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "cnpm": "^9.4.0", + "egg": "^3", + "egg-cors": "^2.2.3", + "egg-downloader": "^1.0.5", + "egg-scripts": "^2", + "lodash": "^4.17.21" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-setgetdata", + "stop": "egg-scripts stop --title=egg-server-setgetdata", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "npmi": "npm i" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "root": "C:\\Users\\wurenche" + } +} \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_config_meta.json b/developedcode/setgetdata/run/application_config_meta.json new file mode 100644 index 0000000..d2f7cd9 --- /dev/null +++ b/developedcode/setgetdata/run/application_config_meta.json @@ -0,0 +1,311 @@ +{ + "keys": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "cookie": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "duplicateReq": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "middleware": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "cluster": { + "listen": { + "port": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "path": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "hostname": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + } + }, + "cors": { + "origin": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "allowMethods": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js" + }, + "security": { + "csrf": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\config\\config.default.js", + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "useSession": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "rotateWhenInvalid": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "supportedRequests": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "cookieOptions": { + "signed": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "domainWhiteList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "xframe": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "maxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "policy": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "ipExceptionList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "hostnameExceptionList": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "session": { + "maxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "key": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js", + "logValue": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-session\\config\\config.default.js" + }, + "helper": { + "shtml": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\config\\config.default.js", + "eventSources": { + "default": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultParamCharset": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "allowArrayField": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js", + "disable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "logrotator": { + "filesRotateByHour": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "dir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "preload": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.prod.js", + "maxFiles": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.default.js", + "maxAge": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-static\\config\\config.prod.js" + }, + "view": { + "root": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "cache": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "defaultExtension": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-view\\config\\config.default.js" + }, + "downloader": { + "content_type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg-downloader\\config\\config.default.js" + }, + "env": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "name": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "cookies": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "proxy": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "version": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "description": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "private": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg": { + "declarations": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "dependencies": { + "cnpm": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-cors": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-downloader": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "lodash": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "egg-bin": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "egg-mock": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "eslint": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "eslint-config-egg": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "stop": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dev": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "npmPro": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "build": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "npmi": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "repository": { + "type": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "url": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "author": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "license": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "HOME": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "rundir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dump": { + "ignore": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "timing": { + "slowBootActionMinDuration": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + } + }, + "confusedConfigurations": { + "bodyparser": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "notFound": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "sitefile": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "middlewares": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "httpClient": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "cacheControl": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "formLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "textLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "strict": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "depth": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "logger": { + "dir": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "env": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "level": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "outputJSON": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "buffer": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "appLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "coreLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "agentLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "errorLogName": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "coreLogger": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "allowDebugAtProd": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "enablePerformanceTimer": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "enableFastContextLogger": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "useHttpClientNext": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "meta": { + "enable": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "logging": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "clusterClient": { + "maxWaitTime": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "E:\\gongsi\\jscode\\developingcode\\公网客户端导航\\setgetdata\\node_modules\\egg\\config\\config.default.js" +} \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_11540.json b/developedcode/setgetdata/run/application_timing_11540.json new file mode 100644 index 0000000..2e2da13 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_11540.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857863, + "end": 1720504859193, + "duration": 1330, + "pid": 11540, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859194, + "end": 1720504860953, + "duration": 1759, + "pid": 11540, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 11540, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859476, + "duration": 91, + "pid": 11540, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859386, + "end": 1720504859393, + "duration": 7, + "pid": 11540, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 11540, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859407, + "end": 1720504859408, + "duration": 1, + "pid": 11540, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859412, + "end": 1720504859413, + "duration": 1, + "pid": 11540, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859416, + "duration": 2, + "pid": 11540, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859429, + "duration": 2, + "pid": 11540, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859431, + "end": 1720504859432, + "duration": 1, + "pid": 11540, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859434, + "end": 1720504859435, + "duration": 1, + "pid": 11540, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859439, + "duration": 0, + "pid": 11540, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859441, + "end": 1720504859442, + "duration": 1, + "pid": 11540, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859448, + "end": 1720504859449, + "duration": 1, + "pid": 11540, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859455, + "end": 1720504859456, + "duration": 1, + "pid": 11540, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859457, + "end": 1720504859458, + "duration": 1, + "pid": 11540, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859467, + "end": 1720504859468, + "duration": 1, + "pid": 11540, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859469, + "end": 1720504859471, + "duration": 2, + "pid": 11540, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 11540, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859475, + "end": 1720504859475, + "duration": 0, + "pid": 11540, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859477, + "end": 1720504859562, + "duration": 85, + "pid": 11540, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859479, + "end": 1720504859480, + "duration": 1, + "pid": 11540, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 11540, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 11540, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859500, + "end": 1720504859511, + "duration": 11, + "pid": 11540, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 11540, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859556, + "end": 1720504859558, + "duration": 2, + "pid": 11540, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859562, + "end": 1720504859570, + "duration": 8, + "pid": 11540, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859565, + "end": 1720504859566, + "duration": 1, + "pid": 11540, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859570, + "end": 1720504859587, + "duration": 17, + "pid": 11540, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859576, + "end": 1720504859582, + "duration": 6, + "pid": 11540, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859587, + "end": 1720504859896, + "duration": 309, + "pid": 11540, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859588, + "end": 1720504859659, + "duration": 71, + "pid": 11540, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 11540, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859703, + "end": 1720504859706, + "duration": 3, + "pid": 11540, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859708, + "end": 1720504859845, + "duration": 137, + "pid": 11540, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859856, + "end": 1720504859871, + "duration": 15, + "pid": 11540, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859877, + "end": 1720504859880, + "duration": 3, + "pid": 11540, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859892, + "duration": 7, + "pid": 11540, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859896, + "end": 1720504859991, + "duration": 95, + "pid": 11540, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859896, + "end": 1720504859986, + "duration": 90, + "pid": 11540, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859988, + "end": 1720504859989, + "duration": 1, + "pid": 11540, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859992, + "end": 1720504860218, + "duration": 226, + "pid": 11540, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859996, + "end": 1720504859996, + "duration": 0, + "pid": 11540, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859997, + "end": 1720504860004, + "duration": 7, + "pid": 11540, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860004, + "end": 1720504860069, + "duration": 65, + "pid": 11540, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860071, + "end": 1720504860105, + "duration": 34, + "pid": 11540, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860106, + "end": 1720504860187, + "duration": 81, + "pid": 11540, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860189, + "end": 1720504860193, + "duration": 4, + "pid": 11540, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860194, + "end": 1720504860202, + "duration": 8, + "pid": 11540, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860204, + "end": 1720504860206, + "duration": 2, + "pid": 11540, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860207, + "end": 1720504860208, + "duration": 1, + "pid": 11540, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860208, + "end": 1720504860209, + "duration": 1, + "pid": 11540, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860217, + "duration": 0, + "pid": 11540, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860242, + "end": 1720504860952, + "duration": 710, + "pid": 11540, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860330, + "end": 1720504860938, + "duration": 608, + "pid": 11540, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860400, + "duration": 69, + "pid": 11540, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860331, + "end": 1720504860400, + "duration": 69, + "pid": 11540, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860401, + "end": 1720504860910, + "duration": 509, + "pid": 11540, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860401, + "end": 1720504860882, + "duration": 481, + "pid": 11540, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 11540, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 11540, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 11540, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860920, + "end": 1720504860920, + "duration": 0, + "pid": 11540, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860920, + "end": 1720504860938, + "duration": 18, + "pid": 11540, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860952, + "end": 1720504860952, + "duration": 0, + "pid": 11540, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_13720.json b/developedcode/setgetdata/run/application_timing_13720.json new file mode 100644 index 0000000..f71af1e --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_13720.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857939, + "end": 1720504859193, + "duration": 1254, + "pid": 13720, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859194, + "end": 1720504860960, + "duration": 1766, + "pid": 13720, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 13720, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859386, + "end": 1720504859473, + "duration": 87, + "pid": 13720, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859394, + "duration": 7, + "pid": 13720, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 13720, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 13720, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859412, + "end": 1720504859413, + "duration": 1, + "pid": 13720, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859415, + "end": 1720504859417, + "duration": 2, + "pid": 13720, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859429, + "duration": 2, + "pid": 13720, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859431, + "end": 1720504859433, + "duration": 2, + "pid": 13720, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859434, + "end": 1720504859435, + "duration": 1, + "pid": 13720, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 13720, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859441, + "end": 1720504859442, + "duration": 1, + "pid": 13720, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859448, + "duration": 1, + "pid": 13720, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859455, + "duration": 1, + "pid": 13720, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859456, + "end": 1720504859457, + "duration": 1, + "pid": 13720, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859458, + "end": 1720504859462, + "duration": 4, + "pid": 13720, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859466, + "end": 1720504859467, + "duration": 1, + "pid": 13720, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859469, + "end": 1720504859469, + "duration": 0, + "pid": 13720, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859471, + "end": 1720504859472, + "duration": 1, + "pid": 13720, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859475, + "end": 1720504859561, + "duration": 86, + "pid": 13720, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859479, + "end": 1720504859480, + "duration": 1, + "pid": 13720, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 13720, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859483, + "end": 1720504859497, + "duration": 14, + "pid": 13720, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859498, + "end": 1720504859511, + "duration": 13, + "pid": 13720, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859554, + "duration": 42, + "pid": 13720, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859555, + "end": 1720504859557, + "duration": 2, + "pid": 13720, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859561, + "end": 1720504859568, + "duration": 7, + "pid": 13720, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859564, + "end": 1720504859565, + "duration": 1, + "pid": 13720, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859568, + "end": 1720504859581, + "duration": 13, + "pid": 13720, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859571, + "end": 1720504859574, + "duration": 3, + "pid": 13720, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859581, + "end": 1720504859894, + "duration": 313, + "pid": 13720, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859582, + "end": 1720504859660, + "duration": 78, + "pid": 13720, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 13720, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859705, + "end": 1720504859707, + "duration": 2, + "pid": 13720, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859710, + "end": 1720504859846, + "duration": 136, + "pid": 13720, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859855, + "end": 1720504859870, + "duration": 15, + "pid": 13720, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859876, + "end": 1720504859879, + "duration": 3, + "pid": 13720, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859889, + "duration": 4, + "pid": 13720, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859894, + "end": 1720504859990, + "duration": 96, + "pid": 13720, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859895, + "end": 1720504859985, + "duration": 90, + "pid": 13720, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859987, + "end": 1720504859988, + "duration": 1, + "pid": 13720, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859990, + "end": 1720504860218, + "duration": 228, + "pid": 13720, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859997, + "end": 1720504859998, + "duration": 1, + "pid": 13720, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859999, + "end": 1720504860005, + "duration": 6, + "pid": 13720, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860011, + "end": 1720504860068, + "duration": 57, + "pid": 13720, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860069, + "end": 1720504860110, + "duration": 41, + "pid": 13720, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860111, + "end": 1720504860187, + "duration": 76, + "pid": 13720, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860190, + "end": 1720504860192, + "duration": 2, + "pid": 13720, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860193, + "end": 1720504860202, + "duration": 9, + "pid": 13720, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860206, + "end": 1720504860207, + "duration": 1, + "pid": 13720, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860209, + "end": 1720504860210, + "duration": 1, + "pid": 13720, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860212, + "end": 1720504860212, + "duration": 0, + "pid": 13720, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860218, + "duration": 1, + "pid": 13720, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860250, + "end": 1720504860959, + "duration": 709, + "pid": 13720, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860333, + "end": 1720504860945, + "duration": 612, + "pid": 13720, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860333, + "end": 1720504860404, + "duration": 71, + "pid": 13720, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860334, + "end": 1720504860404, + "duration": 70, + "pid": 13720, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860404, + "end": 1720504860910, + "duration": 506, + "pid": 13720, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860404, + "end": 1720504860883, + "duration": 479, + "pid": 13720, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 13720, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 13720, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 13720, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860920, + "end": 1720504860920, + "duration": 0, + "pid": 13720, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860921, + "end": 1720504860945, + "duration": 24, + "pid": 13720, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860959, + "end": 1720504860959, + "duration": 0, + "pid": 13720, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_14644.json b/developedcode/setgetdata/run/application_timing_14644.json new file mode 100644 index 0000000..d7085e1 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_14644.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857900, + "end": 1720504859194, + "duration": 1294, + "pid": 14644, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859196, + "end": 1720504860954, + "duration": 1758, + "pid": 14644, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859276, + "end": 1720504859386, + "duration": 110, + "pid": 14644, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859386, + "end": 1720504859478, + "duration": 92, + "pid": 14644, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 14644, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 14644, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 14644, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859413, + "duration": 2, + "pid": 14644, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859415, + "end": 1720504859416, + "duration": 1, + "pid": 14644, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 14644, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859431, + "end": 1720504859432, + "duration": 1, + "pid": 14644, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859433, + "end": 1720504859434, + "duration": 1, + "pid": 14644, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 14644, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859442, + "end": 1720504859442, + "duration": 0, + "pid": 14644, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859448, + "duration": 1, + "pid": 14644, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859455, + "end": 1720504859456, + "duration": 1, + "pid": 14644, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859457, + "end": 1720504859457, + "duration": 0, + "pid": 14644, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859466, + "end": 1720504859472, + "duration": 6, + "pid": 14644, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 14644, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859475, + "end": 1720504859475, + "duration": 0, + "pid": 14644, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859477, + "end": 1720504859477, + "duration": 0, + "pid": 14644, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859480, + "end": 1720504859560, + "duration": 80, + "pid": 14644, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859481, + "duration": 0, + "pid": 14644, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859482, + "end": 1720504859484, + "duration": 2, + "pid": 14644, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859498, + "duration": 12, + "pid": 14644, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859500, + "end": 1720504859511, + "duration": 11, + "pid": 14644, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 14644, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859555, + "end": 1720504859557, + "duration": 2, + "pid": 14644, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859560, + "end": 1720504859568, + "duration": 8, + "pid": 14644, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859563, + "end": 1720504859564, + "duration": 1, + "pid": 14644, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859568, + "end": 1720504859588, + "duration": 20, + "pid": 14644, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859570, + "end": 1720504859583, + "duration": 13, + "pid": 14644, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859588, + "end": 1720504859893, + "duration": 305, + "pid": 14644, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859589, + "end": 1720504859660, + "duration": 71, + "pid": 14644, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859690, + "duration": 29, + "pid": 14644, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859692, + "end": 1720504859695, + "duration": 3, + "pid": 14644, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859696, + "end": 1720504859850, + "duration": 154, + "pid": 14644, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859855, + "end": 1720504859870, + "duration": 15, + "pid": 14644, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859875, + "end": 1720504859877, + "duration": 2, + "pid": 14644, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859887, + "duration": 2, + "pid": 14644, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859894, + "end": 1720504859996, + "duration": 102, + "pid": 14644, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859895, + "end": 1720504859991, + "duration": 96, + "pid": 14644, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859994, + "end": 1720504859994, + "duration": 0, + "pid": 14644, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859996, + "end": 1720504860218, + "duration": 222, + "pid": 14644, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859997, + "end": 1720504859998, + "duration": 1, + "pid": 14644, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859999, + "end": 1720504860005, + "duration": 6, + "pid": 14644, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860011, + "end": 1720504860069, + "duration": 58, + "pid": 14644, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860070, + "end": 1720504860109, + "duration": 39, + "pid": 14644, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860188, + "duration": 78, + "pid": 14644, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860190, + "end": 1720504860193, + "duration": 3, + "pid": 14644, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860194, + "end": 1720504860203, + "duration": 9, + "pid": 14644, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860206, + "end": 1720504860207, + "duration": 1, + "pid": 14644, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860209, + "end": 1720504860210, + "duration": 1, + "pid": 14644, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860212, + "end": 1720504860212, + "duration": 0, + "pid": 14644, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860218, + "duration": 1, + "pid": 14644, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860242, + "end": 1720504860953, + "duration": 711, + "pid": 14644, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860331, + "end": 1720504860938, + "duration": 607, + "pid": 14644, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860402, + "duration": 71, + "pid": 14644, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860332, + "end": 1720504860402, + "duration": 70, + "pid": 14644, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860402, + "end": 1720504860910, + "duration": 508, + "pid": 14644, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860402, + "end": 1720504860883, + "duration": 481, + "pid": 14644, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860911, + "end": 1720504860918, + "duration": 7, + "pid": 14644, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860911, + "end": 1720504860918, + "duration": 7, + "pid": 14644, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860921, + "duration": 2, + "pid": 14644, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860919, + "end": 1720504860919, + "duration": 0, + "pid": 14644, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860920, + "end": 1720504860938, + "duration": 18, + "pid": 14644, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860953, + "end": 1720504860953, + "duration": 0, + "pid": 14644, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_16580.json b/developedcode/setgetdata/run/application_timing_16580.json new file mode 100644 index 0000000..ea41832 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_16580.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857720, + "end": 1720504859192, + "duration": 1472, + "pid": 16580, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859193, + "end": 1720504860960, + "duration": 1767, + "pid": 16580, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 16580, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859386, + "end": 1720504859475, + "duration": 89, + "pid": 16580, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859394, + "duration": 7, + "pid": 16580, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 16580, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 16580, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859413, + "duration": 2, + "pid": 16580, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859415, + "end": 1720504859416, + "duration": 1, + "pid": 16580, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 16580, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859430, + "end": 1720504859431, + "duration": 1, + "pid": 16580, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859433, + "end": 1720504859434, + "duration": 1, + "pid": 16580, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859440, + "end": 1720504859441, + "duration": 1, + "pid": 16580, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859442, + "end": 1720504859443, + "duration": 1, + "pid": 16580, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859447, + "duration": 0, + "pid": 16580, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859455, + "duration": 1, + "pid": 16580, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859456, + "end": 1720504859456, + "duration": 0, + "pid": 16580, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859457, + "end": 1720504859458, + "duration": 1, + "pid": 16580, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859459, + "end": 1720504859460, + "duration": 1, + "pid": 16580, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859467, + "end": 1720504859467, + "duration": 0, + "pid": 16580, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859470, + "end": 1720504859474, + "duration": 4, + "pid": 16580, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859477, + "end": 1720504859563, + "duration": 86, + "pid": 16580, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859481, + "duration": 1, + "pid": 16580, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859482, + "end": 1720504859484, + "duration": 2, + "pid": 16580, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859487, + "end": 1720504859497, + "duration": 10, + "pid": 16580, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859498, + "end": 1720504859513, + "duration": 15, + "pid": 16580, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859513, + "end": 1720504859554, + "duration": 41, + "pid": 16580, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859556, + "end": 1720504859559, + "duration": 3, + "pid": 16580, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859563, + "end": 1720504859570, + "duration": 7, + "pid": 16580, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859566, + "end": 1720504859567, + "duration": 1, + "pid": 16580, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859570, + "end": 1720504859589, + "duration": 19, + "pid": 16580, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859577, + "end": 1720504859582, + "duration": 5, + "pid": 16580, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859589, + "end": 1720504859895, + "duration": 306, + "pid": 16580, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859590, + "end": 1720504859659, + "duration": 69, + "pid": 16580, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 16580, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859703, + "end": 1720504859706, + "duration": 3, + "pid": 16580, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859712, + "end": 1720504859847, + "duration": 135, + "pid": 16580, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859854, + "end": 1720504859870, + "duration": 16, + "pid": 16580, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859876, + "end": 1720504859878, + "duration": 2, + "pid": 16580, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859886, + "end": 1720504859890, + "duration": 4, + "pid": 16580, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859896, + "end": 1720504859990, + "duration": 94, + "pid": 16580, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859896, + "end": 1720504859986, + "duration": 90, + "pid": 16580, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859988, + "end": 1720504859989, + "duration": 1, + "pid": 16580, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859991, + "end": 1720504860218, + "duration": 227, + "pid": 16580, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859996, + "end": 1720504859996, + "duration": 0, + "pid": 16580, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859997, + "end": 1720504860004, + "duration": 7, + "pid": 16580, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860005, + "end": 1720504860067, + "duration": 62, + "pid": 16580, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860069, + "end": 1720504860107, + "duration": 38, + "pid": 16580, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860108, + "end": 1720504860183, + "duration": 75, + "pid": 16580, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860185, + "end": 1720504860189, + "duration": 4, + "pid": 16580, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860193, + "end": 1720504860202, + "duration": 9, + "pid": 16580, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860204, + "end": 1720504860206, + "duration": 2, + "pid": 16580, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860207, + "end": 1720504860208, + "duration": 1, + "pid": 16580, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860209, + "end": 1720504860209, + "duration": 0, + "pid": 16580, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860218, + "duration": 1, + "pid": 16580, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860264, + "end": 1720504860958, + "duration": 694, + "pid": 16580, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860333, + "end": 1720504860945, + "duration": 612, + "pid": 16580, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860333, + "end": 1720504860403, + "duration": 70, + "pid": 16580, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860333, + "end": 1720504860403, + "duration": 70, + "pid": 16580, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860404, + "end": 1720504860910, + "duration": 506, + "pid": 16580, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860404, + "end": 1720504860883, + "duration": 479, + "pid": 16580, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 16580, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 16580, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 16580, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860920, + "end": 1720504860921, + "duration": 1, + "pid": 16580, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860921, + "end": 1720504860945, + "duration": 24, + "pid": 16580, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860958, + "end": 1720504860959, + "duration": 1, + "pid": 16580, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_19268.json b/developedcode/setgetdata/run/application_timing_19268.json new file mode 100644 index 0000000..3773ed2 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_19268.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857925, + "end": 1720504859194, + "duration": 1269, + "pid": 19268, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860949, + "duration": 1754, + "pid": 19268, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 19268, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859473, + "duration": 88, + "pid": 19268, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859386, + "end": 1720504859393, + "duration": 7, + "pid": 19268, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859395, + "end": 1720504859396, + "duration": 1, + "pid": 19268, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859397, + "end": 1720504859407, + "duration": 10, + "pid": 19268, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859412, + "duration": 1, + "pid": 19268, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859415, + "duration": 1, + "pid": 19268, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 19268, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859430, + "end": 1720504859432, + "duration": 2, + "pid": 19268, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859433, + "end": 1720504859434, + "duration": 1, + "pid": 19268, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 19268, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859441, + "end": 1720504859442, + "duration": 1, + "pid": 19268, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859447, + "duration": 0, + "pid": 19268, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859455, + "duration": 1, + "pid": 19268, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859456, + "end": 1720504859457, + "duration": 1, + "pid": 19268, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859460, + "end": 1720504859467, + "duration": 7, + "pid": 19268, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859467, + "end": 1720504859468, + "duration": 1, + "pid": 19268, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859470, + "end": 1720504859470, + "duration": 0, + "pid": 19268, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859472, + "end": 1720504859473, + "duration": 1, + "pid": 19268, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859475, + "end": 1720504859561, + "duration": 86, + "pid": 19268, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859481, + "duration": 1, + "pid": 19268, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859482, + "end": 1720504859483, + "duration": 1, + "pid": 19268, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 19268, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859498, + "end": 1720504859512, + "duration": 14, + "pid": 19268, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859513, + "end": 1720504859553, + "duration": 40, + "pid": 19268, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859555, + "end": 1720504859557, + "duration": 2, + "pid": 19268, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859561, + "end": 1720504859568, + "duration": 7, + "pid": 19268, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859564, + "end": 1720504859564, + "duration": 0, + "pid": 19268, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859568, + "end": 1720504859584, + "duration": 16, + "pid": 19268, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859574, + "end": 1720504859582, + "duration": 8, + "pid": 19268, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859584, + "end": 1720504859890, + "duration": 306, + "pid": 19268, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859586, + "end": 1720504859659, + "duration": 73, + "pid": 19268, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859691, + "duration": 30, + "pid": 19268, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859700, + "end": 1720504859701, + "duration": 1, + "pid": 19268, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859707, + "end": 1720504859846, + "duration": 139, + "pid": 19268, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859854, + "end": 1720504859872, + "duration": 18, + "pid": 19268, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859876, + "end": 1720504859879, + "duration": 3, + "pid": 19268, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859887, + "duration": 2, + "pid": 19268, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859890, + "end": 1720504859987, + "duration": 97, + "pid": 19268, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859892, + "end": 1720504859981, + "duration": 89, + "pid": 19268, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859984, + "end": 1720504859985, + "duration": 1, + "pid": 19268, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859988, + "end": 1720504860220, + "duration": 232, + "pid": 19268, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859988, + "end": 1720504859995, + "duration": 7, + "pid": 19268, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859996, + "end": 1720504860003, + "duration": 7, + "pid": 19268, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860004, + "end": 1720504860068, + "duration": 64, + "pid": 19268, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860069, + "end": 1720504860109, + "duration": 40, + "pid": 19268, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860182, + "duration": 72, + "pid": 19268, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860186, + "end": 1720504860190, + "duration": 4, + "pid": 19268, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860191, + "end": 1720504860202, + "duration": 11, + "pid": 19268, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860205, + "end": 1720504860207, + "duration": 2, + "pid": 19268, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860208, + "end": 1720504860210, + "duration": 2, + "pid": 19268, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860212, + "end": 1720504860213, + "duration": 1, + "pid": 19268, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860220, + "duration": 3, + "pid": 19268, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860241, + "end": 1720504860948, + "duration": 707, + "pid": 19268, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860332, + "end": 1720504860933, + "duration": 601, + "pid": 19268, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860332, + "end": 1720504860400, + "duration": 68, + "pid": 19268, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860332, + "end": 1720504860400, + "duration": 68, + "pid": 19268, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860401, + "end": 1720504860909, + "duration": 508, + "pid": 19268, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860401, + "end": 1720504860879, + "duration": 478, + "pid": 19268, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860909, + "end": 1720504860918, + "duration": 9, + "pid": 19268, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860909, + "end": 1720504860918, + "duration": 9, + "pid": 19268, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860918, + "end": 1720504860921, + "duration": 3, + "pid": 19268, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860918, + "end": 1720504860919, + "duration": 1, + "pid": 19268, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860919, + "end": 1720504860933, + "duration": 14, + "pid": 19268, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860949, + "end": 1720504860949, + "duration": 0, + "pid": 19268, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_19388.json b/developedcode/setgetdata/run/application_timing_19388.json new file mode 100644 index 0000000..5897de7 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_19388.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857839, + "end": 1720504859192, + "duration": 1353, + "pid": 19388, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859193, + "end": 1720504860947, + "duration": 1754, + "pid": 19388, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 19388, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859475, + "duration": 90, + "pid": 19388, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 19388, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 19388, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859407, + "end": 1720504859409, + "duration": 2, + "pid": 19388, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859412, + "end": 1720504859413, + "duration": 1, + "pid": 19388, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859416, + "duration": 2, + "pid": 19388, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 19388, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859430, + "end": 1720504859432, + "duration": 2, + "pid": 19388, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859434, + "end": 1720504859434, + "duration": 0, + "pid": 19388, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 19388, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859441, + "end": 1720504859442, + "duration": 1, + "pid": 19388, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859448, + "end": 1720504859449, + "duration": 1, + "pid": 19388, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859456, + "duration": 2, + "pid": 19388, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859458, + "end": 1720504859459, + "duration": 1, + "pid": 19388, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859465, + "end": 1720504859467, + "duration": 2, + "pid": 19388, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859468, + "end": 1720504859469, + "duration": 1, + "pid": 19388, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859472, + "end": 1720504859472, + "duration": 0, + "pid": 19388, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859474, + "end": 1720504859475, + "duration": 1, + "pid": 19388, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859478, + "end": 1720504859562, + "duration": 84, + "pid": 19388, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859479, + "end": 1720504859481, + "duration": 2, + "pid": 19388, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859482, + "end": 1720504859483, + "duration": 1, + "pid": 19388, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 19388, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859500, + "end": 1720504859511, + "duration": 11, + "pid": 19388, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859554, + "duration": 42, + "pid": 19388, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859556, + "end": 1720504859558, + "duration": 2, + "pid": 19388, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859562, + "end": 1720504859569, + "duration": 7, + "pid": 19388, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859565, + "end": 1720504859566, + "duration": 1, + "pid": 19388, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859569, + "end": 1720504859587, + "duration": 18, + "pid": 19388, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859577, + "end": 1720504859582, + "duration": 5, + "pid": 19388, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859588, + "end": 1720504859892, + "duration": 304, + "pid": 19388, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859588, + "end": 1720504859659, + "duration": 71, + "pid": 19388, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859692, + "duration": 31, + "pid": 19388, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859705, + "end": 1720504859706, + "duration": 1, + "pid": 19388, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859711, + "end": 1720504859846, + "duration": 135, + "pid": 19388, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859854, + "end": 1720504859871, + "duration": 17, + "pid": 19388, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859877, + "end": 1720504859880, + "duration": 3, + "pid": 19388, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859888, + "duration": 3, + "pid": 19388, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859892, + "end": 1720504859993, + "duration": 101, + "pid": 19388, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859893, + "end": 1720504859985, + "duration": 92, + "pid": 19388, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859988, + "end": 1720504859990, + "duration": 2, + "pid": 19388, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859993, + "end": 1720504860217, + "duration": 224, + "pid": 19388, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859997, + "end": 1720504859997, + "duration": 0, + "pid": 19388, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859998, + "end": 1720504860005, + "duration": 7, + "pid": 19388, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860010, + "end": 1720504860068, + "duration": 58, + "pid": 19388, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860069, + "end": 1720504860110, + "duration": 41, + "pid": 19388, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860111, + "end": 1720504860181, + "duration": 70, + "pid": 19388, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860183, + "end": 1720504860186, + "duration": 3, + "pid": 19388, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860187, + "end": 1720504860201, + "duration": 14, + "pid": 19388, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860202, + "end": 1720504860202, + "duration": 0, + "pid": 19388, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860203, + "end": 1720504860203, + "duration": 0, + "pid": 19388, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860205, + "end": 1720504860206, + "duration": 1, + "pid": 19388, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860216, + "end": 1720504860217, + "duration": 1, + "pid": 19388, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860248, + "end": 1720504860946, + "duration": 698, + "pid": 19388, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860333, + "end": 1720504860931, + "duration": 598, + "pid": 19388, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860333, + "end": 1720504860404, + "duration": 71, + "pid": 19388, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860333, + "end": 1720504860404, + "duration": 71, + "pid": 19388, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860404, + "end": 1720504860909, + "duration": 505, + "pid": 19388, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860404, + "end": 1720504860882, + "duration": 478, + "pid": 19388, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860909, + "end": 1720504860917, + "duration": 8, + "pid": 19388, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860909, + "end": 1720504860917, + "duration": 8, + "pid": 19388, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860917, + "end": 1720504860920, + "duration": 3, + "pid": 19388, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860917, + "end": 1720504860918, + "duration": 1, + "pid": 19388, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860918, + "end": 1720504860931, + "duration": 13, + "pid": 19388, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860946, + "end": 1720504860947, + "duration": 1, + "pid": 19388, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_20076.json b/developedcode/setgetdata/run/application_timing_20076.json new file mode 100644 index 0000000..457ca18 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_20076.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857815, + "end": 1720504859194, + "duration": 1379, + "pid": 20076, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860959, + "duration": 1764, + "pid": 20076, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859386, + "duration": 111, + "pid": 20076, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859386, + "end": 1720504859473, + "duration": 87, + "pid": 20076, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859393, + "end": 1720504859394, + "duration": 1, + "pid": 20076, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 20076, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859407, + "end": 1720504859408, + "duration": 1, + "pid": 20076, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859412, + "end": 1720504859413, + "duration": 1, + "pid": 20076, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859415, + "duration": 1, + "pid": 20076, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859417, + "end": 1720504859427, + "duration": 10, + "pid": 20076, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859429, + "end": 1720504859430, + "duration": 1, + "pid": 20076, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859430, + "end": 1720504859431, + "duration": 1, + "pid": 20076, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859433, + "end": 1720504859439, + "duration": 6, + "pid": 20076, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 20076, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859441, + "end": 1720504859446, + "duration": 5, + "pid": 20076, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859447, + "end": 1720504859453, + "duration": 6, + "pid": 20076, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859455, + "end": 1720504859455, + "duration": 0, + "pid": 20076, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859457, + "end": 1720504859461, + "duration": 4, + "pid": 20076, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859467, + "end": 1720504859467, + "duration": 0, + "pid": 20076, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859469, + "end": 1720504859469, + "duration": 0, + "pid": 20076, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859472, + "end": 1720504859472, + "duration": 0, + "pid": 20076, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859476, + "end": 1720504859561, + "duration": 85, + "pid": 20076, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859479, + "end": 1720504859480, + "duration": 1, + "pid": 20076, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 20076, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859496, + "duration": 10, + "pid": 20076, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859498, + "end": 1720504859510, + "duration": 12, + "pid": 20076, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859511, + "end": 1720504859553, + "duration": 42, + "pid": 20076, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859555, + "end": 1720504859557, + "duration": 2, + "pid": 20076, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859561, + "end": 1720504859568, + "duration": 7, + "pid": 20076, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859564, + "end": 1720504859565, + "duration": 1, + "pid": 20076, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859568, + "end": 1720504859581, + "duration": 13, + "pid": 20076, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859571, + "end": 1720504859574, + "duration": 3, + "pid": 20076, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859581, + "end": 1720504859900, + "duration": 319, + "pid": 20076, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859582, + "end": 1720504859659, + "duration": 77, + "pid": 20076, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 20076, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859699, + "end": 1720504859700, + "duration": 1, + "pid": 20076, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859708, + "end": 1720504859845, + "duration": 137, + "pid": 20076, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859854, + "end": 1720504859870, + "duration": 16, + "pid": 20076, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859877, + "end": 1720504859879, + "duration": 2, + "pid": 20076, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859897, + "duration": 12, + "pid": 20076, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859900, + "end": 1720504860001, + "duration": 101, + "pid": 20076, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859901, + "end": 1720504859998, + "duration": 97, + "pid": 20076, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504860000, + "end": 1720504860000, + "duration": 0, + "pid": 20076, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504860001, + "end": 1720504860222, + "duration": 221, + "pid": 20076, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504860002, + "end": 1720504860002, + "duration": 0, + "pid": 20076, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504860002, + "end": 1720504860005, + "duration": 3, + "pid": 20076, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860010, + "end": 1720504860069, + "duration": 59, + "pid": 20076, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860071, + "end": 1720504860109, + "duration": 38, + "pid": 20076, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860185, + "duration": 75, + "pid": 20076, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860189, + "end": 1720504860191, + "duration": 2, + "pid": 20076, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860192, + "end": 1720504860203, + "duration": 11, + "pid": 20076, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860206, + "end": 1720504860207, + "duration": 1, + "pid": 20076, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860209, + "end": 1720504860210, + "duration": 1, + "pid": 20076, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860211, + "end": 1720504860211, + "duration": 0, + "pid": 20076, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860222, + "duration": 5, + "pid": 20076, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860241, + "end": 1720504860957, + "duration": 716, + "pid": 20076, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860331, + "end": 1720504860945, + "duration": 614, + "pid": 20076, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860400, + "duration": 69, + "pid": 20076, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860332, + "end": 1720504860400, + "duration": 68, + "pid": 20076, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860401, + "end": 1720504860910, + "duration": 509, + "pid": 20076, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860401, + "end": 1720504860883, + "duration": 482, + "pid": 20076, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 20076, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860911, + "end": 1720504860918, + "duration": 7, + "pid": 20076, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 20076, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860919, + "end": 1720504860920, + "duration": 1, + "pid": 20076, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860920, + "end": 1720504860945, + "duration": 25, + "pid": 20076, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860958, + "end": 1720504860958, + "duration": 0, + "pid": 20076, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_20504.json b/developedcode/setgetdata/run/application_timing_20504.json new file mode 100644 index 0000000..282588a --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_20504.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857701, + "end": 1720504859193, + "duration": 1492, + "pid": 20504, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859194, + "end": 1720504860956, + "duration": 1762, + "pid": 20504, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 20504, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859476, + "duration": 91, + "pid": 20504, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 20504, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 20504, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 20504, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859412, + "duration": 1, + "pid": 20504, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859416, + "duration": 2, + "pid": 20504, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 20504, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859430, + "end": 1720504859432, + "duration": 2, + "pid": 20504, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859433, + "end": 1720504859434, + "duration": 1, + "pid": 20504, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859439, + "duration": 0, + "pid": 20504, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859441, + "end": 1720504859442, + "duration": 1, + "pid": 20504, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859448, + "end": 1720504859448, + "duration": 0, + "pid": 20504, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859456, + "duration": 2, + "pid": 20504, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859457, + "end": 1720504859458, + "duration": 1, + "pid": 20504, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859467, + "end": 1720504859468, + "duration": 1, + "pid": 20504, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859470, + "end": 1720504859471, + "duration": 1, + "pid": 20504, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 20504, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859474, + "end": 1720504859475, + "duration": 1, + "pid": 20504, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859477, + "end": 1720504859562, + "duration": 85, + "pid": 20504, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859481, + "duration": 1, + "pid": 20504, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 20504, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 20504, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859499, + "end": 1720504859511, + "duration": 12, + "pid": 20504, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859513, + "end": 1720504859554, + "duration": 41, + "pid": 20504, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859556, + "end": 1720504859558, + "duration": 2, + "pid": 20504, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859562, + "end": 1720504859569, + "duration": 7, + "pid": 20504, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859564, + "end": 1720504859565, + "duration": 1, + "pid": 20504, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859569, + "end": 1720504859584, + "duration": 15, + "pid": 20504, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859572, + "end": 1720504859581, + "duration": 9, + "pid": 20504, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859584, + "end": 1720504859893, + "duration": 309, + "pid": 20504, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859586, + "end": 1720504859659, + "duration": 73, + "pid": 20504, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 20504, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859704, + "end": 1720504859707, + "duration": 3, + "pid": 20504, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859709, + "end": 1720504859851, + "duration": 142, + "pid": 20504, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859855, + "end": 1720504859869, + "duration": 14, + "pid": 20504, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859873, + "end": 1720504859875, + "duration": 2, + "pid": 20504, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859884, + "end": 1720504859888, + "duration": 4, + "pid": 20504, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859893, + "end": 1720504860000, + "duration": 107, + "pid": 20504, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859893, + "end": 1720504859996, + "duration": 103, + "pid": 20504, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859997, + "end": 1720504859998, + "duration": 1, + "pid": 20504, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504860000, + "end": 1720504860218, + "duration": 218, + "pid": 20504, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504860000, + "end": 1720504860000, + "duration": 0, + "pid": 20504, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504860000, + "end": 1720504860005, + "duration": 5, + "pid": 20504, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860010, + "end": 1720504860067, + "duration": 57, + "pid": 20504, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860069, + "end": 1720504860109, + "duration": 40, + "pid": 20504, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860182, + "duration": 72, + "pid": 20504, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860185, + "end": 1720504860188, + "duration": 3, + "pid": 20504, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860189, + "end": 1720504860200, + "duration": 11, + "pid": 20504, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860201, + "end": 1720504860202, + "duration": 1, + "pid": 20504, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860204, + "end": 1720504860205, + "duration": 1, + "pid": 20504, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860207, + "end": 1720504860208, + "duration": 1, + "pid": 20504, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860217, + "duration": 0, + "pid": 20504, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860246, + "end": 1720504860955, + "duration": 709, + "pid": 20504, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860331, + "end": 1720504860937, + "duration": 606, + "pid": 20504, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860405, + "duration": 74, + "pid": 20504, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860331, + "end": 1720504860405, + "duration": 74, + "pid": 20504, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860405, + "end": 1720504860910, + "duration": 505, + "pid": 20504, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860405, + "end": 1720504860882, + "duration": 477, + "pid": 20504, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860918, + "duration": 8, + "pid": 20504, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860918, + "duration": 8, + "pid": 20504, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860918, + "end": 1720504860921, + "duration": 3, + "pid": 20504, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860919, + "end": 1720504860920, + "duration": 1, + "pid": 20504, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860920, + "end": 1720504860937, + "duration": 17, + "pid": 20504, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860955, + "end": 1720504860956, + "duration": 1, + "pid": 20504, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_23004.json b/developedcode/setgetdata/run/application_timing_23004.json new file mode 100644 index 0000000..48d7582 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_23004.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857937, + "end": 1720504859194, + "duration": 1257, + "pid": 23004, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860956, + "duration": 1761, + "pid": 23004, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 23004, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859476, + "duration": 91, + "pid": 23004, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 23004, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 23004, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859407, + "end": 1720504859408, + "duration": 1, + "pid": 23004, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859413, + "duration": 2, + "pid": 23004, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859416, + "duration": 2, + "pid": 23004, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 23004, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859431, + "end": 1720504859432, + "duration": 1, + "pid": 23004, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859434, + "end": 1720504859434, + "duration": 0, + "pid": 23004, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 23004, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859442, + "end": 1720504859442, + "duration": 0, + "pid": 23004, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859448, + "duration": 1, + "pid": 23004, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859455, + "duration": 1, + "pid": 23004, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859457, + "end": 1720504859457, + "duration": 0, + "pid": 23004, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859466, + "end": 1720504859468, + "duration": 2, + "pid": 23004, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859469, + "end": 1720504859470, + "duration": 1, + "pid": 23004, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 23004, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859475, + "end": 1720504859475, + "duration": 0, + "pid": 23004, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859478, + "end": 1720504859562, + "duration": 84, + "pid": 23004, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859480, + "duration": 0, + "pid": 23004, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 23004, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 23004, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859499, + "end": 1720504859511, + "duration": 12, + "pid": 23004, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859554, + "duration": 42, + "pid": 23004, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859556, + "end": 1720504859558, + "duration": 2, + "pid": 23004, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859562, + "end": 1720504859569, + "duration": 7, + "pid": 23004, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859565, + "end": 1720504859566, + "duration": 1, + "pid": 23004, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859569, + "end": 1720504859585, + "duration": 16, + "pid": 23004, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859578, + "end": 1720504859582, + "duration": 4, + "pid": 23004, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859585, + "end": 1720504859891, + "duration": 306, + "pid": 23004, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859586, + "end": 1720504859659, + "duration": 73, + "pid": 23004, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859692, + "duration": 31, + "pid": 23004, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859704, + "end": 1720504859706, + "duration": 2, + "pid": 23004, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859712, + "end": 1720504859849, + "duration": 137, + "pid": 23004, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859855, + "end": 1720504859871, + "duration": 16, + "pid": 23004, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859876, + "end": 1720504859880, + "duration": 4, + "pid": 23004, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859887, + "duration": 2, + "pid": 23004, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859891, + "end": 1720504859994, + "duration": 103, + "pid": 23004, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859893, + "end": 1720504859988, + "duration": 95, + "pid": 23004, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859990, + "end": 1720504859991, + "duration": 1, + "pid": 23004, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859994, + "end": 1720504860218, + "duration": 224, + "pid": 23004, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859996, + "end": 1720504859997, + "duration": 1, + "pid": 23004, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859998, + "end": 1720504860005, + "duration": 7, + "pid": 23004, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860010, + "end": 1720504860069, + "duration": 59, + "pid": 23004, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860071, + "end": 1720504860107, + "duration": 36, + "pid": 23004, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860107, + "end": 1720504860180, + "duration": 73, + "pid": 23004, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860183, + "end": 1720504860188, + "duration": 5, + "pid": 23004, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860190, + "end": 1720504860203, + "duration": 13, + "pid": 23004, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860207, + "end": 1720504860207, + "duration": 0, + "pid": 23004, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860209, + "end": 1720504860210, + "duration": 1, + "pid": 23004, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860212, + "end": 1720504860213, + "duration": 1, + "pid": 23004, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860217, + "duration": 0, + "pid": 23004, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860241, + "end": 1720504860955, + "duration": 714, + "pid": 23004, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860331, + "end": 1720504860939, + "duration": 608, + "pid": 23004, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860402, + "duration": 71, + "pid": 23004, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860331, + "end": 1720504860402, + "duration": 71, + "pid": 23004, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860402, + "end": 1720504860910, + "duration": 508, + "pid": 23004, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860403, + "end": 1720504860882, + "duration": 479, + "pid": 23004, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 23004, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 23004, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 23004, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860920, + "end": 1720504860920, + "duration": 0, + "pid": 23004, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860920, + "end": 1720504860939, + "duration": 19, + "pid": 23004, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860955, + "end": 1720504860955, + "duration": 0, + "pid": 23004, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_23068.json b/developedcode/setgetdata/run/application_timing_23068.json new file mode 100644 index 0000000..2b46c19 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_23068.json @@ -0,0 +1,578 @@ +[ + { + "name": "Process Start", + "start": 1720504679625, + "end": 1720504680215, + "duration": 590, + "pid": 23068, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504680216, + "end": 1720504680654, + "duration": 438, + "pid": 23068, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504680223, + "end": 1720504680230, + "duration": 7, + "pid": 23068, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504680230, + "end": 1720504680242, + "duration": 12, + "pid": 23068, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504680230, + "end": 1720504680231, + "duration": 1, + "pid": 23068, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504680231, + "end": 1720504680232, + "duration": 1, + "pid": 23068, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504680232, + "end": 1720504680232, + "duration": 0, + "pid": 23068, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504680233, + "end": 1720504680233, + "duration": 0, + "pid": 23068, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504680233, + "end": 1720504680233, + "duration": 0, + "pid": 23068, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504680234, + "end": 1720504680234, + "duration": 0, + "pid": 23068, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504680234, + "end": 1720504680234, + "duration": 0, + "pid": 23068, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504680235, + "end": 1720504680235, + "duration": 0, + "pid": 23068, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504680235, + "end": 1720504680235, + "duration": 0, + "pid": 23068, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1720504680237, + "end": 1720504680237, + "duration": 0, + "pid": 23068, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504680237, + "end": 1720504680238, + "duration": 1, + "pid": 23068, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1720504680238, + "end": 1720504680238, + "duration": 0, + "pid": 23068, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1720504680238, + "end": 1720504680238, + "duration": 0, + "pid": 23068, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-cors/config/config.default.js", + "start": 1720504680239, + "end": 1720504680239, + "duration": 0, + "pid": 23068, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg-downloader/config/config.default.js", + "start": 1720504680239, + "end": 1720504680239, + "duration": 0, + "pid": 23068, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg/config/config.default.js", + "start": 1720504680239, + "end": 1720504680239, + "duration": 0, + "pid": 23068, + "index": 19 + }, + { + "name": "Require(16) config/config.default.js", + "start": 1720504680240, + "end": 1720504680240, + "duration": 0, + "pid": 23068, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-security/config/config.local.js", + "start": 1720504680240, + "end": 1720504680240, + "duration": 0, + "pid": 23068, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg-watcher/config/config.local.js", + "start": 1720504680241, + "end": 1720504680241, + "duration": 0, + "pid": 23068, + "index": 22 + }, + { + "name": "Require(19) node_modules/egg-view/config/config.local.js", + "start": 1720504680241, + "end": 1720504680242, + "duration": 1, + "pid": 23068, + "index": 23 + }, + { + "name": "Require(20) node_modules/egg/config/config.local.js", + "start": 1720504680242, + "end": 1720504680242, + "duration": 0, + "pid": 23068, + "index": 24 + }, + { + "name": "Load extend/application.js", + "start": 1720504680243, + "end": 1720504680262, + "duration": 19, + "pid": 23068, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-session/app/extend/application.js", + "start": 1720504680243, + "end": 1720504680244, + "duration": 1, + "pid": 23068, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-security/app/extend/application.js", + "start": 1720504680244, + "end": 1720504680244, + "duration": 0, + "pid": 23068, + "index": 27 + }, + { + "name": "Require(23) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504680244, + "end": 1720504680254, + "duration": 10, + "pid": 23068, + "index": 28 + }, + { + "name": "Require(24) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504680254, + "end": 1720504680256, + "duration": 2, + "pid": 23068, + "index": 29 + }, + { + "name": "Require(25) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504680256, + "end": 1720504680259, + "duration": 3, + "pid": 23068, + "index": 30 + }, + { + "name": "Require(26) node_modules/egg-view/app/extend/application.js", + "start": 1720504680260, + "end": 1720504680260, + "duration": 0, + "pid": 23068, + "index": 31 + }, + { + "name": "Load extend/request.js", + "start": 1720504680262, + "end": 1720504680265, + "duration": 3, + "pid": 23068, + "index": 32 + }, + { + "name": "Require(27) node_modules/egg/app/extend/request.js", + "start": 1720504680263, + "end": 1720504680263, + "duration": 0, + "pid": 23068, + "index": 33 + }, + { + "name": "Load extend/response.js", + "start": 1720504680265, + "end": 1720504680268, + "duration": 3, + "pid": 23068, + "index": 34 + }, + { + "name": "Require(28) node_modules/egg/app/extend/response.js", + "start": 1720504680266, + "end": 1720504680267, + "duration": 1, + "pid": 23068, + "index": 35 + }, + { + "name": "Load extend/context.js", + "start": 1720504680268, + "end": 1720504680286, + "duration": 18, + "pid": 23068, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-security/app/extend/context.js", + "start": 1720504680268, + "end": 1720504680274, + "duration": 6, + "pid": 23068, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504680274, + "end": 1720504680274, + "duration": 0, + "pid": 23068, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504680275, + "end": 1720504680275, + "duration": 0, + "pid": 23068, + "index": 39 + }, + { + "name": "Require(32) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504680275, + "end": 1720504680283, + "duration": 8, + "pid": 23068, + "index": 40 + }, + { + "name": "Require(33) node_modules/egg-view/app/extend/context.js", + "start": 1720504680283, + "end": 1720504680284, + "duration": 1, + "pid": 23068, + "index": 41 + }, + { + "name": "Require(34) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504680284, + "end": 1720504680284, + "duration": 0, + "pid": 23068, + "index": 42 + }, + { + "name": "Require(35) node_modules/egg/app/extend/context.js", + "start": 1720504680284, + "end": 1720504680285, + "duration": 1, + "pid": 23068, + "index": 43 + }, + { + "name": "Load extend/helper.js", + "start": 1720504680286, + "end": 1720504680308, + "duration": 22, + "pid": 23068, + "index": 44 + }, + { + "name": "Require(36) node_modules/egg-security/app/extend/helper.js", + "start": 1720504680286, + "end": 1720504680305, + "duration": 19, + "pid": 23068, + "index": 45 + }, + { + "name": "Require(37) node_modules/egg/app/extend/helper.js", + "start": 1720504680306, + "end": 1720504680306, + "duration": 0, + "pid": 23068, + "index": 46 + }, + { + "name": "Load app.js", + "start": 1720504680308, + "end": 1720504680354, + "duration": 46, + "pid": 23068, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-session/app.js", + "start": 1720504680308, + "end": 1720504680308, + "duration": 0, + "pid": 23068, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-security/app.js", + "start": 1720504680309, + "end": 1720504680309, + "duration": 0, + "pid": 23068, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-onerror/app.js", + "start": 1720504680310, + "end": 1720504680331, + "duration": 21, + "pid": 23068, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-i18n/app.js", + "start": 1720504680331, + "end": 1720504680337, + "duration": 6, + "pid": 23068, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-watcher/app.js", + "start": 1720504680337, + "end": 1720504680341, + "duration": 4, + "pid": 23068, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-schedule/app.js", + "start": 1720504680341, + "end": 1720504680341, + "duration": 0, + "pid": 23068, + "index": 53 + }, + { + "name": "Require(44) node_modules/egg-multipart/app.js", + "start": 1720504680342, + "end": 1720504680342, + "duration": 0, + "pid": 23068, + "index": 54 + }, + { + "name": "Require(45) node_modules/egg-development/app.js", + "start": 1720504680342, + "end": 1720504680343, + "duration": 1, + "pid": 23068, + "index": 55 + }, + { + "name": "Require(46) node_modules/egg-logrotator/app.js", + "start": 1720504680343, + "end": 1720504680343, + "duration": 0, + "pid": 23068, + "index": 56 + }, + { + "name": "Require(47) node_modules/egg-static/app.js", + "start": 1720504680343, + "end": 1720504680343, + "duration": 0, + "pid": 23068, + "index": 57 + }, + { + "name": "Require(48) node_modules/egg-cors/app.js", + "start": 1720504680344, + "end": 1720504680344, + "duration": 0, + "pid": 23068, + "index": 58 + }, + { + "name": "Require(49) app.js", + "start": 1720504680344, + "end": 1720504680354, + "duration": 10, + "pid": 23068, + "index": 59 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504680368, + "end": 1720504680653, + "duration": 285, + "pid": 23068, + "index": 60 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504680389, + "end": 1720504680646, + "duration": 257, + "pid": 23068, + "index": 61 + }, + { + "name": "Load Service", + "start": 1720504680389, + "end": 1720504680422, + "duration": 33, + "pid": 23068, + "index": 62 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504680389, + "end": 1720504680422, + "duration": 33, + "pid": 23068, + "index": 63 + }, + { + "name": "Load Middleware", + "start": 1720504680422, + "end": 1720504680637, + "duration": 215, + "pid": 23068, + "index": 64 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504680422, + "end": 1720504680632, + "duration": 210, + "pid": 23068, + "index": 65 + }, + { + "name": "Load Controller", + "start": 1720504680637, + "end": 1720504680639, + "duration": 2, + "pid": 23068, + "index": 66 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504680637, + "end": 1720504680639, + "duration": 2, + "pid": 23068, + "index": 67 + }, + { + "name": "Load Router", + "start": 1720504680639, + "end": 1720504680640, + "duration": 1, + "pid": 23068, + "index": 68 + }, + { + "name": "Require(50) app/router.js", + "start": 1720504680639, + "end": 1720504680639, + "duration": 0, + "pid": 23068, + "index": 69 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504680639, + "end": 1720504680646, + "duration": 7, + "pid": 23068, + "index": 70 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504680653, + "end": 1720504680653, + "duration": 0, + "pid": 23068, + "index": 71 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_24492.json b/developedcode/setgetdata/run/application_timing_24492.json new file mode 100644 index 0000000..d35d503 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_24492.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857760, + "end": 1720504859193, + "duration": 1433, + "pid": 24492, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860960, + "duration": 1765, + "pid": 24492, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 24492, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859475, + "duration": 90, + "pid": 24492, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 24492, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 24492, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 24492, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859412, + "duration": 1, + "pid": 24492, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859416, + "duration": 2, + "pid": 24492, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859429, + "duration": 2, + "pid": 24492, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859431, + "end": 1720504859432, + "duration": 1, + "pid": 24492, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859434, + "end": 1720504859434, + "duration": 0, + "pid": 24492, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 24492, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859442, + "end": 1720504859442, + "duration": 0, + "pid": 24492, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859448, + "duration": 1, + "pid": 24492, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859456, + "duration": 2, + "pid": 24492, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859458, + "end": 1720504859458, + "duration": 0, + "pid": 24492, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859467, + "end": 1720504859468, + "duration": 1, + "pid": 24492, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859468, + "end": 1720504859469, + "duration": 1, + "pid": 24492, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859472, + "end": 1720504859472, + "duration": 0, + "pid": 24492, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859473, + "end": 1720504859474, + "duration": 1, + "pid": 24492, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859476, + "end": 1720504859561, + "duration": 85, + "pid": 24492, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859480, + "duration": 0, + "pid": 24492, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 24492, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859487, + "end": 1720504859497, + "duration": 10, + "pid": 24492, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859499, + "end": 1720504859512, + "duration": 13, + "pid": 24492, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 24492, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859555, + "end": 1720504859558, + "duration": 3, + "pid": 24492, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859561, + "end": 1720504859568, + "duration": 7, + "pid": 24492, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859564, + "end": 1720504859565, + "duration": 1, + "pid": 24492, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859568, + "end": 1720504859588, + "duration": 20, + "pid": 24492, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859574, + "end": 1720504859581, + "duration": 7, + "pid": 24492, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859588, + "end": 1720504859893, + "duration": 305, + "pid": 24492, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859589, + "end": 1720504859659, + "duration": 70, + "pid": 24492, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 24492, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859705, + "end": 1720504859706, + "duration": 1, + "pid": 24492, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859712, + "end": 1720504859849, + "duration": 137, + "pid": 24492, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859856, + "end": 1720504859871, + "duration": 15, + "pid": 24492, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859875, + "end": 1720504859878, + "duration": 3, + "pid": 24492, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859889, + "duration": 4, + "pid": 24492, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859893, + "end": 1720504859995, + "duration": 102, + "pid": 24492, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859894, + "end": 1720504859990, + "duration": 96, + "pid": 24492, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859992, + "end": 1720504859992, + "duration": 0, + "pid": 24492, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859995, + "end": 1720504860220, + "duration": 225, + "pid": 24492, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859995, + "end": 1720504859996, + "duration": 1, + "pid": 24492, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859996, + "end": 1720504860004, + "duration": 8, + "pid": 24492, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860005, + "end": 1720504860067, + "duration": 62, + "pid": 24492, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860068, + "end": 1720504860109, + "duration": 41, + "pid": 24492, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860185, + "duration": 75, + "pid": 24492, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860192, + "end": 1720504860194, + "duration": 2, + "pid": 24492, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860195, + "end": 1720504860206, + "duration": 11, + "pid": 24492, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860208, + "end": 1720504860209, + "duration": 1, + "pid": 24492, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860211, + "end": 1720504860211, + "duration": 0, + "pid": 24492, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860213, + "end": 1720504860213, + "duration": 0, + "pid": 24492, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860220, + "duration": 3, + "pid": 24492, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860246, + "end": 1720504860958, + "duration": 712, + "pid": 24492, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860332, + "end": 1720504860944, + "duration": 612, + "pid": 24492, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860332, + "end": 1720504860401, + "duration": 69, + "pid": 24492, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860332, + "end": 1720504860401, + "duration": 69, + "pid": 24492, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860402, + "end": 1720504860910, + "duration": 508, + "pid": 24492, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860402, + "end": 1720504860882, + "duration": 480, + "pid": 24492, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 24492, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 24492, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860924, + "duration": 5, + "pid": 24492, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860920, + "end": 1720504860922, + "duration": 2, + "pid": 24492, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860922, + "end": 1720504860944, + "duration": 22, + "pid": 24492, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860959, + "end": 1720504860959, + "duration": 0, + "pid": 24492, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_24720.json b/developedcode/setgetdata/run/application_timing_24720.json new file mode 100644 index 0000000..b195bec --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_24720.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857687, + "end": 1720504859194, + "duration": 1507, + "pid": 24720, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860948, + "duration": 1753, + "pid": 24720, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 24720, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859476, + "duration": 91, + "pid": 24720, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 24720, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 24720, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859407, + "end": 1720504859408, + "duration": 1, + "pid": 24720, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859412, + "duration": 1, + "pid": 24720, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859416, + "duration": 2, + "pid": 24720, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 24720, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859431, + "end": 1720504859432, + "duration": 1, + "pid": 24720, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859433, + "end": 1720504859434, + "duration": 1, + "pid": 24720, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859439, + "duration": 0, + "pid": 24720, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859440, + "end": 1720504859441, + "duration": 1, + "pid": 24720, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859446, + "end": 1720504859447, + "duration": 1, + "pid": 24720, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859454, + "end": 1720504859456, + "duration": 2, + "pid": 24720, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859457, + "end": 1720504859458, + "duration": 1, + "pid": 24720, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859467, + "end": 1720504859468, + "duration": 1, + "pid": 24720, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859469, + "end": 1720504859470, + "duration": 1, + "pid": 24720, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 24720, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859474, + "end": 1720504859475, + "duration": 1, + "pid": 24720, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859477, + "end": 1720504859561, + "duration": 84, + "pid": 24720, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859479, + "end": 1720504859480, + "duration": 1, + "pid": 24720, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 24720, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 24720, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859498, + "end": 1720504859511, + "duration": 13, + "pid": 24720, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 24720, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859555, + "end": 1720504859557, + "duration": 2, + "pid": 24720, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859561, + "end": 1720504859569, + "duration": 8, + "pid": 24720, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859565, + "end": 1720504859566, + "duration": 1, + "pid": 24720, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859569, + "end": 1720504859579, + "duration": 10, + "pid": 24720, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859572, + "end": 1720504859576, + "duration": 4, + "pid": 24720, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859580, + "end": 1720504859891, + "duration": 311, + "pid": 24720, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859580, + "end": 1720504859659, + "duration": 79, + "pid": 24720, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859689, + "duration": 28, + "pid": 24720, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859692, + "end": 1720504859695, + "duration": 3, + "pid": 24720, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859698, + "end": 1720504859850, + "duration": 152, + "pid": 24720, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859855, + "end": 1720504859871, + "duration": 16, + "pid": 24720, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859877, + "end": 1720504859880, + "duration": 3, + "pid": 24720, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859887, + "duration": 2, + "pid": 24720, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859891, + "end": 1720504859994, + "duration": 103, + "pid": 24720, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859893, + "end": 1720504859988, + "duration": 95, + "pid": 24720, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859991, + "end": 1720504859992, + "duration": 1, + "pid": 24720, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859995, + "end": 1720504860218, + "duration": 223, + "pid": 24720, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859996, + "end": 1720504859997, + "duration": 1, + "pid": 24720, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859998, + "end": 1720504860005, + "duration": 7, + "pid": 24720, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860010, + "end": 1720504860067, + "duration": 57, + "pid": 24720, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860068, + "end": 1720504860109, + "duration": 41, + "pid": 24720, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860183, + "duration": 73, + "pid": 24720, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860186, + "end": 1720504860190, + "duration": 4, + "pid": 24720, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860191, + "end": 1720504860203, + "duration": 12, + "pid": 24720, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860205, + "end": 1720504860207, + "duration": 2, + "pid": 24720, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860208, + "end": 1720504860209, + "duration": 1, + "pid": 24720, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860210, + "end": 1720504860210, + "duration": 0, + "pid": 24720, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860217, + "duration": 0, + "pid": 24720, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860242, + "end": 1720504860947, + "duration": 705, + "pid": 24720, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860330, + "end": 1720504860933, + "duration": 603, + "pid": 24720, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860405, + "duration": 74, + "pid": 24720, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860331, + "end": 1720504860405, + "duration": 74, + "pid": 24720, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860405, + "end": 1720504860909, + "duration": 504, + "pid": 24720, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860405, + "end": 1720504860883, + "duration": 478, + "pid": 24720, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860909, + "end": 1720504860917, + "duration": 8, + "pid": 24720, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860909, + "end": 1720504860917, + "duration": 8, + "pid": 24720, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860917, + "end": 1720504860920, + "duration": 3, + "pid": 24720, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860917, + "end": 1720504860918, + "duration": 1, + "pid": 24720, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860918, + "end": 1720504860933, + "duration": 15, + "pid": 24720, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860947, + "end": 1720504860947, + "duration": 0, + "pid": 24720, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_24764.json b/developedcode/setgetdata/run/application_timing_24764.json new file mode 100644 index 0000000..673846f --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_24764.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857656, + "end": 1720504859192, + "duration": 1536, + "pid": 24764, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859193, + "end": 1720504860950, + "duration": 1757, + "pid": 24764, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859277, + "end": 1720504859386, + "duration": 109, + "pid": 24764, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859386, + "end": 1720504859476, + "duration": 90, + "pid": 24764, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859388, + "end": 1720504859394, + "duration": 6, + "pid": 24764, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 24764, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 24764, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859413, + "duration": 2, + "pid": 24764, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859415, + "end": 1720504859416, + "duration": 1, + "pid": 24764, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859429, + "duration": 2, + "pid": 24764, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859431, + "end": 1720504859432, + "duration": 1, + "pid": 24764, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859433, + "end": 1720504859434, + "duration": 1, + "pid": 24764, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 24764, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859442, + "end": 1720504859442, + "duration": 0, + "pid": 24764, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859448, + "end": 1720504859449, + "duration": 1, + "pid": 24764, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859455, + "end": 1720504859457, + "duration": 2, + "pid": 24764, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859460, + "end": 1720504859460, + "duration": 0, + "pid": 24764, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859468, + "end": 1720504859469, + "duration": 1, + "pid": 24764, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859470, + "end": 1720504859471, + "duration": 1, + "pid": 24764, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 24764, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859475, + "end": 1720504859475, + "duration": 0, + "pid": 24764, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859477, + "end": 1720504859562, + "duration": 85, + "pid": 24764, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859481, + "duration": 1, + "pid": 24764, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859482, + "end": 1720504859484, + "duration": 2, + "pid": 24764, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859487, + "end": 1720504859498, + "duration": 11, + "pid": 24764, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859500, + "end": 1720504859512, + "duration": 12, + "pid": 24764, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859513, + "end": 1720504859554, + "duration": 41, + "pid": 24764, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859556, + "end": 1720504859558, + "duration": 2, + "pid": 24764, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859562, + "end": 1720504859569, + "duration": 7, + "pid": 24764, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859565, + "end": 1720504859566, + "duration": 1, + "pid": 24764, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859569, + "end": 1720504859583, + "duration": 14, + "pid": 24764, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859573, + "end": 1720504859577, + "duration": 4, + "pid": 24764, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859583, + "end": 1720504859892, + "duration": 309, + "pid": 24764, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859584, + "end": 1720504859660, + "duration": 76, + "pid": 24764, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 24764, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859697, + "end": 1720504859701, + "duration": 4, + "pid": 24764, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859709, + "end": 1720504859846, + "duration": 137, + "pid": 24764, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859854, + "end": 1720504859871, + "duration": 17, + "pid": 24764, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859874, + "end": 1720504859876, + "duration": 2, + "pid": 24764, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859887, + "duration": 2, + "pid": 24764, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859892, + "end": 1720504859996, + "duration": 104, + "pid": 24764, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859893, + "end": 1720504859990, + "duration": 97, + "pid": 24764, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859993, + "end": 1720504859994, + "duration": 1, + "pid": 24764, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859997, + "end": 1720504860221, + "duration": 224, + "pid": 24764, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859998, + "end": 1720504859998, + "duration": 0, + "pid": 24764, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859999, + "end": 1720504860005, + "duration": 6, + "pid": 24764, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860011, + "end": 1720504860069, + "duration": 58, + "pid": 24764, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860070, + "end": 1720504860110, + "duration": 40, + "pid": 24764, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860111, + "end": 1720504860183, + "duration": 72, + "pid": 24764, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860190, + "end": 1720504860192, + "duration": 2, + "pid": 24764, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860193, + "end": 1720504860206, + "duration": 13, + "pid": 24764, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860208, + "end": 1720504860209, + "duration": 1, + "pid": 24764, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860210, + "end": 1720504860212, + "duration": 2, + "pid": 24764, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860213, + "end": 1720504860214, + "duration": 1, + "pid": 24764, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860218, + "end": 1720504860220, + "duration": 2, + "pid": 24764, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860251, + "end": 1720504860948, + "duration": 697, + "pid": 24764, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860332, + "end": 1720504860936, + "duration": 604, + "pid": 24764, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860332, + "end": 1720504860404, + "duration": 72, + "pid": 24764, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860333, + "end": 1720504860404, + "duration": 71, + "pid": 24764, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860404, + "end": 1720504860910, + "duration": 506, + "pid": 24764, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860404, + "end": 1720504860884, + "duration": 480, + "pid": 24764, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 24764, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860911, + "end": 1720504860919, + "duration": 8, + "pid": 24764, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 24764, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860920, + "end": 1720504860920, + "duration": 0, + "pid": 24764, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860921, + "end": 1720504860936, + "duration": 15, + "pid": 24764, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860949, + "end": 1720504860949, + "duration": 0, + "pid": 24764, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_25056.json b/developedcode/setgetdata/run/application_timing_25056.json new file mode 100644 index 0000000..02dc118 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_25056.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857832, + "end": 1720504859194, + "duration": 1362, + "pid": 25056, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860956, + "duration": 1761, + "pid": 25056, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859276, + "end": 1720504859387, + "duration": 111, + "pid": 25056, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859387, + "end": 1720504859474, + "duration": 87, + "pid": 25056, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859394, + "end": 1720504859395, + "duration": 1, + "pid": 25056, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859397, + "end": 1720504859398, + "duration": 1, + "pid": 25056, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859407, + "end": 1720504859409, + "duration": 2, + "pid": 25056, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859412, + "end": 1720504859413, + "duration": 1, + "pid": 25056, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859415, + "duration": 1, + "pid": 25056, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859417, + "end": 1720504859427, + "duration": 10, + "pid": 25056, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859430, + "end": 1720504859431, + "duration": 1, + "pid": 25056, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859433, + "end": 1720504859434, + "duration": 1, + "pid": 25056, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 25056, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859441, + "end": 1720504859442, + "duration": 1, + "pid": 25056, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859448, + "duration": 1, + "pid": 25056, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859455, + "end": 1720504859456, + "duration": 1, + "pid": 25056, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859458, + "end": 1720504859459, + "duration": 1, + "pid": 25056, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859466, + "end": 1720504859467, + "duration": 1, + "pid": 25056, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859468, + "end": 1720504859468, + "duration": 0, + "pid": 25056, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859470, + "end": 1720504859470, + "duration": 0, + "pid": 25056, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859473, + "end": 1720504859474, + "duration": 1, + "pid": 25056, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859476, + "end": 1720504859560, + "duration": 84, + "pid": 25056, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859481, + "duration": 1, + "pid": 25056, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859482, + "end": 1720504859484, + "duration": 2, + "pid": 25056, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 25056, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859499, + "end": 1720504859511, + "duration": 12, + "pid": 25056, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 25056, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859554, + "end": 1720504859556, + "duration": 2, + "pid": 25056, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859560, + "end": 1720504859567, + "duration": 7, + "pid": 25056, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859563, + "end": 1720504859564, + "duration": 1, + "pid": 25056, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859567, + "end": 1720504859579, + "duration": 12, + "pid": 25056, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859570, + "end": 1720504859573, + "duration": 3, + "pid": 25056, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859580, + "end": 1720504859891, + "duration": 311, + "pid": 25056, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859580, + "end": 1720504859659, + "duration": 79, + "pid": 25056, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859693, + "duration": 32, + "pid": 25056, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859706, + "end": 1720504859708, + "duration": 2, + "pid": 25056, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859711, + "end": 1720504859845, + "duration": 134, + "pid": 25056, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859850, + "end": 1720504859867, + "duration": 17, + "pid": 25056, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859870, + "end": 1720504859874, + "duration": 4, + "pid": 25056, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859874, + "end": 1720504859886, + "duration": 12, + "pid": 25056, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859891, + "end": 1720504859990, + "duration": 99, + "pid": 25056, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859892, + "end": 1720504859986, + "duration": 94, + "pid": 25056, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859988, + "end": 1720504859989, + "duration": 1, + "pid": 25056, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859990, + "end": 1720504860218, + "duration": 228, + "pid": 25056, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859997, + "end": 1720504859998, + "duration": 1, + "pid": 25056, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859998, + "end": 1720504860005, + "duration": 7, + "pid": 25056, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860011, + "end": 1720504860069, + "duration": 58, + "pid": 25056, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860071, + "end": 1720504860109, + "duration": 38, + "pid": 25056, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860111, + "end": 1720504860184, + "duration": 73, + "pid": 25056, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860187, + "end": 1720504860191, + "duration": 4, + "pid": 25056, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860192, + "end": 1720504860203, + "duration": 11, + "pid": 25056, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860206, + "end": 1720504860207, + "duration": 1, + "pid": 25056, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860208, + "end": 1720504860209, + "duration": 1, + "pid": 25056, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860210, + "end": 1720504860211, + "duration": 1, + "pid": 25056, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860218, + "duration": 1, + "pid": 25056, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860265, + "end": 1720504860954, + "duration": 689, + "pid": 25056, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860331, + "end": 1720504860939, + "duration": 608, + "pid": 25056, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860332, + "end": 1720504860401, + "duration": 69, + "pid": 25056, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860332, + "end": 1720504860401, + "duration": 69, + "pid": 25056, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860401, + "end": 1720504860910, + "duration": 509, + "pid": 25056, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860401, + "end": 1720504860882, + "duration": 481, + "pid": 25056, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 25056, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860911, + "end": 1720504860919, + "duration": 8, + "pid": 25056, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 25056, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860919, + "end": 1720504860920, + "duration": 1, + "pid": 25056, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860921, + "end": 1720504860939, + "duration": 18, + "pid": 25056, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860955, + "end": 1720504860955, + "duration": 0, + "pid": 25056, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_25152.json b/developedcode/setgetdata/run/application_timing_25152.json new file mode 100644 index 0000000..24b24f3 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_25152.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857797, + "end": 1720504859193, + "duration": 1396, + "pid": 25152, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859194, + "end": 1720504860954, + "duration": 1760, + "pid": 25152, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859386, + "duration": 111, + "pid": 25152, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859386, + "end": 1720504859477, + "duration": 91, + "pid": 25152, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 25152, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 25152, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 25152, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859412, + "duration": 1, + "pid": 25152, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859415, + "duration": 1, + "pid": 25152, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859417, + "end": 1720504859427, + "duration": 10, + "pid": 25152, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859428, + "end": 1720504859429, + "duration": 1, + "pid": 25152, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859430, + "end": 1720504859431, + "duration": 1, + "pid": 25152, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859433, + "end": 1720504859439, + "duration": 6, + "pid": 25152, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 25152, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859441, + "end": 1720504859446, + "duration": 5, + "pid": 25152, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859453, + "end": 1720504859454, + "duration": 1, + "pid": 25152, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859454, + "end": 1720504859455, + "duration": 1, + "pid": 25152, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859469, + "end": 1720504859470, + "duration": 1, + "pid": 25152, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859471, + "end": 1720504859472, + "duration": 1, + "pid": 25152, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 25152, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859475, + "end": 1720504859476, + "duration": 1, + "pid": 25152, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859478, + "end": 1720504859561, + "duration": 83, + "pid": 25152, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859479, + "end": 1720504859480, + "duration": 1, + "pid": 25152, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859482, + "duration": 1, + "pid": 25152, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 25152, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859500, + "end": 1720504859511, + "duration": 11, + "pid": 25152, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 25152, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859554, + "end": 1720504859557, + "duration": 3, + "pid": 25152, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859561, + "end": 1720504859569, + "duration": 8, + "pid": 25152, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859564, + "end": 1720504859565, + "duration": 1, + "pid": 25152, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859569, + "end": 1720504859588, + "duration": 19, + "pid": 25152, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859574, + "end": 1720504859581, + "duration": 7, + "pid": 25152, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859588, + "end": 1720504859895, + "duration": 307, + "pid": 25152, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859588, + "end": 1720504859659, + "duration": 71, + "pid": 25152, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859691, + "duration": 30, + "pid": 25152, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859699, + "end": 1720504859701, + "duration": 2, + "pid": 25152, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859708, + "end": 1720504859849, + "duration": 141, + "pid": 25152, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859855, + "end": 1720504859870, + "duration": 15, + "pid": 25152, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859876, + "end": 1720504859879, + "duration": 3, + "pid": 25152, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859885, + "end": 1720504859890, + "duration": 5, + "pid": 25152, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859895, + "end": 1720504859997, + "duration": 102, + "pid": 25152, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859896, + "end": 1720504859989, + "duration": 93, + "pid": 25152, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859992, + "end": 1720504859993, + "duration": 1, + "pid": 25152, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859997, + "end": 1720504860222, + "duration": 225, + "pid": 25152, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859998, + "end": 1720504859998, + "duration": 0, + "pid": 25152, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859999, + "end": 1720504860005, + "duration": 6, + "pid": 25152, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860010, + "end": 1720504860069, + "duration": 59, + "pid": 25152, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860070, + "end": 1720504860107, + "duration": 37, + "pid": 25152, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860108, + "end": 1720504860182, + "duration": 74, + "pid": 25152, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860185, + "end": 1720504860188, + "duration": 3, + "pid": 25152, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860191, + "end": 1720504860204, + "duration": 13, + "pid": 25152, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860206, + "end": 1720504860207, + "duration": 1, + "pid": 25152, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860209, + "end": 1720504860211, + "duration": 2, + "pid": 25152, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860213, + "end": 1720504860213, + "duration": 0, + "pid": 25152, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860217, + "end": 1720504860222, + "duration": 5, + "pid": 25152, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860263, + "end": 1720504860953, + "duration": 690, + "pid": 25152, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860331, + "end": 1720504860935, + "duration": 604, + "pid": 25152, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860403, + "duration": 72, + "pid": 25152, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860332, + "end": 1720504860403, + "duration": 71, + "pid": 25152, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860403, + "end": 1720504860910, + "duration": 507, + "pid": 25152, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860404, + "end": 1720504860883, + "duration": 479, + "pid": 25152, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860918, + "duration": 8, + "pid": 25152, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860918, + "duration": 8, + "pid": 25152, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860918, + "end": 1720504860921, + "duration": 3, + "pid": 25152, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860919, + "end": 1720504860919, + "duration": 0, + "pid": 25152, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860920, + "end": 1720504860935, + "duration": 15, + "pid": 25152, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860953, + "end": 1720504860953, + "duration": 0, + "pid": 25152, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_25316.json b/developedcode/setgetdata/run/application_timing_25316.json new file mode 100644 index 0000000..fba80bb --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_25316.json @@ -0,0 +1,578 @@ +[ + { + "name": "Process Start", + "start": 1720504819383, + "end": 1720504819955, + "duration": 572, + "pid": 25316, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504819956, + "end": 1720504820171, + "duration": 215, + "pid": 25316, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504819964, + "end": 1720504819974, + "duration": 10, + "pid": 25316, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504819974, + "end": 1720504819988, + "duration": 14, + "pid": 25316, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504819974, + "end": 1720504819974, + "duration": 0, + "pid": 25316, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504819975, + "end": 1720504819976, + "duration": 1, + "pid": 25316, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504819976, + "end": 1720504819976, + "duration": 0, + "pid": 25316, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504819977, + "end": 1720504819978, + "duration": 1, + "pid": 25316, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504819978, + "end": 1720504819979, + "duration": 1, + "pid": 25316, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504819979, + "end": 1720504819979, + "duration": 0, + "pid": 25316, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504819980, + "end": 1720504819980, + "duration": 0, + "pid": 25316, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504819980, + "end": 1720504819980, + "duration": 0, + "pid": 25316, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504819980, + "end": 1720504819981, + "duration": 1, + "pid": 25316, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1720504819981, + "end": 1720504819981, + "duration": 0, + "pid": 25316, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504819981, + "end": 1720504819982, + "duration": 1, + "pid": 25316, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1720504819982, + "end": 1720504819982, + "duration": 0, + "pid": 25316, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1720504819983, + "end": 1720504819983, + "duration": 0, + "pid": 25316, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-cors/config/config.default.js", + "start": 1720504819984, + "end": 1720504819984, + "duration": 0, + "pid": 25316, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg-downloader/config/config.default.js", + "start": 1720504819984, + "end": 1720504819984, + "duration": 0, + "pid": 25316, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg/config/config.default.js", + "start": 1720504819985, + "end": 1720504819985, + "duration": 0, + "pid": 25316, + "index": 19 + }, + { + "name": "Require(16) config/config.default.js", + "start": 1720504819985, + "end": 1720504819985, + "duration": 0, + "pid": 25316, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-security/config/config.local.js", + "start": 1720504819986, + "end": 1720504819986, + "duration": 0, + "pid": 25316, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg-watcher/config/config.local.js", + "start": 1720504819986, + "end": 1720504819986, + "duration": 0, + "pid": 25316, + "index": 22 + }, + { + "name": "Require(19) node_modules/egg-view/config/config.local.js", + "start": 1720504819987, + "end": 1720504819987, + "duration": 0, + "pid": 25316, + "index": 23 + }, + { + "name": "Require(20) node_modules/egg/config/config.local.js", + "start": 1720504819987, + "end": 1720504819988, + "duration": 1, + "pid": 25316, + "index": 24 + }, + { + "name": "Load extend/application.js", + "start": 1720504819989, + "end": 1720504820002, + "duration": 13, + "pid": 25316, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-session/app/extend/application.js", + "start": 1720504819989, + "end": 1720504819990, + "duration": 1, + "pid": 25316, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-security/app/extend/application.js", + "start": 1720504819990, + "end": 1720504819990, + "duration": 0, + "pid": 25316, + "index": 27 + }, + { + "name": "Require(23) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504819991, + "end": 1720504819992, + "duration": 1, + "pid": 25316, + "index": 28 + }, + { + "name": "Require(24) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504819993, + "end": 1720504819995, + "duration": 2, + "pid": 25316, + "index": 29 + }, + { + "name": "Require(25) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504819995, + "end": 1720504820000, + "duration": 5, + "pid": 25316, + "index": 30 + }, + { + "name": "Require(26) node_modules/egg-view/app/extend/application.js", + "start": 1720504820000, + "end": 1720504820001, + "duration": 1, + "pid": 25316, + "index": 31 + }, + { + "name": "Load extend/request.js", + "start": 1720504820002, + "end": 1720504820006, + "duration": 4, + "pid": 25316, + "index": 32 + }, + { + "name": "Require(27) node_modules/egg/app/extend/request.js", + "start": 1720504820004, + "end": 1720504820004, + "duration": 0, + "pid": 25316, + "index": 33 + }, + { + "name": "Load extend/response.js", + "start": 1720504820006, + "end": 1720504820009, + "duration": 3, + "pid": 25316, + "index": 34 + }, + { + "name": "Require(28) node_modules/egg/app/extend/response.js", + "start": 1720504820007, + "end": 1720504820008, + "duration": 1, + "pid": 25316, + "index": 35 + }, + { + "name": "Load extend/context.js", + "start": 1720504820009, + "end": 1720504820030, + "duration": 21, + "pid": 25316, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-security/app/extend/context.js", + "start": 1720504820010, + "end": 1720504820015, + "duration": 5, + "pid": 25316, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504820015, + "end": 1720504820016, + "duration": 1, + "pid": 25316, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504820016, + "end": 1720504820016, + "duration": 0, + "pid": 25316, + "index": 39 + }, + { + "name": "Require(32) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504820017, + "end": 1720504820025, + "duration": 8, + "pid": 25316, + "index": 40 + }, + { + "name": "Require(33) node_modules/egg-view/app/extend/context.js", + "start": 1720504820026, + "end": 1720504820026, + "duration": 0, + "pid": 25316, + "index": 41 + }, + { + "name": "Require(34) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504820027, + "end": 1720504820027, + "duration": 0, + "pid": 25316, + "index": 42 + }, + { + "name": "Require(35) node_modules/egg/app/extend/context.js", + "start": 1720504820027, + "end": 1720504820028, + "duration": 1, + "pid": 25316, + "index": 43 + }, + { + "name": "Load extend/helper.js", + "start": 1720504820030, + "end": 1720504820042, + "duration": 12, + "pid": 25316, + "index": 44 + }, + { + "name": "Require(36) node_modules/egg-security/app/extend/helper.js", + "start": 1720504820030, + "end": 1720504820039, + "duration": 9, + "pid": 25316, + "index": 45 + }, + { + "name": "Require(37) node_modules/egg/app/extend/helper.js", + "start": 1720504820041, + "end": 1720504820041, + "duration": 0, + "pid": 25316, + "index": 46 + }, + { + "name": "Load app.js", + "start": 1720504820042, + "end": 1720504820061, + "duration": 19, + "pid": 25316, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-session/app.js", + "start": 1720504820043, + "end": 1720504820043, + "duration": 0, + "pid": 25316, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-security/app.js", + "start": 1720504820043, + "end": 1720504820044, + "duration": 1, + "pid": 25316, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-onerror/app.js", + "start": 1720504820044, + "end": 1720504820048, + "duration": 4, + "pid": 25316, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-i18n/app.js", + "start": 1720504820049, + "end": 1720504820053, + "duration": 4, + "pid": 25316, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-watcher/app.js", + "start": 1720504820053, + "end": 1720504820058, + "duration": 5, + "pid": 25316, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-schedule/app.js", + "start": 1720504820058, + "end": 1720504820058, + "duration": 0, + "pid": 25316, + "index": 53 + }, + { + "name": "Require(44) node_modules/egg-multipart/app.js", + "start": 1720504820058, + "end": 1720504820059, + "duration": 1, + "pid": 25316, + "index": 54 + }, + { + "name": "Require(45) node_modules/egg-development/app.js", + "start": 1720504820059, + "end": 1720504820059, + "duration": 0, + "pid": 25316, + "index": 55 + }, + { + "name": "Require(46) node_modules/egg-logrotator/app.js", + "start": 1720504820060, + "end": 1720504820060, + "duration": 0, + "pid": 25316, + "index": 56 + }, + { + "name": "Require(47) node_modules/egg-static/app.js", + "start": 1720504820060, + "end": 1720504820060, + "duration": 0, + "pid": 25316, + "index": 57 + }, + { + "name": "Require(48) node_modules/egg-cors/app.js", + "start": 1720504820060, + "end": 1720504820060, + "duration": 0, + "pid": 25316, + "index": 58 + }, + { + "name": "Require(49) app.js", + "start": 1720504820061, + "end": 1720504820061, + "duration": 0, + "pid": 25316, + "index": 59 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504820068, + "end": 1720504820170, + "duration": 102, + "pid": 25316, + "index": 60 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504820089, + "end": 1720504820164, + "duration": 75, + "pid": 25316, + "index": 61 + }, + { + "name": "Load Service", + "start": 1720504820089, + "end": 1720504820104, + "duration": 15, + "pid": 25316, + "index": 62 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504820090, + "end": 1720504820104, + "duration": 14, + "pid": 25316, + "index": 63 + }, + { + "name": "Load Middleware", + "start": 1720504820104, + "end": 1720504820157, + "duration": 53, + "pid": 25316, + "index": 64 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504820104, + "end": 1720504820151, + "duration": 47, + "pid": 25316, + "index": 65 + }, + { + "name": "Load Controller", + "start": 1720504820157, + "end": 1720504820158, + "duration": 1, + "pid": 25316, + "index": 66 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504820157, + "end": 1720504820158, + "duration": 1, + "pid": 25316, + "index": 67 + }, + { + "name": "Load Router", + "start": 1720504820158, + "end": 1720504820159, + "duration": 1, + "pid": 25316, + "index": 68 + }, + { + "name": "Require(50) app/router.js", + "start": 1720504820158, + "end": 1720504820158, + "duration": 0, + "pid": 25316, + "index": 69 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504820158, + "end": 1720504820164, + "duration": 6, + "pid": 25316, + "index": 70 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504820170, + "end": 1720504820171, + "duration": 1, + "pid": 25316, + "index": 71 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_3416.json b/developedcode/setgetdata/run/application_timing_3416.json new file mode 100644 index 0000000..5e1ddcb --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_3416.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857774, + "end": 1720504859194, + "duration": 1420, + "pid": 3416, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860950, + "duration": 1755, + "pid": 3416, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859275, + "end": 1720504859385, + "duration": 110, + "pid": 3416, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859473, + "duration": 88, + "pid": 3416, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 3416, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 3416, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 3416, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859413, + "duration": 2, + "pid": 3416, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859414, + "end": 1720504859416, + "duration": 2, + "pid": 3416, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859428, + "duration": 1, + "pid": 3416, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859430, + "end": 1720504859431, + "duration": 1, + "pid": 3416, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859432, + "end": 1720504859434, + "duration": 2, + "pid": 3416, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859439, + "duration": 0, + "pid": 3416, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859440, + "end": 1720504859441, + "duration": 1, + "pid": 3416, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859446, + "end": 1720504859446, + "duration": 0, + "pid": 3416, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859453, + "end": 1720504859453, + "duration": 0, + "pid": 3416, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859455, + "end": 1720504859455, + "duration": 0, + "pid": 3416, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859457, + "end": 1720504859461, + "duration": 4, + "pid": 3416, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859465, + "end": 1720504859466, + "duration": 1, + "pid": 3416, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859468, + "end": 1720504859468, + "duration": 0, + "pid": 3416, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859470, + "end": 1720504859471, + "duration": 1, + "pid": 3416, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859474, + "end": 1720504859562, + "duration": 88, + "pid": 3416, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859475, + "end": 1720504859479, + "duration": 4, + "pid": 3416, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859480, + "end": 1720504859482, + "duration": 2, + "pid": 3416, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859483, + "end": 1720504859497, + "duration": 14, + "pid": 3416, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859498, + "end": 1720504859511, + "duration": 13, + "pid": 3416, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 3416, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859554, + "end": 1720504859557, + "duration": 3, + "pid": 3416, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859562, + "end": 1720504859569, + "duration": 7, + "pid": 3416, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859565, + "end": 1720504859566, + "duration": 1, + "pid": 3416, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859569, + "end": 1720504859588, + "duration": 19, + "pid": 3416, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859579, + "end": 1720504859582, + "duration": 3, + "pid": 3416, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859588, + "end": 1720504859894, + "duration": 306, + "pid": 3416, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859589, + "end": 1720504859659, + "duration": 70, + "pid": 3416, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859692, + "duration": 31, + "pid": 3416, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859699, + "end": 1720504859700, + "duration": 1, + "pid": 3416, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859708, + "end": 1720504859844, + "duration": 136, + "pid": 3416, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859853, + "end": 1720504859871, + "duration": 18, + "pid": 3416, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859877, + "end": 1720504859880, + "duration": 3, + "pid": 3416, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859886, + "end": 1720504859890, + "duration": 4, + "pid": 3416, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859894, + "end": 1720504859993, + "duration": 99, + "pid": 3416, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859895, + "end": 1720504859987, + "duration": 92, + "pid": 3416, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859989, + "end": 1720504859990, + "duration": 1, + "pid": 3416, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859993, + "end": 1720504860220, + "duration": 227, + "pid": 3416, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859996, + "end": 1720504859997, + "duration": 1, + "pid": 3416, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859998, + "end": 1720504860004, + "duration": 6, + "pid": 3416, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860005, + "end": 1720504860067, + "duration": 62, + "pid": 3416, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860067, + "end": 1720504860109, + "duration": 42, + "pid": 3416, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860181, + "duration": 71, + "pid": 3416, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860184, + "end": 1720504860187, + "duration": 3, + "pid": 3416, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860188, + "end": 1720504860200, + "duration": 12, + "pid": 3416, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860201, + "end": 1720504860202, + "duration": 1, + "pid": 3416, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860204, + "end": 1720504860205, + "duration": 1, + "pid": 3416, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860207, + "end": 1720504860208, + "duration": 1, + "pid": 3416, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860216, + "end": 1720504860219, + "duration": 3, + "pid": 3416, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860246, + "end": 1720504860948, + "duration": 702, + "pid": 3416, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860332, + "end": 1720504860934, + "duration": 602, + "pid": 3416, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860332, + "end": 1720504860401, + "duration": 69, + "pid": 3416, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860333, + "end": 1720504860401, + "duration": 68, + "pid": 3416, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860401, + "end": 1720504860909, + "duration": 508, + "pid": 3416, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860401, + "end": 1720504860883, + "duration": 482, + "pid": 3416, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860909, + "end": 1720504860918, + "duration": 9, + "pid": 3416, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860909, + "end": 1720504860918, + "duration": 9, + "pid": 3416, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860918, + "end": 1720504860921, + "duration": 3, + "pid": 3416, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860919, + "end": 1720504860919, + "duration": 0, + "pid": 3416, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860920, + "end": 1720504860934, + "duration": 14, + "pid": 3416, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860948, + "end": 1720504860949, + "duration": 1, + "pid": 3416, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/application_timing_5384.json b/developedcode/setgetdata/run/application_timing_5384.json new file mode 100644 index 0000000..503e4f5 --- /dev/null +++ b/developedcode/setgetdata/run/application_timing_5384.json @@ -0,0 +1,538 @@ +[ + { + "name": "Process Start", + "start": 1720504857749, + "end": 1720504859194, + "duration": 1445, + "pid": 5384, + "index": 0 + }, + { + "name": "Application Start", + "start": 1720504859195, + "end": 1720504860972, + "duration": 1777, + "pid": 5384, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1720504859276, + "end": 1720504859385, + "duration": 109, + "pid": 5384, + "index": 2 + }, + { + "name": "Load Config", + "start": 1720504859385, + "end": 1720504859476, + "duration": 91, + "pid": 5384, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1720504859387, + "end": 1720504859393, + "duration": 6, + "pid": 5384, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1720504859396, + "end": 1720504859397, + "duration": 1, + "pid": 5384, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1720504859398, + "end": 1720504859408, + "duration": 10, + "pid": 5384, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1720504859411, + "end": 1720504859413, + "duration": 2, + "pid": 5384, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1720504859415, + "end": 1720504859416, + "duration": 1, + "pid": 5384, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1720504859427, + "end": 1720504859429, + "duration": 2, + "pid": 5384, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1720504859432, + "end": 1720504859433, + "duration": 1, + "pid": 5384, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1720504859434, + "end": 1720504859435, + "duration": 1, + "pid": 5384, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1720504859439, + "end": 1720504859440, + "duration": 1, + "pid": 5384, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-logrotator/config/config.default.js", + "start": 1720504859442, + "end": 1720504859442, + "duration": 0, + "pid": 5384, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-static/config/config.default.js", + "start": 1720504859447, + "end": 1720504859447, + "duration": 0, + "pid": 5384, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-view/config/config.default.js", + "start": 1720504859455, + "end": 1720504859456, + "duration": 1, + "pid": 5384, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-cors/config/config.default.js", + "start": 1720504859457, + "end": 1720504859458, + "duration": 1, + "pid": 5384, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg-downloader/config/config.default.js", + "start": 1720504859467, + "end": 1720504859468, + "duration": 1, + "pid": 5384, + "index": 17 + }, + { + "name": "Require(14) node_modules/egg/config/config.default.js", + "start": 1720504859470, + "end": 1720504859471, + "duration": 1, + "pid": 5384, + "index": 18 + }, + { + "name": "Require(15) config/config.default.js", + "start": 1720504859473, + "end": 1720504859473, + "duration": 0, + "pid": 5384, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-static/config/config.prod.js", + "start": 1720504859474, + "end": 1720504859475, + "duration": 1, + "pid": 5384, + "index": 20 + }, + { + "name": "Load extend/application.js", + "start": 1720504859477, + "end": 1720504859560, + "duration": 83, + "pid": 5384, + "index": 21 + }, + { + "name": "Require(17) node_modules/egg-session/app/extend/application.js", + "start": 1720504859479, + "end": 1720504859480, + "duration": 1, + "pid": 5384, + "index": 22 + }, + { + "name": "Require(18) node_modules/egg-security/app/extend/application.js", + "start": 1720504859481, + "end": 1720504859483, + "duration": 2, + "pid": 5384, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-jsonp/app/extend/application.js", + "start": 1720504859486, + "end": 1720504859497, + "duration": 11, + "pid": 5384, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/application.js", + "start": 1720504859500, + "end": 1720504859511, + "duration": 11, + "pid": 5384, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/application.js", + "start": 1720504859512, + "end": 1720504859553, + "duration": 41, + "pid": 5384, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-view/app/extend/application.js", + "start": 1720504859554, + "end": 1720504859556, + "duration": 2, + "pid": 5384, + "index": 27 + }, + { + "name": "Load extend/request.js", + "start": 1720504859560, + "end": 1720504859568, + "duration": 8, + "pid": 5384, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg/app/extend/request.js", + "start": 1720504859564, + "end": 1720504859565, + "duration": 1, + "pid": 5384, + "index": 29 + }, + { + "name": "Load extend/response.js", + "start": 1720504859568, + "end": 1720504859582, + "duration": 14, + "pid": 5384, + "index": 30 + }, + { + "name": "Require(24) node_modules/egg/app/extend/response.js", + "start": 1720504859571, + "end": 1720504859578, + "duration": 7, + "pid": 5384, + "index": 31 + }, + { + "name": "Load extend/context.js", + "start": 1720504859582, + "end": 1720504859896, + "duration": 314, + "pid": 5384, + "index": 32 + }, + { + "name": "Require(25) node_modules/egg-security/app/extend/context.js", + "start": 1720504859583, + "end": 1720504859659, + "duration": 76, + "pid": 5384, + "index": 33 + }, + { + "name": "Require(26) node_modules/egg-jsonp/app/extend/context.js", + "start": 1720504859661, + "end": 1720504859691, + "duration": 30, + "pid": 5384, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-i18n/app/extend/context.js", + "start": 1720504859697, + "end": 1720504859699, + "duration": 2, + "pid": 5384, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-multipart/app/extend/context.js", + "start": 1720504859699, + "end": 1720504859849, + "duration": 150, + "pid": 5384, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-view/app/extend/context.js", + "start": 1720504859856, + "end": 1720504859873, + "duration": 17, + "pid": 5384, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-downloader/app/extend/context.js", + "start": 1720504859878, + "end": 1720504859880, + "duration": 2, + "pid": 5384, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg/app/extend/context.js", + "start": 1720504859886, + "end": 1720504859890, + "duration": 4, + "pid": 5384, + "index": 39 + }, + { + "name": "Load extend/helper.js", + "start": 1720504859896, + "end": 1720504859997, + "duration": 101, + "pid": 5384, + "index": 40 + }, + { + "name": "Require(32) node_modules/egg-security/app/extend/helper.js", + "start": 1720504859897, + "end": 1720504859991, + "duration": 94, + "pid": 5384, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg/app/extend/helper.js", + "start": 1720504859994, + "end": 1720504859995, + "duration": 1, + "pid": 5384, + "index": 42 + }, + { + "name": "Load app.js", + "start": 1720504859998, + "end": 1720504860217, + "duration": 219, + "pid": 5384, + "index": 43 + }, + { + "name": "Require(34) node_modules/egg-session/app.js", + "start": 1720504859998, + "end": 1720504859999, + "duration": 1, + "pid": 5384, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-security/app.js", + "start": 1720504859999, + "end": 1720504860005, + "duration": 6, + "pid": 5384, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-onerror/app.js", + "start": 1720504860011, + "end": 1720504860070, + "duration": 59, + "pid": 5384, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-i18n/app.js", + "start": 1720504860071, + "end": 1720504860109, + "duration": 38, + "pid": 5384, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-watcher/app.js", + "start": 1720504860110, + "end": 1720504860180, + "duration": 70, + "pid": 5384, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-schedule/app.js", + "start": 1720504860183, + "end": 1720504860186, + "duration": 3, + "pid": 5384, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-multipart/app.js", + "start": 1720504860187, + "end": 1720504860199, + "duration": 12, + "pid": 5384, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-logrotator/app.js", + "start": 1720504860200, + "end": 1720504860200, + "duration": 0, + "pid": 5384, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-static/app.js", + "start": 1720504860200, + "end": 1720504860200, + "duration": 0, + "pid": 5384, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-cors/app.js", + "start": 1720504860202, + "end": 1720504860203, + "duration": 1, + "pid": 5384, + "index": 53 + }, + { + "name": "Require(44) app.js", + "start": 1720504860205, + "end": 1720504860216, + "duration": 11, + "pid": 5384, + "index": 54 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1720504860246, + "end": 1720504860965, + "duration": 719, + "pid": 5384, + "index": 55 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1720504860331, + "end": 1720504860952, + "duration": 621, + "pid": 5384, + "index": 56 + }, + { + "name": "Load Service", + "start": 1720504860331, + "end": 1720504860399, + "duration": 68, + "pid": 5384, + "index": 57 + }, + { + "name": "Load \"service\" to Context", + "start": 1720504860331, + "end": 1720504860399, + "duration": 68, + "pid": 5384, + "index": 58 + }, + { + "name": "Load Middleware", + "start": 1720504860400, + "end": 1720504860910, + "duration": 510, + "pid": 5384, + "index": 59 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1720504860400, + "end": 1720504860883, + "duration": 483, + "pid": 5384, + "index": 60 + }, + { + "name": "Load Controller", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 5384, + "index": 61 + }, + { + "name": "Load \"controller\" to Application", + "start": 1720504860910, + "end": 1720504860919, + "duration": 9, + "pid": 5384, + "index": 62 + }, + { + "name": "Load Router", + "start": 1720504860919, + "end": 1720504860922, + "duration": 3, + "pid": 5384, + "index": 63 + }, + { + "name": "Require(45) app/router.js", + "start": 1720504860920, + "end": 1720504860920, + "duration": 0, + "pid": 5384, + "index": 64 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:306:10", + "start": 1720504860921, + "end": 1720504860952, + "duration": 31, + "pid": 5384, + "index": 65 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1720504860971, + "end": 1720504860971, + "duration": 0, + "pid": 5384, + "index": 66 + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/run/router.json b/developedcode/setgetdata/run/router.json new file mode 100644 index 0000000..b8ab666 --- /dev/null +++ b/developedcode/setgetdata/run/router.json @@ -0,0 +1,93 @@ +[ + { + "name": null, + "methods": [ + "POST" + ], + "paramNames": [], + "path": "/self/setRouterFav", + "regexp": "/^\\/self\\/setRouterFav(?:\\/(?=$))?$/", + "stack": [ + "wrappedController" + ] + }, + { + "name": null, + "methods": [ + "POST" + ], + "paramNames": [], + "path": "/self/getRouterFav", + "regexp": "/^\\/self\\/getRouterFav(?:\\/(?=$))?$/", + "stack": [ + "wrappedController" + ] + }, + { + "name": null, + "methods": [ + "HEAD", + "GET" + ], + "paramNames": [ + { + "name": "mapName", + "prefix": "/", + "delimiter": "/", + "optional": false, + "repeat": false, + "partial": false, + "asterisk": false, + "pattern": "[^\\/]+?" + }, + { + "name": "z", + "prefix": "/", + "delimiter": "/", + "optional": false, + "repeat": false, + "partial": false, + "asterisk": false, + "pattern": "[^\\/]+?" + }, + { + "name": "x", + "prefix": "/", + "delimiter": "/", + "optional": false, + "repeat": false, + "partial": false, + "asterisk": false, + "pattern": "[^\\/]+?" + }, + { + "name": "y", + "prefix": "/", + "delimiter": "/", + "optional": false, + "repeat": false, + "partial": false, + "asterisk": false, + "pattern": "[^\\/]+?" + } + ], + "path": "/self/:mapName/:z/:x/:y", + "regexp": "/^\\/self\\/((?:[^\\/]+?))\\/((?:[^\\/]+?))\\/((?:[^\\/]+?))\\/((?:[^\\/]+?))(?:\\/(?=$))?$/", + "stack": [ + "wrappedController" + ] + }, + { + "name": null, + "methods": [ + "HEAD", + "GET" + ], + "paramNames": [], + "path": "/self/getFile", + "regexp": "/^\\/self\\/getFile(?:\\/(?=$))?$/", + "stack": [ + "wrappedController" + ] + } +] \ No newline at end of file diff --git a/developedcode/setgetdata/typings/app/controller/index.d.ts b/developedcode/setgetdata/typings/app/controller/index.d.ts new file mode 100644 index 0000000..7dad0e3 --- /dev/null +++ b/developedcode/setgetdata/typings/app/controller/index.d.ts @@ -0,0 +1,12 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import ExportHome = require('../../../app/controller/home'); + +declare module 'egg' { + interface IController { + home: ExportHome; + } +} diff --git a/developedcode/setgetdata/typings/app/index.d.ts b/developedcode/setgetdata/typings/app/index.d.ts new file mode 100644 index 0000000..c604948 --- /dev/null +++ b/developedcode/setgetdata/typings/app/index.d.ts @@ -0,0 +1,7 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +export * from 'egg'; +export as namespace Egg; diff --git a/developedcode/setgetdata/typings/app/service/index.d.ts b/developedcode/setgetdata/typings/app/service/index.d.ts new file mode 100644 index 0000000..e5140dc --- /dev/null +++ b/developedcode/setgetdata/typings/app/service/index.d.ts @@ -0,0 +1,16 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +type AnyClass = new (...args: any[]) => any; +type AnyFunc = (...args: any[]) => T; +type CanExportFunc = AnyFunc> | AnyFunc>; +type AutoInstanceType : T> = U extends AnyClass ? InstanceType : U; +import ExportHome = require('../../../app/service/home'); + +declare module 'egg' { + interface IService { + home: AutoInstanceType; + } +} diff --git a/developedcode/setgetdata/typings/config/index.d.ts b/developedcode/setgetdata/typings/config/index.d.ts new file mode 100644 index 0000000..a8add35 --- /dev/null +++ b/developedcode/setgetdata/typings/config/index.d.ts @@ -0,0 +1,12 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import { EggAppConfig } from 'egg'; +import ExportConfigDefault = require('../../config/config.default'); +type ConfigDefault = ReturnType; +type NewEggAppConfig = ConfigDefault; +declare module 'egg' { + interface EggAppConfig extends NewEggAppConfig { } +} \ No newline at end of file diff --git a/developedcode/setgetdata/typings/config/plugin.d.ts b/developedcode/setgetdata/typings/config/plugin.d.ts new file mode 100644 index 0000000..c276226 --- /dev/null +++ b/developedcode/setgetdata/typings/config/plugin.d.ts @@ -0,0 +1,38 @@ +// This file is created by egg-ts-helper@1.35.1 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import 'egg-onerror'; +import 'egg-session'; +import 'egg-i18n'; +import 'egg-watcher'; +import 'egg-multipart'; +import 'egg-security'; +import 'egg-development'; +import 'egg-logrotator'; +import 'egg-schedule'; +import 'egg-static'; +import 'egg-jsonp'; +import 'egg-view'; +import 'egg-cors'; +import 'egg-downloader'; +import { EggPluginItem } from 'egg'; +declare module 'egg' { + interface EggPlugin { + onerror?: EggPluginItem; + session?: EggPluginItem; + i18n?: EggPluginItem; + watcher?: EggPluginItem; + multipart?: EggPluginItem; + security?: EggPluginItem; + development?: EggPluginItem; + logrotator?: EggPluginItem; + schedule?: EggPluginItem; + static?: EggPluginItem; + jsonp?: EggPluginItem; + view?: EggPluginItem; + cors?: EggPluginItem; + downloader?: EggPluginItem; + } +} \ No newline at end of file diff --git a/developedcode/sfykf/.browserslistrc b/developedcode/sfykf/.browserslistrc new file mode 100644 index 0000000..dc3bc09 --- /dev/null +++ b/developedcode/sfykf/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/developedcode/sfykf/.editorconfig b/developedcode/sfykf/.editorconfig new file mode 100644 index 0000000..7053c49 --- /dev/null +++ b/developedcode/sfykf/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/developedcode/sfykf/.gitignore b/developedcode/sfykf/.gitignore new file mode 100644 index 0000000..837579e --- /dev/null +++ b/developedcode/sfykf/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist +package-lock.json + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/developedcode/sfykf/README.md b/developedcode/sfykf/README.md new file mode 100644 index 0000000..dc877c6 --- /dev/null +++ b/developedcode/sfykf/README.md @@ -0,0 +1,92 @@ +# sfykf + + + +## Getting started + +To make it easy for you to get started with GitLab, here's a list of recommended next steps. + +Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! + +## Add your files + +- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files +- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: + +``` +cd existing_repo +git remote add origin http://114.132.224.5:8800/sfy/sfykf.git +git branch -M main +git push -uf origin main +``` + +## Integrate with your tools + +- [ ] [Set up project integrations](http://7cc4038b9860/sfy/sfykf/-/settings/integrations) + +## Collaborate with your team + +- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) +- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) +- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) +- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) +- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) + +## Test and Deploy + +Use the built-in continuous integration in GitLab. + +- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) +- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) +- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) +- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) +- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) + +*** + +# Editing this README + +When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. + +## Suggestions for a good README +Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. + +## Name +Choose a self-explaining name for your project. + +## Description +Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. + +## Badges +On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. + +## Visuals +Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. + +## Installation +Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. + +## Usage +Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. + +## Support +Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. + +## Roadmap +If you have ideas for releases in the future, it is a good idea to list them in the README. + +## Contributing +State if you are open to contributions and what your requirements are for accepting them. + +For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. + +You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. + +## Authors and acknowledgment +Show your appreciation to those who have contributed to the project. + +## License +For open source projects, say how it is licensed. + +## Project status +If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. diff --git a/developedcode/sfykf/index.html b/developedcode/sfykf/index.html new file mode 100644 index 0000000..b26b2e7 --- /dev/null +++ b/developedcode/sfykf/index.html @@ -0,0 +1,16 @@ + + + + + + + 新乡医学院康复学院 + + + +
+ + + diff --git a/developedcode/sfykf/jsconfig.json b/developedcode/sfykf/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/developedcode/sfykf/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/developedcode/sfykf/package.json b/developedcode/sfykf/package.json new file mode 100644 index 0000000..f9372d9 --- /dev/null +++ b/developedcode/sfykf/package.json @@ -0,0 +1,31 @@ +{ + "name": "sfykf", + "version": "0.0.1", + "scripts": { + "dev": "vite", + "build": "vite build --mode staging", + "preview": "vite preview" + }, + "dependencies": { + "@mdi/font": "7.0.96", + "axios": "^1.4.0", + "dayjs": "^1.11.9", + "element-plus": "^2.3.4", + "lodash": "^4.17.21", + "pinia": "^2.0.23", + "qs": "^6.11.2", + "roboto-fontface": "*", + "vue": "^3.2.0", + "vue-router": "^4.0.0", + "vuetify": "^3.0.0", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^3.0.3", + "terser": "^5.26.0", + "unplugin-auto-import": "^0.16.0", + "unplugin-vue-components": "^0.24.1", + "vite": "^4.2.0", + "vite-plugin-vuetify": "^1.0.0" + } +} diff --git a/developedcode/sfykf/src/App.vue b/developedcode/sfykf/src/App.vue new file mode 100644 index 0000000..37522aa --- /dev/null +++ b/developedcode/sfykf/src/App.vue @@ -0,0 +1,7 @@ + + + diff --git a/developedcode/sfykf/src/api/education.js b/developedcode/sfykf/src/api/education.js new file mode 100644 index 0000000..faf9ea2 --- /dev/null +++ b/developedcode/sfykf/src/api/education.js @@ -0,0 +1,9 @@ +import { getSimple, getDetail } from "./index"; +//获取教育教学详情 +export function getEducationDetailData(data) { + return getDetail(data) +} +//获取教育教学列表 +export function getEducationData(data) { + return getSimple("646828a2e4a4e12cee0da08a", data) +} diff --git a/developedcode/sfykf/src/api/expert.js b/developedcode/sfykf/src/api/expert.js new file mode 100644 index 0000000..b5807d1 --- /dev/null +++ b/developedcode/sfykf/src/api/expert.js @@ -0,0 +1,9 @@ +import { getSimple, getDetail } from "./index"; +//获取新闻详情 +export function getExpertDetailData(data) { + return getDetail(data) +} +//获取新闻列表 +export function getExpertData(data) { + return getSimple("646828f0e4a4e12cee0da1db", data) +} diff --git a/developedcode/sfykf/src/api/home.js b/developedcode/sfykf/src/api/home.js new file mode 100644 index 0000000..49aec43 --- /dev/null +++ b/developedcode/sfykf/src/api/home.js @@ -0,0 +1,22 @@ +import { getDetail, getSimple } from "./index"; +//获取首页图片和通知公告图片 +export function getHomeData(data) { + return getDetail(data) +} +//获取notice标题和时间 +export function getNoticeData(data) { + return getSimple("64682049e4a4e12cee0d9eaf", data) +} + +//获取名师介绍的简易 +export function getDocData(data) { + return getSimple("646828f0e4a4e12cee0da1db", data) +} +//获取科学研究标题和时间 +export function getScienceData(data) { + return getSimple("646828cae4a4e12cee0da12f", data) +} +//获取教育教学标题和时间 +export function getEducationData(data) { + return getSimple("646828a2e4a4e12cee0da08a", data) +} diff --git a/developedcode/sfykf/src/api/index.js b/developedcode/sfykf/src/api/index.js new file mode 100644 index 0000000..2db9d1d --- /dev/null +++ b/developedcode/sfykf/src/api/index.js @@ -0,0 +1,19 @@ +import _axios from "@/plugins/axios"; +let url = `/biobank/public/workflowlaunchsAnonymous` +let method = "POST" +//获取详细数据 +export function getDetail(data) { + return _axios({ + url: url, + method: method, + data, + }); +} +//获取简易数据 +export function getSimple(id, params) { + return _axios({ + url: `/biobank/public/getDict/${id}`, + method: "get", + params, + }); +} diff --git a/developedcode/sfykf/src/api/news.js b/developedcode/sfykf/src/api/news.js new file mode 100644 index 0000000..dab7779 --- /dev/null +++ b/developedcode/sfykf/src/api/news.js @@ -0,0 +1,9 @@ +import { getSimple, getDetail } from "./index"; +//获取新闻详情 +export function getNewsDetailData(data) { + return getDetail(data) +} +//获取新闻列表 +export function getNewsData(data) { + return getSimple("64682049e4a4e12cee0d9eaf", data) +} diff --git a/developedcode/sfykf/src/api/scientific.js b/developedcode/sfykf/src/api/scientific.js new file mode 100644 index 0000000..fad305d --- /dev/null +++ b/developedcode/sfykf/src/api/scientific.js @@ -0,0 +1,9 @@ +import { getSimple, getDetail } from "./index"; +//获取新闻详情 +export function getScientificDetailData(data) { + return getDetail(data) +} +//获取新闻列表 +export function getScientificData(data) { + return getSimple("646828cae4a4e12cee0da12f", data) +} diff --git a/developedcode/sfykf/src/api/university.js b/developedcode/sfykf/src/api/university.js new file mode 100644 index 0000000..a3525cb --- /dev/null +++ b/developedcode/sfykf/src/api/university.js @@ -0,0 +1,11 @@ +import { getDetail } from "./index"; +//获取学校概况 +export function getUniversityData(data) { + return getDetail(data) +} + +//获取现任领导列表 +export function getCurrentLeaderData(data) { + return getDetail(data) +} + diff --git a/developedcode/sfykf/src/assets/css/base.css b/developedcode/sfykf/src/assets/css/base.css new file mode 100644 index 0000000..59b26d4 --- /dev/null +++ b/developedcode/sfykf/src/assets/css/base.css @@ -0,0 +1,82 @@ +.mainMidBgColor { + background-color: #fff; + padding: 0 12px; +} +.newsTitle { + background-image: url("@/assets/img/newsbg.png"); + background-size: cover; + height: 120px; + color: #fff; +} +.homeHeight { + height: calc(100vh - 490px); +} +.appMain::-webkit-scrollbar { + width: 10px; +} + +.appMain::-webkit-scrollbar-thumb { + background: #ccc; + border-radius: 5px; +} + +.appMain::-webkit-scrollbar-thumb:hover { + background: #722420; +} +.mainHeight { + min-height: calc(100vh - 448px); + /* height: calc(100vh - 465px); */ +} +.mainHeight::-webkit-scrollbar { + width: 10px; +} + +.mainHeight::-webkit-scrollbar-thumb { + background: #ccc; + border-radius: 5px; +} + +.mainHeight::-webkit-scrollbar-thumb:hover { + background: #722420; +} +.mainContent { + height: calc(100vh - 382px); + overflow-y: auto; +} +.mainContent::-webkit-scrollbar { + width: 10px; +} + +.mainContent::-webkit-scrollbar-thumb { + background: #ccc; + border-radius: 5px; +} + +.mainContent::-webkit-scrollbar-thumb:hover { + background: #722420; +} +.mainDetailContent { + height: calc(100vh - 325px); + overflow-y: auto; +} +.mainDetailContent::-webkit-scrollbar { + width: 10px; +} + +.mainDetailContent::-webkit-scrollbar-thumb { + background: #ccc; + border-radius: 5px; +} + +.mainDetailContent::-webkit-scrollbar-thumb:hover { + background: #722420; +} +.breadcrumb { + background-color: #f6f6f6; +} +.content { + min-height: calc(100vh - 465px); +} +.nextBg { + background-color: #722420 !important; +} diff --git a/developedcode/sfykf/src/assets/img/logo.jpg b/developedcode/sfykf/src/assets/img/logo.jpg new file mode 100644 index 0000000..d9e0299 Binary files /dev/null and b/developedcode/sfykf/src/assets/img/logo.jpg differ diff --git a/developedcode/sfykf/src/assets/img/newsbg.png b/developedcode/sfykf/src/assets/img/newsbg.png new file mode 100644 index 0000000..196cb31 Binary files /dev/null and b/developedcode/sfykf/src/assets/img/newsbg.png differ diff --git a/developedcode/sfykf/src/assets/img/notice.png b/developedcode/sfykf/src/assets/img/notice.png new file mode 100644 index 0000000..9b8e65d Binary files /dev/null and b/developedcode/sfykf/src/assets/img/notice.png differ diff --git a/developedcode/sfykf/src/assets/img/universitybg.png b/developedcode/sfykf/src/assets/img/universitybg.png new file mode 100644 index 0000000..4be10dd Binary files /dev/null and b/developedcode/sfykf/src/assets/img/universitybg.png differ diff --git a/developedcode/sfykf/src/layouts/default/view.vue b/developedcode/sfykf/src/layouts/default/view.vue new file mode 100644 index 0000000..a288976 --- /dev/null +++ b/developedcode/sfykf/src/layouts/default/view.vue @@ -0,0 +1,267 @@ + + + + diff --git a/developedcode/sfykf/src/main.js b/developedcode/sfykf/src/main.js new file mode 100644 index 0000000..fd4c024 --- /dev/null +++ b/developedcode/sfykf/src/main.js @@ -0,0 +1,27 @@ +/** + * main.js + * + * Bootstraps Vuetify and other plugins then mounts the App` + */ + +// Components +import App from './App.vue' +import _ from "lodash" +import dayjs from "dayjs" +import "./assets/css/base.css" +// Composables +import { createApp } from 'vue' + +// Plugins +import { registerPlugins } from '@/plugins' + +import { ElMessage } from "element-plus"; +import "element-plus/es/components/message/style/css"; + +const app = createApp(App) +app.config.globalProperties.$ElMessage = ElMessage; //挂载到app实例上 +app.config.globalProperties.$_ = _; //挂载到app实例上 +app.config.globalProperties.$dayjs = dayjs; //挂载到app实例上 +registerPlugins(app) + +app.mount('#app') diff --git a/developedcode/sfykf/src/plugins/axios.js b/developedcode/sfykf/src/plugins/axios.js new file mode 100644 index 0000000..1efa49a --- /dev/null +++ b/developedcode/sfykf/src/plugins/axios.js @@ -0,0 +1,45 @@ +import axios from "axios"; +import qs from "qs"; +let config = { + baseURL: "http://114.132.224.5:7001", + // timeout: 60 * 1000, // Timeout + timeout: 60 * 1000, + withCredentials: true, // Check cross-site Access-Control + /* `paramsSerializer` 是一个负责 `params` 序列化的函数 + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }) + // 'a[0]=b&a[1]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }) + // 'a[]=b&a[]=c' + qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }) + // 'a=b&a=c' + */ + paramsSerializer: (params) => { + return qs.stringify(params, { arrayFormat: "indices" }); + }, +}; + +const _axios = axios.create(config); + +_axios.interceptors.request.use( + + (config) => { + return config; + }, + (error) => { + return Promise.reject(error); + } +); +_axios.interceptors.response.use( + (response) => { + if (response.status === 200) { + if (!response.data.status) { + } + return Promise.resolve(response.data); + } else { + return Promise.reject(response.data); + } + }, + (error) => { + } +); +export default _axios; diff --git a/developedcode/sfykf/src/plugins/index.js b/developedcode/sfykf/src/plugins/index.js new file mode 100644 index 0000000..23c3677 --- /dev/null +++ b/developedcode/sfykf/src/plugins/index.js @@ -0,0 +1,19 @@ +/** + * plugins/index.js + * + * Automatically included in `./src/main.js` + */ + +// Plugins +import { loadFonts } from './webfontloader' +import vuetify from './vuetify' +import pinia from '../store' +import router from '../router' + +export function registerPlugins (app) { + loadFonts() + app + .use(vuetify) + .use(pinia) + .use(router) +} diff --git a/developedcode/sfykf/src/plugins/vuetify.js b/developedcode/sfykf/src/plugins/vuetify.js new file mode 100644 index 0000000..34c17ab --- /dev/null +++ b/developedcode/sfykf/src/plugins/vuetify.js @@ -0,0 +1,26 @@ +/** + * plugins/vuetify.js + * + * Framework documentation: https://vuetifyjs.com` + */ + +// Styles +import '@mdi/font/css/materialdesignicons.css' +import 'vuetify/dist/vuetify.min.css'; + +// Composables +import { createVuetify } from 'vuetify' + +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +export default createVuetify({ + theme: { + themes: { + light: { + colors: { + primary: '#1867C0', + secondary: '#5CBBF6', + }, + }, + }, + }, +}) diff --git a/developedcode/sfykf/src/plugins/webfontloader.js b/developedcode/sfykf/src/plugins/webfontloader.js new file mode 100644 index 0000000..92afa8a --- /dev/null +++ b/developedcode/sfykf/src/plugins/webfontloader.js @@ -0,0 +1,15 @@ +/** + * plugins/webfontloader.js + * + * webfontloader documentation: https://github.com/typekit/webfontloader + */ + + export async function loadFonts () { + const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') + + webFontLoader.load({ + google: { + families: ['Roboto:100,300,400,500,700,900&display=swap'], + }, + }) +} diff --git a/developedcode/sfykf/src/router/index.js b/developedcode/sfykf/src/router/index.js new file mode 100644 index 0000000..1e9fa15 --- /dev/null +++ b/developedcode/sfykf/src/router/index.js @@ -0,0 +1,78 @@ +// Composables +import { createRouter, createWebHashHistory } from 'vue-router' + +const routes = [ + { + path: '/', + component: () => import('@/layouts/default/view.vue'), + redirect: "/home", + children: [ + { + path: 'home', + name: 'home', + component: () => import('@/views/home.vue'), + }, + { + path: 'university', + name: 'university', + component: () => import('@/views/university.vue'), + }, + { + path: 'news', + name: 'news', + component: () => import('@/views/news.vue'), + children: [ + { + path: 'newsDetail/:id', + name: 'newsDetail', + component: () => import('@/views/newsDetail.vue'), + }, + ], + }, + { + path: 'education', + name: 'education', + component: () => import('@/views/education.vue'), + children: [ + { + path: 'educationDetail/:id', + name: 'educationDetail', + component: () => import('@/views/educationDetail.vue'), + }, + ], + }, + { + path: 'scientific', + name: 'scientific', + component: () => import('@/views/scientific.vue'), + children: [ + { + path: 'scientificDetail/:id', + name: 'scientificDetail', + component: () => import('@/views/scientificDetail.vue'), + }, + ], + }, + { + path: 'expert', + name: 'expert', + component: () => import('@/views/expert.vue'), + children: [ + { + path: 'expertDetail/:id', + name: 'expertDetail', + component: () => import('@/views/expertDetail.vue'), + }, + ], + }, + ], + }, + { name: '重定向', path: '/:catchAll(.*)', redirect: '/home', } +] + +const router = createRouter({ + history: createWebHashHistory(process.env.BASE_URL), + routes, +}) + +export default router diff --git a/developedcode/sfykf/src/store/app.js b/developedcode/sfykf/src/store/app.js new file mode 100644 index 0000000..7429543 --- /dev/null +++ b/developedcode/sfykf/src/store/app.js @@ -0,0 +1,8 @@ +// Utilities +import { defineStore } from 'pinia' + +export const useAppStore = defineStore('app', { + state: () => ({ + // + }), +}) diff --git a/developedcode/sfykf/src/store/index.js b/developedcode/sfykf/src/store/index.js new file mode 100644 index 0000000..1536252 --- /dev/null +++ b/developedcode/sfykf/src/store/index.js @@ -0,0 +1,4 @@ +// Utilities +import { createPinia } from 'pinia' + +export default createPinia() diff --git a/developedcode/sfykf/src/views/education.vue b/developedcode/sfykf/src/views/education.vue new file mode 100644 index 0000000..9396bbb --- /dev/null +++ b/developedcode/sfykf/src/views/education.vue @@ -0,0 +1,197 @@ + + + + diff --git a/developedcode/sfykf/src/views/educationDetail.vue b/developedcode/sfykf/src/views/educationDetail.vue new file mode 100644 index 0000000..6fc15e8 --- /dev/null +++ b/developedcode/sfykf/src/views/educationDetail.vue @@ -0,0 +1,122 @@ + + + + diff --git a/developedcode/sfykf/src/views/expert.vue b/developedcode/sfykf/src/views/expert.vue new file mode 100644 index 0000000..127004b --- /dev/null +++ b/developedcode/sfykf/src/views/expert.vue @@ -0,0 +1,226 @@ + + + + diff --git a/developedcode/sfykf/src/views/expertDetail.vue b/developedcode/sfykf/src/views/expertDetail.vue new file mode 100644 index 0000000..c014920 --- /dev/null +++ b/developedcode/sfykf/src/views/expertDetail.vue @@ -0,0 +1,163 @@ + + + + diff --git a/developedcode/sfykf/src/views/home.vue b/developedcode/sfykf/src/views/home.vue new file mode 100644 index 0000000..55379dd --- /dev/null +++ b/developedcode/sfykf/src/views/home.vue @@ -0,0 +1,383 @@ + + + + diff --git a/developedcode/sfykf/src/views/news.vue b/developedcode/sfykf/src/views/news.vue new file mode 100644 index 0000000..f5dbb12 --- /dev/null +++ b/developedcode/sfykf/src/views/news.vue @@ -0,0 +1,201 @@ + + + + diff --git a/developedcode/sfykf/src/views/newsDetail.vue b/developedcode/sfykf/src/views/newsDetail.vue new file mode 100644 index 0000000..9d3efc0 --- /dev/null +++ b/developedcode/sfykf/src/views/newsDetail.vue @@ -0,0 +1,116 @@ + + + + diff --git a/developedcode/sfykf/src/views/scientific.vue b/developedcode/sfykf/src/views/scientific.vue new file mode 100644 index 0000000..dd93ac7 --- /dev/null +++ b/developedcode/sfykf/src/views/scientific.vue @@ -0,0 +1,201 @@ + + + + diff --git a/developedcode/sfykf/src/views/scientificDetail.vue b/developedcode/sfykf/src/views/scientificDetail.vue new file mode 100644 index 0000000..a693e63 --- /dev/null +++ b/developedcode/sfykf/src/views/scientificDetail.vue @@ -0,0 +1,116 @@ + + + + diff --git a/developedcode/sfykf/src/views/university.vue b/developedcode/sfykf/src/views/university.vue new file mode 100644 index 0000000..7a3e9b7 --- /dev/null +++ b/developedcode/sfykf/src/views/university.vue @@ -0,0 +1,268 @@ + + + + diff --git a/developedcode/sfykf/vite.config.js b/developedcode/sfykf/vite.config.js new file mode 100644 index 0000000..30a05ee --- /dev/null +++ b/developedcode/sfykf/vite.config.js @@ -0,0 +1,86 @@ +// Plugins +import vue from '@vitejs/plugin-vue' +import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' +import AutoImport from 'unplugin-auto-import/vite' +import Components from 'unplugin-vue-components/vite' +import { ElementPlusResolver } from 'unplugin-vue-components/resolvers' + +// Utilities +import { defineConfig } from 'vite' +import { fileURLToPath, URL } from 'node:url' + +// https://vitejs.dev/config/ +export default defineConfig({ + build: { + rollupOptions: { + output: { + chunkFileNames: 'js/[name]-[hash].js', // 引入文件名的名称 + entryFileNames: 'js/[name]-[hash].js', // 包的入口文件名称 + // assetFileNames: '[ext]/[name].[ext]', // 资源文件像 字体,图片等 + // chunkFileNames: 'js/[name]-[hash].js', // 引入文件名的名称 + // entryFileNames: 'js/[name]-[hash].js', // 包的入口文件名称 + // assetFileNames: '[ext]/[name]-[hash].[ext]', // 资源文件像 字体,图片等 + manualChunks(id) { + // if (id.includes("node_modules")) { + // return "vendor" //代码分割为第三方包 + // } + // if (id.includes("src")) { + // return "views" //代码分割为业务视图 + // } + if (id.includes("sfykf")) { + return "sfykf" //代码分割为common页面登录页 + } + } + } + }, + // lib: { + // entry: resolve(__dirname, './src/main.js'), // 设置入口文件【这里也可以直接引用插件.vue根组件】 + // name: 'helloword', // 起个名字,安装、引入用 + // fileName: (format) => `helloword.${format}.js`, // 打包后的文件名【可以自定义】 + // formats: ['umd'] + // }, + cssCodeSplit: false, + // jsCodeSplit: false, + chunkSizeWarningLimit: 512 + }, + plugins: [ + vue({ + template: { transformAssetUrls } + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + AutoImport({ + resolvers: [ElementPlusResolver()], + }), + Components({ + resolvers: [ElementPlusResolver()], + }), + ], + define: { 'process.env': {} }, + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)) + }, + extensions: [ + '.js', + '.json', + '.jsx', + '.mjs', + '.ts', + '.tsx', + '.vue', + ], + }, + server: { + port: 3000, + // proxy: { + // "/biobank": { + // target: "http://114.132.224.5:7001/biobank", + // changeOrigin: true, + // rewrite: (path) => path.replace(/^\/biobank/, ""), + // }, + // }, + }, +}) diff --git a/developedcode/vediocheck/config.txt b/developedcode/vediocheck/config.txt new file mode 100644 index 0000000..5cc4f85 --- /dev/null +++ b/developedcode/vediocheck/config.txt @@ -0,0 +1,10 @@ +rtsp1 rtsp://admin:xby123456@42.235.239.240:8008/Streaming/Channels/101 +rtsp2 rtsp://admin:xby123456@192.168.1.64:554/Streaming/Channels/101 +tcpPort1 8965 +tcpPort2 8966 +udpPort1 8967 +udpPort2 8968 +yasuolv1 90 +yasuolv2 90 +confidence1 0.8 +confidence2 0.8 \ No newline at end of file diff --git a/developedcode/vediocheck/requirements.txt b/developedcode/vediocheck/requirements.txt new file mode 100644 index 0000000..21cfef6 Binary files /dev/null and b/developedcode/vediocheck/requirements.txt differ diff --git a/developedcode/vediocheck/vedioclient1.py b/developedcode/vediocheck/vedioclient1.py new file mode 100644 index 0000000..f9b7d0d --- /dev/null +++ b/developedcode/vediocheck/vedioclient1.py @@ -0,0 +1,80 @@ +# 导入 socket、sys 模块 +import socket +import numpy as np +import cv2 +import time + + +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +config = read_and_process_txt("./config.txt") +print(config) +# 创建 socket 对象 +socketlocal = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + +# 获取本地主机名 +host = "127.0.0.1" +# host = "42.235.239.240" +# 设置端口号 +port = int(config["tcpPort1"]) +# port = 8015 + +# 连接服务,指定主机和端口 +socketlocal.connect((host, port)) + +prev_frame_time = 0 +new_frame_time = 0 +count = 0 +countTotal = 0 +while True: + # 接收数据: + data = socketlocal.recv(1219112 * 2) + # print("recv data",data) + # 解码 + + nparr = np.frombuffer(data, np.uint8) + # 解码成图片numpy + img_decode = cv2.imdecode(nparr, cv2.IMREAD_COLOR) + # 帧率计算 + new_frame_time = time.time() + if new_frame_time - prev_frame_time < 1: + count += 1 + else: + countTotal = count + count = 0 + prev_frame_time = new_frame_time + if count != 0: + countTotal = max([countTotal, count]) + cv2.putText( + img_decode, + "FPS:{}".format(countTotal), + (30, 45), + cv2.FONT_HERSHEY_SIMPLEX, + 0.5, + (0, 0, 255), + 1, + ) + if img_decode is not None and img_decode.shape[0] > 0 and img_decode.shape[1] > 0: + cv2.imshow("result1", img_decode) + if cv2.waitKey(1) & 0xFF == ord("q"): + break diff --git a/developedcode/vediocheck/vedioclient2.py b/developedcode/vediocheck/vedioclient2.py new file mode 100644 index 0000000..c19679f --- /dev/null +++ b/developedcode/vediocheck/vedioclient2.py @@ -0,0 +1,77 @@ +# 导入 socket、sys 模块 +import socket +import numpy as np +import cv2 +import time + + +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +config = read_and_process_txt("./config.txt") +# 创建 socket 对象 +socketlocal = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + +# 获取本地主机名 +host = "127.0.0.1" + +# 设置端口号 +port = int(config["tcpPort2"]) + +# 连接服务,指定主机和端口 +socketlocal.connect((host, port)) + +prev_frame_time = 0 +new_frame_time = 0 +count = 0 +countTotal = 0 +while True: + # 接收数据: + data = socketlocal.recv(1219112 * 2) + # print("recv data",data) + # 解码 + nparr = np.frombuffer(data, np.uint8) + # 解码成图片numpy + img_decode = cv2.imdecode(nparr, cv2.IMREAD_COLOR) + # 帧率计算 + new_frame_time = time.time() + if new_frame_time - prev_frame_time < 1: + count += 1 + else: + countTotal = count + count = 0 + prev_frame_time = new_frame_time + if count != 0: + countTotal = max([countTotal, count]) + cv2.putText( + img_decode, + "FPS:{}".format(countTotal), + (30, 45), + cv2.FONT_HERSHEY_SIMPLEX, + 0.5, + (0, 0, 255), + 1, + ) + if img_decode is not None and img_decode.shape[0] > 0 and img_decode.shape[1] > 0: + cv2.imshow("result2", img_decode) + if cv2.waitKey(1) & 0xFF == ord("q"): + break diff --git a/developedcode/vediocheck/vedioserve1.py b/developedcode/vediocheck/vedioserve1.py new file mode 100644 index 0000000..4baee45 --- /dev/null +++ b/developedcode/vediocheck/vedioserve1.py @@ -0,0 +1,208 @@ +import socket +import threading +from ultralytics import YOLO +import ffmpegcv +import cv2 +import time +import ctypes +import json + +# 加载YOLOv8模型 +model = YOLO("yolov8n.pt") # yolov8i默认目标检测(i= n,m,l,x)尾缀有-pose,-seg +print("模型加载成功") +isconnected = False +data_thread = None +count = 1 +# 1.创建一个udp套接字 +udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + + +# 假设你的文本文件每行都是由空格分隔的数据项,且你想将这些数据以某种结构处理(这里仅作演示,实际情况可能需要调整) +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +config = read_and_process_txt("./config.txt") + + +def stop_thread(thread): + """尝试强制停止一个线程""" + if not thread.is_alive(): + return + tid = ctypes.c_long(thread.ident) + res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(SystemExit)) + if res == 0: + raise ValueError("线程可能已经终止") + elif res > 1: + # 如果返回值大于1,说明有多个线程ID与给定ID相同,需要清理 + ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None) + raise SystemError("未知错误") + + +# 定义发送数据的函数 +def send_data(client_socket, video_path1, yasuo=90, confident=0.8, udpPort=8967): + global count + global udp_socket + print("第" + str(count) + "次连接" + " " + video_path1) + count += 1 + global isconnected + cap = ffmpegcv.ReadLiveLast(ffmpegcv.VideoCaptureStreamRT, video_path1) # 不缓存 + print("第" + str(count - 1) + "次连接" + " " + video_path1 + "成功") + isconnected = True + frame_rate_divider = 8 # 设置帧率除数 + frame_count = 0 # 初始化帧计数器 + while True: + try: + ret, frame = cap.read() + if ret: + frameCopy = frame.copy() + # 在该帧上运行YOLOv8推理 + if frame_count % frame_rate_divider == 0: + # 获取处理结果 + texts = [] + results = model(frame) + data = results[0].boxes.data + # 解析检测结果 + for i in range(data.shape[0]): + label_id = int(data[i, 5]) + label = results[0].names[label_id] + confidence = float(data[i, 4]) + bbox = data[i, :4] + texts.append( + { + "label": label, + "confidence": confidence, + "bbox": "({:.2f}, {:.2f}, {:.2f}, {:.2f})".format( + bbox[0], bbox[1], bbox[2], bbox[3] + ), + } + ) + frame_count += 1 # 更新帧计数器 + personList = [] + # 处理结果转换为图片 + + for text in texts: + if text["label"] == "person" and text["confidence"] > confident: + personList.append(text) + bbox = eval(text["bbox"]) + cv2.rectangle( + frameCopy, + (int(bbox[0]), int(bbox[1])), + (int(bbox[2]), int(bbox[3])), + (255, 0, 0), + 2, + ) + cv2.putText( + frameCopy, + f"person:{'%.2f' % text['confidence']}", + (int(bbox[0]) + 5, int(bbox[1]) + 25), + cv2.FONT_HERSHEY_SIMPLEX, + 1, + (255, 0, 0), + 2, + ) + if len(personList) != 0: + message_bytes = json.dumps(personList).encode("utf-8") + udp_socket.sendto(message_bytes, ("127.0.0.1", udpPort)) + _, img_buffer = cv2.imencode( + ".jpg", frameCopy, [cv2.IMWRITE_JPEG_QUALITY, yasuo] + ) + client_socket.sendall(img_buffer) + # 如果按下'q'则中断循环 + if cv2.waitKey(1) & 0xFF == ord("q"): + break + else: + isconnected = False + except BrokenPipeError: + # 当客户端断开连接时,发送数据会抛出 BrokenPipeError + print("Client disconnected. Stopping data sending.") + break + except Exception as e: + print(f"An error occurred while sending data: {e}") + break + + +def continue_start(client_socket, video_path1, yasuo, confident, udpPort): + while True: + time.sleep(5) + global isconnected + global data_thread + global count + if isconnected == False: + print("已断开正在尝试第" + str(count) + "次连接" + " " + video_path1) + stop_thread(data_thread) + data_thread = threading.Thread( + target=send_data, + args=(client_socket, video_path1, yasuo, confident, udpPort), + daemon=True, + ) + data_thread.start() + + +def main(video_path1, port=8965, yasuo=90, confident=0.8, udpPort=8967): + global data_thread + # host = "192.168.1.194" # 服务器 IP 地址,这里使用 localhost + host = "127.0.0.1" # 服务器 IP 地址,这里使用 localhost + # 创建 TCP 服务器套接字 + server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + # 绑定服务器地址和端口 + server_socket.bind((host, port)) + # 开始监听连接,最大连接队列长度为 5 + server_socket.listen(5) + print(f"Server listening on {host}:{port}.") + + # 接受客户端连接请求 + while True: + client_socket, client_addr = server_socket.accept() + print(f"Accepted connection from {client_addr[0]}:{client_addr[1]}.") + # 创建并启动发送数据的线程 + data_thread = threading.Thread( + target=send_data, + args=(client_socket, video_path1, yasuo, confident, udpPort), + daemon=True, + ) + data_thread.start() + # 在这里可以处理其他客户端逻辑,如接收客户端数据等 + # ... + time.sleep(1) + data_thread2 = threading.Thread( + target=continue_start, + args=(client_socket, video_path1, yasuo, confident, udpPort), + ) + data_thread2.start() + # 如果需要在某个条件满足时关闭连接,可以在此处添加相应代码 + # ... + # 关闭客户端连接 + # client_socket.close() + # print(f"Connection from {client_addr[0]}:{client_addr[1]} conneted.") + + +if __name__ == "__main__": + # rtsp流 + video_path = config["rtsp1"] + # 本地启动端口 + port = int(config["tcpPort1"]) + # 压缩率 + yasuo = int(config["yasuolv1"]) + print(config["confidence1"]) + confident = float(config["confidence1"]) + udpPort = int(config["udpPort1"]) + main(video_path, port, yasuo, confident, udpPort) diff --git a/developedcode/vediocheck/vedioserve2.py b/developedcode/vediocheck/vedioserve2.py new file mode 100644 index 0000000..fda92fc --- /dev/null +++ b/developedcode/vediocheck/vedioserve2.py @@ -0,0 +1,207 @@ +import socket +import threading +from ultralytics import YOLO +import ffmpegcv +import cv2 +import time +import ctypes +import json + +# 加载YOLOv8模型 +model = YOLO("yolov8n.pt") # yolov8i默认目标检测(i= n,m,l,x)尾缀有-pose,-seg +print("模型加载成功") +isconnected = False +data_thread = None +count = 1 +# 1.创建一个udp套接字 +udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + + +# 假设你的文本文件每行都是由空格分隔的数据项,且你想将这些数据以某种结构处理(这里仅作演示,实际情况可能需要调整) +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +config = read_and_process_txt("./config.txt") + + +def stop_thread(thread): + """尝试强制停止一个线程""" + if not thread.is_alive(): + return + tid = ctypes.c_long(thread.ident) + res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(SystemExit)) + if res == 0: + raise ValueError("线程可能已经终止") + elif res > 1: + # 如果返回值大于1,说明有多个线程ID与给定ID相同,需要清理 + ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None) + raise SystemError("未知错误") + + +# 定义发送数据的函数 +def send_data(client_socket, video_path1, yasuo=90, confident=0.8, udpPort=8967): + global count + global udp_socket + print("第" + str(count) + "次连接" + " " + video_path1) + count += 1 + global isconnected + cap = ffmpegcv.ReadLiveLast(ffmpegcv.VideoCaptureStreamRT, video_path1) # 不缓存 + print("第" + str(count - 1) + "次连接" + " " + video_path1 + "成功") + isconnected = True + frame_rate_divider = 8 # 设置帧率除数 + frame_count = 0 # 初始化帧计数器 + while True: + try: + ret, frame = cap.read() + if ret: + frameCopy = frame.copy() + # 在该帧上运行YOLOv8推理 + if frame_count % frame_rate_divider == 0: + # 获取处理结果 + texts = [] + results = model(frame) + data = results[0].boxes.data + # 解析检测结果 + for i in range(data.shape[0]): + label_id = int(data[i, 5]) + label = results[0].names[label_id] + confidence = float(data[i, 4]) + bbox = data[i, :4] + texts.append( + { + "label": label, + "confidence": confidence, + "bbox": "({:.2f}, {:.2f}, {:.2f}, {:.2f})".format( + bbox[0], bbox[1], bbox[2], bbox[3] + ), + } + ) + frame_count += 1 # 更新帧计数器 + personList = [] + # 处理结果转换为图片 + + for text in texts: + if text["label"] == "person" and text["confidence"] > confident: + personList.append(text) + bbox = eval(text["bbox"]) + cv2.rectangle( + frameCopy, + (int(bbox[0]), int(bbox[1])), + (int(bbox[2]), int(bbox[3])), + (255, 0, 0), + 2, + ) + cv2.putText( + frameCopy, + f"person:{'%.2f' % text['confidence']}", + (int(bbox[0]) + 5, int(bbox[1]) + 25), + cv2.FONT_HERSHEY_SIMPLEX, + 1, + (255, 0, 0), + 2, + ) + if len(personList) != 0: + message_bytes = json.dumps(personList).encode("utf-8") + udp_socket.sendto(message_bytes, ("127.0.0.1", udpPort)) + _, img_buffer = cv2.imencode( + ".jpg", frameCopy, [cv2.IMWRITE_JPEG_QUALITY, yasuo] + ) + client_socket.sendall(img_buffer) + # 如果按下'q'则中断循环 + if cv2.waitKey(1) & 0xFF == ord("q"): + break + else: + isconnected = False + except BrokenPipeError: + # 当客户端断开连接时,发送数据会抛出 BrokenPipeError + print("Client disconnected. Stopping data sending.") + break + except Exception as e: + print(f"An error occurred while sending data: {e}") + break + + +def continue_start(client_socket, video_path1, yasuo, confident, udpPort): + while True: + time.sleep(5) + global isconnected + global data_thread + global count + if isconnected == False: + print("已断开正在尝试第" + str(count) + "次连接" + " " + video_path1) + stop_thread(data_thread) + data_thread = threading.Thread( + target=send_data, + args=(client_socket, video_path1, yasuo, confident, udpPort), + daemon=True, + ) + data_thread.start() + + +def main(video_path1, port=8965, yasuo=90, confident=0.8, udpPort=8967): + global data_thread + # host = "192.168.1.194" # 服务器 IP 地址,这里使用 localhost + host = "127.0.0.1" # 服务器 IP 地址,这里使用 localhost + # 创建 TCP 服务器套接字 + server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + # 绑定服务器地址和端口 + server_socket.bind((host, port)) + # 开始监听连接,最大连接队列长度为 5 + server_socket.listen(5) + print(f"Server listening on {host}:{port}.") + + # 接受客户端连接请求 + while True: + client_socket, client_addr = server_socket.accept() + print(f"Accepted connection from {client_addr[0]}:{client_addr[1]}.") + # 创建并启动发送数据的线程 + data_thread = threading.Thread( + target=send_data, + args=(client_socket, video_path1, yasuo, confident, udpPort), + daemon=True, + ) + data_thread.start() + # 在这里可以处理其他客户端逻辑,如接收客户端数据等 + # ... + time.sleep(1) + data_thread2 = threading.Thread( + target=continue_start, + args=(client_socket, video_path1, yasuo, confident, udpPort), + ) + data_thread2.start() + # 如果需要在某个条件满足时关闭连接,可以在此处添加相应代码 + # ... + # 关闭客户端连接 + # client_socket.close() + # print(f"Connection from {client_addr[0]}:{client_addr[1]} conneted.") + + +if __name__ == "__main__": + # rtsp流 + video_path = config["rtsp2"] + # 本地启动端口 + port = int(config["tcpPort2"]) + # 压缩率 + yasuo = int(config["yasuolv2"]) + confident = float(config["confidence2"]) + udpPort = int(config["udpPort2"]) + main(video_path, port, yasuo, confident, udpPort) diff --git a/developedcode/vediocheck/yolov8n.pt b/developedcode/vediocheck/yolov8n.pt new file mode 100644 index 0000000..d61ef50 Binary files /dev/null and b/developedcode/vediocheck/yolov8n.pt differ diff --git a/developedcode/vediocheck_udp/base.txt b/developedcode/vediocheck_udp/base.txt new file mode 100644 index 0000000..c885a0a --- /dev/null +++ b/developedcode/vediocheck_udp/base.txt @@ -0,0 +1,8 @@ +rtsp1 rtsp://admin:xby123456@42.235.239.240:8008/Streaming/Channels/102 +rtsp2 rtsp://admin:xby123456@42.235.239.240:8008/Streaming/Channels/202 +udpPngPort1 10001 +notPng1 0 +udpLabelPort1 10002 +udpPngPort2 10003 +notPng2 0 +udpLabelPort2 10004 diff --git a/developedcode/vediocheck_udp/config.txt b/developedcode/vediocheck_udp/config.txt new file mode 100644 index 0000000..42183ae --- /dev/null +++ b/developedcode/vediocheck_udp/config.txt @@ -0,0 +1,4 @@ +yasuolv1 60 +yasuolv2 35 +confidence1 0.8 +confidence2 0.8 \ No newline at end of file diff --git a/developedcode/vediocheck_udp/requirements.txt b/developedcode/vediocheck_udp/requirements.txt new file mode 100644 index 0000000..21cfef6 Binary files /dev/null and b/developedcode/vediocheck_udp/requirements.txt differ diff --git a/developedcode/vediocheck_udp/vedioclient1.py b/developedcode/vediocheck_udp/vedioclient1.py new file mode 100644 index 0000000..eadc767 --- /dev/null +++ b/developedcode/vediocheck_udp/vedioclient1.py @@ -0,0 +1,80 @@ +# 导入 socket、sys 模块 +import socket +import numpy as np +import cv2 +import time + + +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +baseConfig = read_and_process_txt("./base.txt") +print(baseConfig) +# 创建 socket 对象 +socketlocal = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + +# 设置本地主机名 +host = "127.0.0.1" +# 设置端口号 +port = int(baseConfig["udpPngPort1"]) + +# 1.创建一个udp套接字 +udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) +local_addr = (host, port) +udp_socket.bind(local_addr) + +prev_frame_time = 0 +new_frame_time = 0 +count = 0 +countTotal = 0 +while True: + # 接收数据: + data = udp_socket.recv(1219112 * 2) + # print("recv data",data) + # 解码 + + nparr = np.frombuffer(data, np.uint8) + # 解码成图片numpy + img_decode = cv2.imdecode(nparr, cv2.IMREAD_COLOR) + # 帧率计算 + new_frame_time = time.time() + if new_frame_time - prev_frame_time < 1: + count += 1 + else: + countTotal = count + count = 0 + prev_frame_time = new_frame_time + if count != 0: + countTotal = max([countTotal, count]) + cv2.putText( + img_decode, + "FPS:{}".format(countTotal), + (30, 45), + cv2.FONT_HERSHEY_SIMPLEX, + 0.5, + (0, 0, 255), + 1, + ) + if img_decode is not None and img_decode.shape[0] > 0 and img_decode.shape[1] > 0: + cv2.imshow("result1", img_decode) + if cv2.waitKey(1) & 0xFF == ord("q"): + break diff --git a/developedcode/vediocheck_udp/vedioclient2.py b/developedcode/vediocheck_udp/vedioclient2.py new file mode 100644 index 0000000..e96dcfc --- /dev/null +++ b/developedcode/vediocheck_udp/vedioclient2.py @@ -0,0 +1,80 @@ +# 导入 socket、sys 模块 +import socket +import numpy as np +import cv2 +import time + + +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +baseConfig = read_and_process_txt("./base.txt") +print(baseConfig) +# 创建 socket 对象 +socketlocal = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + +# 设置本地主机名 +host = "127.0.0.1" +# 设置端口号 +port = int(baseConfig["udpPngPort2"]) + +# 1.创建一个udp套接字 +udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) +local_addr = (host, port) +udp_socket.bind(local_addr) + +prev_frame_time = 0 +new_frame_time = 0 +count = 0 +countTotal = 0 +while True: + # 接收数据: + data = udp_socket.recv(1219112 * 2) + # print("recv data",data) + # 解码 + + nparr = np.frombuffer(data, np.uint8) + # 解码成图片numpy + img_decode = cv2.imdecode(nparr, cv2.IMREAD_COLOR) + # 帧率计算 + new_frame_time = time.time() + if new_frame_time - prev_frame_time < 1: + count += 1 + else: + countTotal = count + count = 0 + prev_frame_time = new_frame_time + if count != 0: + countTotal = max([countTotal, count]) + cv2.putText( + img_decode, + "FPS:{}".format(countTotal), + (30, 45), + cv2.FONT_HERSHEY_SIMPLEX, + 0.5, + (0, 0, 255), + 1, + ) + if img_decode is not None and img_decode.shape[0] > 0 and img_decode.shape[1] > 0: + cv2.imshow("result1", img_decode) + if cv2.waitKey(1) & 0xFF == ord("q"): + break diff --git a/developedcode/vediocheck_udp/vedioserve1.py b/developedcode/vediocheck_udp/vedioserve1.py new file mode 100644 index 0000000..90846a4 --- /dev/null +++ b/developedcode/vediocheck_udp/vedioserve1.py @@ -0,0 +1,195 @@ +import socket +import threading +from ultralytics import YOLO +import ffmpegcv +import cv2 +import time +import ctypes +import json + +# 加载YOLOv8模型 +model = YOLO("yolov8n.pt") # yolov8i默认目标检测(i= n,m,l,x)尾缀有-pose,-seg +print("模型加载成功") +isconnected = False +data_thread = None +count = 1 +# 1.创建一个udp套接字 +udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + + +# 假设你的文本文件每行都是由空格分隔的数据项,且你想将这些数据以某种结构处理(这里仅作演示,实际情况可能需要调整) +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +baseConfig = read_and_process_txt("./base.txt") +config = read_and_process_txt("./config.txt") +notPng = int(baseConfig["notPng1"]) + + +def stop_thread(thread): + """尝试强制停止一个线程""" + if not thread.is_alive(): + return + tid = ctypes.c_long(thread.ident) + res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(SystemExit)) + if res == 0: + raise ValueError("线程可能已经终止") + elif res > 1: + # 如果返回值大于1,说明有多个线程ID与给定ID相同,需要清理 + ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None) + raise SystemError("未知错误") + + +# 定义发送数据的函数 +def send_data(video_path, udpPngPort, udpLabelPort, yasuo, confident): + global count + global udp_socket + global notPng + print("第" + str(count) + "次连接" + " " + video_path) + count += 1 + global isconnected + cap = ffmpegcv.ReadLiveLast(ffmpegcv.VideoCaptureStreamRT, video_path) # 不缓存 + print("第" + str(count - 1) + "次连接" + " " + video_path + "成功") + isconnected = True + frame_rate_divider = 3 # 设置帧率除数 + frame_count = 0 # 初始化帧计数器 + while True: + try: + ret, frame = cap.read() + if ret: + frameCopy = frame.copy() + # 在该帧上运行YOLOv8推理 + if frame_count % frame_rate_divider == 0: + # 获取处理结果 + texts = [] + results = model(frame) + data = results[0].boxes.data + # 解析检测结果 + for i in range(data.shape[0]): + label_id = int(data[i, 5]) + label = results[0].names[label_id] + confidence = float(data[i, 4]) + bbox = data[i, :4] + texts.append( + { + "label": label, + "confidence": confidence, + "bbox": "({:.2f}, {:.2f}, {:.2f}, {:.2f})".format( + bbox[0], bbox[1], bbox[2], bbox[3] + ), + } + ) + frame_count += 1 # 更新帧计数器 + personList = [] + # 处理结果转换为图片 + for text in texts: + if text["label"] == "person" and text["confidence"] > confident: + personList.append(text) + bbox = eval(text["bbox"]) + cv2.rectangle( + frameCopy, + (int(bbox[0]), int(bbox[1])), + (int(bbox[2]), int(bbox[3])), + (0, 0, 255), + 2, + ) + # cv2.putText( + # frameCopy, + # f"person:{'%.2f' % text['confidence']}", + # (int(bbox[0]) + 5, int(bbox[1]) + 25), + # cv2.FONT_HERSHEY_SIMPLEX, + # 1, + # (255, 0, 0), + # 2, + # ) + if len(personList) != 0: + message_bytes = json.dumps(personList).encode("utf-8") + udp_socket.sendto(message_bytes, ("127.0.0.1", udpLabelPort)) + _, img_buffer = cv2.imencode( + ".jpg", frameCopy, [cv2.IMWRITE_JPEG_QUALITY, yasuo] + ) + if notPng == 0: + print(7777, img_buffer.size) + udp_socket.sendto(img_buffer, ("127.0.0.1", udpPngPort)) + # 如果按下'q'则中断循环 + if cv2.waitKey(1) & 0xFF == ord("q"): + break + else: + isconnected = False + except BrokenPipeError: + # 当客户端断开连接时,发送数据会抛出 BrokenPipeError + print("Client disconnected. Stopping data sending.") + break + except Exception as e: + print(f"An error occurred while sending data: {e}") + break + + +def continue_start(video_path, udpPngPort, udpLabelPort, yasuo, confident): + while True: + time.sleep(5) + global isconnected + global data_thread + global count + if isconnected == False: + print("已断开正在尝试第" + str(count) + "次连接" + " " + video_path) + stop_thread(data_thread) + data_thread = threading.Thread( + target=send_data, + args=(video_path, udpPngPort, udpLabelPort, yasuo, confident), + daemon=True, + ) + data_thread.start() + + +def main(video_path, udpPngPort, udpLabelPort, yasuo, confident): + global data_thread + # 创建并启动发送数据的线程 + data_thread = threading.Thread( + target=send_data, + args=(video_path, udpPngPort, udpLabelPort, yasuo, confident), + daemon=True, + ) + data_thread.start() + # 在这里可以处理其他客户端逻辑,如接收客户端数据等 + # ... + time.sleep(1) + data_thread2 = threading.Thread( + target=continue_start, + args=(video_path, udpPngPort, udpLabelPort, yasuo, confident), + ) + data_thread2.start() + + +if __name__ == "__main__": + # rtsp流 + video_path = baseConfig["rtsp1"] + # 图片传输端口udpPngPort + udpPngPort = int(baseConfig["udpPngPort1"]) + # 标签传输端口udpPngPort + udpLabelPort = int(baseConfig["udpLabelPort1"]) + # 压缩率 + yasuo = int(config["yasuolv1"]) + # 置信度 + confident = float(config["confidence1"]) + print("启动", video_path, udpPngPort, udpLabelPort, yasuo, confident) + main(video_path, udpPngPort, udpLabelPort, yasuo, confident) diff --git a/developedcode/vediocheck_udp/vedioserve2.py b/developedcode/vediocheck_udp/vedioserve2.py new file mode 100644 index 0000000..b0fc694 --- /dev/null +++ b/developedcode/vediocheck_udp/vedioserve2.py @@ -0,0 +1,194 @@ +import socket +import threading +from ultralytics import YOLO +import ffmpegcv +import cv2 +import time +import ctypes +import json + +# 加载YOLOv8模型 +model = YOLO("yolov8n.pt") # yolov8i默认目标检测(i= n,m,l,x)尾缀有-pose,-seg +print("模型加载成功") +isconnected = False +data_thread = None +count = 1 +# 1.创建一个udp套接字 +udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + + +# 假设你的文本文件每行都是由空格分隔的数据项,且你想将这些数据以某种结构处理(这里仅作演示,实际情况可能需要调整) +def read_and_process_txt(file_path): + processed_data = [] + with open(file_path, "r") as file: + for line in file: + # 去除每行末尾的换行符 + line = line.strip() + # 按空格分割每行 + items = line.split() + # 这里简单地将分割后的数据作为一个列表加入到结果列表中 + # 实际应用中,你可能需要根据具体数据结构进行更复杂的处理 + processed_data.append(items) + + # 如果你确实需要将这些数据转换为JSON,可能需要构造一个合适的结构 + # 例如,如果你的文本文件每行代表一个对象的属性,你可能需要构建字典 + # 下面是一个假设的例子,将每行转换为字典并尝试转为JSON字符串 + json_data = {items[0]: items[1] for items in processed_data} + try: + return json_data + except TypeError as e: + print(f"Error converting to JSON: {e}") + + +baseConfig = read_and_process_txt("./base.txt") +config = read_and_process_txt("./config.txt") +notPng = int(baseConfig["notPng2"]) + + +def stop_thread(thread): + """尝试强制停止一个线程""" + if not thread.is_alive(): + return + tid = ctypes.c_long(thread.ident) + res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(SystemExit)) + if res == 0: + raise ValueError("线程可能已经终止") + elif res > 1: + # 如果返回值大于1,说明有多个线程ID与给定ID相同,需要清理 + ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None) + raise SystemError("未知错误") + + +# 定义发送数据的函数 +def send_data(video_path, udpPngPort, udpLabelPort, yasuo, confident): + global count + global udp_socket + global notPng + print("第" + str(count) + "次连接" + " " + video_path) + count += 1 + global isconnected + cap = ffmpegcv.ReadLiveLast(ffmpegcv.VideoCaptureStreamRT, video_path) # 不缓存 + print("第" + str(count - 1) + "次连接" + " " + video_path + "成功") + isconnected = True + frame_rate_divider = 3 # 设置帧率除数 + frame_count = 0 # 初始化帧计数器 + while True: + try: + ret, frame = cap.read() + if ret: + frameCopy = frame.copy() + # 在该帧上运行YOLOv8推理 + if frame_count % frame_rate_divider == 0: + # 获取处理结果 + texts = [] + results = model(frame) + data = results[0].boxes.data + # 解析检测结果 + for i in range(data.shape[0]): + label_id = int(data[i, 5]) + label = results[0].names[label_id] + confidence = float(data[i, 4]) + bbox = data[i, :4] + texts.append( + { + "label": label, + "confidence": confidence, + "bbox": "({:.2f}, {:.2f}, {:.2f}, {:.2f})".format( + bbox[0], bbox[1], bbox[2], bbox[3] + ), + } + ) + frame_count += 1 # 更新帧计数器 + personList = [] + # 处理结果转换为图片 + for text in texts: + if text["label"] == "person" and text["confidence"] > confident: + personList.append(text) + bbox = eval(text["bbox"]) + cv2.rectangle( + frameCopy, + (int(bbox[0]), int(bbox[1])), + (int(bbox[2]), int(bbox[3])), + (0, 0, 255), + 2, + ) + # cv2.putText( + # frameCopy, + # f"person:{'%.2f' % text['confidence']}", + # (int(bbox[0]) + 5, int(bbox[1]) + 25), + # cv2.FONT_HERSHEY_SIMPLEX, + # 1, + # (255, 0, 0), + # 2, + # ) + message_bytes = json.dumps(personList).encode("utf-8") + udp_socket.sendto(message_bytes, ("127.0.0.1", udpLabelPort)) + _, img_buffer = cv2.imencode( + ".jpg", frameCopy, [cv2.IMWRITE_JPEG_QUALITY, yasuo] + ) + if notPng == 0: + print(888, img_buffer.size) + udp_socket.sendto(img_buffer, ("127.0.0.1", udpPngPort)) + # 如果按下'q'则中断循环 + if cv2.waitKey(1) & 0xFF == ord("q"): + break + else: + isconnected = False + except BrokenPipeError: + # 当客户端断开连接时,发送数据会抛出 BrokenPipeError + print("Client disconnected. Stopping data sending.") + break + except Exception as e: + print(f"An error occurred while sending data: {e}") + break + + +def continue_start(video_path, udpPngPort, udpLabelPort, yasuo, confident): + while True: + time.sleep(5) + global isconnected + global data_thread + global count + if isconnected == False: + print("已断开正在尝试第" + str(count) + "次连接" + " " + video_path) + stop_thread(data_thread) + data_thread = threading.Thread( + target=send_data, + args=(video_path, udpPngPort, udpLabelPort, yasuo, confident), + daemon=True, + ) + data_thread.start() + + +def main(video_path, udpPngPort, udpLabelPort, yasuo, confident): + global data_thread + # 创建并启动发送数据的线程 + data_thread = threading.Thread( + target=send_data, + args=(video_path, udpPngPort, udpLabelPort, yasuo, confident), + daemon=True, + ) + data_thread.start() + # 在这里可以处理其他客户端逻辑,如接收客户端数据等 + # ... + time.sleep(1) + data_thread2 = threading.Thread( + target=continue_start, + args=(video_path, udpPngPort, udpLabelPort, yasuo, confident), + ) + data_thread2.start() + + +if __name__ == "__main__": + # rtsp流 + video_path = baseConfig["rtsp2"] + # 图片传输端口udpPngPort + udpPngPort = int(baseConfig["udpPngPort2"]) + # 标签传输端口udpPngPort + udpLabelPort = int(baseConfig["udpLabelPort2"]) + # 压缩率 + yasuo = int(config["yasuolv2"]) + # 置信度 + confident = float(config["confidence2"]) + print("启动", video_path, udpPngPort, udpLabelPort, yasuo, confident) + main(video_path, udpPngPort, udpLabelPort, yasuo, confident) diff --git a/developedcode/vediocheck_udp/yolov8n.pt b/developedcode/vediocheck_udp/yolov8n.pt new file mode 100644 index 0000000..d61ef50 Binary files /dev/null and b/developedcode/vediocheck_udp/yolov8n.pt differ diff --git a/developedcode/vediocheck_udp/新建文本文档.txt b/developedcode/vediocheck_udp/新建文本文档.txt new file mode 100644 index 0000000..e69de29 diff --git a/developedcode/weiqin/README.md b/developedcode/weiqin/README.md new file mode 100644 index 0000000..0c37989 --- /dev/null +++ b/developedcode/weiqin/README.md @@ -0,0 +1,33 @@ +# mqtttohttp + + + +## QuickStart + + + +see [egg docs][egg] for more detail. + +### Development + +```bash +$ npm i +$ npm run dev +$ open http://localhost:7001/ +``` + +### Deploy + +```bash +$ npm start +$ npm stop +``` + +### npm scripts + +- Use `npm run lint` to check code style. +- Use `npm test` to run unit test. +- Use `npm run autod` to auto detect dependencies upgrade, see [autod](https://www.npmjs.com/package/autod) for more detail. + + +[egg]: https://eggjs.org \ No newline at end of file diff --git a/developedcode/weiqin/agent.js b/developedcode/weiqin/agent.js new file mode 100644 index 0000000..c4fd171 --- /dev/null +++ b/developedcode/weiqin/agent.js @@ -0,0 +1,280 @@ +const mqtt = require("mqtt"); +const _ = require("lodash") +const proj4 = require("proj4") +module.exports = (agent) => { + agent.messenger.on("egg-ready", () => { + const client = mqtt.connect("mqtt://192.168.1.102:1883", { + // const client = mqtt.connect("mqtt://127.0.0.1:1883", { + clean: true, + connectTimeout: 4000, + clientId: 'map-editor-' + Math.random().toString(16).substr(2), + username: 'map-editor', + password: 'leador', + }); + client.on("connect", function () { + console.log("agentmqtt服务器连接成功"); + //本系统 + client.subscribe(`/robot4inspection/fa49e558574df1ec/sensor/battery`, { qos: 0 }, (a, b, c) => { + }); // 订阅电池电量 + client.subscribe(`/robot4inspection/fa49e558574df1ec/sensor/gps`, { qos: 0 }, (a, b, c) => { + }); // 订阅位置信息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/localization/pose`, { qos: 0 }, (a, b, c) => { + }); // 订阅位姿信息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/message/error`, { qos: 0 }, (a, b, c) => { + }); // 订阅错误消息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/message/warn`, { qos: 0 }, (a, b, c) => { + }); // 订阅警告消息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/message/info`, { qos: 0 }, (a, b, c) => { + }); // 订阅日志消息 + client.subscribe(`/robot4inspection/fa49e558574df1ec/planning/service/plan/request`, { qos: 2 }, (a, b, c) => { + }); // 订阅路径规划 + client.subscribe(`/robot4inspection/fa49e558574df1ec/planning/trajectory/2d/compact`, { qos: 2, retain: 0 }, (a, b, c) => { + }); // 订阅当前行驶轨迹 + client.subscribe(`/robot4inspection/fa49e558574df1ec/task/target/action/goto`, { qos: 2, retain: 0 }, (a, b, c) => { + }); // 订阅前往目标点 + //指控中心 + client.subscribe(`/Plan`, { qos: 2 }, (a, b, c) => { + }); // 订阅生成任务 + client.subscribe(`/startPlan`, { qos: 0 }, (a, b, c) => { + }); // 订阅开始任务 + client.subscribe(`/pausePlan`, { qos: 0 }, (a, b, c) => { + }); // 订阅暂停任务 + client.subscribe(`/overPlan`, { qos: 0 }, (a, b, c) => { + }); // 订阅取消任务 + client.subscribe(`/delPlan`, { qos: 0 }, (a, b, c) => { + }); // 订阅删除任务 + }); + let current = { + lon: 0, + lat: 0, + x: 0, + y: 0, + } + const lonlatToxy = function (lon, lat) { + let detx = Number(lon - current.lon) * 100000 + Number(current.x) + let dety = Number(lat - current.lat) * 100000 + Number(current.y) + return [detx, dety] + } + const batteryThrottle = _.throttle(function (message) { + let resObj = JSON.parse(message.toString()) + let retMessage = resObj.args[0] + let timestamp = resObj.timestamp + let postMessagr = { + message: { + capacity: retMessage.capacity, + charging: retMessage.charging, + current: retMessage.current, + temperature: retMessage.temperature, + voltage: retMessage.voltage, + }, + timestamp, + } + let messStr = JSON.stringify(postMessagr) + // client.publish("/battery", messStr, { + // qos: 1, + // retain: true, + // }) + }, 3000, { leading: true }) + const temperatureThrottle = _.throttle(function (message) { + let resObj = JSON.parse(message.toString()) + let retMessage = resObj.args[0] + let timestamp = resObj.timestamp + let postMessagr = { + message: { + humidity: retMessage.humidity, + env: retMessage.env, + cpu: retMessage.cpu, + }, + timestamp, + } + let messStr = JSON.stringify(postMessagr) + // client.publish("/temperature", messStr, { + // qos: 1, + // retain: true, + // }) + }, 3000, { leading: true }) + const gpsThrottle = _.throttle(function (message) { + let resObj = JSON.parse(message.toString()) + let retMessage = resObj.args[0] + let timestamp = resObj.timestamp + let postMessagr = { + message: { + lat: retMessage.blh[0], + lon: retMessage.blh[1], + height: retMessage.blh[2], + heading: retMessage.heading, + speed: retMessage.speed, + star: retMessage.star, + status: retMessage.status, + }, + timestamp, + } + let messStr = JSON.stringify(postMessagr) + + // client.publish("/location", messStr, { + // qos: 1, + // retain: true, + // }) + + }, 100, { leading: true }) + const poseThrottle = _.throttle(function (message) { + let resObj = JSON.parse(message.toString()) + let retMessage = resObj.args[0] + let timestamp = resObj.timestamp + let postMessagr = { + message: { + confidence: retMessage.confidence, + odometer: retMessage.odometer, + poseB: retMessage.pose.blh[0], + poseL: retMessage.pose.blh[1], + poseH: retMessage.pose.blh[2], + + poseR: retMessage.pose.rpy[0], + poseP: retMessage.pose.rpy[1], + poseY: retMessage.pose.rpy[2], + + posex1: retMessage.pose.xyz[0], + posey1: retMessage.pose.xyz[1], + posez1: retMessage.pose.xyz[2], + + heading: retMessage.pose.heading, + replan: retMessage.replan, + star: retMessage.rtk.star, + status: retMessage.rtk.status, + run_state: retMessage.run_state, + score: retMessage.score, + sequence: retMessage.sequence, + enu: retMessage.vel.enu, + velheading: retMessage.vel.heading, + }, + timestamp, + } + current = { + lon: retMessage.pose.blh[1], + lat: retMessage.pose.blh[0], + x: retMessage.pose.xyz[0], + y: retMessage.pose.xyz[1], + } + // client.publish("/pose", JSON.stringify(postMessagr), { + // qos: 1, + // retain: true, + // }) + + }, 100, { leading: true }) + const PlanThrottle = _.throttle(function (message) { + let strJson = JSON.parse(message.toString()).data + let taskName = JSON.parse(message.toString()).handlerId + let mapName = JSON.parse(message.toString()).mapName + console.log(6666, strJson, taskName, mapName) + let params = { + map: mapName || "test", + path: taskName || "task1", + repeate: _.get(strJson, ["repeate"], 1) || 1, + coord_type: "local", + cron: _.get(strJson, ["cron"], "") || "", + coord: [], + plan: [], + "action": [ + [] + ], + } + let coord = [] + let plan = [] + if (_.get(strJson, ["type"], "xy") === "xy") { + if (strJson.start_lon && strJson.start_lat) { + coord = [[strJson.start_lon, strJson.start_lat]] + plan = ["route"] + } + let pointSort = _.sortBy(strJson.way_points, "id") + for (let index = 0; index < pointSort.length; index++) { + let element = pointSort[index]; + coord.push([element.lon, element.lat]) + plan.push("route") + } + if (strJson.end_lon && strJson.end_lat) { + coord.push([strJson.end_lon, strJson.end_lat]) + plan.push("route") + } + } else if (_.get(strJson, ["type"], "xy") === "lonlat") { + if (strJson.start_lon && strJson.start_lat) { + coord = [lonlatToxy(strJson.start_lon, strJson.start_lat)] + plan = ["route"] + } + let pointSort = _.sortBy(strJson.way_points, "id") + for (let index = 0; index < pointSort.length; index++) { + let element = pointSort[index]; + coord.push(lonlatToxy(element.lon, element.lat)) + plan.push("route") + } + if (strJson.end_lon && strJson.end_lat) { + coord.push(lonlatToxy(strJson.end_lon, strJson.end_lat)) + plan.push("route") + } + } + params.coord = coord + params.plan = plan + agent.messenger.sendToApp('plan_action', params); + }, 3000, { leading: true }) + client.on("message", async function (top, message) { + if (_.endsWith(top, "/sensor/battery")) { + batteryThrottle(message) + } else if (_.endsWith(top, "/sensor/temperature")) { + temperatureThrottle(message) + } else if (_.endsWith(top, "/sensor/gps")) { + gpsThrottle(message) + } else if (_.endsWith(top, "/localization/pose")) { + poseThrottle(message) + } else if (_.endsWith(top, "/message/error")) { + let msg = JSON.parse(message.toString()); + // client.publish("/errorMessage", JSON.stringify(msg), { qos: 1, }) + } else if (_.endsWith(top, "/message/warn")) { + let msg = JSON.parse(message.toString()); + // client.publish("/warnMessage", JSON.stringify(msg), { qos: 1, }) + } else if (_.endsWith(top, "/message/info")) { + let msg = JSON.parse(message.toString()); + // client.publish("/infoMessage", JSON.stringify(msg), { qos: 1, }) + } else if (_.endsWith(top, "/Plan")) { + PlanThrottle(message) + } else if (_.endsWith(top, "/startPlan")) { + let strJson = JSON.parse(message.toString()).data + let job = { + args: [ + { + roadmap: _.get(strJson, ["mapName"], "TestNJ1") || "TestNJ1", + task: _.get(strJson, ["taskName"], "task1") || "task1", + }, + ], + timestamp: Date.now() + } + console.log(66661,job,strJson) + // client.publish("/robot4inspection/fa49e558574df1ec/task/procedure/action/start", JSON.stringify(job), { qos: 2, retain: 0, }) + } else if (_.endsWith(top, "/pausePlan")) { + let job = { + args: null, + timestamp: Date.now() + } + // client.publish("/robot4inspection/fa49e558574df1ec/task/procedure/action/pause", JSON.stringify(job), { qos: 1, retain: 0, }) + } else if (_.endsWith(top, "/overPlan")) { + let job = { + args: null, + timestamp: Date.now() + } + // client.publish("/robot4inspection/fa49e558574df1ec/task/procedure/action/cancel", JSON.stringify(job), { qos: 2, retain: 0 }) + + } else if (_.endsWith(top, "/delPlan")) { + let strJson = JSON.parse(message.toString()).data + let params = { + map: _.get(strJson, ["mapName"], "TestNJ1") || "TestNJ1", + path: _.get(strJson, ["taskName"], "task1") || "task1", + } + agent.messenger.sendToApp('plan_delete', params); + } else if (_.endsWith(top, "/planning/service/plan/request")) { + let msg = JSON.parse(message.toString()); + } else if (_.endsWith(top, "/trajectory/2d/compact")) { + let msg = JSON.parse(message.toString()); + } else if (_.endsWith(top, "/task/target/action/goto")) { + let msg = JSON.parse(message.toString()); + } + }); + }); +}; diff --git a/developedcode/weiqin/app.js b/developedcode/weiqin/app.js new file mode 100644 index 0000000..4f1ca3c --- /dev/null +++ b/developedcode/weiqin/app.js @@ -0,0 +1,110 @@ +// app.js +const mqtt = require("mqtt"); +const _ = require("lodash") +// const aedes = require("aedes")(); +// const mqttserver = require("net").createServer(aedes.handle); +class AppBootHook { + constructor(app) { + this.app = app; + } + + configWillLoad() { + // 此时 config 文件已经被读取并合并,但是还并未生效 + // 这是应用层修改配置的最后时机 + // 注意:此函数只支持同步调用 + } + + async didLoad() { + // 所有的配置已经加载完毕 + // 可以用来加载应用自定义的文件,启动自定义的服务 + } + + async willReady() { + // 所有的插件都已启动完毕,但是应用整体还未 ready + // 可以做一些数据初始化等操作,这些操作成功才会启动应用 + } + + async didReady() { + + const client = mqtt.connect("mqtt://192.168.1.102:1883", { + // const client = mqtt.connect("mqtt://127.0.0.1:1883", { + clean: true, + connectTimeout: 4000, + clientId: 'map-editor-' + Math.random().toString(16).substr(2), + username: 'map-editor', + password: 'leador', + }); + client.on("connect", function () { + console.log("appmqtt服务器连接成功"); + }); + + this.app.messenger.on('plan_action', async data => { + let result = await this.app.curl('http://192.168.1.102:8086/v1/path', { + // let result = await this.app.curl('http://127.0.0.1:8086/v1/path', { + // 必须指定 method + method: 'POST', + // 通过 contentType 声明以 JSON 格式发送 + contentType: 'json', + data, + // 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body + dataType: 'json', + }); + let getmapdata = { + map: data.map + } + let mapResult = await this.app.curl(`http://192.168.1.102:8086/v1/roadmap/geojson?map=${getmapdata.map}`, { + // let mapResult = await this.app.curl(`http://127.0.0.1:8086/v1/roadmap/geojson?map=${getmapdata.map}`, { + // 必须指定 method + method: 'GET', + // 通过 contentType 声明以 JSON 格式发送 + contentType: 'json', + // 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body + dataType: 'json', + }); + let plaPparams = { + mapData: mapResult.data + } + console.log(7441, data, getmapdata, plaPparams) + // client.publish("/planResult", JSON.stringify( + + // ), { qos: 1, retain: 0, }) + // let params = { + // "timestamp": Date.now(), + // "pub_timestamp": Date.now(), + // "status": "ok", + // "args": [ + // { + // nid: [], + // "roadmap": data.map, + // "coord": data.coord + // } + // ] + // } + // console.log(741, result, data) + // client.publish("/robot4inspection/fa49e558574df1ec/planning/service/plan/response", JSON.stringify(params), { qos: 2, retain: 0, }) + }); + this.app.messenger.on('plan_delete', async data => { + const result = await this.app.curl('http://192.168.1.102:8086/v1/path', { + // const result = await this.app.curl('http://127.0.0.1:8086/v1/path', { + // 必须指定 method + method: 'DELETE', + // 通过 contentType 声明以 JSON 格式发送 + contentType: 'json', + data, + // 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body + dataType: 'json', + }); + // client.publish("/delPlanResult", JSON.stringify(result.data), { + // qos: 1, + // retain: 1, + // }) + console.log(7411, result) + }); + } + async serverDidReady() { + // http / https server 已启动,开始接受外部请求 + // 此时可以从 app.server 拿到 server 的实例 + } +} + +module.exports = AppBootHook; diff --git a/developedcode/weiqin/app/controller/home.js b/developedcode/weiqin/app/controller/home.js new file mode 100644 index 0000000..4227970 --- /dev/null +++ b/developedcode/weiqin/app/controller/home.js @@ -0,0 +1,11 @@ +'use strict'; + +const { Controller } = require('egg'); +const _ = require("lodash") +class HomeController extends Controller { + async index() { + + } +} + +module.exports = HomeController; diff --git a/developedcode/weiqin/app/router.js b/developedcode/weiqin/app/router.js new file mode 100644 index 0000000..ccb9ae5 --- /dev/null +++ b/developedcode/weiqin/app/router.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * @param {Egg.Application} app - egg application + */ +module.exports = app => { + const { router, controller } = app; + router.post('/', controller.home.index); +}; diff --git a/developedcode/weiqin/config/config.default.js b/developedcode/weiqin/config/config.default.js new file mode 100644 index 0000000..32ef2b9 --- /dev/null +++ b/developedcode/weiqin/config/config.default.js @@ -0,0 +1,36 @@ +/* eslint valid-jsdoc: "off" */ + +"use strict"; + +/** + * @param {Egg.EggAppInfo} appInfo app info + */ +module.exports = (appInfo) => { + /** + * built-in config + * @type {Egg.EggAppConfig} + **/ + const config = (exports = {}); + + // use for cookie sign key, should change to your own and keep security + config.keys = appInfo.name + "_1687851227647_4638"; + + // add your middleware config here + config.middleware = []; + config.cluster = { + listen: { + port: 7020 + } + } + // add your user config here + const userConfig = { + // myAppName: 'egg', + }; + + + + return { + ...config, + ...userConfig, + }; +}; diff --git a/developedcode/weiqin/config/plugin.js b/developedcode/weiqin/config/plugin.js new file mode 100644 index 0000000..d0ecaae --- /dev/null +++ b/developedcode/weiqin/config/plugin.js @@ -0,0 +1,10 @@ +"use strict"; + +/** @type Egg.EggPlugin */ +module.exports = { + // had enabled by egg + // static: { + // enable: true, + // } + +}; diff --git a/developedcode/weiqin/jsconfig.json b/developedcode/weiqin/jsconfig.json new file mode 100644 index 0000000..1bbed3f --- /dev/null +++ b/developedcode/weiqin/jsconfig.json @@ -0,0 +1,5 @@ +{ + "include": [ + "**/*" + ] +} \ No newline at end of file diff --git a/developedcode/weiqin/package.json b/developedcode/weiqin/package.json new file mode 100644 index 0000000..a749294 --- /dev/null +++ b/developedcode/weiqin/package.json @@ -0,0 +1,51 @@ +{ + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "proj4": "^2.9.0", + "ulid": "^2.3.0" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" +} \ No newline at end of file diff --git a/developedcode/weiqin/run/agent_config.json b/developedcode/weiqin/run/agent_config.json new file mode 100644 index 0000000..4342768 --- /dev/null +++ b/developedcode/weiqin/run/agent_config.json @@ -0,0 +1,553 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true, + "logValue": true + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": true, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "supportedRequests": [ + { + "path": {}, + "methods": [ + "POST", + "PATCH", + "DELETE", + "PUT", + "CONNECT" + ] + } + ], + "refererWhiteList": [] + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true + }, + "methodnoallow": { + "enable": true + }, + "noopen": { + "enable": true + }, + "nosniff": { + "enable": true + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "ipExceptionList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y" + }, + "watcher": { + "type": "development", + "eventSources": { + "default": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "defaultParamCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": "100kb", + "fields": 10, + "fileSize": "10mb", + "files": 10, + "fileExtensions": [], + "whitelist": null, + "allowArrayField": false, + "tmpdir": "C:\\Users\\jishubu\\AppData\\Local\\Temp\\egg-multipart-tmp\\mqtttohttp", + "cleanSchedule": { + "cron": "0 30 4 * * *", + "disable": false + } + }, + "development": { + "watchDirs": [], + "ignoreDirs": [], + "fastReady": false, + "reloadOnDebug": true, + "overrideDefault": false, + "overrideIgnore": false + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "E:\\developedcode\\mqtttohttp\\app\\public", + "dynamic": true, + "preload": false, + "buffer": false, + "maxFiles": 1000 + }, + "view": { + "root": "E:\\developedcode\\mqtttohttp\\app\\view", + "cache": false, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "env": "local", + "name": "mqtttohttp", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "proj4": "^2.9.0", + "ulid": "^2.3.0" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "baseDir": "E:\\developedcode\\mqtttohttp", + "HOME": "C:\\Users\\jishubu", + "rundir": "E:\\developedcode\\mqtttohttp\\run", + "dump": { + "ignore": "", + "timing": { + "slowBootActionMinDuration": 5000 + } + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "", + "cacheControl": "public, max-age=2592000" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "onerror": "" + }, + "logger": { + "dir": "E:\\developedcode\\mqtttohttp\\logs\\mqtttohttp", + "encoding": "utf8", + "env": "local", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": false, + "outputJSON": false, + "buffer": true, + "appLogName": "mqtttohttp-web.log", + "coreLogName": "egg-web.log", + "agentLogName": "egg-agent.log", + "errorLogName": "common-error.log", + "coreLogger": { + "consoleLevel": "WARN" + }, + "allowDebugAtProd": false, + "enablePerformanceTimer": false, + "enableFastContextLogger": false, + "type": "agent", + "localStorage": "" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "useHttpClientNext": false + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "meta", + "siteFile", + "notfound", + "bodyParser", + "overrideMethod" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 7020, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "middleware": [], + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware" + }, + "plugins": { + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror", + "version": "2.2.0" + }, + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session", + "version": "3.3.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher", + "version": "3.1.1", + "dependents": [ + "development" + ] + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart", + "version": "3.3.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security", + "version": "3.0.0" + }, + "development": { + "enable": true, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development", + "version": "2.7.0" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule", + "version": "4.0.0", + "dependents": [ + "logrotator" + ] + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static", + "version": "2.3.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view", + "version": "2.1.4" + } + }, + "appInfo": { + "name": "mqtttohttp", + "baseDir": "E:\\developedcode\\mqtttohttp", + "env": "local", + "scope": "", + "HOME": "C:\\Users\\jishubu", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "proj4": "^2.9.0", + "ulid": "^2.3.0" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "root": "E:\\developedcode\\mqtttohttp" + } +} \ No newline at end of file diff --git a/developedcode/weiqin/run/agent_config_meta.json b/developedcode/weiqin/run/agent_config_meta.json new file mode 100644 index 0000000..c97d480 --- /dev/null +++ b/developedcode/weiqin/run/agent_config_meta.json @@ -0,0 +1,312 @@ +{ + "keys": "E:\\developedcode\\mqtttohttp\\config\\config.default.js", + "middleware": "E:\\developedcode\\mqtttohttp\\config\\config.default.js", + "cluster": { + "listen": { + "port": "E:\\developedcode\\mqtttohttp\\config\\config.default.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "hostname": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + } + }, + "session": { + "maxAge": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "key": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "logValue": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js" + }, + "security": { + "domainWhiteList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "csrf": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "useSession": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "supportedRequests": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "xframe": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.local.js", + "maxAge": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "policy": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "ipExceptionList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "helper": { + "shtml": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\config\\config.local.js", + "eventSources": { + "default": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultParamCharset": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "allowArrayField": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "disable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "development": { + "watchDirs": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "ignoreDirs": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "fastReady": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "reloadOnDebug": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "overrideDefault": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "overrideIgnore": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js" + }, + "logrotator": { + "filesRotateByHour": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "dir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "preload": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "maxFiles": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js" + }, + "view": { + "root": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js", + "cache": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.local.js", + "defaultExtension": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js" + }, + "env": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "name": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "cookies": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "proxy": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "version": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "description": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "private": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg": { + "declarations": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "dependencies": { + "aedes": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "lodash": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "mqtt": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "proj4": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "ulid": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "egg-bin": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg-mock": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "eslint": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "eslint-config-egg": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "stop": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dev": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "npmPro": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "build": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "debug": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "test": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "test-local": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "cov": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "lint": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "ci": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "repository": { + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "url": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "author": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "license": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "HOME": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "rundir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dump": { + "ignore": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "timing": { + "slowBootActionMinDuration": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + } + }, + "confusedConfigurations": { + "bodyparser": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "notFound": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "sitefile": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "middlewares": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "httpClient": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "cacheControl": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "formLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "textLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "strict": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "depth": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "logger": { + "dir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "env": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "level": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "outputJSON": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "buffer": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "appLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "coreLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "agentLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "errorLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "coreLogger": { + "consoleLevel": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.local.js" + }, + "allowDebugAtProd": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "enablePerformanceTimer": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "enableFastContextLogger": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "useHttpClientNext": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "meta": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "logging": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "clusterClient": { + "maxWaitTime": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" +} \ No newline at end of file diff --git a/developedcode/weiqin/run/agent_timing_1840.json b/developedcode/weiqin/run/agent_timing_1840.json new file mode 100644 index 0000000..5c5af6e --- /dev/null +++ b/developedcode/weiqin/run/agent_timing_1840.json @@ -0,0 +1,370 @@ +[ + { + "name": "Process Start", + "start": 1689833487666, + "end": 1689833490155, + "duration": 2489, + "pid": 1840, + "index": 0 + }, + { + "name": "Application Start", + "start": 1689833490156, + "end": 1689833490554, + "duration": 398, + "pid": 1840, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1689833490171, + "end": 1689833490189, + "duration": 18, + "pid": 1840, + "index": 2 + }, + { + "name": "Load Config", + "start": 1689833490189, + "end": 1689833490221, + "duration": 32, + "pid": 1840, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1689833490191, + "end": 1689833490191, + "duration": 0, + "pid": 1840, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1689833490193, + "end": 1689833490193, + "duration": 0, + "pid": 1840, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1689833490194, + "end": 1689833490194, + "duration": 0, + "pid": 1840, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1689833490196, + "end": 1689833490196, + "duration": 0, + "pid": 1840, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1689833490197, + "end": 1689833490197, + "duration": 0, + "pid": 1840, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1689833490198, + "end": 1689833490199, + "duration": 1, + "pid": 1840, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1689833490201, + "end": 1689833490202, + "duration": 1, + "pid": 1840, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1689833490202, + "end": 1689833490203, + "duration": 1, + "pid": 1840, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1689833490203, + "end": 1689833490204, + "duration": 1, + "pid": 1840, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1689833490204, + "end": 1689833490205, + "duration": 1, + "pid": 1840, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1689833490205, + "end": 1689833490205, + "duration": 0, + "pid": 1840, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1689833490206, + "end": 1689833490207, + "duration": 1, + "pid": 1840, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1689833490208, + "end": 1689833490208, + "duration": 0, + "pid": 1840, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg/config/config.default.js", + "start": 1689833490209, + "end": 1689833490209, + "duration": 0, + "pid": 1840, + "index": 17 + }, + { + "name": "Require(14) config/config.default.js", + "start": 1689833490211, + "end": 1689833490211, + "duration": 0, + "pid": 1840, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg-security/config/config.local.js", + "start": 1689833490211, + "end": 1689833490212, + "duration": 1, + "pid": 1840, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-watcher/config/config.local.js", + "start": 1689833490214, + "end": 1689833490215, + "duration": 1, + "pid": 1840, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-view/config/config.local.js", + "start": 1689833490220, + "end": 1689833490220, + "duration": 0, + "pid": 1840, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg/config/config.local.js", + "start": 1689833490220, + "end": 1689833490221, + "duration": 1, + "pid": 1840, + "index": 22 + }, + { + "name": "Load extend/agent.js", + "start": 1689833490222, + "end": 1689833490272, + "duration": 50, + "pid": 1840, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-security/app/extend/agent.js", + "start": 1689833490223, + "end": 1689833490225, + "duration": 2, + "pid": 1840, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-schedule/app/extend/agent.js", + "start": 1689833490226, + "end": 1689833490266, + "duration": 40, + "pid": 1840, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-logrotator/app/extend/agent.js", + "start": 1689833490267, + "end": 1689833490268, + "duration": 1, + "pid": 1840, + "index": 26 + }, + { + "name": "Load extend/context.js", + "start": 1689833490272, + "end": 1689833490312, + "duration": 40, + "pid": 1840, + "index": 27 + }, + { + "name": "Require(22) node_modules/egg-security/app/extend/context.js", + "start": 1689833490273, + "end": 1689833490284, + "duration": 11, + "pid": 1840, + "index": 28 + }, + { + "name": "Require(23) node_modules/egg-jsonp/app/extend/context.js", + "start": 1689833490285, + "end": 1689833490287, + "duration": 2, + "pid": 1840, + "index": 29 + }, + { + "name": "Require(24) node_modules/egg-i18n/app/extend/context.js", + "start": 1689833490288, + "end": 1689833490289, + "duration": 1, + "pid": 1840, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg-multipart/app/extend/context.js", + "start": 1689833490289, + "end": 1689833490304, + "duration": 15, + "pid": 1840, + "index": 31 + }, + { + "name": "Require(26) node_modules/egg-view/app/extend/context.js", + "start": 1689833490305, + "end": 1689833490306, + "duration": 1, + "pid": 1840, + "index": 32 + }, + { + "name": "Require(27) node_modules/egg/app/extend/context.js", + "start": 1689833490307, + "end": 1689833490308, + "duration": 1, + "pid": 1840, + "index": 33 + }, + { + "name": "Load agent.js", + "start": 1689833490312, + "end": 1689833490467, + "duration": 155, + "pid": 1840, + "index": 34 + }, + { + "name": "Require(28) node_modules/egg-security/agent.js", + "start": 1689833490313, + "end": 1689833490314, + "duration": 1, + "pid": 1840, + "index": 35 + }, + { + "name": "Require(29) node_modules/egg-onerror/agent.js", + "start": 1689833490314, + "end": 1689833490315, + "duration": 1, + "pid": 1840, + "index": 36 + }, + { + "name": "Require(30) node_modules/egg-watcher/agent.js", + "start": 1689833490315, + "end": 1689833490319, + "duration": 4, + "pid": 1840, + "index": 37 + }, + { + "name": "Require(31) node_modules/egg-schedule/agent.js", + "start": 1689833490319, + "end": 1689833490321, + "duration": 2, + "pid": 1840, + "index": 38 + }, + { + "name": "Require(32) node_modules/egg-development/agent.js", + "start": 1689833490321, + "end": 1689833490345, + "duration": 24, + "pid": 1840, + "index": 39 + }, + { + "name": "Require(33) node_modules/egg-logrotator/agent.js", + "start": 1689833490345, + "end": 1689833490346, + "duration": 1, + "pid": 1840, + "index": 40 + }, + { + "name": "Require(34) node_modules/egg/agent.js", + "start": 1689833490347, + "end": 1689833490347, + "duration": 0, + "pid": 1840, + "index": 41 + }, + { + "name": "Require(35) agent.js", + "start": 1689833490347, + "end": 1689833490466, + "duration": 119, + "pid": 1840, + "index": 42 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1689833490472, + "end": 1689833490528, + "duration": 56, + "pid": 1840, + "index": 43 + }, + { + "name": "Before Start in node_modules/egg-schedule/agent.js:12:9", + "start": 1689833490473, + "end": 1689833490509, + "duration": 36, + "pid": 1840, + "index": 44 + }, + { + "name": "Before Start in node_modules/egg-development/agent.js:12:9", + "start": 1689833490473, + "end": 1689833490554, + "duration": 81, + "pid": 1840, + "index": 45 + } +] \ No newline at end of file diff --git a/developedcode/weiqin/run/application_config.json b/developedcode/weiqin/run/application_config.json new file mode 100644 index 0000000..ae6f731 --- /dev/null +++ b/developedcode/weiqin/run/application_config.json @@ -0,0 +1,588 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true, + "logValue": true, + "overwrite": true, + "signed": true, + "autoCommit": true, + "encode": "", + "decode": "", + "genid": "" + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": true, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "supportedRequests": [ + { + "path": {}, + "methods": [ + "POST", + "PATCH", + "DELETE", + "PUT", + "CONNECT" + ] + } + ], + "refererWhiteList": [], + "matching": "" + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN", + "matching": "" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true, + "matching": "" + }, + "methodnoallow": { + "enable": true, + "matching": "" + }, + "noopen": { + "enable": true, + "matching": "" + }, + "nosniff": { + "enable": true, + "matching": "" + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block", + "matching": "" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "ipExceptionList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [ + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\locales", + "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\locales", + "E:\\developedcode\\mqtttohttp\\config\\locales" + ], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y", + "functionName": "__" + }, + "watcher": { + "type": "development", + "eventSources": { + "default": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "defaultParamCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": 102400, + "fields": 10, + "fileSize": 10485760, + "files": 10, + "fileExtensions": [], + "whitelist": null, + "allowArrayField": false, + "tmpdir": "C:\\Users\\jishubu\\AppData\\Local\\Temp\\egg-multipart-tmp\\mqtttohttp", + "cleanSchedule": { + "cron": "0 30 4 * * *", + "disable": false + }, + "checkFile": "" + }, + "development": { + "watchDirs": [], + "ignoreDirs": [], + "fastReady": false, + "reloadOnDebug": true, + "overrideDefault": false, + "overrideIgnore": false + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "E:\\developedcode\\mqtttohttp\\app\\public", + "dynamic": true, + "preload": false, + "buffer": false, + "maxFiles": 1000 + }, + "view": { + "root": "E:\\developedcode\\mqtttohttp\\app\\view", + "cache": false, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "env": "local", + "name": "mqtttohttp", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "proj4": "^2.9.0", + "ulid": "^2.3.0" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "baseDir": "E:\\developedcode\\mqtttohttp", + "HOME": "C:\\Users\\jishubu", + "rundir": "E:\\developedcode\\mqtttohttp\\run", + "dump": { + "ignore": "", + "timing": { + "slowBootActionMinDuration": 5000 + } + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "", + "cacheControl": "public, max-age=2592000" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "returnRawBody": true + }, + "logger": { + "dir": "E:\\developedcode\\mqtttohttp\\logs\\mqtttohttp", + "encoding": "utf8", + "env": "local", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": false, + "outputJSON": false, + "buffer": true, + "appLogName": "mqtttohttp-web.log", + "coreLogName": "egg-web.log", + "agentLogName": "egg-agent.log", + "errorLogName": "common-error.log", + "coreLogger": { + "consoleLevel": "WARN" + }, + "allowDebugAtProd": false, + "enablePerformanceTimer": false, + "enableFastContextLogger": false, + "type": "application", + "localStorage": "" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "useHttpClientNext": false + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "meta", + "siteFile", + "notfound", + "static", + "bodyParser", + "overrideMethod", + "session", + "securities", + "i18n", + "eggLoaderTrace" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 7020, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "middleware": [], + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware" + }, + "plugins": { + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror", + "version": "2.2.0" + }, + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session", + "version": "3.3.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher", + "version": "3.1.1", + "dependents": [ + "development" + ] + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart", + "version": "3.3.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security", + "version": "3.0.0" + }, + "development": { + "enable": true, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development", + "version": "2.7.0" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule", + "version": "4.0.0", + "dependents": [ + "logrotator" + ] + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static", + "version": "2.3.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view", + "version": "2.1.4" + } + }, + "appInfo": { + "name": "mqtttohttp", + "baseDir": "E:\\developedcode\\mqtttohttp", + "env": "local", + "scope": "", + "HOME": "C:\\Users\\jishubu", + "pkg": { + "name": "mqtttohttp", + "version": "1.0.0", + "description": "", + "private": true, + "egg": { + "declarations": true + }, + "dependencies": { + "aedes": "^0.49.0", + "egg": "^3", + "egg-scripts": "^2", + "lodash": "^4.17.21", + "mqtt": "^4.3.7", + "proj4": "^2.9.0", + "ulid": "^2.3.0" + }, + "devDependencies": { + "egg-bin": "^5", + "egg-ci": "^2", + "egg-mock": "^5", + "eslint": "^8", + "eslint-config-egg": "^12" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=egg-server-mqtttohttp", + "stop": "egg-scripts stop --title=egg-server-mqtttohttp", + "dev": "egg-bin dev", + "npmPro": "npm install --production", + "build": "tar -zcvf ../release.tgz .", + "debug": "egg-bin debug", + "test": "npm run lint -- --fix && npm run test-local", + "test-local": "egg-bin test", + "cov": "egg-bin cov", + "lint": "eslint .", + "ci": "npm run lint && npm run cov" + }, + "ci": { + "version": "16, 18", + "type": "github" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "", + "license": "MIT" + }, + "root": "E:\\developedcode\\mqtttohttp" + } +} \ No newline at end of file diff --git a/developedcode/weiqin/run/application_config_meta.json b/developedcode/weiqin/run/application_config_meta.json new file mode 100644 index 0000000..c97d480 --- /dev/null +++ b/developedcode/weiqin/run/application_config_meta.json @@ -0,0 +1,312 @@ +{ + "keys": "E:\\developedcode\\mqtttohttp\\config\\config.default.js", + "middleware": "E:\\developedcode\\mqtttohttp\\config\\config.default.js", + "cluster": { + "listen": { + "port": "E:\\developedcode\\mqtttohttp\\config\\config.default.js", + "path": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "hostname": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + } + }, + "session": { + "maxAge": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "key": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js", + "logValue": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-session\\config\\config.default.js" + }, + "security": { + "domainWhiteList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "csrf": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "useSession": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "supportedRequests": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "xframe": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.local.js", + "maxAge": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "policy": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "ipExceptionList": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "helper": { + "shtml": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\config\\config.local.js", + "eventSources": { + "default": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultParamCharset": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "allowArrayField": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js", + "disable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "development": { + "watchDirs": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "ignoreDirs": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "fastReady": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "reloadOnDebug": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "overrideDefault": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js", + "overrideIgnore": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-development\\config\\config.default.js" + }, + "logrotator": { + "filesRotateByHour": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "dir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "preload": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js", + "maxFiles": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-static\\config\\config.default.js" + }, + "view": { + "root": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js", + "cache": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.local.js", + "defaultExtension": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "E:\\developedcode\\mqtttohttp\\node_modules\\egg-view\\config\\config.default.js" + }, + "env": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "name": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "cookies": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "proxy": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "version": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "description": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "private": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg": { + "declarations": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "dependencies": { + "aedes": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "lodash": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "mqtt": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "proj4": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "ulid": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "egg-bin": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "egg-mock": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "eslint": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "eslint-config-egg": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "stop": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dev": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "npmPro": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "build": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "debug": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "test": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "test-local": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "cov": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "lint": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "ci": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "repository": { + "type": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "url": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "author": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "license": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "HOME": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "rundir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dump": { + "ignore": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "timing": { + "slowBootActionMinDuration": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + } + }, + "confusedConfigurations": { + "bodyparser": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "notFound": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "sitefile": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "middlewares": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "httpClient": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "cacheControl": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "formLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "textLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "strict": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "depth": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "logger": { + "dir": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "env": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "level": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "outputJSON": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "buffer": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "appLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "coreLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "agentLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "errorLogName": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "coreLogger": { + "consoleLevel": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.local.js" + }, + "allowDebugAtProd": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "enablePerformanceTimer": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "enableFastContextLogger": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "useHttpClientNext": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "meta": { + "enable": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "logging": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "clusterClient": { + "maxWaitTime": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "E:\\developedcode\\mqtttohttp\\node_modules\\egg\\config\\config.default.js" +} \ No newline at end of file diff --git a/developedcode/weiqin/run/application_timing_12508.json b/developedcode/weiqin/run/application_timing_12508.json new file mode 100644 index 0000000..13f4efa --- /dev/null +++ b/developedcode/weiqin/run/application_timing_12508.json @@ -0,0 +1,546 @@ +[ + { + "name": "Process Start", + "start": 1689833490588, + "end": 1689833491743, + "duration": 1155, + "pid": 12508, + "index": 0 + }, + { + "name": "Application Start", + "start": 1689833491744, + "end": 1689833492299, + "duration": 555, + "pid": 12508, + "index": 1 + }, + { + "name": "Load Plugin", + "start": 1689833491761, + "end": 1689833491776, + "duration": 15, + "pid": 12508, + "index": 2 + }, + { + "name": "Load Config", + "start": 1689833491776, + "end": 1689833491801, + "duration": 25, + "pid": 12508, + "index": 3 + }, + { + "name": "Require(0) config/config.default.js", + "start": 1689833491777, + "end": 1689833491778, + "duration": 1, + "pid": 12508, + "index": 4 + }, + { + "name": "Require(1) node_modules/egg-session/config/config.default.js", + "start": 1689833491780, + "end": 1689833491780, + "duration": 0, + "pid": 12508, + "index": 5 + }, + { + "name": "Require(2) node_modules/egg-security/config/config.default.js", + "start": 1689833491781, + "end": 1689833491781, + "duration": 0, + "pid": 12508, + "index": 6 + }, + { + "name": "Require(3) node_modules/egg-jsonp/config/config.default.js", + "start": 1689833491784, + "end": 1689833491784, + "duration": 0, + "pid": 12508, + "index": 7 + }, + { + "name": "Require(4) node_modules/egg-onerror/config/config.default.js", + "start": 1689833491785, + "end": 1689833491785, + "duration": 0, + "pid": 12508, + "index": 8 + }, + { + "name": "Require(5) node_modules/egg-i18n/config/config.default.js", + "start": 1689833491785, + "end": 1689833491786, + "duration": 1, + "pid": 12508, + "index": 9 + }, + { + "name": "Require(6) node_modules/egg-watcher/config/config.default.js", + "start": 1689833491787, + "end": 1689833491787, + "duration": 0, + "pid": 12508, + "index": 10 + }, + { + "name": "Require(7) node_modules/egg-schedule/config/config.default.js", + "start": 1689833491787, + "end": 1689833491788, + "duration": 1, + "pid": 12508, + "index": 11 + }, + { + "name": "Require(8) node_modules/egg-multipart/config/config.default.js", + "start": 1689833491788, + "end": 1689833491788, + "duration": 0, + "pid": 12508, + "index": 12 + }, + { + "name": "Require(9) node_modules/egg-development/config/config.default.js", + "start": 1689833491789, + "end": 1689833491789, + "duration": 0, + "pid": 12508, + "index": 13 + }, + { + "name": "Require(10) node_modules/egg-logrotator/config/config.default.js", + "start": 1689833491790, + "end": 1689833491790, + "duration": 0, + "pid": 12508, + "index": 14 + }, + { + "name": "Require(11) node_modules/egg-static/config/config.default.js", + "start": 1689833491791, + "end": 1689833491791, + "duration": 0, + "pid": 12508, + "index": 15 + }, + { + "name": "Require(12) node_modules/egg-view/config/config.default.js", + "start": 1689833491792, + "end": 1689833491792, + "duration": 0, + "pid": 12508, + "index": 16 + }, + { + "name": "Require(13) node_modules/egg/config/config.default.js", + "start": 1689833491793, + "end": 1689833491793, + "duration": 0, + "pid": 12508, + "index": 17 + }, + { + "name": "Require(14) config/config.default.js", + "start": 1689833491794, + "end": 1689833491795, + "duration": 1, + "pid": 12508, + "index": 18 + }, + { + "name": "Require(15) node_modules/egg-security/config/config.local.js", + "start": 1689833491795, + "end": 1689833491796, + "duration": 1, + "pid": 12508, + "index": 19 + }, + { + "name": "Require(16) node_modules/egg-watcher/config/config.local.js", + "start": 1689833491797, + "end": 1689833491797, + "duration": 0, + "pid": 12508, + "index": 20 + }, + { + "name": "Require(17) node_modules/egg-view/config/config.local.js", + "start": 1689833491799, + "end": 1689833491800, + "duration": 1, + "pid": 12508, + "index": 21 + }, + { + "name": "Require(18) node_modules/egg/config/config.local.js", + "start": 1689833491800, + "end": 1689833491801, + "duration": 1, + "pid": 12508, + "index": 22 + }, + { + "name": "Load extend/application.js", + "start": 1689833491802, + "end": 1689833491818, + "duration": 16, + "pid": 12508, + "index": 23 + }, + { + "name": "Require(19) node_modules/egg-session/app/extend/application.js", + "start": 1689833491803, + "end": 1689833491803, + "duration": 0, + "pid": 12508, + "index": 24 + }, + { + "name": "Require(20) node_modules/egg-security/app/extend/application.js", + "start": 1689833491804, + "end": 1689833491805, + "duration": 1, + "pid": 12508, + "index": 25 + }, + { + "name": "Require(21) node_modules/egg-jsonp/app/extend/application.js", + "start": 1689833491805, + "end": 1689833491807, + "duration": 2, + "pid": 12508, + "index": 26 + }, + { + "name": "Require(22) node_modules/egg-schedule/app/extend/application.js", + "start": 1689833491808, + "end": 1689833491810, + "duration": 2, + "pid": 12508, + "index": 27 + }, + { + "name": "Require(23) node_modules/egg-logrotator/app/extend/application.js", + "start": 1689833491811, + "end": 1689833491813, + "duration": 2, + "pid": 12508, + "index": 28 + }, + { + "name": "Require(24) node_modules/egg-view/app/extend/application.js", + "start": 1689833491814, + "end": 1689833491815, + "duration": 1, + "pid": 12508, + "index": 29 + }, + { + "name": "Load extend/request.js", + "start": 1689833491818, + "end": 1689833491826, + "duration": 8, + "pid": 12508, + "index": 30 + }, + { + "name": "Require(25) node_modules/egg/app/extend/request.js", + "start": 1689833491821, + "end": 1689833491822, + "duration": 1, + "pid": 12508, + "index": 31 + }, + { + "name": "Load extend/response.js", + "start": 1689833491826, + "end": 1689833491834, + "duration": 8, + "pid": 12508, + "index": 32 + }, + { + "name": "Require(26) node_modules/egg/app/extend/response.js", + "start": 1689833491828, + "end": 1689833491831, + "duration": 3, + "pid": 12508, + "index": 33 + }, + { + "name": "Load extend/context.js", + "start": 1689833491834, + "end": 1689833491868, + "duration": 34, + "pid": 12508, + "index": 34 + }, + { + "name": "Require(27) node_modules/egg-security/app/extend/context.js", + "start": 1689833491835, + "end": 1689833491846, + "duration": 11, + "pid": 12508, + "index": 35 + }, + { + "name": "Require(28) node_modules/egg-jsonp/app/extend/context.js", + "start": 1689833491847, + "end": 1689833491848, + "duration": 1, + "pid": 12508, + "index": 36 + }, + { + "name": "Require(29) node_modules/egg-i18n/app/extend/context.js", + "start": 1689833491849, + "end": 1689833491849, + "duration": 0, + "pid": 12508, + "index": 37 + }, + { + "name": "Require(30) node_modules/egg-multipart/app/extend/context.js", + "start": 1689833491850, + "end": 1689833491861, + "duration": 11, + "pid": 12508, + "index": 38 + }, + { + "name": "Require(31) node_modules/egg-view/app/extend/context.js", + "start": 1689833491862, + "end": 1689833491863, + "duration": 1, + "pid": 12508, + "index": 39 + }, + { + "name": "Require(32) node_modules/egg/app/extend/context.js", + "start": 1689833491864, + "end": 1689833491865, + "duration": 1, + "pid": 12508, + "index": 40 + }, + { + "name": "Load extend/helper.js", + "start": 1689833491868, + "end": 1689833491892, + "duration": 24, + "pid": 12508, + "index": 41 + }, + { + "name": "Require(33) node_modules/egg-security/app/extend/helper.js", + "start": 1689833491869, + "end": 1689833491887, + "duration": 18, + "pid": 12508, + "index": 42 + }, + { + "name": "Require(34) node_modules/egg/app/extend/helper.js", + "start": 1689833491889, + "end": 1689833491889, + "duration": 0, + "pid": 12508, + "index": 43 + }, + { + "name": "Load app.js", + "start": 1689833491892, + "end": 1689833492041, + "duration": 149, + "pid": 12508, + "index": 44 + }, + { + "name": "Require(35) node_modules/egg-session/app.js", + "start": 1689833491893, + "end": 1689833491893, + "duration": 0, + "pid": 12508, + "index": 45 + }, + { + "name": "Require(36) node_modules/egg-security/app.js", + "start": 1689833491893, + "end": 1689833491896, + "duration": 3, + "pid": 12508, + "index": 46 + }, + { + "name": "Require(37) node_modules/egg-onerror/app.js", + "start": 1689833491897, + "end": 1689833491906, + "duration": 9, + "pid": 12508, + "index": 47 + }, + { + "name": "Require(38) node_modules/egg-i18n/app.js", + "start": 1689833491906, + "end": 1689833491920, + "duration": 14, + "pid": 12508, + "index": 48 + }, + { + "name": "Require(39) node_modules/egg-watcher/app.js", + "start": 1689833491920, + "end": 1689833491923, + "duration": 3, + "pid": 12508, + "index": 49 + }, + { + "name": "Require(40) node_modules/egg-schedule/app.js", + "start": 1689833491923, + "end": 1689833491924, + "duration": 1, + "pid": 12508, + "index": 50 + }, + { + "name": "Require(41) node_modules/egg-multipart/app.js", + "start": 1689833491924, + "end": 1689833491926, + "duration": 2, + "pid": 12508, + "index": 51 + }, + { + "name": "Require(42) node_modules/egg-development/app.js", + "start": 1689833491927, + "end": 1689833491927, + "duration": 0, + "pid": 12508, + "index": 52 + }, + { + "name": "Require(43) node_modules/egg-logrotator/app.js", + "start": 1689833491928, + "end": 1689833491928, + "duration": 0, + "pid": 12508, + "index": 53 + }, + { + "name": "Require(44) node_modules/egg-static/app.js", + "start": 1689833491929, + "end": 1689833491929, + "duration": 0, + "pid": 12508, + "index": 54 + }, + { + "name": "Require(45) app.js", + "start": 1689833491930, + "end": 1689833492041, + "duration": 111, + "pid": 12508, + "index": 55 + }, + { + "name": "Before Start in node_modules/egg-watcher/lib/init.js:15:14", + "start": 1689833492052, + "end": 1689833492275, + "duration": 223, + "pid": 12508, + "index": 56 + }, + { + "name": "Did Load in app.js:didLoad", + "start": 1689833492106, + "end": 1689833492255, + "duration": 149, + "pid": 12508, + "index": 57 + }, + { + "name": "Load Service", + "start": 1689833492106, + "end": 1689833492117, + "duration": 11, + "pid": 12508, + "index": 58 + }, + { + "name": "Load \"service\" to Context", + "start": 1689833492106, + "end": 1689833492117, + "duration": 11, + "pid": 12508, + "index": 59 + }, + { + "name": "Load Middleware", + "start": 1689833492117, + "end": 1689833492237, + "duration": 120, + "pid": 12508, + "index": 60 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1689833492117, + "end": 1689833492223, + "duration": 106, + "pid": 12508, + "index": 61 + }, + { + "name": "Load Controller", + "start": 1689833492237, + "end": 1689833492240, + "duration": 3, + "pid": 12508, + "index": 62 + }, + { + "name": "Load \"controller\" to Application", + "start": 1689833492237, + "end": 1689833492240, + "duration": 3, + "pid": 12508, + "index": 63 + }, + { + "name": "Load Router", + "start": 1689833492240, + "end": 1689833492242, + "duration": 2, + "pid": 12508, + "index": 64 + }, + { + "name": "Require(46) app/router.js", + "start": 1689833492241, + "end": 1689833492241, + "duration": 0, + "pid": 12508, + "index": 65 + }, + { + "name": "Before Start in node_modules/egg-core/lib/egg.js:304:10", + "start": 1689833492241, + "end": 1689833492255, + "duration": 14, + "pid": 12508, + "index": 66 + }, + { + "name": "Will Ready in app.js:willReady", + "start": 1689833492275, + "end": 1689833492275, + "duration": 0, + "pid": 12508, + "index": 67 + } +] \ No newline at end of file diff --git a/developedcode/weiqin/run/router.json b/developedcode/weiqin/run/router.json new file mode 100644 index 0000000..0ad7725 --- /dev/null +++ b/developedcode/weiqin/run/router.json @@ -0,0 +1,14 @@ +[ + { + "name": null, + "methods": [ + "POST" + ], + "paramNames": [], + "path": "/", + "regexp": "/^(?:\\/(?=$))?$/", + "stack": [ + "wrappedController" + ] + } +] \ No newline at end of file diff --git a/developedcode/weiqin/test/app/controller/home.test.js b/developedcode/weiqin/test/app/controller/home.test.js new file mode 100644 index 0000000..a4f0fc9 --- /dev/null +++ b/developedcode/weiqin/test/app/controller/home.test.js @@ -0,0 +1,20 @@ +'use strict'; + +const { app, assert } = require('egg-mock/bootstrap'); + +describe('test/app/controller/home.test.js', () => { + it('should assert', async () => { + const pkg = require('../../../package.json'); + assert(app.config.keys.startsWith(pkg.name)); + + // const ctx = app.mockContext({}); + // yield ctx.service.xx(); + }); + + it('should GET /', async () => { + return app.httpRequest() + .get('/') + .expect('hi, egg') + .expect(200); + }); +}); diff --git a/developedcode/weiqin/typings/app/controller/index.d.ts b/developedcode/weiqin/typings/app/controller/index.d.ts new file mode 100644 index 0000000..c49e6c0 --- /dev/null +++ b/developedcode/weiqin/typings/app/controller/index.d.ts @@ -0,0 +1,12 @@ +// This file is created by egg-ts-helper@1.34.7 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import ExportHome = require('../../../app/controller/home'); + +declare module 'egg' { + interface IController { + home: ExportHome; + } +} diff --git a/developedcode/weiqin/typings/app/index.d.ts b/developedcode/weiqin/typings/app/index.d.ts new file mode 100644 index 0000000..92fbc98 --- /dev/null +++ b/developedcode/weiqin/typings/app/index.d.ts @@ -0,0 +1,7 @@ +// This file is created by egg-ts-helper@1.34.7 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +export * from 'egg'; +export as namespace Egg; diff --git a/developedcode/weiqin/typings/config/index.d.ts b/developedcode/weiqin/typings/config/index.d.ts new file mode 100644 index 0000000..cf12b7b --- /dev/null +++ b/developedcode/weiqin/typings/config/index.d.ts @@ -0,0 +1,12 @@ +// This file is created by egg-ts-helper@1.34.7 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import { EggAppConfig } from 'egg'; +import ExportConfigDefault = require('../../config/config.default'); +type ConfigDefault = ReturnType; +type NewEggAppConfig = ConfigDefault; +declare module 'egg' { + interface EggAppConfig extends NewEggAppConfig { } +} \ No newline at end of file diff --git a/developedcode/weiqin/typings/config/plugin.d.ts b/developedcode/weiqin/typings/config/plugin.d.ts new file mode 100644 index 0000000..686a19b --- /dev/null +++ b/developedcode/weiqin/typings/config/plugin.d.ts @@ -0,0 +1,34 @@ +// This file is created by egg-ts-helper@1.34.7 +// Do not modify this file!!!!!!!!! +/* eslint-disable */ + +import 'egg'; +import 'egg-onerror'; +import 'egg-session'; +import 'egg-i18n'; +import 'egg-watcher'; +import 'egg-multipart'; +import 'egg-security'; +import 'egg-development'; +import 'egg-logrotator'; +import 'egg-schedule'; +import 'egg-static'; +import 'egg-jsonp'; +import 'egg-view'; +import { EggPluginItem } from 'egg'; +declare module 'egg' { + interface EggPlugin { + onerror?: EggPluginItem; + session?: EggPluginItem; + i18n?: EggPluginItem; + watcher?: EggPluginItem; + multipart?: EggPluginItem; + security?: EggPluginItem; + development?: EggPluginItem; + logrotator?: EggPluginItem; + schedule?: EggPluginItem; + static?: EggPluginItem; + jsonp?: EggPluginItem; + view?: EggPluginItem; + } +} \ No newline at end of file diff --git a/developedcode/海康相机原码.zip b/developedcode/海康相机原码.zip new file mode 100644 index 0000000..7e4b8c2 Binary files /dev/null and b/developedcode/海康相机原码.zip differ