cmp-aws-database
Version:
The package "cmp-aws-database" is for its database, which defines global tables. These tables are designed to be imported and used across multiple applications of "craft-my-plate."
511 lines • 33.9 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccompanimentsDetails = exports.ItemDetails = exports.Item = exports.Category = exports.AddonsItems = exports.AddonsCategory = exports.CutleryItem = exports.PlateModel = void 0;
const annotations_1 = require("@nova-odm/annotations");
const base_model_1 = require("../../../base-model");
let PlateModel = class PlateModel extends base_model_1.BaseModel {
};
exports.PlateModel = PlateModel;
__decorate([
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
__metadata("design:type", String)
], PlateModel.prototype, "plateId", void 0);
__decorate([
(0, annotations_1.attribute)({
indexKeyConfigurations: { "orderIndex": "HASH" }, type: 'String'
}),
__metadata("design:type", String)
], PlateModel.prototype, "orderId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "plateName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "platterType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "plateImage", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "platterSubType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "mealTime", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "defaultPlatterId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "totalItems", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "pricePerPlate", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "discountedPricePerPlate", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "guestCount", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "eventDate", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "foodInstructions", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "timeInstructions", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "eventTime", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "serviceType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "addressId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "servicePrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "discountedServicePrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "totalPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "menuType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "discountedTotalPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "discountRewardValue", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "deliveryFees", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "deliveryService", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "deliveryFeeDiffrenceFor20KM", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "packagingCharge", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "gst", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "savedAmount", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "quantityChanged", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "occassionType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "pureVegGuest", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "spicyLavel", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "consumeAlcohol", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "tellUsMore", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "doorStepServicePrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "plateInvoiceUrl", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], PlateModel.prototype, "categories", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], PlateModel.prototype, "addonsItems", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], PlateModel.prototype, "cutleryItems", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "menuOrderId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "addonsAccompanimentsCost", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "extraQtyCost", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "premiumItemsCost", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "cutleryCost", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], PlateModel.prototype, "createOwn", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], PlateModel.prototype, "cartId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], PlateModel.prototype, "isPartialGrill", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "chargeableKits", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "pricePerKit", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "freeKits", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "skewersCost", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], PlateModel.prototype, "numberOfSkewers", void 0);
exports.PlateModel = PlateModel = __decorate([
(0, annotations_1.table)("PlateOrdersTable")
], PlateModel);
// V2 New Added Cutlery
class CutleryItem {
}
exports.CutleryItem = CutleryItem;
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], CutleryItem.prototype, "cutleryId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], CutleryItem.prototype, "cutleryName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], CutleryItem.prototype, "cutleryPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], CutleryItem.prototype, "cutleryImage", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], CutleryItem.prototype, "cutleryQuantity", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], CutleryItem.prototype, "cutleryType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], CutleryItem.prototype, "cutleryQuantityUnit", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], CutleryItem.prototype, "cutleryBaseRatio", void 0);
// V2 New Added Addons
class AddonsCategory {
}
exports.AddonsCategory = AddonsCategory;
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AddonsCategory.prototype, "categoryId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AddonsCategory.prototype, "categoryName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], AddonsCategory.prototype, "items", void 0);
// V2 New Added Addons
class AddonsItems {
}
exports.AddonsItems = AddonsItems;
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AddonsItems.prototype, "addonId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AddonsItems.prototype, "addonName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], AddonsItems.prototype, "addonPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AddonsItems.prototype, "addonImage", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], AddonsItems.prototype, "addonQuantity", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AddonsItems.prototype, "addonType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AddonsItems.prototype, "addonQuantityUnit", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], AddonsItems.prototype, "addonBaseRatio", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], AddonsItems.prototype, "isBonelessItem", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], AddonsItems.prototype, "boneItemPrice", void 0);
class Category {
}
exports.Category = Category;
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], Category.prototype, "categoryId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], Category.prototype, "categoryName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], Category.prototype, "isSkewerCategory", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], Category.prototype, "categoryOrder", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], Category.prototype, "isComboCategory", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], Category.prototype, "items", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], Category.prototype, "vegItems", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], Category.prototype, "premiumVegItems", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], Category.prototype, "nonVegItems", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], Category.prototype, "premiumNonVegItems", void 0);
class Item {
}
exports.Item = Item;
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], Item.prototype, "itemId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], Item.prototype, "itemName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], Item.prototype, "itemPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], Item.prototype, "itemType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], Item.prototype, "itemQuantity", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], Item.prototype, "baseRatio", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], Item.prototype, "quantityUnit", void 0);
class ItemDetails {
}
exports.ItemDetails = ItemDetails;
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], ItemDetails.prototype, "itemId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], ItemDetails.prototype, "itemName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], ItemDetails.prototype, "itemPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], ItemDetails.prototype, "itemType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], ItemDetails.prototype, "itemImage", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], ItemDetails.prototype, "itemQuantity", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], ItemDetails.prototype, "baseRatio", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], ItemDetails.prototype, "quantityUnit", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], ItemDetails.prototype, "isBonelessItem", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], ItemDetails.prototype, "boneItemPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Array)
], ItemDetails.prototype, "accompaniments", void 0);
class AccompanimentsDetails {
}
exports.AccompanimentsDetails = AccompanimentsDetails;
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AccompanimentsDetails.prototype, "accompanimentId", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AccompanimentsDetails.prototype, "accompanimentName", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AccompanimentsDetails.prototype, "accompanimentType", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], AccompanimentsDetails.prototype, "isFree", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AccompanimentsDetails.prototype, "imageUrl", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AccompanimentsDetails.prototype, "quantityUnit", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], AccompanimentsDetails.prototype, "accompanimentPrice", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", String)
], AccompanimentsDetails.prototype, "accompanimentQty", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], AccompanimentsDetails.prototype, "baseRatio", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Boolean)
], AccompanimentsDetails.prototype, "isBonelessItem", void 0);
__decorate([
(0, annotations_1.attribute)(),
__metadata("design:type", Number)
], AccompanimentsDetails.prototype, "boneItemPrice", void 0);
// export class ZohoBookIds {
// @attribute()
// zohoOrderId?: string;
// @attribute()
// zohoInvoiceId?: string;
// @attribute()
// zohoPaymentId?: string[];
// }
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGUtb3JkZXItbW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvY3VzdG9tZXItdXNlci9vcmRlci1tb2R1bGUvcGxhdGUtb3JkZXIvcGxhdGUtb3JkZXItbW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsdURBQStFO0FBQy9FLG9EQUFnRDtBQUl6QyxJQUFNLFVBQVUsR0FBaEIsTUFBTSxVQUFXLFNBQVEsc0JBQVM7Q0F1S3hDLENBQUE7QUF2S1ksZ0NBQVU7QUFFbkI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzsyQ0FDekI7QUFLaEI7SUFIQyxJQUFBLHVCQUFTLEVBQUM7UUFDUCxzQkFBc0IsRUFBRSxFQUFFLFlBQVksRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUTtLQUNuRSxDQUFDOzsyQ0FDYztBQUdoQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NkNBQ007QUFHbEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OytDQUNRO0FBR3BCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs4Q0FDUTtBQUdwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7a0RBQ1c7QUFHdkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzRDQUNLO0FBR2pCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztvREFDYTtBQUd6QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7OENBQ087QUFHbkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2lEQUNVO0FBR3RCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsyREFDb0I7QUFHaEM7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhDQUNPO0FBR25CO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs2Q0FDTTtBQUdsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7b0RBQ2M7QUFHMUI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O29EQUNjO0FBRzFCO0lB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QUFTLEdBQUU7OytEQUNhO0FBR3pCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt3REFDTTtBQUdsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NkRBQ2E7QUFHekI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzREQUNXO0FBRzNCLDZCQUE2QjtBQUM3QixtQkFBbUI7QUFDbkIsNEJBQTRCO0FBRTVCLG1CQUFtQjtBQUNuQiw4QkFBOEI7QUFFOUIsbUJBQW1CO0FBQ25CLGdDQUFnQztBQUNoQyxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYXR0cmlidXRlLCBhdXRvR2VuZXJhdGVkSGFzaEtleSwgdGFibGUgfSBmcm9tIFwiQG5vdmEtb2RtL2Fubm90YXRpb25zXCI7XG5pbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vYmFzZS1tb2RlbFwiO1xuXG5cbkB0YWJsZShcIlBsYXRlT3JkZXJzVGFibGVcIilcbmV4cG9ydCBjbGFzcyBQbGF0ZU1vZGVsIGV4dGVuZHMgQmFzZU1vZGVsIHtcbiAgICBAYXV0b0dlbmVyYXRlZEhhc2hLZXkoeyB0eXBlOiBcIlN0cmluZ1wiIH0pXG4gICAgcGxhdGVJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSh7XG4gICAgICAgIGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJvcmRlckluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnXG4gICAgfSlcbiAgICBvcmRlcklkOiBzdHJpbmc7IC8vIEZvcmVpZ24ga2V5IHRvIGFzc29jaWF0ZSB0aGUgcGxhdGUgd2l0aCBhbiBvcmRlclxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdGVOYW1lOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBwbGF0dGVyVHlwZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdGVJbWFnZT86IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBsYXR0ZXJTdWJUeXBlOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBtZWFsVGltZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGVmYXVsdFBsYXR0ZXJJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgdG90YWxJdGVtczogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcHJpY2VQZXJQbGF0ZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGlzY291bnRlZFByaWNlUGVyUGxhdGU6IG51bWJlcjsgLy8gMTEtMTItMjAyNFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZ3Vlc3RDb3VudDogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZXZlbnREYXRlOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBmb29kSW5zdHJ1Y3Rpb25zPzogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgdGltZUluc3RydWN0aW9ucz86IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGV2ZW50VGltZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc2VydmljZVR5cGU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZHJlc3NJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc2VydmljZVByaWNlOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBkaXNjb3VudGVkU2VydmljZVByaWNlOiBudW1iZXI7IC8vIDExLTEyLTIwMjRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHRvdGFsUHJpY2U6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG1lbnVUeXBlOiBzdHJpbmc7IC8vIFYyIFZFRywgTk9OVkVHLCBTQVBSQVRFRFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGlzY291bnRlZFRvdGFsUHJpY2U6IG51bWJlcjsgLy8gMTEtMTItMjAyNFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGlzY291bnRSZXdhcmRWYWx1ZTogbnVtYmVyOyAvLyBWMlxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGVsaXZlcnlGZWVzOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBkZWxpdmVyeVNlcnZpY2U/OiBzdHJpbmc7IC8vIFYyIFBSRU1JVU0sIFNUQU5EQVJELCBET09SU1RFUFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGVsaXZlcnlGZWVEaWZmcmVuY2VGb3IyMEtNOiBudW1iZXI7IC8vIFNwcmludCA1IG5ldyBrZXkgQWRkZWRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBhY2thZ2luZ0NoYXJnZTogbnVtYmVyOyAvLyBTcHJpbnQgNSBuZXcga2V5IEFkZGVkXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBnc3Q6IG51bWJlcjsgLy8gU3ByaW50IDUgbmV3IGtleSBBZGRlZFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc2F2ZWRBbW91bnQ6IG51bWJlcjsgLy8gU3ByaW50IDUgbmV3IGtleSBBZGRlZFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcXVhbnRpdHlDaGFuZ2VkOiBzdHJpbmc7IC8vMDMtMTItMjAyNFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgb2NjYXNzaW9uVHlwZTogc3RyaW5nOyAvLzAzLTEyLTIwMjRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHB1cmVWZWdHdWVzdD86IG51bWJlcjsgLy8wMy0xMi0yMDI0XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBzcGljeUxhdmVsPzogc3RyaW5nOyAvLzAzLTEyLTIwMjRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNvbnN1bWVBbGNvaG9sPzogc3RyaW5nOyAvLzAzLTEyLTIwMjRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHRlbGxVc01vcmU/OiBzdHJpbmc7IC8vMDMtMTItMjAyNFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZG9vclN0ZXBTZXJ2aWNlUHJpY2U/OiBudW1iZXI7IC8vMDctMTItMjAyNFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdGVJbnZvaWNlVXJsPzogc3RyaW5nOyAvLyBTcHJpbnQgMSBuZXcga2V5IEFkZGVkIDIwLzEyLzIwMjRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3JpZXM6IENhdGVnb3J5W107IC8vIEFycmF5IG9mIENhdGVnb3J5IG9iamVjdHNcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZG9uc0l0ZW1zOiBBZGRvbnNDYXRlZ29yeVtdOyAvLyBWMlxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY3V0bGVyeUl0ZW1zOiBDdXRsZXJ5SXRlbVtdOyAvLyBWMlxuXG4gICAgLy8gQGF0dHJpYnV0ZSgpXG4gICAgLy8gem9ob0Jvb2tJZHM/OiBab2hvQm9va0lkcztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG1lbnVPcmRlcklkPzogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWRkb25zQWNjb21wYW5pbWVudHNDb3N0PzogbnVtYmVyOyAvLyBWMiBpbmNsdWRpbmcgbXVsdGlwbGljYXRpb24gb2YgZ3Vlc3QgY291bnRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGV4dHJhUXR5Q29zdD86IG51bWJlcjsgLy8gVjIgaW5jbHVkaW5nIG11bHRpcGxpY2F0aW9uIG9mIGd1ZXN0IGNvdW50XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBwcmVtaXVtSXRlbXNDb3N0PzogbnVtYmVyOyAvLyBWMiBpbmNsdWRpbmcgbXVsdGlwbGljYXRpb24gb2YgZ3Vlc3QgY291bnRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1dGxlcnlDb3N0PzogbnVtYmVyOyAvLyBWMiBpbmNsdWRpbmcgbXVsdGlwbGljYXRpb24gb2YgZ3Vlc3QgY291bnRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNyZWF0ZU93bj86IGJvb2xlYW47IC8vIFYyIC0gIHRydWUgfCBmYWxzZVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2FydElkPzogc3RyaW5nOyAvLyBWMiAtIENhcnQgSURcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGlzUGFydGlhbEdyaWxsPzogYm9vbGVhbjsgLy8gVjIgMTItMTItMjAyNVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2hhcmdlYWJsZUtpdHM/OiBudW1iZXI7IC8vIFYyIDEyLTEyLTIwMjVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHByaWNlUGVyS2l0PzogbnVtYmVyOyAvLyBWMiAxMi0xMi0yMDI1XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBmcmVlS2l0cz86IG51bWJlcjsgLy8gVjIgMTItMTItMjAyNVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc2tld2Vyc0Nvc3Q/OiBudW1iZXI7IC8vIFYyIDE3LTEyLTIwMjVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG51bWJlck9mU2tld2Vycz86IG51bWJlcjsgLy8gVjIgMDctMDEtMjAyNlxufVxuXG4vLyBWMiBOZXcgQWRkZWQgQ3V0bGVyeVxuZXhwb3J0IGNsYXNzIEN1dGxlcnlJdGVtIHtcbiAgICBAYXR0cmlidXRlKClcbiAgICBjdXRsZXJ5SWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1dGxlcnlOYW1lOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBjdXRsZXJ5UHJpY2U6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1dGxlcnlJbWFnZT86IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1dGxlcnlRdWFudGl0eTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY3V0bGVyeVR5cGU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1dGxlcnlRdWFudGl0eVVuaXQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1dGxlcnlCYXNlUmF0aW86IG51bWJlcjtcbn1cblxuLy8gVjIgTmV3IEFkZGVkIEFkZG9uc1xuZXhwb3J0IGNsYXNzIEFkZG9uc0NhdGVnb3J5IHtcbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeUlkOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeU5hbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1zOiBBZGRvbnNJdGVtc1tdO1xufVxuXG4vLyBWMiBOZXcgQWRkZWQgQWRkb25zXG5leHBvcnQgY2xhc3MgQWRkb25zSXRlbXMge1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZG9uSWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZG9uTmFtZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWRkb25QcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWRkb25JbWFnZT86IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZG9uUXVhbnRpdHk6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZG9uVHlwZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWRkb25RdWFudGl0eVVuaXQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZG9uQmFzZVJhdGlvOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBpc0JvbmVsZXNzSXRlbT86IGJvb2xlYW47IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBib25lSXRlbVByaWNlPzogbnVtYmVyOyAvLyBWMlxufVxuXG5leHBvcnQgY2xhc3MgQ2F0ZWdvcnkge1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5SWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5TmFtZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXNTa2V3ZXJDYXRlZ29yeT86IGJvb2xlYW47IC8vIFYyIDEyLTEyLTIwMjVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5T3JkZXI/OiBudW1iZXI7IC8vIFYyIDE3LTEyLTIwMjVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGlzQ29tYm9DYXRlZ29yeT86IGJvb2xlYW47IC8vIFYyIDE3LTEyLTIwMjVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1zOiBJdGVtW107IC8vIEFycmF5IG9mIEl0ZW0gb2JqZWN0c1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgdmVnSXRlbXM6IEl0ZW1EZXRhaWxzW107IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBwcmVtaXVtVmVnSXRlbXM6IEl0ZW1EZXRhaWxzW107IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBub25WZWdJdGVtczogSXRlbURldGFpbHNbXTsgLy8gVjJcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHByZW1pdW1Ob25WZWdJdGVtczogSXRlbURldGFpbHNbXTsgLy8gVjJcbn1cblxuZXhwb3J0IGNsYXNzIEl0ZW0ge1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1JZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXRlbU5hbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1QcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXRlbVR5cGU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1RdWFudGl0eTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYmFzZVJhdGlvOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBxdWFudGl0eVVuaXQ6IHN0cmluZztcbn1cblxuZXhwb3J0IGNsYXNzIEl0ZW1EZXRhaWxzIHtcbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtSWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1OYW1lOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtUHJpY2U6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1UeXBlOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtSW1hZ2U/OiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtUXVhbnRpdHk6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGJhc2VSYXRpbzogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcXVhbnRpdHlVbml0OiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBpc0JvbmVsZXNzSXRlbT86IGJvb2xlYW47IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBib25lSXRlbVByaWNlPzogbnVtYmVyOyAvLyBWMlxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWNjb21wYW5pbWVudHM6IEFjY29tcGFuaW1lbnRzRGV0YWlsc1tdO1xufVxuXG5leHBvcnQgY2xhc3MgQWNjb21wYW5pbWVudHNEZXRhaWxzIHtcbiAgICBAYXR0cmlidXRlKClcbiAgICBhY2NvbXBhbmltZW50SWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFjY29tcGFuaW1lbnROYW1lOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBhY2NvbXBhbmltZW50VHlwZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXNGcmVlOiBib29sZWFuO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaW1hZ2VVcmw/OiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBxdWFudGl0eVVuaXQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFjY29tcGFuaW1lbnRQcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWNjb21wYW5pbWVudFF0eTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYmFzZVJhdGlvOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBpc0JvbmVsZXNzSXRlbT86IGJvb2xlYW47IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBib25lSXRlbVByaWNlPzogbnVtYmVyOyAvLyBWMlxufVxuXG4vLyBleHBvcnQgY2xhc3MgWm9ob0Jvb2tJZHMge1xuLy8gICAgIEBhdHRyaWJ1dGUoKVxuLy8gICAgIHpvaG9PcmRlcklkPzogc3RyaW5nO1xuXG4vLyAgICAgQGF0dHJpYnV0ZSgpXG4vLyAgICAgem9ob0ludm9pY2VJZD86IHN0cmluZztcblxuLy8gICAgIEBhdHRyaWJ1dGUoKVxuLy8gICAgIHpvaG9QYXltZW50SWQ/OiBzdHJpbmdbXTtcbi8vIH0iXX0=