diff --git a/src/api/DraftApi.ts b/src/api/DraftApi.ts index 2fffbab..35bbae5 100644 --- a/src/api/DraftApi.ts +++ b/src/api/DraftApi.ts @@ -47,18 +47,6 @@ export function deleteDraft(id: number) { return api.delete(`${DraftUriBase}/${id}`); } -/** - * 草稿图发布 - * @param id 草稿id - */ -export function publishDraft(data: { - layoutId: string; - name: string; - overwrite?: boolean; -}) { - return api.post(`${DraftUriBase}/publish`, data); -} - /** * 获取草稿数据 * @param params diff --git a/src/api/LineInfoApi.ts b/src/api/LineInfoApi.ts new file mode 100644 index 0000000..5b54923 --- /dev/null +++ b/src/api/LineInfoApi.ts @@ -0,0 +1,80 @@ +import { api } from 'src/boot/axios'; +import { PageDto, PageQueryDto } from './ApiCommon'; + +const UriBase = '/api/lineInfo'; + +interface Item { + id: number; + name: string; + lineId: number; + config: string; + createdAt: string; + updateAt: string; +} + +export class PagingQueryParams extends PageQueryDto { + name?: string; +} + +/** + * 分页查询 + * @param params + * @returns + */ +export async function pageQuery( + params: PagingQueryParams +): Promise> { + const response = await api.get(`${UriBase}/paging`, { + params: params, + }); + return response.data; +} + +/** + * 创建线路 + * @param params + * @returns + */ +export function createLine(data: { + name: string; + lineId: number; + config?: string; +}) { + return api.post(`${UriBase}`, data); +} + +/** + * 删除线路 + * @param id 线路id + */ +export function deleteLine(id: number) { + return api.delete(`${UriBase}/${id}`); +} + +/** + * 保存线路数据 + * @param id 草稿id + */ +export function saveLineData(id: number, data: Item) { + return api.put(`${UriBase}/${id}`, data); +} + +/** + * 获取线路数据详情 + * @param params + * @returns + */ +export async function getLineInfo(id: number): Promise { + const response = await api.get(`${UriBase}/${id}`); + return response.data; +} + +/** + * 获取线路信息列表 + * @param params + * @returns + */ +export async function getLineList(): Promise> { + const response = await api.get(`${UriBase}/list`); + return response.data; +} diff --git a/src/api/PublishApi.ts b/src/api/PublishApi.ts new file mode 100644 index 0000000..55160aa --- /dev/null +++ b/src/api/PublishApi.ts @@ -0,0 +1,61 @@ +import { api } from 'src/boot/axios'; +import { PageDto, PageQueryDto } from './ApiCommon'; + +const PublishUriBase = '/api/publishedGi'; + +interface Item { + id: number; + name: string; + proto: string; + createdAt: string; + updateAt: string; + creatorId?: number; +} + +export class PagingQueryParams extends PageQueryDto { + name?: string; +} + +/** + * 草稿图发布 + * @param id 草稿id + */ +export function publishDraft(data: { + name: string; + lineId: number; + draftingId: number; +}) { + return api.post(`${PublishUriBase}/publish`, data); +} + +/** + * 获取发布图形数据列表 + * @param params + * @returns + */ +export async function getDraft(id: number): Promise { + const response = await api.get(`${PublishUriBase}/list`); + return response.data; +} + +/** + * 分页查询 + * @param params + * @returns + */ +export async function pageQuery( + params: PagingQueryParams +): Promise> { + const response = await api.get(`${PublishUriBase}/paging`, { + params: params, + }); + return response.data; +} + +/** + * 删除发布图 + * @param id 草稿id + */ +export function deletePublish(id: number) { + return api.delete(`${PublishUriBase}/${id}`); +} diff --git a/src/components/SysMenu.vue b/src/components/SysMenu.vue index c47bed8..269a46a 100644 --- a/src/components/SysMenu.vue +++ b/src/components/SysMenu.vue @@ -64,6 +64,16 @@ const list = reactive([ label: '草稿管理', icon: 'app_registration', }, + { + path: '/dataManage/publish', + label: '发布管理', + icon: 'app_registration', + }, + { + path: '/dataManage/lineInfo', + label: '线路信息管理', + icon: 'app_registration', + }, ], }, ]); diff --git a/src/components/draw-app/properties/StationProperty.vue b/src/components/draw-app/properties/StationProperty.vue index 3163c9d..3fce0c1 100644 --- a/src/components/draw-app/properties/StationProperty.vue +++ b/src/components/draw-app/properties/StationProperty.vue @@ -8,40 +8,6 @@ v-model="stationModel.code" lazy-rules /> - -
- 位置 - - -
- - -
-
-
-
@@ -49,20 +15,10 @@ import { StationData } from 'src/drawApp/graphics/StationInteraction'; import { Station } from 'src/graphics/station/Station'; import { useDrawStore } from 'src/stores/draw-store'; -import { onMounted, reactive, ref, watch } from 'vue'; +import { onMounted, reactive, watch } from 'vue'; const drawStore = useDrawStore(); const stationModel = reactive(new StationData()); -const hasCircle = ref('是'); -const optionsCircle = ['是', '否']; -enum showSelect { - 是 = 'true', - 否 = 'false', -} -enum showSelectData { - true = '是', - false = '否', -} drawStore.$subscribe; watch( @@ -70,7 +26,6 @@ watch( (val) => { if (val && val.type == Station.Type) { stationModel.copyFrom(val.saveData() as StationData); - hasCircle.value = (showSelectData as never)[stationModel.hasCircle + '']; } } ); @@ -79,12 +34,10 @@ onMounted(() => { const station = drawStore.selectedGraphic as Station; if (station) { stationModel.copyFrom(station.saveData()); - hasCircle.value = (showSelectData as never)[stationModel.hasCircle + '']; } }); function onUpdate() { - stationModel.hasCircle = JSON.parse((showSelect as never)[hasCircle.value]); const station = drawStore.selectedGraphic as Station; if (station) { drawStore.getDrawApp().updateGraphicAndRecord(station, stationModel); diff --git a/src/configs/UrlManage.ts b/src/configs/UrlManage.ts index 42ab080..3e2eb03 100644 --- a/src/configs/UrlManage.ts +++ b/src/configs/UrlManage.ts @@ -1,5 +1,6 @@ function getHost(): string { - return '192.168.3.7:9081'; + // return '192.168.3.7:9081'; + return '192.168.3.233:9081'; } export function getHttpBase() { diff --git a/src/drawApp/graphics/StationInteraction.ts b/src/drawApp/graphics/StationInteraction.ts index 686d99d..e2c5a64 100644 --- a/src/drawApp/graphics/StationInteraction.ts +++ b/src/drawApp/graphics/StationInteraction.ts @@ -1,5 +1,4 @@ import * as pb_1 from 'google-protobuf'; -import { IPointData } from 'pixi.js'; import { IStationData } from 'src/graphics/station/Station'; import { graphicData } from 'src/protos/stationLayoutGraphics'; import { GraphicDataBase } from './GraphicDataBase'; @@ -26,18 +25,6 @@ export class StationData extends GraphicDataBase implements IStationData { set code(v: string) { this.data.code = v; } - get hasCircle(): boolean { - return this.data.hasCircle; - } - set hasCircle(v: boolean) { - this.data.hasCircle = v; - } - get circlePoint(): IPointData { - return this.data.circlePoint; - } - set circlePoint(point: IPointData) { - this.data.circlePoint = new graphicData.Point({ x: point.x, y: point.y }); - } clone(): StationData { return new StationData(this.data.cloneMessage()); } diff --git a/src/drawApp/graphics/TurnoutInteraction.ts b/src/drawApp/graphics/TurnoutInteraction.ts index 092ef7d..1cc5184 100644 --- a/src/drawApp/graphics/TurnoutInteraction.ts +++ b/src/drawApp/graphics/TurnoutInteraction.ts @@ -26,12 +26,6 @@ export class TurnoutData extends GraphicDataBase implements ITurnoutData { set code(v: string) { this.data.code = v; } - get forkPoint(): IPointData { - return this.data.forkPoint; - } - set forkPoint(v: IPointData) { - this.data.forkPoint = new graphicData.Point({ x: v.x, y: v.y }); - } get pointA(): IPointData { return this.data.pointA; } diff --git a/src/graphics/station/Station.ts b/src/graphics/station/Station.ts index 00f4903..5df3279 100644 --- a/src/graphics/station/Station.ts +++ b/src/graphics/station/Station.ts @@ -1,80 +1,46 @@ -import { Color, Graphics, IPointData, Point } from 'pixi.js'; import { GraphicData, JlGraphic, JlGraphicTemplate, VectorText, } from 'src/jl-graphic'; -import { StationDraw } from './StationDrawAssistant'; export interface IStationData extends GraphicData { get code(): string; // 编号 set code(v: string); - get hasCircle(): boolean; // 是否有圆圈--线网图 - set hasCircle(v: boolean); - get circlePoint(): IPointData; // 位置坐标 - set circlePoint(point: IPointData); clone(): IStationData; copyFrom(data: IStationData): void; eq(other: IStationData): boolean; } const stationConsts = { - radius: 5, - borderWidth: 1, - borderColor: '0xff0000', - fillColor: '0xff0000', codeColor: '0xF48815', codeFontSize: 22, - lineWidth: 3, }; export class Station extends JlGraphic { static Type = 'station'; codeGraph: VectorText = new VectorText(''); //车站名 - circleGraphic: Graphics = new Graphics(); constructor() { super(Station.Type); this.addChild(this.codeGraph); - this.addChild(this.circleGraphic); } get datas(): IStationData { return this.getDatas(); } - static draw(station: Station | StationDraw, datas?: IStationData): void { - station.circleGraphic.clear(); - const codeGraph = station.codeGraph; - codeGraph.text = datas?.code || '车站Station'; + doRepaint(): void { + const codeGraph = this.codeGraph; + codeGraph.text = this.datas?.code || '车站Station'; codeGraph.style.fill = stationConsts.codeColor; codeGraph.setVectorFontSize(stationConsts.codeFontSize); codeGraph.anchor.set(0.5); - if (datas?.hasCircle) { - const circleGraphic = station.circleGraphic; - circleGraphic.lineStyle( - stationConsts.borderWidth, - new Color(stationConsts.borderColor) - ); - circleGraphic.beginFill(stationConsts.fillColor, 1); - circleGraphic.drawCircle(0, 0, stationConsts.radius); - circleGraphic.endFill; - circleGraphic.position.set(datas.circlePoint.x, datas.circlePoint.y); - } - } - doRepaint(): void { - Station.draw(this, this.datas); } } export class StationTemplate extends JlGraphicTemplate { - hasCircle: boolean; - radius: number; - circlePoint: IPointData; constructor() { super(Station.Type); - this.hasCircle = false; - this.radius = stationConsts.radius; - this.circlePoint = new Point(0, -15); } new(): Station { return new Station(); diff --git a/src/graphics/station/StationDrawAssistant.ts b/src/graphics/station/StationDrawAssistant.ts index b02b02e..ef11490 100644 --- a/src/graphics/station/StationDrawAssistant.ts +++ b/src/graphics/station/StationDrawAssistant.ts @@ -1,10 +1,10 @@ -import { FederatedPointerEvent, Point, Graphics } from 'pixi.js'; +import { FederatedPointerEvent, Point } from 'pixi.js'; import { + GraphicData, GraphicDrawAssistant, GraphicInteractionPlugin, JlDrawApp, JlGraphic, - VectorText, } from 'src/jl-graphic'; import { IStationData, Station, StationTemplate } from './Station'; @@ -17,9 +17,7 @@ export class StationDraw extends GraphicDrawAssistant< StationTemplate, IStationData > { - codeGraph: VectorText = new VectorText(''); - circleGraphic: Graphics = new Graphics(); - + codeGraph: Station; constructor(app: JlDrawApp, createData: () => IStationData) { super( app, @@ -28,13 +26,16 @@ export class StationDraw extends GraphicDrawAssistant< 'svguse:../drawIcon.svg#icon-station', '车站Station' ); + this.codeGraph = this.graphicTemplate.new(); this.container.addChild(this.codeGraph); stationInteraction.init(app); } bind(): void { super.bind(); - Station.draw(this); + const data = { graphicType: 'station' } as GraphicData; + this.codeGraph.loadData(data); + this.codeGraph.doRepaint(); } unbind(): void { super.unbind(); @@ -52,10 +53,7 @@ export class StationDraw extends GraphicDrawAssistant< this.container.position.copyFrom(p); } prepareData(data: IStationData): boolean { - const template = this.graphicTemplate; data.transform = this.container.saveTransform(); - data.hasCircle = template.hasCircle; - data.circlePoint = template.circlePoint; return true; } } diff --git a/src/graphics/turnout/Turnout.ts b/src/graphics/turnout/Turnout.ts index 4adeb38..5949c5a 100644 --- a/src/graphics/turnout/Turnout.ts +++ b/src/graphics/turnout/Turnout.ts @@ -35,26 +35,64 @@ export interface ITurnoutState extends GraphicState { position: TurnoutPosition; } +function getIntersectionPoint(r: number, p: IPointData): IPointData { + if (r === 0) return { x: 0, y: 0 }; + const len = Math.sqrt((-p.x) ** 2 + (-p.y) ** 2); + const scale = r / len; + return { x: scale * p.x, y: scale * p.y }; +} + +class TurnoutSection extends Graphics { + paint(p: IPointData, gap: number) { + const { x, y } = getIntersectionPoint(gap, p); + this.clear() + .lineStyle(TurnoutConsts.lineWidth, TurnoutConsts.lineColor) + .moveTo(p.x, p.y) + .lineTo(x, y); + } +} + +class ForkGraphic extends Graphics { + paint(p: IPointData) { + const target = getIntersectionPoint(20, p); + this.clear() + .lineStyle(TurnoutConsts.lineWidth, TurnoutConsts.lineColor) + .moveTo(0, 0) + .lineTo(target.x, target.y); + } +} + export class Turnout extends JlGraphic { static Type = 'Turnout'; graphics: { - fork: Graphics; - sections: Graphics; + fork: ForkGraphic; + sections: { + A: TurnoutSection; + B: TurnoutSection; + C: TurnoutSection; + }; label: VectorText; }; constructor() { super(Turnout.Type); this.graphics = { - fork: new Graphics(), - sections: new Graphics(), + fork: new ForkGraphic(), + sections: { + A: new TurnoutSection(), + B: new TurnoutSection(), + C: new TurnoutSection(), + }, label: new VectorText(), }; this.addChild(this.graphics.fork); - this.addChild(this.graphics.sections); + this.addChild(this.graphics.sections.A); + this.addChild(this.graphics.sections.B); + this.addChild(this.graphics.sections.C); this.graphics.label.anchor.set(0.5); this.graphics.label.style.fill = '#0f0'; this.graphics.label.setVectorFontSize(16); + this.graphics.label.position.set(20, 20); this.addChild(this.graphics.label); } @@ -68,33 +106,14 @@ export class Turnout extends JlGraphic { doRepaint(): void { const { pointA, pointB, pointC } = this.datas; - const intersectB = Turnout.getIntersectionPoint(20, pointB); - const intersectC = Turnout.getIntersectionPoint(20, pointC); - this.graphics.sections - .clear() - .lineStyle(TurnoutConsts.lineWidth, TurnoutConsts.lineColor) - .moveTo(pointA.x, pointA.y) - .lineTo(0, 0) - .moveTo(pointB.x, pointB.y) - .lineTo(intersectB.x, intersectB.y) - .moveTo(pointC.x, pointC.y) - .lineTo(intersectC.x, intersectC.y); + this.graphics.sections.A.paint(pointA, 0); + this.graphics.sections.B.paint(pointB, 20); + this.graphics.sections.C.paint(pointC, 20); - this.graphics.fork - .clear() - .lineStyle(TurnoutConsts.lineWidth, TurnoutConsts.lineColor) - .moveTo(0, 0) - .lineTo(intersectB.x, intersectB.y); + this.graphics.fork.paint(pointB); this.graphics.label.text = this.datas.code; - this.graphics.label.position.set(20, 20); - } - - static getIntersectionPoint(r: number, p: IPointData): IPointData { - const len = Math.sqrt((-p.x) ** 2 + (-p.y) ** 2); - const scale = r / len; - return { x: scale * p.x, y: scale * p.y }; } } diff --git a/src/graphics/turnout/TurnoutDrawAssistant.ts b/src/graphics/turnout/TurnoutDrawAssistant.ts index d4b8ec3..2d6a413 100644 --- a/src/graphics/turnout/TurnoutDrawAssistant.ts +++ b/src/graphics/turnout/TurnoutDrawAssistant.ts @@ -1,9 +1,12 @@ import { + DraggablePoint, GraphicApp, GraphicDrawAssistant, GraphicInteractionPlugin, + GraphicTransformEvent, JlDrawApp, JlGraphic, + VectorText, linePoint, pointBox, } from 'src/jl-graphic'; @@ -13,7 +16,15 @@ import { TurnoutConsts, TurnoutTemplate, } from './Turnout'; -import { DisplayObject, FederatedMouseEvent, IHitArea, Point } from 'pixi.js'; +import { + DisplayObject, + FederatedMouseEvent, + IHitArea, + IPointData, + Point, +} from 'pixi.js'; +import { GraphicEditPlugin } from 'src/jl-graphic/plugins/GraphicEditPlugin'; +import Vector2 from 'src/jl-graphic/math/Vector2'; export class TurnoutDraw extends GraphicDrawAssistant< TurnoutTemplate, @@ -32,7 +43,7 @@ export class TurnoutDraw extends GraphicDrawAssistant< this.turnout = this.graphicTemplate.new(); this.container.addChild(this.turnout); - TurnoutPointsEditPlugin.init(app); + TurnoutPointsInteractionPlugin.init(app); } onLeftUp(e: FederatedMouseEvent): void { @@ -70,45 +81,163 @@ export class TurnoutHitArea implements IHitArea { } contains(x: number, y: number): boolean { const { pointA, pointB, pointC } = this.turnout.datas; + const labelRect = this.turnout.graphics.label.getBounds(); + const labelPosition = this.turnout.canvasToLocalPoint(labelRect); + labelRect.x = labelPosition.x; + labelRect.y = labelPosition.y; return ( linePoint(pointA, { x: 0, y: 0 }, { x, y }, TurnoutConsts.lineWidth) || linePoint(pointB, { x: 0, y: 0 }, { x, y }, TurnoutConsts.lineWidth) || - linePoint(pointC, { x: 0, y: 0 }, { x, y }, TurnoutConsts.lineWidth) /* || - pointBox({ x, y }, this.turnout.graphics.label.) */ + linePoint(pointC, { x: 0, y: 0 }, { x, y }, TurnoutConsts.lineWidth) || + pointBox({ x, y }, labelRect) ); } } -export class TurnoutPointsEditPlugin extends GraphicInteractionPlugin { +export class TurnoutPointsInteractionPlugin extends GraphicInteractionPlugin { static Name = 'TurnoutPointsDrag'; static init(app: JlDrawApp) { - return new TurnoutPointsEditPlugin(app); + return new TurnoutPointsInteractionPlugin(app); } constructor(app: GraphicApp) { - super(TurnoutPointsEditPlugin.Name, app); + super(TurnoutPointsInteractionPlugin.Name, app); } bind(g: Turnout): void { g.eventMode = 'static'; g.cursor = 'pointer'; g.hitArea = new TurnoutHitArea(g); - console.log(g.hitArea); - g.scalable = true; - g.rotatable = true; g.graphics.label.eventMode = 'static'; g.graphics.label.cursor = 'pointer'; g.graphics.label.selectable = true; + g.graphics.label.draggable = true; + g.graphics.label.name = 'label'; + g.graphics.label.transformSave = true; + g.transformSave = true; g.on('selected', this.onSelected, this); + g.on('unselected', this.onUnSelected, this); } + unbind(g: Turnout): void { g.off('selected', this.onSelected, this); + g.off('unselected', this.onUnSelected, this); } onSelected(g: DisplayObject) { - console.log(g); + const turnout = g as Turnout; + let tep = turnout.getAssistantAppend( + TurnoutEditPlugin.Name + ); + if (!tep) { + tep = new TurnoutEditPlugin(turnout); + turnout.addAssistantAppend(tep); + } + tep.reset(); + tep.showAll(); } + + onUnSelected(g: DisplayObject) { + const turnout = g as Turnout; + const tep = turnout.getAssistantAppend( + TurnoutEditPlugin.Name + ); + if (tep) { + tep.hideAll(); + } + } + filter(...grahpics: JlGraphic[]): Turnout[] | undefined { return grahpics.filter((g) => g.type == Turnout.Type) as Turnout[]; } } + +export class TurnoutEditPlugin extends GraphicEditPlugin { + static Name = 'TurnoutEdit'; + editPoints: DraggablePoint[] = []; + labels: VectorText[] = []; + + constructor(graphic: Turnout) { + super(graphic); + this.name = TurnoutEditPlugin.Name; + this.initEditPoints(); + } + reset(): void { + this.destoryEditPoints(); + this.removeChildren(); + this.initEditPoints(); + } + + initEditPoints() { + const cpA = this.graphic.localToCanvasPoint(this.graphic.datas.pointA); + const cpB = this.graphic.localToCanvasPoint(this.graphic.datas.pointB); + const cpC = this.graphic.localToCanvasPoint(this.graphic.datas.pointC); + const cpMap: Map = new Map([ + [cpA, this.graphic.datas.pointA], + [cpB, this.graphic.datas.pointB], + [cpC, this.graphic.datas.pointC], + ]); + cpMap.forEach((v, k) => { + const dp = new DraggablePoint(k); + dp.on('transforming', (e: GraphicTransformEvent) => { + if (k === cpA || k === cpB) { + const vecA = new Vector2([ + this.graphic.datas.pointA.x, + this.graphic.datas.pointA.y, + ]); + const vecB = new Vector2([ + this.graphic.datas.pointB.x, + this.graphic.datas.pointB.y, + ]); + + if (k === cpA) { + const len = vecB.length(); + const res = vecA.normalize().scale(-len); + this.graphic.datas.pointB.x = res.x; + this.graphic.datas.pointB.y = res.y; + } else if (k === cpB) { + const len = vecA.length(); + const res = vecB.normalize().scale(-len); + this.graphic.datas.pointA.x = res.x; + this.graphic.datas.pointA.y = res.y; + } + } + const localPoint = this.graphic.canvasToLocalPoint(dp.position); + v.x = localPoint.x; + v.y = localPoint.y; + + this.graphic.repaint(); + }); + this.editPoints.push(dp); + }); + this.addChild(...this.editPoints); + this.labels = ['A', 'B', 'C'].map((str) => { + const vc = new VectorText(str); + vc.setVectorFontSize(14); + vc.anchor.set(0.5); + return vc; + }); + this.addChild(...this.labels); + } + + destoryEditPoints() { + this.editPoints.forEach((dp) => { + dp.off('transforming'); + dp.destroy(); + this.removeChild(dp); + }); + this.editPoints.splice(0, this.editPoints.length); + } + + updateEditedPointsPosition() { + const cps = this.graphic.localToCanvasPoints( + this.graphic.datas.pointA, + this.graphic.datas.pointB, + this.graphic.datas.pointC + ); + cps.forEach((cp, i) => { + this.editPoints[i].position.copyFrom(cp); + this.labels[i].position.copyFrom({ x: cp.x, y: cp.y + 12 }); + }); + } +} diff --git a/src/layouts/DrawLayout.vue b/src/layouts/DrawLayout.vue index 93e6be9..d5de260 100644 --- a/src/layouts/DrawLayout.vue +++ b/src/layouts/DrawLayout.vue @@ -9,7 +9,7 @@ 保存并校验 - @@ -129,6 +129,33 @@
+ + + + +
另存为
+
+ + + + + + + + + +
+
@@ -139,6 +166,8 @@ import { JlDrawApp } from 'src/jl-graphic'; import { useDrawStore } from 'src/stores/draw-store'; import { onMounted, onUnmounted, reactive, ref } from 'vue'; import { useRoute, useRouter } from 'vue-router'; +import { errorNotify, successNotify } from 'src/utils/CommonNotify'; +import { saveAsDraft } from 'src/api/DraftApi'; const route = useRoute(); const router = useRouter(); @@ -250,6 +279,23 @@ function backConfirm() { router.go(-1); } +const saveAsDialog = ref(false); +const saveAsName = ref(''); + +async function saveAs(name: string) { + try { + const record = await saveAsDraft(+route.params.id as number, { name }); + console.log('🚀 ~ file: DrawLayout.vue:288 ~ saveAs ~ record:', record); + // if (record) { + // router.replace(`/painting/${record.id}`); + // } + successNotify('另存为成功'); + saveAsDialog.value = false; + } catch (e) { + errorNotify('另存为异常', e); + } +} + onUnmounted(() => { drawStore.destroy(); }); diff --git a/src/pages/DraftManage.vue b/src/pages/DraftManage.vue index a7fdff7..6bc77a2 100644 --- a/src/pages/DraftManage.vue +++ b/src/pages/DraftManage.vue @@ -34,12 +34,12 @@ label="编辑" :to="`/painting/${props.row.id}`" /> - + /> - -
新建草稿图
- + + +
新建草稿图
-
-
+ - - - - + + + + +
@@ -95,20 +96,37 @@
草稿发布
- - - - + + + + + + - - - - + + + + + @@ -116,13 +134,10 @@ diff --git a/src/pages/LineInfoManage.vue b/src/pages/LineInfoManage.vue new file mode 100644 index 0000000..00d5706 --- /dev/null +++ b/src/pages/LineInfoManage.vue @@ -0,0 +1,217 @@ + + + diff --git a/src/pages/PublishManage.vue b/src/pages/PublishManage.vue new file mode 100644 index 0000000..5367708 --- /dev/null +++ b/src/pages/PublishManage.vue @@ -0,0 +1,159 @@ + + + diff --git a/src/protos/device_status.ts b/src/protos/device_status.ts new file mode 100644 index 0000000..6455e73 --- /dev/null +++ b/src/protos/device_status.ts @@ -0,0 +1,4239 @@ +/** + * Generated by the protoc-gen-ts. DO NOT EDIT! + * compiler version: 4.23.1 + * source: device_status.proto + * git: https://github.com/thesayyn/protoc-gen-ts */ +import * as pb_1 from "google-protobuf"; +export namespace state { + export class Rtu extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + ipRtuStusDown?: boolean; + ipRtuStusInLocalCtrl?: boolean; + ipRtuStusInCentralCtrl?: boolean; + ipRtuStusInEmergencyCtrl?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("ipRtuStusDown" in data && data.ipRtuStusDown != undefined) { + this.ipRtuStusDown = data.ipRtuStusDown; + } + if ("ipRtuStusInLocalCtrl" in data && data.ipRtuStusInLocalCtrl != undefined) { + this.ipRtuStusInLocalCtrl = data.ipRtuStusInLocalCtrl; + } + if ("ipRtuStusInCentralCtrl" in data && data.ipRtuStusInCentralCtrl != undefined) { + this.ipRtuStusInCentralCtrl = data.ipRtuStusInCentralCtrl; + } + if ("ipRtuStusInEmergencyCtrl" in data && data.ipRtuStusInEmergencyCtrl != undefined) { + this.ipRtuStusInEmergencyCtrl = data.ipRtuStusInEmergencyCtrl; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get ipRtuStusDown() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set ipRtuStusDown(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get ipRtuStusInLocalCtrl() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set ipRtuStusInLocalCtrl(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get ipRtuStusInCentralCtrl() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set ipRtuStusInCentralCtrl(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get ipRtuStusInEmergencyCtrl() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set ipRtuStusInEmergencyCtrl(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 5, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 5, value); + } + static fromObject(data: { + ipRtuStusDown?: boolean; + ipRtuStusInLocalCtrl?: boolean; + ipRtuStusInCentralCtrl?: boolean; + ipRtuStusInEmergencyCtrl?: boolean; + id?: string; + }): Rtu { + const message = new Rtu({}); + if (data.ipRtuStusDown != null) { + message.ipRtuStusDown = data.ipRtuStusDown; + } + if (data.ipRtuStusInLocalCtrl != null) { + message.ipRtuStusInLocalCtrl = data.ipRtuStusInLocalCtrl; + } + if (data.ipRtuStusInCentralCtrl != null) { + message.ipRtuStusInCentralCtrl = data.ipRtuStusInCentralCtrl; + } + if (data.ipRtuStusInEmergencyCtrl != null) { + message.ipRtuStusInEmergencyCtrl = data.ipRtuStusInEmergencyCtrl; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + ipRtuStusDown?: boolean; + ipRtuStusInLocalCtrl?: boolean; + ipRtuStusInCentralCtrl?: boolean; + ipRtuStusInEmergencyCtrl?: boolean; + id?: string; + } = {}; + if (this.ipRtuStusDown != null) { + data.ipRtuStusDown = this.ipRtuStusDown; + } + if (this.ipRtuStusInLocalCtrl != null) { + data.ipRtuStusInLocalCtrl = this.ipRtuStusInLocalCtrl; + } + if (this.ipRtuStusInCentralCtrl != null) { + data.ipRtuStusInCentralCtrl = this.ipRtuStusInCentralCtrl; + } + if (this.ipRtuStusInEmergencyCtrl != null) { + data.ipRtuStusInEmergencyCtrl = this.ipRtuStusInEmergencyCtrl; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.ipRtuStusDown != false) + writer.writeBool(1, this.ipRtuStusDown); + if (this.ipRtuStusInLocalCtrl != false) + writer.writeBool(2, this.ipRtuStusInLocalCtrl); + if (this.ipRtuStusInCentralCtrl != false) + writer.writeBool(3, this.ipRtuStusInCentralCtrl); + if (this.ipRtuStusInEmergencyCtrl != false) + writer.writeBool(4, this.ipRtuStusInEmergencyCtrl); + if (this.id.length) + writer.writeString(5, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Rtu { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Rtu(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.ipRtuStusDown = reader.readBool(); + break; + case 2: + message.ipRtuStusInLocalCtrl = reader.readBool(); + break; + case 3: + message.ipRtuStusInCentralCtrl = reader.readBool(); + break; + case 4: + message.ipRtuStusInEmergencyCtrl = reader.readBool(); + break; + case 5: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Rtu { + return Rtu.deserialize(bytes); + } + } + export class Station extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + ipStaStusTermMode1?: boolean; + ipStaStusTermMode2?: boolean; + ipStaStusTermMode3?: boolean; + ipStaStusTermMode4?: boolean; + ipStaStusTermMode5?: boolean; + ipStaStusTermMode6?: boolean; + ipStaStusExpectTermMode1?: boolean; + ipStaStusExpectTermMode2?: boolean; + ipStaStusExpectTermMode3?: boolean; + ipStaStusExpectTermMode4?: boolean; + ipStaStusExpectTermMode5?: boolean; + ipStaStusExpectTermMode6?: boolean; + ipStaStusInCycle1?: boolean; + ipStaStusInCycle2?: boolean; + ipStaStusInCycle3?: boolean; + ipStaStusInCycle4?: boolean; + ipStaStusInCycle5?: boolean; + ipStaStusInCycle6?: boolean; + ipStaStusExpectCycle1?: boolean; + ipStaStusExpectCycle2?: boolean; + ipStaStusExpectCycle3?: boolean; + ipStaStusExpectCycle4?: boolean; + ipStaStusExpectCycle5?: boolean; + ipStaStusExpectCycle6?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("ipStaStusTermMode1" in data && data.ipStaStusTermMode1 != undefined) { + this.ipStaStusTermMode1 = data.ipStaStusTermMode1; + } + if ("ipStaStusTermMode2" in data && data.ipStaStusTermMode2 != undefined) { + this.ipStaStusTermMode2 = data.ipStaStusTermMode2; + } + if ("ipStaStusTermMode3" in data && data.ipStaStusTermMode3 != undefined) { + this.ipStaStusTermMode3 = data.ipStaStusTermMode3; + } + if ("ipStaStusTermMode4" in data && data.ipStaStusTermMode4 != undefined) { + this.ipStaStusTermMode4 = data.ipStaStusTermMode4; + } + if ("ipStaStusTermMode5" in data && data.ipStaStusTermMode5 != undefined) { + this.ipStaStusTermMode5 = data.ipStaStusTermMode5; + } + if ("ipStaStusTermMode6" in data && data.ipStaStusTermMode6 != undefined) { + this.ipStaStusTermMode6 = data.ipStaStusTermMode6; + } + if ("ipStaStusExpectTermMode1" in data && data.ipStaStusExpectTermMode1 != undefined) { + this.ipStaStusExpectTermMode1 = data.ipStaStusExpectTermMode1; + } + if ("ipStaStusExpectTermMode2" in data && data.ipStaStusExpectTermMode2 != undefined) { + this.ipStaStusExpectTermMode2 = data.ipStaStusExpectTermMode2; + } + if ("ipStaStusExpectTermMode3" in data && data.ipStaStusExpectTermMode3 != undefined) { + this.ipStaStusExpectTermMode3 = data.ipStaStusExpectTermMode3; + } + if ("ipStaStusExpectTermMode4" in data && data.ipStaStusExpectTermMode4 != undefined) { + this.ipStaStusExpectTermMode4 = data.ipStaStusExpectTermMode4; + } + if ("ipStaStusExpectTermMode5" in data && data.ipStaStusExpectTermMode5 != undefined) { + this.ipStaStusExpectTermMode5 = data.ipStaStusExpectTermMode5; + } + if ("ipStaStusExpectTermMode6" in data && data.ipStaStusExpectTermMode6 != undefined) { + this.ipStaStusExpectTermMode6 = data.ipStaStusExpectTermMode6; + } + if ("ipStaStusInCycle1" in data && data.ipStaStusInCycle1 != undefined) { + this.ipStaStusInCycle1 = data.ipStaStusInCycle1; + } + if ("ipStaStusInCycle2" in data && data.ipStaStusInCycle2 != undefined) { + this.ipStaStusInCycle2 = data.ipStaStusInCycle2; + } + if ("ipStaStusInCycle3" in data && data.ipStaStusInCycle3 != undefined) { + this.ipStaStusInCycle3 = data.ipStaStusInCycle3; + } + if ("ipStaStusInCycle4" in data && data.ipStaStusInCycle4 != undefined) { + this.ipStaStusInCycle4 = data.ipStaStusInCycle4; + } + if ("ipStaStusInCycle5" in data && data.ipStaStusInCycle5 != undefined) { + this.ipStaStusInCycle5 = data.ipStaStusInCycle5; + } + if ("ipStaStusInCycle6" in data && data.ipStaStusInCycle6 != undefined) { + this.ipStaStusInCycle6 = data.ipStaStusInCycle6; + } + if ("ipStaStusExpectCycle1" in data && data.ipStaStusExpectCycle1 != undefined) { + this.ipStaStusExpectCycle1 = data.ipStaStusExpectCycle1; + } + if ("ipStaStusExpectCycle2" in data && data.ipStaStusExpectCycle2 != undefined) { + this.ipStaStusExpectCycle2 = data.ipStaStusExpectCycle2; + } + if ("ipStaStusExpectCycle3" in data && data.ipStaStusExpectCycle3 != undefined) { + this.ipStaStusExpectCycle3 = data.ipStaStusExpectCycle3; + } + if ("ipStaStusExpectCycle4" in data && data.ipStaStusExpectCycle4 != undefined) { + this.ipStaStusExpectCycle4 = data.ipStaStusExpectCycle4; + } + if ("ipStaStusExpectCycle5" in data && data.ipStaStusExpectCycle5 != undefined) { + this.ipStaStusExpectCycle5 = data.ipStaStusExpectCycle5; + } + if ("ipStaStusExpectCycle6" in data && data.ipStaStusExpectCycle6 != undefined) { + this.ipStaStusExpectCycle6 = data.ipStaStusExpectCycle6; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get ipStaStusTermMode1() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set ipStaStusTermMode1(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get ipStaStusTermMode2() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set ipStaStusTermMode2(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get ipStaStusTermMode3() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set ipStaStusTermMode3(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get ipStaStusTermMode4() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set ipStaStusTermMode4(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get ipStaStusTermMode5() { + return pb_1.Message.getFieldWithDefault(this, 5, false) as boolean; + } + set ipStaStusTermMode5(value: boolean) { + pb_1.Message.setField(this, 5, value); + } + get ipStaStusTermMode6() { + return pb_1.Message.getFieldWithDefault(this, 6, false) as boolean; + } + set ipStaStusTermMode6(value: boolean) { + pb_1.Message.setField(this, 6, value); + } + get ipStaStusExpectTermMode1() { + return pb_1.Message.getFieldWithDefault(this, 7, false) as boolean; + } + set ipStaStusExpectTermMode1(value: boolean) { + pb_1.Message.setField(this, 7, value); + } + get ipStaStusExpectTermMode2() { + return pb_1.Message.getFieldWithDefault(this, 8, false) as boolean; + } + set ipStaStusExpectTermMode2(value: boolean) { + pb_1.Message.setField(this, 8, value); + } + get ipStaStusExpectTermMode3() { + return pb_1.Message.getFieldWithDefault(this, 9, false) as boolean; + } + set ipStaStusExpectTermMode3(value: boolean) { + pb_1.Message.setField(this, 9, value); + } + get ipStaStusExpectTermMode4() { + return pb_1.Message.getFieldWithDefault(this, 10, false) as boolean; + } + set ipStaStusExpectTermMode4(value: boolean) { + pb_1.Message.setField(this, 10, value); + } + get ipStaStusExpectTermMode5() { + return pb_1.Message.getFieldWithDefault(this, 11, false) as boolean; + } + set ipStaStusExpectTermMode5(value: boolean) { + pb_1.Message.setField(this, 11, value); + } + get ipStaStusExpectTermMode6() { + return pb_1.Message.getFieldWithDefault(this, 12, false) as boolean; + } + set ipStaStusExpectTermMode6(value: boolean) { + pb_1.Message.setField(this, 12, value); + } + get ipStaStusInCycle1() { + return pb_1.Message.getFieldWithDefault(this, 13, false) as boolean; + } + set ipStaStusInCycle1(value: boolean) { + pb_1.Message.setField(this, 13, value); + } + get ipStaStusInCycle2() { + return pb_1.Message.getFieldWithDefault(this, 14, false) as boolean; + } + set ipStaStusInCycle2(value: boolean) { + pb_1.Message.setField(this, 14, value); + } + get ipStaStusInCycle3() { + return pb_1.Message.getFieldWithDefault(this, 15, false) as boolean; + } + set ipStaStusInCycle3(value: boolean) { + pb_1.Message.setField(this, 15, value); + } + get ipStaStusInCycle4() { + return pb_1.Message.getFieldWithDefault(this, 16, false) as boolean; + } + set ipStaStusInCycle4(value: boolean) { + pb_1.Message.setField(this, 16, value); + } + get ipStaStusInCycle5() { + return pb_1.Message.getFieldWithDefault(this, 17, false) as boolean; + } + set ipStaStusInCycle5(value: boolean) { + pb_1.Message.setField(this, 17, value); + } + get ipStaStusInCycle6() { + return pb_1.Message.getFieldWithDefault(this, 18, false) as boolean; + } + set ipStaStusInCycle6(value: boolean) { + pb_1.Message.setField(this, 18, value); + } + get ipStaStusExpectCycle1() { + return pb_1.Message.getFieldWithDefault(this, 19, false) as boolean; + } + set ipStaStusExpectCycle1(value: boolean) { + pb_1.Message.setField(this, 19, value); + } + get ipStaStusExpectCycle2() { + return pb_1.Message.getFieldWithDefault(this, 20, false) as boolean; + } + set ipStaStusExpectCycle2(value: boolean) { + pb_1.Message.setField(this, 20, value); + } + get ipStaStusExpectCycle3() { + return pb_1.Message.getFieldWithDefault(this, 21, false) as boolean; + } + set ipStaStusExpectCycle3(value: boolean) { + pb_1.Message.setField(this, 21, value); + } + get ipStaStusExpectCycle4() { + return pb_1.Message.getFieldWithDefault(this, 22, false) as boolean; + } + set ipStaStusExpectCycle4(value: boolean) { + pb_1.Message.setField(this, 22, value); + } + get ipStaStusExpectCycle5() { + return pb_1.Message.getFieldWithDefault(this, 23, false) as boolean; + } + set ipStaStusExpectCycle5(value: boolean) { + pb_1.Message.setField(this, 23, value); + } + get ipStaStusExpectCycle6() { + return pb_1.Message.getFieldWithDefault(this, 24, false) as boolean; + } + set ipStaStusExpectCycle6(value: boolean) { + pb_1.Message.setField(this, 24, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 25, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 25, value); + } + static fromObject(data: { + ipStaStusTermMode1?: boolean; + ipStaStusTermMode2?: boolean; + ipStaStusTermMode3?: boolean; + ipStaStusTermMode4?: boolean; + ipStaStusTermMode5?: boolean; + ipStaStusTermMode6?: boolean; + ipStaStusExpectTermMode1?: boolean; + ipStaStusExpectTermMode2?: boolean; + ipStaStusExpectTermMode3?: boolean; + ipStaStusExpectTermMode4?: boolean; + ipStaStusExpectTermMode5?: boolean; + ipStaStusExpectTermMode6?: boolean; + ipStaStusInCycle1?: boolean; + ipStaStusInCycle2?: boolean; + ipStaStusInCycle3?: boolean; + ipStaStusInCycle4?: boolean; + ipStaStusInCycle5?: boolean; + ipStaStusInCycle6?: boolean; + ipStaStusExpectCycle1?: boolean; + ipStaStusExpectCycle2?: boolean; + ipStaStusExpectCycle3?: boolean; + ipStaStusExpectCycle4?: boolean; + ipStaStusExpectCycle5?: boolean; + ipStaStusExpectCycle6?: boolean; + id?: string; + }): Station { + const message = new Station({}); + if (data.ipStaStusTermMode1 != null) { + message.ipStaStusTermMode1 = data.ipStaStusTermMode1; + } + if (data.ipStaStusTermMode2 != null) { + message.ipStaStusTermMode2 = data.ipStaStusTermMode2; + } + if (data.ipStaStusTermMode3 != null) { + message.ipStaStusTermMode3 = data.ipStaStusTermMode3; + } + if (data.ipStaStusTermMode4 != null) { + message.ipStaStusTermMode4 = data.ipStaStusTermMode4; + } + if (data.ipStaStusTermMode5 != null) { + message.ipStaStusTermMode5 = data.ipStaStusTermMode5; + } + if (data.ipStaStusTermMode6 != null) { + message.ipStaStusTermMode6 = data.ipStaStusTermMode6; + } + if (data.ipStaStusExpectTermMode1 != null) { + message.ipStaStusExpectTermMode1 = data.ipStaStusExpectTermMode1; + } + if (data.ipStaStusExpectTermMode2 != null) { + message.ipStaStusExpectTermMode2 = data.ipStaStusExpectTermMode2; + } + if (data.ipStaStusExpectTermMode3 != null) { + message.ipStaStusExpectTermMode3 = data.ipStaStusExpectTermMode3; + } + if (data.ipStaStusExpectTermMode4 != null) { + message.ipStaStusExpectTermMode4 = data.ipStaStusExpectTermMode4; + } + if (data.ipStaStusExpectTermMode5 != null) { + message.ipStaStusExpectTermMode5 = data.ipStaStusExpectTermMode5; + } + if (data.ipStaStusExpectTermMode6 != null) { + message.ipStaStusExpectTermMode6 = data.ipStaStusExpectTermMode6; + } + if (data.ipStaStusInCycle1 != null) { + message.ipStaStusInCycle1 = data.ipStaStusInCycle1; + } + if (data.ipStaStusInCycle2 != null) { + message.ipStaStusInCycle2 = data.ipStaStusInCycle2; + } + if (data.ipStaStusInCycle3 != null) { + message.ipStaStusInCycle3 = data.ipStaStusInCycle3; + } + if (data.ipStaStusInCycle4 != null) { + message.ipStaStusInCycle4 = data.ipStaStusInCycle4; + } + if (data.ipStaStusInCycle5 != null) { + message.ipStaStusInCycle5 = data.ipStaStusInCycle5; + } + if (data.ipStaStusInCycle6 != null) { + message.ipStaStusInCycle6 = data.ipStaStusInCycle6; + } + if (data.ipStaStusExpectCycle1 != null) { + message.ipStaStusExpectCycle1 = data.ipStaStusExpectCycle1; + } + if (data.ipStaStusExpectCycle2 != null) { + message.ipStaStusExpectCycle2 = data.ipStaStusExpectCycle2; + } + if (data.ipStaStusExpectCycle3 != null) { + message.ipStaStusExpectCycle3 = data.ipStaStusExpectCycle3; + } + if (data.ipStaStusExpectCycle4 != null) { + message.ipStaStusExpectCycle4 = data.ipStaStusExpectCycle4; + } + if (data.ipStaStusExpectCycle5 != null) { + message.ipStaStusExpectCycle5 = data.ipStaStusExpectCycle5; + } + if (data.ipStaStusExpectCycle6 != null) { + message.ipStaStusExpectCycle6 = data.ipStaStusExpectCycle6; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + ipStaStusTermMode1?: boolean; + ipStaStusTermMode2?: boolean; + ipStaStusTermMode3?: boolean; + ipStaStusTermMode4?: boolean; + ipStaStusTermMode5?: boolean; + ipStaStusTermMode6?: boolean; + ipStaStusExpectTermMode1?: boolean; + ipStaStusExpectTermMode2?: boolean; + ipStaStusExpectTermMode3?: boolean; + ipStaStusExpectTermMode4?: boolean; + ipStaStusExpectTermMode5?: boolean; + ipStaStusExpectTermMode6?: boolean; + ipStaStusInCycle1?: boolean; + ipStaStusInCycle2?: boolean; + ipStaStusInCycle3?: boolean; + ipStaStusInCycle4?: boolean; + ipStaStusInCycle5?: boolean; + ipStaStusInCycle6?: boolean; + ipStaStusExpectCycle1?: boolean; + ipStaStusExpectCycle2?: boolean; + ipStaStusExpectCycle3?: boolean; + ipStaStusExpectCycle4?: boolean; + ipStaStusExpectCycle5?: boolean; + ipStaStusExpectCycle6?: boolean; + id?: string; + } = {}; + if (this.ipStaStusTermMode1 != null) { + data.ipStaStusTermMode1 = this.ipStaStusTermMode1; + } + if (this.ipStaStusTermMode2 != null) { + data.ipStaStusTermMode2 = this.ipStaStusTermMode2; + } + if (this.ipStaStusTermMode3 != null) { + data.ipStaStusTermMode3 = this.ipStaStusTermMode3; + } + if (this.ipStaStusTermMode4 != null) { + data.ipStaStusTermMode4 = this.ipStaStusTermMode4; + } + if (this.ipStaStusTermMode5 != null) { + data.ipStaStusTermMode5 = this.ipStaStusTermMode5; + } + if (this.ipStaStusTermMode6 != null) { + data.ipStaStusTermMode6 = this.ipStaStusTermMode6; + } + if (this.ipStaStusExpectTermMode1 != null) { + data.ipStaStusExpectTermMode1 = this.ipStaStusExpectTermMode1; + } + if (this.ipStaStusExpectTermMode2 != null) { + data.ipStaStusExpectTermMode2 = this.ipStaStusExpectTermMode2; + } + if (this.ipStaStusExpectTermMode3 != null) { + data.ipStaStusExpectTermMode3 = this.ipStaStusExpectTermMode3; + } + if (this.ipStaStusExpectTermMode4 != null) { + data.ipStaStusExpectTermMode4 = this.ipStaStusExpectTermMode4; + } + if (this.ipStaStusExpectTermMode5 != null) { + data.ipStaStusExpectTermMode5 = this.ipStaStusExpectTermMode5; + } + if (this.ipStaStusExpectTermMode6 != null) { + data.ipStaStusExpectTermMode6 = this.ipStaStusExpectTermMode6; + } + if (this.ipStaStusInCycle1 != null) { + data.ipStaStusInCycle1 = this.ipStaStusInCycle1; + } + if (this.ipStaStusInCycle2 != null) { + data.ipStaStusInCycle2 = this.ipStaStusInCycle2; + } + if (this.ipStaStusInCycle3 != null) { + data.ipStaStusInCycle3 = this.ipStaStusInCycle3; + } + if (this.ipStaStusInCycle4 != null) { + data.ipStaStusInCycle4 = this.ipStaStusInCycle4; + } + if (this.ipStaStusInCycle5 != null) { + data.ipStaStusInCycle5 = this.ipStaStusInCycle5; + } + if (this.ipStaStusInCycle6 != null) { + data.ipStaStusInCycle6 = this.ipStaStusInCycle6; + } + if (this.ipStaStusExpectCycle1 != null) { + data.ipStaStusExpectCycle1 = this.ipStaStusExpectCycle1; + } + if (this.ipStaStusExpectCycle2 != null) { + data.ipStaStusExpectCycle2 = this.ipStaStusExpectCycle2; + } + if (this.ipStaStusExpectCycle3 != null) { + data.ipStaStusExpectCycle3 = this.ipStaStusExpectCycle3; + } + if (this.ipStaStusExpectCycle4 != null) { + data.ipStaStusExpectCycle4 = this.ipStaStusExpectCycle4; + } + if (this.ipStaStusExpectCycle5 != null) { + data.ipStaStusExpectCycle5 = this.ipStaStusExpectCycle5; + } + if (this.ipStaStusExpectCycle6 != null) { + data.ipStaStusExpectCycle6 = this.ipStaStusExpectCycle6; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.ipStaStusTermMode1 != false) + writer.writeBool(1, this.ipStaStusTermMode1); + if (this.ipStaStusTermMode2 != false) + writer.writeBool(2, this.ipStaStusTermMode2); + if (this.ipStaStusTermMode3 != false) + writer.writeBool(3, this.ipStaStusTermMode3); + if (this.ipStaStusTermMode4 != false) + writer.writeBool(4, this.ipStaStusTermMode4); + if (this.ipStaStusTermMode5 != false) + writer.writeBool(5, this.ipStaStusTermMode5); + if (this.ipStaStusTermMode6 != false) + writer.writeBool(6, this.ipStaStusTermMode6); + if (this.ipStaStusExpectTermMode1 != false) + writer.writeBool(7, this.ipStaStusExpectTermMode1); + if (this.ipStaStusExpectTermMode2 != false) + writer.writeBool(8, this.ipStaStusExpectTermMode2); + if (this.ipStaStusExpectTermMode3 != false) + writer.writeBool(9, this.ipStaStusExpectTermMode3); + if (this.ipStaStusExpectTermMode4 != false) + writer.writeBool(10, this.ipStaStusExpectTermMode4); + if (this.ipStaStusExpectTermMode5 != false) + writer.writeBool(11, this.ipStaStusExpectTermMode5); + if (this.ipStaStusExpectTermMode6 != false) + writer.writeBool(12, this.ipStaStusExpectTermMode6); + if (this.ipStaStusInCycle1 != false) + writer.writeBool(13, this.ipStaStusInCycle1); + if (this.ipStaStusInCycle2 != false) + writer.writeBool(14, this.ipStaStusInCycle2); + if (this.ipStaStusInCycle3 != false) + writer.writeBool(15, this.ipStaStusInCycle3); + if (this.ipStaStusInCycle4 != false) + writer.writeBool(16, this.ipStaStusInCycle4); + if (this.ipStaStusInCycle5 != false) + writer.writeBool(17, this.ipStaStusInCycle5); + if (this.ipStaStusInCycle6 != false) + writer.writeBool(18, this.ipStaStusInCycle6); + if (this.ipStaStusExpectCycle1 != false) + writer.writeBool(19, this.ipStaStusExpectCycle1); + if (this.ipStaStusExpectCycle2 != false) + writer.writeBool(20, this.ipStaStusExpectCycle2); + if (this.ipStaStusExpectCycle3 != false) + writer.writeBool(21, this.ipStaStusExpectCycle3); + if (this.ipStaStusExpectCycle4 != false) + writer.writeBool(22, this.ipStaStusExpectCycle4); + if (this.ipStaStusExpectCycle5 != false) + writer.writeBool(23, this.ipStaStusExpectCycle5); + if (this.ipStaStusExpectCycle6 != false) + writer.writeBool(24, this.ipStaStusExpectCycle6); + if (this.id.length) + writer.writeString(25, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Station { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Station(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.ipStaStusTermMode1 = reader.readBool(); + break; + case 2: + message.ipStaStusTermMode2 = reader.readBool(); + break; + case 3: + message.ipStaStusTermMode3 = reader.readBool(); + break; + case 4: + message.ipStaStusTermMode4 = reader.readBool(); + break; + case 5: + message.ipStaStusTermMode5 = reader.readBool(); + break; + case 6: + message.ipStaStusTermMode6 = reader.readBool(); + break; + case 7: + message.ipStaStusExpectTermMode1 = reader.readBool(); + break; + case 8: + message.ipStaStusExpectTermMode2 = reader.readBool(); + break; + case 9: + message.ipStaStusExpectTermMode3 = reader.readBool(); + break; + case 10: + message.ipStaStusExpectTermMode4 = reader.readBool(); + break; + case 11: + message.ipStaStusExpectTermMode5 = reader.readBool(); + break; + case 12: + message.ipStaStusExpectTermMode6 = reader.readBool(); + break; + case 13: + message.ipStaStusInCycle1 = reader.readBool(); + break; + case 14: + message.ipStaStusInCycle2 = reader.readBool(); + break; + case 15: + message.ipStaStusInCycle3 = reader.readBool(); + break; + case 16: + message.ipStaStusInCycle4 = reader.readBool(); + break; + case 17: + message.ipStaStusInCycle5 = reader.readBool(); + break; + case 18: + message.ipStaStusInCycle6 = reader.readBool(); + break; + case 19: + message.ipStaStusExpectCycle1 = reader.readBool(); + break; + case 20: + message.ipStaStusExpectCycle2 = reader.readBool(); + break; + case 21: + message.ipStaStusExpectCycle3 = reader.readBool(); + break; + case 22: + message.ipStaStusExpectCycle4 = reader.readBool(); + break; + case 23: + message.ipStaStusExpectCycle5 = reader.readBool(); + break; + case 24: + message.ipStaStusExpectCycle6 = reader.readBool(); + break; + case 25: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Station { + return Station.deserialize(bytes); + } + } + export class Signal extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + redOpen?: boolean; + redFlash?: boolean; + greenOpen?: boolean; + greenFlash?: boolean; + yellowOpen?: boolean; + yellowFlash?: boolean; + whiteOpen?: boolean; + whiteFlash?: boolean; + blueOpen?: boolean; + blueFlash?: boolean; + fleetMode?: boolean; + ctrlFleetMode?: boolean; + autoMode?: boolean; + ctrlAutoMode?: boolean; + extinguish?: boolean; + approachLock?: boolean; + protectRoute?: boolean; + autoRouteDisable?: boolean; + callon?: boolean; + yellowYellow?: boolean; + yellowGreen?: boolean; + blocked?: boolean; + lampFailure?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("redOpen" in data && data.redOpen != undefined) { + this.redOpen = data.redOpen; + } + if ("redFlash" in data && data.redFlash != undefined) { + this.redFlash = data.redFlash; + } + if ("greenOpen" in data && data.greenOpen != undefined) { + this.greenOpen = data.greenOpen; + } + if ("greenFlash" in data && data.greenFlash != undefined) { + this.greenFlash = data.greenFlash; + } + if ("yellowOpen" in data && data.yellowOpen != undefined) { + this.yellowOpen = data.yellowOpen; + } + if ("yellowFlash" in data && data.yellowFlash != undefined) { + this.yellowFlash = data.yellowFlash; + } + if ("whiteOpen" in data && data.whiteOpen != undefined) { + this.whiteOpen = data.whiteOpen; + } + if ("whiteFlash" in data && data.whiteFlash != undefined) { + this.whiteFlash = data.whiteFlash; + } + if ("blueOpen" in data && data.blueOpen != undefined) { + this.blueOpen = data.blueOpen; + } + if ("blueFlash" in data && data.blueFlash != undefined) { + this.blueFlash = data.blueFlash; + } + if ("fleetMode" in data && data.fleetMode != undefined) { + this.fleetMode = data.fleetMode; + } + if ("ctrlFleetMode" in data && data.ctrlFleetMode != undefined) { + this.ctrlFleetMode = data.ctrlFleetMode; + } + if ("autoMode" in data && data.autoMode != undefined) { + this.autoMode = data.autoMode; + } + if ("ctrlAutoMode" in data && data.ctrlAutoMode != undefined) { + this.ctrlAutoMode = data.ctrlAutoMode; + } + if ("extinguish" in data && data.extinguish != undefined) { + this.extinguish = data.extinguish; + } + if ("approachLock" in data && data.approachLock != undefined) { + this.approachLock = data.approachLock; + } + if ("protectRoute" in data && data.protectRoute != undefined) { + this.protectRoute = data.protectRoute; + } + if ("autoRouteDisable" in data && data.autoRouteDisable != undefined) { + this.autoRouteDisable = data.autoRouteDisable; + } + if ("callon" in data && data.callon != undefined) { + this.callon = data.callon; + } + if ("yellowYellow" in data && data.yellowYellow != undefined) { + this.yellowYellow = data.yellowYellow; + } + if ("yellowGreen" in data && data.yellowGreen != undefined) { + this.yellowGreen = data.yellowGreen; + } + if ("blocked" in data && data.blocked != undefined) { + this.blocked = data.blocked; + } + if ("lampFailure" in data && data.lampFailure != undefined) { + this.lampFailure = data.lampFailure; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get redOpen() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set redOpen(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get redFlash() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set redFlash(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get greenOpen() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set greenOpen(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get greenFlash() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set greenFlash(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get yellowOpen() { + return pb_1.Message.getFieldWithDefault(this, 5, false) as boolean; + } + set yellowOpen(value: boolean) { + pb_1.Message.setField(this, 5, value); + } + get yellowFlash() { + return pb_1.Message.getFieldWithDefault(this, 6, false) as boolean; + } + set yellowFlash(value: boolean) { + pb_1.Message.setField(this, 6, value); + } + get whiteOpen() { + return pb_1.Message.getFieldWithDefault(this, 7, false) as boolean; + } + set whiteOpen(value: boolean) { + pb_1.Message.setField(this, 7, value); + } + get whiteFlash() { + return pb_1.Message.getFieldWithDefault(this, 8, false) as boolean; + } + set whiteFlash(value: boolean) { + pb_1.Message.setField(this, 8, value); + } + get blueOpen() { + return pb_1.Message.getFieldWithDefault(this, 9, false) as boolean; + } + set blueOpen(value: boolean) { + pb_1.Message.setField(this, 9, value); + } + get blueFlash() { + return pb_1.Message.getFieldWithDefault(this, 10, false) as boolean; + } + set blueFlash(value: boolean) { + pb_1.Message.setField(this, 10, value); + } + get fleetMode() { + return pb_1.Message.getFieldWithDefault(this, 11, false) as boolean; + } + set fleetMode(value: boolean) { + pb_1.Message.setField(this, 11, value); + } + get ctrlFleetMode() { + return pb_1.Message.getFieldWithDefault(this, 12, false) as boolean; + } + set ctrlFleetMode(value: boolean) { + pb_1.Message.setField(this, 12, value); + } + get autoMode() { + return pb_1.Message.getFieldWithDefault(this, 13, false) as boolean; + } + set autoMode(value: boolean) { + pb_1.Message.setField(this, 13, value); + } + get ctrlAutoMode() { + return pb_1.Message.getFieldWithDefault(this, 14, false) as boolean; + } + set ctrlAutoMode(value: boolean) { + pb_1.Message.setField(this, 14, value); + } + get extinguish() { + return pb_1.Message.getFieldWithDefault(this, 15, false) as boolean; + } + set extinguish(value: boolean) { + pb_1.Message.setField(this, 15, value); + } + get approachLock() { + return pb_1.Message.getFieldWithDefault(this, 16, false) as boolean; + } + set approachLock(value: boolean) { + pb_1.Message.setField(this, 16, value); + } + get protectRoute() { + return pb_1.Message.getFieldWithDefault(this, 17, false) as boolean; + } + set protectRoute(value: boolean) { + pb_1.Message.setField(this, 17, value); + } + get autoRouteDisable() { + return pb_1.Message.getFieldWithDefault(this, 18, false) as boolean; + } + set autoRouteDisable(value: boolean) { + pb_1.Message.setField(this, 18, value); + } + get callon() { + return pb_1.Message.getFieldWithDefault(this, 19, false) as boolean; + } + set callon(value: boolean) { + pb_1.Message.setField(this, 19, value); + } + get yellowYellow() { + return pb_1.Message.getFieldWithDefault(this, 20, false) as boolean; + } + set yellowYellow(value: boolean) { + pb_1.Message.setField(this, 20, value); + } + get yellowGreen() { + return pb_1.Message.getFieldWithDefault(this, 21, false) as boolean; + } + set yellowGreen(value: boolean) { + pb_1.Message.setField(this, 21, value); + } + get blocked() { + return pb_1.Message.getFieldWithDefault(this, 22, false) as boolean; + } + set blocked(value: boolean) { + pb_1.Message.setField(this, 22, value); + } + get lampFailure() { + return pb_1.Message.getFieldWithDefault(this, 23, false) as boolean; + } + set lampFailure(value: boolean) { + pb_1.Message.setField(this, 23, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 24, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 24, value); + } + static fromObject(data: { + redOpen?: boolean; + redFlash?: boolean; + greenOpen?: boolean; + greenFlash?: boolean; + yellowOpen?: boolean; + yellowFlash?: boolean; + whiteOpen?: boolean; + whiteFlash?: boolean; + blueOpen?: boolean; + blueFlash?: boolean; + fleetMode?: boolean; + ctrlFleetMode?: boolean; + autoMode?: boolean; + ctrlAutoMode?: boolean; + extinguish?: boolean; + approachLock?: boolean; + protectRoute?: boolean; + autoRouteDisable?: boolean; + callon?: boolean; + yellowYellow?: boolean; + yellowGreen?: boolean; + blocked?: boolean; + lampFailure?: boolean; + id?: string; + }): Signal { + const message = new Signal({}); + if (data.redOpen != null) { + message.redOpen = data.redOpen; + } + if (data.redFlash != null) { + message.redFlash = data.redFlash; + } + if (data.greenOpen != null) { + message.greenOpen = data.greenOpen; + } + if (data.greenFlash != null) { + message.greenFlash = data.greenFlash; + } + if (data.yellowOpen != null) { + message.yellowOpen = data.yellowOpen; + } + if (data.yellowFlash != null) { + message.yellowFlash = data.yellowFlash; + } + if (data.whiteOpen != null) { + message.whiteOpen = data.whiteOpen; + } + if (data.whiteFlash != null) { + message.whiteFlash = data.whiteFlash; + } + if (data.blueOpen != null) { + message.blueOpen = data.blueOpen; + } + if (data.blueFlash != null) { + message.blueFlash = data.blueFlash; + } + if (data.fleetMode != null) { + message.fleetMode = data.fleetMode; + } + if (data.ctrlFleetMode != null) { + message.ctrlFleetMode = data.ctrlFleetMode; + } + if (data.autoMode != null) { + message.autoMode = data.autoMode; + } + if (data.ctrlAutoMode != null) { + message.ctrlAutoMode = data.ctrlAutoMode; + } + if (data.extinguish != null) { + message.extinguish = data.extinguish; + } + if (data.approachLock != null) { + message.approachLock = data.approachLock; + } + if (data.protectRoute != null) { + message.protectRoute = data.protectRoute; + } + if (data.autoRouteDisable != null) { + message.autoRouteDisable = data.autoRouteDisable; + } + if (data.callon != null) { + message.callon = data.callon; + } + if (data.yellowYellow != null) { + message.yellowYellow = data.yellowYellow; + } + if (data.yellowGreen != null) { + message.yellowGreen = data.yellowGreen; + } + if (data.blocked != null) { + message.blocked = data.blocked; + } + if (data.lampFailure != null) { + message.lampFailure = data.lampFailure; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + redOpen?: boolean; + redFlash?: boolean; + greenOpen?: boolean; + greenFlash?: boolean; + yellowOpen?: boolean; + yellowFlash?: boolean; + whiteOpen?: boolean; + whiteFlash?: boolean; + blueOpen?: boolean; + blueFlash?: boolean; + fleetMode?: boolean; + ctrlFleetMode?: boolean; + autoMode?: boolean; + ctrlAutoMode?: boolean; + extinguish?: boolean; + approachLock?: boolean; + protectRoute?: boolean; + autoRouteDisable?: boolean; + callon?: boolean; + yellowYellow?: boolean; + yellowGreen?: boolean; + blocked?: boolean; + lampFailure?: boolean; + id?: string; + } = {}; + if (this.redOpen != null) { + data.redOpen = this.redOpen; + } + if (this.redFlash != null) { + data.redFlash = this.redFlash; + } + if (this.greenOpen != null) { + data.greenOpen = this.greenOpen; + } + if (this.greenFlash != null) { + data.greenFlash = this.greenFlash; + } + if (this.yellowOpen != null) { + data.yellowOpen = this.yellowOpen; + } + if (this.yellowFlash != null) { + data.yellowFlash = this.yellowFlash; + } + if (this.whiteOpen != null) { + data.whiteOpen = this.whiteOpen; + } + if (this.whiteFlash != null) { + data.whiteFlash = this.whiteFlash; + } + if (this.blueOpen != null) { + data.blueOpen = this.blueOpen; + } + if (this.blueFlash != null) { + data.blueFlash = this.blueFlash; + } + if (this.fleetMode != null) { + data.fleetMode = this.fleetMode; + } + if (this.ctrlFleetMode != null) { + data.ctrlFleetMode = this.ctrlFleetMode; + } + if (this.autoMode != null) { + data.autoMode = this.autoMode; + } + if (this.ctrlAutoMode != null) { + data.ctrlAutoMode = this.ctrlAutoMode; + } + if (this.extinguish != null) { + data.extinguish = this.extinguish; + } + if (this.approachLock != null) { + data.approachLock = this.approachLock; + } + if (this.protectRoute != null) { + data.protectRoute = this.protectRoute; + } + if (this.autoRouteDisable != null) { + data.autoRouteDisable = this.autoRouteDisable; + } + if (this.callon != null) { + data.callon = this.callon; + } + if (this.yellowYellow != null) { + data.yellowYellow = this.yellowYellow; + } + if (this.yellowGreen != null) { + data.yellowGreen = this.yellowGreen; + } + if (this.blocked != null) { + data.blocked = this.blocked; + } + if (this.lampFailure != null) { + data.lampFailure = this.lampFailure; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.redOpen != false) + writer.writeBool(1, this.redOpen); + if (this.redFlash != false) + writer.writeBool(2, this.redFlash); + if (this.greenOpen != false) + writer.writeBool(3, this.greenOpen); + if (this.greenFlash != false) + writer.writeBool(4, this.greenFlash); + if (this.yellowOpen != false) + writer.writeBool(5, this.yellowOpen); + if (this.yellowFlash != false) + writer.writeBool(6, this.yellowFlash); + if (this.whiteOpen != false) + writer.writeBool(7, this.whiteOpen); + if (this.whiteFlash != false) + writer.writeBool(8, this.whiteFlash); + if (this.blueOpen != false) + writer.writeBool(9, this.blueOpen); + if (this.blueFlash != false) + writer.writeBool(10, this.blueFlash); + if (this.fleetMode != false) + writer.writeBool(11, this.fleetMode); + if (this.ctrlFleetMode != false) + writer.writeBool(12, this.ctrlFleetMode); + if (this.autoMode != false) + writer.writeBool(13, this.autoMode); + if (this.ctrlAutoMode != false) + writer.writeBool(14, this.ctrlAutoMode); + if (this.extinguish != false) + writer.writeBool(15, this.extinguish); + if (this.approachLock != false) + writer.writeBool(16, this.approachLock); + if (this.protectRoute != false) + writer.writeBool(17, this.protectRoute); + if (this.autoRouteDisable != false) + writer.writeBool(18, this.autoRouteDisable); + if (this.callon != false) + writer.writeBool(19, this.callon); + if (this.yellowYellow != false) + writer.writeBool(20, this.yellowYellow); + if (this.yellowGreen != false) + writer.writeBool(21, this.yellowGreen); + if (this.blocked != false) + writer.writeBool(22, this.blocked); + if (this.lampFailure != false) + writer.writeBool(23, this.lampFailure); + if (this.id.length) + writer.writeString(24, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Signal { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Signal(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.redOpen = reader.readBool(); + break; + case 2: + message.redFlash = reader.readBool(); + break; + case 3: + message.greenOpen = reader.readBool(); + break; + case 4: + message.greenFlash = reader.readBool(); + break; + case 5: + message.yellowOpen = reader.readBool(); + break; + case 6: + message.yellowFlash = reader.readBool(); + break; + case 7: + message.whiteOpen = reader.readBool(); + break; + case 8: + message.whiteFlash = reader.readBool(); + break; + case 9: + message.blueOpen = reader.readBool(); + break; + case 10: + message.blueFlash = reader.readBool(); + break; + case 11: + message.fleetMode = reader.readBool(); + break; + case 12: + message.ctrlFleetMode = reader.readBool(); + break; + case 13: + message.autoMode = reader.readBool(); + break; + case 14: + message.ctrlAutoMode = reader.readBool(); + break; + case 15: + message.extinguish = reader.readBool(); + break; + case 16: + message.approachLock = reader.readBool(); + break; + case 17: + message.protectRoute = reader.readBool(); + break; + case 18: + message.autoRouteDisable = reader.readBool(); + break; + case 19: + message.callon = reader.readBool(); + break; + case 20: + message.yellowYellow = reader.readBool(); + break; + case 21: + message.yellowGreen = reader.readBool(); + break; + case 22: + message.blocked = reader.readBool(); + break; + case 23: + message.lampFailure = reader.readBool(); + break; + case 24: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Signal { + return Signal.deserialize(bytes); + } + } + export class Entry extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + dirLeft?: boolean; + dirRight?: boolean; + dirLocked?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("dirLeft" in data && data.dirLeft != undefined) { + this.dirLeft = data.dirLeft; + } + if ("dirRight" in data && data.dirRight != undefined) { + this.dirRight = data.dirRight; + } + if ("dirLocked" in data && data.dirLocked != undefined) { + this.dirLocked = data.dirLocked; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get dirLeft() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set dirLeft(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get dirRight() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set dirRight(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get dirLocked() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set dirLocked(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 4, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 4, value); + } + static fromObject(data: { + dirLeft?: boolean; + dirRight?: boolean; + dirLocked?: boolean; + id?: string; + }): Entry { + const message = new Entry({}); + if (data.dirLeft != null) { + message.dirLeft = data.dirLeft; + } + if (data.dirRight != null) { + message.dirRight = data.dirRight; + } + if (data.dirLocked != null) { + message.dirLocked = data.dirLocked; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + dirLeft?: boolean; + dirRight?: boolean; + dirLocked?: boolean; + id?: string; + } = {}; + if (this.dirLeft != null) { + data.dirLeft = this.dirLeft; + } + if (this.dirRight != null) { + data.dirRight = this.dirRight; + } + if (this.dirLocked != null) { + data.dirLocked = this.dirLocked; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.dirLeft != false) + writer.writeBool(1, this.dirLeft); + if (this.dirRight != false) + writer.writeBool(2, this.dirRight); + if (this.dirLocked != false) + writer.writeBool(3, this.dirLocked); + if (this.id.length) + writer.writeString(4, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Entry { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Entry(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.dirLeft = reader.readBool(); + break; + case 2: + message.dirRight = reader.readBool(); + break; + case 3: + message.dirLocked = reader.readBool(); + break; + case 4: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Entry { + return Entry.deserialize(bytes); + } + } + export class Switch extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + ipSingleSwitchStusCiOccupied?: boolean; + ipSingleSwitchStusCbtcOccupied?: boolean; + ipSingleSwitchStusLocked?: boolean; + ipSingleSwitchStusFailLocked?: boolean; + ipSingleSwitchStusNormal?: boolean; + ipSingleSwitchStusReverse?: boolean; + ipSingleSwitchStusBlocked1?: boolean; + ipSingleSwitchStusJammed?: boolean; + ipSingleSwitchStusExpectLock?: boolean; + ipSingleSwitchStusExpectUnlock?: boolean; + ipSingleSwitchStusExpectNormal?: boolean; + ipSingleSwitchStusExpectReverse?: boolean; + ipSingleSwitchStusExpectBlock?: boolean; + ipSingleSwitchStusExpectUnblock?: boolean; + ipSingleSwitchStusInRoute?: boolean; + ipSingleSwitchStusManualMode?: boolean; + ipSingleSwitchStusCut?: boolean; + ipSingleSwitchStusAtcInvalid?: boolean; + ipSingleSwitchStusOverlap?: boolean; + ipSingleSwitchStusTsrCbtcMain?: boolean; + ipSingleSwitchStusTsrCbtcNormal?: boolean; + ipSingleSwitchStusTsrCbtcReverse?: boolean; + ipSingleSwitchStusTsrBmMain?: boolean; + ipSingleSwitchStusTsrBmNormal?: boolean; + ipSingleSwitchStusTsrBmReverse?: boolean; + ipSingleSwitchStusBlocked2?: boolean; + ipSingleSwitchStusLostIndication?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("ipSingleSwitchStusCiOccupied" in data && data.ipSingleSwitchStusCiOccupied != undefined) { + this.ipSingleSwitchStusCiOccupied = data.ipSingleSwitchStusCiOccupied; + } + if ("ipSingleSwitchStusCbtcOccupied" in data && data.ipSingleSwitchStusCbtcOccupied != undefined) { + this.ipSingleSwitchStusCbtcOccupied = data.ipSingleSwitchStusCbtcOccupied; + } + if ("ipSingleSwitchStusLocked" in data && data.ipSingleSwitchStusLocked != undefined) { + this.ipSingleSwitchStusLocked = data.ipSingleSwitchStusLocked; + } + if ("ipSingleSwitchStusFailLocked" in data && data.ipSingleSwitchStusFailLocked != undefined) { + this.ipSingleSwitchStusFailLocked = data.ipSingleSwitchStusFailLocked; + } + if ("ipSingleSwitchStusNormal" in data && data.ipSingleSwitchStusNormal != undefined) { + this.ipSingleSwitchStusNormal = data.ipSingleSwitchStusNormal; + } + if ("ipSingleSwitchStusReverse" in data && data.ipSingleSwitchStusReverse != undefined) { + this.ipSingleSwitchStusReverse = data.ipSingleSwitchStusReverse; + } + if ("ipSingleSwitchStusBlocked1" in data && data.ipSingleSwitchStusBlocked1 != undefined) { + this.ipSingleSwitchStusBlocked1 = data.ipSingleSwitchStusBlocked1; + } + if ("ipSingleSwitchStusJammed" in data && data.ipSingleSwitchStusJammed != undefined) { + this.ipSingleSwitchStusJammed = data.ipSingleSwitchStusJammed; + } + if ("ipSingleSwitchStusExpectLock" in data && data.ipSingleSwitchStusExpectLock != undefined) { + this.ipSingleSwitchStusExpectLock = data.ipSingleSwitchStusExpectLock; + } + if ("ipSingleSwitchStusExpectUnlock" in data && data.ipSingleSwitchStusExpectUnlock != undefined) { + this.ipSingleSwitchStusExpectUnlock = data.ipSingleSwitchStusExpectUnlock; + } + if ("ipSingleSwitchStusExpectNormal" in data && data.ipSingleSwitchStusExpectNormal != undefined) { + this.ipSingleSwitchStusExpectNormal = data.ipSingleSwitchStusExpectNormal; + } + if ("ipSingleSwitchStusExpectReverse" in data && data.ipSingleSwitchStusExpectReverse != undefined) { + this.ipSingleSwitchStusExpectReverse = data.ipSingleSwitchStusExpectReverse; + } + if ("ipSingleSwitchStusExpectBlock" in data && data.ipSingleSwitchStusExpectBlock != undefined) { + this.ipSingleSwitchStusExpectBlock = data.ipSingleSwitchStusExpectBlock; + } + if ("ipSingleSwitchStusExpectUnblock" in data && data.ipSingleSwitchStusExpectUnblock != undefined) { + this.ipSingleSwitchStusExpectUnblock = data.ipSingleSwitchStusExpectUnblock; + } + if ("ipSingleSwitchStusInRoute" in data && data.ipSingleSwitchStusInRoute != undefined) { + this.ipSingleSwitchStusInRoute = data.ipSingleSwitchStusInRoute; + } + if ("ipSingleSwitchStusManualMode" in data && data.ipSingleSwitchStusManualMode != undefined) { + this.ipSingleSwitchStusManualMode = data.ipSingleSwitchStusManualMode; + } + if ("ipSingleSwitchStusCut" in data && data.ipSingleSwitchStusCut != undefined) { + this.ipSingleSwitchStusCut = data.ipSingleSwitchStusCut; + } + if ("ipSingleSwitchStusAtcInvalid" in data && data.ipSingleSwitchStusAtcInvalid != undefined) { + this.ipSingleSwitchStusAtcInvalid = data.ipSingleSwitchStusAtcInvalid; + } + if ("ipSingleSwitchStusOverlap" in data && data.ipSingleSwitchStusOverlap != undefined) { + this.ipSingleSwitchStusOverlap = data.ipSingleSwitchStusOverlap; + } + if ("ipSingleSwitchStusTsrCbtcMain" in data && data.ipSingleSwitchStusTsrCbtcMain != undefined) { + this.ipSingleSwitchStusTsrCbtcMain = data.ipSingleSwitchStusTsrCbtcMain; + } + if ("ipSingleSwitchStusTsrCbtcNormal" in data && data.ipSingleSwitchStusTsrCbtcNormal != undefined) { + this.ipSingleSwitchStusTsrCbtcNormal = data.ipSingleSwitchStusTsrCbtcNormal; + } + if ("ipSingleSwitchStusTsrCbtcReverse" in data && data.ipSingleSwitchStusTsrCbtcReverse != undefined) { + this.ipSingleSwitchStusTsrCbtcReverse = data.ipSingleSwitchStusTsrCbtcReverse; + } + if ("ipSingleSwitchStusTsrBmMain" in data && data.ipSingleSwitchStusTsrBmMain != undefined) { + this.ipSingleSwitchStusTsrBmMain = data.ipSingleSwitchStusTsrBmMain; + } + if ("ipSingleSwitchStusTsrBmNormal" in data && data.ipSingleSwitchStusTsrBmNormal != undefined) { + this.ipSingleSwitchStusTsrBmNormal = data.ipSingleSwitchStusTsrBmNormal; + } + if ("ipSingleSwitchStusTsrBmReverse" in data && data.ipSingleSwitchStusTsrBmReverse != undefined) { + this.ipSingleSwitchStusTsrBmReverse = data.ipSingleSwitchStusTsrBmReverse; + } + if ("ipSingleSwitchStusBlocked2" in data && data.ipSingleSwitchStusBlocked2 != undefined) { + this.ipSingleSwitchStusBlocked2 = data.ipSingleSwitchStusBlocked2; + } + if ("ipSingleSwitchStusLostIndication" in data && data.ipSingleSwitchStusLostIndication != undefined) { + this.ipSingleSwitchStusLostIndication = data.ipSingleSwitchStusLostIndication; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get ipSingleSwitchStusCiOccupied() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set ipSingleSwitchStusCiOccupied(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get ipSingleSwitchStusCbtcOccupied() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set ipSingleSwitchStusCbtcOccupied(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get ipSingleSwitchStusLocked() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set ipSingleSwitchStusLocked(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get ipSingleSwitchStusFailLocked() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set ipSingleSwitchStusFailLocked(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get ipSingleSwitchStusNormal() { + return pb_1.Message.getFieldWithDefault(this, 5, false) as boolean; + } + set ipSingleSwitchStusNormal(value: boolean) { + pb_1.Message.setField(this, 5, value); + } + get ipSingleSwitchStusReverse() { + return pb_1.Message.getFieldWithDefault(this, 6, false) as boolean; + } + set ipSingleSwitchStusReverse(value: boolean) { + pb_1.Message.setField(this, 6, value); + } + get ipSingleSwitchStusBlocked1() { + return pb_1.Message.getFieldWithDefault(this, 7, false) as boolean; + } + set ipSingleSwitchStusBlocked1(value: boolean) { + pb_1.Message.setField(this, 7, value); + } + get ipSingleSwitchStusJammed() { + return pb_1.Message.getFieldWithDefault(this, 8, false) as boolean; + } + set ipSingleSwitchStusJammed(value: boolean) { + pb_1.Message.setField(this, 8, value); + } + get ipSingleSwitchStusExpectLock() { + return pb_1.Message.getFieldWithDefault(this, 9, false) as boolean; + } + set ipSingleSwitchStusExpectLock(value: boolean) { + pb_1.Message.setField(this, 9, value); + } + get ipSingleSwitchStusExpectUnlock() { + return pb_1.Message.getFieldWithDefault(this, 10, false) as boolean; + } + set ipSingleSwitchStusExpectUnlock(value: boolean) { + pb_1.Message.setField(this, 10, value); + } + get ipSingleSwitchStusExpectNormal() { + return pb_1.Message.getFieldWithDefault(this, 11, false) as boolean; + } + set ipSingleSwitchStusExpectNormal(value: boolean) { + pb_1.Message.setField(this, 11, value); + } + get ipSingleSwitchStusExpectReverse() { + return pb_1.Message.getFieldWithDefault(this, 12, false) as boolean; + } + set ipSingleSwitchStusExpectReverse(value: boolean) { + pb_1.Message.setField(this, 12, value); + } + get ipSingleSwitchStusExpectBlock() { + return pb_1.Message.getFieldWithDefault(this, 13, false) as boolean; + } + set ipSingleSwitchStusExpectBlock(value: boolean) { + pb_1.Message.setField(this, 13, value); + } + get ipSingleSwitchStusExpectUnblock() { + return pb_1.Message.getFieldWithDefault(this, 14, false) as boolean; + } + set ipSingleSwitchStusExpectUnblock(value: boolean) { + pb_1.Message.setField(this, 14, value); + } + get ipSingleSwitchStusInRoute() { + return pb_1.Message.getFieldWithDefault(this, 15, false) as boolean; + } + set ipSingleSwitchStusInRoute(value: boolean) { + pb_1.Message.setField(this, 15, value); + } + get ipSingleSwitchStusManualMode() { + return pb_1.Message.getFieldWithDefault(this, 16, false) as boolean; + } + set ipSingleSwitchStusManualMode(value: boolean) { + pb_1.Message.setField(this, 16, value); + } + get ipSingleSwitchStusCut() { + return pb_1.Message.getFieldWithDefault(this, 17, false) as boolean; + } + set ipSingleSwitchStusCut(value: boolean) { + pb_1.Message.setField(this, 17, value); + } + get ipSingleSwitchStusAtcInvalid() { + return pb_1.Message.getFieldWithDefault(this, 18, false) as boolean; + } + set ipSingleSwitchStusAtcInvalid(value: boolean) { + pb_1.Message.setField(this, 18, value); + } + get ipSingleSwitchStusOverlap() { + return pb_1.Message.getFieldWithDefault(this, 19, false) as boolean; + } + set ipSingleSwitchStusOverlap(value: boolean) { + pb_1.Message.setField(this, 19, value); + } + get ipSingleSwitchStusTsrCbtcMain() { + return pb_1.Message.getFieldWithDefault(this, 20, false) as boolean; + } + set ipSingleSwitchStusTsrCbtcMain(value: boolean) { + pb_1.Message.setField(this, 20, value); + } + get ipSingleSwitchStusTsrCbtcNormal() { + return pb_1.Message.getFieldWithDefault(this, 21, false) as boolean; + } + set ipSingleSwitchStusTsrCbtcNormal(value: boolean) { + pb_1.Message.setField(this, 21, value); + } + get ipSingleSwitchStusTsrCbtcReverse() { + return pb_1.Message.getFieldWithDefault(this, 22, false) as boolean; + } + set ipSingleSwitchStusTsrCbtcReverse(value: boolean) { + pb_1.Message.setField(this, 22, value); + } + get ipSingleSwitchStusTsrBmMain() { + return pb_1.Message.getFieldWithDefault(this, 23, false) as boolean; + } + set ipSingleSwitchStusTsrBmMain(value: boolean) { + pb_1.Message.setField(this, 23, value); + } + get ipSingleSwitchStusTsrBmNormal() { + return pb_1.Message.getFieldWithDefault(this, 24, false) as boolean; + } + set ipSingleSwitchStusTsrBmNormal(value: boolean) { + pb_1.Message.setField(this, 24, value); + } + get ipSingleSwitchStusTsrBmReverse() { + return pb_1.Message.getFieldWithDefault(this, 25, false) as boolean; + } + set ipSingleSwitchStusTsrBmReverse(value: boolean) { + pb_1.Message.setField(this, 25, value); + } + get ipSingleSwitchStusBlocked2() { + return pb_1.Message.getFieldWithDefault(this, 26, false) as boolean; + } + set ipSingleSwitchStusBlocked2(value: boolean) { + pb_1.Message.setField(this, 26, value); + } + get ipSingleSwitchStusLostIndication() { + return pb_1.Message.getFieldWithDefault(this, 27, false) as boolean; + } + set ipSingleSwitchStusLostIndication(value: boolean) { + pb_1.Message.setField(this, 27, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 28, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 28, value); + } + static fromObject(data: { + ipSingleSwitchStusCiOccupied?: boolean; + ipSingleSwitchStusCbtcOccupied?: boolean; + ipSingleSwitchStusLocked?: boolean; + ipSingleSwitchStusFailLocked?: boolean; + ipSingleSwitchStusNormal?: boolean; + ipSingleSwitchStusReverse?: boolean; + ipSingleSwitchStusBlocked1?: boolean; + ipSingleSwitchStusJammed?: boolean; + ipSingleSwitchStusExpectLock?: boolean; + ipSingleSwitchStusExpectUnlock?: boolean; + ipSingleSwitchStusExpectNormal?: boolean; + ipSingleSwitchStusExpectReverse?: boolean; + ipSingleSwitchStusExpectBlock?: boolean; + ipSingleSwitchStusExpectUnblock?: boolean; + ipSingleSwitchStusInRoute?: boolean; + ipSingleSwitchStusManualMode?: boolean; + ipSingleSwitchStusCut?: boolean; + ipSingleSwitchStusAtcInvalid?: boolean; + ipSingleSwitchStusOverlap?: boolean; + ipSingleSwitchStusTsrCbtcMain?: boolean; + ipSingleSwitchStusTsrCbtcNormal?: boolean; + ipSingleSwitchStusTsrCbtcReverse?: boolean; + ipSingleSwitchStusTsrBmMain?: boolean; + ipSingleSwitchStusTsrBmNormal?: boolean; + ipSingleSwitchStusTsrBmReverse?: boolean; + ipSingleSwitchStusBlocked2?: boolean; + ipSingleSwitchStusLostIndication?: boolean; + id?: string; + }): Switch { + const message = new Switch({}); + if (data.ipSingleSwitchStusCiOccupied != null) { + message.ipSingleSwitchStusCiOccupied = data.ipSingleSwitchStusCiOccupied; + } + if (data.ipSingleSwitchStusCbtcOccupied != null) { + message.ipSingleSwitchStusCbtcOccupied = data.ipSingleSwitchStusCbtcOccupied; + } + if (data.ipSingleSwitchStusLocked != null) { + message.ipSingleSwitchStusLocked = data.ipSingleSwitchStusLocked; + } + if (data.ipSingleSwitchStusFailLocked != null) { + message.ipSingleSwitchStusFailLocked = data.ipSingleSwitchStusFailLocked; + } + if (data.ipSingleSwitchStusNormal != null) { + message.ipSingleSwitchStusNormal = data.ipSingleSwitchStusNormal; + } + if (data.ipSingleSwitchStusReverse != null) { + message.ipSingleSwitchStusReverse = data.ipSingleSwitchStusReverse; + } + if (data.ipSingleSwitchStusBlocked1 != null) { + message.ipSingleSwitchStusBlocked1 = data.ipSingleSwitchStusBlocked1; + } + if (data.ipSingleSwitchStusJammed != null) { + message.ipSingleSwitchStusJammed = data.ipSingleSwitchStusJammed; + } + if (data.ipSingleSwitchStusExpectLock != null) { + message.ipSingleSwitchStusExpectLock = data.ipSingleSwitchStusExpectLock; + } + if (data.ipSingleSwitchStusExpectUnlock != null) { + message.ipSingleSwitchStusExpectUnlock = data.ipSingleSwitchStusExpectUnlock; + } + if (data.ipSingleSwitchStusExpectNormal != null) { + message.ipSingleSwitchStusExpectNormal = data.ipSingleSwitchStusExpectNormal; + } + if (data.ipSingleSwitchStusExpectReverse != null) { + message.ipSingleSwitchStusExpectReverse = data.ipSingleSwitchStusExpectReverse; + } + if (data.ipSingleSwitchStusExpectBlock != null) { + message.ipSingleSwitchStusExpectBlock = data.ipSingleSwitchStusExpectBlock; + } + if (data.ipSingleSwitchStusExpectUnblock != null) { + message.ipSingleSwitchStusExpectUnblock = data.ipSingleSwitchStusExpectUnblock; + } + if (data.ipSingleSwitchStusInRoute != null) { + message.ipSingleSwitchStusInRoute = data.ipSingleSwitchStusInRoute; + } + if (data.ipSingleSwitchStusManualMode != null) { + message.ipSingleSwitchStusManualMode = data.ipSingleSwitchStusManualMode; + } + if (data.ipSingleSwitchStusCut != null) { + message.ipSingleSwitchStusCut = data.ipSingleSwitchStusCut; + } + if (data.ipSingleSwitchStusAtcInvalid != null) { + message.ipSingleSwitchStusAtcInvalid = data.ipSingleSwitchStusAtcInvalid; + } + if (data.ipSingleSwitchStusOverlap != null) { + message.ipSingleSwitchStusOverlap = data.ipSingleSwitchStusOverlap; + } + if (data.ipSingleSwitchStusTsrCbtcMain != null) { + message.ipSingleSwitchStusTsrCbtcMain = data.ipSingleSwitchStusTsrCbtcMain; + } + if (data.ipSingleSwitchStusTsrCbtcNormal != null) { + message.ipSingleSwitchStusTsrCbtcNormal = data.ipSingleSwitchStusTsrCbtcNormal; + } + if (data.ipSingleSwitchStusTsrCbtcReverse != null) { + message.ipSingleSwitchStusTsrCbtcReverse = data.ipSingleSwitchStusTsrCbtcReverse; + } + if (data.ipSingleSwitchStusTsrBmMain != null) { + message.ipSingleSwitchStusTsrBmMain = data.ipSingleSwitchStusTsrBmMain; + } + if (data.ipSingleSwitchStusTsrBmNormal != null) { + message.ipSingleSwitchStusTsrBmNormal = data.ipSingleSwitchStusTsrBmNormal; + } + if (data.ipSingleSwitchStusTsrBmReverse != null) { + message.ipSingleSwitchStusTsrBmReverse = data.ipSingleSwitchStusTsrBmReverse; + } + if (data.ipSingleSwitchStusBlocked2 != null) { + message.ipSingleSwitchStusBlocked2 = data.ipSingleSwitchStusBlocked2; + } + if (data.ipSingleSwitchStusLostIndication != null) { + message.ipSingleSwitchStusLostIndication = data.ipSingleSwitchStusLostIndication; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + ipSingleSwitchStusCiOccupied?: boolean; + ipSingleSwitchStusCbtcOccupied?: boolean; + ipSingleSwitchStusLocked?: boolean; + ipSingleSwitchStusFailLocked?: boolean; + ipSingleSwitchStusNormal?: boolean; + ipSingleSwitchStusReverse?: boolean; + ipSingleSwitchStusBlocked1?: boolean; + ipSingleSwitchStusJammed?: boolean; + ipSingleSwitchStusExpectLock?: boolean; + ipSingleSwitchStusExpectUnlock?: boolean; + ipSingleSwitchStusExpectNormal?: boolean; + ipSingleSwitchStusExpectReverse?: boolean; + ipSingleSwitchStusExpectBlock?: boolean; + ipSingleSwitchStusExpectUnblock?: boolean; + ipSingleSwitchStusInRoute?: boolean; + ipSingleSwitchStusManualMode?: boolean; + ipSingleSwitchStusCut?: boolean; + ipSingleSwitchStusAtcInvalid?: boolean; + ipSingleSwitchStusOverlap?: boolean; + ipSingleSwitchStusTsrCbtcMain?: boolean; + ipSingleSwitchStusTsrCbtcNormal?: boolean; + ipSingleSwitchStusTsrCbtcReverse?: boolean; + ipSingleSwitchStusTsrBmMain?: boolean; + ipSingleSwitchStusTsrBmNormal?: boolean; + ipSingleSwitchStusTsrBmReverse?: boolean; + ipSingleSwitchStusBlocked2?: boolean; + ipSingleSwitchStusLostIndication?: boolean; + id?: string; + } = {}; + if (this.ipSingleSwitchStusCiOccupied != null) { + data.ipSingleSwitchStusCiOccupied = this.ipSingleSwitchStusCiOccupied; + } + if (this.ipSingleSwitchStusCbtcOccupied != null) { + data.ipSingleSwitchStusCbtcOccupied = this.ipSingleSwitchStusCbtcOccupied; + } + if (this.ipSingleSwitchStusLocked != null) { + data.ipSingleSwitchStusLocked = this.ipSingleSwitchStusLocked; + } + if (this.ipSingleSwitchStusFailLocked != null) { + data.ipSingleSwitchStusFailLocked = this.ipSingleSwitchStusFailLocked; + } + if (this.ipSingleSwitchStusNormal != null) { + data.ipSingleSwitchStusNormal = this.ipSingleSwitchStusNormal; + } + if (this.ipSingleSwitchStusReverse != null) { + data.ipSingleSwitchStusReverse = this.ipSingleSwitchStusReverse; + } + if (this.ipSingleSwitchStusBlocked1 != null) { + data.ipSingleSwitchStusBlocked1 = this.ipSingleSwitchStusBlocked1; + } + if (this.ipSingleSwitchStusJammed != null) { + data.ipSingleSwitchStusJammed = this.ipSingleSwitchStusJammed; + } + if (this.ipSingleSwitchStusExpectLock != null) { + data.ipSingleSwitchStusExpectLock = this.ipSingleSwitchStusExpectLock; + } + if (this.ipSingleSwitchStusExpectUnlock != null) { + data.ipSingleSwitchStusExpectUnlock = this.ipSingleSwitchStusExpectUnlock; + } + if (this.ipSingleSwitchStusExpectNormal != null) { + data.ipSingleSwitchStusExpectNormal = this.ipSingleSwitchStusExpectNormal; + } + if (this.ipSingleSwitchStusExpectReverse != null) { + data.ipSingleSwitchStusExpectReverse = this.ipSingleSwitchStusExpectReverse; + } + if (this.ipSingleSwitchStusExpectBlock != null) { + data.ipSingleSwitchStusExpectBlock = this.ipSingleSwitchStusExpectBlock; + } + if (this.ipSingleSwitchStusExpectUnblock != null) { + data.ipSingleSwitchStusExpectUnblock = this.ipSingleSwitchStusExpectUnblock; + } + if (this.ipSingleSwitchStusInRoute != null) { + data.ipSingleSwitchStusInRoute = this.ipSingleSwitchStusInRoute; + } + if (this.ipSingleSwitchStusManualMode != null) { + data.ipSingleSwitchStusManualMode = this.ipSingleSwitchStusManualMode; + } + if (this.ipSingleSwitchStusCut != null) { + data.ipSingleSwitchStusCut = this.ipSingleSwitchStusCut; + } + if (this.ipSingleSwitchStusAtcInvalid != null) { + data.ipSingleSwitchStusAtcInvalid = this.ipSingleSwitchStusAtcInvalid; + } + if (this.ipSingleSwitchStusOverlap != null) { + data.ipSingleSwitchStusOverlap = this.ipSingleSwitchStusOverlap; + } + if (this.ipSingleSwitchStusTsrCbtcMain != null) { + data.ipSingleSwitchStusTsrCbtcMain = this.ipSingleSwitchStusTsrCbtcMain; + } + if (this.ipSingleSwitchStusTsrCbtcNormal != null) { + data.ipSingleSwitchStusTsrCbtcNormal = this.ipSingleSwitchStusTsrCbtcNormal; + } + if (this.ipSingleSwitchStusTsrCbtcReverse != null) { + data.ipSingleSwitchStusTsrCbtcReverse = this.ipSingleSwitchStusTsrCbtcReverse; + } + if (this.ipSingleSwitchStusTsrBmMain != null) { + data.ipSingleSwitchStusTsrBmMain = this.ipSingleSwitchStusTsrBmMain; + } + if (this.ipSingleSwitchStusTsrBmNormal != null) { + data.ipSingleSwitchStusTsrBmNormal = this.ipSingleSwitchStusTsrBmNormal; + } + if (this.ipSingleSwitchStusTsrBmReverse != null) { + data.ipSingleSwitchStusTsrBmReverse = this.ipSingleSwitchStusTsrBmReverse; + } + if (this.ipSingleSwitchStusBlocked2 != null) { + data.ipSingleSwitchStusBlocked2 = this.ipSingleSwitchStusBlocked2; + } + if (this.ipSingleSwitchStusLostIndication != null) { + data.ipSingleSwitchStusLostIndication = this.ipSingleSwitchStusLostIndication; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.ipSingleSwitchStusCiOccupied != false) + writer.writeBool(1, this.ipSingleSwitchStusCiOccupied); + if (this.ipSingleSwitchStusCbtcOccupied != false) + writer.writeBool(2, this.ipSingleSwitchStusCbtcOccupied); + if (this.ipSingleSwitchStusLocked != false) + writer.writeBool(3, this.ipSingleSwitchStusLocked); + if (this.ipSingleSwitchStusFailLocked != false) + writer.writeBool(4, this.ipSingleSwitchStusFailLocked); + if (this.ipSingleSwitchStusNormal != false) + writer.writeBool(5, this.ipSingleSwitchStusNormal); + if (this.ipSingleSwitchStusReverse != false) + writer.writeBool(6, this.ipSingleSwitchStusReverse); + if (this.ipSingleSwitchStusBlocked1 != false) + writer.writeBool(7, this.ipSingleSwitchStusBlocked1); + if (this.ipSingleSwitchStusJammed != false) + writer.writeBool(8, this.ipSingleSwitchStusJammed); + if (this.ipSingleSwitchStusExpectLock != false) + writer.writeBool(9, this.ipSingleSwitchStusExpectLock); + if (this.ipSingleSwitchStusExpectUnlock != false) + writer.writeBool(10, this.ipSingleSwitchStusExpectUnlock); + if (this.ipSingleSwitchStusExpectNormal != false) + writer.writeBool(11, this.ipSingleSwitchStusExpectNormal); + if (this.ipSingleSwitchStusExpectReverse != false) + writer.writeBool(12, this.ipSingleSwitchStusExpectReverse); + if (this.ipSingleSwitchStusExpectBlock != false) + writer.writeBool(13, this.ipSingleSwitchStusExpectBlock); + if (this.ipSingleSwitchStusExpectUnblock != false) + writer.writeBool(14, this.ipSingleSwitchStusExpectUnblock); + if (this.ipSingleSwitchStusInRoute != false) + writer.writeBool(15, this.ipSingleSwitchStusInRoute); + if (this.ipSingleSwitchStusManualMode != false) + writer.writeBool(16, this.ipSingleSwitchStusManualMode); + if (this.ipSingleSwitchStusCut != false) + writer.writeBool(17, this.ipSingleSwitchStusCut); + if (this.ipSingleSwitchStusAtcInvalid != false) + writer.writeBool(18, this.ipSingleSwitchStusAtcInvalid); + if (this.ipSingleSwitchStusOverlap != false) + writer.writeBool(19, this.ipSingleSwitchStusOverlap); + if (this.ipSingleSwitchStusTsrCbtcMain != false) + writer.writeBool(20, this.ipSingleSwitchStusTsrCbtcMain); + if (this.ipSingleSwitchStusTsrCbtcNormal != false) + writer.writeBool(21, this.ipSingleSwitchStusTsrCbtcNormal); + if (this.ipSingleSwitchStusTsrCbtcReverse != false) + writer.writeBool(22, this.ipSingleSwitchStusTsrCbtcReverse); + if (this.ipSingleSwitchStusTsrBmMain != false) + writer.writeBool(23, this.ipSingleSwitchStusTsrBmMain); + if (this.ipSingleSwitchStusTsrBmNormal != false) + writer.writeBool(24, this.ipSingleSwitchStusTsrBmNormal); + if (this.ipSingleSwitchStusTsrBmReverse != false) + writer.writeBool(25, this.ipSingleSwitchStusTsrBmReverse); + if (this.ipSingleSwitchStusBlocked2 != false) + writer.writeBool(26, this.ipSingleSwitchStusBlocked2); + if (this.ipSingleSwitchStusLostIndication != false) + writer.writeBool(27, this.ipSingleSwitchStusLostIndication); + if (this.id.length) + writer.writeString(28, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Switch { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Switch(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.ipSingleSwitchStusCiOccupied = reader.readBool(); + break; + case 2: + message.ipSingleSwitchStusCbtcOccupied = reader.readBool(); + break; + case 3: + message.ipSingleSwitchStusLocked = reader.readBool(); + break; + case 4: + message.ipSingleSwitchStusFailLocked = reader.readBool(); + break; + case 5: + message.ipSingleSwitchStusNormal = reader.readBool(); + break; + case 6: + message.ipSingleSwitchStusReverse = reader.readBool(); + break; + case 7: + message.ipSingleSwitchStusBlocked1 = reader.readBool(); + break; + case 8: + message.ipSingleSwitchStusJammed = reader.readBool(); + break; + case 9: + message.ipSingleSwitchStusExpectLock = reader.readBool(); + break; + case 10: + message.ipSingleSwitchStusExpectUnlock = reader.readBool(); + break; + case 11: + message.ipSingleSwitchStusExpectNormal = reader.readBool(); + break; + case 12: + message.ipSingleSwitchStusExpectReverse = reader.readBool(); + break; + case 13: + message.ipSingleSwitchStusExpectBlock = reader.readBool(); + break; + case 14: + message.ipSingleSwitchStusExpectUnblock = reader.readBool(); + break; + case 15: + message.ipSingleSwitchStusInRoute = reader.readBool(); + break; + case 16: + message.ipSingleSwitchStusManualMode = reader.readBool(); + break; + case 17: + message.ipSingleSwitchStusCut = reader.readBool(); + break; + case 18: + message.ipSingleSwitchStusAtcInvalid = reader.readBool(); + break; + case 19: + message.ipSingleSwitchStusOverlap = reader.readBool(); + break; + case 20: + message.ipSingleSwitchStusTsrCbtcMain = reader.readBool(); + break; + case 21: + message.ipSingleSwitchStusTsrCbtcNormal = reader.readBool(); + break; + case 22: + message.ipSingleSwitchStusTsrCbtcReverse = reader.readBool(); + break; + case 23: + message.ipSingleSwitchStusTsrBmMain = reader.readBool(); + break; + case 24: + message.ipSingleSwitchStusTsrBmNormal = reader.readBool(); + break; + case 25: + message.ipSingleSwitchStusTsrBmReverse = reader.readBool(); + break; + case 26: + message.ipSingleSwitchStusBlocked2 = reader.readBool(); + break; + case 27: + message.ipSingleSwitchStusLostIndication = reader.readBool(); + break; + case 28: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Switch { + return Switch.deserialize(bytes); + } + } + export class Track extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + ciOccupied?: boolean; + cbtcOccupied?: boolean; + locked?: boolean; + failLocked?: boolean; + expectLock?: boolean; + expectUnlock?: boolean; + inRoute?: boolean; + cut?: boolean; + atcInvalid?: boolean; + overlap?: boolean; + blocked?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("ciOccupied" in data && data.ciOccupied != undefined) { + this.ciOccupied = data.ciOccupied; + } + if ("cbtcOccupied" in data && data.cbtcOccupied != undefined) { + this.cbtcOccupied = data.cbtcOccupied; + } + if ("locked" in data && data.locked != undefined) { + this.locked = data.locked; + } + if ("failLocked" in data && data.failLocked != undefined) { + this.failLocked = data.failLocked; + } + if ("expectLock" in data && data.expectLock != undefined) { + this.expectLock = data.expectLock; + } + if ("expectUnlock" in data && data.expectUnlock != undefined) { + this.expectUnlock = data.expectUnlock; + } + if ("inRoute" in data && data.inRoute != undefined) { + this.inRoute = data.inRoute; + } + if ("cut" in data && data.cut != undefined) { + this.cut = data.cut; + } + if ("atcInvalid" in data && data.atcInvalid != undefined) { + this.atcInvalid = data.atcInvalid; + } + if ("overlap" in data && data.overlap != undefined) { + this.overlap = data.overlap; + } + if ("blocked" in data && data.blocked != undefined) { + this.blocked = data.blocked; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get ciOccupied() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set ciOccupied(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get cbtcOccupied() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set cbtcOccupied(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get locked() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set locked(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get failLocked() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set failLocked(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get expectLock() { + return pb_1.Message.getFieldWithDefault(this, 5, false) as boolean; + } + set expectLock(value: boolean) { + pb_1.Message.setField(this, 5, value); + } + get expectUnlock() { + return pb_1.Message.getFieldWithDefault(this, 6, false) as boolean; + } + set expectUnlock(value: boolean) { + pb_1.Message.setField(this, 6, value); + } + get inRoute() { + return pb_1.Message.getFieldWithDefault(this, 7, false) as boolean; + } + set inRoute(value: boolean) { + pb_1.Message.setField(this, 7, value); + } + get cut() { + return pb_1.Message.getFieldWithDefault(this, 8, false) as boolean; + } + set cut(value: boolean) { + pb_1.Message.setField(this, 8, value); + } + get atcInvalid() { + return pb_1.Message.getFieldWithDefault(this, 9, false) as boolean; + } + set atcInvalid(value: boolean) { + pb_1.Message.setField(this, 9, value); + } + get overlap() { + return pb_1.Message.getFieldWithDefault(this, 10, false) as boolean; + } + set overlap(value: boolean) { + pb_1.Message.setField(this, 10, value); + } + get blocked() { + return pb_1.Message.getFieldWithDefault(this, 11, false) as boolean; + } + set blocked(value: boolean) { + pb_1.Message.setField(this, 11, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 12, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 12, value); + } + static fromObject(data: { + ciOccupied?: boolean; + cbtcOccupied?: boolean; + locked?: boolean; + failLocked?: boolean; + expectLock?: boolean; + expectUnlock?: boolean; + inRoute?: boolean; + cut?: boolean; + atcInvalid?: boolean; + overlap?: boolean; + blocked?: boolean; + id?: string; + }): Track { + const message = new Track({}); + if (data.ciOccupied != null) { + message.ciOccupied = data.ciOccupied; + } + if (data.cbtcOccupied != null) { + message.cbtcOccupied = data.cbtcOccupied; + } + if (data.locked != null) { + message.locked = data.locked; + } + if (data.failLocked != null) { + message.failLocked = data.failLocked; + } + if (data.expectLock != null) { + message.expectLock = data.expectLock; + } + if (data.expectUnlock != null) { + message.expectUnlock = data.expectUnlock; + } + if (data.inRoute != null) { + message.inRoute = data.inRoute; + } + if (data.cut != null) { + message.cut = data.cut; + } + if (data.atcInvalid != null) { + message.atcInvalid = data.atcInvalid; + } + if (data.overlap != null) { + message.overlap = data.overlap; + } + if (data.blocked != null) { + message.blocked = data.blocked; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + ciOccupied?: boolean; + cbtcOccupied?: boolean; + locked?: boolean; + failLocked?: boolean; + expectLock?: boolean; + expectUnlock?: boolean; + inRoute?: boolean; + cut?: boolean; + atcInvalid?: boolean; + overlap?: boolean; + blocked?: boolean; + id?: string; + } = {}; + if (this.ciOccupied != null) { + data.ciOccupied = this.ciOccupied; + } + if (this.cbtcOccupied != null) { + data.cbtcOccupied = this.cbtcOccupied; + } + if (this.locked != null) { + data.locked = this.locked; + } + if (this.failLocked != null) { + data.failLocked = this.failLocked; + } + if (this.expectLock != null) { + data.expectLock = this.expectLock; + } + if (this.expectUnlock != null) { + data.expectUnlock = this.expectUnlock; + } + if (this.inRoute != null) { + data.inRoute = this.inRoute; + } + if (this.cut != null) { + data.cut = this.cut; + } + if (this.atcInvalid != null) { + data.atcInvalid = this.atcInvalid; + } + if (this.overlap != null) { + data.overlap = this.overlap; + } + if (this.blocked != null) { + data.blocked = this.blocked; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.ciOccupied != false) + writer.writeBool(1, this.ciOccupied); + if (this.cbtcOccupied != false) + writer.writeBool(2, this.cbtcOccupied); + if (this.locked != false) + writer.writeBool(3, this.locked); + if (this.failLocked != false) + writer.writeBool(4, this.failLocked); + if (this.expectLock != false) + writer.writeBool(5, this.expectLock); + if (this.expectUnlock != false) + writer.writeBool(6, this.expectUnlock); + if (this.inRoute != false) + writer.writeBool(7, this.inRoute); + if (this.cut != false) + writer.writeBool(8, this.cut); + if (this.atcInvalid != false) + writer.writeBool(9, this.atcInvalid); + if (this.overlap != false) + writer.writeBool(10, this.overlap); + if (this.blocked != false) + writer.writeBool(11, this.blocked); + if (this.id.length) + writer.writeString(12, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Track { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Track(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.ciOccupied = reader.readBool(); + break; + case 2: + message.cbtcOccupied = reader.readBool(); + break; + case 3: + message.locked = reader.readBool(); + break; + case 4: + message.failLocked = reader.readBool(); + break; + case 5: + message.expectLock = reader.readBool(); + break; + case 6: + message.expectUnlock = reader.readBool(); + break; + case 7: + message.inRoute = reader.readBool(); + break; + case 8: + message.cut = reader.readBool(); + break; + case 9: + message.atcInvalid = reader.readBool(); + break; + case 10: + message.overlap = reader.readBool(); + break; + case 11: + message.blocked = reader.readBool(); + break; + case 12: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Track { + return Track.deserialize(bytes); + } + } + export class Platform extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + emergstop?: boolean; + trainberth?: boolean; + close?: boolean; + upHold?: boolean; + downHold?: boolean; + upOccHold?: boolean; + downOccHold?: boolean; + psdOpen?: boolean; + psdCut?: boolean; + upSkipstop?: boolean; + downSkipstop?: boolean; + upTrainSkipstop?: boolean; + downTrainSkipstop?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("emergstop" in data && data.emergstop != undefined) { + this.emergstop = data.emergstop; + } + if ("trainberth" in data && data.trainberth != undefined) { + this.trainberth = data.trainberth; + } + if ("close" in data && data.close != undefined) { + this.close = data.close; + } + if ("upHold" in data && data.upHold != undefined) { + this.upHold = data.upHold; + } + if ("downHold" in data && data.downHold != undefined) { + this.downHold = data.downHold; + } + if ("upOccHold" in data && data.upOccHold != undefined) { + this.upOccHold = data.upOccHold; + } + if ("downOccHold" in data && data.downOccHold != undefined) { + this.downOccHold = data.downOccHold; + } + if ("psdOpen" in data && data.psdOpen != undefined) { + this.psdOpen = data.psdOpen; + } + if ("psdCut" in data && data.psdCut != undefined) { + this.psdCut = data.psdCut; + } + if ("upSkipstop" in data && data.upSkipstop != undefined) { + this.upSkipstop = data.upSkipstop; + } + if ("downSkipstop" in data && data.downSkipstop != undefined) { + this.downSkipstop = data.downSkipstop; + } + if ("upTrainSkipstop" in data && data.upTrainSkipstop != undefined) { + this.upTrainSkipstop = data.upTrainSkipstop; + } + if ("downTrainSkipstop" in data && data.downTrainSkipstop != undefined) { + this.downTrainSkipstop = data.downTrainSkipstop; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get emergstop() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set emergstop(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get trainberth() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set trainberth(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get close() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set close(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get upHold() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set upHold(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get downHold() { + return pb_1.Message.getFieldWithDefault(this, 5, false) as boolean; + } + set downHold(value: boolean) { + pb_1.Message.setField(this, 5, value); + } + get upOccHold() { + return pb_1.Message.getFieldWithDefault(this, 6, false) as boolean; + } + set upOccHold(value: boolean) { + pb_1.Message.setField(this, 6, value); + } + get downOccHold() { + return pb_1.Message.getFieldWithDefault(this, 7, false) as boolean; + } + set downOccHold(value: boolean) { + pb_1.Message.setField(this, 7, value); + } + get psdOpen() { + return pb_1.Message.getFieldWithDefault(this, 8, false) as boolean; + } + set psdOpen(value: boolean) { + pb_1.Message.setField(this, 8, value); + } + get psdCut() { + return pb_1.Message.getFieldWithDefault(this, 9, false) as boolean; + } + set psdCut(value: boolean) { + pb_1.Message.setField(this, 9, value); + } + get upSkipstop() { + return pb_1.Message.getFieldWithDefault(this, 10, false) as boolean; + } + set upSkipstop(value: boolean) { + pb_1.Message.setField(this, 10, value); + } + get downSkipstop() { + return pb_1.Message.getFieldWithDefault(this, 11, false) as boolean; + } + set downSkipstop(value: boolean) { + pb_1.Message.setField(this, 11, value); + } + get upTrainSkipstop() { + return pb_1.Message.getFieldWithDefault(this, 12, false) as boolean; + } + set upTrainSkipstop(value: boolean) { + pb_1.Message.setField(this, 12, value); + } + get downTrainSkipstop() { + return pb_1.Message.getFieldWithDefault(this, 13, false) as boolean; + } + set downTrainSkipstop(value: boolean) { + pb_1.Message.setField(this, 13, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 14, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 14, value); + } + static fromObject(data: { + emergstop?: boolean; + trainberth?: boolean; + close?: boolean; + upHold?: boolean; + downHold?: boolean; + upOccHold?: boolean; + downOccHold?: boolean; + psdOpen?: boolean; + psdCut?: boolean; + upSkipstop?: boolean; + downSkipstop?: boolean; + upTrainSkipstop?: boolean; + downTrainSkipstop?: boolean; + id?: string; + }): Platform { + const message = new Platform({}); + if (data.emergstop != null) { + message.emergstop = data.emergstop; + } + if (data.trainberth != null) { + message.trainberth = data.trainberth; + } + if (data.close != null) { + message.close = data.close; + } + if (data.upHold != null) { + message.upHold = data.upHold; + } + if (data.downHold != null) { + message.downHold = data.downHold; + } + if (data.upOccHold != null) { + message.upOccHold = data.upOccHold; + } + if (data.downOccHold != null) { + message.downOccHold = data.downOccHold; + } + if (data.psdOpen != null) { + message.psdOpen = data.psdOpen; + } + if (data.psdCut != null) { + message.psdCut = data.psdCut; + } + if (data.upSkipstop != null) { + message.upSkipstop = data.upSkipstop; + } + if (data.downSkipstop != null) { + message.downSkipstop = data.downSkipstop; + } + if (data.upTrainSkipstop != null) { + message.upTrainSkipstop = data.upTrainSkipstop; + } + if (data.downTrainSkipstop != null) { + message.downTrainSkipstop = data.downTrainSkipstop; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + emergstop?: boolean; + trainberth?: boolean; + close?: boolean; + upHold?: boolean; + downHold?: boolean; + upOccHold?: boolean; + downOccHold?: boolean; + psdOpen?: boolean; + psdCut?: boolean; + upSkipstop?: boolean; + downSkipstop?: boolean; + upTrainSkipstop?: boolean; + downTrainSkipstop?: boolean; + id?: string; + } = {}; + if (this.emergstop != null) { + data.emergstop = this.emergstop; + } + if (this.trainberth != null) { + data.trainberth = this.trainberth; + } + if (this.close != null) { + data.close = this.close; + } + if (this.upHold != null) { + data.upHold = this.upHold; + } + if (this.downHold != null) { + data.downHold = this.downHold; + } + if (this.upOccHold != null) { + data.upOccHold = this.upOccHold; + } + if (this.downOccHold != null) { + data.downOccHold = this.downOccHold; + } + if (this.psdOpen != null) { + data.psdOpen = this.psdOpen; + } + if (this.psdCut != null) { + data.psdCut = this.psdCut; + } + if (this.upSkipstop != null) { + data.upSkipstop = this.upSkipstop; + } + if (this.downSkipstop != null) { + data.downSkipstop = this.downSkipstop; + } + if (this.upTrainSkipstop != null) { + data.upTrainSkipstop = this.upTrainSkipstop; + } + if (this.downTrainSkipstop != null) { + data.downTrainSkipstop = this.downTrainSkipstop; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.emergstop != false) + writer.writeBool(1, this.emergstop); + if (this.trainberth != false) + writer.writeBool(2, this.trainberth); + if (this.close != false) + writer.writeBool(3, this.close); + if (this.upHold != false) + writer.writeBool(4, this.upHold); + if (this.downHold != false) + writer.writeBool(5, this.downHold); + if (this.upOccHold != false) + writer.writeBool(6, this.upOccHold); + if (this.downOccHold != false) + writer.writeBool(7, this.downOccHold); + if (this.psdOpen != false) + writer.writeBool(8, this.psdOpen); + if (this.psdCut != false) + writer.writeBool(9, this.psdCut); + if (this.upSkipstop != false) + writer.writeBool(10, this.upSkipstop); + if (this.downSkipstop != false) + writer.writeBool(11, this.downSkipstop); + if (this.upTrainSkipstop != false) + writer.writeBool(12, this.upTrainSkipstop); + if (this.downTrainSkipstop != false) + writer.writeBool(13, this.downTrainSkipstop); + if (this.id.length) + writer.writeString(14, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Platform { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Platform(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.emergstop = reader.readBool(); + break; + case 2: + message.trainberth = reader.readBool(); + break; + case 3: + message.close = reader.readBool(); + break; + case 4: + message.upHold = reader.readBool(); + break; + case 5: + message.downHold = reader.readBool(); + break; + case 6: + message.upOccHold = reader.readBool(); + break; + case 7: + message.downOccHold = reader.readBool(); + break; + case 8: + message.psdOpen = reader.readBool(); + break; + case 9: + message.psdCut = reader.readBool(); + break; + case 10: + message.upSkipstop = reader.readBool(); + break; + case 11: + message.downSkipstop = reader.readBool(); + break; + case 12: + message.upTrainSkipstop = reader.readBool(); + break; + case 13: + message.downTrainSkipstop = reader.readBool(); + break; + case 14: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Platform { + return Platform.deserialize(bytes); + } + } + export class Scada extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + scadaOn?: boolean; + scadaSinglePower?: boolean; + scadaUnkown?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("scadaOn" in data && data.scadaOn != undefined) { + this.scadaOn = data.scadaOn; + } + if ("scadaSinglePower" in data && data.scadaSinglePower != undefined) { + this.scadaSinglePower = data.scadaSinglePower; + } + if ("scadaUnkown" in data && data.scadaUnkown != undefined) { + this.scadaUnkown = data.scadaUnkown; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get scadaOn() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set scadaOn(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get scadaSinglePower() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set scadaSinglePower(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get scadaUnkown() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set scadaUnkown(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 4, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 4, value); + } + static fromObject(data: { + scadaOn?: boolean; + scadaSinglePower?: boolean; + scadaUnkown?: boolean; + id?: string; + }): Scada { + const message = new Scada({}); + if (data.scadaOn != null) { + message.scadaOn = data.scadaOn; + } + if (data.scadaSinglePower != null) { + message.scadaSinglePower = data.scadaSinglePower; + } + if (data.scadaUnkown != null) { + message.scadaUnkown = data.scadaUnkown; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + scadaOn?: boolean; + scadaSinglePower?: boolean; + scadaUnkown?: boolean; + id?: string; + } = {}; + if (this.scadaOn != null) { + data.scadaOn = this.scadaOn; + } + if (this.scadaSinglePower != null) { + data.scadaSinglePower = this.scadaSinglePower; + } + if (this.scadaUnkown != null) { + data.scadaUnkown = this.scadaUnkown; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.scadaOn != false) + writer.writeBool(1, this.scadaOn); + if (this.scadaSinglePower != false) + writer.writeBool(2, this.scadaSinglePower); + if (this.scadaUnkown != false) + writer.writeBool(3, this.scadaUnkown); + if (this.id.length) + writer.writeString(4, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Scada { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Scada(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.scadaOn = reader.readBool(); + break; + case 2: + message.scadaSinglePower = reader.readBool(); + break; + case 3: + message.scadaUnkown = reader.readBool(); + break; + case 4: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Scada { + return Scada.deserialize(bytes); + } + } + export class WaterProofDoor extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + doorClosed?: boolean; + doorExpectClose?: boolean; + doorAgreeClosed?: boolean; + doorClosing?: boolean; + doorOpenLock?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("doorClosed" in data && data.doorClosed != undefined) { + this.doorClosed = data.doorClosed; + } + if ("doorExpectClose" in data && data.doorExpectClose != undefined) { + this.doorExpectClose = data.doorExpectClose; + } + if ("doorAgreeClosed" in data && data.doorAgreeClosed != undefined) { + this.doorAgreeClosed = data.doorAgreeClosed; + } + if ("doorClosing" in data && data.doorClosing != undefined) { + this.doorClosing = data.doorClosing; + } + if ("doorOpenLock" in data && data.doorOpenLock != undefined) { + this.doorOpenLock = data.doorOpenLock; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get doorClosed() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set doorClosed(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get doorExpectClose() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set doorExpectClose(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get doorAgreeClosed() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set doorAgreeClosed(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get doorClosing() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set doorClosing(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get doorOpenLock() { + return pb_1.Message.getFieldWithDefault(this, 5, false) as boolean; + } + set doorOpenLock(value: boolean) { + pb_1.Message.setField(this, 5, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 6, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 6, value); + } + static fromObject(data: { + doorClosed?: boolean; + doorExpectClose?: boolean; + doorAgreeClosed?: boolean; + doorClosing?: boolean; + doorOpenLock?: boolean; + id?: string; + }): WaterProofDoor { + const message = new WaterProofDoor({}); + if (data.doorClosed != null) { + message.doorClosed = data.doorClosed; + } + if (data.doorExpectClose != null) { + message.doorExpectClose = data.doorExpectClose; + } + if (data.doorAgreeClosed != null) { + message.doorAgreeClosed = data.doorAgreeClosed; + } + if (data.doorClosing != null) { + message.doorClosing = data.doorClosing; + } + if (data.doorOpenLock != null) { + message.doorOpenLock = data.doorOpenLock; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + doorClosed?: boolean; + doorExpectClose?: boolean; + doorAgreeClosed?: boolean; + doorClosing?: boolean; + doorOpenLock?: boolean; + id?: string; + } = {}; + if (this.doorClosed != null) { + data.doorClosed = this.doorClosed; + } + if (this.doorExpectClose != null) { + data.doorExpectClose = this.doorExpectClose; + } + if (this.doorAgreeClosed != null) { + data.doorAgreeClosed = this.doorAgreeClosed; + } + if (this.doorClosing != null) { + data.doorClosing = this.doorClosing; + } + if (this.doorOpenLock != null) { + data.doorOpenLock = this.doorOpenLock; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.doorClosed != false) + writer.writeBool(1, this.doorClosed); + if (this.doorExpectClose != false) + writer.writeBool(2, this.doorExpectClose); + if (this.doorAgreeClosed != false) + writer.writeBool(3, this.doorAgreeClosed); + if (this.doorClosing != false) + writer.writeBool(4, this.doorClosing); + if (this.doorOpenLock != false) + writer.writeBool(5, this.doorOpenLock); + if (this.id.length) + writer.writeString(6, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): WaterProofDoor { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new WaterProofDoor(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.doorClosed = reader.readBool(); + break; + case 2: + message.doorExpectClose = reader.readBool(); + break; + case 3: + message.doorAgreeClosed = reader.readBool(); + break; + case 4: + message.doorClosing = reader.readBool(); + break; + case 5: + message.doorOpenLock = reader.readBool(); + break; + case 6: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): WaterProofDoor { + return WaterProofDoor.deserialize(bytes); + } + } + export class WorkArea extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + ipStusWorkAreaEnable?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("ipStusWorkAreaEnable" in data && data.ipStusWorkAreaEnable != undefined) { + this.ipStusWorkAreaEnable = data.ipStusWorkAreaEnable; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get ipStusWorkAreaEnable() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set ipStusWorkAreaEnable(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 2, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 2, value); + } + static fromObject(data: { + ipStusWorkAreaEnable?: boolean; + id?: string; + }): WorkArea { + const message = new WorkArea({}); + if (data.ipStusWorkAreaEnable != null) { + message.ipStusWorkAreaEnable = data.ipStusWorkAreaEnable; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + ipStusWorkAreaEnable?: boolean; + id?: string; + } = {}; + if (this.ipStusWorkAreaEnable != null) { + data.ipStusWorkAreaEnable = this.ipStusWorkAreaEnable; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.ipStusWorkAreaEnable != false) + writer.writeBool(1, this.ipStusWorkAreaEnable); + if (this.id.length) + writer.writeString(2, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): WorkArea { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new WorkArea(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.ipStusWorkAreaEnable = reader.readBool(); + break; + case 2: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): WorkArea { + return WorkArea.deserialize(bytes); + } + } + export class Gama extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + ipStusGamaDisable?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("ipStusGamaDisable" in data && data.ipStusGamaDisable != undefined) { + this.ipStusGamaDisable = data.ipStusGamaDisable; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get ipStusGamaDisable() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set ipStusGamaDisable(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 2, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 2, value); + } + static fromObject(data: { + ipStusGamaDisable?: boolean; + id?: string; + }): Gama { + const message = new Gama({}); + if (data.ipStusGamaDisable != null) { + message.ipStusGamaDisable = data.ipStusGamaDisable; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + ipStusGamaDisable?: boolean; + id?: string; + } = {}; + if (this.ipStusGamaDisable != null) { + data.ipStusGamaDisable = this.ipStusGamaDisable; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.ipStusGamaDisable != false) + writer.writeBool(1, this.ipStusGamaDisable); + if (this.id.length) + writer.writeString(2, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Gama { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new Gama(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.ipStusGamaDisable = reader.readBool(); + break; + case 2: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): Gama { + return Gama.deserialize(bytes); + } + } + export class TrainMode extends pb_1.Message { + #one_of_decls: number[][] = []; + constructor(data?: any[] | { + ipModeTrainTypeManual?: boolean; + ipModeTrainTypeHead?: boolean; + ipModeTrainTypeSpecial?: boolean; + ipModeTrainTypeSchedule?: boolean; + ipModeTrainTypeRoute?: boolean; + ipModeTrainTypeShuttle?: boolean; + ipModeTrainTypeLineup?: boolean; + ipModeTrainSchdEarly?: boolean; + ipModeTrainSchdLate?: boolean; + ipModeTrainSkipstop?: boolean; + ipModeTrainCbtcMode?: boolean; + ipModeTrainAtpCut?: boolean; + ipModeTrainBerthed?: boolean; + ipModeTrainStoped?: boolean; + ipModeTrainHolded?: boolean; + ipModeTrainItama?: boolean; + ipModeTrainDirUp?: boolean; + ipModeTrainDirDown?: boolean; + ipModeTrainDirHeadUp?: boolean; + ipModeTrainDirHeadDown?: boolean; + ipModeTrainDoorOpen?: boolean; + ipModeTrainRsAlarm?: boolean; + ipModeTrainDoorAlarm?: boolean; + ipModeTrainEbAlarm?: boolean; + ipModeTrainIntegrityAlarm?: boolean; + ipModeTrainDriveModeAm?: boolean; + ipModeTrainDriveModeCm?: boolean; + ipModeTrainDriveModeRmf?: boolean; + ipModeTrainDriveModeDto?: boolean; + ipModeTrainDriveModeAtb?: boolean; + ipModeTrainDriveBlockAm?: boolean; + ipModeTrainDriveBlockCm?: boolean; + ipModeTrainDriveModeRmr?: boolean; + ipModeTrainDriveModeWash?: boolean; + id?: string; + }) { + super(); + pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); + if (!Array.isArray(data) && typeof data == "object") { + if ("ipModeTrainTypeManual" in data && data.ipModeTrainTypeManual != undefined) { + this.ipModeTrainTypeManual = data.ipModeTrainTypeManual; + } + if ("ipModeTrainTypeHead" in data && data.ipModeTrainTypeHead != undefined) { + this.ipModeTrainTypeHead = data.ipModeTrainTypeHead; + } + if ("ipModeTrainTypeSpecial" in data && data.ipModeTrainTypeSpecial != undefined) { + this.ipModeTrainTypeSpecial = data.ipModeTrainTypeSpecial; + } + if ("ipModeTrainTypeSchedule" in data && data.ipModeTrainTypeSchedule != undefined) { + this.ipModeTrainTypeSchedule = data.ipModeTrainTypeSchedule; + } + if ("ipModeTrainTypeRoute" in data && data.ipModeTrainTypeRoute != undefined) { + this.ipModeTrainTypeRoute = data.ipModeTrainTypeRoute; + } + if ("ipModeTrainTypeShuttle" in data && data.ipModeTrainTypeShuttle != undefined) { + this.ipModeTrainTypeShuttle = data.ipModeTrainTypeShuttle; + } + if ("ipModeTrainTypeLineup" in data && data.ipModeTrainTypeLineup != undefined) { + this.ipModeTrainTypeLineup = data.ipModeTrainTypeLineup; + } + if ("ipModeTrainSchdEarly" in data && data.ipModeTrainSchdEarly != undefined) { + this.ipModeTrainSchdEarly = data.ipModeTrainSchdEarly; + } + if ("ipModeTrainSchdLate" in data && data.ipModeTrainSchdLate != undefined) { + this.ipModeTrainSchdLate = data.ipModeTrainSchdLate; + } + if ("ipModeTrainSkipstop" in data && data.ipModeTrainSkipstop != undefined) { + this.ipModeTrainSkipstop = data.ipModeTrainSkipstop; + } + if ("ipModeTrainCbtcMode" in data && data.ipModeTrainCbtcMode != undefined) { + this.ipModeTrainCbtcMode = data.ipModeTrainCbtcMode; + } + if ("ipModeTrainAtpCut" in data && data.ipModeTrainAtpCut != undefined) { + this.ipModeTrainAtpCut = data.ipModeTrainAtpCut; + } + if ("ipModeTrainBerthed" in data && data.ipModeTrainBerthed != undefined) { + this.ipModeTrainBerthed = data.ipModeTrainBerthed; + } + if ("ipModeTrainStoped" in data && data.ipModeTrainStoped != undefined) { + this.ipModeTrainStoped = data.ipModeTrainStoped; + } + if ("ipModeTrainHolded" in data && data.ipModeTrainHolded != undefined) { + this.ipModeTrainHolded = data.ipModeTrainHolded; + } + if ("ipModeTrainItama" in data && data.ipModeTrainItama != undefined) { + this.ipModeTrainItama = data.ipModeTrainItama; + } + if ("ipModeTrainDirUp" in data && data.ipModeTrainDirUp != undefined) { + this.ipModeTrainDirUp = data.ipModeTrainDirUp; + } + if ("ipModeTrainDirDown" in data && data.ipModeTrainDirDown != undefined) { + this.ipModeTrainDirDown = data.ipModeTrainDirDown; + } + if ("ipModeTrainDirHeadUp" in data && data.ipModeTrainDirHeadUp != undefined) { + this.ipModeTrainDirHeadUp = data.ipModeTrainDirHeadUp; + } + if ("ipModeTrainDirHeadDown" in data && data.ipModeTrainDirHeadDown != undefined) { + this.ipModeTrainDirHeadDown = data.ipModeTrainDirHeadDown; + } + if ("ipModeTrainDoorOpen" in data && data.ipModeTrainDoorOpen != undefined) { + this.ipModeTrainDoorOpen = data.ipModeTrainDoorOpen; + } + if ("ipModeTrainRsAlarm" in data && data.ipModeTrainRsAlarm != undefined) { + this.ipModeTrainRsAlarm = data.ipModeTrainRsAlarm; + } + if ("ipModeTrainDoorAlarm" in data && data.ipModeTrainDoorAlarm != undefined) { + this.ipModeTrainDoorAlarm = data.ipModeTrainDoorAlarm; + } + if ("ipModeTrainEbAlarm" in data && data.ipModeTrainEbAlarm != undefined) { + this.ipModeTrainEbAlarm = data.ipModeTrainEbAlarm; + } + if ("ipModeTrainIntegrityAlarm" in data && data.ipModeTrainIntegrityAlarm != undefined) { + this.ipModeTrainIntegrityAlarm = data.ipModeTrainIntegrityAlarm; + } + if ("ipModeTrainDriveModeAm" in data && data.ipModeTrainDriveModeAm != undefined) { + this.ipModeTrainDriveModeAm = data.ipModeTrainDriveModeAm; + } + if ("ipModeTrainDriveModeCm" in data && data.ipModeTrainDriveModeCm != undefined) { + this.ipModeTrainDriveModeCm = data.ipModeTrainDriveModeCm; + } + if ("ipModeTrainDriveModeRmf" in data && data.ipModeTrainDriveModeRmf != undefined) { + this.ipModeTrainDriveModeRmf = data.ipModeTrainDriveModeRmf; + } + if ("ipModeTrainDriveModeDto" in data && data.ipModeTrainDriveModeDto != undefined) { + this.ipModeTrainDriveModeDto = data.ipModeTrainDriveModeDto; + } + if ("ipModeTrainDriveModeAtb" in data && data.ipModeTrainDriveModeAtb != undefined) { + this.ipModeTrainDriveModeAtb = data.ipModeTrainDriveModeAtb; + } + if ("ipModeTrainDriveBlockAm" in data && data.ipModeTrainDriveBlockAm != undefined) { + this.ipModeTrainDriveBlockAm = data.ipModeTrainDriveBlockAm; + } + if ("ipModeTrainDriveBlockCm" in data && data.ipModeTrainDriveBlockCm != undefined) { + this.ipModeTrainDriveBlockCm = data.ipModeTrainDriveBlockCm; + } + if ("ipModeTrainDriveModeRmr" in data && data.ipModeTrainDriveModeRmr != undefined) { + this.ipModeTrainDriveModeRmr = data.ipModeTrainDriveModeRmr; + } + if ("ipModeTrainDriveModeWash" in data && data.ipModeTrainDriveModeWash != undefined) { + this.ipModeTrainDriveModeWash = data.ipModeTrainDriveModeWash; + } + if ("id" in data && data.id != undefined) { + this.id = data.id; + } + } + } + get ipModeTrainTypeManual() { + return pb_1.Message.getFieldWithDefault(this, 1, false) as boolean; + } + set ipModeTrainTypeManual(value: boolean) { + pb_1.Message.setField(this, 1, value); + } + get ipModeTrainTypeHead() { + return pb_1.Message.getFieldWithDefault(this, 2, false) as boolean; + } + set ipModeTrainTypeHead(value: boolean) { + pb_1.Message.setField(this, 2, value); + } + get ipModeTrainTypeSpecial() { + return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; + } + set ipModeTrainTypeSpecial(value: boolean) { + pb_1.Message.setField(this, 3, value); + } + get ipModeTrainTypeSchedule() { + return pb_1.Message.getFieldWithDefault(this, 4, false) as boolean; + } + set ipModeTrainTypeSchedule(value: boolean) { + pb_1.Message.setField(this, 4, value); + } + get ipModeTrainTypeRoute() { + return pb_1.Message.getFieldWithDefault(this, 5, false) as boolean; + } + set ipModeTrainTypeRoute(value: boolean) { + pb_1.Message.setField(this, 5, value); + } + get ipModeTrainTypeShuttle() { + return pb_1.Message.getFieldWithDefault(this, 6, false) as boolean; + } + set ipModeTrainTypeShuttle(value: boolean) { + pb_1.Message.setField(this, 6, value); + } + get ipModeTrainTypeLineup() { + return pb_1.Message.getFieldWithDefault(this, 7, false) as boolean; + } + set ipModeTrainTypeLineup(value: boolean) { + pb_1.Message.setField(this, 7, value); + } + get ipModeTrainSchdEarly() { + return pb_1.Message.getFieldWithDefault(this, 8, false) as boolean; + } + set ipModeTrainSchdEarly(value: boolean) { + pb_1.Message.setField(this, 8, value); + } + get ipModeTrainSchdLate() { + return pb_1.Message.getFieldWithDefault(this, 9, false) as boolean; + } + set ipModeTrainSchdLate(value: boolean) { + pb_1.Message.setField(this, 9, value); + } + get ipModeTrainSkipstop() { + return pb_1.Message.getFieldWithDefault(this, 10, false) as boolean; + } + set ipModeTrainSkipstop(value: boolean) { + pb_1.Message.setField(this, 10, value); + } + get ipModeTrainCbtcMode() { + return pb_1.Message.getFieldWithDefault(this, 11, false) as boolean; + } + set ipModeTrainCbtcMode(value: boolean) { + pb_1.Message.setField(this, 11, value); + } + get ipModeTrainAtpCut() { + return pb_1.Message.getFieldWithDefault(this, 12, false) as boolean; + } + set ipModeTrainAtpCut(value: boolean) { + pb_1.Message.setField(this, 12, value); + } + get ipModeTrainBerthed() { + return pb_1.Message.getFieldWithDefault(this, 13, false) as boolean; + } + set ipModeTrainBerthed(value: boolean) { + pb_1.Message.setField(this, 13, value); + } + get ipModeTrainStoped() { + return pb_1.Message.getFieldWithDefault(this, 14, false) as boolean; + } + set ipModeTrainStoped(value: boolean) { + pb_1.Message.setField(this, 14, value); + } + get ipModeTrainHolded() { + return pb_1.Message.getFieldWithDefault(this, 15, false) as boolean; + } + set ipModeTrainHolded(value: boolean) { + pb_1.Message.setField(this, 15, value); + } + get ipModeTrainItama() { + return pb_1.Message.getFieldWithDefault(this, 16, false) as boolean; + } + set ipModeTrainItama(value: boolean) { + pb_1.Message.setField(this, 16, value); + } + get ipModeTrainDirUp() { + return pb_1.Message.getFieldWithDefault(this, 17, false) as boolean; + } + set ipModeTrainDirUp(value: boolean) { + pb_1.Message.setField(this, 17, value); + } + get ipModeTrainDirDown() { + return pb_1.Message.getFieldWithDefault(this, 18, false) as boolean; + } + set ipModeTrainDirDown(value: boolean) { + pb_1.Message.setField(this, 18, value); + } + get ipModeTrainDirHeadUp() { + return pb_1.Message.getFieldWithDefault(this, 19, false) as boolean; + } + set ipModeTrainDirHeadUp(value: boolean) { + pb_1.Message.setField(this, 19, value); + } + get ipModeTrainDirHeadDown() { + return pb_1.Message.getFieldWithDefault(this, 20, false) as boolean; + } + set ipModeTrainDirHeadDown(value: boolean) { + pb_1.Message.setField(this, 20, value); + } + get ipModeTrainDoorOpen() { + return pb_1.Message.getFieldWithDefault(this, 21, false) as boolean; + } + set ipModeTrainDoorOpen(value: boolean) { + pb_1.Message.setField(this, 21, value); + } + get ipModeTrainRsAlarm() { + return pb_1.Message.getFieldWithDefault(this, 22, false) as boolean; + } + set ipModeTrainRsAlarm(value: boolean) { + pb_1.Message.setField(this, 22, value); + } + get ipModeTrainDoorAlarm() { + return pb_1.Message.getFieldWithDefault(this, 23, false) as boolean; + } + set ipModeTrainDoorAlarm(value: boolean) { + pb_1.Message.setField(this, 23, value); + } + get ipModeTrainEbAlarm() { + return pb_1.Message.getFieldWithDefault(this, 24, false) as boolean; + } + set ipModeTrainEbAlarm(value: boolean) { + pb_1.Message.setField(this, 24, value); + } + get ipModeTrainIntegrityAlarm() { + return pb_1.Message.getFieldWithDefault(this, 25, false) as boolean; + } + set ipModeTrainIntegrityAlarm(value: boolean) { + pb_1.Message.setField(this, 25, value); + } + get ipModeTrainDriveModeAm() { + return pb_1.Message.getFieldWithDefault(this, 26, false) as boolean; + } + set ipModeTrainDriveModeAm(value: boolean) { + pb_1.Message.setField(this, 26, value); + } + get ipModeTrainDriveModeCm() { + return pb_1.Message.getFieldWithDefault(this, 27, false) as boolean; + } + set ipModeTrainDriveModeCm(value: boolean) { + pb_1.Message.setField(this, 27, value); + } + get ipModeTrainDriveModeRmf() { + return pb_1.Message.getFieldWithDefault(this, 28, false) as boolean; + } + set ipModeTrainDriveModeRmf(value: boolean) { + pb_1.Message.setField(this, 28, value); + } + get ipModeTrainDriveModeDto() { + return pb_1.Message.getFieldWithDefault(this, 29, false) as boolean; + } + set ipModeTrainDriveModeDto(value: boolean) { + pb_1.Message.setField(this, 29, value); + } + get ipModeTrainDriveModeAtb() { + return pb_1.Message.getFieldWithDefault(this, 30, false) as boolean; + } + set ipModeTrainDriveModeAtb(value: boolean) { + pb_1.Message.setField(this, 30, value); + } + get ipModeTrainDriveBlockAm() { + return pb_1.Message.getFieldWithDefault(this, 31, false) as boolean; + } + set ipModeTrainDriveBlockAm(value: boolean) { + pb_1.Message.setField(this, 31, value); + } + get ipModeTrainDriveBlockCm() { + return pb_1.Message.getFieldWithDefault(this, 32, false) as boolean; + } + set ipModeTrainDriveBlockCm(value: boolean) { + pb_1.Message.setField(this, 32, value); + } + get ipModeTrainDriveModeRmr() { + return pb_1.Message.getFieldWithDefault(this, 33, false) as boolean; + } + set ipModeTrainDriveModeRmr(value: boolean) { + pb_1.Message.setField(this, 33, value); + } + get ipModeTrainDriveModeWash() { + return pb_1.Message.getFieldWithDefault(this, 34, false) as boolean; + } + set ipModeTrainDriveModeWash(value: boolean) { + pb_1.Message.setField(this, 34, value); + } + get id() { + return pb_1.Message.getFieldWithDefault(this, 35, "") as string; + } + set id(value: string) { + pb_1.Message.setField(this, 35, value); + } + static fromObject(data: { + ipModeTrainTypeManual?: boolean; + ipModeTrainTypeHead?: boolean; + ipModeTrainTypeSpecial?: boolean; + ipModeTrainTypeSchedule?: boolean; + ipModeTrainTypeRoute?: boolean; + ipModeTrainTypeShuttle?: boolean; + ipModeTrainTypeLineup?: boolean; + ipModeTrainSchdEarly?: boolean; + ipModeTrainSchdLate?: boolean; + ipModeTrainSkipstop?: boolean; + ipModeTrainCbtcMode?: boolean; + ipModeTrainAtpCut?: boolean; + ipModeTrainBerthed?: boolean; + ipModeTrainStoped?: boolean; + ipModeTrainHolded?: boolean; + ipModeTrainItama?: boolean; + ipModeTrainDirUp?: boolean; + ipModeTrainDirDown?: boolean; + ipModeTrainDirHeadUp?: boolean; + ipModeTrainDirHeadDown?: boolean; + ipModeTrainDoorOpen?: boolean; + ipModeTrainRsAlarm?: boolean; + ipModeTrainDoorAlarm?: boolean; + ipModeTrainEbAlarm?: boolean; + ipModeTrainIntegrityAlarm?: boolean; + ipModeTrainDriveModeAm?: boolean; + ipModeTrainDriveModeCm?: boolean; + ipModeTrainDriveModeRmf?: boolean; + ipModeTrainDriveModeDto?: boolean; + ipModeTrainDriveModeAtb?: boolean; + ipModeTrainDriveBlockAm?: boolean; + ipModeTrainDriveBlockCm?: boolean; + ipModeTrainDriveModeRmr?: boolean; + ipModeTrainDriveModeWash?: boolean; + id?: string; + }): TrainMode { + const message = new TrainMode({}); + if (data.ipModeTrainTypeManual != null) { + message.ipModeTrainTypeManual = data.ipModeTrainTypeManual; + } + if (data.ipModeTrainTypeHead != null) { + message.ipModeTrainTypeHead = data.ipModeTrainTypeHead; + } + if (data.ipModeTrainTypeSpecial != null) { + message.ipModeTrainTypeSpecial = data.ipModeTrainTypeSpecial; + } + if (data.ipModeTrainTypeSchedule != null) { + message.ipModeTrainTypeSchedule = data.ipModeTrainTypeSchedule; + } + if (data.ipModeTrainTypeRoute != null) { + message.ipModeTrainTypeRoute = data.ipModeTrainTypeRoute; + } + if (data.ipModeTrainTypeShuttle != null) { + message.ipModeTrainTypeShuttle = data.ipModeTrainTypeShuttle; + } + if (data.ipModeTrainTypeLineup != null) { + message.ipModeTrainTypeLineup = data.ipModeTrainTypeLineup; + } + if (data.ipModeTrainSchdEarly != null) { + message.ipModeTrainSchdEarly = data.ipModeTrainSchdEarly; + } + if (data.ipModeTrainSchdLate != null) { + message.ipModeTrainSchdLate = data.ipModeTrainSchdLate; + } + if (data.ipModeTrainSkipstop != null) { + message.ipModeTrainSkipstop = data.ipModeTrainSkipstop; + } + if (data.ipModeTrainCbtcMode != null) { + message.ipModeTrainCbtcMode = data.ipModeTrainCbtcMode; + } + if (data.ipModeTrainAtpCut != null) { + message.ipModeTrainAtpCut = data.ipModeTrainAtpCut; + } + if (data.ipModeTrainBerthed != null) { + message.ipModeTrainBerthed = data.ipModeTrainBerthed; + } + if (data.ipModeTrainStoped != null) { + message.ipModeTrainStoped = data.ipModeTrainStoped; + } + if (data.ipModeTrainHolded != null) { + message.ipModeTrainHolded = data.ipModeTrainHolded; + } + if (data.ipModeTrainItama != null) { + message.ipModeTrainItama = data.ipModeTrainItama; + } + if (data.ipModeTrainDirUp != null) { + message.ipModeTrainDirUp = data.ipModeTrainDirUp; + } + if (data.ipModeTrainDirDown != null) { + message.ipModeTrainDirDown = data.ipModeTrainDirDown; + } + if (data.ipModeTrainDirHeadUp != null) { + message.ipModeTrainDirHeadUp = data.ipModeTrainDirHeadUp; + } + if (data.ipModeTrainDirHeadDown != null) { + message.ipModeTrainDirHeadDown = data.ipModeTrainDirHeadDown; + } + if (data.ipModeTrainDoorOpen != null) { + message.ipModeTrainDoorOpen = data.ipModeTrainDoorOpen; + } + if (data.ipModeTrainRsAlarm != null) { + message.ipModeTrainRsAlarm = data.ipModeTrainRsAlarm; + } + if (data.ipModeTrainDoorAlarm != null) { + message.ipModeTrainDoorAlarm = data.ipModeTrainDoorAlarm; + } + if (data.ipModeTrainEbAlarm != null) { + message.ipModeTrainEbAlarm = data.ipModeTrainEbAlarm; + } + if (data.ipModeTrainIntegrityAlarm != null) { + message.ipModeTrainIntegrityAlarm = data.ipModeTrainIntegrityAlarm; + } + if (data.ipModeTrainDriveModeAm != null) { + message.ipModeTrainDriveModeAm = data.ipModeTrainDriveModeAm; + } + if (data.ipModeTrainDriveModeCm != null) { + message.ipModeTrainDriveModeCm = data.ipModeTrainDriveModeCm; + } + if (data.ipModeTrainDriveModeRmf != null) { + message.ipModeTrainDriveModeRmf = data.ipModeTrainDriveModeRmf; + } + if (data.ipModeTrainDriveModeDto != null) { + message.ipModeTrainDriveModeDto = data.ipModeTrainDriveModeDto; + } + if (data.ipModeTrainDriveModeAtb != null) { + message.ipModeTrainDriveModeAtb = data.ipModeTrainDriveModeAtb; + } + if (data.ipModeTrainDriveBlockAm != null) { + message.ipModeTrainDriveBlockAm = data.ipModeTrainDriveBlockAm; + } + if (data.ipModeTrainDriveBlockCm != null) { + message.ipModeTrainDriveBlockCm = data.ipModeTrainDriveBlockCm; + } + if (data.ipModeTrainDriveModeRmr != null) { + message.ipModeTrainDriveModeRmr = data.ipModeTrainDriveModeRmr; + } + if (data.ipModeTrainDriveModeWash != null) { + message.ipModeTrainDriveModeWash = data.ipModeTrainDriveModeWash; + } + if (data.id != null) { + message.id = data.id; + } + return message; + } + toObject() { + const data: { + ipModeTrainTypeManual?: boolean; + ipModeTrainTypeHead?: boolean; + ipModeTrainTypeSpecial?: boolean; + ipModeTrainTypeSchedule?: boolean; + ipModeTrainTypeRoute?: boolean; + ipModeTrainTypeShuttle?: boolean; + ipModeTrainTypeLineup?: boolean; + ipModeTrainSchdEarly?: boolean; + ipModeTrainSchdLate?: boolean; + ipModeTrainSkipstop?: boolean; + ipModeTrainCbtcMode?: boolean; + ipModeTrainAtpCut?: boolean; + ipModeTrainBerthed?: boolean; + ipModeTrainStoped?: boolean; + ipModeTrainHolded?: boolean; + ipModeTrainItama?: boolean; + ipModeTrainDirUp?: boolean; + ipModeTrainDirDown?: boolean; + ipModeTrainDirHeadUp?: boolean; + ipModeTrainDirHeadDown?: boolean; + ipModeTrainDoorOpen?: boolean; + ipModeTrainRsAlarm?: boolean; + ipModeTrainDoorAlarm?: boolean; + ipModeTrainEbAlarm?: boolean; + ipModeTrainIntegrityAlarm?: boolean; + ipModeTrainDriveModeAm?: boolean; + ipModeTrainDriveModeCm?: boolean; + ipModeTrainDriveModeRmf?: boolean; + ipModeTrainDriveModeDto?: boolean; + ipModeTrainDriveModeAtb?: boolean; + ipModeTrainDriveBlockAm?: boolean; + ipModeTrainDriveBlockCm?: boolean; + ipModeTrainDriveModeRmr?: boolean; + ipModeTrainDriveModeWash?: boolean; + id?: string; + } = {}; + if (this.ipModeTrainTypeManual != null) { + data.ipModeTrainTypeManual = this.ipModeTrainTypeManual; + } + if (this.ipModeTrainTypeHead != null) { + data.ipModeTrainTypeHead = this.ipModeTrainTypeHead; + } + if (this.ipModeTrainTypeSpecial != null) { + data.ipModeTrainTypeSpecial = this.ipModeTrainTypeSpecial; + } + if (this.ipModeTrainTypeSchedule != null) { + data.ipModeTrainTypeSchedule = this.ipModeTrainTypeSchedule; + } + if (this.ipModeTrainTypeRoute != null) { + data.ipModeTrainTypeRoute = this.ipModeTrainTypeRoute; + } + if (this.ipModeTrainTypeShuttle != null) { + data.ipModeTrainTypeShuttle = this.ipModeTrainTypeShuttle; + } + if (this.ipModeTrainTypeLineup != null) { + data.ipModeTrainTypeLineup = this.ipModeTrainTypeLineup; + } + if (this.ipModeTrainSchdEarly != null) { + data.ipModeTrainSchdEarly = this.ipModeTrainSchdEarly; + } + if (this.ipModeTrainSchdLate != null) { + data.ipModeTrainSchdLate = this.ipModeTrainSchdLate; + } + if (this.ipModeTrainSkipstop != null) { + data.ipModeTrainSkipstop = this.ipModeTrainSkipstop; + } + if (this.ipModeTrainCbtcMode != null) { + data.ipModeTrainCbtcMode = this.ipModeTrainCbtcMode; + } + if (this.ipModeTrainAtpCut != null) { + data.ipModeTrainAtpCut = this.ipModeTrainAtpCut; + } + if (this.ipModeTrainBerthed != null) { + data.ipModeTrainBerthed = this.ipModeTrainBerthed; + } + if (this.ipModeTrainStoped != null) { + data.ipModeTrainStoped = this.ipModeTrainStoped; + } + if (this.ipModeTrainHolded != null) { + data.ipModeTrainHolded = this.ipModeTrainHolded; + } + if (this.ipModeTrainItama != null) { + data.ipModeTrainItama = this.ipModeTrainItama; + } + if (this.ipModeTrainDirUp != null) { + data.ipModeTrainDirUp = this.ipModeTrainDirUp; + } + if (this.ipModeTrainDirDown != null) { + data.ipModeTrainDirDown = this.ipModeTrainDirDown; + } + if (this.ipModeTrainDirHeadUp != null) { + data.ipModeTrainDirHeadUp = this.ipModeTrainDirHeadUp; + } + if (this.ipModeTrainDirHeadDown != null) { + data.ipModeTrainDirHeadDown = this.ipModeTrainDirHeadDown; + } + if (this.ipModeTrainDoorOpen != null) { + data.ipModeTrainDoorOpen = this.ipModeTrainDoorOpen; + } + if (this.ipModeTrainRsAlarm != null) { + data.ipModeTrainRsAlarm = this.ipModeTrainRsAlarm; + } + if (this.ipModeTrainDoorAlarm != null) { + data.ipModeTrainDoorAlarm = this.ipModeTrainDoorAlarm; + } + if (this.ipModeTrainEbAlarm != null) { + data.ipModeTrainEbAlarm = this.ipModeTrainEbAlarm; + } + if (this.ipModeTrainIntegrityAlarm != null) { + data.ipModeTrainIntegrityAlarm = this.ipModeTrainIntegrityAlarm; + } + if (this.ipModeTrainDriveModeAm != null) { + data.ipModeTrainDriveModeAm = this.ipModeTrainDriveModeAm; + } + if (this.ipModeTrainDriveModeCm != null) { + data.ipModeTrainDriveModeCm = this.ipModeTrainDriveModeCm; + } + if (this.ipModeTrainDriveModeRmf != null) { + data.ipModeTrainDriveModeRmf = this.ipModeTrainDriveModeRmf; + } + if (this.ipModeTrainDriveModeDto != null) { + data.ipModeTrainDriveModeDto = this.ipModeTrainDriveModeDto; + } + if (this.ipModeTrainDriveModeAtb != null) { + data.ipModeTrainDriveModeAtb = this.ipModeTrainDriveModeAtb; + } + if (this.ipModeTrainDriveBlockAm != null) { + data.ipModeTrainDriveBlockAm = this.ipModeTrainDriveBlockAm; + } + if (this.ipModeTrainDriveBlockCm != null) { + data.ipModeTrainDriveBlockCm = this.ipModeTrainDriveBlockCm; + } + if (this.ipModeTrainDriveModeRmr != null) { + data.ipModeTrainDriveModeRmr = this.ipModeTrainDriveModeRmr; + } + if (this.ipModeTrainDriveModeWash != null) { + data.ipModeTrainDriveModeWash = this.ipModeTrainDriveModeWash; + } + if (this.id != null) { + data.id = this.id; + } + return data; + } + serialize(): Uint8Array; + serialize(w: pb_1.BinaryWriter): void; + serialize(w?: pb_1.BinaryWriter): Uint8Array | void { + const writer = w || new pb_1.BinaryWriter(); + if (this.ipModeTrainTypeManual != false) + writer.writeBool(1, this.ipModeTrainTypeManual); + if (this.ipModeTrainTypeHead != false) + writer.writeBool(2, this.ipModeTrainTypeHead); + if (this.ipModeTrainTypeSpecial != false) + writer.writeBool(3, this.ipModeTrainTypeSpecial); + if (this.ipModeTrainTypeSchedule != false) + writer.writeBool(4, this.ipModeTrainTypeSchedule); + if (this.ipModeTrainTypeRoute != false) + writer.writeBool(5, this.ipModeTrainTypeRoute); + if (this.ipModeTrainTypeShuttle != false) + writer.writeBool(6, this.ipModeTrainTypeShuttle); + if (this.ipModeTrainTypeLineup != false) + writer.writeBool(7, this.ipModeTrainTypeLineup); + if (this.ipModeTrainSchdEarly != false) + writer.writeBool(8, this.ipModeTrainSchdEarly); + if (this.ipModeTrainSchdLate != false) + writer.writeBool(9, this.ipModeTrainSchdLate); + if (this.ipModeTrainSkipstop != false) + writer.writeBool(10, this.ipModeTrainSkipstop); + if (this.ipModeTrainCbtcMode != false) + writer.writeBool(11, this.ipModeTrainCbtcMode); + if (this.ipModeTrainAtpCut != false) + writer.writeBool(12, this.ipModeTrainAtpCut); + if (this.ipModeTrainBerthed != false) + writer.writeBool(13, this.ipModeTrainBerthed); + if (this.ipModeTrainStoped != false) + writer.writeBool(14, this.ipModeTrainStoped); + if (this.ipModeTrainHolded != false) + writer.writeBool(15, this.ipModeTrainHolded); + if (this.ipModeTrainItama != false) + writer.writeBool(16, this.ipModeTrainItama); + if (this.ipModeTrainDirUp != false) + writer.writeBool(17, this.ipModeTrainDirUp); + if (this.ipModeTrainDirDown != false) + writer.writeBool(18, this.ipModeTrainDirDown); + if (this.ipModeTrainDirHeadUp != false) + writer.writeBool(19, this.ipModeTrainDirHeadUp); + if (this.ipModeTrainDirHeadDown != false) + writer.writeBool(20, this.ipModeTrainDirHeadDown); + if (this.ipModeTrainDoorOpen != false) + writer.writeBool(21, this.ipModeTrainDoorOpen); + if (this.ipModeTrainRsAlarm != false) + writer.writeBool(22, this.ipModeTrainRsAlarm); + if (this.ipModeTrainDoorAlarm != false) + writer.writeBool(23, this.ipModeTrainDoorAlarm); + if (this.ipModeTrainEbAlarm != false) + writer.writeBool(24, this.ipModeTrainEbAlarm); + if (this.ipModeTrainIntegrityAlarm != false) + writer.writeBool(25, this.ipModeTrainIntegrityAlarm); + if (this.ipModeTrainDriveModeAm != false) + writer.writeBool(26, this.ipModeTrainDriveModeAm); + if (this.ipModeTrainDriveModeCm != false) + writer.writeBool(27, this.ipModeTrainDriveModeCm); + if (this.ipModeTrainDriveModeRmf != false) + writer.writeBool(28, this.ipModeTrainDriveModeRmf); + if (this.ipModeTrainDriveModeDto != false) + writer.writeBool(29, this.ipModeTrainDriveModeDto); + if (this.ipModeTrainDriveModeAtb != false) + writer.writeBool(30, this.ipModeTrainDriveModeAtb); + if (this.ipModeTrainDriveBlockAm != false) + writer.writeBool(31, this.ipModeTrainDriveBlockAm); + if (this.ipModeTrainDriveBlockCm != false) + writer.writeBool(32, this.ipModeTrainDriveBlockCm); + if (this.ipModeTrainDriveModeRmr != false) + writer.writeBool(33, this.ipModeTrainDriveModeRmr); + if (this.ipModeTrainDriveModeWash != false) + writer.writeBool(34, this.ipModeTrainDriveModeWash); + if (this.id.length) + writer.writeString(35, this.id); + if (!w) + return writer.getResultBuffer(); + } + static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TrainMode { + const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new TrainMode(); + while (reader.nextField()) { + if (reader.isEndGroup()) + break; + switch (reader.getFieldNumber()) { + case 1: + message.ipModeTrainTypeManual = reader.readBool(); + break; + case 2: + message.ipModeTrainTypeHead = reader.readBool(); + break; + case 3: + message.ipModeTrainTypeSpecial = reader.readBool(); + break; + case 4: + message.ipModeTrainTypeSchedule = reader.readBool(); + break; + case 5: + message.ipModeTrainTypeRoute = reader.readBool(); + break; + case 6: + message.ipModeTrainTypeShuttle = reader.readBool(); + break; + case 7: + message.ipModeTrainTypeLineup = reader.readBool(); + break; + case 8: + message.ipModeTrainSchdEarly = reader.readBool(); + break; + case 9: + message.ipModeTrainSchdLate = reader.readBool(); + break; + case 10: + message.ipModeTrainSkipstop = reader.readBool(); + break; + case 11: + message.ipModeTrainCbtcMode = reader.readBool(); + break; + case 12: + message.ipModeTrainAtpCut = reader.readBool(); + break; + case 13: + message.ipModeTrainBerthed = reader.readBool(); + break; + case 14: + message.ipModeTrainStoped = reader.readBool(); + break; + case 15: + message.ipModeTrainHolded = reader.readBool(); + break; + case 16: + message.ipModeTrainItama = reader.readBool(); + break; + case 17: + message.ipModeTrainDirUp = reader.readBool(); + break; + case 18: + message.ipModeTrainDirDown = reader.readBool(); + break; + case 19: + message.ipModeTrainDirHeadUp = reader.readBool(); + break; + case 20: + message.ipModeTrainDirHeadDown = reader.readBool(); + break; + case 21: + message.ipModeTrainDoorOpen = reader.readBool(); + break; + case 22: + message.ipModeTrainRsAlarm = reader.readBool(); + break; + case 23: + message.ipModeTrainDoorAlarm = reader.readBool(); + break; + case 24: + message.ipModeTrainEbAlarm = reader.readBool(); + break; + case 25: + message.ipModeTrainIntegrityAlarm = reader.readBool(); + break; + case 26: + message.ipModeTrainDriveModeAm = reader.readBool(); + break; + case 27: + message.ipModeTrainDriveModeCm = reader.readBool(); + break; + case 28: + message.ipModeTrainDriveModeRmf = reader.readBool(); + break; + case 29: + message.ipModeTrainDriveModeDto = reader.readBool(); + break; + case 30: + message.ipModeTrainDriveModeAtb = reader.readBool(); + break; + case 31: + message.ipModeTrainDriveBlockAm = reader.readBool(); + break; + case 32: + message.ipModeTrainDriveBlockCm = reader.readBool(); + break; + case 33: + message.ipModeTrainDriveModeRmr = reader.readBool(); + break; + case 34: + message.ipModeTrainDriveModeWash = reader.readBool(); + break; + case 35: + message.id = reader.readString(); + break; + default: reader.skipField(); + } + } + return message; + } + serializeBinary(): Uint8Array { + return this.serialize(); + } + static deserializeBinary(bytes: Uint8Array): TrainMode { + return TrainMode.deserialize(bytes); + } + } +} diff --git a/src/protos/stationLayoutGraphics.ts b/src/protos/stationLayoutGraphics.ts index f984b9d..d5287f8 100644 --- a/src/protos/stationLayoutGraphics.ts +++ b/src/protos/stationLayoutGraphics.ts @@ -1451,8 +1451,6 @@ export namespace graphicData { constructor(data?: any[] | { common?: CommonInfo; code?: string; - hasCircle?: boolean; - circlePoint?: Point; }) { super(); pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls); @@ -1463,12 +1461,6 @@ export namespace graphicData { if ("code" in data && data.code != undefined) { this.code = data.code; } - if ("hasCircle" in data && data.hasCircle != undefined) { - this.hasCircle = data.hasCircle; - } - if ("circlePoint" in data && data.circlePoint != undefined) { - this.circlePoint = data.circlePoint; - } } } get common() { @@ -1486,26 +1478,9 @@ export namespace graphicData { set code(value: string) { pb_1.Message.setField(this, 2, value); } - get hasCircle() { - return pb_1.Message.getFieldWithDefault(this, 3, false) as boolean; - } - set hasCircle(value: boolean) { - pb_1.Message.setField(this, 3, value); - } - get circlePoint() { - return pb_1.Message.getWrapperField(this, Point, 4) as Point; - } - set circlePoint(value: Point) { - pb_1.Message.setWrapperField(this, 4, value); - } - get has_circlePoint() { - return pb_1.Message.getField(this, 4) != null; - } static fromObject(data: { common?: ReturnType; code?: string; - hasCircle?: boolean; - circlePoint?: ReturnType; }): Station { const message = new Station({}); if (data.common != null) { @@ -1514,20 +1489,12 @@ export namespace graphicData { if (data.code != null) { message.code = data.code; } - if (data.hasCircle != null) { - message.hasCircle = data.hasCircle; - } - if (data.circlePoint != null) { - message.circlePoint = Point.fromObject(data.circlePoint); - } return message; } toObject() { const data: { common?: ReturnType; code?: string; - hasCircle?: boolean; - circlePoint?: ReturnType; } = {}; if (this.common != null) { data.common = this.common.toObject(); @@ -1535,12 +1502,6 @@ export namespace graphicData { if (this.code != null) { data.code = this.code; } - if (this.hasCircle != null) { - data.hasCircle = this.hasCircle; - } - if (this.circlePoint != null) { - data.circlePoint = this.circlePoint.toObject(); - } return data; } serialize(): Uint8Array; @@ -1551,10 +1512,6 @@ export namespace graphicData { writer.writeMessage(1, this.common, () => this.common.serialize(writer)); if (this.code.length) writer.writeString(2, this.code); - if (this.hasCircle != false) - writer.writeBool(3, this.hasCircle); - if (this.has_circlePoint) - writer.writeMessage(4, this.circlePoint, () => this.circlePoint.serialize(writer)); if (!w) return writer.getResultBuffer(); } @@ -1570,12 +1527,6 @@ export namespace graphicData { case 2: message.code = reader.readString(); break; - case 3: - message.hasCircle = reader.readBool(); - break; - case 4: - reader.readMessage(message.circlePoint, () => message.circlePoint = Point.deserialize(reader)); - break; default: reader.skipField(); } } diff --git a/src/router/routes.ts b/src/router/routes.ts index 08ecdf6..dd98c51 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -29,6 +29,16 @@ const routes: RouteRecordRaw[] = [ name: 'draft', component: () => import('pages/DraftManage.vue'), }, + { + path: 'publish', + name: 'publish', + component: () => import('pages/PublishManage.vue'), + }, + { + path: 'lineInfo', + name: 'lineInfo', + component: () => import('pages/LineInfoManage.vue'), + }, ], }, { diff --git a/xian-ncc-da-message b/xian-ncc-da-message index 89c9f02..a333380 160000 --- a/xian-ncc-da-message +++ b/xian-ncc-da-message @@ -1 +1 @@ -Subproject commit 89c9f023cff957ecb414d09252b306ef20b9e908 +Subproject commit a33338038ddd00db9cdd28d0aad57d4b1b6428df diff --git a/yarn.lock b/yarn.lock index c12ff44..e9656b7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,7 +4,7 @@ "@babel/parser@^7.20.15", "@babel/parser@^7.21.3": version "7.22.4" - resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.22.4.tgz#a770e98fd785c231af9d93f6459d36770993fb32" + resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.22.4.tgz" integrity sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA== "@esbuild/linux-loong64@0.14.54": @@ -14,19 +14,19 @@ "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.3.0": version "4.4.0" - resolved "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + resolved "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== dependencies: eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.4.0": version "4.5.1" - resolved "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" + resolved "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz" integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== "@eslint/eslintrc@^2.0.3": version "2.0.3" - resolved "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" + resolved "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz" integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== dependencies: ajv "^6.12.4" @@ -41,12 +41,12 @@ "@eslint/js@8.41.0": version "8.41.0" - resolved "https://registry.npmmirror.com/@eslint/js/-/js-8.41.0.tgz#080321c3b68253522f7646b55b577dd99d2950b3" + resolved "https://registry.npmmirror.com/@eslint/js/-/js-8.41.0.tgz" integrity sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA== "@humanwhocodes/config-array@^0.11.8": version "0.11.8" - resolved "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" + resolved "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz" integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== dependencies: "@humanwhocodes/object-schema" "^1.2.1" @@ -55,22 +55,22 @@ "@humanwhocodes/module-importer@^1.0.1": version "1.0.1" - resolved "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + resolved "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== "@humanwhocodes/object-schema@^1.2.1": version "1.2.1" - resolved "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + resolved "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== "@jridgewell/sourcemap-codec@^1.4.13": version "1.4.15" - resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" @@ -78,12 +78,12 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": version "1.2.8" - resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" @@ -91,41 +91,41 @@ "@pixi/accessibility@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/accessibility/-/accessibility-7.2.4.tgz#3198d0059c230c668b1179457346a3b5dcba6e64" + resolved "https://registry.npmmirror.com/@pixi/accessibility/-/accessibility-7.2.4.tgz" integrity sha512-EVjuqUqv9FeYFXCv0S0qj1hgCtbAMNBPCbOGEtiMogpM++/IySxBZvcOYg3rRgo9inwt2s4Bi7kUiqMPD8hItw== "@pixi/app@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/app/-/app-7.2.4.tgz#ae16fdc9fce04224fb36311168d902a2e7d0e65a" + resolved "https://registry.npmmirror.com/@pixi/app/-/app-7.2.4.tgz" integrity sha512-eJ2jpu5P28ip07nLItw6sETXn45P4KR/leMJ6zPHRlhT1m8t5zTsWr3jK4Uj8LF2E+6KlPNzLQh5Alf/unn/aQ== "@pixi/assets@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/assets/-/assets-7.2.4.tgz#944f4a15acc888071c0811d3d68524afb0ed069c" + resolved "https://registry.npmmirror.com/@pixi/assets/-/assets-7.2.4.tgz" integrity sha512-7199re3wvMAlVqXLaCyAr8IkJSXqkeVAxcYyB2rBu4Id5m2hhlGX1dQsdMBiCXLwu6/LLVqDvJggSNVQBzL6ZQ== dependencies: "@types/css-font-loading-module" "^0.0.7" "@pixi/color@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/color/-/color-7.2.4.tgz#6d6d5dbc01ae2a4f1c8eb48e98fff89ac0c3e40d" + resolved "https://registry.npmmirror.com/@pixi/color/-/color-7.2.4.tgz" integrity sha512-B/+9JRcXe2uE8wQfsueFRPZVayF2VEMRB7XGeRAsWCryOX19nmWhv0Nt3nOU2rvzI0niz9XgugJXsB6vVmDFSg== dependencies: colord "^2.9.3" "@pixi/compressed-textures@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/compressed-textures/-/compressed-textures-7.2.4.tgz#bbf84689a9f4f41d5a8e9476ea6520a4c19412ac" + resolved "https://registry.npmmirror.com/@pixi/compressed-textures/-/compressed-textures-7.2.4.tgz" integrity sha512-atnWyw/ot/Wg69qhgskKiuTYCZx15IxV35sa0KyXMthyjyvDLCIvOn0nczM6wCBy9H96SjJbfgynVWhVrip6qw== "@pixi/constants@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/constants/-/constants-7.2.4.tgz#45c23b247309e78d4105f04063ad8b453dae8b2f" + resolved "https://registry.npmmirror.com/@pixi/constants/-/constants-7.2.4.tgz" integrity sha512-hKuHBWR6N4Q0Sf5MGF3/9l+POg/G5rqhueHfzofiuelnKg7aBs3BVjjZ+6hZbd6M++vOUmxYelEX/NEFBxrheA== "@pixi/core@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/core/-/core-7.2.4.tgz#9f93a0744c795b17045127c2630f976580f03008" + resolved "https://registry.npmmirror.com/@pixi/core/-/core-7.2.4.tgz" integrity sha512-0XtvrfxHlS2T+beBBSpo7GI8+QLyyTqMVQpNmPqB4woYxzrOEJ9JaUFBaBfCvycLeUkfVih1u6HAbtF+2d1EjQ== dependencies: "@pixi/color" "7.2.4" @@ -140,57 +140,57 @@ "@pixi/display@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/display/-/display-7.2.4.tgz#cbf46ba0c0c0d30064b9ce67190a0a6a3624c62f" + resolved "https://registry.npmmirror.com/@pixi/display/-/display-7.2.4.tgz" integrity sha512-w5tqb8cWEO5qIDaO9GEqRvxYhL0iMk0Wsngw23bbLm1gLEQmrFkB2tpJlRAqd7H82C3DrDDeWvkrrxW6+m4apg== "@pixi/events@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/events/-/events-7.2.4.tgz#06434c9e84838b87d7626151ec556a66796ac206" + resolved "https://registry.npmmirror.com/@pixi/events/-/events-7.2.4.tgz" integrity sha512-/JtmoB98fzIU8giN9xvlRvmvOi6u4MaD2DnKNOMHkQ1MBraj3pmrXM9fZ0JbNzi+324GraAAY76QidgHjIYoYQ== "@pixi/extensions@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/extensions/-/extensions-7.2.4.tgz#ab2940abce3935706e956d1bcf2dbf44aca440db" + resolved "https://registry.npmmirror.com/@pixi/extensions/-/extensions-7.2.4.tgz" integrity sha512-Mnqv9scbL1ARD3QFKfOWs2aSVJJfP1dL8g5UiqGImYO3rZbz/9QCzXOeMVIZ5n3iaRyKMNhFFr84/zUja2H7Dw== "@pixi/extract@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/extract/-/extract-7.2.4.tgz#2db62611a3135ee8232affdb7b26cab37cb2a0a3" + resolved "https://registry.npmmirror.com/@pixi/extract/-/extract-7.2.4.tgz" integrity sha512-wlXZg+J2L/1jQhRi5nZQP/cXshovhjksjss91eAKMvY5aGxNAQovCP4xotJ/XJjfTvPMpeRzHPFYzm3PrOPQ7g== "@pixi/filter-alpha@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/filter-alpha/-/filter-alpha-7.2.4.tgz#f33621fa4bdc95de09457780aa33eb253fe6447f" + resolved "https://registry.npmmirror.com/@pixi/filter-alpha/-/filter-alpha-7.2.4.tgz" integrity sha512-UTUMSGyktUr+I9vmigqJo9iUhb0nwGyqTTME2xBWZvVGCnl5z+/wHxvIBBCe5pNZ66IM15pGXQ4cDcfqCuP2kA== "@pixi/filter-blur@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/filter-blur/-/filter-blur-7.2.4.tgz#834447f9d6edec7d27414c9961b9e6009acd678a" + resolved "https://registry.npmmirror.com/@pixi/filter-blur/-/filter-blur-7.2.4.tgz" integrity sha512-aLyXIoxy14bTansCPtbY8x7Sdn2OrrqkF/pcKiRXHJGGhi7wPacvB/NcmYJdnI/n2ExQ6V5Njuj/nfrsejVwcA== "@pixi/filter-color-matrix@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/filter-color-matrix/-/filter-color-matrix-7.2.4.tgz#4c9e6e174b27635ce5e92f34d372366b901e250f" + resolved "https://registry.npmmirror.com/@pixi/filter-color-matrix/-/filter-color-matrix-7.2.4.tgz" integrity sha512-DFtayybYXoUh73eHUFRK5REbi1t3FZuVUnaQTj+euHKF9L7EaYc3Q9wctpx1WPRcwkqEX50M4SNFhxpA7Pxtaw== "@pixi/filter-displacement@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/filter-displacement/-/filter-displacement-7.2.4.tgz#39da0592966079d7e194be46494b8055b5eebda2" + resolved "https://registry.npmmirror.com/@pixi/filter-displacement/-/filter-displacement-7.2.4.tgz" integrity sha512-Simq3IBJKt7+Gvk4kK7OFkfoeYUMhNhIyATCdeT+Jkdkq5WV7pYnH5hqO0YW7eAHrgjV13yn6t4H/GC4+6LhEA== "@pixi/filter-fxaa@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/filter-fxaa/-/filter-fxaa-7.2.4.tgz#78fac5466ca1a249f343be1af90c79bae399bf92" + resolved "https://registry.npmmirror.com/@pixi/filter-fxaa/-/filter-fxaa-7.2.4.tgz" integrity sha512-qzKjdL+Ih18uGTJLg8tT/H+YCsTeGkw2uF7lyKnw/lxGLJQhLWIhM95M9qSNgxbXyW1vp7SbG81a9aAEz2HAhA== "@pixi/filter-noise@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/filter-noise/-/filter-noise-7.2.4.tgz#0586a00381ec0e63f6c00d49cd58b781eaf07f37" + resolved "https://registry.npmmirror.com/@pixi/filter-noise/-/filter-noise-7.2.4.tgz" integrity sha512-QAU9Ybj2ZQrWM9ZEjTTC0iLnQcuyNoZNRinxSbg1G0yacpmsSb9wvV5ltIZ66+hfY+90+u2Nudt/v9g6pvOdGg== "@pixi/filter-outline@^5.2.0": version "5.2.0" - resolved "https://registry.npmmirror.com/@pixi/filter-outline/-/filter-outline-5.2.0.tgz#8572ed2c847c31c5a142db04e86f081baed0365a" + resolved "https://registry.npmmirror.com/@pixi/filter-outline/-/filter-outline-5.2.0.tgz" integrity sha512-xKfAouhZNKl6A0RvxT5i+2/ean7r16dE/QswwIkbWvr2hhHlp4p9U6XsqdgUERCDxK+IZibMAumbWs4DGxOUeQ== "@pixi/graphics-extras@^7.2.4": @@ -200,57 +200,57 @@ "@pixi/graphics@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/graphics/-/graphics-7.2.4.tgz#8500b604c36184736926393cb0ca9b9de9afef86" + resolved "https://registry.npmmirror.com/@pixi/graphics/-/graphics-7.2.4.tgz" integrity sha512-3A2EumTjWJgXlDLOyuBrl9b6v1Za/E+/IjOGUIX843HH4NYaf1a2sfDfljx6r3oiDvy+VhuBFmgynRcV5IyA0Q== "@pixi/math@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/math/-/math-7.2.4.tgz#219b64ca44348a1ee900ee074c51ee7e41615059" + resolved "https://registry.npmmirror.com/@pixi/math/-/math-7.2.4.tgz" integrity sha512-LJB+mozyEPllxa0EssFZrKNfVwysfaBun4b2dJKQQInp0DafgbA0j7A+WVg0oe51KhFULTJMpDqbLn/ITFc41A== "@pixi/mesh-extras@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/mesh-extras/-/mesh-extras-7.2.4.tgz#e3c6721c1a8ff5852e76402276b2f495b7db702d" + resolved "https://registry.npmmirror.com/@pixi/mesh-extras/-/mesh-extras-7.2.4.tgz" integrity sha512-Lxqq/1E2EmDgjZX8KzjhBy3VvITIQ00arr2ikyHYF1d0XtQTKEYpr8VKzhchqZ5/9DuyTDbDMYGhcxoNXQmZrQ== "@pixi/mesh@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/mesh/-/mesh-7.2.4.tgz#c78cc24f831a9e08d4ac0a1706e82f3498ba6907" + resolved "https://registry.npmmirror.com/@pixi/mesh/-/mesh-7.2.4.tgz" integrity sha512-wiALIqcRKib2BqeH9kOA5fOKWN352nqAspgbDa8gA7OyWzmNwqIedIlElixd0oLFOrIN5jOZAdzeKnoYQlt9Aw== "@pixi/mixin-cache-as-bitmap@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-7.2.4.tgz#4fb69efc40b30b0a8c2c1ad1eee6ca3227eccaed" + resolved "https://registry.npmmirror.com/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-7.2.4.tgz" integrity sha512-95L/9nzfLHw6GoeqqRl/RjSloKvRt0xrc2inCmjMZvMsFUEtHN2F8IWd1k5vcv0S+83NCreFkJg6nJm1m5AZqg== "@pixi/mixin-get-child-by-name@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-7.2.4.tgz#863b14c774d3af7e2a38a68904c06bc51a2b51dd" + resolved "https://registry.npmmirror.com/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-7.2.4.tgz" integrity sha512-9g17KgSBEEhkinnKk4dqmxagzHOCPSTvGB6lOopBq4yyXmr/2WVv+QGjuzE0O+p80szQeBJjPBQxzrfBILaSRw== "@pixi/mixin-get-global-position@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/mixin-get-global-position/-/mixin-get-global-position-7.2.4.tgz#8c0b96a0bcd381db9486954aeeb6d06c5ea2e2c0" + resolved "https://registry.npmmirror.com/@pixi/mixin-get-global-position/-/mixin-get-global-position-7.2.4.tgz" integrity sha512-UrAUF2BXCeWtFgR2m+er41Ky7zShT7r228cZkB6ZfYwMeThhwqG5mH68UeCyP6p68JMpT1gjI2DPfeSRY3ecnA== "@pixi/particle-container@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/particle-container/-/particle-container-7.2.4.tgz#8f277f65e73b061d0859c7e526f5161f9b090242" + resolved "https://registry.npmmirror.com/@pixi/particle-container/-/particle-container-7.2.4.tgz" integrity sha512-tpSzilZGFtAoi8XhzL0TecLPNRQAbY8nWV9XNGXJDw+nxXp18GCe8L6eEmnHLlAug67BRHl65DtrdvTknPX+4g== "@pixi/prepare@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/prepare/-/prepare-7.2.4.tgz#fd470bbc7dd90c4a8111989c405ffb5521850ff9" + resolved "https://registry.npmmirror.com/@pixi/prepare/-/prepare-7.2.4.tgz" integrity sha512-Yff5Sh4kTLdKc5VkkM44LW9gpj7Izw8ns3P1TzWxqeGjzPZ3folr/tQujGL+Qw+8A9VESp+hX9MSIHyw+jpyrg== "@pixi/runner@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/runner/-/runner-7.2.4.tgz#7356e768a43809ed6f8b3254e9bdd8c1a47af0e7" + resolved "https://registry.npmmirror.com/@pixi/runner/-/runner-7.2.4.tgz" integrity sha512-YtyqPk1LA+0guEFKSFx6t/YSvbEQwajFwi4Ft8iDhioa6VK2MmTir1GjWwy7JQYLcDmYSAcQjnmFtVTZohyYSw== "@pixi/settings@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/settings/-/settings-7.2.4.tgz#bfd3107ad425f99316018ee441accdf7d55627e6" + resolved "https://registry.npmmirror.com/@pixi/settings/-/settings-7.2.4.tgz" integrity sha512-ZPKRar9EwibijGmH8EViu4Greq1I/O7V/xQx2rNqN23XA7g09Qo6yfaeQpufu5xl8+/lZrjuHtQSnuY7OgG1CA== dependencies: "@pixi/constants" "7.2.4" @@ -259,42 +259,42 @@ "@pixi/sprite-animated@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/sprite-animated/-/sprite-animated-7.2.4.tgz#46b95e52781dd7cf84ee315521c209e48c40656d" + resolved "https://registry.npmmirror.com/@pixi/sprite-animated/-/sprite-animated-7.2.4.tgz" integrity sha512-9eRriPSC0QVS7U9zQlrG3uEI5+h3fi+mqofXy+yjk1sGCmXSIJME5p2wg2mzxoJk3qkSMagQA9QHtL26Fti8Iw== "@pixi/sprite-tiling@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/sprite-tiling/-/sprite-tiling-7.2.4.tgz#7bcbd6e0096512fe18934a7b3250c57be19b63e4" + resolved "https://registry.npmmirror.com/@pixi/sprite-tiling/-/sprite-tiling-7.2.4.tgz" integrity sha512-nGfxQoACRx49dUN0oW1vFm3141M+7gkAbzoNJym2Pljd2dpLME9fb5E6Lyahu0yWMaPRhhGorn6z9VIGmTF3Jw== "@pixi/sprite@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/sprite/-/sprite-7.2.4.tgz#be7cd2d58d263131019545a83bb4df7340452ba1" + resolved "https://registry.npmmirror.com/@pixi/sprite/-/sprite-7.2.4.tgz" integrity sha512-DhR1B+/d0eXpxHIesJMXcVPrKFwQ+zRA1LvEIFfzewqfaRN3X6PMIuoKX8SIb6tl+Hq8Ba9Pe28zI7d2rmRzrA== "@pixi/spritesheet@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/spritesheet/-/spritesheet-7.2.4.tgz#9214d0c75aa95639c1f528091ac4a4850f5b5b8e" + resolved "https://registry.npmmirror.com/@pixi/spritesheet/-/spritesheet-7.2.4.tgz" integrity sha512-LNmlavyiMQeCF0U4S+yhzxUYmPmat6EpLjLnkGukQTZV5CZkxDCVgXM9uKoRF2DvNydj4yuwZ6+JjK8QssHI8Q== "@pixi/text-bitmap@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/text-bitmap/-/text-bitmap-7.2.4.tgz#444010da3898c35e2cdb01493bdc21706c9356a1" + resolved "https://registry.npmmirror.com/@pixi/text-bitmap/-/text-bitmap-7.2.4.tgz" integrity sha512-3u2CP4VN+muCaq/jtj7gn0hb3DET/X2S04zTBcgc2WVGufJc62yz+UDzS9jC+ellotVdt9c8U74++vpz3zJGfw== "@pixi/text-html@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/text-html/-/text-html-7.2.4.tgz#4702cdb97c6a10ca883d004808d45b1517c7129b" + resolved "https://registry.npmmirror.com/@pixi/text-html/-/text-html-7.2.4.tgz" integrity sha512-0NfLAE/w51ZtatxVqLvDS62iO0VLKsSdctqTAVv4Zlgdk9TKJmX1WUucHJboTvbm2SbDjNDGfZ6qXM5nAslIDQ== "@pixi/text@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/text/-/text-7.2.4.tgz#b31e7619ba80acee69cd9fb33948d34f1839bc61" + resolved "https://registry.npmmirror.com/@pixi/text/-/text-7.2.4.tgz" integrity sha512-DGu7ktpe+zHhqR2sG9NsJt4mgvSObv5EqXTtUxD4Z0li1gmqF7uktpLyn5I6vSg1TTEL4TECClRDClVDGiykWw== "@pixi/ticker@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/ticker/-/ticker-7.2.4.tgz#5acb761d3b53a1bbb2e34db59eb2a1b0442a8ed8" + resolved "https://registry.npmmirror.com/@pixi/ticker/-/ticker-7.2.4.tgz" integrity sha512-hQQHIHvGeFsP4GNezZqjzuhUgNQEVgCH9+qU05UX1Mc5UHC9l6OJnY4VTVhhcHxZjA6RnyaY+1zBxCnoXuazpg== dependencies: "@pixi/extensions" "7.2.4" @@ -303,7 +303,7 @@ "@pixi/utils@7.2.4": version "7.2.4" - resolved "https://registry.npmmirror.com/@pixi/utils/-/utils-7.2.4.tgz#9f74e859481e3efbb6e54e524427b39a6d99829c" + resolved "https://registry.npmmirror.com/@pixi/utils/-/utils-7.2.4.tgz" integrity sha512-VUGQHBOINIS4ePzoqafwxaGPVRTa3oM/mEutIIHbNGI3b+QvSO+1Dnk40M0zcH6Bo+MxQZbOZK5X/wO9oU5+LQ== dependencies: "@pixi/color" "7.2.4" @@ -316,7 +316,7 @@ "@quasar/app-vite@^1.0.0": version "1.4.3" - resolved "https://registry.npmmirror.com/@quasar/app-vite/-/app-vite-1.4.3.tgz#442944cace5008c473411212b04af3a46090ae0a" + resolved "https://registry.npmmirror.com/@quasar/app-vite/-/app-vite-1.4.3.tgz" integrity sha512-5iMs1sk6fyYTFoRVySwFXWL/PS23UEsdk+YSFejhXnSs5fVDmb2GQMguCHwDl3jPIHjZ7A+XKkb2iWx9pjiPXw== dependencies: "@quasar/render-ssr-error" "^1.0.1" @@ -356,24 +356,24 @@ "@quasar/extras@^1.0.0": version "1.16.4" - resolved "https://registry.npmmirror.com/@quasar/extras/-/extras-1.16.4.tgz#34fc2517fffecb5c27e4cea1b69b62aaf890ff73" + resolved "https://registry.npmmirror.com/@quasar/extras/-/extras-1.16.4.tgz" integrity sha512-q2kPTNHI5aprgE2yQfRIf6aud+qSXH3YTNmhcfRp/rENh7kRjoM+b5BBPxgHlO1si1ARddbmr+Fxu/L05hfXnQ== "@quasar/render-ssr-error@^1.0.1": version "1.0.1" - resolved "https://registry.npmmirror.com/@quasar/render-ssr-error/-/render-ssr-error-1.0.1.tgz#5400b51c1bc55f4ee7bfb62ecb6f7c7d0f88ce7f" + resolved "https://registry.npmmirror.com/@quasar/render-ssr-error/-/render-ssr-error-1.0.1.tgz" integrity sha512-4Shxl079hew/yZnIsDtWpRD8enOmqMjMu/s2bkGN0QBvlsRkpWv9pwOz5geJXZxBa17q1S4txvByBxkhPfhWaQ== dependencies: stack-trace "^1.0.0-pre2" "@quasar/vite-plugin@^1.3.3": version "1.3.3" - resolved "https://registry.npmmirror.com/@quasar/vite-plugin/-/vite-plugin-1.3.3.tgz#63cd2c3cbcf95dff1dc807a80bce7cf44ea91d58" + resolved "https://registry.npmmirror.com/@quasar/vite-plugin/-/vite-plugin-1.3.3.tgz" integrity sha512-HSX/Vgec5/Y8fiJRfpf1MR7+um+rdpbilktBGQkYOKw4A9d0smGq4jtSS/K4O2GTXRYqDmZ/5sgCeBcmhB3OCw== "@rollup/pluginutils@^4.1.2": version "4.2.1" - resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" + resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz" integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== dependencies: estree-walker "^2.0.1" @@ -381,12 +381,12 @@ "@stomp/stompjs@^7.0.0": version "7.0.0" - resolved "https://registry.npmmirror.com/@stomp/stompjs/-/stompjs-7.0.0.tgz#46b5c454a9dc8262e0b20f3b3dbacaa113993077" + resolved "https://registry.npmmirror.com/@stomp/stompjs/-/stompjs-7.0.0.tgz" integrity sha512-fGdq4wPDnSV/KyOsjq4P+zLc8MFWC3lMmP5FBgLWKPJTYcuCbAIrnRGjB7q2jHZdYCOD5vxLuFoKIYLy5/u8Pw== "@types/body-parser@*": version "1.19.2" - resolved "https://registry.npmmirror.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" + resolved "https://registry.npmmirror.com/@types/body-parser/-/body-parser-1.19.2.tgz" integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== dependencies: "@types/connect" "*" @@ -394,7 +394,7 @@ "@types/chrome@^0.0.208": version "0.0.208" - resolved "https://registry.npmmirror.com/@types/chrome/-/chrome-0.0.208.tgz#c52992e46723c783d3fd84a8b90dd8b3e87af67f" + resolved "https://registry.npmmirror.com/@types/chrome/-/chrome-0.0.208.tgz" integrity sha512-VDU/JnXkF5qaI7WBz14Azpa2VseZTgML0ia/g/B1sr9OfdOnHiH/zZ7P7qCDqxSlkqJh76/bPc8jLFcx8rHJmw== dependencies: "@types/filesystem" "*" @@ -402,36 +402,36 @@ "@types/compression@^1.7.2": version "1.7.2" - resolved "https://registry.npmmirror.com/@types/compression/-/compression-1.7.2.tgz#7cc1cdb01b4730eea284615a68fc70a2cdfd5e71" + resolved "https://registry.npmmirror.com/@types/compression/-/compression-1.7.2.tgz" integrity sha512-lwEL4M/uAGWngWFLSG87ZDr2kLrbuR8p7X+QZB1OQlT+qkHsCPDVFnHPyXf4Vyl4yDDorNY+mAhosxkCvppatg== dependencies: "@types/express" "*" "@types/connect@*": version "3.4.35" - resolved "https://registry.npmmirror.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + resolved "https://registry.npmmirror.com/@types/connect/-/connect-3.4.35.tgz" integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== dependencies: "@types/node" "*" "@types/cordova@0.0.34": version "0.0.34" - resolved "https://registry.npmmirror.com/@types/cordova/-/cordova-0.0.34.tgz#ea7addf74ecec3d7629827a0c39e2c9addc73d04" + resolved "https://registry.npmmirror.com/@types/cordova/-/cordova-0.0.34.tgz" integrity sha512-rkiiTuf/z2wTd4RxFOb+clE7PF4AEJU0hsczbUdkHHBtkUmpWQpEddynNfJYKYtZFJKbq4F+brfekt1kx85IZA== "@types/css-font-loading-module@^0.0.7": version "0.0.7" - resolved "https://registry.npmmirror.com/@types/css-font-loading-module/-/css-font-loading-module-0.0.7.tgz#2f98ede46acc0975de85c0b7b0ebe06041d24601" + resolved "https://registry.npmmirror.com/@types/css-font-loading-module/-/css-font-loading-module-0.0.7.tgz" integrity sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q== "@types/earcut@^2.1.0": version "2.1.1" - resolved "https://registry.npmmirror.com/@types/earcut/-/earcut-2.1.1.tgz#573a0af609f17005c751f6f4ffec49cfe358ea51" + resolved "https://registry.npmmirror.com/@types/earcut/-/earcut-2.1.1.tgz" integrity sha512-w8oigUCDjElRHRRrMvn/spybSMyX8MTkKA5Dv+tS1IE/TgmNZPqUYtvYBXGY8cieSE66gm+szeK+bnbxC2xHTQ== "@types/express-serve-static-core@^4.17.33": version "4.17.35" - resolved "https://registry.npmmirror.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz#c95dd4424f0d32e525d23812aa8ab8e4d3906c4f" + resolved "https://registry.npmmirror.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz" integrity sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg== dependencies: "@types/node" "*" @@ -441,7 +441,7 @@ "@types/express@*", "@types/express@^4.17.13": version "4.17.17" - resolved "https://registry.npmmirror.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4" + resolved "https://registry.npmmirror.com/@types/express/-/express-4.17.17.tgz" integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q== dependencies: "@types/body-parser" "*" @@ -451,74 +451,74 @@ "@types/filesystem@*": version "0.0.32" - resolved "https://registry.npmmirror.com/@types/filesystem/-/filesystem-0.0.32.tgz#307df7cc084a2293c3c1a31151b178063e0a8edf" + resolved "https://registry.npmmirror.com/@types/filesystem/-/filesystem-0.0.32.tgz" integrity sha512-Yuf4jR5YYMR2DVgwuCiP11s0xuVRyPKmz8vo6HBY3CGdeMj8af93CFZX+T82+VD1+UqHOxTq31lO7MI7lepBtQ== dependencies: "@types/filewriter" "*" "@types/filewriter@*": version "0.0.29" - resolved "https://registry.npmmirror.com/@types/filewriter/-/filewriter-0.0.29.tgz#a48795ecadf957f6c0d10e0c34af86c098fa5bee" + resolved "https://registry.npmmirror.com/@types/filewriter/-/filewriter-0.0.29.tgz" integrity sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ== "@types/google-protobuf@^3.15.6": version "3.15.6" - resolved "https://registry.npmmirror.com/@types/google-protobuf/-/google-protobuf-3.15.6.tgz#674a69493ef2c849b95eafe69167ea59079eb504" + resolved "https://registry.npmmirror.com/@types/google-protobuf/-/google-protobuf-3.15.6.tgz" integrity sha512-pYVNNJ+winC4aek+lZp93sIKxnXt5qMkuKmaqS3WGuTq0Bw1ZDYNBgzG5kkdtwcv+GmYJGo3yEg6z2cKKAiEdw== "@types/har-format@*": version "1.2.10" - resolved "https://registry.npmmirror.com/@types/har-format/-/har-format-1.2.10.tgz#7b4e1e0ada4d17684ac3b05d601a4871cfab11fc" + resolved "https://registry.npmmirror.com/@types/har-format/-/har-format-1.2.10.tgz" integrity sha512-o0J30wqycjF5miWDKYKKzzOU1ZTLuA42HZ4HE7/zqTOc/jTLdQ5NhYWvsRQo45Nfi1KHoRdNhteSI4BAxTF1Pg== "@types/json-schema@^7.0.9": version "7.0.12" - resolved "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + resolved "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz" integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== "@types/mime@*": version "3.0.1" - resolved "https://registry.npmmirror.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" + resolved "https://registry.npmmirror.com/@types/mime/-/mime-3.0.1.tgz" integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== "@types/mime@^1": version "1.3.2" - resolved "https://registry.npmmirror.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" + resolved "https://registry.npmmirror.com/@types/mime/-/mime-1.3.2.tgz" integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== "@types/node@*": version "20.2.5" - resolved "https://registry.npmmirror.com/@types/node/-/node-20.2.5.tgz#26d295f3570323b2837d322180dfbf1ba156fefb" + resolved "https://registry.npmmirror.com/@types/node/-/node-20.2.5.tgz" integrity sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ== "@types/node@^12.20.21": version "12.20.55" - resolved "https://registry.npmmirror.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + resolved "https://registry.npmmirror.com/@types/node/-/node-12.20.55.tgz" integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== "@types/offscreencanvas@^2019.6.4": version "2019.7.0" - resolved "https://registry.npmmirror.com/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz#e4a932069db47bb3eabeb0b305502d01586fa90d" + resolved "https://registry.npmmirror.com/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz" integrity sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg== "@types/qs@*": version "6.9.7" - resolved "https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + resolved "https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz" integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== "@types/range-parser@*": version "1.2.4" - resolved "https://registry.npmmirror.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" + resolved "https://registry.npmmirror.com/@types/range-parser/-/range-parser-1.2.4.tgz" integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== "@types/semver@^7.3.12": version "7.5.0" - resolved "https://registry.npmmirror.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" + resolved "https://registry.npmmirror.com/@types/semver/-/semver-7.5.0.tgz" integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== "@types/send@*": version "0.17.1" - resolved "https://registry.npmmirror.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301" + resolved "https://registry.npmmirror.com/@types/send/-/send-0.17.1.tgz" integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q== dependencies: "@types/mime" "^1" @@ -526,7 +526,7 @@ "@types/serve-static@*": version "1.15.1" - resolved "https://registry.npmmirror.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d" + resolved "https://registry.npmmirror.com/@types/serve-static/-/serve-static-1.15.1.tgz" integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ== dependencies: "@types/mime" "*" @@ -534,7 +534,7 @@ "@typescript-eslint/eslint-plugin@^5.10.0": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.8.tgz#1e7a3e5318ece22251dfbc5c9c6feeb4793cc509" + resolved "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.8.tgz" integrity sha512-JDMOmhXteJ4WVKOiHXGCoB96ADWg9q7efPWHRViT/f09bA8XOMLAVHHju3l0MkZnG1izaWXYmgvQcUjTRcpShQ== dependencies: "@eslint-community/regexpp" "^4.4.0" @@ -550,7 +550,7 @@ "@typescript-eslint/parser@^5.10.0": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.59.8.tgz#60cbb00671d86cf746044ab797900b1448188567" + resolved "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.59.8.tgz" integrity sha512-AnR19RjJcpjoeGojmwZtCwBX/RidqDZtzcbG3xHrmz0aHHoOcbWnpDllenRDmDvsV0RQ6+tbb09/kyc+UT9Orw== dependencies: "@typescript-eslint/scope-manager" "5.59.8" @@ -560,7 +560,7 @@ "@typescript-eslint/scope-manager@5.59.8": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.8.tgz#ff4ad4fec6433647b817c4a7d4b4165d18ea2fa8" + resolved "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.8.tgz" integrity sha512-/w08ndCYI8gxGf+9zKf1vtx/16y8MHrZs5/tnjHhMLNSixuNcJavSX4wAiPf4aS5x41Es9YPCn44MIe4cxIlig== dependencies: "@typescript-eslint/types" "5.59.8" @@ -568,7 +568,7 @@ "@typescript-eslint/type-utils@5.59.8": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.59.8.tgz#aa6c029a9d7706d26bbd25eb4666398781df6ea2" + resolved "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.59.8.tgz" integrity sha512-+5M518uEIHFBy3FnyqZUF3BMP+AXnYn4oyH8RF012+e7/msMY98FhGL5SrN29NQ9xDgvqCgYnsOiKp1VjZ/fpA== dependencies: "@typescript-eslint/typescript-estree" "5.59.8" @@ -578,12 +578,12 @@ "@typescript-eslint/types@5.59.8": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.59.8.tgz#212e54414733618f5d0fd50b2da2717f630aebf8" + resolved "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.59.8.tgz" integrity sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w== "@typescript-eslint/typescript-estree@5.59.8": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.8.tgz#801a7b1766481629481b3b0878148bd7a1f345d7" + resolved "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.8.tgz" integrity sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg== dependencies: "@typescript-eslint/types" "5.59.8" @@ -596,7 +596,7 @@ "@typescript-eslint/utils@5.59.8": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.59.8.tgz#34d129f35a2134c67fdaf024941e8f96050dca2b" + resolved "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.59.8.tgz" integrity sha512-Tr65630KysnNn9f9G7ROF3w1b5/7f6QVCJ+WK9nhIocWmx9F+TmCAcglF26Vm7z8KCTwoKcNEBZrhlklla3CKg== dependencies: "@eslint-community/eslint-utils" "^4.2.0" @@ -610,7 +610,7 @@ "@typescript-eslint/visitor-keys@5.59.8": version "5.59.8" - resolved "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.8.tgz#aa6a7ef862add919401470c09e1609392ef3cc40" + resolved "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.8.tgz" integrity sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ== dependencies: "@typescript-eslint/types" "5.59.8" @@ -618,12 +618,12 @@ "@vitejs/plugin-vue@^2.2.0": version "2.3.4" - resolved "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-2.3.4.tgz#966a6279060eb2d9d1a02ea1a331af071afdcf9e" + resolved "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-2.3.4.tgz" integrity sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg== "@vue/compiler-core@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz#7fbf591c1c19e1acd28ffd284526e98b4f581128" + resolved "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz" integrity sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g== dependencies: "@babel/parser" "^7.21.3" @@ -633,7 +633,7 @@ "@vue/compiler-dom@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz#f56e09b5f4d7dc350f981784de9713d823341151" + resolved "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz" integrity sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w== dependencies: "@vue/compiler-core" "3.3.4" @@ -641,7 +641,7 @@ "@vue/compiler-sfc@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz#b19d942c71938893535b46226d602720593001df" + resolved "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz" integrity sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ== dependencies: "@babel/parser" "^7.20.15" @@ -657,7 +657,7 @@ "@vue/compiler-ssr@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz#9d1379abffa4f2b0cd844174ceec4a9721138777" + resolved "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz" integrity sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ== dependencies: "@vue/compiler-dom" "3.3.4" @@ -665,12 +665,12 @@ "@vue/devtools-api@^6.5.0": version "6.5.0" - resolved "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" + resolved "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz" integrity sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== "@vue/reactivity-transform@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz#52908476e34d6a65c6c21cd2722d41ed8ae51929" + resolved "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz" integrity sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw== dependencies: "@babel/parser" "^7.20.15" @@ -681,14 +681,14 @@ "@vue/reactivity@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz#a27a29c6cd17faba5a0e99fbb86ee951653e2253" + resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz" integrity sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ== dependencies: "@vue/shared" "3.3.4" "@vue/runtime-core@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz#4bb33872bbb583721b340f3088888394195967d1" + resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz" integrity sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA== dependencies: "@vue/reactivity" "3.3.4" @@ -696,7 +696,7 @@ "@vue/runtime-dom@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz#992f2579d0ed6ce961f47bbe9bfe4b6791251566" + resolved "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz" integrity sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ== dependencies: "@vue/runtime-core" "3.3.4" @@ -705,7 +705,7 @@ "@vue/server-renderer@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz#ea46594b795d1536f29bc592dd0f6655f7ea4c4c" + resolved "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz" integrity sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ== dependencies: "@vue/compiler-ssr" "3.3.4" @@ -713,12 +713,12 @@ "@vue/shared@3.3.4": version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780" + resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz" integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ== accepts@~1.3.5, accepts@~1.3.8: version "1.3.8" - resolved "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + resolved "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" @@ -726,17 +726,17 @@ accepts@~1.3.5, accepts@~1.3.8: acorn-jsx@^5.3.2: version "5.3.2" - resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn@^8.8.0: version "8.8.2" - resolved "https://registry.npmmirror.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" + resolved "https://registry.npmmirror.com/acorn/-/acorn-8.8.2.tgz" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== ajv@^6.10.0, ajv@^6.12.4: version "6.12.6" - resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" @@ -746,7 +746,7 @@ ajv@^6.10.0, ajv@^6.12.4: ajv@^8.0.1: version "8.12.0" - resolved "https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" + resolved "https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz" integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== dependencies: fast-deep-equal "^3.1.1" @@ -756,26 +756,26 @@ ajv@^8.0.1: ansi-escapes@^4.2.1: version "4.3.2" - resolved "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + resolved "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" anymatch@~3.1.2: version "3.1.3" - resolved "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + resolved "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" @@ -783,7 +783,7 @@ anymatch@~3.1.2: archiver-utils@^2.1.0: version "2.1.0" - resolved "https://registry.npmmirror.com/archiver-utils/-/archiver-utils-2.1.0.tgz#e8a460e94b693c3e3da182a098ca6285ba9249e2" + resolved "https://registry.npmmirror.com/archiver-utils/-/archiver-utils-2.1.0.tgz" integrity sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw== dependencies: glob "^7.1.4" @@ -799,7 +799,7 @@ archiver-utils@^2.1.0: archiver@^5.3.0: version "5.3.1" - resolved "https://registry.npmmirror.com/archiver/-/archiver-5.3.1.tgz#21e92811d6f09ecfce649fbefefe8c79e57cbbb6" + resolved "https://registry.npmmirror.com/archiver/-/archiver-5.3.1.tgz" integrity sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w== dependencies: archiver-utils "^2.1.0" @@ -812,37 +812,37 @@ archiver@^5.3.0: argparse@^2.0.1: version "2.0.1" - resolved "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + resolved "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== array-union@^2.1.0: version "2.1.0" - resolved "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + resolved "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== astral-regex@^2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + resolved "https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz" integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== async@^3.2.3: version "3.2.4" - resolved "https://registry.npmmirror.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + resolved "https://registry.npmmirror.com/async/-/async-3.2.4.tgz" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== autoprefixer@^10.4.2: version "10.4.14" - resolved "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" + resolved "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.14.tgz" integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== dependencies: browserslist "^4.21.5" @@ -854,7 +854,7 @@ autoprefixer@^10.4.2: axios@^1.2.1: version "1.4.0" - resolved "https://registry.npmmirror.com/axios/-/axios-1.4.0.tgz#38a7bf1224cd308de271146038b551d725f0be1f" + resolved "https://registry.npmmirror.com/axios/-/axios-1.4.0.tgz" integrity sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA== dependencies: follow-redirects "^1.15.0" @@ -863,22 +863,22 @@ axios@^1.2.1: balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base64-js@^1.3.1: version "1.5.1" - resolved "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + resolved "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== binary-extensions@^2.0.0: version "2.2.0" - resolved "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + resolved "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bl@^4.0.3, bl@^4.1.0: version "4.1.0" - resolved "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + resolved "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz" integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== dependencies: buffer "^5.5.0" @@ -887,7 +887,7 @@ bl@^4.0.3, bl@^4.1.0: body-parser@1.20.1: version "1.20.1" - resolved "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + resolved "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.1.tgz" integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== dependencies: bytes "3.1.2" @@ -905,12 +905,12 @@ body-parser@1.20.1: boolbase@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + resolved "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -918,21 +918,21 @@ brace-expansion@^1.1.7: brace-expansion@^2.0.1: version "2.0.1" - resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz" integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== dependencies: balanced-match "^1.0.0" braces@^3.0.2, braces@~3.0.2: version "3.0.2" - resolved "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + resolved "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" browserslist@^4.21.5: version "4.21.7" - resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.21.7.tgz#e2b420947e5fb0a58e8f4668ae6e23488127e551" + resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.21.7.tgz" integrity sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA== dependencies: caniuse-lite "^1.0.30001489" @@ -942,12 +942,12 @@ browserslist@^4.21.5: buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: version "0.2.13" - resolved "https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + resolved "https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== buffer@^5.5.0: version "5.7.1" - resolved "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + resolved "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== dependencies: base64-js "^1.3.1" @@ -955,17 +955,17 @@ buffer@^5.5.0: bytes@3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + resolved "https://registry.npmmirror.com/bytes/-/bytes-3.0.0.tgz" integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== bytes@3.1.2: version "3.1.2" - resolved "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + resolved "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== call-bind@^1.0.0: version "1.0.2" - resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" @@ -973,12 +973,12 @@ call-bind@^1.0.0: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camel-case@^3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" + resolved "https://registry.npmmirror.com/camel-case/-/camel-case-3.0.0.tgz" integrity sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w== dependencies: no-case "^2.2.0" @@ -986,12 +986,12 @@ camel-case@^3.0.0: caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001489: version "1.0.30001489" - resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001489.tgz#ca82ee2d4e4dbf2bd2589c9360d3fcc2c7ba3bd8" + resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001489.tgz" integrity sha512-x1mgZEXK8jHIfAxm+xgdpHpk50IN3z3q3zP261/WS+uvePxW8izXuCu6AHz0lkuYTlATDehiZ/tNyYBdSQsOUQ== chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: version "4.1.2" - resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -999,12 +999,12 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: chardet@^0.7.0: version "0.7.0" - resolved "https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + resolved "https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== "chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3: version "3.5.3" - resolved "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + resolved "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== dependencies: anymatch "~3.1.2" @@ -1019,36 +1019,36 @@ chardet@^0.7.0: ci-info@^3.7.1: version "3.8.0" - resolved "https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" + resolved "https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== clean-css@^4.2.1: version "4.2.4" - resolved "https://registry.npmmirror.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178" + resolved "https://registry.npmmirror.com/clean-css/-/clean-css-4.2.4.tgz" integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== dependencies: source-map "~0.6.0" cli-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + resolved "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz" integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== dependencies: restore-cursor "^3.1.0" cli-spinners@^2.5.0: version "2.9.0" - resolved "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" + resolved "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz" integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== cli-width@^3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + resolved "https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz" integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== cliui@^8.0.1: version "8.0.1" - resolved "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + resolved "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz" integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== dependencies: string-width "^4.2.0" @@ -1057,7 +1057,7 @@ cliui@^8.0.1: clone-deep@^4.0.1: version "4.0.1" - resolved "https://registry.npmmirror.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + resolved "https://registry.npmmirror.com/clone-deep/-/clone-deep-4.0.1.tgz" integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== dependencies: is-plain-object "^2.0.4" @@ -1066,41 +1066,41 @@ clone-deep@^4.0.1: clone@^1.0.2: version "1.0.4" - resolved "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + resolved "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz" integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + resolved "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@~1.1.4: version "1.1.4" - resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== colord@^2.9.3: version "2.9.3" - resolved "https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + resolved "https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + resolved "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" commander@^2.19.0: version "2.20.3" - resolved "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + resolved "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== compress-commons@^4.1.0: version "4.1.1" - resolved "https://registry.npmmirror.com/compress-commons/-/compress-commons-4.1.1.tgz#df2a09a7ed17447642bad10a85cc9a19e5c42a7d" + resolved "https://registry.npmmirror.com/compress-commons/-/compress-commons-4.1.1.tgz" integrity sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ== dependencies: buffer-crc32 "^0.2.13" @@ -1110,14 +1110,14 @@ compress-commons@^4.1.0: compressible@~2.0.16: version "2.0.18" - resolved "https://registry.npmmirror.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + resolved "https://registry.npmmirror.com/compressible/-/compressible-2.0.18.tgz" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== dependencies: mime-db ">= 1.43.0 < 2" compression@^1.7.4: version "1.7.4" - resolved "https://registry.npmmirror.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + resolved "https://registry.npmmirror.com/compression/-/compression-1.7.4.tgz" integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== dependencies: accepts "~1.3.5" @@ -1130,44 +1130,44 @@ compression@^1.7.4: concat-map@0.0.1: version "0.0.1" - resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== content-disposition@0.5.4: version "0.5.4" - resolved "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + resolved "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz" integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== dependencies: safe-buffer "5.2.1" content-type@~1.0.4: version "1.0.5" - resolved "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + resolved "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== cookie@0.5.0: version "0.5.0" - resolved "https://registry.npmmirror.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + resolved "https://registry.npmmirror.com/cookie/-/cookie-0.5.0.tgz" integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + resolved "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== crc-32@^1.2.0: version "1.2.2" - resolved "https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz#3cad35a934b8bf71f25ca524b6da51fb7eace2ff" + resolved "https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz" integrity sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== crc32-stream@^4.0.2: version "4.0.2" - resolved "https://registry.npmmirror.com/crc32-stream/-/crc32-stream-4.0.2.tgz#c922ad22b38395abe9d3870f02fa8134ed709007" + resolved "https://registry.npmmirror.com/crc32-stream/-/crc32-stream-4.0.2.tgz" integrity sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w== dependencies: crc-32 "^1.2.0" @@ -1175,7 +1175,7 @@ crc32-stream@^4.0.2: cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" - resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" @@ -1184,116 +1184,116 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3: cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + resolved "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== csstype@^3.1.1: version "3.1.2" - resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== debug@2.6.9: version "2.6.9" - resolved "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: version "4.3.4" - resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" deep-is@^0.1.3: version "0.1.4" - resolved "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + resolved "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== defaults@^1.0.3: version "1.0.4" - resolved "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + resolved "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz" integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== dependencies: clone "^1.0.2" define-lazy-prop@^2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + resolved "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== depd@2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + resolved "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== destroy@1.2.0: version "1.2.0" - resolved "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + resolved "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + resolved "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" doctrine@^3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + resolved "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz" integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" dot-prop@6.0.1: version "6.0.1" - resolved "https://registry.npmmirror.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" + resolved "https://registry.npmmirror.com/dot-prop/-/dot-prop-6.0.1.tgz" integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== dependencies: is-obj "^2.0.0" earcut@^2.2.4: version "2.2.4" - resolved "https://registry.npmmirror.com/earcut/-/earcut-2.2.4.tgz#6d02fd4d68160c114825d06890a92ecaae60343a" + resolved "https://registry.npmmirror.com/earcut/-/earcut-2.2.4.tgz" integrity sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ== ee-first@1.1.1: version "1.1.1" - resolved "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== electron-to-chromium@^1.4.411: version "1.4.413" - resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.413.tgz#0067c3122946ae234cbefb9401ecefde851cdcf2" + resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.413.tgz" integrity sha512-Gd+/OAhRca06dkVxIQo/W7dr6Nmk9cx6lQdZ19GvFp51k5B/lUAokm6SJfNkdV8kFLsC3Z4sLTyEHWCnB1Efbw== elementtree@0.1.7: version "0.1.7" - resolved "https://registry.npmmirror.com/elementtree/-/elementtree-0.1.7.tgz#9ac91be6e52fb6e6244c4e54a4ac3ed8ae8e29c0" + resolved "https://registry.npmmirror.com/elementtree/-/elementtree-0.1.7.tgz" integrity sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg== dependencies: sax "1.1.4" emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== encodeurl@~1.0.2: version "1.0.2" - resolved "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== end-of-stream@^1.4.1: version "1.4.4" - resolved "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + resolved "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" @@ -1370,12 +1370,12 @@ esbuild-linux-32@0.14.54: esbuild-linux-64@0.14.51: version "0.14.51" - resolved "https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.51.tgz#5d92b67f674e02ae0b4a9de9a757ba482115c4ae" + resolved "https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.51.tgz" integrity sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA== esbuild-linux-64@0.14.54: version "0.14.54" - resolved "https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz#de5fdba1c95666cf72369f52b40b03be71226652" + resolved "https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz" integrity sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg== esbuild-linux-arm64@0.14.51: @@ -1500,7 +1500,7 @@ esbuild-windows-arm64@0.14.54: esbuild@0.14.51: version "0.14.51" - resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.14.51.tgz#1c8ecbc8db3710da03776211dc3ee3448f7aa51e" + resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.14.51.tgz" integrity sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw== optionalDependencies: esbuild-android-64 "0.14.51" @@ -1526,7 +1526,7 @@ esbuild@0.14.51: esbuild@^0.14.27: version "0.14.54" - resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz#8b44dcf2b0f1a66fc22459943dccf477535e9aa2" + resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz" integrity sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA== optionalDependencies: "@esbuild/linux-loong64" "0.14.54" @@ -1553,32 +1553,32 @@ esbuild@^0.14.27: escalade@^3.1.1: version "3.1.1" - resolved "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + resolved "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== eslint-config-prettier@^8.1.0: version "8.8.0" - resolved "https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348" + resolved "https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz" integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA== eslint-plugin-vue@^9.0.0: version "9.14.1" - resolved "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.14.1.tgz#3b0c9857642dac547c7564031cfb09d283eafdd4" + resolved "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.14.1.tgz" integrity sha512-LQazDB1qkNEKejLe/b5a9VfEbtbczcOaui5lQ4Qw0tbRBbQYREyxxOV5BQgNDTqGPs9pxqiEpbMi9ywuIaF7vw== dependencies: "@eslint-community/eslint-utils" "^4.3.0" @@ -1591,7 +1591,7 @@ eslint-plugin-vue@^9.0.0: eslint-scope@^5.1.1: version "5.1.1" - resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== dependencies: esrecurse "^4.3.0" @@ -1599,7 +1599,7 @@ eslint-scope@^5.1.1: eslint-scope@^7.1.1, eslint-scope@^7.2.0: version "7.2.0" - resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" + resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.0.tgz" integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== dependencies: esrecurse "^4.3.0" @@ -1607,12 +1607,12 @@ eslint-scope@^7.1.1, eslint-scope@^7.2.0: eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: version "3.4.1" - resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" + resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz" integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== eslint@^8.10.0: version "8.41.0" - resolved "https://registry.npmmirror.com/eslint/-/eslint-8.41.0.tgz#3062ca73363b4714b16dbc1e60f035e6134b6f1c" + resolved "https://registry.npmmirror.com/eslint/-/eslint-8.41.0.tgz" integrity sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q== dependencies: "@eslint-community/eslint-utils" "^4.2.0" @@ -1657,7 +1657,7 @@ eslint@^8.10.0: espree@^9.3.1, espree@^9.5.2: version "9.5.2" - resolved "https://registry.npmmirror.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" + resolved "https://registry.npmmirror.com/espree/-/espree-9.5.2.tgz" integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== dependencies: acorn "^8.8.0" @@ -1666,51 +1666,51 @@ espree@^9.3.1, espree@^9.5.2: esquery@^1.4.0, esquery@^1.4.2: version "1.5.0" - resolved "https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + resolved "https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz" integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" esrecurse@^4.3.0: version "4.3.0" - resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" estraverse@^4.1.1: version "4.3.0" - resolved "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== estraverse@^5.1.0, estraverse@^5.2.0: version "5.3.0" - resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== estree-walker@^2.0.1, estree-walker@^2.0.2: version "2.0.2" - resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== etag@~1.8.1: version "1.8.1" - resolved "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== eventemitter3@^4.0.0: version "4.0.7" - resolved "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + resolved "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== express@^4.17.3: version "4.18.2" - resolved "https://registry.npmmirror.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + resolved "https://registry.npmmirror.com/express/-/express-4.18.2.tgz" integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== dependencies: accepts "~1.3.8" @@ -1747,7 +1747,7 @@ express@^4.17.3: external-editor@^3.0.3: version "3.1.0" - resolved "https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + resolved "https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz" integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== dependencies: chardet "^0.7.0" @@ -1756,12 +1756,12 @@ external-editor@^3.0.3: fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + resolved "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@3.2.12, fast-glob@^3.2.9: version "3.2.12" - resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.12.tgz" integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -1772,45 +1772,45 @@ fast-glob@3.2.12, fast-glob@^3.2.9: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + resolved "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-levenshtein@^2.0.6: version "2.0.6" - resolved "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fastq@^1.6.0: version "1.15.0" - resolved "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + resolved "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz" integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== dependencies: reusify "^1.0.4" figures@^3.0.0: version "3.2.0" - resolved "https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + resolved "https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz" integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== dependencies: escape-string-regexp "^1.0.5" file-entry-cache@^6.0.1: version "6.0.1" - resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: flat-cache "^3.0.4" fill-range@^7.0.1: version "7.0.1" - resolved "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + resolved "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz" integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== dependencies: to-regex-range "^5.0.1" finalhandler@1.2.0: version "1.2.0" - resolved "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + resolved "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.2.0.tgz" integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== dependencies: debug "2.6.9" @@ -1823,7 +1823,7 @@ finalhandler@1.2.0: find-up@^5.0.0: version "5.0.0" - resolved "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + resolved "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== dependencies: locate-path "^6.0.0" @@ -1831,7 +1831,7 @@ find-up@^5.0.0: flat-cache@^3.0.4: version "3.0.4" - resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz" integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== dependencies: flatted "^3.1.0" @@ -1839,17 +1839,17 @@ flat-cache@^3.0.4: flatted@^3.1.0: version "3.2.7" - resolved "https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + resolved "https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== follow-redirects@^1.15.0: version "1.15.2" - resolved "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + resolved "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz" integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== form-data@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + resolved "https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz" integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== dependencies: asynckit "^0.4.0" @@ -1858,27 +1858,27 @@ form-data@^4.0.0: forwarded@0.2.0: version "0.2.0" - resolved "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + resolved "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== fraction.js@^4.2.0: version "4.2.0" - resolved "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + resolved "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz" integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== fresh@0.5.2: version "0.5.2" - resolved "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== fs-constants@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + resolved "https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-extra@^11.1.0: version "11.1.1" - resolved "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" + resolved "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.1.1.tgz" integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== dependencies: graceful-fs "^4.2.0" @@ -1887,7 +1887,7 @@ fs-extra@^11.1.0: fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@~2.3.2: @@ -1897,17 +1897,17 @@ fsevents@~2.3.2: function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== get-caller-file@^2.0.5: version "2.0.5" - resolved "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + resolved "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-intrinsic@^1.0.2: version "1.2.1" - resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz" integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" @@ -1917,21 +1917,21 @@ get-intrinsic@^1.0.2: glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" - resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" glob@^7.1.3, glob@^7.1.4: version "7.2.3" - resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -1943,14 +1943,14 @@ glob@^7.1.3, glob@^7.1.4: globals@^13.19.0: version "13.20.0" - resolved "https://registry.npmmirror.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" + resolved "https://registry.npmmirror.com/globals/-/globals-13.20.0.tgz" integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== dependencies: type-fest "^0.20.2" globby@^11.1.0: version "11.1.0" - resolved "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + resolved "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -1962,54 +1962,54 @@ globby@^11.1.0: google-protobuf@^3.21.2: version "3.21.2" - resolved "https://registry.npmmirror.com/google-protobuf/-/google-protobuf-3.21.2.tgz#4580a2bea8bbb291ee579d1fefb14d6fa3070ea4" + resolved "https://registry.npmmirror.com/google-protobuf/-/google-protobuf-3.21.2.tgz" integrity sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA== graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.11" - resolved "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + resolved "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== grapheme-splitter@^1.0.4: version "1.0.4" - resolved "https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + resolved "https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz" integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== graphemer@^1.4.0: version "1.4.0" - resolved "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + resolved "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-proto@^1.0.1: version "1.0.1" - resolved "https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + resolved "https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== has-symbols@^1.0.3: version "1.0.3" - resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== has@^1.0.3: version "1.0.3" - resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" he@^1.2.0: version "1.2.0" - resolved "https://registry.npmmirror.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + resolved "https://registry.npmmirror.com/he/-/he-1.2.0.tgz" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== html-minifier@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/html-minifier/-/html-minifier-4.0.0.tgz#cca9aad8bce1175e02e17a8c33e46d8988889f56" + resolved "https://registry.npmmirror.com/html-minifier/-/html-minifier-4.0.0.tgz" integrity sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig== dependencies: camel-case "^3.0.0" @@ -2022,7 +2022,7 @@ html-minifier@^4.0.0: http-errors@2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + resolved "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz" integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== dependencies: depd "2.0.0" @@ -2033,24 +2033,24 @@ http-errors@2.0.0: iconv-lite@0.4.24, iconv-lite@^0.4.24: version "0.4.24" - resolved "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" ieee754@^1.1.13: version "1.2.1" - resolved "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + resolved "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^5.2.0: version "5.2.4" - resolved "https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + resolved "https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz" integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== import-fresh@^3.0.0, import-fresh@^3.2.1: version "3.3.0" - resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" @@ -2058,12 +2058,12 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" @@ -2071,12 +2071,12 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inquirer@^8.2.1: version "8.2.5" - resolved "https://registry.npmmirror.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" + resolved "https://registry.npmmirror.com/inquirer/-/inquirer-8.2.5.tgz" integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== dependencies: ansi-escapes "^4.2.1" @@ -2097,139 +2097,139 @@ inquirer@^8.2.1: ipaddr.js@1.9.1: version "1.9.1" - resolved "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + resolved "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== is-binary-path@~2.1.0: version "2.1.0" - resolved "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + resolved "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" is-core-module@^2.11.0: version "2.12.1" - resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.12.1.tgz" integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== dependencies: has "^1.0.3" is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" - resolved "https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + resolved "https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" - resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-interactive@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + resolved "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== is-number@^7.0.0: version "7.0.0" - resolved "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-obj@^2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + resolved "https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz" integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== is-path-inside@^3.0.3: version "3.0.3" - resolved "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + resolved "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + resolved "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-unicode-supported@^0.1.0: version "0.1.0" - resolved "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + resolved "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== is-wsl@^2.2.0: version "2.2.0" - resolved "https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + resolved "https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== dependencies: is-docker "^2.0.0" isarray@~1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + resolved "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isbinaryfile@^5.0.0: version "5.0.0" - resolved "https://registry.npmmirror.com/isbinaryfile/-/isbinaryfile-5.0.0.tgz#034b7e54989dab8986598cbcea41f66663c65234" + resolved "https://registry.npmmirror.com/isbinaryfile/-/isbinaryfile-5.0.0.tgz" integrity sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg== isexe@^2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== ismobilejs@^1.1.0: version "1.1.1" - resolved "https://registry.npmmirror.com/ismobilejs/-/ismobilejs-1.1.1.tgz#c56ca0ae8e52b24ca0f22ba5ef3215a2ddbbaa0e" + resolved "https://registry.npmmirror.com/ismobilejs/-/ismobilejs-1.1.1.tgz" integrity sha512-VaFW53yt8QO61k2WJui0dHf4SlL8lxBofUuUmwBo0ljPk0Drz2TiuDW4jo3wDcv41qy/SxrJ+VAzJ/qYqsmzRw== isobject@^3.0.1: version "3.0.1" - resolved "https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + resolved "https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== js-base64@^3.7.5: version "3.7.5" - resolved "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.5.tgz#21e24cf6b886f76d6f5f165bfcd69cc55b9e3fca" + resolved "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.5.tgz" integrity sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA== js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema-traverse@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + resolved "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== jsonfile@^6.0.1: version "6.1.0" - resolved "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + resolved "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz" integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== dependencies: universalify "^2.0.0" @@ -2238,24 +2238,24 @@ jsonfile@^6.0.1: kind-of@^6.0.2: version "6.0.3" - resolved "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + resolved "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== kolorist@^1.5.1: version "1.8.0" - resolved "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz#edddbbbc7894bc13302cdf740af6374d4a04743c" + resolved "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz" integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ== lazystream@^1.0.0: version "1.0.1" - resolved "https://registry.npmmirror.com/lazystream/-/lazystream-1.0.1.tgz#494c831062f1f9408251ec44db1cba29242a2638" + resolved "https://registry.npmmirror.com/lazystream/-/lazystream-1.0.1.tgz" integrity sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw== dependencies: readable-stream "^2.0.5" levn@^0.4.1: version "0.4.1" - resolved "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + resolved "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz" integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== dependencies: prelude-ls "^1.2.1" @@ -2263,54 +2263,54 @@ levn@^0.4.1: locate-path@^6.0.0: version "6.0.0" - resolved "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + resolved "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz" integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== dependencies: p-locate "^5.0.0" lodash.defaults@^4.2.0: version "4.2.0" - resolved "https://registry.npmmirror.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + resolved "https://registry.npmmirror.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz" integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== lodash.difference@^4.5.0: version "4.5.0" - resolved "https://registry.npmmirror.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" + resolved "https://registry.npmmirror.com/lodash.difference/-/lodash.difference-4.5.0.tgz" integrity sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA== lodash.flatten@^4.4.0: version "4.4.0" - resolved "https://registry.npmmirror.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + resolved "https://registry.npmmirror.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz" integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== lodash.isplainobject@^4.0.6: version "4.0.6" - resolved "https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + resolved "https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz" integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== lodash.merge@^4.6.2: version "4.6.2" - resolved "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + resolved "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== lodash.truncate@^4.4.2: version "4.4.2" - resolved "https://registry.npmmirror.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + resolved "https://registry.npmmirror.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz" integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== lodash.union@^4.6.0: version "4.6.0" - resolved "https://registry.npmmirror.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" + resolved "https://registry.npmmirror.com/lodash.union/-/lodash.union-4.6.0.tgz" integrity sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw== lodash@^4.17.21: version "4.17.21" - resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== log-symbols@^4.1.0: version "4.1.0" - resolved "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + resolved "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== dependencies: chalk "^4.1.0" @@ -2318,46 +2318,46 @@ log-symbols@^4.1.0: lower-case@^1.1.1: version "1.1.4" - resolved "https://registry.npmmirror.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + resolved "https://registry.npmmirror.com/lower-case/-/lower-case-1.1.4.tgz" integrity sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA== lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" magic-string@^0.30.0: version "0.30.0" - resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.0.tgz#fd58a4748c5c4547338a424e90fa5dd17f4de529" + resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.0.tgz" integrity sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ== dependencies: "@jridgewell/sourcemap-codec" "^1.4.13" media-typer@0.3.0: version "0.3.0" - resolved "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz" integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== merge-descriptors@1.0.1: version "1.0.1" - resolved "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz" integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== methods@~1.1.2: version "1.1.2" - resolved "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== micromatch@^4.0.4: version "4.0.5" - resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== dependencies: braces "^3.0.2" @@ -2365,148 +2365,148 @@ micromatch@^4.0.4: mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": version "1.52.0" - resolved "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + resolved "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34: version "2.1.35" - resolved "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + resolved "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" mime@1.6.0: version "1.6.0" - resolved "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + resolved "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mimic-fn@^2.1.0: version "2.1.0" - resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" - resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" minimatch@^5.1.0: version "5.1.6" - resolved "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + resolved "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz" integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== dependencies: brace-expansion "^2.0.1" minimist@^1.2.6: version "1.2.8" - resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== ms@2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.2: version "2.1.2" - resolved "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + resolved "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== ms@2.1.3: version "2.1.3" - resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== mute-stream@0.0.8: version "0.0.8" - resolved "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + resolved "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== nanoid@^3.3.6: version "3.3.6" - resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz" integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== natural-compare-lite@^1.4.0: version "1.4.0" - resolved "https://registry.npmmirror.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" + resolved "https://registry.npmmirror.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz" integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== negotiator@0.6.3: version "0.6.3" - resolved "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + resolved "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== no-case@^2.2.0: version "2.3.2" - resolved "https://registry.npmmirror.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" + resolved "https://registry.npmmirror.com/no-case/-/no-case-2.3.2.tgz" integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== dependencies: lower-case "^1.1.1" node-releases@^2.0.12: version "2.0.12" - resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" + resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.12.tgz" integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: version "0.1.2" - resolved "https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + resolved "https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== nth-check@^2.0.1: version "2.1.1" - resolved "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + resolved "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== dependencies: boolbase "^1.0.0" object-inspect@^1.9.0: version "1.12.3" - resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== on-finished@2.4.1: version "2.4.1" - resolved "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + resolved "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" on-headers@~1.0.2: version "1.0.2" - resolved "https://registry.npmmirror.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + resolved "https://registry.npmmirror.com/on-headers/-/on-headers-1.0.2.tgz" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== once@^1.3.0, once@^1.4.0: version "1.4.0" - resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" onetime@^5.1.0: version "5.1.2" - resolved "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + resolved "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" open@^8.4.0: version "8.4.2" - resolved "https://registry.npmmirror.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + resolved "https://registry.npmmirror.com/open/-/open-8.4.2.tgz" integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== dependencies: define-lazy-prop "^2.0.0" @@ -2515,7 +2515,7 @@ open@^8.4.0: optionator@^0.9.1: version "0.9.1" - resolved "https://registry.npmmirror.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + resolved "https://registry.npmmirror.com/optionator/-/optionator-0.9.1.tgz" integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== dependencies: deep-is "^0.1.3" @@ -2527,7 +2527,7 @@ optionator@^0.9.1: ora@^5.4.1: version "5.4.1" - resolved "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + resolved "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz" integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== dependencies: bl "^4.1.0" @@ -2542,85 +2542,85 @@ ora@^5.4.1: os-tmpdir@~1.0.2: version "1.0.2" - resolved "https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + resolved "https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== p-limit@^3.0.2: version "3.1.0" - resolved "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + resolved "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" p-locate@^5.0.0: version "5.0.0" - resolved "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + resolved "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz" integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== dependencies: p-limit "^3.0.2" param-case@^2.1.1: version "2.1.1" - resolved "https://registry.npmmirror.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" + resolved "https://registry.npmmirror.com/param-case/-/param-case-2.1.1.tgz" integrity sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w== dependencies: no-case "^2.2.0" parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + resolved "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + resolved "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^3.1.0: version "3.1.1" - resolved "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + resolved "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-to-regexp@0.1.7: version "0.1.7" - resolved "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz" integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== path-type@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== picocolors@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pinia@^2.0.11: version "2.1.3" - resolved "https://registry.npmmirror.com/pinia/-/pinia-2.1.3.tgz#50c70c7b4c94c109fade0ed4122231cbba72f8c5" + resolved "https://registry.npmmirror.com/pinia/-/pinia-2.1.3.tgz" integrity sha512-XNA/z/ye4P5rU1pieVmh0g/hSuDO98/a5UC8oSP0DNdvt6YtetJNHTrXwpwsQuflkGT34qKxAEcp7lSxXNjf/A== dependencies: "@vue/devtools-api" "^6.5.0" @@ -2628,12 +2628,12 @@ pinia@^2.0.11: pixi-viewport@^5.0.1: version "5.0.1" - resolved "https://registry.npmmirror.com/pixi-viewport/-/pixi-viewport-5.0.1.tgz#42e3934bd1535c4e60a5b95d09d0cf00bd673917" + resolved "https://registry.npmmirror.com/pixi-viewport/-/pixi-viewport-5.0.1.tgz" integrity sha512-fIILU9xztqGnhGF5SYfjn1Rir/7asWkJ8zSUay2hwzPrdGTWFtB4yiIlZDeFaLf7KHA04RRb2kI01Sy1kNksAw== pixi.js@^7.2.4: version "7.2.4" - resolved "https://registry.npmmirror.com/pixi.js/-/pixi.js-7.2.4.tgz#4cd6776bf7f74a6c5e121dd1b59329e66be2ce49" + resolved "https://registry.npmmirror.com/pixi.js/-/pixi.js-7.2.4.tgz" integrity sha512-nBH60meoLnHxoMFz17HoMxXS4uJpG5jwIdL+Gx2S11TzWgP3iKF+/WLOTrkSdyuQoQSdIBxVqpnYii0Wiox15A== dependencies: "@pixi/accessibility" "7.2.4" @@ -2669,7 +2669,7 @@ pixi.js@^7.2.4: postcss-selector-parser@^6.0.9: version "6.0.13" - resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz" integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== dependencies: cssesc "^3.0.0" @@ -2677,12 +2677,12 @@ postcss-selector-parser@^6.0.9: postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + resolved "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@^8.1.10, postcss@^8.4.13: version "8.4.24" - resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df" + resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.24.tgz" integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg== dependencies: nanoid "^3.3.6" @@ -2691,27 +2691,27 @@ postcss@^8.1.10, postcss@^8.4.13: prelude-ls@^1.2.1: version "1.2.1" - resolved "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + resolved "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== prettier@^2.5.1: version "2.8.8" - resolved "https://registry.npmmirror.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + resolved "https://registry.npmmirror.com/prettier/-/prettier-2.8.8.tgz" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== protoc-gen-ts@^0.8.6: version "0.8.6" - resolved "https://registry.npmmirror.com/protoc-gen-ts/-/protoc-gen-ts-0.8.6.tgz#e789a6fc3fbe09bdc119acecc349b9554ec5940e" + resolved "https://registry.npmmirror.com/protoc-gen-ts/-/protoc-gen-ts-0.8.6.tgz" integrity sha512-66oeorGy4QBvYjQGd/gaeOYyFqKyRmRgTpofmnw8buMG0P7A0jQjoKSvKJz5h5tNUaVkIzvGBUTRVGakrhhwpA== proxy-addr@~2.0.7: version "2.0.7" - resolved "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + resolved "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz" integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== dependencies: forwarded "0.2.0" @@ -2719,56 +2719,56 @@ proxy-addr@~2.0.7: proxy-from-env@^1.1.0: version "1.1.0" - resolved "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + resolved "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== punycode@1.3.2: version "1.3.2" - resolved "https://registry.npmmirror.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + resolved "https://registry.npmmirror.com/punycode/-/punycode-1.3.2.tgz" integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== punycode@^2.1.0: version "2.3.0" - resolved "https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + resolved "https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz" integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== qs@6.11.0: version "6.11.0" - resolved "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + resolved "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz" integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== dependencies: side-channel "^1.0.4" quasar@^2.6.0: version "2.12.0" - resolved "https://registry.npmmirror.com/quasar/-/quasar-2.12.0.tgz#f145ad2b677a0925ea9ca6a3b44b5502be1cbd87" + resolved "https://registry.npmmirror.com/quasar/-/quasar-2.12.0.tgz" integrity sha512-B8xoeOWNs/Iv7M+FGRvXGYI1qDnJH8AtIb7RiP+zMfMkBcEp+6HJHU/9ODPemC4yteDjO+HPX2f7OhNZKgsPIw== querystring@0.2.0: version "0.2.0" - resolved "https://registry.npmmirror.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + resolved "https://registry.npmmirror.com/querystring/-/querystring-0.2.0.tgz" integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== randombytes@^2.1.0: version "2.1.0" - resolved "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + resolved "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz" integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== dependencies: safe-buffer "^5.1.0" range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + resolved "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== raw-body@2.5.1: version "2.5.1" - resolved "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + resolved "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.1.tgz" integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== dependencies: bytes "3.1.2" @@ -2778,7 +2778,7 @@ raw-body@2.5.1: readable-stream@^2.0.0, readable-stream@^2.0.5: version "2.3.8" - resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" @@ -2791,7 +2791,7 @@ readable-stream@^2.0.0, readable-stream@^2.0.5: readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.2" - resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" @@ -2800,46 +2800,46 @@ readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: readdir-glob@^1.0.0: version "1.1.3" - resolved "https://registry.npmmirror.com/readdir-glob/-/readdir-glob-1.1.3.tgz#c3d831f51f5e7bfa62fa2ffbe4b508c640f09584" + resolved "https://registry.npmmirror.com/readdir-glob/-/readdir-glob-1.1.3.tgz" integrity sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA== dependencies: minimatch "^5.1.0" readdirp@~3.6.0: version "3.6.0" - resolved "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + resolved "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz" integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" register-service-worker@^1.7.2: version "1.7.2" - resolved "https://registry.npmmirror.com/register-service-worker/-/register-service-worker-1.7.2.tgz#6516983e1ef790a98c4225af1216bc80941a4bd2" + resolved "https://registry.npmmirror.com/register-service-worker/-/register-service-worker-1.7.2.tgz" integrity sha512-CiD3ZSanZqcMPRhtfct5K9f7i3OLCcBBWsJjLh1gW9RO/nS94sVzY59iS+fgYBOBqaBpf4EzfqUF3j9IG+xo8A== relateurl@^0.2.7: version "0.2.7" - resolved "https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + resolved "https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz" integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== require-from-string@^2.0.2: version "2.0.2" - resolved "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + resolved "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve@^1.22.0: version "1.22.2" - resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.2.tgz" integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== dependencies: is-core-module "^2.11.0" @@ -2848,7 +2848,7 @@ resolve@^1.22.0: restore-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + resolved "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz" integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== dependencies: onetime "^5.1.0" @@ -2856,19 +2856,19 @@ restore-cursor@^3.1.0: reusify@^1.0.4: version "1.0.4" - resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" rollup-plugin-visualizer@^5.5.4: version "5.9.0" - resolved "https://registry.npmmirror.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.9.0.tgz#013ac54fb6a9d7c9019e7eb77eced673399e5a0b" + resolved "https://registry.npmmirror.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.9.0.tgz" integrity sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg== dependencies: open "^8.4.0" @@ -2878,67 +2878,67 @@ rollup-plugin-visualizer@^5.5.4: "rollup@>=2.59.0 <2.78.0": version "2.77.3" - resolved "https://registry.npmmirror.com/rollup/-/rollup-2.77.3.tgz#8f00418d3a2740036e15deb653bed1a90ee0cc12" + resolved "https://registry.npmmirror.com/rollup/-/rollup-2.77.3.tgz" integrity sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g== optionalDependencies: fsevents "~2.3.2" run-async@^2.4.0: version "2.4.1" - resolved "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + resolved "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz" integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" rxjs@^7.5.5: version "7.8.1" - resolved "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + resolved "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz" integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== dependencies: tslib "^2.1.0" safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safe-buffer@5.2.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" - resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== "safer-buffer@>= 2.1.2 < 3": version "2.1.2" - resolved "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass@1.32.12: version "1.32.12" - resolved "https://registry.npmmirror.com/sass/-/sass-1.32.12.tgz#a2a47ad0f1c168222db5206444a30c12457abb9f" + resolved "https://registry.npmmirror.com/sass/-/sass-1.32.12.tgz" integrity sha512-zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA== dependencies: chokidar ">=3.0.0 <4.0.0" sax@1.1.4: version "1.1.4" - resolved "https://registry.npmmirror.com/sax/-/sax-1.1.4.tgz#74b6d33c9ae1e001510f179a91168588f1aedaa9" + resolved "https://registry.npmmirror.com/sax/-/sax-1.1.4.tgz" integrity sha512-5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg== semver@^7.3.5, semver@^7.3.6, semver@^7.3.7: version "7.5.1" - resolved "https://registry.npmmirror.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" + resolved "https://registry.npmmirror.com/semver/-/semver-7.5.1.tgz" integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== dependencies: lru-cache "^6.0.0" send@0.18.0: version "0.18.0" - resolved "https://registry.npmmirror.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + resolved "https://registry.npmmirror.com/send/-/send-0.18.0.tgz" integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== dependencies: debug "2.6.9" @@ -2957,14 +2957,14 @@ send@0.18.0: serialize-javascript@^6.0.0: version "6.0.1" - resolved "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" + resolved "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz" integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== dependencies: randombytes "^2.1.0" serve-static@1.15.0: version "1.15.0" - resolved "https://registry.npmmirror.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + resolved "https://registry.npmmirror.com/serve-static/-/serve-static-1.15.0.tgz" integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== dependencies: encodeurl "~1.0.2" @@ -2974,31 +2974,31 @@ serve-static@1.15.0: setprototypeof@1.2.0: version "1.2.0" - resolved "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + resolved "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== shallow-clone@^3.0.0: version "3.0.1" - resolved "https://registry.npmmirror.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + resolved "https://registry.npmmirror.com/shallow-clone/-/shallow-clone-3.0.1.tgz" integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== dependencies: kind-of "^6.0.2" shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== side-channel@^1.0.4: version "1.0.4" - resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz" integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== dependencies: call-bind "^1.0.0" @@ -3007,17 +3007,17 @@ side-channel@^1.0.4: signal-exit@^3.0.2: version "3.0.7" - resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== slash@^3.0.0: version "3.0.0" - resolved "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + resolved "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== slice-ansi@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz" integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== dependencies: ansi-styles "^4.0.0" @@ -3026,32 +3026,32 @@ slice-ansi@^4.0.0: source-map-js@^1.0.2: version "1.0.2" - resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== source-map@^0.7.4: version "0.7.4" - resolved "https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + resolved "https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz" integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== source-map@~0.6.0: version "0.6.1" - resolved "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== stack-trace@^1.0.0-pre2: version "1.0.0-pre2" - resolved "https://registry.npmmirror.com/stack-trace/-/stack-trace-1.0.0-pre2.tgz#46a83a79f1b287807e9aaafc6a5dd8bcde626f9c" + resolved "https://registry.npmmirror.com/stack-trace/-/stack-trace-1.0.0-pre2.tgz" integrity sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A== statuses@2.0.1: version "2.0.1" - resolved "https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + resolved "https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" - resolved "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -3060,45 +3060,45 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: string_decoder@^1.1.1: version "1.3.0" - resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== table@^6.8.0: version "6.8.1" - resolved "https://registry.npmmirror.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf" + resolved "https://registry.npmmirror.com/table/-/table-6.8.1.tgz" integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA== dependencies: ajv "^8.0.1" @@ -3109,7 +3109,7 @@ table@^6.8.0: tar-stream@^2.2.0: version "2.2.0" - resolved "https://registry.npmmirror.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + resolved "https://registry.npmmirror.com/tar-stream/-/tar-stream-2.2.0.tgz" integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== dependencies: bl "^4.0.3" @@ -3120,75 +3120,75 @@ tar-stream@^2.2.0: text-table@^0.2.0: version "0.2.0" - resolved "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== through@^2.3.6: version "2.3.8" - resolved "https://registry.npmmirror.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + resolved "https://registry.npmmirror.com/through/-/through-2.3.8.tgz" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== tmp@^0.0.33: version "0.0.33" - resolved "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + resolved "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz" integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== dependencies: os-tmpdir "~1.0.2" to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toidentifier@1.0.1: version "1.0.1" - resolved "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + resolved "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== ts-md5@^1.3.1: version "1.3.1" - resolved "https://registry.npmmirror.com/ts-md5/-/ts-md5-1.3.1.tgz#f5b860c0d5241dd9bb4e909dd73991166403f511" + resolved "https://registry.npmmirror.com/ts-md5/-/ts-md5-1.3.1.tgz" integrity sha512-DiwiXfwvcTeZ5wCE0z+2A9EseZsztaiZtGrtSaY5JOD7ekPnR/GoIVD5gXZAlK9Na9Kvpo9Waz5rW64WKAWApg== tslib@^1.8.1: version "1.14.1" - resolved "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + resolved "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.1.0: version "2.5.2" - resolved "https://registry.npmmirror.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" + resolved "https://registry.npmmirror.com/tslib/-/tslib-2.5.2.tgz" integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== tsutils@^3.21.0: version "3.21.0" - resolved "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + resolved "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz" integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== dependencies: tslib "^1.8.1" type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" - resolved "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + resolved "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz" integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== dependencies: prelude-ls "^1.2.1" type-fest@^0.20.2: version "0.20.2" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== type-fest@^0.21.3: version "0.21.3" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== type-is@~1.6.18: version "1.6.18" - resolved "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + resolved "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz" integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== dependencies: media-typer "0.3.0" @@ -3196,27 +3196,27 @@ type-is@~1.6.18: typescript@^4.5.4: version "4.9.5" - resolved "https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + resolved "https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== uglify-js@^3.5.1: version "3.17.4" - resolved "https://registry.npmmirror.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + resolved "https://registry.npmmirror.com/uglify-js/-/uglify-js-3.17.4.tgz" integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== universalify@^2.0.0: version "2.0.0" - resolved "https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + resolved "https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz" integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== update-browserslist-db@^1.0.11: version "1.0.11" - resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz" integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== dependencies: escalade "^3.1.1" @@ -3224,19 +3224,19 @@ update-browserslist-db@^1.0.11: upper-case@^1.1.1: version "1.1.3" - resolved "https://registry.npmmirror.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" + resolved "https://registry.npmmirror.com/upper-case/-/upper-case-1.1.3.tgz" integrity sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA== uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" url@^0.11.0: version "0.11.0" - resolved "https://registry.npmmirror.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + resolved "https://registry.npmmirror.com/url/-/url-0.11.0.tgz" integrity sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ== dependencies: punycode "1.3.2" @@ -3244,22 +3244,22 @@ url@^0.11.0: util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== vary@~1.1.2: version "1.1.2" - resolved "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== vite@^2.9.13: version "2.9.16" - resolved "https://registry.npmmirror.com/vite/-/vite-2.9.16.tgz#daf7ba50f5cc37a7bf51b118ba06bc36e97898e9" + resolved "https://registry.npmmirror.com/vite/-/vite-2.9.16.tgz" integrity sha512-X+6q8KPyeuBvTQV8AVSnKDvXoBMnTx8zxh54sOwmmuOdxkjMmEJXH2UEchA+vTMps1xw9vL64uwJOWryULg7nA== dependencies: esbuild "^0.14.27" @@ -3271,12 +3271,12 @@ vite@^2.9.13: vue-demi@>=0.14.5: version "0.14.5" - resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz#676d0463d1a1266d5ab5cba932e043d8f5f2fbd9" + resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz" integrity sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA== vue-eslint-parser@^9.3.0: version "9.3.0" - resolved "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz#775a974a0603c9a73d85fed8958ed9e814a4a816" + resolved "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz" integrity sha512-48IxT9d0+wArT1+3wNIy0tascRoywqSUe2E1YalIC1L8jsUGe5aJQItWfRok7DVFGz3UYvzEI7n5wiTXsCMAcQ== dependencies: debug "^4.3.4" @@ -3289,14 +3289,14 @@ vue-eslint-parser@^9.3.0: vue-router@^4.0.0: version "4.2.2" - resolved "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.2.tgz#b0097b66d89ca81c0986be03da244c7b32a4fd81" + resolved "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.2.tgz" integrity sha512-cChBPPmAflgBGmy3tBsjeoe3f3VOSG6naKyY5pjtrqLGbNEXdzCigFUHgBvp9e3ysAtFtEx7OLqcSDh/1Cq2TQ== dependencies: "@vue/devtools-api" "^6.5.0" vue@^3.0.0: version "3.3.4" - resolved "https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz#8ed945d3873667df1d0fcf3b2463ada028f88bd6" + resolved "https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz" integrity sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw== dependencies: "@vue/compiler-dom" "3.3.4" @@ -3307,14 +3307,14 @@ vue@^3.0.0: wcwidth@^1.0.1: version "1.0.1" - resolved "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + resolved "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz" integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== dependencies: defaults "^1.0.3" webpack-merge@^5.8.0: version "5.9.0" - resolved "https://registry.npmmirror.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" + resolved "https://registry.npmmirror.com/webpack-merge/-/webpack-merge-5.9.0.tgz" integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== dependencies: clone-deep "^4.0.1" @@ -3322,24 +3322,24 @@ webpack-merge@^5.8.0: which@^2.0.1: version "2.0.2" - resolved "https://registry.npmmirror.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + resolved "https://registry.npmmirror.com/which/-/which-2.0.2.tgz" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" wildcard@^2.0.0: version "2.0.1" - resolved "https://registry.npmmirror.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" + resolved "https://registry.npmmirror.com/wildcard/-/wildcard-2.0.1.tgz" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== word-wrap@^1.2.3: version "1.2.3" - resolved "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + resolved "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== wrap-ansi@^7.0.0: version "7.0.0" - resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -3348,32 +3348,32 @@ wrap-ansi@^7.0.0: wrappy@1: version "1.0.2" - resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== xml-name-validator@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" + resolved "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== y18n@^5.0.5: version "5.0.8" - resolved "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + resolved "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^4.0.0: version "4.0.0" - resolved "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yargs-parser@^21.1.1: version "21.1.1" - resolved "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + resolved "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== yargs@^17.5.1: version "17.7.2" - resolved "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + resolved "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz" integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: cliui "^8.0.1" @@ -3386,12 +3386,12 @@ yargs@^17.5.1: yocto-queue@^0.1.0: version "0.1.0" - resolved "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + resolved "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== zip-stream@^4.1.0: version "4.1.0" - resolved "https://registry.npmmirror.com/zip-stream/-/zip-stream-4.1.0.tgz#51dd326571544e36aa3f756430b313576dc8fc79" + resolved "https://registry.npmmirror.com/zip-stream/-/zip-stream-4.1.0.tgz" integrity sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A== dependencies: archiver-utils "^2.1.0"