brainloper-ui 14.1.4 → 14.1.6
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/esm2020/brainloper-ui.mjs +4 -4
- package/esm2020/public_api.mjs +56 -56
- package/esm2020/src/app/modules/brainloper-ui/brainloper-ui.module.mjs +310 -310
- package/esm2020/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.mjs +29 -29
- package/esm2020/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.mjs +23 -23
- package/esm2020/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.mjs +83 -83
- package/esm2020/src/app/modules/brainloper-ui/components/carousel/carousel.component.mjs +40 -40
- package/esm2020/src/app/modules/brainloper-ui/components/combos/combos.component.mjs +176 -176
- package/esm2020/src/app/modules/brainloper-ui/components/data-table/data-table.component.mjs +728 -728
- package/esm2020/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.mjs +118 -118
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/file-input.component.mjs +186 -186
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/imagenes/doc.mjs +1 -1
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/imagenes/fondoTransparente.mjs +1 -1
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/imagenes/pdf.mjs +1 -1
- package/esm2020/src/app/modules/brainloper-ui/components/filters/filters.component.mjs +222 -222
- package/esm2020/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.mjs +115 -81
- package/esm2020/src/app/modules/brainloper-ui/components/report/template-ot/template-ot.component.mjs +145 -0
- package/esm2020/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.mjs +108 -108
- package/esm2020/src/app/modules/directives/carousel-item.directive.mjs +18 -18
- package/esm2020/src/app/modules/interfaces/buttons/button-icon.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/buttons/button-lavel-edit.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/combos/combos-configuration.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/data-table/params.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/data-table/rules.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/data-table/table-columns.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/data-table/table-configuration.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/enum/enumActions.mjs +8 -8
- package/esm2020/src/app/modules/interfaces/enum/enumRules.mjs +8 -8
- package/esm2020/src/app/modules/interfaces/file-forms-service/file-forms-params.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/file-forms-service/file-input-params.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/filters/header-filters.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/menu-break-crumb/menu-break-crumb.mjs +8 -8
- package/esm2020/src/app/modules/interfaces/report/template-pdf-base.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/report/template-pdf-ot.mjs +2 -2
- package/esm2020/src/app/modules/interfaces/report/template-pfd-fo.mjs +2 -2
- package/esm2020/src/app/modules/services/crypto.service.mjs +37 -37
- package/esm2020/src/app/modules/services/export-data.service.mjs +166 -166
- package/esm2020/src/app/modules/services/file-forms.service.mjs +24 -24
- package/esm2020/src/app/modules/services/fuel-order-pdf.service.mjs +528 -0
- package/esm2020/src/app/modules/services/functions.service.mjs +54 -54
- package/esm2020/src/app/modules/services/generate-pdf.service.mjs +109 -58
- package/esm2020/src/app/modules/services/http.service.mjs +97 -97
- package/esm2020/src/app/modules/services/loading/loading.component.mjs +28 -28
- package/esm2020/src/app/modules/services/local-storage.service.mjs +115 -115
- package/esm2020/src/app/modules/services/message.service.mjs +200 -200
- package/esm2020/src/app/modules/services/screen-size-util.mjs +6 -6
- package/esm2020/src/app/modules/services/session.service.mjs +42 -42
- package/esm2020/src/app/modules/services/work-order-pdf.service.mjs +384 -0
- package/fesm2015/brainloper-ui.mjs +3859 -2818
- package/fesm2015/brainloper-ui.mjs.map +1 -1
- package/fesm2020/brainloper-ui.mjs +3831 -2780
- package/fesm2020/brainloper-ui.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/package.json +3 -2
- package/public_api.d.ts +55 -55
- package/src/app/modules/brainloper-ui/brainloper-ui.module.d.ts +62 -62
- package/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.d.ts +13 -13
- package/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.d.ts +10 -10
- package/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.d.ts +24 -24
- package/src/app/modules/brainloper-ui/components/carousel/carousel.component.d.ts +16 -16
- package/src/app/modules/brainloper-ui/components/combos/combos.component.d.ts +46 -46
- package/src/app/modules/brainloper-ui/components/data-table/data-table.component.d.ts +125 -125
- package/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.d.ts +21 -21
- package/src/app/modules/brainloper-ui/components/file-input/file-input.component.d.ts +42 -42
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/doc.d.ts +2 -2
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/fondoTransparente.d.ts +2 -2
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/pdf.d.ts +2 -2
- package/src/app/modules/brainloper-ui/components/filters/filters.component.d.ts +30 -30
- package/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.d.ts +41 -36
- package/src/app/modules/brainloper-ui/components/report/{generate-pdf/generate-pdf.component.d.ts → template-ot/template-ot.component.d.ts} +40 -35
- package/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.d.ts +26 -26
- package/src/app/modules/directives/carousel-item.directive.d.ts +9 -9
- package/src/app/modules/interfaces/buttons/button-icon.d.ts +9 -9
- package/src/app/modules/interfaces/buttons/button-lavel-edit.d.ts +6 -6
- package/src/app/modules/interfaces/combos/combos-configuration.d.ts +13 -13
- package/src/app/modules/interfaces/data-table/params.d.ts +7 -7
- package/src/app/modules/interfaces/data-table/rules.d.ts +8 -8
- package/src/app/modules/interfaces/data-table/table-columns.d.ts +25 -25
- package/src/app/modules/interfaces/data-table/table-configuration.d.ts +26 -26
- package/src/app/modules/interfaces/enum/enumActions.d.ts +6 -6
- package/src/app/modules/interfaces/enum/enumRules.d.ts +6 -6
- package/src/app/modules/interfaces/file-forms-service/file-forms-params.d.ts +4 -4
- package/src/app/modules/interfaces/file-forms-service/file-input-params.d.ts +13 -13
- package/src/app/modules/interfaces/filters/header-filters.d.ts +13 -13
- package/src/app/modules/interfaces/menu-break-crumb/menu-break-crumb.d.ts +10 -10
- package/src/app/modules/interfaces/report/template-pdf-base.d.ts +17 -0
- package/src/app/modules/interfaces/report/template-pdf-ot.d.ts +6 -19
- package/src/app/modules/interfaces/report/template-pfd-fo.d.ts +7 -20
- package/src/app/modules/services/crypto.service.d.ts +10 -10
- package/src/app/modules/services/export-data.service.d.ts +18 -18
- package/src/app/modules/services/file-forms.service.d.ts +7 -7
- package/src/app/modules/services/fuel-order-pdf.service.d.ts +59 -0
- package/src/app/modules/services/functions.service.d.ts +13 -13
- package/src/app/modules/services/generate-pdf.service.d.ts +21 -12
- package/src/app/modules/services/http.service.d.ts +22 -22
- package/src/app/modules/services/loading/loading.component.d.ts +15 -15
- package/src/app/modules/services/local-storage.service.d.ts +49 -49
- package/src/app/modules/services/message.service.d.ts +23 -23
- package/src/app/modules/services/screen-size-util.d.ts +3 -3
- package/src/app/modules/services/session.service.d.ts +14 -14
- package/src/app/modules/services/work-order-pdf.service.d.ts +60 -0
- package/esm2020/src/app/modules/brainloper-ui/components/report/generate-pdf/generate-pdf.component.mjs +0 -80
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public_api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public_api';
|
|
5
5
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJhaW5sb3Blci11aS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2JyYWlubG9wZXItdWkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWNfYXBpJztcbiJdfQ==
|
package/esm2020/public_api.mjs
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @modules
|
|
3
|
-
* exportacion de modulos adjuntos a brainloper
|
|
4
|
-
*/
|
|
5
|
-
export * from './src/app/modules/brainloper-ui/brainloper-ui.module';
|
|
6
|
-
/**
|
|
7
|
-
* @Component */
|
|
8
|
-
export * from './src/app/modules/brainloper-ui/components/combos/combos.component';
|
|
9
|
-
export * from './src/app/modules/brainloper-ui/components/data-table/data-table.component';
|
|
10
|
-
export * from './src/app/modules/brainloper-ui/components/file-input/file-input.component';
|
|
11
|
-
export * from './src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component';
|
|
12
|
-
export * from './src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component';
|
|
13
|
-
export * from './src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component';
|
|
14
|
-
export * from './src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component';
|
|
15
|
-
export * from './src/app/modules/brainloper-ui/components/carousel/carousel.component';
|
|
16
|
-
export * from './src/app/modules/brainloper-ui/components/filters/filters.component';
|
|
17
|
-
export * from './src/app/modules/brainloper-ui/components/select-filter/select-filter.component';
|
|
18
|
-
/**
|
|
19
|
-
* @directives
|
|
20
|
-
* Exportación de las directivas disponibles en Brainloper
|
|
21
|
-
*/
|
|
22
|
-
export * from './src/app/modules/directives/carousel-item.directive';
|
|
23
|
-
/**
|
|
24
|
-
* @services
|
|
25
|
-
* exportacion de los servicios creados para brainloper
|
|
26
|
-
*/
|
|
27
|
-
export * from './src/app/modules/services/crypto.service';
|
|
28
|
-
export * from './src/app/modules/services/message.service';
|
|
29
|
-
export * from './src/app/modules/services/session.service';
|
|
30
|
-
export * from './src/app/modules/services/http.service';
|
|
31
|
-
export * from './src/app/modules/services/file-forms.service';
|
|
32
|
-
export * from './src/app/modules/services/functions.service';
|
|
33
|
-
export * from './src/app/modules/services/loading/loading.component';
|
|
34
|
-
export * from './src/app/modules/services/generate-pdf.service';
|
|
35
|
-
export * from './src/app/modules/services/local-storage.service';
|
|
36
|
-
export * from './src/app/modules/services/export-data.service';
|
|
37
|
-
export * from './src/app/modules/services/screen-size-util';
|
|
38
|
-
/**
|
|
39
|
-
* @intefaces
|
|
40
|
-
* exportacion de las interfaces utilizadas por brainloper para facilitar la codificacion
|
|
41
|
-
*/
|
|
42
|
-
export * from './src/app/modules/interfaces/data-table/table-columns';
|
|
43
|
-
export * from './src/app/modules/interfaces/report/template-pdf-ot';
|
|
44
|
-
export * from './src/app/modules/interfaces/data-table/table-configuration';
|
|
45
|
-
export * from './src/app/modules/interfaces/combos/combos-configuration';
|
|
46
|
-
export * from './src/app/modules/interfaces/file-forms-service/file-forms-params';
|
|
47
|
-
export * from './src/app/modules/interfaces/data-table/params';
|
|
48
|
-
export * from './src/app/modules/interfaces/file-forms-service/file-input-params';
|
|
49
|
-
export * from './src/app/modules/interfaces/menu-break-crumb/menu-break-crumb';
|
|
50
|
-
export * from './src/app/modules/interfaces/filters/header-filters';
|
|
51
|
-
export * from './src/app/modules/interfaces/buttons/button-lavel-edit';
|
|
52
|
-
export * from './src/app/modules/interfaces/buttons/button-icon';
|
|
53
|
-
export * from './src/app/modules/interfaces/data-table/rules';
|
|
54
|
-
export * from './src/app/modules/interfaces/enum/enumActions';
|
|
55
|
-
export * from './src/app/modules/interfaces/enum/enumRules';
|
|
56
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/**
|
|
2
|
+
* @modules
|
|
3
|
+
* exportacion de modulos adjuntos a brainloper
|
|
4
|
+
*/
|
|
5
|
+
export * from './src/app/modules/brainloper-ui/brainloper-ui.module';
|
|
6
|
+
/**
|
|
7
|
+
* @Component */
|
|
8
|
+
export * from './src/app/modules/brainloper-ui/components/combos/combos.component';
|
|
9
|
+
export * from './src/app/modules/brainloper-ui/components/data-table/data-table.component';
|
|
10
|
+
export * from './src/app/modules/brainloper-ui/components/file-input/file-input.component';
|
|
11
|
+
export * from './src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component';
|
|
12
|
+
export * from './src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component';
|
|
13
|
+
export * from './src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component';
|
|
14
|
+
export * from './src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component';
|
|
15
|
+
export * from './src/app/modules/brainloper-ui/components/carousel/carousel.component';
|
|
16
|
+
export * from './src/app/modules/brainloper-ui/components/filters/filters.component';
|
|
17
|
+
export * from './src/app/modules/brainloper-ui/components/select-filter/select-filter.component';
|
|
18
|
+
/**
|
|
19
|
+
* @directives
|
|
20
|
+
* Exportación de las directivas disponibles en Brainloper
|
|
21
|
+
*/
|
|
22
|
+
export * from './src/app/modules/directives/carousel-item.directive';
|
|
23
|
+
/**
|
|
24
|
+
* @services
|
|
25
|
+
* exportacion de los servicios creados para brainloper
|
|
26
|
+
*/
|
|
27
|
+
export * from './src/app/modules/services/crypto.service';
|
|
28
|
+
export * from './src/app/modules/services/message.service';
|
|
29
|
+
export * from './src/app/modules/services/session.service';
|
|
30
|
+
export * from './src/app/modules/services/http.service';
|
|
31
|
+
export * from './src/app/modules/services/file-forms.service';
|
|
32
|
+
export * from './src/app/modules/services/functions.service';
|
|
33
|
+
export * from './src/app/modules/services/loading/loading.component';
|
|
34
|
+
export * from './src/app/modules/services/generate-pdf.service';
|
|
35
|
+
export * from './src/app/modules/services/local-storage.service';
|
|
36
|
+
export * from './src/app/modules/services/export-data.service';
|
|
37
|
+
export * from './src/app/modules/services/screen-size-util';
|
|
38
|
+
/**
|
|
39
|
+
* @intefaces
|
|
40
|
+
* exportacion de las interfaces utilizadas por brainloper para facilitar la codificacion
|
|
41
|
+
*/
|
|
42
|
+
export * from './src/app/modules/interfaces/data-table/table-columns';
|
|
43
|
+
export * from './src/app/modules/interfaces/report/template-pdf-ot';
|
|
44
|
+
export * from './src/app/modules/interfaces/data-table/table-configuration';
|
|
45
|
+
export * from './src/app/modules/interfaces/combos/combos-configuration';
|
|
46
|
+
export * from './src/app/modules/interfaces/file-forms-service/file-forms-params';
|
|
47
|
+
export * from './src/app/modules/interfaces/data-table/params';
|
|
48
|
+
export * from './src/app/modules/interfaces/file-forms-service/file-input-params';
|
|
49
|
+
export * from './src/app/modules/interfaces/menu-break-crumb/menu-break-crumb';
|
|
50
|
+
export * from './src/app/modules/interfaces/filters/header-filters';
|
|
51
|
+
export * from './src/app/modules/interfaces/buttons/button-lavel-edit';
|
|
52
|
+
export * from './src/app/modules/interfaces/buttons/button-icon';
|
|
53
|
+
export * from './src/app/modules/interfaces/data-table/rules';
|
|
54
|
+
export * from './src/app/modules/interfaces/enum/enumActions';
|
|
55
|
+
export * from './src/app/modules/interfaces/enum/enumRules';
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUE7OztHQUdHO0FBQ0gsY0FBYyxzREFBc0QsQ0FBQztBQUVyRTtrQkFDa0I7QUFFakIsY0FBYyxvRUFBb0UsQ0FBQztBQUNuRixjQUFjLDRFQUE0RSxDQUFDO0FBQzNGLGNBQWMsNEVBQTRFLENBQUM7QUFDM0YsY0FBYyx5RkFBeUYsQ0FBQztBQUN4RyxjQUFjLDhFQUE4RSxDQUFDO0FBQzdGLGNBQWMsd0ZBQXdGLENBQUM7QUFDdkcsY0FBYyxzRkFBc0YsQ0FBQztBQUNyRyxjQUFjLHdFQUF3RSxDQUFDO0FBQ3ZGLGNBQWMsc0VBQXNFLENBQUM7QUFDckYsY0FBYyxrRkFBa0YsQ0FBQztBQUVsRzs7O0dBR0c7QUFDSCxjQUFjLHNEQUFzRCxDQUFDO0FBRXJFOzs7R0FHRztBQUNILGNBQWMsMkNBQTJDLENBQUM7QUFDMUQsY0FBYyw0Q0FBNEMsQ0FBQztBQUMzRCxjQUFjLDRDQUE0QyxDQUFDO0FBQzNELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYywrQ0FBK0MsQ0FBQztBQUM5RCxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsc0RBQXNELENBQUM7QUFDckUsY0FBYyxpREFBaUQsQ0FBQztBQUNoRSxjQUFjLGtEQUFrRCxDQUFDO0FBQ2pFLGNBQWMsZ0RBQWdELENBQUM7QUFDL0QsY0FBYyw2Q0FBNkMsQ0FBQztBQUk1RDs7O0dBR0c7QUFDSCxjQUFjLHVEQUF1RCxDQUFDO0FBQ3RFLGNBQWMscURBQXFELENBQUM7QUFDcEUsY0FBYyw2REFBNkQsQ0FBQztBQUM1RSxjQUFjLDBEQUEwRCxDQUFDO0FBQ3pFLGNBQWMsbUVBQW1FLENBQUM7QUFDbEYsY0FBYyxnREFBZ0QsQ0FBQztBQUMvRCxjQUFjLG1FQUFtRSxDQUFDO0FBQ2xGLGNBQWMsZ0VBQWdFLENBQUM7QUFDL0UsY0FBYyxxREFBcUQsQ0FBQztBQUNwRSxjQUFjLHdEQUF3RCxDQUFDO0FBQ3ZFLGNBQWMsa0RBQWtELENBQUM7QUFDakUsY0FBYywrQ0FBK0MsQ0FBQztBQUM5RCxjQUFjLCtDQUErQyxDQUFDO0FBQzlELGNBQWMsNkNBQTZDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJcclxuXHJcbi8qKlxyXG4gKiBAbW9kdWxlc1xyXG4gKiBleHBvcnRhY2lvbiBkZSBtb2R1bG9zIGFkanVudG9zIGEgYnJhaW5sb3BlclxyXG4gKi9cclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvYnJhaW5sb3Blci11aS9icmFpbmxvcGVyLXVpLm1vZHVsZSc7XHJcblxyXG4vKipcclxuICogICBAQ29tcG9uZW50ICovXHJcblxyXG4gZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvYnJhaW5sb3Blci11aS9jb21wb25lbnRzL2NvbWJvcy9jb21ib3MuY29tcG9uZW50JztcclxuIGV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2JyYWlubG9wZXItdWkvY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtdGFibGUuY29tcG9uZW50JztcclxuIGV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2JyYWlubG9wZXItdWkvY29tcG9uZW50cy9maWxlLWlucHV0L2ZpbGUtaW5wdXQuY29tcG9uZW50JztcclxuIGV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2JyYWlubG9wZXItdWkvY29tcG9uZW50cy9kYXRhLXRhYmxlL3RhYmxlLW1vZGFsL3RhYmxlLW1vZGFsLmNvbXBvbmVudCc7XHJcbiBleHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9icmFpbmxvcGVyLXVpL2NvbXBvbmVudHMvYnJlYWQtY3J1bWIvYnJlYWQtY3J1bWIuY29tcG9uZW50JztcclxuIGV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2JyYWlubG9wZXItdWkvY29tcG9uZW50cy9idXR0b25zL2J1dHRvbi1sYWJlbC9idXR0b24tbGFiZWwuY29tcG9uZW50JztcclxuIGV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2JyYWlubG9wZXItdWkvY29tcG9uZW50cy9idXR0b25zL2J1dHRvbi1pY29uL2J1dHRvbi1pY29uLmNvbXBvbmVudCc7XHJcbiBleHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9icmFpbmxvcGVyLXVpL2NvbXBvbmVudHMvY2Fyb3VzZWwvY2Fyb3VzZWwuY29tcG9uZW50JztcclxuIGV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2JyYWlubG9wZXItdWkvY29tcG9uZW50cy9maWx0ZXJzL2ZpbHRlcnMuY29tcG9uZW50JztcclxuIGV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2JyYWlubG9wZXItdWkvY29tcG9uZW50cy9zZWxlY3QtZmlsdGVyL3NlbGVjdC1maWx0ZXIuY29tcG9uZW50JztcclxuXHJcbi8qKlxyXG4gKiBAZGlyZWN0aXZlc1xyXG4gKiBFeHBvcnRhY2nDs24gZGUgbGFzIGRpcmVjdGl2YXMgZGlzcG9uaWJsZXMgZW4gQnJhaW5sb3BlclxyXG4gKi9cclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvZGlyZWN0aXZlcy9jYXJvdXNlbC1pdGVtLmRpcmVjdGl2ZSc7XHJcblxyXG4vKipcclxuICogQHNlcnZpY2VzXHJcbiAqIGV4cG9ydGFjaW9uIGRlIGxvcyBzZXJ2aWNpb3MgY3JlYWRvcyBwYXJhIGJyYWlubG9wZXJcclxuICovXHJcbmV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL3NlcnZpY2VzL2NyeXB0by5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvc2VydmljZXMvc2Vzc2lvbi5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvc2VydmljZXMvaHR0cC5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvc2VydmljZXMvZmlsZS1mb3Jtcy5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvc2VydmljZXMvZnVuY3Rpb25zLnNlcnZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9zZXJ2aWNlcy9sb2FkaW5nL2xvYWRpbmcuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvc2VydmljZXMvZ2VuZXJhdGUtcGRmLnNlcnZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9zZXJ2aWNlcy9sb2NhbC1zdG9yYWdlLnNlcnZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9zZXJ2aWNlcy9leHBvcnQtZGF0YS5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvc2VydmljZXMvc2NyZWVuLXNpemUtdXRpbCc7XHJcblxyXG5cclxuXHJcbi8qKlxyXG4gKiBAaW50ZWZhY2VzXHJcbiAqIGV4cG9ydGFjaW9uIGRlIGxhcyBpbnRlcmZhY2VzIHV0aWxpemFkYXMgcG9yIGJyYWlubG9wZXIgcGFyYSBmYWNpbGl0YXIgbGEgY29kaWZpY2FjaW9uXHJcbiAqL1xyXG5leHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9pbnRlcmZhY2VzL2RhdGEtdGFibGUvdGFibGUtY29sdW1ucyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2ludGVyZmFjZXMvcmVwb3J0L3RlbXBsYXRlLXBkZi1vdCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2ludGVyZmFjZXMvZGF0YS10YWJsZS90YWJsZS1jb25maWd1cmF0aW9uJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvaW50ZXJmYWNlcy9jb21ib3MvY29tYm9zLWNvbmZpZ3VyYXRpb24nO1xyXG5leHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9pbnRlcmZhY2VzL2ZpbGUtZm9ybXMtc2VydmljZS9maWxlLWZvcm1zLXBhcmFtcyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2ludGVyZmFjZXMvZGF0YS10YWJsZS9wYXJhbXMnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NyYy9hcHAvbW9kdWxlcy9pbnRlcmZhY2VzL2ZpbGUtZm9ybXMtc2VydmljZS9maWxlLWlucHV0LXBhcmFtcyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc3JjL2FwcC9tb2R1bGVzL2ludGVyZmFjZXMvbWVudS1icmVhay1jcnVtYi9tZW51LWJyZWFrLWNydW1iJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvaW50ZXJmYWNlcy9maWx0ZXJzL2hlYWRlci1maWx0ZXJzJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvaW50ZXJmYWNlcy9idXR0b25zL2J1dHRvbi1sYXZlbC1lZGl0JztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvaW50ZXJmYWNlcy9idXR0b25zL2J1dHRvbi1pY29uJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvaW50ZXJmYWNlcy9kYXRhLXRhYmxlL3J1bGVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvaW50ZXJmYWNlcy9lbnVtL2VudW1BY3Rpb25zJztcclxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBwL21vZHVsZXMvaW50ZXJmYWNlcy9lbnVtL2VudW1SdWxlcyc7XHJcbiJdfQ==
|