@senior-gestao-empresarial/erpx-components 0.0.0-develop-3bab051d
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/bundles/senior-gestao-empresarial-erpx-components.umd.js +37665 -0
- package/bundles/senior-gestao-empresarial-erpx-components.umd.js.map +1 -0
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js +17 -0
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js.map +1 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +21 -0
- package/components/breadcrumb/breadcrumb.module.d.ts +2 -0
- package/components/breadcrumb/index.d.ts +2 -0
- package/components/focus/focus.service.d.ts +4 -0
- package/components/lote-serie/erp-lote-serie.component.d.ts +183 -0
- package/components/lote-serie/erp-lote-serie.module.d.ts +2 -0
- package/components/lote-serie/erp-lote-serie.service.d.ts +137 -0
- package/components/lote-serie/index.d.ts +2 -0
- package/components/rateio-editor/erp-rateio-editor.component.d.ts +202 -0
- package/components/rateio-editor/erp-rateio-editor.converter.d.ts +18 -0
- package/components/rateio-editor/erp-rateio-editor.module.d.ts +2 -0
- package/components/rateio-editor/erp-rateio-editor.service.d.ts +17 -0
- package/components/rateio-editor/erp-rateio-editor.types.d.ts +171 -0
- package/components/rateio-editor/index.d.ts +4 -0
- package/components/resumo/erp-resumo.component.d.ts +17 -0
- package/components/resumo/erp-resumo.module.d.ts +2 -0
- package/components/resumo/erp-resumo.service.d.ts +2 -0
- package/components/resumo/index.d.ts +2 -0
- package/components/tributos/calculators/effective-tax-rate-calculator.d.ts +34 -0
- package/components/tributos/calculators/gross-amount-calculator.d.ts +20 -0
- package/components/tributos/calculators/tax-amount-calculator.d.ts +54 -0
- package/components/tributos/erp-tributos.component.d.ts +215 -0
- package/components/tributos/erp-tributos.module.d.ts +2 -0
- package/components/tributos/erp-tributos.service.d.ts +10 -0
- package/components/tributos/erp-tributos.types.d.ts +286 -0
- package/components/tributos/index.d.ts +12 -0
- package/components/tributos/mappings/enum-tip-imp-cst-mapping.d.ts +2 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/calculation-rules.registry.d.ts +15 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.d.ts +28 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.d.ts +30 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.d.ts +22 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/sale-order-calculation-rules.registry.d.ts +22 -0
- package/components/tributos/rules/calculation/rules/apply-net-value-to-document-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/assessment-period-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/effective-tax-rate-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/calculation/rules/gross-amount-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/calculation/rules/manual-tax-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/calculation/rules/tax-calculation-type-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/tax-classification-calculation-rule.d.ts +6 -0
- package/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/tax-situation-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/rules.service.d.ts +19 -0
- package/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.d.ts +16 -0
- package/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.d.ts +12 -0
- package/components/tributos/rules/status/registries/purchase-order-status-rules.registry.d.ts +12 -0
- package/components/tributos/rules/status/registries/sale-order-status-rules.registry.d.ts +8 -0
- package/components/tributos/rules/status/registries/status-rules.registry.d.ts +15 -0
- package/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.d.ts +5 -0
- package/components/tributos/rules/status/rules/tax-classification-status-rule.d.ts +5 -0
- package/components/tributos/rules/status/rules/tax-rate-status-rule.d.ts +5 -0
- package/components/tributos/rules/status/rules/taxable-base-status-rule.d.ts +5 -0
- package/components/tributos/rules/types/available-fields.d.ts +2 -0
- package/components/tributos/rules/types/available-taxes.d.ts +1 -0
- package/components/tributos/rules/types/field-calculation-rule-mapping.d.ts +6 -0
- package/components/tributos/rules/types/field-rule-mapping.d.ts +6 -0
- package/components/tributos/rules/types/field-status-rule-mapping.d.ts +6 -0
- package/components/tributos/rules/types/rule-payload.d.ts +9 -0
- package/components/tributos/rules/types/schemas/incoming-invoice.schema.d.ts +235 -0
- package/components/tributos/rules/types/schemas/outgoing-invoice.schema.d.ts +349 -0
- package/components/tributos/rules/types/schemas/purchase-order.schema.d.ts +26 -0
- package/components/tributos/rules/types/schemas/sale-order.schema.d.ts +131 -0
- package/components/tributos/rules/types/strategies-by-document.d.ts +12 -0
- package/components/tributos/rules/types/strategies.d.ts +4 -0
- package/components/tributos/rules/types/tax-rule.d.ts +4 -0
- package/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.d.ts +20 -0
- package/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.d.ts +22 -0
- package/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.d.ts +14 -0
- package/components/tributos/rules/validation/registries/sale-order-validation-rules.registry.d.ts +14 -0
- package/components/tributos/rules/validation/registries/validation-rules.registry.d.ts +15 -0
- package/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/assessment-period-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/tax-classification-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.d.ts +6 -0
- package/components/tributos/rules/validation/rules/required/tax-situation-required-validation-rule.d.ts +6 -0
- package/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.d.ts +6 -0
- package/components/tributos/services/tax-rounding.service.d.ts +5 -0
- package/components/tributos/stores/tax.store.d.ts +10 -0
- package/components/tributos/tax-reform-utilities.d.ts +36 -0
- package/components/tributos/types/context.d.ts +7 -0
- package/components/tributos/types/controllership-incoming-invoice-context.d.ts +5 -0
- package/components/tributos/types/controllership-incoming-invoice.d.ts +3 -0
- package/components/tributos/types/controllership-outgoing-invoice-context.d.ts +5 -0
- package/components/tributos/types/controllership-outgoing-invoice.d.ts +3 -0
- package/components/tributos/types/credit-invoice-type.d.ts +1 -0
- package/components/tributos/types/debit-invoice-type.d.ts +1 -0
- package/components/tributos/types/group.d.ts +6 -0
- package/components/tributos/types/incoming-invoice-context.d.ts +5 -0
- package/components/tributos/types/incoming-invoice-item.d.ts +4 -0
- package/components/tributos/types/incoming-invoice-type.d.ts +1 -0
- package/components/tributos/types/incoming-invoice.d.ts +11 -0
- package/components/tributos/types/item-type.d.ts +1 -0
- package/components/tributos/types/outgoing-Invoice.d.ts +11 -0
- package/components/tributos/types/outgoing-invoice-context.d.ts +5 -0
- package/components/tributos/types/outgoing-invoice-item.d.ts +4 -0
- package/components/tributos/types/outgoing-invoice-type.d.ts +1 -0
- package/components/tributos/types/purchase-order-context.d.ts +5 -0
- package/components/tributos/types/purchase-order-type.d.ts +1 -0
- package/components/tributos/types/purchase-order.d.ts +8 -0
- package/components/tributos/types/sale-order-context.d.ts +5 -0
- package/components/tributos/types/sale-order-type.d.ts +1 -0
- package/components/tributos/types/sale-order.d.ts +8 -0
- package/components/tributos/types/tax.d.ts +8 -0
- package/components/utils/breakpoints.d.ts +10 -0
- package/components/utils/export-utils.d.ts +6 -0
- package/components/utils/index.d.ts +3 -0
- package/components/utils/loading-context.d.ts +7 -0
- package/components/utils/utils.d.ts +4 -0
- package/core/entities/entity-service.d.ts +32 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda-dto.d.ts +36 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.d.ts +40 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.module.d.ts +2 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.service.d.ts +11 -0
- package/core/enums/enum-classificacao-tributaria.d.ts +4 -0
- package/core/enums/enum-tipo-calculo-imposto.d.ts +5 -0
- package/core/enums/enum-tipo-documento-parametros.d.ts +7 -0
- package/core/enums/enum-tipo-documento.d.ts +10 -0
- package/core/enums/erpx-com-processo-faturamento-backend/enum-indicativo-padrao.d.ts +5 -0
- package/core/enums/erpx-cpl-imp-cadastros-backend/enum-indicativo-padrao.d.ts +8 -0
- package/esm2015/components/breadcrumb/breadcrumb.component.js +86 -0
- package/esm2015/components/breadcrumb/breadcrumb.module.js +17 -0
- package/esm2015/components/breadcrumb/index.js +3 -0
- package/esm2015/components/focus/focus.service.js +32 -0
- package/esm2015/components/lote-serie/erp-lote-serie.component.js +1772 -0
- package/esm2015/components/lote-serie/erp-lote-serie.module.js +47 -0
- package/esm2015/components/lote-serie/erp-lote-serie.service.js +94 -0
- package/esm2015/components/lote-serie/index.js +3 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.component.js +794 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.converter.js +52 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.module.js +40 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.service.js +49 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.types.js +5 -0
- package/esm2015/components/rateio-editor/index.js +4 -0
- package/esm2015/components/resumo/erp-resumo.component.js +19 -0
- package/esm2015/components/resumo/erp-resumo.module.js +25 -0
- package/esm2015/components/resumo/erp-resumo.service.js +13 -0
- package/esm2015/components/resumo/index.js +2 -0
- package/esm2015/components/tributos/calculators/effective-tax-rate-calculator.js +53 -0
- package/esm2015/components/tributos/calculators/gross-amount-calculator.js +37 -0
- package/esm2015/components/tributos/calculators/tax-amount-calculator.js +87 -0
- package/esm2015/components/tributos/erp-tributos.component.js +5176 -0
- package/esm2015/components/tributos/erp-tributos.module.js +33 -0
- package/esm2015/components/tributos/erp-tributos.service.js +23 -0
- package/esm2015/components/tributos/erp-tributos.types.js +268 -0
- package/esm2015/components/tributos/index.js +4 -0
- package/esm2015/components/tributos/mappings/enum-tip-imp-cst-mapping.js +33 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/calculation-rules.registry.js +45 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +3102 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.js +4516 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.js +294 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/sale-order-calculation-rules.registry.js +1464 -0
- package/esm2015/components/tributos/rules/calculation/rules/apply-net-value-to-document-calculation-rule.js +48 -0
- package/esm2015/components/tributos/rules/calculation/rules/assessment-period-calculation-rule.js +55 -0
- package/esm2015/components/tributos/rules/calculation/rules/effective-tax-rate-calculation-rule.js +83 -0
- package/esm2015/components/tributos/rules/calculation/rules/gross-amount-calculation-rule.js +74 -0
- package/esm2015/components/tributos/rules/calculation/rules/manual-tax-calculation-rule.js +72 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.js +244 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-calculation-type-calculation-rule.js +74 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-classification-calculation-rule.js +170 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.js +100 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-situation-calculation-rule.js +124 -0
- package/esm2015/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.js +292 -0
- package/esm2015/components/tributos/rules/rules.service.js +61 -0
- package/esm2015/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +1076 -0
- package/esm2015/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +1317 -0
- package/esm2015/components/tributos/rules/status/registries/purchase-order-status-rules.registry.js +62 -0
- package/esm2015/components/tributos/rules/status/registries/sale-order-status-rules.registry.js +18 -0
- package/esm2015/components/tributos/rules/status/registries/status-rules.registry.js +45 -0
- package/esm2015/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.js +39 -0
- package/esm2015/components/tributos/rules/status/rules/tax-classification-status-rule.js +94 -0
- package/esm2015/components/tributos/rules/status/rules/tax-rate-status-rule.js +61 -0
- package/esm2015/components/tributos/rules/status/rules/taxable-base-status-rule.js +65 -0
- package/esm2015/components/tributos/rules/types/available-fields.js +1 -0
- package/esm2015/components/tributos/rules/types/available-taxes.js +1 -0
- package/esm2015/components/tributos/rules/types/field-calculation-rule-mapping.js +1 -0
- package/esm2015/components/tributos/rules/types/field-rule-mapping.js +1 -0
- package/esm2015/components/tributos/rules/types/field-status-rule-mapping.js +1 -0
- package/esm2015/components/tributos/rules/types/rule-payload.js +1 -0
- package/esm2015/components/tributos/rules/types/schemas/incoming-invoice.schema.js +1816 -0
- package/esm2015/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +2750 -0
- package/esm2015/components/tributos/rules/types/schemas/purchase-order.schema.js +150 -0
- package/esm2015/components/tributos/rules/types/schemas/sale-order.schema.js +879 -0
- package/esm2015/components/tributos/rules/types/strategies-by-document.js +1 -0
- package/esm2015/components/tributos/rules/types/strategies.js +1 -0
- package/esm2015/components/tributos/rules/types/tax-rule.js +1 -0
- package/esm2015/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +3606 -0
- package/esm2015/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +5452 -0
- package/esm2015/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.js +270 -0
- package/esm2015/components/tributos/rules/validation/registries/sale-order-validation-rules.registry.js +1392 -0
- package/esm2015/components/tributos/rules/validation/registries/validation-rules.registry.js +45 -0
- package/esm2015/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.js +73 -0
- package/esm2015/components/tributos/rules/validation/rules/required/assessment-period-required-validation-rule.js +78 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.js +902 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-classification-required-validation-rule.js +401 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.js +719 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-situation-required-validation-rule.js +300 -0
- package/esm2015/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.js +717 -0
- package/esm2015/components/tributos/services/tax-rounding.service.js +18 -0
- package/esm2015/components/tributos/stores/tax.store.js +19 -0
- package/esm2015/components/tributos/tax-reform-utilities.js +243 -0
- package/esm2015/components/tributos/types/context.js +1 -0
- package/esm2015/components/tributos/types/controllership-incoming-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/controllership-incoming-invoice.js +1 -0
- package/esm2015/components/tributos/types/controllership-outgoing-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/controllership-outgoing-invoice.js +1 -0
- package/esm2015/components/tributos/types/credit-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/debit-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/group.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice-item.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice.js +1 -0
- package/esm2015/components/tributos/types/item-type.js +1 -0
- package/esm2015/components/tributos/types/outgoing-Invoice.js +1 -0
- package/esm2015/components/tributos/types/outgoing-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/outgoing-invoice-item.js +1 -0
- package/esm2015/components/tributos/types/outgoing-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/purchase-order-context.js +1 -0
- package/esm2015/components/tributos/types/purchase-order-type.js +1 -0
- package/esm2015/components/tributos/types/purchase-order.js +1 -0
- package/esm2015/components/tributos/types/sale-order-context.js +1 -0
- package/esm2015/components/tributos/types/sale-order-type.js +1 -0
- package/esm2015/components/tributos/types/sale-order.js +1 -0
- package/esm2015/components/tributos/types/tax.js +2 -0
- package/esm2015/components/utils/breakpoints.js +11 -0
- package/esm2015/components/utils/export-utils.js +71 -0
- package/esm2015/components/utils/index.js +4 -0
- package/esm2015/components/utils/loading-context.js +20 -0
- package/esm2015/components/utils/utils.js +18 -0
- package/esm2015/core/entities/entity-service.js +91 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda-dto.js +1 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.js +62 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.module.js +24 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.service.js +24 -0
- package/esm2015/core/enums/enum-classificacao-tributaria.js +6 -0
- package/esm2015/core/enums/enum-tipo-calculo-imposto.js +7 -0
- package/esm2015/core/enums/enum-tipo-documento-parametros.js +9 -0
- package/esm2015/core/enums/enum-tipo-documento.js +12 -0
- package/esm2015/core/enums/erpx-com-processo-faturamento-backend/enum-indicativo-padrao.js +7 -0
- package/esm2015/core/enums/erpx-cpl-imp-cadastros-backend/enum-indicativo-padrao.js +10 -0
- package/esm2015/locale/fallback.js +56 -0
- package/esm2015/public-api.js +8 -0
- package/esm2015/senior-gestao-empresarial-erpx-components.js +58 -0
- package/esm5/components/breadcrumb/breadcrumb.component.js +91 -0
- package/esm5/components/breadcrumb/breadcrumb.module.js +20 -0
- package/esm5/components/breadcrumb/index.js +3 -0
- package/esm5/components/focus/focus.service.js +35 -0
- package/esm5/components/lote-serie/erp-lote-serie.component.js +1830 -0
- package/esm5/components/lote-serie/erp-lote-serie.module.js +50 -0
- package/esm5/components/lote-serie/erp-lote-serie.service.js +96 -0
- package/esm5/components/lote-serie/index.js +3 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.component.js +861 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.converter.js +68 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.module.js +43 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.service.js +51 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.types.js +5 -0
- package/esm5/components/rateio-editor/index.js +4 -0
- package/esm5/components/resumo/erp-resumo.component.js +22 -0
- package/esm5/components/resumo/erp-resumo.module.js +28 -0
- package/esm5/components/resumo/erp-resumo.service.js +16 -0
- package/esm5/components/resumo/index.js +2 -0
- package/esm5/components/tributos/calculators/effective-tax-rate-calculator.js +58 -0
- package/esm5/components/tributos/calculators/gross-amount-calculator.js +39 -0
- package/esm5/components/tributos/calculators/tax-amount-calculator.js +91 -0
- package/esm5/components/tributos/erp-tributos.component.js +5296 -0
- package/esm5/components/tributos/erp-tributos.module.js +36 -0
- package/esm5/components/tributos/erp-tributos.service.js +24 -0
- package/esm5/components/tributos/erp-tributos.types.js +268 -0
- package/esm5/components/tributos/index.js +4 -0
- package/esm5/components/tributos/mappings/enum-tip-imp-cst-mapping.js +33 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/calculation-rules.registry.js +46 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +3104 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.js +4518 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.js +296 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/sale-order-calculation-rules.registry.js +1466 -0
- package/esm5/components/tributos/rules/calculation/rules/apply-net-value-to-document-calculation-rule.js +60 -0
- package/esm5/components/tributos/rules/calculation/rules/assessment-period-calculation-rule.js +77 -0
- package/esm5/components/tributos/rules/calculation/rules/effective-tax-rate-calculation-rule.js +92 -0
- package/esm5/components/tributos/rules/calculation/rules/gross-amount-calculation-rule.js +83 -0
- package/esm5/components/tributos/rules/calculation/rules/manual-tax-calculation-rule.js +87 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.js +286 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-calculation-type-calculation-rule.js +89 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-classification-calculation-rule.js +241 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.js +118 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-situation-calculation-rule.js +200 -0
- package/esm5/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.js +330 -0
- package/esm5/components/tributos/rules/rules.service.js +139 -0
- package/esm5/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +1078 -0
- package/esm5/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +1319 -0
- package/esm5/components/tributos/rules/status/registries/purchase-order-status-rules.registry.js +64 -0
- package/esm5/components/tributos/rules/status/registries/sale-order-status-rules.registry.js +19 -0
- package/esm5/components/tributos/rules/status/registries/status-rules.registry.js +46 -0
- package/esm5/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.js +43 -0
- package/esm5/components/tributos/rules/status/rules/tax-classification-status-rule.js +106 -0
- package/esm5/components/tributos/rules/status/rules/tax-rate-status-rule.js +68 -0
- package/esm5/components/tributos/rules/status/rules/taxable-base-status-rule.js +72 -0
- package/esm5/components/tributos/rules/types/available-fields.js +1 -0
- package/esm5/components/tributos/rules/types/available-taxes.js +1 -0
- package/esm5/components/tributos/rules/types/field-calculation-rule-mapping.js +1 -0
- package/esm5/components/tributos/rules/types/field-rule-mapping.js +1 -0
- package/esm5/components/tributos/rules/types/field-status-rule-mapping.js +1 -0
- package/esm5/components/tributos/rules/types/rule-payload.js +1 -0
- package/esm5/components/tributos/rules/types/schemas/incoming-invoice.schema.js +1817 -0
- package/esm5/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +2751 -0
- package/esm5/components/tributos/rules/types/schemas/purchase-order.schema.js +151 -0
- package/esm5/components/tributos/rules/types/schemas/sale-order.schema.js +880 -0
- package/esm5/components/tributos/rules/types/strategies-by-document.js +1 -0
- package/esm5/components/tributos/rules/types/strategies.js +1 -0
- package/esm5/components/tributos/rules/types/tax-rule.js +1 -0
- package/esm5/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +3608 -0
- package/esm5/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +5454 -0
- package/esm5/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.js +272 -0
- package/esm5/components/tributos/rules/validation/registries/sale-order-validation-rules.registry.js +1394 -0
- package/esm5/components/tributos/rules/validation/registries/validation-rules.registry.js +46 -0
- package/esm5/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.js +77 -0
- package/esm5/components/tributos/rules/validation/rules/required/assessment-period-required-validation-rule.js +86 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.js +968 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-classification-required-validation-rule.js +433 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.js +774 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-situation-required-validation-rule.js +323 -0
- package/esm5/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.js +772 -0
- package/esm5/components/tributos/services/tax-rounding.service.js +23 -0
- package/esm5/components/tributos/stores/tax.store.js +26 -0
- package/esm5/components/tributos/tax-reform-utilities.js +249 -0
- package/esm5/components/tributos/types/context.js +1 -0
- package/esm5/components/tributos/types/controllership-incoming-invoice-context.js +1 -0
- package/esm5/components/tributos/types/controllership-incoming-invoice.js +1 -0
- package/esm5/components/tributos/types/controllership-outgoing-invoice-context.js +1 -0
- package/esm5/components/tributos/types/controllership-outgoing-invoice.js +1 -0
- package/esm5/components/tributos/types/credit-invoice-type.js +1 -0
- package/esm5/components/tributos/types/debit-invoice-type.js +1 -0
- package/esm5/components/tributos/types/group.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice-context.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice-item.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice-type.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice.js +1 -0
- package/esm5/components/tributos/types/item-type.js +1 -0
- package/esm5/components/tributos/types/outgoing-Invoice.js +1 -0
- package/esm5/components/tributos/types/outgoing-invoice-context.js +1 -0
- package/esm5/components/tributos/types/outgoing-invoice-item.js +1 -0
- package/esm5/components/tributos/types/outgoing-invoice-type.js +1 -0
- package/esm5/components/tributos/types/purchase-order-context.js +1 -0
- package/esm5/components/tributos/types/purchase-order-type.js +1 -0
- package/esm5/components/tributos/types/purchase-order.js +1 -0
- package/esm5/components/tributos/types/sale-order-context.js +1 -0
- package/esm5/components/tributos/types/sale-order-type.js +1 -0
- package/esm5/components/tributos/types/sale-order.js +1 -0
- package/esm5/components/tributos/types/tax.js +2 -0
- package/esm5/components/utils/breakpoints.js +11 -0
- package/esm5/components/utils/export-utils.js +78 -0
- package/esm5/components/utils/index.js +4 -0
- package/esm5/components/utils/loading-context.js +22 -0
- package/esm5/components/utils/utils.js +20 -0
- package/esm5/core/entities/entity-service.js +98 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda-dto.js +1 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.js +67 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.module.js +27 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.service.js +27 -0
- package/esm5/core/enums/enum-classificacao-tributaria.js +6 -0
- package/esm5/core/enums/enum-tipo-calculo-imposto.js +7 -0
- package/esm5/core/enums/enum-tipo-documento-parametros.js +9 -0
- package/esm5/core/enums/enum-tipo-documento.js +12 -0
- package/esm5/core/enums/erpx-com-processo-faturamento-backend/enum-indicativo-padrao.js +7 -0
- package/esm5/core/enums/erpx-cpl-imp-cadastros-backend/enum-indicativo-padrao.js +10 -0
- package/esm5/locale/fallback.js +56 -0
- package/esm5/public-api.js +8 -0
- package/esm5/senior-gestao-empresarial-erpx-components.js +58 -0
- package/fesm2015/senior-gestao-empresarial-erpx-components.js +36350 -0
- package/fesm2015/senior-gestao-empresarial-erpx-components.js.map +1 -0
- package/fesm5/senior-gestao-empresarial-erpx-components.js +37396 -0
- package/fesm5/senior-gestao-empresarial-erpx-components.js.map +1 -0
- package/locale/fallback.d.ts +55 -0
- package/package.json +23 -0
- package/public-api.d.ts +7 -0
- package/senior-gestao-empresarial-erpx-components.d.ts +57 -0
- package/senior-gestao-empresarial-erpx-components.metadata.json +1 -0
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
var _a;
|
|
2
|
+
import { EnumCampoTributo, EnumTipoTributo } from '../../../erp-tributos.types';
|
|
3
|
+
var Schema = {
|
|
4
|
+
'Purchase Order': (_a = {},
|
|
5
|
+
_a[EnumTipoTributo.CBS] = [
|
|
6
|
+
EnumCampoTributo.BaseCalculo,
|
|
7
|
+
EnumCampoTributo.Aliquota,
|
|
8
|
+
EnumCampoTributo.ValorBruto,
|
|
9
|
+
EnumCampoTributo.ReducaoAliquota,
|
|
10
|
+
EnumCampoTributo.ReducaoAliquotaGovernamental,
|
|
11
|
+
EnumCampoTributo.AliquotaEfetiva,
|
|
12
|
+
EnumCampoTributo.Valor,
|
|
13
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
14
|
+
EnumCampoTributo.ImpostoManual
|
|
15
|
+
],
|
|
16
|
+
_a[EnumTipoTributo.CBS_A_APROPRIAR] = [
|
|
17
|
+
EnumCampoTributo.BaseCalculo,
|
|
18
|
+
EnumCampoTributo.Aliquota,
|
|
19
|
+
EnumCampoTributo.Valor,
|
|
20
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
21
|
+
EnumCampoTributo.ImpostoManual
|
|
22
|
+
],
|
|
23
|
+
_a[EnumTipoTributo.CBS_DIFERIDO] = [
|
|
24
|
+
EnumCampoTributo.BaseCalculo,
|
|
25
|
+
EnumCampoTributo.Aliquota,
|
|
26
|
+
EnumCampoTributo.Valor,
|
|
27
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
28
|
+
EnumCampoTributo.ImpostoManual
|
|
29
|
+
],
|
|
30
|
+
_a[EnumTipoTributo.CBS_CREDITO_PRESUMIDO] = [
|
|
31
|
+
EnumCampoTributo.BaseCalculo,
|
|
32
|
+
EnumCampoTributo.Aliquota,
|
|
33
|
+
EnumCampoTributo.Valor,
|
|
34
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
35
|
+
EnumCampoTributo.ImpostoManual
|
|
36
|
+
],
|
|
37
|
+
_a[EnumTipoTributo.CBS_TRIBUTACAO_REGULAR] = [
|
|
38
|
+
EnumCampoTributo.BaseCalculo,
|
|
39
|
+
EnumCampoTributo.Aliquota,
|
|
40
|
+
EnumCampoTributo.Valor,
|
|
41
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
42
|
+
EnumCampoTributo.ImpostoManual
|
|
43
|
+
],
|
|
44
|
+
_a[EnumTipoTributo.CBS_GOVERNAMENTAL] = [
|
|
45
|
+
EnumCampoTributo.BaseCalculo,
|
|
46
|
+
EnumCampoTributo.Aliquota,
|
|
47
|
+
EnumCampoTributo.Valor,
|
|
48
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
49
|
+
EnumCampoTributo.ImpostoManual
|
|
50
|
+
],
|
|
51
|
+
_a[EnumTipoTributo.CBS_ALC_ZFM] = [
|
|
52
|
+
EnumCampoTributo.BaseCalculo,
|
|
53
|
+
EnumCampoTributo.Aliquota,
|
|
54
|
+
EnumCampoTributo.Valor,
|
|
55
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
56
|
+
EnumCampoTributo.ImpostoManual
|
|
57
|
+
],
|
|
58
|
+
_a[EnumTipoTributo.IBS_ESTADUAL] = [
|
|
59
|
+
EnumCampoTributo.BaseCalculo,
|
|
60
|
+
EnumCampoTributo.Aliquota,
|
|
61
|
+
EnumCampoTributo.ValorBruto,
|
|
62
|
+
EnumCampoTributo.ReducaoAliquota,
|
|
63
|
+
EnumCampoTributo.ReducaoAliquotaGovernamental,
|
|
64
|
+
EnumCampoTributo.AliquotaEfetiva,
|
|
65
|
+
EnumCampoTributo.Valor,
|
|
66
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
67
|
+
EnumCampoTributo.ImpostoManual
|
|
68
|
+
],
|
|
69
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_A_APROPRIAR] = [
|
|
70
|
+
EnumCampoTributo.BaseCalculo,
|
|
71
|
+
EnumCampoTributo.Aliquota,
|
|
72
|
+
EnumCampoTributo.Valor,
|
|
73
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
74
|
+
EnumCampoTributo.ImpostoManual
|
|
75
|
+
],
|
|
76
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
77
|
+
EnumCampoTributo.BaseCalculo,
|
|
78
|
+
EnumCampoTributo.Aliquota,
|
|
79
|
+
EnumCampoTributo.Valor,
|
|
80
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
81
|
+
EnumCampoTributo.ImpostoManual
|
|
82
|
+
],
|
|
83
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
84
|
+
EnumCampoTributo.BaseCalculo,
|
|
85
|
+
EnumCampoTributo.Aliquota,
|
|
86
|
+
EnumCampoTributo.Valor,
|
|
87
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
88
|
+
EnumCampoTributo.ImpostoManual
|
|
89
|
+
],
|
|
90
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_GOVERNAMENTAL] = [
|
|
91
|
+
EnumCampoTributo.BaseCalculo,
|
|
92
|
+
EnumCampoTributo.Aliquota,
|
|
93
|
+
EnumCampoTributo.Valor,
|
|
94
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
95
|
+
EnumCampoTributo.ImpostoManual
|
|
96
|
+
],
|
|
97
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL] = [
|
|
98
|
+
EnumCampoTributo.BaseCalculo,
|
|
99
|
+
EnumCampoTributo.Aliquota,
|
|
100
|
+
EnumCampoTributo.ValorBruto,
|
|
101
|
+
EnumCampoTributo.ReducaoAliquota,
|
|
102
|
+
EnumCampoTributo.ReducaoAliquotaGovernamental,
|
|
103
|
+
EnumCampoTributo.AliquotaEfetiva,
|
|
104
|
+
EnumCampoTributo.Valor,
|
|
105
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
106
|
+
EnumCampoTributo.ImpostoManual
|
|
107
|
+
],
|
|
108
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_A_APROPRIAR] = [
|
|
109
|
+
EnumCampoTributo.BaseCalculo,
|
|
110
|
+
EnumCampoTributo.Aliquota,
|
|
111
|
+
EnumCampoTributo.Valor,
|
|
112
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
113
|
+
EnumCampoTributo.ImpostoManual
|
|
114
|
+
],
|
|
115
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
116
|
+
EnumCampoTributo.BaseCalculo,
|
|
117
|
+
EnumCampoTributo.Aliquota,
|
|
118
|
+
EnumCampoTributo.Valor,
|
|
119
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
120
|
+
EnumCampoTributo.ImpostoManual
|
|
121
|
+
],
|
|
122
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
123
|
+
EnumCampoTributo.BaseCalculo,
|
|
124
|
+
EnumCampoTributo.Aliquota,
|
|
125
|
+
EnumCampoTributo.Valor,
|
|
126
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
127
|
+
EnumCampoTributo.ImpostoManual
|
|
128
|
+
],
|
|
129
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_GOVERNAMENTAL] = [
|
|
130
|
+
EnumCampoTributo.BaseCalculo,
|
|
131
|
+
EnumCampoTributo.Aliquota,
|
|
132
|
+
EnumCampoTributo.Valor,
|
|
133
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
134
|
+
EnumCampoTributo.ImpostoManual
|
|
135
|
+
],
|
|
136
|
+
_a[EnumTipoTributo.IBS_CREDITO_PRESUMIDO] = [
|
|
137
|
+
EnumCampoTributo.BaseCalculo,
|
|
138
|
+
EnumCampoTributo.Aliquota,
|
|
139
|
+
EnumCampoTributo.Valor,
|
|
140
|
+
EnumCampoTributo.TipoCalculoImposto,
|
|
141
|
+
EnumCampoTributo.ImpostoManual
|
|
142
|
+
],
|
|
143
|
+
_a[EnumTipoTributo.IS] = [
|
|
144
|
+
EnumCampoTributo.BaseCalculo,
|
|
145
|
+
EnumCampoTributo.Aliquota,
|
|
146
|
+
EnumCampoTributo.Valor,
|
|
147
|
+
EnumCampoTributo.ImpostoManual
|
|
148
|
+
],
|
|
149
|
+
_a)
|
|
150
|
+
};
|
|
151
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyY2hhc2Utb3JkZXIuc2NoZW1hLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvci1nZXN0YW8tZW1wcmVzYXJpYWwvZXJweC1jb21wb25lbnRzLyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy90cmlidXRvcy9ydWxlcy90eXBlcy9zY2hlbWFzL3B1cmNoYXNlLW9yZGVyLnNjaGVtYS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRWhGLElBQU0sTUFBTSxHQUFHO0lBQ1gsZ0JBQWdCO1FBQ1osR0FBQyxlQUFlLENBQUMsR0FBRyxJQUFHO1lBQ25CLGdCQUFnQixDQUFDLFdBQVc7WUFDNUIsZ0JBQWdCLENBQUMsUUFBUTtZQUN6QixnQkFBZ0IsQ0FBQyxVQUFVO1lBQzNCLGdCQUFnQixDQUFDLGVBQWU7WUFDaEMsZ0JBQWdCLENBQUMsNEJBQTRCO1lBQzdDLGdCQUFnQixDQUFDLGVBQWU7WUFDaEMsZ0JBQWdCLENBQUMsS0FBSztZQUN0QixnQkFBZ0IsQ0FBQyxrQkFBa0I7WUFDbkMsZ0JBQWdCLENBQUMsYUFBYTtTQUNqQztRQUNELEdBQUMsZUFBZSxDQUFDLGVBQWUsSUFBRztZQUMvQixnQkFBZ0IsQ0FBQyxXQUFXO1lBQzVCLGdCQUFnQixDQUFDLFFBQVE7WUFDekIsZ0JBQWdCLENBQUMsS0FBSztZQUN0QixnQkFBZ0IsQ0FBQyxrQkFBa0I7WUFDbkMsZ0JBQWdCLENBQUMsYUFBYTtTQUNqQztRQUNELEdBQUMsZUFBZSxDQUFDLFlBQVksSUFBRztZQUM1QixnQkFBZ0IsQ0FBQyxXQUFXO1lBQzVCLGdCQUFnQixDQUFDLFFBQVE7WUFDekIsZ0JBQWdCLENBQUMsS0FBSztZQUN0QixnQkFBZ0IsQ0FBQyxrQkFBa0I7WUFDbkMsZ0JBQWdCLENBQUMsYUFBYTtTQUNqQztRQUNELEdBQUMsZUFBZSxDQUFDLHFCQUFxQixJQUFHO1lBQ3JDLGdCQUFnQixD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Q0FBQyxrQkFBa0I7WUFDbkMsZ0JBQWdCLENBQUMsYUFBYTtTQUNqQztRQUNELEdBQUMsZUFBZSxDQUFDLHNCQUFzQixJQUFHO1lBQ3RDLGdCQUFnQixDQUFDLFdBQVc7WUFDNUIsZ0JBQWdCLENBQUMsUUFBUTtZQUN6QixnQkFBZ0IsQ0FBQyxLQUFLO1lBQ3RCLGdCQUFnQixDQUFDLGtCQUFrQjtZQUNuQyxnQkFBZ0IsQ0FBQyxhQUFhO1NBQ2pDO1FBQ0QsR0FBQyxlQUFlLENBQUMsZ0NBQWdDLElBQUc7WUFDaEQsZ0JBQWdCLENBQUMsV0FBVztZQUM1QixnQkFBZ0IsQ0FBQyxRQUFRO1lBQ3pCLGdCQUFnQixDQUFDLEtBQUs7WUFDdEIsZ0JBQWdCLENBQUMsa0JBQWtCO1lBQ25DLGdCQUFnQixDQUFDLGFBQWE7U0FDakM7UUFDRCxHQUFDLGVBQWUsQ0FBQywyQkFBMkIsSUFBRztZQUMzQyxnQkFBZ0IsQ0FBQyxXQUFXO1lBQzVCLGdCQUFnQixDQUFDLFFBQVE7WUFDekIsZ0JBQWdCLENBQUMsS0FBSztZQUN0QixnQkFBZ0IsQ0FBQyxrQkFBa0I7WUFDbkMsZ0JBQWdCLENBQUMsYUFBYTtTQUNqQztRQUNELEdBQUMsZUFBZSxDQUFDLHFCQUFxQixJQUFHO1lBQ3JDLGdCQUFnQixDQUFDLFdBQVc7WUFDNUIsZ0JBQWdCLENBQUMsUUFBUTtZQUN6QixnQkFBZ0IsQ0FBQyxLQUFLO1lBQ3RCLGdCQUFnQixDQUFDLGtCQUFrQjtZQUNuQyxnQkFBZ0IsQ0FBQyxhQUFhO1NBQ2pDO1FBRUQsR0FBQyxlQUFlLENBQUMsRUFBRSxJQUFHO1lBQ2xCLGdCQUFnQixDQUFDLFdBQVc7WUFDNUIsZ0JBQWdCLENBQUMsUUFBUTtZQUN6QixnQkFBZ0IsQ0FBQyxLQUFLO1lBQ3RCLGdCQUFnQixDQUFDLGFBQWE7U0FDakM7V0FDSjtDQUNLLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFbnVtQ2FtcG9UcmlidXRvLCBFbnVtVGlwb1RyaWJ1dG8gfSBmcm9tICcuLi8uLi8uLi9lcnAtdHJpYnV0b3MudHlwZXMnO1xuXG5jb25zdCBTY2hlbWEgPSB7XG4gICAgJ1B1cmNoYXNlIE9yZGVyJzoge1xuICAgICAgICBbRW51bVRpcG9UcmlidXRvLkNCU106IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvckJydXRvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5SZWR1Y2FvQWxpcXVvdGEsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlJlZHVjYW9BbGlxdW90YUdvdmVybmFtZW50YWwsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhRWZldGl2YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLkNCU19BX0FQUk9QUklBUl06IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVGlwb0NhbGN1bG9JbXBvc3RvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5JbXBvc3RvTWFudWFsXG4gICAgICAgIF0sXG4gICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uQ0JTX0RJRkVSSURPXTogW1xuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlZhbG9yLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5UaXBvQ2FsY3Vsb0ltcG9zdG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkltcG9zdG9NYW51YWxcbiAgICAgICAgXSxcbiAgICAgICAgW0VudW1UaXBvVHJpYnV0by5DQlNfQ1JFRElUT19QUkVTVU1JRE9dOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLkNCU19UUklCVVRBQ0FPX1JFR1VMQVJdOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLkNCU19HT1ZFUk5BTUVOVEFMXTogW1xuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlZhbG9yLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5UaXBvQ2FsY3Vsb0ltcG9zdG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkltcG9zdG9NYW51YWxcbiAgICAgICAgXSxcbiAgICAgICAgW0VudW1UaXBvVHJpYnV0by5DQlNfQUxDX1pGTV06IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVGlwb0NhbGN1bG9JbXBvc3RvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5JbXBvc3RvTWFudWFsXG4gICAgICAgIF0sXG5cbiAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JQlNfRVNUQURVQUxdOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3JCcnV0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uUmVkdWNhb0FsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5SZWR1Y2FvQWxpcXVvdGFHb3Zlcm5hbWVudGFsLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YUVmZXRpdmEsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlZhbG9yLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5UaXBvQ2FsY3Vsb0ltcG9zdG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkltcG9zdG9NYW51YWxcbiAgICAgICAgXSxcbiAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JQlNfRVNUQURVQUxfQV9BUFJPUFJJQVJdOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19FU1RBRFVBTF9ESUZFUklET106IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVGlwb0NhbGN1bG9JbXBvc3RvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5JbXBvc3RvTWFudWFsXG4gICAgICAgIF0sXG4gICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX0VTVEFEVUFMX1RSSUJVVEFDQU9fUkVHVUxBUl06IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVGlwb0NhbGN1bG9JbXBvc3RvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5JbXBvc3RvTWFudWFsXG4gICAgICAgIF0sXG4gICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX0VTVEFEVUFMX0dPVkVSTkFNRU5UQUxdOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuXG4gICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX01VTklDSVBBTF06IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvckJydXRvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5SZWR1Y2FvQWxpcXVvdGEsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlJlZHVjYW9BbGlxdW90YUdvdmVybmFtZW50YWwsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhRWZldGl2YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19NVU5JQ0lQQUxfQV9BUFJPUFJJQVJdOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19NVU5JQ0lQQUxfRElGRVJJRE9dOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19NVU5JQ0lQQUxfVFJJQlVUQUNBT19SRUdVTEFSXTogW1xuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlZhbG9yLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5UaXBvQ2FsY3Vsb0ltcG9zdG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkltcG9zdG9NYW51YWxcbiAgICAgICAgXSxcbiAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JQlNfTVVOSUNJUEFMX0dPVkVSTkFNRU5UQUxdOiBbXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLlRpcG9DYWxjdWxvSW1wb3N0byxcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdLFxuICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19DUkVESVRPX1BSRVNVTUlET106IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uVGlwb0NhbGN1bG9JbXBvc3RvLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5JbXBvc3RvTWFudWFsXG4gICAgICAgIF0sXG5cbiAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JU106IFtcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgIEVudW1DYW1wb1RyaWJ1dG8uSW1wb3N0b01hbnVhbFxuICAgICAgICBdXG4gICAgfVxufSBhcyBjb25zdDtcblxuZXhwb3J0IHR5cGUgU2NoZW1hID0gdHlwZW9mIFNjaGVtYTtcbiJdfQ==
|