@hitsoft/kadooglu-keops 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/enums/route-names.d.ts +2 -1
- package/esm2020/config/enums/route-names.mjs +1 -1
- package/esm2020/config/providers/route.provider.mjs +10 -1
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-inputs.component.mjs +12 -10
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-results.component.mjs +3 -3
- package/esm2020/lib/features/cost-calculation/components/cost-calculation.component.mjs +86 -31
- package/esm2020/lib/features/cost-calculation/engine/currency.utils.mjs +10 -10
- package/esm2020/lib/features/cost-calculation/engine/formulas.mjs +10 -10
- package/esm2020/lib/features/cost-calculation/engine/item-resolver.mjs +16 -16
- package/esm2020/lib/features/cost-calculation/engine/stage-builder.mjs +8 -8
- package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.mjs +3 -7
- package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.mjs +4 -14
- package/esm2020/lib/features/cost-parameters/components/cost-parameter-form.component.mjs +5 -6
- package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +7 -10
- package/esm2020/lib/features/item-classifications/components/item-classifications.component.mjs +199 -0
- package/esm2020/lib/features/item-classifications/hit-item-classifications-routing.module.mjs +29 -0
- package/esm2020/lib/features/item-classifications/hit-item-classifications.module.mjs +60 -0
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-items.component.mjs +6 -6
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-price-lists.component.mjs +6 -6
- package/esm2020/lib/features/price-parameters/components/price-parameter-form.component.mjs +114 -46
- package/esm2020/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.mjs +26 -0
- package/esm2020/lib/features/price-parameters/components/price-parameters.component.mjs +24 -17
- package/esm2020/lib/features/price-parameters/hit-price-parameters.module.mjs +5 -2
- package/esm2020/lib/features/price-parameters/price-parameter-cost-match.service.mjs +3 -3
- package/esm2020/lib/features/price-parameters/price-parameter-form-data.service.mjs +1 -2
- package/esm2020/lib/features/price-parameters/price-parameter-lookups.service.mjs +5 -10
- package/esm2020/lib/features/price-parameters/price-parameter-price-update.service.mjs +119 -0
- package/esm2020/lib/features/settings/components/cost-settings.component.mjs +8 -4
- package/esm2020/lib/kadooglu-keops-routing.module.mjs +3 -1
- package/esm2020/lib/shared/amount-currency-input/amount-currency-input.component.mjs +5 -3
- package/esm2020/lib/shared/cost-item-classification.utils.mjs +5 -2
- package/esm2020/lib/utils/business-region.utils.mjs +12 -0
- package/esm2020/lib/utils/currency.utils.mjs +3 -1
- package/esm2020/proxy/business-region.enum.mjs +9 -0
- package/esm2020/proxy/controllers/index.mjs +2 -1
- package/esm2020/proxy/controllers/item-classification.service.mjs +42 -0
- package/esm2020/proxy/controllers/item.service.mjs +7 -3
- package/esm2020/proxy/controllers/price-list.service.mjs +5 -5
- package/esm2020/proxy/controllers/price-parameter.service.mjs +6 -1
- package/esm2020/proxy/cost-parameter-categories/dtos/models.mjs +1 -1
- package/esm2020/proxy/cost-parameters/dtos/models.mjs +1 -1
- package/esm2020/proxy/item-classifications/dtos/index.mjs +2 -0
- package/esm2020/proxy/item-classifications/dtos/models.mjs +2 -0
- package/esm2020/proxy/price-parameters/dtos/models.mjs +1 -1
- package/esm2020/proxy/public-api.mjs +3 -2
- package/esm2020/proxy/settings/models.mjs +1 -1
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs +9 -0
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs +63 -14
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops.mjs +795 -287
- package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs +9 -0
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs +63 -14
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops.mjs +776 -272
- package/fesm2020/hitsoft-kadooglu-keops.mjs.map +1 -1
- package/lib/features/cost-calculation/components/cost-calculation-inputs.component.d.ts +9 -7
- package/lib/features/cost-calculation/components/cost-calculation.component.d.ts +16 -8
- package/lib/features/cost-calculation/engine/currency.utils.d.ts +2 -2
- package/lib/features/cost-calculation/engine/formulas.d.ts +2 -2
- package/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.d.ts +0 -1
- package/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.d.ts +1 -5
- package/lib/features/cost-parameters/components/cost-parameter-form.component.d.ts +2 -2
- package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +1 -2
- package/lib/features/item-classifications/components/item-classifications.component.d.ts +66 -0
- package/lib/features/item-classifications/hit-item-classifications-routing.module.d.ts +7 -0
- package/lib/features/item-classifications/hit-item-classifications.module.d.ts +17 -0
- package/lib/features/price-parameters/components/price-parameter-form-items.component.d.ts +3 -3
- package/lib/features/price-parameters/components/price-parameter-form-price-lists.component.d.ts +3 -3
- package/lib/features/price-parameters/components/price-parameter-form.component.d.ts +16 -9
- package/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.d.ts +11 -0
- package/lib/features/price-parameters/components/price-parameters.component.d.ts +5 -2
- package/lib/features/price-parameters/hit-price-parameters.module.d.ts +12 -11
- package/lib/features/price-parameters/price-parameter-cost-match.service.d.ts +2 -2
- package/lib/features/price-parameters/price-parameter-form-data.service.d.ts +0 -1
- package/lib/features/price-parameters/price-parameter-lookups.service.d.ts +0 -1
- package/lib/features/price-parameters/price-parameter-price-update.service.d.ts +30 -0
- package/lib/shared/amount-currency-input/amount-currency-input.component.d.ts +2 -2
- package/lib/shared/cost-item-classification.utils.d.ts +5 -1
- package/lib/utils/business-region.utils.d.ts +7 -0
- package/lib/utils/currency.utils.d.ts +1 -0
- package/package.json +1 -1
- package/proxy/business-region.enum.d.ts +6 -0
- package/proxy/controllers/index.d.ts +1 -0
- package/proxy/controllers/item-classification.service.d.ts +17 -0
- package/proxy/controllers/item.service.d.ts +3 -1
- package/proxy/controllers/price-list.service.d.ts +3 -2
- package/proxy/controllers/price-parameter.service.d.ts +2 -1
- package/proxy/cost-parameter-categories/dtos/models.d.ts +0 -4
- package/proxy/cost-parameters/dtos/models.d.ts +4 -3
- package/proxy/item-classifications/dtos/index.d.ts +1 -0
- package/proxy/item-classifications/dtos/models.d.ts +34 -0
- package/proxy/price-parameters/dtos/models.d.ts +38 -12
- package/proxy/public-api.d.ts +2 -1
- package/proxy/settings/models.d.ts +1 -0
- package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +0 -6
- package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +0 -8
- package/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.d.ts +0 -2
- package/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.d.ts +0 -5
|
@@ -6,7 +6,7 @@ import * as i3 from "@abp/ng.core";
|
|
|
6
6
|
export class PriceParameterPriceListsTabComponent {
|
|
7
7
|
constructor(priceListService) {
|
|
8
8
|
this.priceListService = priceListService;
|
|
9
|
-
this.
|
|
9
|
+
this.businessRegion = null;
|
|
10
10
|
this.ppTypeCode = null;
|
|
11
11
|
this.priceLists = [];
|
|
12
12
|
this.loading = false;
|
|
@@ -15,12 +15,12 @@ export class PriceParameterPriceListsTabComponent {
|
|
|
15
15
|
this.load();
|
|
16
16
|
}
|
|
17
17
|
load() {
|
|
18
|
-
if (!this.
|
|
18
|
+
if (!this.businessRegion || !this.ppTypeCode) {
|
|
19
19
|
this.priceLists = [];
|
|
20
20
|
return;
|
|
21
21
|
}
|
|
22
22
|
this.loading = true;
|
|
23
|
-
this.priceListService.getList(this.
|
|
23
|
+
this.priceListService.getList(this.businessRegion, this.ppTypeCode).subscribe({
|
|
24
24
|
next: list => {
|
|
25
25
|
this.priceLists = list ?? [];
|
|
26
26
|
this.loading = false;
|
|
@@ -30,13 +30,13 @@ export class PriceParameterPriceListsTabComponent {
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
PriceParameterPriceListsTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterPriceListsTabComponent, deps: [{ token: i1.PriceListService }], target: i0.ɵɵFactoryTarget.Component });
|
|
33
|
-
PriceParameterPriceListsTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: PriceParameterPriceListsTabComponent, selector: "lib-price-parameter-price-lists-tab", inputs: {
|
|
33
|
+
PriceParameterPriceListsTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: PriceParameterPriceListsTabComponent, selector: "lib-price-parameter-price-lists-tab", inputs: { businessRegion: "businessRegion", ppTypeCode: "ppTypeCode" }, usesOnChanges: true, ngImport: i0, template: "<table class=\"table table-sm align-middle mt-3\">\r\n <thead>\r\n <tr>\r\n <th style=\"width: 140px\">{{ 'Keops::PriceParameters:PriceListNo' | abpLocalization }}</th>\r\n <th>{{ 'Keops::PriceParameters:PriceListName' | abpLocalization }}</th>\r\n <th style=\"width: 120px\">\r\n {{ 'Keops::PriceParameters:PriceListFactor' | abpLocalization }}\r\n </th>\r\n <th>{{ 'Keops::PriceParameters:PriceListBase' | abpLocalization }}</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr *ngFor=\"let priceList of priceLists\">\r\n <td>\r\n <span class=\"badge bg-light text-dark border\">{{ priceList.priceListNo }}</span>\r\n </td>\r\n <td>{{ priceList.priceListName }}</td>\r\n <td>{{ priceList.factor }}</td>\r\n <td>{{ priceList.basePriceListName || '\u2014' }}</td>\r\n </tr>\r\n <tr *ngIf=\"!loading && priceLists.length === 0\">\r\n <td colspan=\"4\" class=\"text-center text-muted py-3\">\r\n {{ 'Keops::PriceParameters:NoData' | abpLocalization }}\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i3.LocalizationPipe, name: "abpLocalization" }] });
|
|
34
34
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterPriceListsTabComponent, decorators: [{
|
|
35
35
|
type: Component,
|
|
36
36
|
args: [{ selector: 'lib-price-parameter-price-lists-tab', template: "<table class=\"table table-sm align-middle mt-3\">\r\n <thead>\r\n <tr>\r\n <th style=\"width: 140px\">{{ 'Keops::PriceParameters:PriceListNo' | abpLocalization }}</th>\r\n <th>{{ 'Keops::PriceParameters:PriceListName' | abpLocalization }}</th>\r\n <th style=\"width: 120px\">\r\n {{ 'Keops::PriceParameters:PriceListFactor' | abpLocalization }}\r\n </th>\r\n <th>{{ 'Keops::PriceParameters:PriceListBase' | abpLocalization }}</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr *ngFor=\"let priceList of priceLists\">\r\n <td>\r\n <span class=\"badge bg-light text-dark border\">{{ priceList.priceListNo }}</span>\r\n </td>\r\n <td>{{ priceList.priceListName }}</td>\r\n <td>{{ priceList.factor }}</td>\r\n <td>{{ priceList.basePriceListName || '\u2014' }}</td>\r\n </tr>\r\n <tr *ngIf=\"!loading && priceLists.length === 0\">\r\n <td colspan=\"4\" class=\"text-center text-muted py-3\">\r\n {{ 'Keops::PriceParameters:NoData' | abpLocalization }}\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n" }]
|
|
37
|
-
}], ctorParameters: function () { return [{ type: i1.PriceListService }]; }, propDecorators: {
|
|
37
|
+
}], ctorParameters: function () { return [{ type: i1.PriceListService }]; }, propDecorators: { businessRegion: [{
|
|
38
38
|
type: Input
|
|
39
39
|
}], ppTypeCode: [{
|
|
40
40
|
type: Input
|
|
41
41
|
}] } });
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
42
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJpY2UtcGFyYW1ldGVyLWZvcm0tcHJpY2UtbGlzdHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Fkb29nbHUta2VvcHMvc3JjL2xpYi9mZWF0dXJlcy9wcmljZS1wYXJhbWV0ZXJzL2NvbXBvbmVudHMvcHJpY2UtcGFyYW1ldGVyLWZvcm0tcHJpY2UtbGlzdHMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Fkb29nbHUta2VvcHMvc3JjL2xpYi9mZWF0dXJlcy9wcmljZS1wYXJhbWV0ZXJzL2NvbXBvbmVudHMvcHJpY2UtcGFyYW1ldGVyLWZvcm0tcHJpY2UtbGlzdHMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQWEsTUFBTSxlQUFlLENBQUM7Ozs7O0FBTzVELE1BQU0sT0FBTyxvQ0FBb0M7SUFPL0MsWUFBNkIsZ0JBQWtDO1FBQWxDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7UUFOdEQsbUJBQWMsR0FBMEIsSUFBSSxDQUFDO1FBQzdDLGVBQVUsR0FBa0IsSUFBSSxDQUFDO1FBRTFDLGVBQVUsR0FBbUIsRUFBRSxDQUFDO1FBQ2hDLFlBQU8sR0FBRyxLQUFLLENBQUM7SUFFa0QsQ0FBQztJQUVuRSxXQUFXO1FBQ1QsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2QsQ0FBQztJQUVPLElBQUk7UUFDVixJQUFJLENBQUMsSUFBSSxDQUFDLGNBQWMsSUFBSSxDQUFDLElBQUksQ0FBQyxVQUFVLEVBQUU7WUFDNUMsSUFBSSxDQUFDLFVBQVUsR0FBRyxFQUFFLENBQUM7WUFDckIsT0FBTztTQUNSO1FBRUQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7UUFDcEIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsY0FBYyxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDNUUsSUFBSSxFQUFFLElBQUksQ0FBQyxFQUFFO2dCQUNYLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxJQUFJLEVBQUUsQ0FBQztnQkFDN0IsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUM7WUFDdkIsQ0FBQztZQUNELEtBQUssRUFBRSxHQUFHLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO1NBQ3BDLENBQUMsQ0FBQztJQUNMLENBQUM7O2lJQTNCVSxvQ0FBb0M7cUhBQXBDLG9DQUFvQyx3S0NQakQsMGtDQTJCQTsyRkRwQmEsb0NBQW9DO2tCQUpoRCxTQUFTOytCQUNFLHFDQUFxQzt1R0FJdEMsY0FBYztzQkFBdEIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25DaGFuZ2VzIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEJ1c2luZXNzUmVnaW9uLCBQcmljZUxpc3REdG8sIFByaWNlTGlzdFNlcnZpY2UgfSBmcm9tICdAaGl0c29mdC9rYWRvb2dsdS1rZW9wcy9wcm94eSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2xpYi1wcmljZS1wYXJhbWV0ZXItcHJpY2UtbGlzdHMtdGFiJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vcHJpY2UtcGFyYW1ldGVyLWZvcm0tcHJpY2UtbGlzdHMuY29tcG9uZW50Lmh0bWwnLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgUHJpY2VQYXJhbWV0ZXJQcmljZUxpc3RzVGFiQ29tcG9uZW50IGltcGxlbWVudHMgT25DaGFuZ2VzIHtcclxuICBASW5wdXQoKSBidXNpbmVzc1JlZ2lvbjogQnVzaW5lc3NSZWdpb24gfCBudWxsID0gbnVsbDtcclxuICBASW5wdXQoKSBwcFR5cGVDb2RlOiBzdHJpbmcgfCBudWxsID0gbnVsbDtcclxuXHJcbiAgcHJpY2VMaXN0czogUHJpY2VMaXN0RHRvW10gPSBbXTtcclxuICBsb2FkaW5nID0gZmFsc2U7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgcHJpY2VMaXN0U2VydmljZTogUHJpY2VMaXN0U2VydmljZSkge31cclxuXHJcbiAgbmdPbkNoYW5nZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLmxvYWQoKTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgbG9hZCgpOiB2b2lkIHtcclxuICAgIGlmICghdGhpcy5idXNpbmVzc1JlZ2lvbiB8fCAhdGhpcy5wcFR5cGVDb2RlKSB7XHJcbiAgICAgIHRoaXMucHJpY2VMaXN0cyA9IFtdO1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcblxyXG4gICAgdGhpcy5sb2FkaW5nID0gdHJ1ZTtcclxuICAgIHRoaXMucHJpY2VMaXN0U2VydmljZS5nZXRMaXN0KHRoaXMuYnVzaW5lc3NSZWdpb24sIHRoaXMucHBUeXBlQ29kZSkuc3Vic2NyaWJlKHtcclxuICAgICAgbmV4dDogbGlzdCA9PiB7XHJcbiAgICAgICAgdGhpcy5wcmljZUxpc3RzID0gbGlzdCA/PyBbXTtcclxuICAgICAgICB0aGlzLmxvYWRpbmcgPSBmYWxzZTtcclxuICAgICAgfSxcclxuICAgICAgZXJyb3I6ICgpID0+ICh0aGlzLmxvYWRpbmcgPSBmYWxzZSksXHJcbiAgICB9KTtcclxuICB9XHJcbn1cclxuIiwiPHRhYmxlIGNsYXNzPVwidGFibGUgdGFibGUtc20gYWxpZ24tbWlkZGxlIG10LTNcIj5cclxuICA8dGhlYWQ+XHJcbiAgICA8dHI+XHJcbiAgICAgIDx0aCBzdHlsZT1cIndpZHRoOiAxNDBweFwiPnt7ICdLZW9wczo6UHJpY2VQYXJhbWV0ZXJzOlByaWNlTGlzdE5vJyB8IGFicExvY2FsaXphdGlvbiB9fTwvdGg+XHJcbiAgICAgIDx0aD57eyAnS2VvcHM6OlByaWNlUGFyYW1ldGVyczpQcmljZUxpc3ROYW1lJyB8IGFicExvY2FsaXphdGlvbiB9fTwvdGg+XHJcbiAgICAgIDx0aCBzdHlsZT1cIndpZHRoOiAxMjBweFwiPlxyXG4gICAgICAgIHt7ICdLZW9wczo6UHJpY2VQYXJhbWV0ZXJzOlByaWNlTGlzdEZhY3RvcicgfCBhYnBMb2NhbGl6YXRpb24gfX1cclxuICAgICAgPC90aD5cclxuICAgICAgPHRoPnt7ICdLZW9wczo6UHJpY2VQYXJhbWV0ZXJzOlByaWNlTGlzdEJhc2UnIHwgYWJwTG9jYWxpemF0aW9uIH19PC90aD5cclxuICAgIDwvdHI+XHJcbiAgPC90aGVhZD5cclxuICA8dGJvZHk+XHJcbiAgICA8dHIgKm5nRm9yPVwibGV0IHByaWNlTGlzdCBvZiBwcmljZUxpc3RzXCI+XHJcbiAgICAgIDx0ZD5cclxuICAgICAgICA8c3BhbiBjbGFzcz1cImJhZGdlIGJnLWxpZ2h0IHRleHQtZGFyayBib3JkZXJcIj57eyBwcmljZUxpc3QucHJpY2VMaXN0Tm8gfX08L3NwYW4+XHJcbiAgICAgIDwvdGQ+XHJcbiAgICAgIDx0ZD57eyBwcmljZUxpc3QucHJpY2VMaXN0TmFtZSB9fTwvdGQ+XHJcbiAgICAgIDx0ZD57eyBwcmljZUxpc3QuZmFjdG9yIH19PC90ZD5cclxuICAgICAgPHRkPnt7IHByaWNlTGlzdC5iYXNlUHJpY2VMaXN0TmFtZSB8fCAn4oCUJyB9fTwvdGQ+XHJcbiAgICA8L3RyPlxyXG4gICAgPHRyICpuZ0lmPVwiIWxvYWRpbmcgJiYgcHJpY2VMaXN0cy5sZW5ndGggPT09IDBcIj5cclxuICAgICAgPHRkIGNvbHNwYW49XCI0XCIgY2xhc3M9XCJ0ZXh0LWNlbnRlciB0ZXh0LW11dGVkIHB5LTNcIj5cclxuICAgICAgICB7eyAnS2VvcHM6OlByaWNlUGFyYW1ldGVyczpOb0RhdGEnIHwgYWJwTG9jYWxpemF0aW9uIH19XHJcbiAgICAgIDwvdGQ+XHJcbiAgICA8L3RyPlxyXG4gIDwvdGJvZHk+XHJcbjwvdGFibGU+XHJcbiJdfQ==
|