unleash-server 5.3.4 → 5.4.0
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/dist/lib/addons/slack-app-definition.js +8 -0
- package/dist/lib/addons/slack-app-definition.js.map +1 -1
- package/dist/lib/addons/slack-app.d.ts +1 -4
- package/dist/lib/addons/slack-app.js +46 -68
- package/dist/lib/addons/slack-app.js.map +1 -1
- package/dist/lib/addons/slack-app.test.js +12 -66
- package/dist/lib/addons/slack-app.test.js.map +1 -1
- package/dist/lib/create-config.js +1 -0
- package/dist/lib/create-config.js.map +1 -1
- package/dist/lib/db/access-store.d.ts +3 -1
- package/dist/lib/db/access-store.js +53 -0
- package/dist/lib/db/access-store.js.map +1 -1
- package/dist/lib/db/client-applications-store.d.ts +3 -1
- package/dist/lib/db/client-applications-store.js +73 -6
- package/dist/lib/db/client-applications-store.js.map +1 -1
- package/dist/lib/db/feature-environment-store.js +3 -0
- package/dist/lib/db/feature-environment-store.js.map +1 -1
- package/dist/lib/db/feature-strategy-store.d.ts +1 -0
- package/dist/lib/db/feature-strategy-store.js +21 -3
- package/dist/lib/db/feature-strategy-store.js.map +1 -1
- package/dist/lib/db/feature-strategy-store.test.js +40 -0
- package/dist/lib/db/feature-strategy-store.test.js.map +1 -1
- package/dist/lib/db/feature-toggle-client-store.js +5 -3
- package/dist/lib/db/feature-toggle-client-store.js.map +1 -1
- package/dist/lib/db/feature-toggle-store.d.ts +6 -1
- package/dist/lib/db/feature-toggle-store.js +37 -9
- package/dist/lib/db/feature-toggle-store.js.map +1 -1
- package/dist/lib/db/index.js +1 -1
- package/dist/lib/db/index.js.map +1 -1
- package/dist/lib/db/role-store.d.ts +3 -0
- package/dist/lib/db/role-store.js +21 -4
- package/dist/lib/db/role-store.js.map +1 -1
- package/dist/lib/features/access/createAccessService.js +2 -2
- package/dist/lib/features/access/createAccessService.js.map +1 -1
- package/dist/lib/features/change-request-access-service/change-request-access-read-model.d.ts +1 -0
- package/dist/lib/features/change-request-access-service/fake-change-request-access-read-model.d.ts +1 -0
- package/dist/lib/features/change-request-access-service/fake-change-request-access-read-model.js +3 -0
- package/dist/lib/features/change-request-access-service/fake-change-request-access-read-model.js.map +1 -1
- package/dist/lib/features/change-request-access-service/sql-change-request-access-read-model.d.ts +1 -0
- package/dist/lib/features/change-request-access-service/sql-change-request-access-read-model.js +10 -1
- package/dist/lib/features/change-request-access-service/sql-change-request-access-read-model.js.map +1 -1
- package/dist/lib/features/export-import-toggles/export-import-permissions.e2e.test.js +4 -0
- package/dist/lib/features/export-import-toggles/export-import-permissions.e2e.test.js.map +1 -1
- package/dist/lib/features/export-import-toggles/export-import-service.d.ts +2 -1
- package/dist/lib/features/export-import-toggles/export-import-service.js +30 -16
- package/dist/lib/features/export-import-toggles/export-import-service.js.map +1 -1
- package/dist/lib/features/export-import-toggles/export-import.e2e.test.js +24 -4
- package/dist/lib/features/export-import-toggles/export-import.e2e.test.js.map +1 -1
- package/dist/lib/features/export-import-toggles/import-context-validation.js +1 -1
- package/dist/lib/features/export-import-toggles/import-context-validation.js.map +1 -1
- package/dist/lib/features/export-import-toggles/import-toggles-store-type.d.ts +1 -0
- package/dist/lib/features/export-import-toggles/import-toggles-store.d.ts +1 -0
- package/dist/lib/features/export-import-toggles/import-toggles-store.js +8 -0
- package/dist/lib/features/export-import-toggles/import-toggles-store.js.map +1 -1
- package/dist/lib/features/export-import-toggles/import-validation-messages.d.ts +1 -1
- package/dist/lib/features/export-import-toggles/import-validation-messages.js +7 -1
- package/dist/lib/features/export-import-toggles/import-validation-messages.js.map +1 -1
- package/dist/lib/features/feature-toggle/createFeatureToggleService.js +9 -12
- package/dist/lib/features/feature-toggle/createFeatureToggleService.js.map +1 -1
- package/dist/lib/features/index.d.ts +1 -0
- package/dist/lib/features/index.js +1 -0
- package/dist/lib/features/index.js.map +1 -1
- package/dist/lib/features/playground/advanced-playground.test.js +57 -6
- package/dist/lib/features/playground/advanced-playground.test.js.map +1 -1
- package/dist/lib/features/playground/generateObjectCombinations.d.ts +2 -2
- package/dist/lib/features/playground/generateObjectCombinations.js +4 -1
- package/dist/lib/features/playground/generateObjectCombinations.js.map +1 -1
- package/dist/lib/features/playground/generateObjectCombinations.test.js +7 -6
- package/dist/lib/features/playground/generateObjectCombinations.test.js.map +1 -1
- package/dist/lib/features/playground/playground.js +1 -1
- package/dist/lib/features/playground/playground.js.map +1 -1
- package/dist/lib/features/segment/createSegmentService.d.ts +5 -0
- package/dist/lib/features/segment/createSegmentService.js +32 -0
- package/dist/lib/features/segment/createSegmentService.js.map +1 -0
- package/dist/lib/metrics.js +12 -0
- package/dist/lib/metrics.js.map +1 -1
- package/dist/lib/metrics.test.js +1 -1
- package/dist/lib/metrics.test.js.map +1 -1
- package/dist/lib/middleware/response-time-metrics.js +1 -1
- package/dist/lib/middleware/response-time-metrics.js.map +1 -1
- package/dist/lib/openapi/index.js +3 -1
- package/dist/lib/openapi/index.js.map +1 -1
- package/dist/lib/openapi/meta-schema-rules.test.js +2 -41
- package/dist/lib/openapi/meta-schema-rules.test.js.map +1 -1
- package/dist/lib/openapi/spec/admin-features-query-schema.d.ts +1 -0
- package/dist/lib/openapi/spec/admin-features-query-schema.js +1 -0
- package/dist/lib/openapi/spec/admin-features-query-schema.js.map +1 -1
- package/dist/lib/openapi/spec/advanced-playground-environment-feature-schema.d.ts +4 -1
- package/dist/lib/openapi/spec/advanced-playground-feature-schema.d.ts +8 -2
- package/dist/lib/openapi/spec/advanced-playground-request-schema.d.ts +1 -1
- package/dist/lib/openapi/spec/advanced-playground-response-schema.d.ts +17 -5
- package/dist/lib/openapi/spec/application-schema.d.ts +33 -1
- package/dist/lib/openapi/spec/application-schema.js +12 -1
- package/dist/lib/openapi/spec/application-schema.js.map +1 -1
- package/dist/lib/openapi/spec/application-usage-schema.d.ts +25 -0
- package/dist/lib/openapi/spec/application-usage-schema.js +27 -0
- package/dist/lib/openapi/spec/application-usage-schema.js.map +1 -0
- package/dist/lib/openapi/spec/applications-schema.d.ts +57 -1
- package/dist/lib/openapi/spec/applications-schema.js +4 -1
- package/dist/lib/openapi/spec/applications-schema.js.map +1 -1
- package/dist/lib/openapi/spec/bulk-metrics-schema.d.ts +18 -4
- package/dist/lib/openapi/spec/bulk-registration-schema.d.ts +6 -1
- package/dist/lib/openapi/spec/client-metrics-env-schema.d.ts +6 -2
- package/dist/lib/openapi/spec/client-metrics-env-schema.js +0 -1
- package/dist/lib/openapi/spec/client-metrics-env-schema.js.map +1 -1
- package/dist/lib/openapi/spec/client-metrics-schema.d.ts +6 -1
- package/dist/lib/openapi/spec/create-application-schema.d.ts +0 -1
- package/dist/lib/openapi/spec/create-application-schema.js +0 -1
- package/dist/lib/openapi/spec/create-application-schema.js.map +1 -1
- package/dist/lib/openapi/spec/create-context-field-schema.d.ts +68 -0
- package/dist/lib/openapi/spec/create-context-field-schema.js +19 -0
- package/dist/lib/openapi/spec/create-context-field-schema.js.map +1 -0
- package/dist/lib/openapi/spec/create-feature-schema.d.ts +1 -0
- package/dist/lib/openapi/spec/create-feature-schema.js +1 -0
- package/dist/lib/openapi/spec/create-feature-schema.js.map +1 -1
- package/dist/lib/openapi/spec/create-feature-strategy-schema.d.ts +0 -1
- package/dist/lib/openapi/spec/create-group-schema.d.ts +0 -1
- package/dist/lib/openapi/spec/create-group-schema.js +0 -1
- package/dist/lib/openapi/spec/create-group-schema.js.map +1 -1
- package/dist/lib/openapi/spec/create-invited-user-schema.d.ts +9 -0
- package/dist/lib/openapi/spec/create-invited-user-schema.js +9 -0
- package/dist/lib/openapi/spec/create-invited-user-schema.js.map +1 -1
- package/dist/lib/openapi/spec/create-strategy-variant-schema.d.ts +0 -1
- package/dist/lib/openapi/spec/create-strategy-variant-schema.js +0 -1
- package/dist/lib/openapi/spec/create-strategy-variant-schema.js.map +1 -1
- package/dist/lib/openapi/spec/create-user-response-schema.d.ts +2 -1
- package/dist/lib/openapi/spec/create-user-response-schema.js +1 -1
- package/dist/lib/openapi/spec/create-user-response-schema.js.map +1 -1
- package/dist/lib/openapi/spec/date-schema.d.ts +6 -1
- package/dist/lib/openapi/spec/date-schema.js +14 -1
- package/dist/lib/openapi/spec/date-schema.js.map +1 -1
- package/dist/lib/openapi/spec/environment-project-schema.d.ts +0 -2
- package/dist/lib/openapi/spec/environments-project-schema.d.ts +0 -2
- package/dist/lib/openapi/spec/event-schema.d.ts +1 -3
- package/dist/lib/openapi/spec/event-schema.js +0 -1
- package/dist/lib/openapi/spec/event-schema.js.map +1 -1
- package/dist/lib/openapi/spec/events-schema.d.ts +1 -3
- package/dist/lib/openapi/spec/export-query-schema.d.ts +0 -1
- package/dist/lib/openapi/spec/export-query-schema.js +0 -1
- package/dist/lib/openapi/spec/export-query-schema.js.map +1 -1
- package/dist/lib/openapi/spec/export-result-schema.d.ts +17 -1
- package/dist/lib/openapi/spec/feature-environment-metrics-schema.d.ts +6 -1
- package/dist/lib/openapi/spec/feature-environment-schema.d.ts +7 -0
- package/dist/lib/openapi/spec/feature-environment-schema.js +7 -0
- package/dist/lib/openapi/spec/feature-environment-schema.js.map +1 -1
- package/dist/lib/openapi/spec/feature-events-schema.d.ts +1 -3
- package/dist/lib/openapi/spec/feature-metrics-schema.d.ts +12 -2
- package/dist/lib/openapi/spec/feature-schema.d.ts +9 -1
- package/dist/lib/openapi/spec/feature-schema.js +2 -1
- package/dist/lib/openapi/spec/feature-schema.js.map +1 -1
- package/dist/lib/openapi/spec/feature-strategy-segment-schema.d.ts +5 -0
- package/dist/lib/openapi/spec/feature-strategy-segment-schema.js +5 -0
- package/dist/lib/openapi/spec/feature-strategy-segment-schema.js.map +1 -1
- package/dist/lib/openapi/spec/feature-usage-schema.d.ts +12 -2
- package/dist/lib/openapi/spec/features-schema.d.ts +16 -1
- package/dist/lib/openapi/spec/group-schema.d.ts +10 -2
- package/dist/lib/openapi/spec/group-schema.js +6 -0
- package/dist/lib/openapi/spec/group-schema.js.map +1 -1
- package/dist/lib/openapi/spec/group-user-model-schema.d.ts +2 -1
- package/dist/lib/openapi/spec/groups-schema.d.ts +14 -4
- package/dist/lib/openapi/spec/health-overview-schema.d.ts +16 -5
- package/dist/lib/openapi/spec/health-report-schema.d.ts +16 -5
- package/dist/lib/openapi/spec/import-toggles-schema.d.ts +34 -2
- package/dist/lib/openapi/spec/index.d.ts +3 -1
- package/dist/lib/openapi/spec/index.js +3 -1
- package/dist/lib/openapi/spec/index.js.map +1 -1
- package/dist/lib/openapi/spec/maintenance-schema.d.ts +2 -0
- package/dist/lib/openapi/spec/maintenance-schema.js +2 -0
- package/dist/lib/openapi/spec/maintenance-schema.js.map +1 -1
- package/dist/lib/openapi/spec/me-schema.d.ts +2 -1
- package/dist/lib/openapi/spec/patch-schema.d.ts +12 -1
- package/dist/lib/openapi/spec/patch-schema.js +12 -1
- package/dist/lib/openapi/spec/patch-schema.js.map +1 -1
- package/dist/lib/openapi/spec/patches-schema.d.ts +12 -1
- package/dist/lib/openapi/spec/playground-feature-schema.d.ts +3 -0
- package/dist/lib/openapi/spec/playground-request-schema.d.ts +1 -1
- package/dist/lib/openapi/spec/playground-response-schema.d.ts +8 -2
- package/dist/lib/openapi/spec/playground-segment-schema.d.ts +1 -0
- package/dist/lib/openapi/spec/playground-segment-schema.js +1 -0
- package/dist/lib/openapi/spec/playground-segment-schema.js.map +1 -1
- package/dist/lib/openapi/spec/playground-strategy-schema.d.ts +2 -0
- package/dist/lib/openapi/spec/playground-strategy-schema.js +1 -0
- package/dist/lib/openapi/spec/playground-strategy-schema.js.map +1 -1
- package/dist/lib/openapi/spec/profile-schema.d.ts +9 -1
- package/dist/lib/openapi/spec/project-environment-schema.d.ts +0 -2
- package/dist/lib/openapi/spec/project-overview-schema.d.ts +20 -6
- package/dist/lib/openapi/spec/project-overview-schema.js +4 -1
- package/dist/lib/openapi/spec/project-overview-schema.js.map +1 -1
- package/dist/lib/openapi/spec/project-schema.d.ts +4 -0
- package/dist/lib/openapi/spec/project-schema.js +4 -0
- package/dist/lib/openapi/spec/project-schema.js.map +1 -1
- package/dist/lib/openapi/spec/projects-schema.d.ts +6 -0
- package/dist/lib/openapi/spec/projects-schema.js +2 -0
- package/dist/lib/openapi/spec/projects-schema.js.map +1 -1
- package/dist/lib/openapi/spec/public-signup-token-schema.d.ts +3 -1
- package/dist/lib/openapi/spec/public-signup-token-schema.js +1 -0
- package/dist/lib/openapi/spec/public-signup-token-schema.js.map +1 -1
- package/dist/lib/openapi/spec/public-signup-tokens-schema.d.ts +5 -2
- package/dist/lib/openapi/spec/push-variants-schema.d.ts +3 -0
- package/dist/lib/openapi/spec/push-variants-schema.js +3 -0
- package/dist/lib/openapi/spec/push-variants-schema.js.map +1 -1
- package/dist/lib/openapi/spec/reset-password-schema.d.ts +4 -0
- package/dist/lib/openapi/spec/reset-password-schema.js +4 -0
- package/dist/lib/openapi/spec/reset-password-schema.js.map +1 -1
- package/dist/lib/openapi/spec/sdk-context-schema.d.ts +1 -1
- package/dist/lib/openapi/spec/sdk-context-schema.js +1 -1
- package/dist/lib/openapi/spec/sdk-context-schema.js.map +1 -1
- package/dist/lib/openapi/spec/search-events-schema.d.ts +2 -2
- package/dist/lib/openapi/spec/search-events-schema.js +1 -6
- package/dist/lib/openapi/spec/search-events-schema.js.map +1 -1
- package/dist/lib/openapi/spec/sort-order-schema.d.ts +4 -1
- package/dist/lib/openapi/spec/sort-order-schema.js +4 -1
- package/dist/lib/openapi/spec/sort-order-schema.js.map +1 -1
- package/dist/lib/openapi/spec/state-schema.d.ts +39 -3
- package/dist/lib/openapi/spec/state-schema.js +14 -2
- package/dist/lib/openapi/spec/state-schema.js.map +1 -1
- package/dist/lib/openapi/spec/toggle-maintenance-schema.d.ts +2 -0
- package/dist/lib/openapi/spec/toggle-maintenance-schema.js +2 -0
- package/dist/lib/openapi/spec/toggle-maintenance-schema.js.map +1 -1
- package/dist/lib/openapi/spec/token-string-list-schema.d.ts +0 -1
- package/dist/lib/openapi/spec/token-string-list-schema.js +0 -1
- package/dist/lib/openapi/spec/token-string-list-schema.js.map +1 -1
- package/dist/lib/openapi/spec/token-user-schema.d.ts +1 -1
- package/dist/lib/openapi/spec/token-user-schema.js +1 -1
- package/dist/lib/openapi/spec/token-user-schema.js.map +1 -1
- package/dist/lib/openapi/spec/{upsert-context-field-schema.d.ts → update-context-field-schema.d.ts} +19 -8
- package/dist/lib/openapi/spec/update-context-field-schema.js +44 -0
- package/dist/lib/openapi/spec/update-context-field-schema.js.map +1 -0
- package/dist/lib/openapi/spec/update-user-schema.d.ts +0 -1
- package/dist/lib/openapi/spec/update-user-schema.js +0 -1
- package/dist/lib/openapi/spec/update-user-schema.js.map +1 -1
- package/dist/lib/openapi/spec/user-schema.d.ts +2 -1
- package/dist/lib/openapi/spec/user-schema.js +2 -1
- package/dist/lib/openapi/spec/user-schema.js.map +1 -1
- package/dist/lib/openapi/spec/users-groups-base-schema.d.ts +33 -4
- package/dist/lib/openapi/spec/users-groups-base-schema.js +24 -0
- package/dist/lib/openapi/spec/users-groups-base-schema.js.map +1 -1
- package/dist/lib/openapi/spec/users-schema.d.ts +3 -2
- package/dist/lib/openapi/spec/users-schema.js +1 -1
- package/dist/lib/openapi/spec/users-schema.js.map +1 -1
- package/dist/lib/openapi/spec/users-search-schema.d.ts +3 -1
- package/dist/lib/openapi/spec/users-search-schema.js +1 -0
- package/dist/lib/openapi/spec/users-search-schema.js.map +1 -1
- package/dist/lib/openapi/spec/variants-schema.d.ts +1 -0
- package/dist/lib/openapi/spec/variants-schema.js +1 -0
- package/dist/lib/openapi/spec/variants-schema.js.map +1 -1
- package/dist/lib/openapi/util/openapi-tags.d.ts +18 -0
- package/dist/lib/openapi/util/openapi-tags.js +12 -0
- package/dist/lib/openapi/util/openapi-tags.js.map +1 -1
- package/dist/lib/routes/admin-api/api-token.d.ts +5 -0
- package/dist/lib/routes/admin-api/api-token.js +28 -0
- package/dist/lib/routes/admin-api/api-token.js.map +1 -1
- package/dist/lib/routes/admin-api/archive.js +4 -0
- package/dist/lib/routes/admin-api/archive.js.map +1 -1
- package/dist/lib/routes/admin-api/client-metrics.js +2 -1
- package/dist/lib/routes/admin-api/client-metrics.js.map +1 -1
- package/dist/lib/routes/admin-api/context.d.ts +4 -3
- package/dist/lib/routes/admin-api/context.js +3 -4
- package/dist/lib/routes/admin-api/context.js.map +1 -1
- package/dist/lib/routes/admin-api/feature-type.js +2 -2
- package/dist/lib/routes/admin-api/feature-type.js.map +1 -1
- package/dist/lib/routes/admin-api/instance-admin.js +2 -0
- package/dist/lib/routes/admin-api/instance-admin.js.map +1 -1
- package/dist/lib/routes/admin-api/maintenance.d.ts +2 -1
- package/dist/lib/routes/admin-api/maintenance.js.map +1 -1
- package/dist/lib/routes/admin-api/project/environments.js +1 -0
- package/dist/lib/routes/admin-api/project/environments.js.map +1 -1
- package/dist/lib/routes/admin-api/project/project-features.js +2 -1
- package/dist/lib/routes/admin-api/project/project-features.js.map +1 -1
- package/dist/lib/routes/admin-api/public-signup.js +2 -1
- package/dist/lib/routes/admin-api/public-signup.js.map +1 -1
- package/dist/lib/routes/admin-api/strategy.d.ts +1 -1
- package/dist/lib/routes/admin-api/strategy.js +2 -2
- package/dist/lib/routes/admin-api/strategy.js.map +1 -1
- package/dist/lib/routes/admin-api/tag-type.js +2 -2
- package/dist/lib/routes/admin-api/tag-type.js.map +1 -1
- package/dist/lib/routes/admin-api/user-admin.js +2 -1
- package/dist/lib/routes/admin-api/user-admin.js.map +1 -1
- package/dist/lib/routes/client-api/register.d.ts +1 -0
- package/dist/lib/routes/client-api/register.js +8 -0
- package/dist/lib/routes/client-api/register.js.map +1 -1
- package/dist/lib/routes/index.js +1 -0
- package/dist/lib/routes/index.js.map +1 -1
- package/dist/lib/routes/public-invite.js +2 -1
- package/dist/lib/routes/public-invite.js.map +1 -1
- package/dist/lib/segments/segment-service-interface.d.ts +2 -0
- package/dist/lib/server-impl.js +3 -1
- package/dist/lib/server-impl.js.map +1 -1
- package/dist/lib/services/access-service.d.ts +6 -3
- package/dist/lib/services/access-service.js +17 -5
- package/dist/lib/services/access-service.js.map +1 -1
- package/dist/lib/services/access-service.test.js +49 -3
- package/dist/lib/services/access-service.test.js.map +1 -1
- package/dist/lib/services/client-metrics/instance-service.js +5 -7
- package/dist/lib/services/client-metrics/instance-service.js.map +1 -1
- package/dist/lib/services/client-metrics/last-seen-service.d.ts +4 -0
- package/dist/lib/services/client-metrics/last-seen-service.js +4 -1
- package/dist/lib/services/client-metrics/last-seen-service.js.map +1 -1
- package/dist/lib/services/client-metrics/models.d.ts +2 -0
- package/dist/lib/services/client-metrics/schema.js +1 -0
- package/dist/lib/services/client-metrics/schema.js.map +1 -1
- package/dist/lib/services/feature-service-potentially-stale.test.js +0 -1
- package/dist/lib/services/feature-service-potentially-stale.test.js.map +1 -1
- package/dist/lib/services/feature-toggle-service.js +20 -30
- package/dist/lib/services/feature-toggle-service.js.map +1 -1
- package/dist/lib/services/index.js +1 -1
- package/dist/lib/services/index.js.map +1 -1
- package/dist/lib/services/instance-stats-service.d.ts +2 -0
- package/dist/lib/services/instance-stats-service.js +6 -1
- package/dist/lib/services/instance-stats-service.js.map +1 -1
- package/dist/lib/services/maintenance-service.js +1 -1
- package/dist/lib/services/maintenance-service.js.map +1 -1
- package/dist/lib/services/maintenance-service.test.js +1 -1
- package/dist/lib/services/maintenance-service.test.js.map +1 -1
- package/dist/lib/services/project-service.d.ts +2 -1
- package/dist/lib/services/project-service.js +3 -0
- package/dist/lib/services/project-service.js.map +1 -1
- package/dist/lib/services/segment-service.d.ts +8 -2
- package/dist/lib/services/segment-service.js +34 -3
- package/dist/lib/services/segment-service.js.map +1 -1
- package/dist/lib/services/user-service.js +3 -3
- package/dist/lib/services/user-service.js.map +1 -1
- package/dist/lib/services/version-service.d.ts +1 -0
- package/dist/lib/services/version-service.js +8 -1
- package/dist/lib/services/version-service.js.map +1 -1
- package/dist/lib/types/events.d.ts +2 -1
- package/dist/lib/types/events.js +4 -2
- package/dist/lib/types/events.js.map +1 -1
- package/dist/lib/types/experimental.d.ts +1 -1
- package/dist/lib/types/experimental.js +6 -5
- package/dist/lib/types/experimental.js.map +1 -1
- package/dist/lib/types/model.d.ts +2 -0
- package/dist/lib/types/model.js.map +1 -1
- package/dist/lib/types/option.d.ts +2 -0
- package/dist/lib/types/project.d.ts +7 -0
- package/dist/lib/types/stores/access-store.d.ts +9 -0
- package/dist/lib/types/stores/client-applications-store.d.ts +5 -0
- package/dist/lib/types/stores/context-field-store.d.ts +3 -3
- package/dist/lib/types/stores/feature-toggle-store.d.ts +2 -1
- package/dist/lib/types/stores/role-store.d.ts +3 -0
- package/dist/migrations/20230802092725-add-last-seen-column-to-feature-environments.d.ts +2 -0
- package/dist/migrations/20230802092725-add-last-seen-column-to-feature-environments.js +84 -0
- package/dist/migrations/20230802092725-add-last-seen-column-to-feature-environments.js.map +1 -0
- package/dist/migrations/20230802141830-add-feature-and-environment-last-seen-at-to-features-view.d.ts +2 -0
- package/dist/migrations/20230802141830-add-feature-and-environment-last-seen-at-to-features-view.js +83 -0
- package/dist/migrations/20230802141830-add-feature-and-environment-last-seen-at-to-features-view.js.map +1 -0
- package/dist/migrations/20230803061359-change-request-optional-feature.d.ts +2 -0
- package/dist/migrations/20230803061359-change-request-optional-feature.js +13 -0
- package/dist/migrations/20230803061359-change-request-optional-feature.js.map +1 -0
- package/dist/migrations/20230808104232-update-root-roles-descriptions.d.ts +2 -0
- package/dist/migrations/20230808104232-update-root-roles-descriptions.js +15 -0
- package/dist/migrations/20230808104232-update-root-roles-descriptions.js.map +1 -0
- package/dist/migrations/20230814095253-change-request-rejections.d.ts +2 -0
- package/dist/migrations/20230814095253-change-request-rejections.js +18 -0
- package/dist/migrations/20230814095253-change-request-rejections.js.map +1 -0
- package/dist/migrations/20230814115436-change-request-timzone-timestamps.d.ts +2 -0
- package/dist/migrations/20230814115436-change-request-timzone-timestamps.js +15 -0
- package/dist/migrations/20230814115436-change-request-timzone-timestamps.js.map +1 -0
- package/dist/migrations/20230815065908-change-request-approve-reject-permission.d.ts +2 -0
- package/dist/migrations/20230815065908-change-request-approve-reject-permission.js +12 -0
- package/dist/migrations/20230815065908-change-request-approve-reject-permission.js.map +1 -0
- package/dist/migrations/20230817095805-client-applications-usage-table.d.ts +2 -0
- package/dist/migrations/20230817095805-client-applications-usage-table.js +17 -0
- package/dist/migrations/20230817095805-client-applications-usage-table.js.map +1 -0
- package/dist/migrations/20230818124614-update-client-applications-usage-table.d.ts +2 -0
- package/dist/migrations/20230818124614-update-client-applications-usage-table.js +25 -0
- package/dist/migrations/20230818124614-update-client-applications-usage-table.js.map +1 -0
- package/dist/server-dev.js +3 -2
- package/dist/server-dev.js.map +1 -1
- package/dist/test/config/test-config.js +1 -0
- package/dist/test/config/test-config.js.map +1 -1
- package/dist/test/e2e/api/admin/api-token.auth.e2e.test.js +12 -84
- package/dist/test/e2e/api/admin/api-token.auth.e2e.test.js.map +1 -1
- package/dist/test/e2e/api/admin/api-token.e2e.test.js +10 -2
- package/dist/test/e2e/api/admin/api-token.e2e.test.js.map +1 -1
- package/dist/test/e2e/api/admin/metrics.e2e.test.js +30 -4
- package/dist/test/e2e/api/admin/metrics.e2e.test.js.map +1 -1
- package/dist/test/e2e/api/admin/project/features.e2e.test.js +14 -15
- package/dist/test/e2e/api/admin/project/features.e2e.test.js.map +1 -1
- package/dist/test/e2e/api/client/metricsV2.e2e.test.js +19 -5
- package/dist/test/e2e/api/client/metricsV2.e2e.test.js.map +1 -1
- package/dist/test/e2e/api/openapi/openapi.e2e.test.js +23 -0
- package/dist/test/e2e/api/openapi/openapi.e2e.test.js.map +1 -1
- package/dist/test/e2e/helpers/test-helper.js +11 -1
- package/dist/test/e2e/helpers/test-helper.js.map +1 -1
- package/dist/test/e2e/services/access-service.e2e.test.js +2 -2
- package/dist/test/e2e/services/access-service.e2e.test.js.map +1 -1
- package/dist/test/e2e/services/api-token-service.e2e.test.js +1 -1
- package/dist/test/e2e/services/api-token-service.e2e.test.js.map +1 -1
- package/dist/test/e2e/services/environment-service.test.js +2 -0
- package/dist/test/e2e/services/environment-service.test.js.map +1 -1
- package/dist/test/e2e/services/feature-toggle-service-v2.e2e.test.js +1 -1
- package/dist/test/e2e/services/feature-toggle-service-v2.e2e.test.js.map +1 -1
- package/dist/test/e2e/services/playground-service.test.js +1 -1
- package/dist/test/e2e/services/playground-service.test.js.map +1 -1
- package/dist/test/e2e/services/project-health-service.e2e.test.js +1 -1
- package/dist/test/e2e/services/project-health-service.e2e.test.js.map +1 -1
- package/dist/test/e2e/services/project-service.e2e.test.js +1 -1
- package/dist/test/e2e/services/project-service.e2e.test.js.map +1 -1
- package/dist/test/e2e/services/user-service.e2e.test.js +10 -0
- package/dist/test/e2e/services/user-service.e2e.test.js.map +1 -1
- package/dist/test/fixtures/access-service-mock.js +1 -0
- package/dist/test/fixtures/access-service-mock.js.map +1 -1
- package/dist/test/fixtures/fake-access-store.d.ts +3 -1
- package/dist/test/fixtures/fake-access-store.js +6 -0
- package/dist/test/fixtures/fake-access-store.js.map +1 -1
- package/dist/test/fixtures/fake-feature-toggle-store.d.ts +2 -1
- package/dist/test/fixtures/fake-feature-toggle-store.js +19 -6
- package/dist/test/fixtures/fake-feature-toggle-store.js.map +1 -1
- package/dist/test/fixtures/fake-project-store.d.ts +1 -1
- package/dist/test/fixtures/fake-role-store.d.ts +3 -0
- package/dist/test/fixtures/fake-role-store.js +6 -0
- package/dist/test/fixtures/fake-role-store.js.map +1 -1
- package/frontend/build/index.html +2 -2
- package/frontend/build/static/{AdvancedPlayground-48dddbf4.js → AdvancedPlayground-2d715a2c.js} +3 -3
- package/frontend/build/static/{CreateProject-c1b0f704.js → CreateProject-5b1090c2.js} +1 -1
- package/frontend/build/static/{Error-e6f7c2ee.js → Error-e44ea66b.js} +1 -1
- package/frontend/build/static/FeatureArchiveDialog-b47b18e8.js +10 -0
- package/frontend/build/static/{FeatureMetricsChart-81da0ce4.js → FeatureMetricsChart-36caeeb7.js} +2 -2
- package/frontend/build/static/FeatureViewLazyExport-49d56afd.js +7 -0
- package/frontend/build/static/LazyAdminExport-87c9ab51.js +35 -0
- package/frontend/build/static/LazyProjectExport-c4634b2a.js +17 -0
- package/frontend/build/static/{NetworkOverview-cd06e59f.js → NetworkOverview-c762698b.js} +64 -64
- package/frontend/build/static/{NetworkTraffic-ba933617.js → NetworkTraffic-c8d9eb9b.js} +1 -1
- package/frontend/build/static/RoleCell-d1aa8288.js +1 -0
- package/frontend/build/static/{StrategyItemContainer-88c18285.js → StrategyItemContainer-c7c352a4.js} +1 -1
- package/frontend/build/static/changeRequestProcess-f2469ef4.svg +61 -0
- package/frontend/build/static/{chartjs-adapter-date-fns.esm-799be047.js → chartjs-adapter-date-fns.esm-9c67372b.js} +6 -6
- package/frontend/build/static/{flowchart-elk-definition-170a3958-543f0844.js → flowchart-elk-definition-170a3958-5ea9fc56.js} +1 -1
- package/frontend/build/static/{index-88f1c682.js → index-1aaa8c27.js} +1 -1
- package/frontend/build/static/{index-aa638b65.js → index-670c9345.js} +1 -1
- package/frontend/build/static/index-b7003840.js +454 -0
- package/frontend/build/static/{is_dark-735e3a95.js → is_dark-b445e102.js} +1 -1
- package/frontend/build/static/{mindmap-definition-44684416-ac92f950.js → mindmap-definition-44684416-254e936e.js} +1 -1
- package/frontend/build/static/pro-enterprise-feature-badge-8ac467c3.svg +7 -0
- package/frontend/build/static/pro-enterprise-feature-badge-light-81a18f9b.svg +6 -0
- package/frontend/build/static/{timeline-definition-8e5a9bc6-6c09f608.js → timeline-definition-8e5a9bc6-24fd1725.js} +1 -1
- package/frontend/build/static/{unknownify-0b176a78.js → unknownify-ea4585e8.js} +1 -1
- package/frontend/build/static/usage-line-00d00632.svg +3 -0
- package/frontend/build/static/usage-rate-cb18f02b.svg +3 -0
- package/frontend/package.json +13 -13
- package/package.json +12 -13
- package/dist/lib/openapi/spec/upsert-context-field-schema.js +0 -35
- package/dist/lib/openapi/spec/upsert-context-field-schema.js.map +0 -1
- package/frontend/build/static/FeatureArchiveDialog-9ad60db1.js +0 -10
- package/frontend/build/static/FeatureViewLazyExport-58a3e977.js +0 -7
- package/frontend/build/static/LazyAdminExport-c98b11d7.js +0 -37
- package/frontend/build/static/LazyProjectExport-14db2e37.js +0 -16
- package/frontend/build/static/RoleCell-c534790e.js +0 -1
- package/frontend/build/static/changeRequestProcess-a532ab60.svg +0 -1
- package/frontend/build/static/index-1c4c68c3.js +0 -453
- package/frontend/build/static/pro-enterprise-feature-badge-8fab99c5.svg +0 -5
- package/frontend/build/static/pro-enterprise-feature-badge-light-0227af08.svg +0 -1
- /package/frontend/build/static/{index-770afaee.css → style-770afaee.css} +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import{c as l5,j as n,cF as I6,cI as P3,cH as C7,s as u,cp as l7,cm as Y5,a3 as a2,r as c,ek as c7,a9 as d1,a1 as n1,d as l,a4 as i2,a5 as s2,a6 as C2,a7 as l2,dp as d7,b6 as W1,E as y1,aM as c5,aN as e5,aO as t5,el as O6,aD as J,em as H1,bT as w1,f as h1,cg as v1,aw as H5,X as l1,en as u7,ab as c2,cS as i3,eo as B6,ep as V1,ar as r1,al as k1,aq as s1,C as S,aJ as S1,an as d5,am as _1,ck as p7,af as d2,eq as h7,b9 as M5,ba as E5,bb as T5,B as H,a$ as z1,t as N1,bg as g7,$ as u2,de as p2,er as i5,cq as s3,M as I1,es as Z2,b3 as O1,e6 as m7,b5 as B1,T as F,cs as $6,aI as h2,ae as J1,D as z6,m as C3,b as u1,aa as f1,et as f7,y as Y,eu as N6,ag as A1,i as p1,ev as y7,bt as v7,h as c1,bN as b7,bL as l3,c9 as g2,bO as W6,aU as m2,aZ as k5,aV as f2,ew as U6,dm as q6,bC as V7,au as L1,ah as c3,ex as _7,cn as x7,ey as w7,ez as S7,eA as H7,eB as G6,eC as K6,eD as J6,aj as Y6,eE as M7,eF as E7,eG as T7,d3 as y2,ak as v2,d4 as k7,cl as A7,bR as Q6,ad as b2,eH as L7,R as D7,aL as Z7,ch as R7,ai as X6,eI as F7,v as Z1,eJ as e4,P as t4,eK as n4,w as j7,eL as P7,eM as I7,aP as r4,eN as d3,e as o4,eO as a4,eP as O7,eQ as B7,eR as $7,eS as z7,bH as i4,eT as s4,eU as C4,eV as N7,eW as W7,a2 as A5,ac as V2,aF as U7,eX as q7,eY as _2,eZ as G7,e_ as l4,e$ as K7,f0 as J7,f1 as u5,f2 as n5,aG as R1,cv as p5,f3 as h5,f4 as g5,f5 as Y7,bQ as u3,f6 as c4,f7 as Q7,bo as F1,at as d4,cc as q5,bs as L5,f8 as X7,f9 as e8,fa as t8,l as p3,fb as n8,fc as r8,fd as o8,fe as a8,dE as h3,dF as Q5,by as i8,cb as s8,dv as X5,ff as C8,cu as g3,cZ as x2,bW as Y1,aH as s5,aK as m3,df as u4,dd as f3,aC as $1,ax as y3,fg as l8,A as c8,fh as d8,dj as $5,fi as u8,fj as p8,n as h8,o as g8,fk as m8,fl as f8,fm as y8,bU as m5,bV as e1,fn as v8,fo as I3,fp as p4,u as v3,az as b8,fq as V8,cV as _8,fr as O3,fs as x8,ft as w8,fu as S8,fv as H8,fw as M8,bm as E8,bn as T8,bz as k8,bA as A8,bB as L8,N as D8,fx as Z8,fy as R8,fz as h4,b$ as F8,av as j8,ay as P8,aB as I8,co as g4,ej as m4,fA as O8,db as f4,fB as C5,fC as Q,fD as B8,fE as $8,fF as z8,fG as N8,fH as W8,dk as U8,fI as q8,fJ as G8}from"./index-b7003840.js";import{e as y4,W as B3,b as K8,u as v4,T as J8,c as Y8,h as Q8,F as X8,V as e9,a as t9,g as n9,C as r9,U as o9,E as a9,i as i9}from"./FeatureArchiveDialog-b47b18e8.js";import{a as b4}from"./index-670c9345.js";import{i as s9,m as C9,h as l9,j as c9,b as d9,c as u9,d as p9,e as h9,E as g9,f as m9,u as f9,a as y9,R as v9,C as b9,A as V9,B as V4}from"./RoleCell-d1aa8288.js";import{S as _9}from"./StrategyItemContainer-c7c352a4.js";import{E as x9}from"./Error-e44ea66b.js";const w9=l5(n("path",{d:"m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"}),"ArrowUpward"),S9=l5(n("path",{d:"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z"}),"CallMade"),H9=l5(n("path",{d:"M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z"}),"FileUpload"),M9=l5(n("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"}),"Pending"),E9=l5(n("path",{d:"M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"}),"ReportProblemOutlined"),T9=l5(n("path",{d:"M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z"}),"SouthEast");function k9(e,t){I6(2,arguments);var r=P3(e),o=P3(t);return r.getTime()<o.getTime()}function A9(e,t){I6(2,arguments);var r=C7(t);return b4(e,-r)}const $3=u("div")(()=>({display:"flex"})),L9=u("div")(()=>({display:"flex",flexDirection:"row",justifyContent:"space-between",width:"100%"}));u("div")(()=>({display:"flex",flexDirection:"column"}));const D9=u("span")(({theme:e})=>({fontSize:e.typography.h1.fontSize,textOverflow:"ellipsis",whiteSpace:"nowrap"})),Z9=u("span")(({theme:e})=>({fontSize:e.fontSizes.smallBody,fontWeight:"normal"}));u(Z9)(({theme:e})=>({color:e.palette.neutral.dark}));const R9=u(l7)(({theme:e})=>({marginLeft:e.spacing(-1.5)})),F9=u("div")(({theme:e})=>({backgroundColor:e.palette.background.paper,borderRadius:e.shape.borderRadiusLarge,marginBottom:e.spacing(2)})),j9=u("div")(({theme:e})=>({padding:e.spacing(2.5,5),display:"flex",flexDirection:"column",alignItems:"start"})),P9=u("span")(({theme:e})=>({margin:0,width:"100%",fontSize:e.fontSizes.mainHeader,fontWeight:"bold",display:"flex",justifyContent:"space-between",alignItems:"center",gap:e.spacing(2)})),I9=u("div")(({theme:e})=>({width:"100%",backgroundColor:e.palette.divider,height:"1px"})),O9=u("div")(({theme:e})=>({padding:e.spacing(0,4)})),B9=u(Y5)(({theme:e})=>({textTransform:"none",fontSize:e.fontSizes.bodySize,flexGrow:1,flexBasis:0,[e.breakpoints.down("md")]:{paddingLeft:e.spacing(1),paddingRight:e.spacing(1)},[e.breakpoints.up("md")]:{minWidth:160}})),$9=e=>e.reduce((t,r)=>r.enabled?t+1:t,0),z9=u(a2)(({theme:e})=>({marginTop:e.spacing(3)})),N9=u("p",{shouldForwardProp:e=>e!=="warning"})(({theme:e,warning:t})=>({color:t?e.palette.error.dark:e.palette.text.primary,textAlign:"center"})),W9=({environment:e,warnEnabledToggles:t})=>{const r=c.useMemo(()=>[{id:"Icon",width:"1%",Cell:({row:{original:p}})=>n(c7,{environment:p})},{Header:"Name",accessor:"name",Cell:d1},{Header:"Type",accessor:"type",Cell:d1},{Header:"Toggles enabled",accessor:"projectEnabledToggleCount",Cell:({value:p})=>n(d1,{children:n(N9,{warning:p>0,children:p===1?"1 toggle":`${p} toggles`})}),align:"center"}],[t]),{getTableProps:o,getTableBodyProps:a,headerGroups:i,rows:s,prepareRow:C}=n1.useTable({columns:r,data:[e],disableSortBy:!0});return l(z9,{...o(),rowHeight:"compact",children:[n(i2,{headerGroups:i}),n(s2,{...a(),children:s.map(p=>(C(p),n(C2,{hover:!0,...p.getRowProps(),children:p.cells.map(d=>n(l2,{...d.getCellProps(),children:d.render("Cell")}))})))})]})},U9=u("p")(({theme:e})=>({marginTop:e.spacing(3),marginBottom:e.spacing(1.5)})),q9=u(d7)(()=>({width:"100%"})),G9=({environment:e,open:t,setOpen:r,onConfirm:o})=>{const[a,i]=c.useState("");return c.useEffect(()=>{i("")},[t]),l(W1,{title:"Hide environment and disable feature toggles?",open:t,primaryButtonText:"Hide environment and disable feature toggles",disabledPrimaryButton:(e==null?void 0:e.name)!==a,secondaryButtonText:"Close",onClick:o,onClose:()=>{r(!1)},children:[l(y1,{severity:"error",children:[n("strong",{children:"Danger!"})," Hiding an environment will disable all the feature toggles that are enabled in this environment and it can impact client applications connected to the environment."]}),n(W9,{environment:e}),l(U9,{children:["In order to hide this environment, please enter the id of the environment in the textfield below:"," ",n("strong",{children:e==null?void 0:e.name})]}),n(q9,{label:"Environment name",value:a,onChange:s=>i(s.target.value)})]})},K9=e=>{const{data:t,error:r,mutate:o}=c5(e5(`api/admin/environments/project/${e}`),J9),a=c.useMemo(()=>t||[],[t]),i=c.useCallback(async()=>{await o()},[o]);return{environments:a,refetchEnvironments:i,loading:!r&&!t,error:r}},J9=async e=>(await fetch(e).then(t5("Environments")).then(r=>r.json())).environments.sort((r,o)=>r.sortOrder-o.sortOrder),Y9=u(y1)(({theme:e})=>({marginBottom:e.spacing(4)})),Q9=u("div")(({theme:e})=>({display:"flex",flexWrap:"wrap",[e.breakpoints.down("sm")]:{justifyContent:"center"}})),X9=u(O6)(({theme:e})=>({maxWidth:"400px",marginBottom:e.spacing(2)})),_4=()=>{const e=J("projectId"),t=H1(e);w1(`Project environments – ${t}`);const{setToastData:r,setToastApiError:o}=h1(),{environments:a,loading:i,error:s,refetchEnvironments:C}=K9(e),{project:p,refetch:d}=v1(e),{removeEnvironmentFromProject:h,addEnvironmentToProject:g}=H5(),[m,w]=c.useState(),[V,b]=c.useState(!1),{isOss:k}=l1(),f=c.useMemo(()=>a.map(L=>({...L,projectVisible:p==null?void 0:p.environments.map(N=>N.environment).includes(L.name)})),[a,p==null?void 0:p.environments]),T=()=>{C(),d()},M=()=>n(X9,{onClick:T,text:"Error fetching environments"}),j=L=>`Got an API error when trying to set the environment as ${L?"visible":"hidden"}`,B=async L=>{if(L.projectVisible){if($9(f)>1){w(L),b(!0);return}r({title:"One environment must be visible",text:"You must always have at least one visible environment per project",type:"error"})}else try{await g(e,L.name),T(),r({title:"Environment set as visible",text:"Environment successfully set as visible.",type:"success"})}catch{o(j(!0))}},x=async()=>{if(m)try{await h(e,m.name),T(),r({title:"Environment set as hidden",text:"Environment successfully set as hidden.",type:"success"})}catch{o(j(!1))}finally{b(!1)}},Z=L=>k()&&L==="default",I=c.useMemo(()=>[{Header:"Name",accessor:"name",Cell:({row:{original:L}})=>n(u7,{environment:L})},{Header:"Type",accessor:"type",Cell:c2},{Header:"Project API tokens",accessor:L=>L.projectApiTokenCount===1?"1 token":`${L.projectApiTokenCount} tokens`,Cell:d1},{Header:"Visible in project",accessor:"enabled",align:"center",width:1,Cell:({row:{original:L}})=>n(i3,{children:n(B6,{tooltip:L.projectVisible?"Hide environment and disable feature toggles":"Make it visible",size:"medium",disabled:Z(L.name),projectId:e,permission:V1,checked:L.projectVisible,onChange:()=>B(L)})}),disableGlobalFilter:!0}],[f]),{getTableProps:O,getTableBodyProps:R,headerGroups:q,rows:G,prepareRow:W,state:{globalFilter:y},setGlobalFilter:v}=n1.useTable({columns:I,data:f,disableSortBy:!0},n1.useGlobalFilter),E=n(r1,{title:`Environments (${G.length})`,actions:n(k1,{initialValue:y,onChange:v})});return n(s1,{header:E,isLoading:i,children:l(Q9,{children:[n(S,{condition:!!s,show:M()}),l(Y9,{severity:"info",children:[n("strong",{children:"Important!"})," In order for your application to retrieve configured activation strategies for a specific environment, the application must use an environment specific API token. You can look up the environment-specific"," ",n(S1,{to:"/admin/api",children:"API tokens here"}),".",n("br",{}),n("br",{}),"Your administrator can configure an environment-specific API token to be used in the SDK. If you are an administrator you can ",n(S1,{to:"/admin/api",children:"create a new API token here"}),"."]}),n(d5,{value:y,children:l(a2,{...O(),rowHeight:"compact",children:[n(i2,{headerGroups:q}),n(s2,{...R(),children:G.map(L=>(W(L),n(C2,{hover:!0,...L.getRowProps(),children:L.cells.map(N=>n(l2,{...N.getCellProps(),children:N.render("Cell")}))})))})]})}),n(S,{condition:G.length===0,show:n(S,{condition:(y==null?void 0:y.length)>0,show:l(_1,{children:["No environments found matching “",y,"”"]}),elseShow:n(_1,{children:"No environments available. Get started by adding one."})})}),n(G9,{environment:m,open:V,setOpen:b,onConfirm:x})]})})},e0={id:"archivedAt"},t0=({projectId:e})=>{const{archivedFeatures:t,loading:r,refetchArchived:o}=p7(e),{value:a,setValue:i}=d2(`${e}:ProjectFeaturesArchiveTable`,e0);return n(h7,{title:"Project archive",archivedFeatures:t||[],loading:r,storedParams:a,setStoredParams:i,refetch:o,projectId:e})},n0=()=>{const e=J("projectId"),t=H1(e);return w1(`Project archive – ${t}`),n(t0,{projectId:e})},r0=(e=[])=>{var o;let t=e.map(a=>a.environment);const r=c.useRef(t);return t.join("")!==((o=r.current)==null?void 0:o.join(""))&&(r.current=t),r.current};var b3={},o0=E5;Object.defineProperty(b3,"__esModule",{value:!0});var x4=b3.default=void 0,a0=o0(M5()),i0=T5,s0=(0,a0.default)((0,i0.jsx)("path",{d:"m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM12 17.5 6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z"}),"Archive");x4=b3.default=s0;var V3={},C0=E5;Object.defineProperty(V3,"__esModule",{value:!0});var w4=V3.default=void 0,l0=C0(M5()),c0=T5,d0=(0,l0.default)((0,c0.jsx)("path",{d:"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z"}),"WatchLater");w4=V3.default=d0;const u0=u(H)(({theme:e})=>({display:"flex",justifyContent:"center",paddingRight:e.spacing(2)})),p0=({projectId:e,row:t,onOpenArchiveDialog:r,onOpenStaleDialog:o})=>{const[a,i]=c.useState(null),{original:{name:s,stale:C}}=t,p=!!a,d=w=>{i(w.currentTarget)},h=()=>{i(null)},g=`feature-${s}-actions`,m=`${g}-menu`;return l(u0,{children:[n(z1,{title:"Feature toggle actions",arrow:!0,describeChild:!0,children:n(N1,{id:g,"aria-controls":p?m:void 0,"aria-haspopup":"true","aria-expanded":p?"true":void 0,onClick:d,type:"button",children:n(g7,{})})}),n(u2,{id:m,anchorEl:a,open:p,onClose:h,transformOrigin:{horizontal:"right",vertical:"top"},anchorOrigin:{horizontal:"right",vertical:"bottom"},disableScrollLock:!0,PaperProps:{sx:w=>({borderRadius:`${w.shape.borderRadius}px`,padding:w.spacing(1,1.5)})},children:l(p2,{"aria-labelledby":g,children:[n(i5,{projectId:e,permission:s3,children:({hasAccess:w})=>l(I1,{sx:Z2,onClick:h,disabled:!w,component:S1,to:`/projects/${e}/features/${s}/strategies/copy`,children:[n(O1,{children:n(m7,{})}),n(B1,{children:n(F,{variant:"body2",children:"Copy"})})]})}),n(i5,{projectId:e,permission:$6,children:({hasAccess:w})=>l(I1,{sx:Z2,onClick:()=>{r(s),h()},disabled:!w,children:[n(O1,{children:n(x4,{})}),n(B1,{children:n(F,{variant:"body2",children:"Archive"})})]})}),n(i5,{projectId:e,permission:h2,children:({hasAccess:w})=>l(I1,{sx:Z2,onClick:()=>{h(),o({featureId:s,stale:C===!0})},disabled:!w,children:[n(O1,{children:n(w4,{})}),n(B1,{children:l(F,{variant:"body2",children:[C?"Un-mark":"Mark"," as stale"]})})]})})]})})]})};var _3={},h0=E5;Object.defineProperty(_3,"__esModule",{value:!0});var S4=_3.default=void 0,g0=h0(M5()),m0=T5,f0=(0,g0.default)((0,m0.jsx)("path",{d:"M5.33 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h1.33c1.1 0 2 .9 2 2v12c0 1.1-.89 2-2 2zM22 18V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2H20c1.11 0 2-.9 2-2zm-7.33 0V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h1.33c1.1 0 2-.9 2-2z"}),"ViewWeek");S4=_3.default=f0;const y0=u(H)(()=>({...J1,justifyContent:"center"})),v0=u(N1)(({theme:e})=>({margin:e.spacing(-1,0)})),b0=u(H)(({theme:e})=>({...J1,justifyContent:"space-between",padding:e.spacing(1,1,0,4)})),V0=u(I1)(({theme:e})=>({padding:e.spacing(0,2),margin:e.spacing(0,2),borderRadius:e.shape.borderRadius})),z3=u(z6)(({theme:e})=>({"&.MuiDivider-root.MuiDivider-fullWidth":{margin:e.spacing(.75,0)}})),_0=u(C3)(({theme:e})=>({padding:e.spacing(.75,1)})),x0={favorite:"Favorite"},w0=({allColumns:e,staticColumns:t=[],dividerBefore:r=[],dividerAfter:o=[],isCustomized:a=!1,setHiddenColumns:i})=>{const[s,C]=c.useState(null),p=u1(),d=f1(p.breakpoints.down("sm")),h=f1(p.breakpoints.down("md")),g=f1(p.breakpoints.down("lg"));c.useEffect(()=>{if(a)return;const f=(T,M=0)=>{const j=e.filter(({id:x})=>x.startsWith("environments.")!==!1).map(({id:x})=>x).slice(0,M),B=e.map(({id:x})=>x).filter(x=>!T.includes(x)).filter(x=>!t.includes(x)).filter(x=>!j.includes(x));i(B)};if(d)return f(["createdAt"]);if(h)return f(["createdAt"],1);if(g)return f(["type","createdAt"],1);f(["lastSeenAt","type","createdAt"],3)},[d,h,g]);const m=f=>{C(f.currentTarget)},w=()=>{C(null)},V=!!s,b="columns-menu",k=`columns-menu-list-${b}`;return l(y0,{children:[n(z1,{title:"Select columns",arrow:!0,describeChild:!0,children:n(v0,{id:b,"aria-controls":V?k:void 0,"aria-haspopup":"true","aria-expanded":V?"true":void 0,onClick:m,type:"button",size:"large","data-loading":!0,children:n(S4,{})})}),l(u2,{id:k,open:V,anchorEl:s,onClose:w,anchorOrigin:{vertical:"top",horizontal:"right"},transformOrigin:{vertical:"top",horizontal:"right"},disableScrollLock:!0,PaperProps:{sx:f=>({borderRadius:f.shape.borderRadius,paddingBottom:f.spacing(2)})},children:[l(b0,{children:[n(F,{variant:"body2",children:n("strong",{children:"Columns"})}),n(N1,{onClick:w,children:n(f7,{})})]}),n(p2,{children:e.filter(({hideInMenu:f})=>!f).map(f=>[n(S,{condition:r.includes(f.id),show:n(z3,{})}),l(V0,{onClick:()=>f.toggleHidden(f.isVisible),disabled:t.includes(f.id),children:[n(O1,{children:n(_0,{edge:"start",checked:f.isVisible,disableRipple:!0,inputProps:{"aria-labelledby":f.id},size:"medium"})}),n(B1,{id:f.id,primary:n(F,{variant:"body2",children:n(S,{condition:!!(typeof f.Header=="string"&&f.Header),show:()=>n(Y,{children:f.Header}),elseShow:()=>x0[f.id]||f.id})})})]}),n(S,{condition:o.includes(f.id),show:n(z3,{})})])})]})]})},S0=N6()(e=>({container:{boxShadow:"none",marginLeft:"1rem",minHeight:"100%",width:"calc(100% - 1rem)",position:"relative",[e.breakpoints.down("md")]:{marginLeft:"0",paddingBottom:"4rem",width:"inherit"}}})),H0=7,M0=e=>{const t=b4(new Date,-H0);return!!(e&&e.lastSeenAt&&k9(new Date(e.lastSeenAt),t))},E0=({projectId:e,featureIds:t,features:r})=>{const{refetch:o}=v1(e),[a,i]=c.useState(!1),{trackEvent:s}=A1(),C=c.useMemo(()=>t.filter(d=>{const h=r.find(g=>g.name===d);return M0(h)}),[JSON.stringify(r),t]);return l(Y,{children:[n(i5,{projectId:e,permission:$6,children:({hasAccess:d})=>n(p1,{disabled:!d||a,variant:"outlined",size:"small",onClick:()=>i(!0),children:"Archive"})}),n(y4,{projectId:e,featureIds:t,featuresWithUsage:C,onConfirm:async()=>{i(!1),await o(),s("batch_operations",{props:{eventType:"features archived"}})},isOpen:a,onClose:()=>i(!1)})]})},z5="selection-actions-menu",T0=({projectId:e,data:t})=>{const{refetch:r}=v1(e),[o,a]=c.useState(null),{staleFeatures:i}=H5(),{setToastData:s,setToastApiError:C}=h1(),{trackEvent:p}=A1(),d=!!o,h=t.map(({name:f})=>f),g=f=>{a(f.currentTarget)},m=()=>{a(null)},w=t.some(({stale:f})=>f===!0),V=t.some(({stale:f})=>f===!1),b=async()=>{try{m(),await i(e,h),await r(),s({title:"State updated",text:"Feature toggles marked as stale",type:"success"}),p("batch_operations",{props:{eventType:"features staled"}})}catch(f){C(c1(f))}},k=async()=>{try{m(),await i(e,h,!1),await r(),s({title:"State updated",text:"Feature toggles unmarked as stale",type:"success"}),p("batch_operations",{props:{eventType:"features unstaled"}})}catch(f){C(c1(f))}};return l(Y,{children:[n(z1,{title:"More bulk actions",arrow:!0,describeChild:!0,children:n(N1,{id:z5,"aria-controls":d?z5:void 0,"aria-haspopup":"true","aria-expanded":d?"true":void 0,onClick:g,type:"button","data-testid":y7,children:n(v7,{})})}),n(u2,{id:`${z5}-menu`,anchorEl:o,open:d,onClose:m,transformOrigin:{horizontal:"right",vertical:"top"},anchorOrigin:{horizontal:"right",vertical:"bottom"},disableScrollLock:!0,PaperProps:{sx:f=>({borderRadius:`${f.shape.borderRadius}px`,padding:f.spacing(1,1.5)})},children:n(p2,{"aria-labelledby":`${z5}-menu`,children:n(i5,{projectId:e,permission:h2,children:({hasAccess:f})=>l(Y,{children:[n(S,{condition:V,show:()=>l(I1,{onClick:b,disabled:!f,sx:{borderRadius:T=>`${T.shape.borderRadius}px`},children:[n(O1,{children:n(B3,{})}),n(B1,{children:n(F,{variant:"body2",children:"Mark as stale"})})]})}),n(S,{condition:w,show:()=>l(I1,{onClick:k,disabled:!f,sx:{borderRadius:T=>`${T.shape.borderRadius}px`},children:[n(O1,{children:n(B3,{})}),n(B1,{children:n(F,{variant:"body2",children:"Un-mark as stale"})})]})})]})})})})]})},k0=u("section")(({theme:e})=>({"& > *":{margin:e.spacing(1,0)}})),N3="manage-tags-form",W3=(e,t)=>[...e,...e.some(r=>r.value===t.value&&r.type===t.type)?[]:[t]],U3=(e,t)=>e.filter(r=>!(r.value===t.value&&r.type===t.type)),A0=(e,t)=>{switch(t.type){case"add":return{...e,addedTags:W3(e.addedTags,t.payload),removedTags:U3(e.removedTags,t.payload)};case"remove":return{...e,addedTags:U3(e.addedTags,t.payload),removedTags:W3(e.removedTags,t.payload)};case"clear":return{addedTags:[],removedTags:t.payload};default:return e}},q3={name:"",description:"",icon:""},L0=({open:e,initialValues:t,initialIndeterminateValues:r,onCancel:o,onSubmit:a})=>{const{tagTypes:i,loading:s}=b7(),[C,p]=c.useState(q3),[d,h]=c.useState([]),[g,m]=c.useState([]),{tags:w,refetch:V}=K8(C.name),{createTag:b}=v4(),k=w.map(({value:I})=>({title:I})),[f,T]=c.useReducer(A0,{addedTags:[],removedTags:[]}),M=(I=i.length>0?i[0]:q3)=>{p(I);const O=r.filter(({type:R})=>R===I.name);h(t.filter(({type:R})=>R===I.name).filter(({type:R,value:q})=>!O.some(G=>G.value===q&&G.type===R)).map(({value:R})=>({title:R}))),m(O.map(({value:R})=>({title:R}))),T({type:"clear",payload:[]})};c.useEffect(()=>{i.length>0&&M()},[s]);const j=(I,O)=>{O!=null&&typeof O!="string"&&(I.preventDefault(),M(O))},B=(I,O)=>b({value:I,type:O}).then(async()=>{await V(),h(R=>[...R,{title:I}]),T({type:"add",payload:{value:I,type:O}})}),x=(I,O,R,q)=>{R==="selectOption"?O.forEach(G=>{if(typeof G!="string"&&typeof G.inputValue=="string"&&G.inputValue&&G.title.startsWith("Create new value"))return B(G.inputValue,C.name);h(O),m(W=>W.filter(({title:y})=>y!==G.title)),q!=null&&q.option&&T({type:"add",payload:{value:q.option.title,type:C.name}})}):R==="clear"?(h([]),T({type:"clear",payload:t})):R==="removeOption"&&(h(O),q!=null&&q.option&&T({type:"remove",payload:{value:q.option.title,type:C.name}}))},Z=()=>{M(),o()};return l(W1,{open:e,secondaryButtonText:"Cancel",primaryButtonText:"Save tags",title:"Update tags to feature toggle",onClick:()=>a(f),disabledPrimaryButton:f.addedTags.length===0&&f.removedTags.length===0,onClose:Z,formId:N3,children:[n(F,{paragraph:!0,sx:{marginBottom:I=>I.spacing(2.5)},children:"Tags allow you to group features together"}),n("form",{id:N3,onSubmit:()=>a(f),children:l(k0,{children:[n(J8,{options:i,disabled:s||i.length===0,value:C,onChange:j},s?"loading":i.length),n(S,{condition:!s&&i.length===0,show:l(F,{variant:"body1",children:["No"," ",n(l3,{component:S1,to:"/tag-types",children:"tag types"})," ","available."]}),elseShow:n(Y8,{disabled:s,options:k,existingTags:t,indeterminateOptions:g,tagType:C,selectedOptions:d,onChange:x})})]})})]})},D0=({projectId:e,data:t})=>{const{bulkUpdateTags:r}=v4(),{refetch:o}=v1(e),{setToastData:a,setToastApiError:i}=h1(),{trackEvent:s}=A1(),[C,p]=c.useState(!1),[d,h]=c.useMemo(()=>{const m=t.flatMap(({tags:V})=>V||[]).reduce((V,b)=>[...V,...V.some(k=>k.type===b.type&&k.value===b.value)?[]:[b]],[]),w=m.filter(V=>!t.every(({tags:b})=>b==null?void 0:b.some(k=>k.type===V.type&&k.value===V.value)));return[m,w]},[t]);return l(Y,{children:[n(i5,{projectId:e,permission:h2,children:({hasAccess:m})=>n(p1,{disabled:!m||C,variant:"outlined",size:"small",onClick:()=>p(!0),children:"Tags"})}),n(L0,{open:C,onCancel:()=>p(!1),onSubmit:async({addedTags:m,removedTags:w})=>{const V=t.map(({name:k})=>k),b={features:V,tags:{addedTags:m,removedTags:w}};try{await r(b,e),o();const k=m.length?`Added tags: ${m.map(({type:T,value:M})=>`${T}:${M}`).join(", ")}.`:"",f=w.length?`Removed tags: ${w.map(({type:T,value:M})=>`${T}:${M}`).join(", ")}.`:"";a({title:"Tags updated",text:`${V.length} feature toggles updated. ${k} ${f}`,type:"success",autoHideDuration:12e3}),s("batch_operations",{props:{eventType:"tags updated"}})}catch(k){i(c1(k))}p(!1)},initialValues:d,initialIndeterminateValues:h},t.length)]})},Z0=u(g2)(({theme:e})=>({minWidth:"450px",marginTop:e.spacing(2),marginBottom:e.spacing(1.5)})),G3=u(y1)(({theme:e})=>({marginBottom:e.spacing(1.5)})),R0=({showExportDialog:e,data:t,onClose:r,onConfirm:o,environments:a,projectId:i})=>{const[s,C]=c.useState(a[0]),{bulkToggleFeaturesEnvironmentOff:p}=W6(),{addChange:d}=m2(),{refetch:h}=v1(i),{setToastApiError:g,setToastData:m}=h1(),{isChangeRequestConfigured:w}=k5(i),{refetch:V}=f2(i),b=t.filter(M=>{var j,B;return((B=(j=M.environments)==null?void 0:j.find(x=>s===x.name))==null?void 0:B.enabled)===!1}).length,k=()=>a.map(M=>({key:M,label:M})),f=async()=>{try{w(s)?(await d(i,s,t.map(M=>({action:"updateEnabled",feature:M.name,payload:{enabled:!1}}))),V(),m({text:"Your disabled feature toggles changes have been added to change request",type:"success",title:"Changes added to a draft"})):(await p(i,t.map(M=>M.name),s),h(),m({text:"Your feature toggles have been disabled",type:"success",title:"Features disabled"})),r(),o==null||o()}catch(M){g(c1(M))}},T=w(s)?"Add to change request":"Disable toggles";return n(W1,{open:e,title:"Disable feature toggles",onClose:r,onClick:f,primaryButtonText:T,secondaryButtonText:"Cancel",children:l(H,{children:["You have selected ",n("b",{children:t.length})," feature toggles to disable.",n("br",{}),n("br",{}),n(F,{children:"Select which environment to disable the features for:"}),n(Z0,{options:k(),value:s,onChange:M=>C(M)}),n(S,{condition:w(s),show:n(G3,{severity:"warning",children:"Change requests are enabled for this environment."})}),n(S,{condition:b>0,show:l(G3,{severity:"info",children:[b," feature"," ",b>1?"toggles are ":"toggle is ","already disabled."]})})]})})},F0=u(g2)(({theme:e})=>({minWidth:"450px",marginTop:e.spacing(2),marginBottom:e.spacing(1.5)})),K3=u(y1)(({theme:e})=>({marginBottom:e.spacing(1.5)})),j0=({showExportDialog:e,data:t,onClose:r,onConfirm:o,environments:a,projectId:i})=>{const[s,C]=c.useState(a[0]),{bulkToggleFeaturesEnvironmentOn:p}=W6(),{addChange:d}=m2(),{refetch:h}=v1(i),{setToastApiError:g,setToastData:m}=h1(),{isChangeRequestConfigured:w}=k5(i),{refetch:V}=f2(i),b=t.filter(M=>{var j,B;return((B=(j=M.environments)==null?void 0:j.find(x=>s===x.name))==null?void 0:B.enabled)===!0}).length,k=()=>a.map(M=>({key:M,label:M})),f=async()=>{try{w(s)?(await d(i,s,t.map(M=>({action:"updateEnabled",feature:M.name,payload:{enabled:!0}}))),V(),m({text:"Your enable feature toggles changes have been added to change request",type:"success",title:"Changes added to a draft"})):(await p(i,t.map(M=>M.name),s),h(),m({text:"Your feature toggles have been enabled",type:"success",title:"Features enabled"})),r(),o==null||o()}catch(M){g(c1(M))}},T=w(s)?"Add to change request":"Enable toggles";return n(W1,{open:e,title:"Enable feature toggles",onClose:r,onClick:f,primaryButtonText:T,secondaryButtonText:"Cancel",children:l(H,{children:["You have selected ",n("b",{children:t.length})," feature toggles to enable.",n("br",{}),n("br",{}),n(F,{children:"Select which environment to enable the features for:"}),n(F0,{options:k(),value:s,onChange:M=>C(M)}),n(S,{condition:w(s),show:n(K3,{severity:"warning",children:"Change requests are enabled for this environment."})}),n(S,{condition:b>0,show:l(K3,{severity:"info",children:[b," feature"," ",b>1?"toggles are ":"toggle is ","already enabled."]})})]})})},P0=({selectedIds:e,data:t,projectId:r})=>{var k,f;const{uiConfig:o}=l1(),[a,i]=c.useState(!1),[s,C]=c.useState(!1),[p,d]=c.useState(!1),{trackEvent:h}=A1(),g=c.useMemo(()=>t.filter(T=>e.includes(T.name)),[t,e]),m=c.useMemo(()=>{const T=g.flatMap(M=>M.environments).map(M=>M==null?void 0:M.name).filter(M=>M!==void 0);return Array.from(new Set(T))},[g]),w=()=>{h("batch_operations",{props:{eventType:"features exported"}})},V=()=>{h("batch_operations",{props:{eventType:"features enabled"}})},b=()=>{h("batch_operations",{props:{eventType:"features disabled"}})};return l(Y,{children:[n(S,{condition:!!((k=o==null?void 0:o.flags)!=null&&k.disableBulkToggle),show:null,elseShow:n(p1,{variant:"outlined",size:"small",onClick:()=>C(!0),children:"Enable"})}),n(S,{condition:!!((f=o==null?void 0:o.flags)!=null&&f.disableBulkToggle),show:null,elseShow:n(p1,{variant:"outlined",size:"small",onClick:()=>d(!0),children:"Disable"})}),n(E0,{projectId:r,featureIds:e,features:t}),n(p1,{variant:"outlined",size:"small",onClick:()=>i(!0),children:"Export"}),n(D0,{projectId:r,data:g}),n(T0,{projectId:r,data:g}),n(U6,{showExportDialog:a,data:g,onClose:()=>i(!1),environments:m,onConfirm:w}),n(j0,{showExportDialog:s,data:g,onClose:()=>C(!1),environments:m,projectId:r,onConfirm:V}),n(R0,{showExportDialog:p,data:g,onClose:()=>d(!1),environments:m,projectId:r,onConfirm:b})]})},I0=u(q6)(()=>({whiteSpace:"nowrap"})),O0=u("div",{shouldForwardProp:e=>e!=="hasWarning"})(({theme:e,hasWarning:t})=>({flexGrow:0,...J1,justifyContent:"center",...t&&{"::before":{content:'""',display:"block",width:e.spacing(2)}}})),N5=["Select","Actions","name","favorite"],B0={id:"createdAt"},$0=({features:e,loading:t,environments:r=[]})=>{var o5,G1;const{classes:o}=S0(),a=u1(),i=f1(a.breakpoints.down("md")),[s,C]=c.useState({open:!1,featureId:"",environmentName:""}),[p,d]=c.useState({}),[h,g]=c.useState(),m=J("projectId"),{value:w,setValue:V}=d2(`${m}:FeatureToggleListTable:v1`,B0),{value:b,setValue:k}=V7(),f=L1(),[T,M]=c3(),j=r0(t?[{environment:"a"},{environment:"b"},{environment:"c"}]:r),{refetch:B}=v1(m),{isFavoritesPinned:x,sortTypes:Z,onChangeIsFavoritePinned:I}=_7(T.has("favorites")?T.get("favorites")==="true":b.favorites),{favorite:O,unfavorite:R}=x7(),{onChangeRequestToggleClose:q,onChangeRequestToggleConfirm:G,changeRequestDialogDetails:W}=Q8(m),[y,v]=c.useState(!1),{uiConfig:E}=l1(),L=!!E.flags.lastSeenByEnvironment,N=c.useCallback(async A=>{A!=null&&A.favorite?await R(m,A.name):await O(m,A.name),B()},[m,B]),D=c.useMemo(()=>e.some(A=>{var $;return($=A==null?void 0:A.tags)==null?void 0:$.length}),[e]),K=c.useMemo(()=>[{id:"Select",Header:({getToggleAllRowsSelectedProps:A})=>n(C3,{...A()}),Cell:({row:A})=>{var $;return n(w7,{...($=A==null?void 0:A.getToggleRowSelectedProps)==null?void 0:$.call(A)})},maxWidth:50,disableSortBy:!0,hideInMenu:!0},{id:"favorite",Header:n(S7,{isActive:x,onClick:I}),accessor:"favorite",Cell:({row:{original:A}})=>n(H7,{value:A==null?void 0:A.favorite,onClick:()=>N(A)}),maxWidth:50,disableSortBy:!0,hideInMenu:!0},{Header:"Seen",accessor:"lastSeenAt",Cell:({value:A,row:{original:$}})=>L?n(G6,{feature:$}):n(K6,{value:A}),align:"center",maxWidth:80},{Header:"Type",accessor:"type",Cell:J6,align:"center",filterName:"type",maxWidth:80},{Header:"Name",accessor:"name",Cell:({value:A})=>n(z1,{title:A,arrow:!0,describeChild:!0,children:n("span",{children:n(Y6,{title:A,to:`/projects/${m}/features/${A}`})})}),minWidth:100,sortType:"alphanumeric",searchable:!0},...D?[{id:"tags",Header:"Tags",accessor:A=>{var $;return(($=A.tags)==null?void 0:$.map(({type:a1,value:z})=>`${a1}:${z}`).join(`
|
|
2
|
+
`))||""},Cell:M7,width:80,searchable:!0,filterName:"tags",filterBy(A,$){return E7(T7(this,A),$)}}]:[],{Header:"Created",accessor:"createdAt",Cell:y2,sortType:"date",minWidth:120},...j.map(A=>{const $=typeof A=="string"?A:A.environment;return{Header:t?()=>"":$,maxWidth:90,id:`environments.${$}`,accessor:a1=>{var z;return(z=a1.environments[$])==null?void 0:z.enabled},align:"center",Cell:({value:a1,row:{original:z}})=>{const _=z.someEnabledEnvironmentHasVariants&&z.environments[$].variantCount===0&&z.environments[$].enabled;return l(O0,{hasWarning:_,children:[n(X8,{value:a1,projectId:m,featureId:z.name,environmentName:$}),n(S,{condition:_,show:n(e9,{})})]})},sortType:"boolean",filterName:$,filterParsing:a1=>a1?"enabled":"disabled"}}),{id:"Actions",maxWidth:56,width:56,Cell:A=>n(p0,{projectId:m,onOpenArchiveDialog:g,onOpenStaleDialog:d,...A}),disableSortBy:!0,hideInMenu:!0}],[m,j,t]),[X,g1]=c.useState(T.get("search")||""),b1=c.useMemo(()=>e.map(A=>{var $;return{...A,environments:Object.fromEntries(j.map(a1=>{const z=A==null?void 0:A.environments.find(_=>(_==null?void 0:_.name)===a1);return[a1,{name:a1,enabled:(z==null?void 0:z.enabled)||!1,variantCount:(z==null?void 0:z.variantCount)||0,lastSeenAt:z==null?void 0:z.lastSeenAt}]})),someEnabledEnvironmentHasVariants:(($=A.environments)==null?void 0:$.some(a1=>a1.variantCount>0&&a1.enabled))||!1}}),[e,j]),{data:D1,getSearchText:j5,getSearchContext:M1}=v2(K,X,b1),b5=c.useMemo(()=>t?Array(6).fill({type:"-",name:"Feature name",createdAt:new Date,environments:{production:{name:"production",enabled:!1}}}):D1,[t,D1]),P5=c.useMemo(()=>{var a1;const A=K.map(z=>(z==null?void 0:z.id)||(typeof(z==null?void 0:z.accessor)=="string"?z==null?void 0:z.accessor:"")).filter(Boolean);let $=j.filter((z,_)=>_>=3).map(z=>`environments.${z}`);if(T.has("columns")){const z=((a1=T.get("columns"))==null?void 0:a1.split(","))||[],_=[...N5,...z];$=A.filter(P=>!_.includes(P))}else if(w.columns){const z=[...N5,...w.columns];$=A.filter(_=>!z.includes(_))}return{sortBy:[{id:T.get("sort")||"createdAt",desc:T.has("order")?T.get("order")==="desc":w.desc}],hiddenColumns:$,selectedRowIds:{}}},[j]),I5=c.useCallback(A=>A.name,[]),{allColumns:U1,headerGroups:r5,rows:E1,state:{selectedRowIds:V5,sortBy:j1,hiddenColumns:q1},prepareRow:O5,setHiddenColumns:P1}=n1.useTable({columns:K,data:b5,initialState:P5,sortTypes:Z,autoResetHiddenColumns:!1,autoResetSelectedRows:!1,disableSortRemove:!0,autoResetSortBy:!1,getRowId:I5},n1.useFlexLayout,n1.useSortBy,n1.useRowSelect);return c.useEffect(()=>{if(t)return;const A={};A.sort=j1[0].id,j1[0].desc&&(A.order="desc"),X&&(A.search=X),x&&(A.favorites="true"),A.columns=U1.map(({id:$})=>$).filter($=>!N5.includes($)&&!(q1!=null&&q1.includes($))).join(","),M(A,{replace:!0}),V($=>({...$,id:j1[0].id,desc:j1[0].desc||!1,columns:A.columns.split(",")})),k($=>({...$,favorites:!!x}))},[t,j1,q1,X,M,x]),l(Y,{children:[l(s1,{isLoading:t,className:o.container,header:n(r1,{titleElement:`Feature toggles (${E1.length})`,actions:l(Y,{children:[n(S,{condition:!i,show:n(k1,{initialValue:X,onChange:g1,hasFilters:!0,getSearchContext:M1})}),n(w0,{allColumns:U1,staticColumns:N5,dividerAfter:["createdAt"],dividerBefore:["Actions"],isCustomized:!!w.columns,setHiddenColumns:P1}),n(r1.Divider,{sx:{marginLeft:0}}),n(S,{condition:!!((o5=E==null?void 0:E.flags)!=null&&o5.featuresExportImport),show:n(z1,{title:"Export toggles visible in the table below",arrow:!0,children:n(N1,{onClick:()=>v(!0),sx:A=>({marginRight:A.spacing(2)}),children:n(k7,{})})})}),n(I0,{onClick:()=>f(A7(m)),maxWidth:"960px",Icon:Q6,projectId:m,permission:s3,"data-testid":"NAVIGATE_TO_CREATE_FEATURE",children:"New feature toggle"})]}),children:n(S,{condition:i,show:n(k1,{initialValue:X,onChange:g1,hasFilters:!0,getSearchContext:M1})})}),children:[n(d5,{value:j5(X),children:n(b2,{rows:E1,headerGroups:r5,prepareRow:O5})}),n(S,{condition:E1.length===0,show:n(S,{condition:(X==null?void 0:X.length)>0,show:l(_1,{children:["No feature toggles found matching “",X,"”"]}),elseShow:n(_1,{children:"No feature toggles available. Get started by adding a new feature toggle."})})}),n(t9,{onClose:()=>C(A=>({...A,open:!1})),projectId:m,...s}),n(n9,{isStale:p.stale===!0,isOpen:!!p.featureId,onClose:()=>{d({}),B()},featureId:p.featureId||"",projectId:m}),n(y4,{isOpen:!!h,onConfirm:()=>{B()},onClose:()=>{g(void 0)},featureIds:[h||""],projectId:m})," ",n(r9,{isOpen:W.isOpen,onClose:q,environment:W==null?void 0:W.environment,onConfirm:G,messageComponent:n(o9,{featureName:W.featureName,enabled:W.enabled,environment:W==null?void 0:W.environment})}),n(S,{condition:!!((G1=E==null?void 0:E.flags)!=null&&G1.featuresExportImport)&&!t,show:n(U6,{showExportDialog:y,data:b5,onClose:()=>v(!1),environments:j})})]}),n(L7,{count:Object.keys(V5).length,children:n(P0,{selectedIds:Object.keys(V5),data:e,projectId:m})})]})},D5=u("div")(({theme:e})=>({margin:"0",textAlign:"center",backgroundColor:e.palette.background.paper,borderRadius:e.shape.borderRadiusLarge,width:"100%",minWidth:225,padding:e.spacing(3),[e.breakpoints.down("md")]:{display:"flex",flexDirection:"column",position:"relative",padding:e.spacing(1.5)}})),Z5=u("p")(({theme:e})=>({marginBottom:e.spacing(2.5)})),x3=u("span")(({theme:e})=>({fontSize:e.typography.h2.fontSize,fontWeight:"bold",color:e.palette.text.primary})),w2=({children:e,to:t})=>n(F,{variant:"body2",textAlign:"center",sx:{paddingTop:r=>r.spacing(2.5),marginTop:"auto",justifySelf:"flex-end"},children:n(l3,{component:S1,to:t,children:e})}),z0=u("p")(({theme:e})=>({fontSize:"1.5rem",[e.breakpoints.down("md")]:{fontSize:e.fontSizes.bodySize,marginBottom:e.spacing(4)}})),N0=u("p")(({theme:e})=>({fontSize:"1.5rem",[e.breakpoints.down("md")]:{fontSize:e.fontSizes.bodySize}})),W0=({projectId:e,health:t})=>l(D5,{children:[n(Z5,{"data-loading":!0,children:"Project health"}),l(H,{sx:{display:"flex",alignItems:"center",justifyContent:"center",gap:r=>r.spacing(2)},children:[n(N0,{children:n(D7,{percentage:t})}),l(z0,{"data-loading":!0,children:[t,"%"]})]}),n(w2,{to:`/projects/${e}/health`,children:"View project health"})]}),U0=u(x3)(({theme:e})=>({marginLeft:"auto",fontWeight:e.typography.fontWeightRegular,color:e.palette.text.secondary})),q0=u("div")(({theme:e})=>({display:"flex",gap:e.spacing(1.5),width:"100%",gridTemplateColumns:`${e.spacing(2.5)} auto auto`,margin:e.spacing(1,0),fontSize:e.fontSizes.smallBody,color:e.palette.text.secondary,alignItems:"center",[e.breakpoints.down("md")]:{margin:0}})),G0=({type:e,Icon:t,count:r})=>l(q0,{"data-loading":!0,children:[n(t,{fontSize:"small","data-loading":!0}),n("div",{children:(a=>a.charAt(0).toUpperCase()+a.slice(1).replace("-"," "))(e)}),n(U0,{children:r})]}),K0=({features:e})=>{const t=c.useMemo(()=>{const r=(e==null?void 0:e.filter(C=>C.type==="release").length)||0,o=(e==null?void 0:e.filter(C=>C.type==="experiment").length)||0,a=(e==null?void 0:e.filter(C=>C.type==="operational").length)||0,i=(e==null?void 0:e.filter(C=>C.type==="kill-switch").length)||0,s=(e==null?void 0:e.filter(C=>C.type==="permission").length)||0;return{release:r,experiment:o,operational:a,"kill-switch":i,permission:s}},[e]);return l(D5,{sx:{padding:r=>r.spacing(3)},children:[n(Z5,{children:"Toggle types used"}),Object.keys(t).map(r=>n(G0,{type:r,Icon:Z7(r),count:t[r]},r))]})},J0=u("div")(({theme:e})=>({textAlign:"left",borderRadius:`${e.shape.borderRadius}px`,backgroundColor:`${e.palette.background.elevation2}`,padding:e.spacing(.5,2),fontSize:e.typography.body2.fontSize})),Y0=({id:e,description:t})=>l(D5,{children:[n(Z5,{children:"Project Meta"}),l(J0,{children:[n(F,{component:"span",variant:"body2",color:"text.secondary",children:"ID:"})," ",n("code",{"data-loading":!0,children:e||"__________"})]}),n(S,{condition:!!t,show:n(F,{variant:"body2",sx:{marginTop:r=>r.spacing(1.5),marginBottom:0,textAlign:"left"},children:t})}),n(S,{condition:!t,show:n(w2,{to:`/projects/${e}/edit`,children:"Add description"})})]}),Q0=u(F)(({theme:e})=>({marginBottom:e.spacing(2.5)})),X0=u(H)(({theme:e})=>({fontSize:e.fontSizes.largeHeader})),R2=u(H)(({theme:e})=>({...J1,flexDirection:"column",alignItems:"center",marginLeft:e.spacing(2.5)})),J3=u(F)(({theme:e})=>({color:e.palette.text.secondary,fontSize:e.typography.body2.fontSize})),ee=u(F)(({theme:e})=>({marginLeft:e.spacing(1),fontSize:e.typography.body1.fontSize,fontWeight:e.typography.fontWeightBold})),te=e=>e>0?n(S9,{sx:{color:"success.dark",height:20,width:20}}):n(T9,{sx:{color:"warning.dark",height:20,width:20}}),ne=e=>e>0?"success.dark":"warning.dark",w5=({title:e,boxText:t,change:r,percentage:o,children:a,customChangeElement:i})=>l(Y,{children:[n(S,{condition:!!e,show:n(Q0,{children:e})}),a,l(H,{sx:{...J1,justifyContent:"center",width:"auto"},children:[n(X0,{children:t}),n(S,{condition:!!i,show:n(R2,{children:i}),elseShow:n(S,{condition:r!==void 0&&r!==0,show:l(R2,{children:[l(H,{sx:{...J1},children:[te(r),l(ee,{color:ne(r),children:[r>0?"+":"",r,o?"%":""]})]}),n(J3,{children:"this month"})]}),elseShow:n(R2,{children:n(J3,{children:"No change"})})})})]})]}),re=({projectId:e,memberCount:t,change:r=0})=>{var i,s;const{uiConfig:o}=l1();let a="/admin/users";return(s=(i=o==null?void 0:o.versionInfo)==null?void 0:i.current)!=null&&s.enterprise&&(a=`/projects/${e}/settings/access`),l(D5,{children:[n(Z5,{"data-loading":!0,children:"Project members"}),n(H,{sx:{display:"flex",justifyContent:"center"},children:n(w5,{boxText:`${t}`,change:r})}),n(w2,{to:a,children:"View all members"})]})},oe=e=>fetch(e).then(t5("ChangeRequest")).then(t=>t.json()),H4=e=>{const{data:t,error:r,mutate:o}=R7([],e5(`api/admin/projects/${e}/change-requests`),oe);return c.useMemo(()=>({changeRequests:t,loading:!r&&!t,refetch:o,error:r}),[t,r,o])},G5="change-requests-widget",ae=u(H)(({theme:e})=>({display:"flex",flexWrap:"wrap",gap:e.spacing(1.5)})),Y3=u(H)(({theme:e})=>({flex:1,textAlign:"left",padding:e.spacing(1.5),borderRadius:e.shape.borderRadiusMedium,alignItems:"center",minWidth:175})),Q3=u(H)(({theme:e})=>({display:"flex",alignItems:"center"})),ie=u(x3)(({theme:e})=>({background:e.palette.seen.recent,padding:e.spacing(0,1),marginRight:e.spacing(.5),borderRadius:e.shape.borderRadius})),se=u(x3)(({theme:e})=>({background:e.palette.seen.primary,padding:e.spacing(0,1),marginRight:e.spacing(.5),borderRadius:e.shape.borderRadius})),X3=u(F)(({theme:e})=>({fontSize:e.typography.body2.fontSize,marginBottom:e.spacing(.5)})),e6=()=>n(F,{component:"span",variant:"body2",color:"text.secondary",lineHeight:1,"data-loading":G5,children:"change requests"}),Ce=({projectId:e})=>{const{changeRequests:t,loading:r}=H4(e),o=X6(r,`[data-loading="${G5}"]`),a=t==null?void 0:t.filter(s=>(s==null?void 0:s.state)==="Approved").length,i=t==null?void 0:t.filter(s=>(s==null?void 0:s.state)==="In review").length;return l(D5,{ref:o,children:[n(Z5,{children:"Open change requests"}),l(ae,{children:[l(Y3,{sx:{background:s=>s.palette.success.light},children:[n(X3,{children:"To be applied"}),l(Q3,{children:[n(ie,{"data-loading":G5,children:a||0})," ",n(e6,{})]})]}),l(Y3,{sx:{background:s=>s.palette.secondary.light},children:[n(X3,{children:"To be reviewed"}),l(Q3,{children:[n(se,{"data-loading":G5,children:i||0})," ",n(e6,{})]})]})]}),n(w2,{to:`/projects/${e}/change-requests`,children:"View change requests"})]})},le=u(H)(({theme:e})=>({...J1,width:"225px",flexDirection:"column",gap:e.spacing(2),boxShadow:"none",[e.breakpoints.down("md")]:{display:"grid",width:"100%",alignItems:"stretch",marginBottom:e.spacing(2)},[e.breakpoints.down("sm")]:{display:"flex"}})),ce=({id:e,description:t,memberCount:r,health:o,features:a,stats:i})=>{const{isEnterprise:s}=l1(),C=u1(),p=f1(C.breakpoints.down("md")),{isChangeRequestConfiguredInAnyEnv:d}=k5(e),h=s()&&d(),g=e!==F7;return n("aside",{children:l(le,{sx:!h&&!g||p&&h&&g?{gridTemplateColumns:"repeat(auto-fill, minmax(225px, 1fr))"}:{gridTemplateColumns:"repeat(2, 1fr)"},children:[n(S,{condition:h,show:n(H,{sx:{gridColumnStart:g?"span 2":"span 1",flex:1,display:"flex"},children:n(Ce,{projectId:e})})}),n(Y0,{id:e,description:t}),n(W0,{projectId:e,health:o}),n(S,{condition:g,show:n(re,{projectId:e,memberCount:r,change:i==null?void 0:i.projectMembersAddedCurrentWindow})}),n(K0,{features:a})]})})},de=u(Z1)(({theme:e})=>({padding:e.spacing(3,3),maxWidth:"350px",borderRadius:`${e.shape.borderRadiusMedium}px`,border:`1px solid ${e.palette.neutral.border}`,fontSize:e.typography.body2.fontSize})),t6=({children:e,id:t})=>{const[r,o]=c.useState(null),a=C=>o(C.currentTarget),i=()=>o(null);return l(H,{sx:{position:"absolute",top:C=>C.spacing(.5),right:C=>C.spacing(.5)},children:[n(N1,{onClick:a,"aria-describedby":t,size:"small",children:n(e4,{sx:{fontSize:C=>C.typography.body1.fontSize}})}),n(t4,{id:t,open:!!r,anchorEl:r,sx:C=>({zIndex:C.zIndex.tooltip}),children:n(n4,{onClickAway:i,children:l(de,{elevation:3,children:[n(N1,{onClick:i,sx:{position:"absolute",right:4,top:4},children:n(j7,{sx:{fontSize:C=>C.typography.body1.fontSize}})}),e,n(P7,{id:t,eventName:"project_overview",localStorageKey:"ProjectOverviewFeedback"})]})})})]})},ue=u(H)(({theme:e})=>({padding:e.spacing(0,0,2,2),display:"grid",gap:e.spacing(2),gridTemplateColumns:"repeat(4, 1fr)",flexWrap:"wrap",[e.breakpoints.down("lg")]:{gridTemplateColumns:"repeat(2, 1fr)"},[e.breakpoints.down("md")]:{padding:e.spacing(0,0,2)},[e.breakpoints.down("sm")]:{flexDirection:"column"}})),W5=u(H)(({theme:e})=>({position:"relative",padding:e.spacing(3),backgroundColor:e.palette.background.paper,flex:1,display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",borderRadius:`${e.shape.borderRadiusLarge}px`,[e.breakpoints.down("lg")]:{padding:e.spacing(2)}})),pe=u(F)(({theme:e})=>({color:e.palette.text.secondary,fontSize:e.typography.body2.fontSize,lineHeight:e.typography.body2.lineHeight})),he=({stats:e})=>{if(Object.keys(e).length===0)return null;const{avgTimeToProdCurrentWindow:t,projectActivityCurrentWindow:r,projectActivityPastWindow:o,createdCurrentWindow:a,createdPastWindow:i,archivedCurrentWindow:s,archivedPastWindow:C}=e;return l(ue,{children:[n(W5,{children:n(w5,{title:"Total changes",boxText:String(r),change:r-o,children:n(t6,{id:"total-changes",children:"Sum of all configuration and state modifications in the project."})})}),n(W5,{children:n(w5,{title:"Avg. time to production",boxText:l(H,{sx:{display:"flex",alignItems:"center",gap:p=>p.spacing(1)},children:[t," ",n(F,{component:"span",children:"days"})]}),customChangeElement:n(pe,{children:"In project life"}),percentage:!0,children:n(t6,{id:"avg-time-to-prod",children:'How long did it take on average from a feature toggle was created until it was enabled in an environment of type production. This is calculated only from feature toggles with the type of "release".'})})}),n(W5,{children:n(w5,{title:"Features created",boxText:String(a),change:a-i})}),n(W5,{children:n(w5,{title:"Features archived",boxText:String(s),change:s-C})})]})},ge=15*1e3,me=u("div")(({theme:e})=>({display:"flex",[e.breakpoints.down("md")]:{flexDirection:"column"}})),fe=u("div")(()=>({width:"100%",minWidth:0})),ye=u(H)(()=>({display:"flex",flexDirection:"column",width:"100%",minWidth:0})),ve=()=>{const e=J("projectId"),t=H1(e),{project:r,loading:o}=v1(e,{refreshInterval:ge}),{members:a,features:i,health:s,description:C,environments:p,stats:d}=r;w1(`Project overview – ${t}`);const{setLastViewed:h}=I7();return c.useEffect(()=>{h(e)},[e,h]),l(me,{children:[n(ce,{id:e,description:C,memberCount:a,health:s,features:i,stats:d}),l(ye,{children:[n(he,{stats:r.stats}),n(fe,{children:n($0,{features:i,environments:p,loading:o})})]})]})},be=(e,t)=>{const r=e5(`api/admin/projects/${e}/health-report`),{data:o,error:a}=c5(r,Ve,t),i=c.useCallback(()=>{r4(r).catch(console.warn)},[r]);return{healthReport:o,refetchHealthReport:i,loading:!a&&!o,error:a}},Ve=e=>fetch(e).then(t5("Health report")).then(t=>t.json());var w3={},_e=E5;Object.defineProperty(w3,"__esModule",{value:!0});var Q2=w3.default=void 0,xe=_e(M5()),we=T5,Se=(0,xe.default)((0,we.jsx)("path",{d:"M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"}),"ReportProblemOutlined");Q2=w3.default=Se;const He=u(H)(({theme:e})=>({display:"flex",alignItems:"center",color:e.palette.success.dark,"& svg":{color:e.palette.success.main}})),n6=u(H)(({theme:e})=>({display:"flex",alignItems:"center",color:e.palette.warning.dark,"& svg":{color:e.palette.warning.main}})),Me=u(Z1)(({theme:e})=>({padding:e.spacing(4),marginBottom:e.spacing(2),borderRadius:e.shape.borderRadiusLarge,boxShadow:"none",display:"flex",justifyContent:"space-between",[e.breakpoints.down("md")]:{flexDirection:"column",gap:e.spacing(2)}})),F2=u("h2")(({theme:e})=>({fontSize:e.fontSizes.mainHeader,marginBottom:e.spacing(1)})),Ee=u("p")(({theme:e})=>({fontSize:"2rem",fontWeight:e.fontWeight.bold})),Te=u("p")(({theme:e})=>({color:e.palette.text.secondary})),r6=u("ul")(({theme:e})=>({listStyleType:"none",margin:0,padding:0,"& svg":{marginRight:e.spacing(1)}})),o6=u("p")(({theme:e})=>({marginLeft:e.spacing(4)})),ke=({healthReport:e})=>{const t=e.health<50?"error.main":e.health<75?"warning.main":"success.main",r=()=>l(He,{children:[n(o4,{}),l("span",{children:[e.activeCount," active toggles"]})]}),o=()=>l(n6,{children:[n(Q2,{}),l("span",{children:[e.staleCount," stale toggles"]})]}),a=()=>l(n6,{children:[n(Q2,{}),l("span",{children:[e.potentiallyStaleCount," potentially stale toggles"]})]});return l(Me,{children:[l(H,{children:[n(F2,{children:"Health rating"}),n(S,{condition:e.health>-1,show:l(Y,{children:[l(Ee,{sx:{color:t},children:[e.health,"%"]}),l(Te,{children:["Last updated:"," ",n(d3,{date:e.updatedAt,live:!1})]})]})})]}),l(H,{children:[n(F2,{children:"Toggle report"}),l(r6,{children:[n("li",{children:n(S,{condition:!!e.activeCount,show:r})}),n(S,{condition:!!e.activeCount,show:n(o6,{children:"Also includes potentially stale toggles."})}),n("li",{children:n(S,{condition:!!e.staleCount,show:o})})]})]}),l(H,{sx:{flexBasis:"40%"},children:[n(F2,{children:"Potential actions"}),n(r6,{children:n("li",{children:n(S,{condition:!!e.potentiallyStaleCount,show:a})})}),n(S,{condition:!!e.potentiallyStaleCount,show:n(o6,{children:"Review your feature toggles and delete unused toggles."}),elseShow:n("span",{children:"No action is required"})})]})]})},Ae=({row:e})=>{const t=u1();return e.original.expiredAt?n(y2,{value:e.original.expiredAt}):n(d1,{children:n(F,{variant:"body2",color:t.palette.text.secondary,children:"N/A"})})},Le=u("span")(({theme:e})=>({display:"flex",gap:"1ch",alignItems:"center",color:e.palette.warning.dark,"& svg":{color:e.palette.warning.main}})),De=u("span")(({theme:e})=>({display:"flex",gap:"1ch",alignItems:"center",color:e.palette.success.dark,"& svg":{color:e.palette.success.main}})),Ze=({row:e})=>e.original.status==="potentially-stale"?n(d1,{children:l(Le,{children:[n(E9,{}),n("span",{children:"Potentially stale"})]})}):n(d1,{children:l(De,{children:[n(a4,{}),n("span",{children:"Healthy"})]})}),a6=40,Re=7,M4={[B7]:a6,[$7]:a6,[z7]:Re},E4=(e,t)=>Math.abs(O7(e,t)),T4=(e,t)=>e>=M4[t],Fe=e=>{const{type:t,createdAt:r}=e,o=i4(r),i=E4(o,new Date);return T4(i,t)&&t!==s4&&t!==C4?"potentially-stale":"healthy"},je=e=>{const{type:t,createdAt:r}=e;if(t===s4||t===C4)return;const o=i4(r),a=new Date,i=E4(o,a);if(T4(i,t)){const s=i-M4[t];return A9(a,s).toISOString()}},Pe=({projectId:e,features:t})=>{const r=u1(),o=f1(r.breakpoints.down("sm")),a=f1(r.breakpoints.down("md")),i=f1(r.breakpoints.down("lg")),{uiConfig:s}=l1(),C=!!s.flags.lastSeenByEnvironment,p=c.useMemo(()=>t.map(T=>({project:e,name:T.name,type:T.type,stale:T.stale,environments:T.environments,status:Fe(T),lastSeenAt:T.lastSeenAt,createdAt:T.createdAt,expiredAt:je(T)})),[e,t]),d=c.useMemo(()=>({hiddenColumns:[],sortBy:[{id:"createdAt"}]}),[]),h=c.useMemo(()=>[{Header:"Seen",accessor:"lastSeenAt",Cell:({value:T,row:{original:M}})=>C?n(G6,{feature:M}):n(K6,{value:T}),align:"center",maxWidth:80},{Header:"Type",accessor:"type",align:"center",Cell:J6,disableGlobalFilter:!0,maxWidth:85},{Header:"Name",accessor:"name",sortType:"alphanumeric",Cell:N7,minWidth:120},{Header:"Created",accessor:"createdAt",sortType:"date",Cell:y2,disableGlobalFilter:!0,maxWidth:150},{Header:"Expired",accessor:"expiredAt",Cell:Ae,disableGlobalFilter:!0,maxWidth:150},{Header:"Status",id:"status",accessor:"status",Cell:Ze,disableGlobalFilter:!0,width:180},{Header:"State",accessor:"stale",sortType:"boolean",Cell:W7,disableGlobalFilter:!0,maxWidth:120}],[C]),{headerGroups:g,rows:m,prepareRow:w,state:{globalFilter:V},setGlobalFilter:b,setHiddenColumns:k}=n1.useTable({columns:h,data:p,initialState:d,sortTypes:A5,autoResetGlobalFilter:!1,autoResetHiddenColumns:!1,autoResetSortBy:!1,disableSortRemove:!0},n1.useGlobalFilter,n1.useFlexLayout,n1.useSortBy);V2([{condition:o,columns:["stale"]},{condition:a,columns:["expiredAt","lastSeenAt"]},{condition:i,columns:["createdAt"]}],k,h);const f=m.length<p.length?`Feature toggles (${m.length} of ${p.length})`:`Feature toggles (${p.length})`;return l(s1,{header:n(r1,{title:f,actions:n(k1,{initialValue:V,onChange:b})}),children:[n(d5,{value:V,children:n(b2,{headerGroups:g,prepareRow:w,rows:m})}),n(S,{condition:m.length===0,show:n(S,{condition:(V==null?void 0:V.length)>0,show:l(_1,{children:["No feature toggles found matching “",V,"”"]}),elseShow:n(_1,{children:"No feature toggles available. Get started by adding a new feature toggle."})})})]})},Ie=()=>{const e=J("projectId"),t=H1(e);w1(`Project health – ${t}`);const{healthReport:r,refetchHealthReport:o,error:a}=be(e,{refreshInterval:15*1e3});return r?l("div",{children:[n(S,{condition:!!a,show:n(O6,{"data-loading":!0,style:{maxWidth:"500px",marginTop:"1rem"},onClick:o,text:`Could not fetch health rating for ${e}`})}),n(ke,{healthReport:r}),n(Pe,{projectId:e,features:r.features})]}):null},Oe=u("div")(({theme:e})=>({borderRadius:"12.5px",backgroundColor:e.palette.background.paper,padding:"2rem"})),Be=()=>{const e=J("projectId");return n(Oe,{children:n(U7,{title:"Event Log",project:e,displayInline:!0})})},k4=(e,t)=>{const{data:r,error:o,mutate:a}=c5(e5(`api/admin/projects/${e}/change-requests/${t}`),$e,{refreshInterval:15e3});return{data:r,loading:!o&&!r,refetchChangeRequest:()=>a(),error:o}},$e=e=>fetch(e).then(t5("Request changes")).then(t=>t.json()),ze=u(Z1)(({theme:e})=>({padding:e.spacing(3,4),borderRadius:`${e.shape.borderRadiusLarge}px`}));u(H)(({theme:e})=>({display:"flex",alignItems:"center",marginBottom:e.spacing(2)}));const Ne=u(H)(({theme:e})=>({display:"flex",alignItems:"center"})),We=u(F)(({theme:e})=>({display:"flex",alignItems:"center",marginRight:e.spacing(1),fontSize:e.fontSizes.mainHeader})),Ue=u(q7)(({theme:e})=>({padding:e.spacing(.75,1.5),backgroundColor:e.palette.background.elevation2})),S3=u(_2)(({theme:e})=>({height:"24px",width:"24px"})),qe=({changeRequest:e})=>{var o,a,i;const[t,r]=c.useState(e.title);return l(ze,{elevation:0,children:[n(G7,{environmentChangeRequest:e,title:t,setTitle:r,children:n(We,{variant:"h1",sx:{mr:1.5},children:t})}),l(Ne,{children:[n(l4,{state:e.state}),l(F,{variant:"body2",sx:s=>({margin:s.spacing("auto",0,"auto",2)}),children:["Created"," ",n(d3,{minPeriod:60,date:new Date(e.createdAt)})," ","by"]}),n(H,{sx:s=>({marginLeft:s.spacing(1)}),children:n(z1,{title:(o=e==null?void 0:e.createdBy)==null?void 0:o.username,children:n(S3,{src:(a=e==null?void 0:e.createdBy)==null?void 0:a.imageUrl})})}),n(F,{variant:"body2",sx:s=>({marginLeft:s.spacing(.5)}),children:(i=e==null?void 0:e.createdBy)==null?void 0:i.username}),n(H,{sx:s=>({marginLeft:s.spacing(1.5)}),children:n(Ue,{variant:"outlined",children:l(F,{variant:"body2",sx:{lineHeight:1},children:["Environment:"," ",n(F,{display:"inline",fontWeight:"bold",variant:"body2",component:"span",children:e==null?void 0:e.environment})," ",n(K7,{}),"Updates:",n(J7,{featuresCount:e.features.length,segmentsCount:e.segments.length})]})})})]})]})};function i1(){return i1=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},i1.apply(this,arguments)}function f5(e,t){if(e==null)return{};var r={},o=Object.keys(e),a,i;for(i=0;i<o.length;i++)a=o[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}const Ge=c.createContext({}),e2=Ge;function Ke(e){return u5("MuiTimeline",e)}n5("MuiTimeline",["root","positionLeft","positionRight","positionAlternate"]);const Je=["position","className"],Ye=e=>{const{position:t,classes:r}=e,o={root:["root",t&&`position${R1(t)}`]};return g5(o,Ke,r)},Qe=u("ul",{name:"MuiTimeline",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,r.position&&t[`position${R1(r.position)}`]]}})({display:"flex",flexDirection:"column",padding:"6px 16px",flexGrow:1}),Xe=c.forwardRef(function(t,r){const o=p5({props:t,name:"MuiTimeline"}),{position:a="right",className:i}=o,s=f5(o,Je),C=i1({},o,{position:a}),p=Ye(C),d=c.useMemo(()=>({position:a}),[a]);return n(e2.Provider,{value:d,children:n(Qe,i1({className:h5(p.root,i),ownerState:C,ref:r},s))})}),A4=Xe;function et(e){return u5("MuiTimelineContent",e)}const tt=n5("MuiTimelineContent",["root","positionLeft","positionRight","positionAlternate"]),nt=["className"],rt=e=>{const{position:t,classes:r}=e,o={root:["root",`position${R1(t)}`]};return g5(o,et,r)},ot=u(F,{name:"MuiTimelineContent",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[`position${R1(r.position)}`]]}})(({ownerState:e})=>i1({flex:1,padding:"6px 16px",textAlign:"left"},e.position==="left"&&{textAlign:"right"})),at=c.forwardRef(function(t,r){const o=p5({props:t,name:"MuiTimelineContent"}),{className:a}=o,i=f5(o,nt),{position:s}=c.useContext(e2),C=i1({},o,{position:s||"right"}),p=rt(C);return n(ot,i1({component:"div",className:h5(p.root,a),ownerState:C,ref:r},i))}),L4=at,it=n5("MuiTimelineOppositeContent",["root","positionLeft","positionRight","positionAlternate"]),st=it;function Ct(e){return u5("MuiTimelineItem",e)}const lt=n5("MuiTimelineItem",["root","positionLeft","positionRight","positionAlternate","missingOppositeContent"]),D4=lt,ct=["position","className"],dt=e=>{const{position:t,classes:r,hasOppositeContent:o}=e,a={root:["root",`position${R1(t)}`,!o&&"missingOppositeContent"]};return g5(a,Ct,r)},ut=u("li",{name:"MuiTimelineItem",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[`position${R1(r.position)}`]]}})(({ownerState:e})=>i1({listStyle:"none",display:"flex",position:"relative",minHeight:70},e.position==="left"&&{flexDirection:"row-reverse"},e.position==="alternate"&&{"&:nth-of-type(even)":{flexDirection:"row-reverse",[`& .${tt.root}`]:{textAlign:"right"},[`& .${st.root}`]:{textAlign:"left"}}},!e.hasOppositeContent&&{"&:before":{content:'""',flex:1,padding:"6px 16px"}})),pt=c.forwardRef(function(t,r){const o=p5({props:t,name:"MuiTimelineItem"}),{position:a,className:i}=o,s=f5(o,ct),{position:C}=c.useContext(e2);let p=!1;c.Children.forEach(o.children,m=>{Y7(m,["TimelineOppositeContent"])&&(p=!0)});const d=i1({},o,{position:a||C||"right",hasOppositeContent:p}),h=dt(d),g=c.useMemo(()=>({position:d.position}),[d.position]);return n(e2.Provider,{value:g,children:n(ut,i1({className:h5(h.root,i),ownerState:d,ref:r},s))})}),K5=pt;function ht(e){return u5("MuiTimelineSeparator",e)}n5("MuiTimelineSeparator",["root"]);const gt=["className"],mt=e=>{const{classes:t}=e;return g5({root:["root"]},ht,t)},ft=u("div",{name:"MuiTimelineSeparator",slot:"Root",overridesResolver:(e,t)=>t.root})({display:"flex",flexDirection:"column",flex:0,alignItems:"center"}),yt=c.forwardRef(function(t,r){const o=p5({props:t,name:"MuiTimelineSeparator"}),{className:a}=o,i=f5(o,gt),s=o,C=mt(s);return n(ft,i1({className:h5(C.root,a),ownerState:s,ref:r},i))}),J5=yt;function vt(e){return u5("MuiTimelineDot",e)}n5("MuiTimelineDot",["root","filled","outlined","filledGrey","outlinedGrey","filledPrimary","outlinedPrimary","filledSecondary","outlinedSecondary"]);const bt=["className","color","variant"],Vt=e=>{const{color:t,variant:r,classes:o}=e,a={root:["root",r,t!=="inherit"&&`${r}${R1(t)}`]};return g5(a,vt,o)},_t=u("span",{name:"MuiTimelineDot",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.color!=="inherit"&&`${r.variant}${R1(r.color)}`],t[r.variant]]}})(({ownerState:e,theme:t})=>i1({display:"flex",alignSelf:"baseline",borderStyle:"solid",borderWidth:2,padding:4,borderRadius:"50%",boxShadow:(t.vars||t).shadows[1],margin:"11.5px 0"},e.variant==="filled"&&i1({borderColor:"transparent"},e.color!=="inherit"&&i1({},e.color==="grey"?{color:(t.vars||t).palette.grey[50],backgroundColor:(t.vars||t).palette.grey[400]}:{color:(t.vars||t).palette[e.color].contrastText,backgroundColor:(t.vars||t).palette[e.color].main})),e.variant==="outlined"&&i1({boxShadow:"none",backgroundColor:"transparent"},e.color!=="inherit"&&i1({},e.color==="grey"?{borderColor:(t.vars||t).palette.grey[400]}:{borderColor:(t.vars||t).palette[e.color].main})))),xt=c.forwardRef(function(t,r){const o=p5({props:t,name:"MuiTimelineDot"}),{className:a,color:i="grey",variant:s="filled"}=o,C=f5(o,bt),p=i1({},o,{color:i,variant:s}),d=Vt(p);return n(_t,i1({className:h5(d.root,a),ownerState:p,ref:r},C))}),Z4=xt;function wt(e){return u5("MuiTimelineConnector",e)}n5("MuiTimelineConnector",["root"]);const St=["className"],Ht=e=>{const{classes:t}=e;return g5({root:["root"]},wt,t)},Mt=u("span",{name:"MuiTimelineConnector",slot:"Root",overridesResolver:(e,t)=>t.root})(({theme:e})=>({width:2,backgroundColor:(e.vars||e).palette.grey[400],flexGrow:1})),Et=c.forwardRef(function(t,r){const o=p5({props:t,name:"MuiTimelineConnector"}),{className:a}=o,i=f5(o,St),s=o,C=Ht(s);return n(Mt,i1({className:h5(C.root,a),ownerState:s,ref:r},i))}),R4=Et,Tt=u(Z1)(({theme:e})=>({marginTop:e.spacing(2),borderRadius:`${e.shape.borderRadiusLarge}px`})),kt=u(H)(({theme:e})=>({padding:e.spacing(2),marginBottom:`-${e.spacing(4)}`})),At=u(A4)(()=>({[`& .${D4.root}:before`]:{flex:0,padding:0}})),Lt=["Draft","In review","Approved","Applied"],Dt=["Draft","In review","Rejected"],Zt=(e,t,r,o)=>e==="Cancelled"?"grey":e==="Rejected"?r==="Rejected"?"error":"success":t!==-1&&t>=o?"success":t+1===o?"primary":"grey",Rt=({state:e})=>{const t=e==="Rejected"?Dt:Lt,r=t.findIndex(o=>o===e);return n(Tt,{elevation:0,children:n(kt,{children:n(At,{children:t.map((o,a)=>{const i=Zt(e,r,o,a);let s={};return r+1===a&&!(e==="Cancelled"&&o==="Draft")&&(s={variant:"outlined"}),Ft(i,o,a<t.length-1,s)})})})})},Ft=(e,t,r,o={})=>l(K5,{children:[l(J5,{children:[n(Z4,{color:e,...o}),r&&n(R4,{})]}),n(L4,{children:t})]},t),H3=()=>e=>e!=="color"&&e!=="sx"&&e!=="approved"&&e!=="border"&&e!=="bgColor"&&e!=="svgColor",Q1=u(H)(({theme:e})=>({display:"flex",alignItems:"center"})),F4=u(u3)(({theme:e})=>({color:e.palette.error.main,height:"35px",width:"35px",marginRight:e.spacing(1)})),i6=u(u3)(({theme:e})=>({color:e.palette.warning.main,height:"35px",width:"35px",marginRight:e.spacing(1)})),X2=u(c4)(({theme:e})=>({color:e.palette.success.main,height:"35px",width:"35px",marginRight:e.spacing(1)})),jt=u(H)(({theme:e})=>({display:"flex",marginTop:e.spacing(2)})),Pt=u(H,{shouldForwardProp:H3()})(({theme:e,bgColor:t,svgColor:r})=>({borderRadius:`${e.shape.borderRadiusMedium}px`,backgroundColor:t,padding:e.spacing(1,2),marginRight:e.spacing(2),height:"45px",width:"45px",display:"flex",alignItems:"center",justifyContent:"center",svg:{color:r}})),j4=u(z6)(({theme:e})=>({margin:e.spacing(2.5,0)})),It=u(H,{shouldForwardProp:H3()})(({theme:e,border:t})=>({borderRadius:`${e.shape.borderRadiusLarge}px`,border:t,padding:e.spacing(3),width:"100%"})),X1=u(F,{shouldForwardProp:H3()})(({theme:e,color:t})=>({fontWeight:"bold",color:t})),Ot=(e,t)=>e==="Approved"?`2px solid ${t.palette.success.main}`:e==="Applied"?`2px solid ${t.palette.primary.main}`:`1px solid ${t.palette.divider}`,Bt=(e,t)=>e==="Approved"?{bgColor:t.palette.success.main,svgColor:t.palette.background.paper}:e==="Applied"?{bgColor:t.palette.primary.main,svgColor:t.palette.background.paper}:{bgColor:t.palette.background.elevation2,svgColor:t.palette.neutral.main},$t=({changeRequest:e})=>{const t=u1();return l(jt,{children:[n(Pt,{...Bt(e.state,t),children:n(Q7,{style:{transform:"scale(1.5)"}})}),n(It,{sx:{backgroundColor:e.state==="In review"?t.palette.warning.light:"initial"},border:Ot(e.state,t),children:n(zt,{changeRequest:e})})]})},zt=({changeRequest:e})=>{const{state:t}=e;return t?t==="Approved"?n(Nt,{}):t==="Applied"?n(Ut,{}):t==="Cancelled"?n(qt,{}):t==="Rejected"?n(Gt,{}):n(Wt,{minApprovals:e.minApprovals}):null},Nt=()=>{const e=u1();return l(Y,{children:[l(Q1,{children:[n(X2,{}),l(H,{children:[n(X1,{color:e.palette.success.dark,children:"Changes approved"}),n(F,{children:"One approving review from requested approvers"})]})]}),n(j4,{}),l(Q1,{children:[n(X2,{}),n(H,{children:n(X1,{color:e.palette.success.dark,children:"Changes are ready to be applied"})})]})]})},Wt=({minApprovals:e})=>{const t=u1();return l(Y,{children:[l(Q1,{children:[n(i6,{}),l(H,{children:[n(X1,{color:t.palette.warning.dark,children:"Review required"}),l(F,{children:["At least ",e," approval(s) must be submitted before changes can be applied"]})]})]}),n(j4,{}),l(Q1,{children:[n(i6,{}),n(X1,{color:t.palette.warning.dark,children:"Apply changes is blocked"})]})]})},Ut=()=>{const e=u1();return n(Y,{children:l(Q1,{children:[n(X2,{sx:{color:e.palette.primary.main}}),n(H,{children:n(X1,{color:e.palette.primary.main,children:"Changes applied"})})]})})},qt=()=>{const e=u1();return n(Y,{children:l(Q1,{children:[n(F4,{}),n(H,{children:n(X1,{color:e.palette.error.main,children:"Changes cancelled"})})]})})},Gt=()=>{const e=u1();return n(Y,{children:l(Q1,{children:[n(F4,{}),n(H,{children:n(X1,{color:e.palette.error.main,children:"Changes rejected"})})]})})};var M3={},Kt=E5;Object.defineProperty(M3,"__esModule",{value:!0});var P4=M3.default=void 0,Jt=Kt(M5()),Yt=T5,Qt=(0,Jt.default)((0,Yt.jsx)("path",{d:"m7 10 5 5 5-5z"}),"ArrowDropDown");P4=M3.default=Qt;const Xt=({disabled:e,onReject:t,onApprove:r,children:o})=>{const{uiConfig:a}=l1(),{isAdmin:i}=c.useContext(F1),s=J("projectId"),C=J("id"),{user:p}=d4(),{data:d}=k4(s,C),[h,g]=q5.useState(!1),m=q5.useRef(null),w=()=>{g(k=>!k)},V=k=>{m.current&&m.current.contains(k.target)||g(!1)},b=m.current?m.current.offsetWidth:null;return l(q5.Fragment,{children:[n(L5,{variant:"contained",disabled:e||(d==null?void 0:d.createdBy.id)===(p==null?void 0:p.id)&&!i,"aria-controls":h?"review-options-menu":void 0,"aria-expanded":h?"true":void 0,"aria-label":"review changes","aria-haspopup":"menu",onClick:w,ref:m,endIcon:n(P4,{}),permission:X7,projectId:s,environmentId:d==null?void 0:d.environment,children:o}),n(t4,{sx:{zIndex:1,width:b},open:h,anchorEl:m.current,role:void 0,transition:!0,disablePortal:!0,children:({TransitionProps:k,placement:f})=>{var T;return n(e8,{...k,style:{transformOrigin:f==="bottom"?"center top":"center bottom"},children:n(Z1,{className:"dropdown-outline",children:n(n4,{onClickAway:V,children:l(p2,{id:"review-options-menu",autoFocusItem:!0,children:[l(I1,{onClick:r,children:[n(O1,{children:n(o4,{fontSize:"small"})}),n(B1,{children:"Approve changes"})]}),n(S,{condition:!!((T=a==null?void 0:a.flags)!=null&&T.changeRequestReject),show:l(I1,{onClick:t,children:[n(O1,{children:n(s9,{fontSize:"small"})}),n(B1,{children:"Reject changes"})]})})]})})})})}})]})};var I4={},E3={},T3={};Object.defineProperty(T3,"__esModule",{value:!0});var en=c,tn=nn(en);function nn(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t.default=e,t}T3.default=function(e,t,r){return tn.createElement("a",{href:e,key:r},t)};var k3={};Object.defineProperty(k3,"__esModule",{value:!0});k3.default=function(e){return e};var A3={},j2,s6;function rn(){return s6||(s6=1,j2=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/),j2}var P2,C6;function on(){return C6||(C6=1,P2=/[\0-\x1F\x7F-\x9F]/),P2}var I2,l6;function an(){return l6||(l6=1,I2=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/),I2}var O2,c6;function sn(){return c6||(c6=1,O2=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/),O2}var B2,d6;function Cn(){return d6||(d6=1,B2=function(e){var t={};t.src_Any=rn().source,t.src_Cc=on().source,t.src_Z=an().source,t.src_P=sn().source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");var r="[><|]";return t.src_pseudo_letter="(?:(?!"+r+"|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|"+r+"|"+t.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+r+`|[()[\\]{}.,"'?!\\-]).|\\[(?:(?!`+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+`|["]).)+\\"|\\'(?:(?!`+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-]).|\\.{2,4}[a-zA-Z0-9%/]|\\.(?!"+t.src_ZCc+"|[.]).|"+(e&&e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+"\\,(?!"+t.src_ZCc+").|\\!(?!"+t.src_ZCc+"|[!]).|\\?(?!"+t.src_ZCc+"|[?]).)+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy="(^|"+r+'|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}),B2}function e3(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach(function(r){r&&Object.keys(r).forEach(function(o){e[o]=r[o]})}),e}function S2(e){return Object.prototype.toString.call(e)}function ln(e){return S2(e)==="[object String]"}function cn(e){return S2(e)==="[object Object]"}function dn(e){return S2(e)==="[object RegExp]"}function u6(e){return S2(e)==="[object Function]"}function un(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}var O4={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};function pn(e){return Object.keys(e||{}).reduce(function(t,r){return t||O4.hasOwnProperty(r)},!1)}var hn={"http:":{validate:function(e,t,r){var o=e.slice(t);return r.re.http||(r.re.http=new RegExp("^\\/\\/"+r.re.src_auth+r.re.src_host_port_strict+r.re.src_path,"i")),r.re.http.test(o)?o.match(r.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,r){var o=e.slice(t);return r.re.no_http||(r.re.no_http=new RegExp("^"+r.re.src_auth+"(?:localhost|(?:(?:"+r.re.src_domain+")\\.)+"+r.re.src_domain_root+")"+r.re.src_port+r.re.src_host_terminator+r.re.src_path,"i")),r.re.no_http.test(o)?t>=3&&e[t-3]===":"||t>=3&&e[t-3]==="/"?0:o.match(r.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,r){var o=e.slice(t);return r.re.mailto||(r.re.mailto=new RegExp("^"+r.re.src_email_name+"@"+r.re.src_host_strict,"i")),r.re.mailto.test(o)?o.match(r.re.mailto)[0].length:0}}},gn="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",mn="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function fn(e){e.__index__=-1,e.__text_cache__=""}function yn(e){return function(t,r){var o=t.slice(r);return e.test(o)?o.match(e)[0].length:0}}function p6(){return function(e,t){t.normalize(e)}}function t2(e){var t=e.re=Cn()(e.__opts__),r=e.__tlds__.slice();e.onCompile(),e.__tlds_replaced__||r.push(gn),r.push(t.src_xn),t.src_tlds=r.join("|");function o(C){return C.replace("%TLDS%",t.src_tlds)}t.email_fuzzy=RegExp(o(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(o(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(o(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(o(t.tpl_host_fuzzy_test),"i");var a=[];e.__compiled__={};function i(C,p){throw new Error('(LinkifyIt) Invalid schema "'+C+'": '+p)}Object.keys(e.__schemas__).forEach(function(C){var p=e.__schemas__[C];if(p!==null){var d={validate:null,link:null};if(e.__compiled__[C]=d,cn(p)){dn(p.validate)?d.validate=yn(p.validate):u6(p.validate)?d.validate=p.validate:i(C,p),u6(p.normalize)?d.normalize=p.normalize:p.normalize?i(C,p):d.normalize=p6();return}if(ln(p)){a.push(C);return}i(C,p)}}),a.forEach(function(C){e.__compiled__[e.__schemas__[C]]&&(e.__compiled__[C].validate=e.__compiled__[e.__schemas__[C]].validate,e.__compiled__[C].normalize=e.__compiled__[e.__schemas__[C]].normalize)}),e.__compiled__[""]={validate:null,normalize:p6()};var s=Object.keys(e.__compiled__).filter(function(C){return C.length>0&&e.__compiled__[C]}).map(un).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","ig"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),fn(e)}function vn(e,t){var r=e.__index__,o=e.__last_index__,a=e.__text_cache__.slice(r,o);this.schema=e.__schema__.toLowerCase(),this.index=r+t,this.lastIndex=o+t,this.raw=a,this.text=a,this.url=a}function h6(e,t){var r=new vn(e,t);return e.__compiled__[r.schema].normalize(r,e),r}function x1(e,t){if(!(this instanceof x1))return new x1(e,t);t||pn(e)&&(t=e,e={}),this.__opts__=e3({},O4,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=e3({},hn,e),this.__compiled__={},this.__tlds__=mn,this.__tlds_replaced__=!1,this.re={},t2(this)}x1.prototype.add=function(t,r){return this.__schemas__[t]=r,t2(this),this};x1.prototype.set=function(t){return this.__opts__=e3(this.__opts__,t),this};x1.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var r,o,a,i,s,C,p,d,h;if(this.re.schema_test.test(t)){for(p=this.re.schema_search,p.lastIndex=0;(r=p.exec(t))!==null;)if(i=this.testSchemaAt(t,r[2],p.lastIndex),i){this.__schema__=r[2],this.__index__=r.index+r[1].length,this.__last_index__=r.index+r[0].length+i;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(d=t.search(this.re.host_fuzzy_test),d>=0&&(this.__index__<0||d<this.__index__)&&(o=t.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))!==null&&(s=o.index+o[1].length,(this.__index__<0||s<this.__index__)&&(this.__schema__="",this.__index__=s,this.__last_index__=o.index+o[0].length))),this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&(h=t.indexOf("@"),h>=0&&(a=t.match(this.re.email_fuzzy))!==null&&(s=a.index+a[1].length,C=a.index+a[0].length,(this.__index__<0||s<this.__index__||s===this.__index__&&C>this.__last_index__)&&(this.__schema__="mailto:",this.__index__=s,this.__last_index__=C))),this.__index__>=0};x1.prototype.pretest=function(t){return this.re.pretest.test(t)};x1.prototype.testSchemaAt=function(t,r,o){return this.__compiled__[r.toLowerCase()]?this.__compiled__[r.toLowerCase()].validate(t,o,this):0};x1.prototype.match=function(t){var r=0,o=[];this.__index__>=0&&this.__text_cache__===t&&(o.push(h6(this,r)),r=this.__last_index__);for(var a=r?t.slice(r):t;this.test(a);)o.push(h6(this,r)),a=a.slice(this.__last_index__),r+=this.__last_index__;return o.length?o:null};x1.prototype.tlds=function(t,r){return t=Array.isArray(t)?t:[t],r?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(o,a,i){return o!==i[a-1]}).reverse(),t2(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,t2(this),this)};x1.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),t.schema==="mailto:"&&!/^mailto:/i.test(t.url)&&(t.url="mailto:"+t.url)};x1.prototype.onCompile=function(){};var bn=x1;const Vn=["aaa","aarp","abarth","abb","abbott","abbvie","abc","able","abogado","abudhabi","ac","academy","accenture","accountant","accountants","aco","actor","ad","ads","adult","ae","aeg","aero","aetna","af","afl","africa","ag","agakhan","agency","ai","aig","airbus","airforce","airtel","akdn","al","alfaromeo","alibaba","alipay","allfinanz","allstate","ally","alsace","alstom","am","amazon","americanexpress","americanfamily","amex","amfam","amica","amsterdam","analytics","android","anquan","anz","ao","aol","apartments","app","apple","aq","aquarelle","ar","arab","aramco","archi","army","arpa","art","arte","as","asda","asia","associates","at","athleta","attorney","au","auction","audi","audible","audio","auspost","author","auto","autos","avianca","aw","aws","ax","axa","az","azure","ba","baby","baidu","banamex","bananarepublic","band","bank","bar","barcelona","barclaycard","barclays","barefoot","bargains","baseball","basketball","bauhaus","bayern","bb","bbc","bbt","bbva","bcg","bcn","bd","be","beats","beauty","beer","bentley","berlin","best","bestbuy","bet","bf","bg","bh","bharti","bi","bible","bid","bike","bing","bingo","bio","biz","bj","black","blackfriday","blockbuster","blog","bloomberg","blue","bm","bms","bmw","bn","bnpparibas","bo","boats","boehringer","bofa","bom","bond","boo","book","booking","bosch","bostik","boston","bot","boutique","box","br","bradesco","bridgestone","broadway","broker","brother","brussels","bs","bt","build","builders","business","buy","buzz","bv","bw","by","bz","bzh","ca","cab","cafe","cal","call","calvinklein","cam","camera","camp","canon","capetown","capital","capitalone","car","caravan","cards","care","career","careers","cars","casa","case","cash","casino","cat","catering","catholic","cba","cbn","cbre","cbs","cc","cd","center","ceo","cern","cf","cfa","cfd","cg","ch","chanel","channel","charity","chase","chat","cheap","chintai","christmas","chrome","church","ci","cipriani","circle","cisco","citadel","citi","citic","city","cityeats","ck","cl","claims","cleaning","click","clinic","clinique","clothing","cloud","club","clubmed","cm","cn","co","coach","codes","coffee","college","cologne","com","comcast","commbank","community","company","compare","computer","comsec","condos","construction","consulting","contact","contractors","cooking","cookingchannel","cool","coop","corsica","country","coupon","coupons","courses","cpa","cr","credit","creditcard","creditunion","cricket","crown","crs","cruise","cruises","cu","cuisinella","cv","cw","cx","cy","cymru","cyou","cz","dabur","dad","dance","data","date","dating","datsun","day","dclk","dds","de","deal","dealer","deals","degree","delivery","dell","deloitte","delta","democrat","dental","dentist","desi","design","dev","dhl","diamonds","diet","digital","direct","directory","discount","discover","dish","diy","dj","dk","dm","dnp","do","docs","doctor","dog","domains","dot","download","drive","dtv","dubai","dunlop","dupont","durban","dvag","dvr","dz","earth","eat","ec","eco","edeka","edu","education","ee","eg","email","emerck","energy","engineer","engineering","enterprises","epson","equipment","er","ericsson","erni","es","esq","estate","et","etisalat","eu","eurovision","eus","events","exchange","expert","exposed","express","extraspace","fage","fail","fairwinds","faith","family","fan","fans","farm","farmers","fashion","fast","fedex","feedback","ferrari","ferrero","fi","fiat","fidelity","fido","film","final","finance","financial","fire","firestone","firmdale","fish","fishing","fit","fitness","fj","fk","flickr","flights","flir","florist","flowers","fly","fm","fo","foo","food","foodnetwork","football","ford","forex","forsale","forum","foundation","fox","fr","free","fresenius","frl","frogans","frontdoor","frontier","ftr","fujitsu","fun","fund","furniture","futbol","fyi","ga","gal","gallery","gallo","gallup","game","games","gap","garden","gay","gb","gbiz","gd","gdn","ge","gea","gent","genting","george","gf","gg","ggee","gh","gi","gift","gifts","gives","giving","gl","glass","gle","global","globo","gm","gmail","gmbh","gmo","gmx","gn","godaddy","gold","goldpoint","golf","goo","goodyear","goog","google","gop","got","gov","gp","gq","gr","grainger","graphics","gratis","green","gripe","grocery","group","gs","gt","gu","guardian","gucci","guge","guide","guitars","guru","gw","gy","hair","hamburg","hangout","haus","hbo","hdfc","hdfcbank","health","healthcare","help","helsinki","here","hermes","hgtv","hiphop","hisamitsu","hitachi","hiv","hk","hkt","hm","hn","hockey","holdings","holiday","homedepot","homegoods","homes","homesense","honda","horse","hospital","host","hosting","hot","hoteles","hotels","hotmail","house","how","hr","hsbc","ht","hu","hughes","hyatt","hyundai","ibm","icbc","ice","icu","id","ie","ieee","ifm","ikano","il","im","imamat","imdb","immo","immobilien","in","inc","industries","infiniti","info","ing","ink","institute","insurance","insure","int","international","intuit","investments","io","ipiranga","iq","ir","irish","is","ismaili","ist","istanbul","it","itau","itv","jaguar","java","jcb","je","jeep","jetzt","jewelry","jio","jll","jm","jmp","jnj","jo","jobs","joburg","jot","joy","jp","jpmorgan","jprs","juegos","juniper","kaufen","kddi","ke","kerryhotels","kerrylogistics","kerryproperties","kfh","kg","kh","ki","kia","kids","kim","kinder","kindle","kitchen","kiwi","km","kn","koeln","komatsu","kosher","kp","kpmg","kpn","kr","krd","kred","kuokgroup","kw","ky","kyoto","kz","la","lacaixa","lamborghini","lamer","lancaster","lancia","land","landrover","lanxess","lasalle","lat","latino","latrobe","law","lawyer","lb","lc","lds","lease","leclerc","lefrak","legal","lego","lexus","lgbt","li","lidl","life","lifeinsurance","lifestyle","lighting","like","lilly","limited","limo","lincoln","link","lipsy","live","living","lk","llc","llp","loan","loans","locker","locus","lol","london","lotte","lotto","love","lpl","lplfinancial","lr","ls","lt","ltd","ltda","lu","lundbeck","luxe","luxury","lv","ly","ma","madrid","maif","maison","makeup","man","management","mango","map","market","marketing","markets","marriott","marshalls","maserati","mattel","mba","mc","mckinsey","md","me","med","media","meet","melbourne","meme","memorial","men","menu","merckmsd","mg","mh","miami","microsoft","mil","mini","mint","mit","mitsubishi","mk","ml","mlb","mls","mm","mma","mn","mo","mobi","mobile","moda","moe","moi","mom","monash","money","monster","mormon","mortgage","moscow","moto","motorcycles","mov","movie","mp","mq","mr","ms","msd","mt","mtn","mtr","mu","museum","music","mutual","mv","mw","mx","my","mz","na","nab","nagoya","name","natura","navy","nba","nc","ne","nec","net","netbank","netflix","network","neustar","new","news","next","nextdirect","nexus","nf","nfl","ng","ngo","nhk","ni","nico","nike","nikon","ninja","nissan","nissay","nl","no","nokia","northwesternmutual","norton","now","nowruz","nowtv","np","nr","nra","nrw","ntt","nu","nyc","nz","obi","observer","office","okinawa","olayan","olayangroup","oldnavy","ollo","om","omega","one","ong","onl","online","ooo","open","oracle","orange","org","organic","origins","osaka","otsuka","ott","ovh","pa","page","panasonic","paris","pars","partners","parts","party","passagens","pay","pccw","pe","pet","pf","pfizer","pg","ph","pharmacy","phd","philips","phone","photo","photography","photos","physio","pics","pictet","pictures","pid","pin","ping","pink","pioneer","pizza","pk","pl","place","play","playstation","plumbing","plus","pm","pn","pnc","pohl","poker","politie","porn","post","pr","pramerica","praxi","press","prime","pro","prod","productions","prof","progressive","promo","properties","property","protection","pru","prudential","ps","pt","pub","pw","pwc","py","qa","qpon","quebec","quest","racing","radio","re","read","realestate","realtor","realty","recipes","red","redstone","redumbrella","rehab","reise","reisen","reit","reliance","ren","rent","rentals","repair","report","republican","rest","restaurant","review","reviews","rexroth","rich","richardli","ricoh","ril","rio","rip","ro","rocher","rocks","rodeo","rogers","room","rs","rsvp","ru","rugby","ruhr","run","rw","rwe","ryukyu","sa","saarland","safe","safety","sakura","sale","salon","samsclub","samsung","sandvik","sandvikcoromant","sanofi","sap","sarl","sas","save","saxo","sb","sbi","sbs","sc","sca","scb","schaeffler","schmidt","scholarships","school","schule","schwarz","science","scot","sd","se","search","seat","secure","security","seek","select","sener","services","seven","sew","sex","sexy","sfr","sg","sh","shangrila","sharp","shaw","shell","shia","shiksha","shoes","shop","shopping","shouji","show","showtime","si","silk","sina","singles","site","sj","sk","ski","skin","sky","skype","sl","sling","sm","smart","smile","sn","sncf","so","soccer","social","softbank","software","sohu","solar","solutions","song","sony","soy","spa","space","sport","spot","sr","srl","ss","st","stada","staples","star","statebank","statefarm","stc","stcgroup","stockholm","storage","store","stream","studio","study","style","su","sucks","supplies","supply","support","surf","surgery","suzuki","sv","swatch","swiss","sx","sy","sydney","systems","sz","tab","taipei","talk","taobao","target","tatamotors","tatar","tattoo","tax","taxi","tc","tci","td","tdk","team","tech","technology","tel","temasek","tennis","teva","tf","tg","th","thd","theater","theatre","tiaa","tickets","tienda","tiffany","tips","tires","tirol","tj","tjmaxx","tjx","tk","tkmaxx","tl","tm","tmall","tn","to","today","tokyo","tools","top","toray","toshiba","total","tours","town","toyota","toys","tr","trade","trading","training","travel","travelchannel","travelers","travelersinsurance","trust","trv","tt","tube","tui","tunes","tushu","tv","tvs","tw","tz","ua","ubank","ubs","ug","uk","unicom","university","uno","uol","ups","us","uy","uz","va","vacations","vana","vanguard","vc","ve","vegas","ventures","verisign","vermögensberater","vermögensberatung","versicherung","vet","vg","vi","viajes","video","vig","viking","villas","vin","vip","virgin","visa","vision","viva","vivo","vlaanderen","vn","vodka","volkswagen","volvo","vote","voting","voto","voyage","vu","vuelos","wales","walmart","walter","wang","wanggou","watch","watches","weather","weatherchannel","webcam","weber","website","wed","wedding","weibo","weir","wf","whoswho","wien","wiki","williamhill","win","windows","wine","winners","wme","wolterskluwer","woodside","work","works","world","wow","ws","wtc","wtf","xbox","xerox","xfinity","xihuan","xin","xxx","xyz","yachts","yahoo","yamaxun","yandex","ye","yodobashi","yoga","yokohama","you","youtube","yt","yun","za","zappos","zara","zero","zip","zm","zone","zuerich","zw","ελ","ευ","бг","бел","дети","ею","католик","ком","мкд","мон","москва","онлайн","орг","рус","рф","сайт","срб","укр","қаз","հայ","ישראל","קום","ابوظبي","اتصالات","ارامكو","الاردن","البحرين","الجزائر","السعودية","العليان","المغرب","امارات","ایران","بارت","بازار","بيتك","بھارت","تونس","سودان","سورية","شبكة","عراق","عرب","عمان","فلسطين","قطر","كاثوليك","كوم","مصر","مليسيا","موريتانيا","موقع","همراه","پاکستان","ڀارت","कॉम","नेट","भारत","भारतम्","भारोत","संगठन","বাংলা","ভারত","ভাৰত","ਭਾਰਤ","ભારત","ଭାରତ","இந்தியா","இலங்கை","சிங்கப்பூர்","భారత్","ಭಾರತ","ഭാരതം","ලංකා","คอม","ไทย","ລາວ","გე","みんな","アマゾン","クラウド","グーグル","コム","ストア","セール","ファッション","ポイント","世界","中信","中国","中國","中文网","亚马逊","企业","佛山","信息","健康","八卦","公司","公益","台湾","台灣","商城","商店","商标","嘉里","嘉里大酒店","在线","大拿","天主教","娱乐","家電","广东","微博","慈善","我爱你","手机","招聘","政务","政府","新加坡","新闻","时尚","書籍","机构","淡马锡","游戏","澳門","点看","移动","组织机构","网址","网店","网站","网络","联通","谷歌","购物","通販","集团","電訊盈科","飞利浦","食品","餐厅","香格里拉","香港","닷넷","닷컴","삼성","한국"];Object.defineProperty(A3,"__esModule",{value:!0});var _n=bn,xn=B4(_n),wn=Vn,Sn=B4(wn);function B4(e){return e&&e.__esModule?e:{default:e}}var $4=new xn.default;$4.tlds(Sn.default);A3.default=function(e){return $4.match(e)};var L3={};Object.defineProperty(L3,"__esModule",{value:!0});L3.default=function(e){return e};Object.defineProperty(E3,"__esModule",{value:!0});var Hn=function(){function e(t,r){for(var o=0;o<r.length;o++){var a=r[o];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),Mn=c,x5=Fn(Mn),En=T3,Tn=H2(En),kn=k3,An=H2(kn),Ln=A3,Dn=H2(Ln),Zn=L3,Rn=H2(Zn);function H2(e){return e&&e.__esModule?e:{default:e}}function Fn(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t.default=e,t}function jn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t&&(typeof t=="object"||typeof t=="function")?t:e}function In(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var z4=function(e){In(t,e);function t(){return jn(this,t),Pn(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return Hn(t,[{key:"parseString",value:function(o){var a=this;if(o==="")return o;var i=this.props.matchDecorator(o);if(!i)return o;var s=[],C=0;return i.forEach(function(p,d){p.index>C&&s.push(o.substring(C,p.index));var h=a.props.hrefDecorator(p.url),g=a.props.textDecorator(p.text),m=a.props.componentDecorator(h,g,d);s.push(m),C=p.lastIndex}),o.length>C&&s.push(o.substring(C)),s.length===1?s[0]:s}},{key:"parse",value:function(o){var a=this,i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return typeof o=="string"?this.parseString(o):x5.isValidElement(o)&&o.type!=="a"&&o.type!=="button"?x5.cloneElement(o,{key:i},this.parse(o.props.children)):Array.isArray(o)?o.map(function(s,C){return a.parse(s,C)}):o}},{key:"render",value:function(){return x5.createElement(x5.Fragment,null,this.parse(this.props.children))}}]),t}(x5.Component);z4.defaultProps={componentDecorator:Tn.default,hrefDecorator:An.default,matchDecorator:Dn.default,textDecorator:Rn.default};E3.default=z4;Object.defineProperty(I4,"__esModule",{value:!0});var On=E3,Bn=$n(On);function $n(e){return e&&e.__esModule?e:{default:e}}var zn=I4.default=Bn.default;const Nn=u(H)(({theme:e})=>({display:"flex",marginTop:e.spacing(2)})),Wn=u(Z1)(({theme:e})=>({width:"100%",padding:e.spacing(1.5,3,2.5,3),backgroundColor:e.palette.neutral.light,borderRadius:e.shape.borderRadiusLarge,borderColor:e.palette.divider})),Un=u(H)(({theme:e})=>({display:"flex",borderBottom:"1px solid",borderColor:e.palette.divider,paddingBottom:e.spacing(1.5)})),qn=({comment:e})=>l(Nn,{children:[n(z1,{title:e.createdBy.username,children:n(t8,{src:e.createdBy.imageUrl})}),l(Wn,{variant:"outlined",children:[n(Un,{children:l(H,{children:[n("strong",{children:e.createdBy.username})," ",l(F,{color:"text.secondary",component:"span",children:["commented"," ",n(d3,{minPeriod:60,date:new Date(e.createdAt)})]})]})}),n(H,{sx:{paddingTop:2.5},children:n(zn,{children:e.text})})]})]}),N4=u(H)(({theme:e})=>({display:"flex",alignItems:"center",flexWrap:"wrap",marginTop:e.spacing(1.5),gap:e.spacing(1)})),Gn=u(c4)(({theme:e})=>({color:e.palette.success.main,marginLeft:"auto"})),Kn=u(u3)(({theme:e})=>({color:e.palette.error.main,marginLeft:"auto"})),W4=u(F)({maxWidth:"170px",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",color:"text.primary"}),Jn=({name:e,imageUrl:t})=>l(N4,{children:[n(S3,{src:t}),n(W4,{variant:"body1",children:e}),n(Gn,{})]}),Yn=({name:e,imageUrl:t})=>l(N4,{children:[n(S3,{src:t}),n(W4,{variant:"body1",children:e}),n(Kn,{})]}),Qn=({rejections:e=[]})=>l(Y,{children:[n(F,{variant:"body1",color:"text.secondary",children:"Rejected by"}),e.map(t=>n(Yn,{name:t.createdBy.username||"Unknown user",imageUrl:t.createdBy.imageUrl},t.createdBy.username))]}),Xn=({approvals:e=[]})=>l(Y,{children:[n(F,{variant:"body1",color:"text.secondary",children:n(S,{condition:(e==null?void 0:e.length)>0,show:"Approved by",elseShow:"No approvals yet"})}),e.map(t=>n(Jn,{name:t.createdBy.username||"Unknown user",imageUrl:t.createdBy.imageUrl},t.createdBy.username))]}),er=u(H)(({theme:e})=>({marginBottom:e.spacing(2)})),tr=({actualApprovals:e,minApprovals:t})=>l(Y,{children:["Reviewers"," ",l(F,{component:"span",color:"text.secondary",children:["(",e,"/",t," required)"]})]}),nr=({header:e,children:t})=>l(Z1,{elevation:0,sx:r=>({marginTop:r.spacing(2),padding:r.spacing(4),borderRadius:o=>`${o.shape.borderRadiusLarge}px`}),children:[n(er,{children:e}),t]}),rr=({changeRequest:e})=>n(nr,{header:n(tr,{actualApprovals:e.approvals.length,minApprovals:e.minApprovals}),children:n(S,{condition:e.state==="Rejected",show:n(Qn,{rejections:e.rejections}),elseShow:n(Xn,{approvals:e.approvals})})}),or=({open:e,onConfirm:t,onClose:r})=>{const[o,a]=c.useState("");return l(W1,{open:e,primaryButtonText:"Reject changes",secondaryButtonText:"Cancel",onClick:()=>t(o),onClose:r,title:"Reject changes",fullWidth:!0,children:[n(H,{children:"Add an optional comment why you reject those changes"}),n(p3,{sx:{mt:1},variant:"outlined",placeholder:"Add your comment here",fullWidth:!0,multiline:!0,minRows:2,onChange:i=>a(i.target.value),value:o})]})},ar=u(H)(({theme:e})=>({width:"30%",display:"flex",flexDirection:"column",[e.breakpoints.down("sm")]:{width:"100%"}})),ir=u(Z1)(({theme:e})=>({marginTop:e.spacing(2),marginLeft:e.spacing(2),width:"70%",padding:e.spacing(1,2),borderRadius:e.shape.borderRadiusLarge,[e.breakpoints.down("sm")]:{marginLeft:0,width:"100%"}})),sr=u(H)(({theme:e})=>({marginTop:e.spacing(3),display:"flex",justifyContent:"flex-end"})),Cr=u(H)(({theme:e})=>({padding:e.spacing(2)})),lr=u(H)(({theme:e})=>({display:"flex",[e.breakpoints.down("sm")]:{flexDirection:"column"}})),cr=()=>{var v;const e=J("projectId"),[t,r]=c.useState(!1),[o,a]=c.useState(!1),{user:i}=d4(),{isAdmin:s}=c.useContext(F1),[C,p]=c.useState(""),d=J("id"),{data:h,refetchChangeRequest:g}=k4(e,d),{changeState:m,addComment:w,loading:V}=m2(),{refetch:b}=f2(e),{setToastData:k,setToastApiError:f}=h1(),{isChangeRequestConfiguredForReview:T}=k5(e);if(!h)return null;const M=T(h.environment),j=async()=>{try{await m(e,Number(d),{state:"Applied"}),g(),b(),k({type:"success",title:"Success",text:"Changes applied"})}catch(E){f(c1(E))}},B=async()=>{try{await w(e,d,C),p(""),g(),k({type:"success",title:"Success",text:"Comment added"})}catch(E){f(c1(E))}},x=async()=>{try{await m(e,Number(d),{state:"Cancelled"}),r(!1),g(),b(),k({type:"success",title:"Success",text:"Changes cancelled"})}catch(E){f(c1(E))}},Z=async E=>{try{await m(e,Number(d),{state:"Rejected",comment:E}),a(!1),g(),b(),k({type:"success",title:"Success",text:"Changes rejected"})}catch(L){f(c1(L))}},I=async()=>{try{await m(e,Number(d),{state:"Approved"}),g(),b(),k({type:"success",title:"Success",text:"Changes approved"})}catch(E){f(c1(E))}},O=()=>r(!0),R=()=>r(!1),q=()=>a(!1),G=(h==null?void 0:h.createdBy.id)===(i==null?void 0:i.id)&&h.state==="In review"&&!s,W=h.approvals.some(E=>E.createdBy.id===(i==null?void 0:i.id)),y=n8(h);return l(Y,{children:[n(qe,{changeRequest:h}),l(lr,{children:[l(ar,{children:[n(Rt,{state:h.state}),n(rr,{changeRequest:h})]}),n(ir,{elevation:0,children:l(Cr,{children:["Requested Changes (",y,")",n(r8,{changeRequest:h,onRefetch:g}),(v=h.comments)==null?void 0:v.map(E=>n(qn,{comment:E},E.id)),n(o8,{user:i,commentText:C,onTypeComment:p,children:n(p1,{variant:"outlined",onClick:B,disabled:!M||C.trim().length===0||C.trim().length>1e3,children:"Comment"})}),n(S,{condition:G,show:n(y1,{sx:E=>({marginTop:E.spacing(1.5)}),severity:"info",children:"You can not approve your own change request"})}),n($t,{changeRequest:h}),l(sr,{children:[n(S,{condition:h.state==="In review"&&!W,show:l(Xt,{onReject:()=>a(!0),onApprove:I,disabled:!M,children:["Review changes (",y,")"]})}),n(S,{condition:h.state==="Approved",show:n(L5,{variant:"contained",onClick:j,projectId:e,permission:a8,environmentId:h.environment,disabled:!M||V,children:"Apply changes"})}),n(S,{condition:h.state!=="Applied"&&h.state!=="Rejected"&&h.state!=="Cancelled"&&(h.createdBy.id===(i==null?void 0:i.id)||s),show:n(p1,{sx:{marginLeft:E=>E.spacing(2)},variant:"outlined",onClick:O,children:"Cancel changes"})})]})]})}),l(W1,{open:t,onClick:x,onClose:R,title:"Cancel change request",children:[n(F,{sx:{marginBottom:2},children:"You are about to cancel this change request"}),n(F,{variant:"body2",sx:E=>({color:E.palette.neutral.dark}),children:"The change request will be moved to closed, and it can't be applied anymore. Once cancelled, the change request can't be reopened."})]}),n(or,{open:o,onConfirm:Z,onClose:q})]})]})},dr=({value:e})=>{const t=()=>e?n(l4,{state:e}):null;return e?n(d1,{children:t()}):n(d1,{})},ur=u("div")(({theme:e})=>({display:"flex",flexDirection:"row",alignItems:"center",margin:0})),pr=({value:e})=>{const{searchQuery:t}=h3();return n(d1,{children:n(ur,{children:l(F,{component:"span",variant:"body2",children:[" ",n(Q5,{search:t,children:e==null?void 0:e.username})]})})})},hr=u("div")(({theme:e})=>({display:"flex",flexDirection:"row",margin:0})),gr=({value:e,row:{original:t}})=>{const{searchQuery:r}=h3(),o=J("projectId"),{id:a,title:i,features:s,segments:C}=t,p=(s||[]).length+(C||[]).length,d=`/projects/${o}/change-requests/${a}`;return e?l(d1,{sx:{minWidth:"200px"},children:[n(hr,{children:n(F,{variant:"body2",children:n(l3,{component:S1,underline:"hover",to:d,sx:h=>({paddingTop:h.spacing(.2),marginRight:h.spacing(1),"&:hover":{textDecoration:"underline"}}),children:n(Q5,{search:r,children:i})})})}),l("span",{children:[`${p}`," ",p<=1?"update":"updates"]})]}):n(d1,{})},mr=N6()(e=>({header:{padding:e.spacing(0,4)},bodyClass:{padding:e.spacing(2,4,4,4),overflowX:"auto"}})),fr=u(H)(({theme:e})=>({display:"flex",flexDirection:"column",width:"300px",padding:e.spacing(1,0,1,2)})),yr=u(S1)(({theme:e})=>({overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap",textDecoration:"none","&:hover, &:focus":{textDecoration:"underline"}})),vr=u(S1)(({theme:e})=>({textDecoration:"none","&:hover, &:focus":{textDecoration:"underline"}})),br=u(H)(({theme:e})=>({display:"flex",flexDirection:"column",fontSize:e.fontSizes.smallBody,width:"100%",whiteSpace:"nowrap"})),Vr=({value:e,project:t})=>{const{searchQuery:r}=h3(),o=e==null?void 0:e.map(a=>a.name);return n(fr,{children:n(S,{condition:(o==null?void 0:o.length)<3,show:o==null?void 0:o.map(a=>n(yr,{title:a,to:`/projects/${t}/features/${a}`,children:n(Q5,{search:r,children:a})})),elseShow:l(i8,{tooltipProps:{maxWidth:"800px"},tooltip:n(br,{children:o==null?void 0:o.map(a=>n(vr,{title:a,to:`/projects/${t}/features/${a}`,children:n(Q5,{search:r,children:a})}))}),children:[o==null?void 0:o.length," toggles"]})})})},_r={id:"createdAt"},xr=u("div")({paddingLeft:0,paddingBottom:0}),wr=u(Y5)(({theme:e})=>({textTransform:"none",width:"auto",fontSize:e.fontSizes.bodySize,[e.breakpoints.up("md")]:{minWidth:160}})),Sr=u(H)(({theme:e})=>({textAlign:"right",paddingBottom:e.spacing(2),fontSize:e.fontSizes.smallBody})),Hr=({changeRequests:e=[],loading:t,projectId:r})=>{var W,y;const{classes:o}=mr(),a=f1(s8.breakpoints.down("md")),[i,s]=c3(),[C,p]=c.useState(i.get("search")||""),{value:d,setValue:h}=d2(`${r}:ProjectChangeRequest`,_r),[g,m]=c.useMemo(()=>{const v=e.filter(L=>L.state!=="Cancelled"&&L.state!=="Rejected"&&L.state!=="Applied"),E=e.filter(L=>L.state==="Cancelled"||L.state==="Rejected"||L.state==="Applied");return[v,E]},[e]),w=[{title:"Change requests",data:g},{title:"Closed",data:m}],[V,b]=c.useState(0),k=c.useMemo(()=>[{id:"Title",Header:"Title",width:100,canSort:!0,accessor:"title",searchable:!0,Cell:gr},{id:"Updated feature toggles",Header:"Updated feature toggles",canSort:!1,accessor:"features",searchable:!0,filterName:"feature",filterParsing:v=>(v==null?void 0:v.map(({name:E})=>E).join(`
|
|
3
|
+
`))||"",filterBy:(v,E)=>v.features.find(L=>E.map(N=>N.toLowerCase()).includes(L.name.toLowerCase())),Cell:({value:v,row:{original:{title:E}}})=>n(Vr,{project:r,value:v},E)},{Header:"By",accessor:"createdBy",maxWidth:180,canSort:!1,Cell:pr,align:"left",searchable:!0,filterName:"by",filterParsing:v=>(v==null?void 0:v.username)||""},{Header:"Submitted",accessor:"createdAt",maxWidth:100,Cell:X5,sortType:"alphanumeric"},{Header:"Environment",accessor:"environment",searchable:!0,maxWidth:100,Cell:c2,filterName:"environment"},{Header:"Status",accessor:"state",searchable:!0,maxWidth:"170px",Cell:dr,filterName:"status"}],[r]),{data:f,getSearchText:T,getSearchContext:M}=v2(k,C,(W=w[V])==null?void 0:W.data),j=c.useMemo(()=>t?C8:f,[f,t]),[B]=c.useState(()=>({sortBy:[{id:i.get("sort")||d.id,desc:i.has("order")?i.get("order")==="desc":d.desc}],hiddenColumns:[]})),{headerGroups:x,rows:Z,state:{sortBy:I},prepareRow:O,setHiddenColumns:R,getTableProps:q,getTableBodyProps:G}=n1.useTable({columns:k,data:j,initialState:B,sortTypes:A5,autoResetHiddenColumns:!1,disableSortRemove:!0,autoResetSortBy:!1,defaultColumn:{Cell:d1}},n1.useSortBy);return V2([{condition:a,columns:["createdBy"]}],R,k),c.useEffect(()=>{if(t)return;const v={};v.sort=I[0].id,I[0].desc&&(v.order="desc"),C&&(v.search=C),s(v,{replace:!0}),h(E=>({...E,id:I[0].id,desc:I[0].desc||!1}))},[t,I,C,s]),l(s1,{isLoading:t,bodyClass:o.bodyClass,headerClass:o.header,header:n(r1,{titleElement:n(xr,{children:n(g3,{value:(y=w[V])==null?void 0:y.title,indicatorColor:"primary",textColor:"primary",variant:"scrollable",allowScrollButtonsMobile:!0,children:w.map((v,E)=>n(wr,{label:`${v.title} (${v.data.length})`,value:v.title,onClick:()=>b(E)},v.title))})}),actions:n(k1,{initialValue:C,onChange:p,hasFilters:!0,getSearchContext:M})}),children:[n(Sr,{children:n(S1,{to:`/projects/${r}/settings/change-requests`,children:"Change request configuration"})}),n(d5,{value:T(C),children:l(a2,{...q(),children:[n(i2,{headerGroups:x}),n(s2,{...G(),children:Z.map(v=>(O(v),n(C2,{hover:!0,...v.getRowProps(),children:v.cells.map(E=>n(l2,{...E.getCellProps(),padding:"none",children:E.render("Cell")}))})))})]})}),n(S,{condition:Z.length===0,show:()=>n(S,{condition:(C==null?void 0:C.length)>0,show:l(_1,{children:["No changes found matching “",C,"”"]}),elseShow:n(_1,{children:"None of the changes were submitted yet."})})})]})},Mr=()=>{const e=J("projectId"),t=H1(e),{isOss:r,isPro:o}=l1();w1(`Change requests – ${t}`);const{changeRequests:a,loading:i}=H4(e);return r()||o()?n(s1,{sx:{justifyContent:"center"},children:n(x2,{feature:"change-requests"})}):n(Hr,{changeRequests:a,projectId:e,loading:i})};var U=(e=>(e.USER="USERS",e.GROUP="GROUPS",e.SERVICE_ACCOUNT="SERVICE ACCOUNTS",e))(U||{});const R5=(e,t={})=>{const r=e5(`api/admin/projects/${e}/access`),o=()=>fetch(r,{method:"GET"}).then(t5("project access")).then(g=>g.json()),a=`api/admin/projects/${e}/users`,{data:i,error:s}=c5(a,o,t),[C,p]=c.useState(!s&&!i),d=()=>{r4(a)};return c.useEffect(()=>{p(!s&&!i)},[i,s]),{access:c.useMemo(()=>{if(i)return Er({roles:i.roles,users:i.users.filter(({accountType:g})=>!g||g==="User"),serviceAccounts:i.users.filter(({accountType:g})=>g==="Service Account"),groups:(i==null?void 0:i.groups.map(g=>({...g,users:C9(g.users??[])})))??[]})},[i]),error:s,loading:C,refetchProjectAccess:d}},Er=e=>{const t=e.users||[],r=e.serviceAccounts||[],o=e.groups||[];return{...e,rows:[...t.map(a=>({entity:a,type:"USERS"})),...r.map(a=>({entity:a,type:"SERVICE ACCOUNTS"})),...o.map(a=>({entity:a,type:"GROUPS"}))]}},Tr=u(s1)(({theme:e})=>({height:"100vh",overflow:"auto",padding:e.spacing(7.5,6),[e.breakpoints.down("md")]:{padding:e.spacing(4,2)},"& .header":{padding:e.spacing(0,0,2,0)},"& .body":{padding:e.spacing(3,0,0,0)},borderRadius:`${e.spacing(1.5,0,0,1.5)} !important`})),kr=u("div")(({theme:e})=>({display:"flex",flexDirection:"column","& > span":{color:e.palette.text.secondary,fontSize:e.fontSizes.bodySize}})),g6={id:"joinedAt"},$2=[{Header:"Avatar",accessor:"imageUrl",Cell:({row:{original:e}})=>n(d1,{children:n(f3,{user:e})}),maxWidth:85,disableSortBy:!0},{id:"name",Header:"Name",accessor:e=>e.name||"",Cell:({value:e,row:{original:t}})=>n(c2,{value:e,subtitle:t.email||t.username}),minWidth:100,searchable:!0},{id:"joined",Header:"Joined",accessor:"joinedAt",Cell:y2,sortType:"date",maxWidth:150},{id:"lastLogin",Header:"Last login",accessor:e=>e.seenAt||"",Cell:({row:{original:e}})=>n(X5,{value:e.seenAt,emptyText:"Never",title:t=>`Last login: ${t}`}),sortType:"date",maxWidth:150},{accessor:e=>e.username||"",Header:"Username",searchable:!0},{accessor:e=>e.email||"",Header:"Email",searchable:!0}],Ar=["imageUrl","name","joined","lastLogin"],Lr=({open:e,setOpen:t,group:r,projectId:o,subtitle:a,onEdit:i,onRemove:s})=>{const C=u1(),p=f1(C.breakpoints.down("md")),[d]=c.useState(()=>({sortBy:[{id:g6.id,desc:g6.desc}],hiddenColumns:["Username","Email"]})),[h,g]=c.useState(""),{data:m,getSearchText:w,getSearchContext:V}=v2($2,h,(r==null?void 0:r.users)??[]),{headerGroups:b,rows:k,prepareRow:f,setHiddenColumns:T}=n1.useTable({columns:$2,data:m,initialState:d,sortTypes:A5,autoResetHiddenColumns:!1,autoResetSortBy:!1,disableSortRemove:!0,disableMultiSort:!0},n1.useSortBy,n1.useFlexLayout);return V2([{condition:p,columns:Ar}],T,$2),n(Y1,{open:e,onClose:()=>{t(!1)},label:(r==null?void 0:r.name)||"Group",children:l(Tr,{header:n(r1,{secondary:!0,titleElement:l(kr,{children:[r==null?void 0:r.name," (",k.length<m.length?`${k.length} of ${m.length}`:m.length,")",n("span",{children:a})]}),actions:l(Y,{children:[n(S,{condition:!p,show:l(Y,{children:[n(k1,{initialValue:h,onChange:g,hasFilters:!0,getSearchContext:V}),n(r1.Divider,{})]})}),n(s5,{permission:V1,projectId:o,tooltipProps:{title:"Edit group access"},onClick:i,children:n(m3,{})}),n(s5,{permission:V1,projectId:o,tooltipProps:{title:"Remove group access"},onClick:s,children:n(u4,{})})]}),children:n(S,{condition:p,show:n(k1,{initialValue:h,onChange:g,hasFilters:!0,getSearchContext:V})})}),children:[n(d5,{value:w(h),children:n(b2,{rows:k,headerGroups:b,prepareRow:f})}),n(S,{condition:k.length===0,show:n(S,{condition:(h==null?void 0:h.length)>0,show:l(_1,{children:["No users found matching “",h,"” in this group."]}),elseShow:n(_1,{children:"This group is empty. Get started by adding a user to the group."})})})]})})},Dr=u("form")(()=>({display:"flex",flexDirection:"column",height:"100%"})),m6=u("p")(({theme:e})=>({color:e.palette.text.secondary,marginBottom:e.spacing(1)})),f6=u("div")(({theme:e})=>({"& > div:first-of-type":{width:"100%",maxWidth:e.spacing(50),marginBottom:e.spacing(2)}})),Zr=u("div")(({theme:e})=>({marginTop:e.spacing(6),display:"flex",justifyContent:"flex-end"})),Rr=u(p1)(({theme:e})=>({marginLeft:e.spacing(3)})),Fr=u("div")(({theme:e})=>({display:"flex",flexDirection:"column","& > span:last-of-type":{color:e.palette.text.secondary}})),jr=u("div")(({theme:e})=>({display:"flex",flexDirection:"column","& > span:first-of-type":{color:e.palette.text.secondary}})),D3=({selected:e,accesses:t,users:r,serviceAccounts:o,groups:a,roles:i})=>{const{uiConfig:s}=l1(),{flags:C}=s,p=C.UG?"user / group":"user",d=J("projectId"),{refetchProjectAccess:h}=R5(d),{addAccessToProject:g,changeUserRole:m,changeGroupRole:w,loading:V}=H5(),b=!!e,{setToastData:k,setToastApiError:f}=h1(),T=L1(),M=[...a.filter(y=>b||!t.some(({entity:{id:v},type:E})=>y.id===v&&E===U.GROUP)).map(y=>({id:y.id,entity:y,type:U.GROUP})),...r.filter(y=>b||!t.some(({entity:{id:v},type:E})=>y.id===v&&E===U.USER)).sort((y,v)=>{const E=y.name||y.username||"",L=v.name||v.username||"";return E.localeCompare(L)}).map(y=>({id:y.id,entity:y,type:U.USER})),...o.filter(y=>b||!t.some(({entity:{id:v},type:E})=>y.id===v&&E===U.SERVICE_ACCOUNT)).sort((y,v)=>{const E=y.name||y.username||"",L=v.name||v.username||"";return E.localeCompare(L)}).map(y=>({id:y.id,entity:y,type:U.SERVICE_ACCOUNT}))],[j,B]=c.useState(()=>M.filter(({id:y,type:v})=>y===(e==null?void 0:e.entity.id)&&v===(e==null?void 0:e.type))),[x,Z]=c.useState(i.find(({id:y})=>y===(e==null?void 0:e.entity.roleId))??null),I={users:j==null?void 0:j.filter(({type:y})=>y===U.USER||y===U.SERVICE_ACCOUNT).map(({id:y})=>({id:y})),groups:j==null?void 0:j.filter(({type:y})=>y===U.GROUP).map(({id:y})=>({id:y}))},O=async y=>{if(y.preventDefault(),!!W)try{b?(e==null?void 0:e.type)===U.USER||(e==null?void 0:e.type)===U.SERVICE_ACCOUNT?await m(d,x.id,e.entity.id):(e==null?void 0:e.type)===U.GROUP&&await w(d,x.id,e.entity.id):await g(d,x.id,I),h(),T($1),k({title:`${j.length} ${j.length===1?"access":"accesses"} ${b?"edited":"assigned"} successfully`,type:"success"})}catch(v){f(c1(v))}},R=()=>b?`curl --location --request ${b?"PUT":"POST"} '${s.unleashUrl}/api/admin/projects/${d}/${(e==null?void 0:e.type)===U.USER||(e==null?void 0:e.type)===U.SERVICE_ACCOUNT?"users":"groups"}/${e==null?void 0:e.entity.id}/roles/${x==null?void 0:x.id}' \\
|
|
4
|
+
--header 'Authorization: INSERT_API_KEY'`:`curl --location --request ${b?"PUT":"POST"} '${s.unleashUrl}/api/admin/projects/${d}/role/${x==null?void 0:x.id}/access' \\
|
|
5
|
+
--header 'Authorization: INSERT_API_KEY' \\
|
|
6
|
+
--header 'Content-Type: application/json' \\
|
|
7
|
+
--data-raw '${JSON.stringify(I,void 0,2)}'`,q=y=>{if(y&&y.rootRole)return"This group has an Admin or Editor role associated with it. Groups with a root role association cannot be assigned to projects, and users in this group already have the role applied globally."},G=(y,v,E)=>{let L,N;return v.type===U.GROUP?L=v.entity:N=v.entity,n(z1,{title:q(L),children:n("span",{children:l("li",{...y,children:[n(C3,{icon:n(h8,{fontSize:"small"}),checkedIcon:n(g8,{fontSize:"small"}),style:{marginRight:8},checked:E}),n(S,{condition:v.type===U.GROUP,show:n("span",{children:l(Fr,{children:[n("span",{children:L==null?void 0:L.name}),l("span",{children:[L==null?void 0:L.userCount," users"]})]})}),elseShow:l(jr,{children:[n("span",{children:(N==null?void 0:N.name)||(N==null?void 0:N.username)}),n("span",{children:N!=null&&N.name&&(N!=null&&N.username)?N==null?void 0:N.username:N==null?void 0:N.email})]})})]})})})},W=j.length>0&&x;return n(Y1,{open:!0,onClose:()=>T($1),label:`${b?"Edit":"Assign"} ${p} access`,children:n(y3,{loading:V,modal:!0,title:`${b?"Edit":"Assign"} ${p} access`,description:"Custom project roles allow you to fine-tune access rights and permissions within your projects.",documentationLink:"https://docs.getunleash.io/how-to/how-to-create-and-assign-custom-project-roles",documentationLinkLabel:"Project access documentation",formatApiCode:R,children:l(Dr,{onSubmit:O,children:[l("div",{children:[l(m6,{"data-testid":l8,children:["Select the ",p]}),n(f6,{children:n(c8,{"data-testid":d8,size:"small",multiple:!0,openOnFocus:!0,limitTags:10,disableCloseOnSelect:!0,disabled:b,value:j,getOptionDisabled:y=>y.type===U.GROUP?!!y.entity.rootRole:!1,onChange:(y,v,E)=>{y.type==="keydown"&&y.key==="Backspace"&&E==="removeOption"||B(v)},options:M,groupBy:y=>y.type,renderOption:(y,v,{selected:E})=>G(y,v,E),getOptionLabel:y=>{if(y.type===U.USER||y.type===U.SERVICE_ACCOUNT){const v=y.entity;return v.email||v.name||v.username||""}else return y.entity.name},filterOptions:(y,{inputValue:v})=>y.filter(E=>{if(E.type===U.USER||E.type===U.SERVICE_ACCOUNT){const L=E.entity;return $5(v,L.email)||$5(v,L.name)||$5(v,L.username)}return $5(v,E.entity.name)}),isOptionEqualToValue:(y,v)=>y.type===v.type&&y.entity.id===v.entity.id,renderInput:y=>n(p3,{...y,label:R1(p)})})}),n(m6,{children:"Select the role to assign for this project"}),n(f6,{children:n(l9,{"data-testid":u8,roles:i,value:x,setValue:y=>Z(y||null)})})]}),l(Zr,{children:[n(p1,{"data-testid":p8,type:"submit",variant:"contained",color:"primary",disabled:!W,children:b?"Save":`Assign ${p}`}),n(Rr,{onClick:()=>T($1),children:"Cancel"})]})]})})})},Z3=()=>{var o,a;const{data:e,error:t,mutate:r}=c5(e5("api/admin/user-admin/access"),Pr);return{users:(o=e==null?void 0:e.users)==null?void 0:o.filter(({accountType:i})=>!i||i==="User"),serviceAccounts:(a=e==null?void 0:e.users)==null?void 0:a.filter(({accountType:i})=>i==="Service Account"),groups:e==null?void 0:e.groups,loading:!t&&!e,refetch:()=>r(),error:t}},Pr=e=>fetch(e).then(t5("Access")).then(t=>t.json()),Ir=()=>{const e=J("projectId"),{access:t}=R5(e),{users:r,serviceAccounts:o,groups:a}=Z3();return!t||!r||!o||!a?null:n(D3,{accesses:t.rows,users:r,serviceAccounts:o,groups:a,roles:t.roles})},Or=()=>{const e=J("projectId"),t=J("userId"),{access:r}=R5(e),{users:o,serviceAccounts:a,groups:i}=Z3();if(!r||!o||!a||!i)return null;const s=r.rows.find(C=>C.entity.id===Number(t)&&C.type!==U.GROUP);return n(D3,{accesses:r.rows,selected:s,users:o,serviceAccounts:a,groups:i,roles:r.roles})},Br=()=>{const e=J("projectId"),t=J("groupId"),{access:r}=R5(e),{users:o,serviceAccounts:a,groups:i}=Z3();if(!r||!o||!a||!i)return null;const s=r.rows.find(C=>C.entity.id===Number(t)&&C.type===U.GROUP);return n(D3,{accesses:r.rows,selected:s,users:o,serviceAccounts:a,groups:i,roles:r.roles})},$r={id:"added"},{value:y6,setValue:zr}=d2("ProjectAccess:v1",$r),Nr=u("div")(({theme:e})=>({display:"inline-flex",alignItems:"center",flexWrap:"wrap",marginLeft:e.spacing(1)})),Wr=u(f3)(({theme:e})=>({marginRight:e.spacing(-3.5)})),Ur=u(f3)(({theme:e})=>({outline:`${e.spacing(.25)} solid ${e.palette.background.paper}`})),qr=["imageUrl","role","added","lastLogin"],Gr=["lastLogin","added"],Kr=()=>{var N;const e=J("projectId"),{uiConfig:t}=l1(),{flags:r}=t,o=r.UG?"user / group":"user",a=L1(),i=u1(),s=f1(i.breakpoints.down("md")),C=f1(i.breakpoints.down("lg")),{setToastData:p}=h1(),{access:d,refetchProjectAccess:h}=R5(e),{removeUserFromRole:g,removeGroupFromRole:m}=H5(),[w,V]=c.useState(!1),[b,k]=c.useState(!1),[f,T]=c.useState(),M=c.useMemo(()=>[{Header:"Avatar",accessor:"imageUrl",Cell:({row:{original:D}})=>{var K;return l(Nr,{children:[n(S,{condition:D.type===U.GROUP,show:n(Wr,{})}),n(Ur,{user:D.entity,children:(K=D.entity.users)==null?void 0:K.length})]})},maxWidth:85,disableSortBy:!0},{id:"name",Header:"Name",accessor:D=>D.entity.name||"",Cell:({value:D,row:{original:K}})=>{var X,g1,b1;return n(S,{condition:K.type===U.GROUP,show:n(Y6,{onClick:()=>{T(K),k(!0)},title:D,subtitle:`${(X=K.entity.users)==null?void 0:X.length} users`}),elseShow:n(c2,{value:D,subtitle:((g1=K.entity)==null?void 0:g1.email)||((b1=K.entity)==null?void 0:b1.username)})})},minWidth:100,searchable:!0},{id:"role",Header:"Role",accessor:D=>{var K;return(K=d==null?void 0:d.roles.find(({id:X})=>X===D.entity.roleId))==null?void 0:K.name},Cell:({value:D,row:{original:K}})=>n(c9,{roleId:K.entity.roleId,value:D}),maxWidth:125,filterName:"role"},{id:"added",Header:"Added",accessor:D=>D.entity.addedAt||"",Cell:({value:D})=>n(X5,{value:D,emptyText:"Never"}),sortType:"date",maxWidth:130},{id:"lastLogin",Header:"Last login",accessor:D=>D.type!==U.GROUP?D.entity.seenAt||"":D.entity.users.map(({seenAt:X})=>X).sort().reverse()[0],Cell:({value:D})=>n(X5,{value:D,emptyText:"Never"}),sortType:"date",maxWidth:130},{id:"actions",Header:"Actions",disableSortBy:!0,align:"center",maxWidth:150,Cell:({row:{original:D}})=>l(i3,{children:[n(s5,{"data-testid":m8,component:S1,permission:V1,projectId:e,to:`edit/${D.type===U.GROUP?"group":"user"}/${D.entity.id}`,disabled:(d==null?void 0:d.rows.length)===1,tooltipProps:{title:(d==null?void 0:d.rows.length)===1?"Cannot edit access. A project must have at least one owner":"Edit access"},children:n(m3,{})}),n(s5,{"data-testid":f8,permission:V1,projectId:e,onClick:()=>{T(D),V(!0)},disabled:(d==null?void 0:d.rows.length)===1,tooltipProps:{title:(d==null?void 0:d.rows.length)===1?"Cannot remove access. A project must have at least one owner":"Remove access"},children:n(u4,{})})]})},{accessor:D=>{var K;return D.type!==U.GROUP&&((K=D.entity)==null?void 0:K.username)||""},Header:"Username",searchable:!0},{accessor:D=>{var K;return D.type!==U.GROUP&&((K=D.entity)==null?void 0:K.email)||""},Header:"Email",searchable:!0}],[d,e]),[j,B]=c3(),[x]=c.useState(()=>({sortBy:[{id:j.get("sort")||y6.id,desc:j.has("order")?j.get("order")==="desc":y6.desc}],hiddenColumns:["Username","Email"],globalFilter:j.get("search")||""})),[Z,I]=c.useState(x.globalFilter),{data:O,getSearchText:R,getSearchContext:q}=v2(M,Z,(d==null?void 0:d.rows)??[]),{headerGroups:G,rows:W,prepareRow:y,setHiddenColumns:v,state:{sortBy:E}}=n1.useTable({columns:M,data:O,initialState:x,sortTypes:A5,autoResetHiddenColumns:!1,autoResetSortBy:!1,disableSortRemove:!0,disableMultiSort:!0,defaultColumn:{Cell:d1}},n1.useSortBy,n1.useFlexLayout);V2([{condition:s,columns:qr},{condition:C,columns:Gr}],v,M),c.useEffect(()=>{const D={};D.sort=E[0].id,E[0].desc&&(D.order="desc"),Z&&(D.search=Z),B(D,{replace:!0}),zr({id:E[0].id,desc:E[0].desc||!1})},[E,Z,B]);const L=async D=>{if(!D)return;const{id:K,roleId:X}=D.entity;let g1=D.entity.name;if(D.type!==U.GROUP){const b1=D.entity;g1=g1||b1.email||b1.username||""}try{D.type!==U.GROUP?await g(e,X,K):await m(e,X,K),h(),p({type:"success",title:`${g1||`The ${o}`} has been removed from project`})}catch(b1){p({type:"error",title:b1.message||`Server problems when removing ${o}.`})}V(!1)};return l(s1,{header:n(r1,{secondary:!0,title:`Access (${W.length<O.length?`${W.length} of ${O.length}`:O.length})`,actions:l(Y,{children:[n(S,{condition:!s,show:l(Y,{children:[n(k1,{initialValue:Z,onChange:I,hasFilters:!0,getSearchContext:q}),n(r1.Divider,{})]})}),l(q6,{onClick:()=>a("create"),maxWidth:"700px",Icon:Q6,permission:V1,projectId:e,"data-testid":y8,children:["Assign ",o]})]}),children:n(S,{condition:s,show:n(k1,{initialValue:Z,onChange:I,hasFilters:!0,getSearchContext:q})})}),children:[n(d5,{value:R(Z),children:n(b2,{rows:W,headerGroups:G,prepareRow:y})}),n(S,{condition:W.length===0,show:n(S,{condition:(Z==null?void 0:Z.length)>0,show:l(_1,{children:["No access found matching “",Z,"”"]}),elseShow:l(_1,{children:["No access available. Get started by assigning a"," ",o,"."]})})}),l(m5,{children:[n(e1,{path:"create",element:n(Ir,{})}),n(e1,{path:"edit/group/:groupId",element:n(Br,{})}),n(e1,{path:"edit/user/:userId",element:n(Or,{})})]}),n(W1,{open:w,onClick:()=>L(f),onClose:()=>{V(!1)},title:`Really remove ${o} from this project?`}),n(Lr,{open:b,setOpen:k,group:f==null?void 0:f.entity,projectId:e,subtitle:`Role: ${(N=d==null?void 0:d.roles.find(({id:D})=>D===(f==null?void 0:f.entity.roleId)))==null?void 0:N.name}`,onEdit:()=>{a(`edit/group/${f==null?void 0:f.entity.id}`)},onRemove:()=>{k(!1),V(!0)}})]})},Jr=()=>{const e=J("projectId"),t=H1(e),{hasAccess:r}=c.useContext(F1),{isOss:o}=l1();return w1(`Project access – ${t}`),o()?n(s1,{header:n(r1,{title:"Access"}),sx:{justifyContent:"center"},children:n(x2,{feature:"access"})}):r(V1,e)?n(Kr,{}):n(s1,{header:n(r1,{title:"Access"}),children:n(y1,{severity:"error",children:"You need project owner permissions to access this section."})})},Yr=e=>c.createElement("svg",{width:860,height:298,viewBox:"0 0 860 298",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},c.createElement("rect",{width:860,height:298,rx:12,fill:"#F2F2F5"}),c.createElement("rect",{x:515.5,y:71.5,width:109,height:23,rx:3.5,fill:"#F4FAEB"}),c.createElement("g",{clipPath:"url(#clip0_3664_550)"},c.createElement("path",{d:"M537.75 86.1275L535.148 83.525C534.855 83.2325 534.383 83.2325 534.09 83.525C533.798 83.8175 533.798 84.29 534.09 84.5825L537.225 87.7175C537.518 88.01 537.99 88.01 538.283 87.7175L546.218 79.7825C546.51 79.49 546.51 79.0175 546.218 78.725C545.925 78.4325 545.453 78.4325 545.16 78.725L537.75 86.1275Z",fill:"#68A611"})),c.createElement("path",{d:"M557.639 79.0898L561.295 87H559.385L558.787 85.5352H555.682L555.084 87H553.174L556.83 79.0898H557.639ZM557.24 81.75L556.256 84.1523H558.225L557.24 81.75ZM565.713 80.9297C566.182 80.9297 566.615 81.0508 567.014 81.293C567.42 81.5273 567.744 81.875 567.986 82.3359C568.236 82.7891 568.361 83.3438 568.361 84C568.361 84.6562 568.236 85.2227 567.986 85.6992C567.744 86.1758 567.412 86.543 566.99 86.8008C566.576 87.0508 566.115 87.1758 565.607 87.1758C565.279 87.1758 564.951 87.0977 564.623 86.9414C564.303 86.7773 564.033 86.5742 563.814 86.332V89.8125H562.326V81.082H563.814V82.0781C563.986 81.7578 564.236 81.4883 564.564 81.2695C564.893 81.043 565.275 80.9297 565.713 80.9297ZM565.338 82.418C565.072 82.418 564.822 82.4883 564.588 82.6289C564.354 82.7617 564.162 82.9531 564.014 83.2031C563.873 83.4531 563.807 83.7539 563.814 84.1055V84.9609C564.025 85.1797 564.252 85.3633 564.494 85.5117C564.744 85.6523 565.014 85.7227 565.303 85.7227C565.607 85.7227 565.873 85.6406 566.1 85.4766C566.326 85.3125 566.502 85.1016 566.627 84.8438C566.752 84.5781 566.814 84.2969 566.814 84C566.814 83.5547 566.678 83.1797 566.404 82.875C566.139 82.5703 565.783 82.418 565.338 82.418ZM573.166 80.9297C573.635 80.9297 574.068 81.0508 574.467 81.293C574.873 81.5273 575.197 81.875 575.439 82.3359C575.689 82.7891 575.814 83.3438 575.814 84C575.814 84.6562 575.689 85.2227 575.439 85.6992C575.197 86.1758 574.865 86.543 574.443 86.8008C574.029 87.0508 573.568 87.1758 573.061 87.1758C572.732 87.1758 572.404 87.0977 572.076 86.9414C571.756 86.7773 571.486 86.5742 571.268 86.332V89.8125H569.779V81.082H571.268V82.0781C571.439 81.7578 571.689 81.4883 572.018 81.2695C572.346 81.043 572.729 80.9297 573.166 80.9297ZM572.791 82.418C572.525 82.418 572.275 82.4883 572.041 82.6289C571.807 82.7617 571.615 82.9531 571.467 83.2031C571.326 83.4531 571.26 83.7539 571.268 84.1055V84.9609C571.479 85.1797 571.705 85.3633 571.947 85.5117C572.197 85.6523 572.467 85.7227 572.756 85.7227C573.061 85.7227 573.326 85.6406 573.553 85.4766C573.779 85.3125 573.955 85.1016 574.08 84.8438C574.205 84.5781 574.268 84.2969 574.268 84C574.268 83.5547 574.131 83.1797 573.857 82.875C573.592 82.5703 573.236 82.418 572.791 82.418ZM580.959 82.7461C580.709 82.6055 580.447 82.5352 580.174 82.5352C579.83 82.5352 579.545 82.6484 579.318 82.875C579.092 83.0938 578.893 83.3672 578.721 83.6953V87H577.232V81.082H578.721V82.1953C578.924 81.8438 579.162 81.5508 579.436 81.3164C579.717 81.082 580.033 80.9648 580.385 80.9648C580.596 80.9648 580.787 81 580.959 81.0703V82.7461ZM584.861 80.9297C585.439 80.9297 585.967 81.0703 586.443 81.3516C586.92 81.625 587.303 82 587.592 82.4766C587.889 82.9453 588.037 83.4727 588.037 84.0586C588.037 84.6445 587.889 85.1719 587.592 85.6406C587.303 86.1094 586.92 86.4844 586.443 86.7656C585.967 87.0391 585.439 87.1758 584.861 87.1758C584.291 87.1758 583.764 87.0391 583.279 86.7656C582.803 86.4844 582.42 86.1094 582.131 85.6406C581.842 85.1719 581.697 84.6445 581.697 84.0586C581.697 83.4727 581.842 82.9453 582.131 82.4766C582.42 82 582.803 81.625 583.279 81.3516C583.764 81.0703 584.291 80.9297 584.861 80.9297ZM584.861 82.3711C584.58 82.3711 584.318 82.4375 584.076 82.5703C583.834 82.7031 583.639 82.8945 583.49 83.1445C583.35 83.3945 583.279 83.6992 583.279 84.0586C583.279 84.418 583.35 84.7227 583.49 84.9727C583.639 85.2227 583.834 85.4141 584.076 85.5469C584.318 85.6719 584.58 85.7344 584.861 85.7344C585.143 85.7344 585.404 85.6719 585.646 85.5469C585.889 85.4141 586.084 85.2227 586.232 84.9727C586.381 84.7227 586.455 84.418 586.455 84.0586C586.455 83.6992 586.381 83.3945 586.232 83.1445C586.084 82.8945 585.889 82.7031 585.646 82.5703C585.404 82.4375 585.143 82.3711 584.861 82.3711ZM594.928 81.082L592.127 87H591.178L588.412 81.082H590.146L591.635 84.75L593.193 81.082H594.928ZM598.256 80.9297C598.834 80.9297 599.33 81.0547 599.744 81.3047C600.166 81.5547 600.486 81.9023 600.705 82.3477C600.932 82.7852 601.045 83.293 601.045 83.8711V84.5039H596.756C596.834 84.9023 597.029 85.2227 597.342 85.4648C597.654 85.707 598.037 85.8281 598.49 85.8281C598.92 85.8281 599.311 85.7422 599.662 85.5703C600.014 85.3984 600.295 85.2227 600.506 85.043L600.494 86.4258C600.307 86.5898 600.025 86.7578 599.65 86.9297C599.283 87.0938 598.877 87.1758 598.432 87.1758C597.846 87.1758 597.311 87.043 596.826 86.7773C596.35 86.5117 595.967 86.1484 595.678 85.6875C595.396 85.2266 595.256 84.6992 595.256 84.1055C595.256 83.5273 595.385 83 595.643 82.5234C595.9 82.0469 596.256 81.6641 596.709 81.375C597.162 81.0781 597.678 80.9297 598.256 80.9297ZM598.221 82.2305C597.854 82.2305 597.545 82.3438 597.295 82.5703C597.045 82.7969 596.873 83.1016 596.779 83.4844H599.615C599.584 83.0625 599.428 82.75 599.146 82.5469C598.865 82.3359 598.557 82.2305 598.221 82.2305ZM608.029 78.5625V87H606.541V86.0039C606.369 86.3242 606.119 86.6016 605.791 86.8359C605.463 87.0625 605.08 87.1758 604.643 87.1758C604.166 87.1758 603.725 87.0547 603.318 86.8125C602.92 86.5703 602.6 86.2188 602.357 85.7578C602.115 85.2969 601.994 84.7383 601.994 84.082C601.994 83.4258 602.115 82.8633 602.357 82.3945C602.607 81.9258 602.939 81.5664 603.354 81.3164C603.775 81.0586 604.24 80.9297 604.748 80.9297C605.068 80.9297 605.393 81.0039 605.721 81.1523C606.049 81.3008 606.322 81.5 606.541 81.75V78.5625H608.029ZM605.053 82.3945C604.74 82.3945 604.471 82.4766 604.244 82.6406C604.025 82.7969 603.854 83.0039 603.729 83.2617C603.604 83.5117 603.541 83.7852 603.541 84.082C603.541 84.5273 603.674 84.9062 603.939 85.2188C604.213 85.5312 604.572 85.6875 605.018 85.6875C605.283 85.6875 605.529 85.6172 605.756 85.4766C605.99 85.3359 606.178 85.1406 606.318 84.8906C606.467 84.6328 606.541 84.3242 606.541 83.9648V83.1211C606.33 82.8945 606.1 82.7188 605.85 82.5938C605.607 82.4609 605.342 82.3945 605.053 82.3945Z",fill:"#3B6600"}),c.createElement("rect",{x:515.5,y:71.5,width:109,height:23,rx:3.5,stroke:"#B0D182"}),c.createElement("rect",{x:680.5,y:71.5,width:141,height:23,rx:3.5,fill:"#F4FAEB"}),c.createElement("path",{d:"M690.692 79.2511L691.75 78.1936L694.307 80.7511L693.25 81.8086L690.692 79.2511ZM700 86.3761L700 83.7511L695.807 83.7511L691.75 87.8086L690.693 86.7511L695.192 82.2511L700 82.2511L700 79.6261L703.375 83.0011L700 86.3761Z",fill:"#68A611"}),c.createElement("path",{d:"M715.097 78.3037C715.63 78.3037 716.092 78.3799 716.481 78.5322C716.87 78.6761 717.209 78.875 717.497 79.1289V80.9062C717.293 80.7539 717.082 80.6058 716.862 80.4619C716.642 80.318 716.392 80.1995 716.113 80.1064C715.842 80.0133 715.52 79.9668 715.148 79.9668C714.64 79.9668 714.179 80.0895 713.764 80.335C713.349 80.5804 713.019 80.9105 712.774 81.3252C712.528 81.7399 712.406 82.2139 712.406 82.7471C712.406 83.2718 712.528 83.7458 712.774 84.1689C713.019 84.5837 713.349 84.9137 713.764 85.1592C714.179 85.3962 714.64 85.5146 715.148 85.5146C715.715 85.5146 716.189 85.43 716.57 85.2607C716.959 85.083 717.31 84.8672 717.624 84.6133V86.3271C717.336 86.5895 716.976 86.8011 716.544 86.9619C716.113 87.1143 715.63 87.1904 715.097 87.1904C714.488 87.1904 713.912 87.0846 713.371 86.873C712.829 86.653 712.351 86.3483 711.936 85.959C711.521 85.5612 711.195 85.0915 710.958 84.5498C710.722 84.0081 710.603 83.4072 710.603 82.7471C710.603 82.0869 710.722 81.486 710.958 80.9443C711.195 80.4027 711.521 79.9372 711.936 79.5479C712.351 79.1501 712.829 78.8454 713.371 78.6338C713.912 78.4137 714.488 78.3037 715.097 78.3037ZM722.74 80.4238C723.391 80.4238 723.937 80.6439 724.377 81.084C724.818 81.5241 725.038 82.1842 725.038 83.0645V87H723.425L723.413 83.2803C723.413 82.8486 723.307 82.527 723.095 82.3154C722.892 82.1038 722.609 81.998 722.245 81.998C721.957 81.998 721.686 82.0911 721.432 82.2773C721.187 82.4635 720.975 82.6836 720.797 82.9375V87H719.185V77.8594H720.797V81.5029C720.992 81.2406 721.254 80.9951 721.584 80.7666C721.923 80.5381 722.308 80.4238 722.74 80.4238ZM729.43 80.4238C729.777 80.4238 730.128 80.5042 730.484 80.665C730.839 80.8258 731.136 81.0417 731.373 81.3125V80.5889H732.985V87H731.373V85.9209C731.186 86.2679 730.916 86.5684 730.56 86.8223C730.205 87.0677 729.79 87.1904 729.316 87.1904C728.8 87.1904 728.321 87.0592 727.881 86.7969C727.45 86.5345 727.103 86.1536 726.84 85.6543C726.578 85.1549 726.447 84.5498 726.447 83.8389C726.447 83.1279 726.578 82.5186 726.84 82.0107C727.111 81.5029 727.471 81.1136 727.919 80.8428C728.376 80.5635 728.88 80.4238 729.43 80.4238ZM729.76 81.998C729.422 81.998 729.13 82.0869 728.884 82.2646C728.647 82.4339 728.461 82.6582 728.326 82.9375C728.19 83.2168 728.123 83.5173 728.123 83.8389C728.123 84.3213 728.266 84.7318 728.554 85.0703C728.85 85.4089 729.24 85.5781 729.722 85.5781C730.01 85.5781 730.277 85.502 730.522 85.3496C730.776 85.1973 730.979 84.9857 731.131 84.7148C731.292 84.4355 731.373 84.1012 731.373 83.7119V82.7979C731.144 82.5524 730.894 82.3577 730.624 82.2139C730.361 82.07 730.073 81.998 729.76 81.998ZM736.578 80.5889V81.5029C736.772 81.2406 737.035 80.9951 737.365 80.7666C737.703 80.5381 738.088 80.4238 738.52 80.4238C739.172 80.4238 739.718 80.6439 740.158 81.084C740.598 81.5241 740.818 82.1842 740.818 83.0645V87H739.206L739.193 83.2803C739.193 82.8486 739.087 82.527 738.875 82.3154C738.672 82.1038 738.389 81.998 738.025 81.998C737.737 81.998 737.466 82.0911 737.212 82.2773C736.967 82.4635 736.755 82.6836 736.578 82.9375V87H734.965V80.5889H736.578ZM745.21 80.4238C745.557 80.4238 745.909 80.5042 746.264 80.665C746.62 80.8258 746.916 81.0417 747.153 81.3125V80.5889H748.765V86.835C748.765 87.5628 748.604 88.1764 748.283 88.6758C747.961 89.1836 747.534 89.5687 747 89.8311C746.467 90.1019 745.883 90.2373 745.249 90.2373C744.681 90.2373 744.216 90.1527 743.852 89.9834C743.488 89.8141 743.15 89.6195 742.836 89.3994V87.876C743.031 87.9945 743.234 88.1214 743.446 88.2568C743.666 88.3923 743.911 88.5065 744.182 88.5996C744.461 88.6927 744.783 88.7393 745.147 88.7393C745.528 88.7393 745.871 88.6673 746.175 88.5234C746.48 88.3796 746.717 88.1764 746.886 87.9141C747.064 87.6602 747.153 87.3682 747.153 87.0381V85.9209C746.967 86.2679 746.696 86.5684 746.34 86.8223C745.985 87.0677 745.57 87.1904 745.096 87.1904C744.58 87.1904 744.102 87.0592 743.662 86.7969C743.23 86.5345 742.883 86.1536 742.621 85.6543C742.358 85.1549 742.227 84.5498 742.227 83.8389C742.227 83.1279 742.358 82.5186 742.621 82.0107C742.891 81.5029 743.251 81.1136 743.7 80.8428C744.157 80.5635 744.66 80.4238 745.21 80.4238ZM745.541 82.0107C745.202 82.0107 744.91 82.0996 744.665 82.2773C744.428 82.4466 744.241 82.6709 744.106 82.9502C743.971 83.221 743.903 83.5173 743.903 83.8389C743.903 84.3213 744.047 84.7318 744.334 85.0703C744.631 85.4004 745.02 85.5654 745.502 85.5654C745.79 85.5654 746.057 85.4935 746.302 85.3496C746.556 85.1973 746.759 84.9857 746.912 84.7148C747.072 84.4355 747.153 84.1012 747.153 83.7119V82.7979C746.924 82.5524 746.675 82.362 746.404 82.2266C746.141 82.0827 745.854 82.0107 745.541 82.0107ZM753.551 80.4238C754.178 80.4238 754.715 80.5592 755.164 80.8301C755.621 81.1009 755.968 81.4775 756.205 81.96C756.45 82.4339 756.573 82.984 756.573 83.6104V84.2959H751.926C752.011 84.7275 752.222 85.0745 752.561 85.3369C752.9 85.5993 753.314 85.7305 753.805 85.7305C754.271 85.7305 754.694 85.6374 755.075 85.4512C755.456 85.265 755.76 85.0745 755.989 84.8799L755.976 86.3779C755.773 86.5557 755.468 86.7376 755.062 86.9238C754.664 87.1016 754.224 87.1904 753.742 87.1904C753.107 87.1904 752.527 87.0465 752.002 86.7588C751.486 86.471 751.071 86.0775 750.758 85.5781C750.454 85.0788 750.301 84.5075 750.301 83.8643C750.301 83.238 750.441 82.6667 750.72 82.1504C751 81.6341 751.385 81.2194 751.875 80.9062C752.366 80.5846 752.925 80.4238 753.551 80.4238ZM753.513 81.833C753.115 81.833 752.781 81.9557 752.51 82.2012C752.239 82.4466 752.053 82.7767 751.952 83.1914H755.024C754.99 82.7344 754.821 82.3958 754.516 82.1758C754.211 81.9473 753.877 81.833 753.513 81.833ZM760.115 80.4238C760.513 80.4238 760.881 80.4831 761.219 80.6016C761.558 80.7201 761.82 80.8555 762.006 81.0078V82.4297C761.803 82.2943 761.554 82.1631 761.257 82.0361C760.97 81.9092 760.669 81.8457 760.356 81.8457C760.051 81.8457 759.81 81.9134 759.632 82.0488C759.455 82.1842 759.366 82.3451 759.366 82.5312C759.366 82.6667 759.417 82.7936 759.518 82.9121C759.62 83.0221 759.814 83.1195 760.102 83.2041L760.826 83.4453C761.799 83.7331 762.286 84.2959 762.286 85.1338C762.286 85.5316 762.171 85.887 761.943 86.2002C761.723 86.5049 761.422 86.7461 761.042 86.9238C760.669 87.1016 760.254 87.1904 759.797 87.1904C759.366 87.1904 758.947 87.1227 758.541 86.9873C758.134 86.8519 757.825 86.7038 757.614 86.543V85.1338C757.775 85.2438 757.969 85.3496 758.198 85.4512C758.426 85.5527 758.663 85.6374 758.909 85.7051C759.154 85.7643 759.378 85.7939 759.582 85.7939C759.903 85.7939 760.149 85.7389 760.318 85.6289C760.496 85.5104 760.584 85.3454 760.584 85.1338C760.584 84.973 760.513 84.846 760.369 84.7529C760.225 84.6598 760.013 84.5667 759.734 84.4736L758.947 84.1943C758.456 84.0335 758.117 83.805 757.931 83.5088C757.745 83.2126 757.652 82.8613 757.652 82.4551C757.652 82.0488 757.753 81.6976 757.957 81.4014C758.168 81.0967 758.46 80.8597 758.833 80.6904C759.205 80.5127 759.632 80.4238 760.115 80.4238ZM770.004 80.4238C770.351 80.4238 770.703 80.5042 771.058 80.665C771.414 80.8258 771.71 81.0417 771.947 81.3125V80.5889H773.559V87H771.947V85.9209C771.761 86.2679 771.49 86.5684 771.134 86.8223C770.779 87.0677 770.364 87.1904 769.89 87.1904C769.374 87.1904 768.896 87.0592 768.456 86.7969C768.024 86.5345 767.677 86.1536 767.415 85.6543C767.152 85.1549 767.021 84.5498 767.021 83.8389C767.021 83.1279 767.152 82.5186 767.415 82.0107C767.685 81.5029 768.045 81.1136 768.494 80.8428C768.951 80.5635 769.454 80.4238 770.004 80.4238ZM770.334 81.998C769.996 81.998 769.704 82.0869 769.458 82.2646C769.222 82.4339 769.035 82.6582 768.9 82.9375C768.764 83.2168 768.697 83.5173 768.697 83.8389C768.697 84.3213 768.841 84.7318 769.128 85.0703C769.425 85.4089 769.814 85.5781 770.296 85.5781C770.584 85.5781 770.851 85.502 771.096 85.3496C771.35 85.1973 771.553 84.9857 771.706 84.7148C771.866 84.4355 771.947 84.1012 771.947 83.7119V82.7979C771.718 82.5524 771.469 82.3577 771.198 82.2139C770.935 82.07 770.648 81.998 770.334 81.998ZM779.208 80.4238C779.716 80.4238 780.186 80.555 780.618 80.8174C781.058 81.0713 781.409 81.4479 781.671 81.9473C781.942 82.4382 782.078 83.0391 782.078 83.75C782.078 84.4609 781.942 85.0745 781.671 85.5908C781.409 86.1071 781.049 86.5049 780.592 86.7842C780.144 87.055 779.644 87.1904 779.094 87.1904C778.739 87.1904 778.383 87.1058 778.028 86.9365C777.681 86.7588 777.389 86.5387 777.152 86.2764V90.0469H775.54V80.5889H777.152V81.668C777.338 81.321 777.609 81.029 777.964 80.792C778.32 80.5465 778.735 80.4238 779.208 80.4238ZM778.802 82.0361C778.514 82.0361 778.244 82.1123 777.99 82.2646C777.736 82.4085 777.528 82.6159 777.368 82.8867C777.215 83.1576 777.143 83.4834 777.152 83.8643V84.791C777.38 85.028 777.626 85.2269 777.888 85.3877C778.159 85.54 778.451 85.6162 778.764 85.6162C779.094 85.6162 779.382 85.5273 779.627 85.3496C779.873 85.1719 780.063 84.9434 780.199 84.6641C780.334 84.3763 780.402 84.0716 780.402 83.75C780.402 83.2676 780.254 82.8613 779.958 82.5312C779.67 82.2012 779.285 82.0361 778.802 82.0361ZM787.283 80.4238C787.791 80.4238 788.26 80.555 788.692 80.8174C789.132 81.0713 789.483 81.4479 789.746 81.9473C790.016 82.4382 790.152 83.0391 790.152 83.75C790.152 84.4609 790.016 85.0745 789.746 85.5908C789.483 86.1071 789.124 86.5049 788.667 86.7842C788.218 87.055 787.719 87.1904 787.168 87.1904C786.813 87.1904 786.458 87.1058 786.102 86.9365C785.755 86.7588 785.463 86.5387 785.226 86.2764V90.0469H783.614V80.5889H785.226V81.668C785.412 81.321 785.683 81.029 786.039 80.792C786.394 80.5465 786.809 80.4238 787.283 80.4238ZM786.876 82.0361C786.589 82.0361 786.318 82.1123 786.064 82.2646C785.81 82.4085 785.603 82.6159 785.442 82.8867C785.29 83.1576 785.218 83.4834 785.226 83.8643V84.791C785.455 85.028 785.7 85.2269 785.962 85.3877C786.233 85.54 786.525 85.6162 786.838 85.6162C787.168 85.6162 787.456 85.5273 787.702 85.3496C787.947 85.1719 788.138 84.9434 788.273 84.6641C788.408 84.3763 788.476 84.0716 788.476 83.75C788.476 83.2676 788.328 82.8613 788.032 82.5312C787.744 82.2012 787.359 82.0361 786.876 82.0361ZM793.3 77.8594V87H791.688V77.8594H793.3ZM796.614 77.25C796.918 77.25 797.181 77.36 797.401 77.5801C797.621 77.7917 797.731 78.0456 797.731 78.3418C797.731 78.6296 797.621 78.8835 797.401 79.1035C797.181 79.3236 796.918 79.4336 796.614 79.4336C796.309 79.4336 796.047 79.3236 795.827 79.1035C795.615 78.8835 795.509 78.6296 795.509 78.3418C795.509 78.0456 795.615 77.7917 795.827 77.5801C796.047 77.36 796.309 77.25 796.614 77.25ZM797.553 80.5889V87H795.941V81.96H794.913V80.5889H797.553ZM802.39 80.4238C803.016 80.4238 803.554 80.5592 804.002 80.8301C804.459 81.1009 804.806 81.4775 805.043 81.96C805.289 82.4339 805.412 82.984 805.412 83.6104V84.2959H800.765C800.85 84.7275 801.061 85.0745 801.4 85.3369C801.738 85.5993 802.153 85.7305 802.644 85.7305C803.11 85.7305 803.533 85.6374 803.914 85.4512C804.294 85.265 804.599 85.0745 804.828 84.8799L804.815 86.3779C804.612 86.5557 804.307 86.7376 803.901 86.9238C803.503 87.1016 803.063 87.1904 802.581 87.1904C801.946 87.1904 801.366 87.0465 800.841 86.7588C800.325 86.471 799.91 86.0775 799.597 85.5781C799.292 85.0788 799.14 84.5075 799.14 83.8643C799.14 83.238 799.28 82.6667 799.559 82.1504C799.838 81.6341 800.223 81.2194 800.714 80.9062C801.205 80.5846 801.764 80.4238 802.39 80.4238ZM802.352 81.833C801.954 81.833 801.62 81.9557 801.349 82.2012C801.078 82.4466 800.892 82.7767 800.791 83.1914H803.863C803.829 82.7344 803.66 82.3958 803.355 82.1758C803.05 81.9473 802.716 81.833 802.352 81.833ZM812.978 77.8594V87H811.366V85.9209C811.18 86.2679 810.909 86.5684 810.553 86.8223C810.198 87.0677 809.783 87.1904 809.309 87.1904C808.793 87.1904 808.315 87.0592 807.875 86.7969C807.443 86.5345 807.096 86.1536 806.833 85.6543C806.571 85.1549 806.44 84.5498 806.44 83.8389C806.44 83.1279 806.571 82.5186 806.833 82.0107C807.104 81.5029 807.464 81.1136 807.913 80.8428C808.37 80.5635 808.873 80.4238 809.423 80.4238C809.77 80.4238 810.122 80.5042 810.477 80.665C810.833 80.8258 811.129 81.0417 811.366 81.3125V77.8594H812.978ZM809.753 82.0107C809.415 82.0107 809.123 82.0996 808.877 82.2773C808.64 82.4466 808.454 82.6709 808.319 82.9502C808.183 83.221 808.116 83.5173 808.116 83.8389C808.116 84.3213 808.26 84.7318 808.547 85.0703C808.844 85.4089 809.233 85.5781 809.715 85.5781C810.003 85.5781 810.27 85.502 810.515 85.3496C810.769 85.1973 810.972 84.9857 811.125 84.7148C811.285 84.4355 811.366 84.1012 811.366 83.7119V82.7979C811.137 82.5524 810.888 82.362 810.617 82.2266C810.354 82.0827 810.067 82.0107 809.753 82.0107Z",fill:"#3B6600"}),c.createElement("rect",{x:680.5,y:71.5,width:141,height:23,rx:3.5,stroke:"#B0D182"}),c.createElement("rect",{x:679.5,y:216.5,width:141,height:23,rx:3.5,fill:"#FFF2F3"}),c.createElement("path",{d:"M724.724 223.283C724.432 222.99 723.959 222.99 723.667 223.283L719.999 226.943L716.332 223.275C716.039 222.983 715.567 222.983 715.274 223.275C714.982 223.568 714.982 224.04 715.274 224.333L718.942 228L715.274 231.668C714.982 231.96 714.982 232.433 715.274 232.725C715.567 233.018 716.039 233.018 716.332 232.725L719.999 229.058L723.667 232.725C723.959 233.018 724.432 233.018 724.724 232.725C725.017 232.433 725.017 231.96 724.724 231.668L721.057 228L724.724 224.333C725.009 224.048 725.009 223.568 724.724 223.283Z",fill:"#D93644"}),c.createElement("path",{d:"M737.973 223.973C738.465 223.973 738.891 224.043 739.25 224.184C739.609 224.316 739.922 224.5 740.188 224.734V226.375C740 226.234 739.805 226.098 739.602 225.965C739.398 225.832 739.168 225.723 738.91 225.637C738.66 225.551 738.363 225.508 738.02 225.508C737.551 225.508 737.125 225.621 736.742 225.848C736.359 226.074 736.055 226.379 735.828 226.762C735.602 227.145 735.488 227.582 735.488 228.074C735.488 228.559 735.602 228.996 735.828 229.387C736.055 229.77 736.359 230.074 736.742 230.301C737.125 230.52 737.551 230.629 738.02 230.629C738.543 230.629 738.98 230.551 739.332 230.395C739.691 230.23 740.016 230.031 740.305 229.797V231.379C740.039 231.621 739.707 231.816 739.309 231.965C738.91 232.105 738.465 232.176 737.973 232.176C737.41 232.176 736.879 232.078 736.379 231.883C735.879 231.68 735.438 231.398 735.055 231.039C734.672 230.672 734.371 230.238 734.152 229.738C733.934 229.238 733.824 228.684 733.824 228.074C733.824 227.465 733.934 226.91 734.152 226.41C734.371 225.91 734.672 225.48 735.055 225.121C735.438 224.754 735.879 224.473 736.379 224.277C736.879 224.074 737.41 223.973 737.973 223.973ZM744.09 225.93C744.41 225.93 744.734 226.004 745.062 226.152C745.391 226.301 745.664 226.5 745.883 226.75V226.082H747.371V232H745.883V231.004C745.711 231.324 745.461 231.602 745.133 231.836C744.805 232.062 744.422 232.176 743.984 232.176C743.508 232.176 743.066 232.055 742.66 231.812C742.262 231.57 741.941 231.219 741.699 230.758C741.457 230.297 741.336 229.738 741.336 229.082C741.336 228.426 741.457 227.863 741.699 227.395C741.949 226.926 742.281 226.566 742.695 226.316C743.117 226.059 743.582 225.93 744.09 225.93ZM744.395 227.383C744.082 227.383 743.812 227.465 743.586 227.629C743.367 227.785 743.195 227.992 743.07 228.25C742.945 228.508 742.883 228.785 742.883 229.082C742.883 229.527 743.016 229.906 743.281 230.219C743.555 230.531 743.914 230.688 744.359 230.688C744.625 230.688 744.871 230.617 745.098 230.477C745.332 230.336 745.52 230.141 745.66 229.891C745.809 229.633 745.883 229.324 745.883 228.965V228.121C745.672 227.895 745.441 227.715 745.191 227.582C744.949 227.449 744.684 227.383 744.395 227.383ZM750.688 226.082V226.926C750.867 226.684 751.109 226.457 751.414 226.246C751.727 226.035 752.082 225.93 752.48 225.93C753.082 225.93 753.586 226.133 753.992 226.539C754.398 226.945 754.602 227.555 754.602 228.367V232H753.113L753.102 228.566C753.102 228.168 753.004 227.871 752.809 227.676C752.621 227.48 752.359 227.383 752.023 227.383C751.758 227.383 751.508 227.469 751.273 227.641C751.047 227.812 750.852 228.016 750.688 228.25V232H749.199V226.082H750.688ZM759.008 225.93C759.445 225.93 759.805 226 760.086 226.141C760.367 226.281 760.59 226.418 760.754 226.551V227.922C760.551 227.773 760.32 227.648 760.062 227.547C759.812 227.445 759.504 227.395 759.137 227.395C758.84 227.395 758.562 227.469 758.305 227.617C758.055 227.766 757.855 227.965 757.707 228.215C757.559 228.465 757.484 228.75 757.484 229.07C757.484 229.555 757.641 229.953 757.953 230.266C758.266 230.578 758.66 230.734 759.137 230.734C759.504 230.734 759.812 230.688 760.062 230.594C760.32 230.492 760.551 230.367 760.754 230.219V231.578C760.59 231.719 760.367 231.855 760.086 231.988C759.805 232.113 759.445 232.176 759.008 232.176C758.406 232.176 757.871 232.035 757.402 231.754C756.941 231.465 756.574 231.086 756.301 230.617C756.035 230.141 755.902 229.625 755.902 229.07C755.902 228.656 755.977 228.262 756.125 227.887C756.281 227.512 756.5 227.18 756.781 226.891C757.062 226.594 757.391 226.359 757.766 226.188C758.148 226.016 758.562 225.93 759.008 225.93ZM764.668 225.93C765.246 225.93 765.742 226.055 766.156 226.305C766.578 226.555 766.898 226.902 767.117 227.348C767.344 227.785 767.457 228.293 767.457 228.871V229.504H763.168C763.246 229.902 763.441 230.223 763.754 230.465C764.066 230.707 764.449 230.828 764.902 230.828C765.332 230.828 765.723 230.742 766.074 230.57C766.426 230.398 766.707 230.223 766.918 230.043L766.906 231.426C766.719 231.59 766.438 231.758 766.062 231.93C765.695 232.094 765.289 232.176 764.844 232.176C764.258 232.176 763.723 232.043 763.238 231.777C762.762 231.512 762.379 231.148 762.09 230.688C761.809 230.227 761.668 229.699 761.668 229.105C761.668 228.527 761.797 228 762.055 227.523C762.312 227.047 762.668 226.664 763.121 226.375C763.574 226.078 764.09 225.93 764.668 225.93ZM764.633 227.23C764.266 227.23 763.957 227.344 763.707 227.57C763.457 227.797 763.285 228.102 763.191 228.484H766.027C765.996 228.062 765.84 227.75 765.559 227.547C765.277 227.336 764.969 227.23 764.633 227.23ZM770.305 223.562V232H768.816V223.562H770.305ZM773.609 223.562V232H772.121V223.562H773.609ZM778.016 225.93C778.594 225.93 779.09 226.055 779.504 226.305C779.926 226.555 780.246 226.902 780.465 227.348C780.691 227.785 780.805 228.293 780.805 228.871V229.504H776.516C776.594 229.902 776.789 230.223 777.102 230.465C777.414 230.707 777.797 230.828 778.25 230.828C778.68 230.828 779.07 230.742 779.422 230.57C779.773 230.398 780.055 230.223 780.266 230.043L780.254 231.426C780.066 231.59 779.785 231.758 779.41 231.93C779.043 232.094 778.637 232.176 778.191 232.176C777.605 232.176 777.07 232.043 776.586 231.777C776.109 231.512 775.727 231.148 775.438 230.688C775.156 230.227 775.016 229.699 775.016 229.105C775.016 228.527 775.145 228 775.402 227.523C775.66 227.047 776.016 226.664 776.469 226.375C776.922 226.078 777.438 225.93 778.016 225.93ZM777.98 227.23C777.613 227.23 777.305 227.344 777.055 227.57C776.805 227.797 776.633 228.102 776.539 228.484H779.375C779.344 228.062 779.188 227.75 778.906 227.547C778.625 227.336 778.316 227.23 777.98 227.23ZM787.789 223.562V232H786.301V231.004C786.129 231.324 785.879 231.602 785.551 231.836C785.223 232.062 784.84 232.176 784.402 232.176C783.926 232.176 783.484 232.055 783.078 231.812C782.68 231.57 782.359 231.219 782.117 230.758C781.875 230.297 781.754 229.738 781.754 229.082C781.754 228.426 781.875 227.863 782.117 227.395C782.367 226.926 782.699 226.566 783.113 226.316C783.535 226.059 784 225.93 784.508 225.93C784.828 225.93 785.152 226.004 785.48 226.152C785.809 226.301 786.082 226.5 786.301 226.75V223.562H787.789ZM784.812 227.395C784.5 227.395 784.23 227.477 784.004 227.641C783.785 227.797 783.613 228.004 783.488 228.262C783.363 228.512 783.301 228.785 783.301 229.082C783.301 229.527 783.434 229.906 783.699 230.219C783.973 230.531 784.332 230.688 784.777 230.688C785.043 230.688 785.289 230.617 785.516 230.477C785.75 230.336 785.938 230.141 786.078 229.891C786.227 229.633 786.301 229.324 786.301 228.965V228.121C786.09 227.895 785.859 227.719 785.609 227.594C785.367 227.461 785.102 227.395 784.812 227.395Z",fill:"#D11525"}),c.createElement("rect",{x:679.5,y:216.5,width:141,height:23,rx:3.5,stroke:"#FEB0B7"}),c.createElement("rect",{x:514.5,y:147.5,width:110,height:23,rx:3.5,fill:"#FFF2F3"}),c.createElement("path",{d:"M546.724 154.283C546.432 153.99 545.959 153.99 545.667 154.283L541.999 157.943L538.332 154.275C538.039 153.983 537.567 153.983 537.274 154.275C536.982 154.568 536.982 155.04 537.274 155.333L540.942 159L537.274 162.668C536.982 162.96 536.982 163.433 537.274 163.725C537.567 164.018 538.039 164.018 538.332 163.725L541.999 160.058L545.667 163.725C545.959 164.018 546.432 164.018 546.724 163.725C547.017 163.433 547.017 162.96 546.724 162.668L543.057 159L546.724 155.333C547.009 155.048 547.009 154.568 546.724 154.283Z",fill:"#D93644"}),c.createElement("path",{d:"M559.693 155.148C560.061 155.148 560.42 155.199 560.771 155.301C561.123 155.402 561.439 155.559 561.721 155.77C562.01 155.98 562.236 156.246 562.4 156.566C562.572 156.879 562.658 157.254 562.658 157.691C562.658 158.152 562.541 158.551 562.307 158.887C562.08 159.215 561.779 159.473 561.404 159.66C561.029 159.84 560.623 159.945 560.186 159.977L563.01 163H560.865L558.135 159.789V163H556.506V155.148H559.693ZM558.135 156.672V158.652C558.322 158.715 558.529 158.766 558.756 158.805C558.99 158.836 559.225 158.852 559.459 158.852C559.928 158.852 560.299 158.758 560.572 158.57C560.854 158.375 560.994 158.102 560.994 157.75C560.994 157.367 560.846 157.094 560.549 156.93C560.26 156.758 559.904 156.672 559.482 156.672H558.135ZM566.49 156.93C567.068 156.93 567.564 157.055 567.979 157.305C568.4 157.555 568.721 157.902 568.939 158.348C569.166 158.785 569.279 159.293 569.279 159.871V160.504H564.99C565.068 160.902 565.264 161.223 565.576 161.465C565.889 161.707 566.271 161.828 566.725 161.828C567.154 161.828 567.545 161.742 567.896 161.57C568.248 161.398 568.529 161.223 568.74 161.043L568.729 162.426C568.541 162.59 568.26 162.758 567.885 162.93C567.518 163.094 567.111 163.176 566.666 163.176C566.08 163.176 565.545 163.043 565.061 162.777C564.584 162.512 564.201 162.148 563.912 161.688C563.631 161.227 563.49 160.699 563.49 160.105C563.49 159.527 563.619 159 563.877 158.523C564.135 158.047 564.49 157.664 564.943 157.375C565.396 157.078 565.912 156.93 566.49 156.93ZM566.455 158.23C566.088 158.23 565.779 158.344 565.529 158.57C565.279 158.797 565.107 159.102 565.014 159.484H567.85C567.818 159.062 567.662 158.75 567.381 158.547C567.1 158.336 566.791 158.23 566.455 158.23ZM571.811 154C572.084 154 572.322 154.102 572.525 154.305C572.736 154.5 572.842 154.734 572.842 155.008C572.842 155.273 572.736 155.508 572.525 155.711C572.322 155.914 572.084 156.016 571.811 156.016C571.521 156.016 571.275 155.914 571.072 155.711C570.877 155.508 570.779 155.273 570.779 155.008C570.779 154.734 570.877 154.5 571.072 154.305C571.275 154.102 571.521 154 571.811 154ZM572.654 157.082V162.93C572.654 163.734 572.467 164.383 572.092 164.875C571.725 165.375 571.205 165.746 570.533 165.988L569.877 164.688C570.291 164.5 570.607 164.273 570.826 164.008C571.053 163.742 571.166 163.402 571.166 162.988V158.348H570.217V157.082H572.654ZM577.166 156.93C577.744 156.93 578.24 157.055 578.654 157.305C579.076 157.555 579.396 157.902 579.615 158.348C579.842 158.785 579.955 159.293 579.955 159.871V160.504H575.666C575.744 160.902 575.939 161.223 576.252 161.465C576.564 161.707 576.947 161.828 577.4 161.828C577.83 161.828 578.221 161.742 578.572 161.57C578.924 161.398 579.205 161.223 579.416 161.043L579.404 162.426C579.217 162.59 578.936 162.758 578.561 162.93C578.193 163.094 577.787 163.176 577.342 163.176C576.756 163.176 576.221 163.043 575.736 162.777C575.26 162.512 574.877 162.148 574.588 161.688C574.307 161.227 574.166 160.699 574.166 160.105C574.166 159.527 574.295 159 574.553 158.523C574.811 158.047 575.166 157.664 575.619 157.375C576.072 157.078 576.588 156.93 577.166 156.93ZM577.131 158.23C576.764 158.23 576.455 158.344 576.205 158.57C575.955 158.797 575.783 159.102 575.689 159.484H578.525C578.494 159.062 578.338 158.75 578.057 158.547C577.775 158.336 577.467 158.23 577.131 158.23ZM584.01 156.93C584.447 156.93 584.807 157 585.088 157.141C585.369 157.281 585.592 157.418 585.756 157.551V158.922C585.553 158.773 585.322 158.648 585.064 158.547C584.814 158.445 584.506 158.395 584.139 158.395C583.842 158.395 583.564 158.469 583.307 158.617C583.057 158.766 582.857 158.965 582.709 159.215C582.561 159.465 582.486 159.75 582.486 160.07C582.486 160.555 582.643 160.953 582.955 161.266C583.268 161.578 583.662 161.734 584.139 161.734C584.506 161.734 584.814 161.688 585.064 161.594C585.322 161.492 585.553 161.367 585.756 161.219V162.578C585.592 162.719 585.369 162.855 585.088 162.988C584.807 163.113 584.447 163.176 584.01 163.176C583.408 163.176 582.873 163.035 582.404 162.754C581.943 162.465 581.576 162.086 581.303 161.617C581.037 161.141 580.904 160.625 580.904 160.07C580.904 159.656 580.979 159.262 581.127 158.887C581.283 158.512 581.502 158.18 581.783 157.891C582.064 157.594 582.393 157.359 582.768 157.188C583.15 157.016 583.564 156.93 584.01 156.93ZM589.225 155.359V157.082H590.865V158.324H589.225V160.879C589.225 161.145 589.283 161.355 589.4 161.512C589.525 161.66 589.709 161.734 589.951 161.734C590.162 161.734 590.342 161.711 590.49 161.664C590.646 161.617 590.791 161.551 590.924 161.465V162.648C590.775 162.797 590.588 162.922 590.361 163.023C590.143 163.125 589.865 163.176 589.529 163.176C588.998 163.176 588.564 163.008 588.229 162.672C587.9 162.328 587.736 161.859 587.736 161.266V158.324H586.67V157.562C587.045 157.43 587.389 157.18 587.701 156.812C588.021 156.445 588.275 155.961 588.463 155.359H589.225ZM594.979 156.93C595.557 156.93 596.053 157.055 596.467 157.305C596.889 157.555 597.209 157.902 597.428 158.348C597.654 158.785 597.768 159.293 597.768 159.871V160.504H593.479C593.557 160.902 593.752 161.223 594.064 161.465C594.377 161.707 594.76 161.828 595.213 161.828C595.643 161.828 596.033 161.742 596.385 161.57C596.736 161.398 597.018 161.223 597.229 161.043L597.217 162.426C597.029 162.59 596.748 162.758 596.373 162.93C596.006 163.094 595.6 163.176 595.154 163.176C594.568 163.176 594.033 163.043 593.549 162.777C593.072 162.512 592.689 162.148 592.4 161.688C592.119 161.227 591.979 160.699 591.979 160.105C591.979 159.527 592.107 159 592.365 158.523C592.623 158.047 592.979 157.664 593.432 157.375C593.885 157.078 594.4 156.93 594.979 156.93ZM594.943 158.23C594.576 158.23 594.268 158.344 594.018 158.57C593.768 158.797 593.596 159.102 593.502 159.484H596.338C596.307 159.062 596.15 158.75 595.869 158.547C595.588 158.336 595.279 158.23 594.943 158.23ZM604.752 154.562V163H603.264V162.004C603.092 162.324 602.842 162.602 602.514 162.836C602.186 163.062 601.803 163.176 601.365 163.176C600.889 163.176 600.447 163.055 600.041 162.812C599.643 162.57 599.322 162.219 599.08 161.758C598.838 161.297 598.717 160.738 598.717 160.082C598.717 159.426 598.838 158.863 599.08 158.395C599.33 157.926 599.662 157.566 600.076 157.316C600.498 157.059 600.963 156.93 601.471 156.93C601.791 156.93 602.115 157.004 602.443 157.152C602.771 157.301 603.045 157.5 603.264 157.75V154.562H604.752ZM601.775 158.395C601.463 158.395 601.193 158.477 600.967 158.641C600.748 158.797 600.576 159.004 600.451 159.262C600.326 159.512 600.264 159.785 600.264 160.082C600.264 160.527 600.396 160.906 600.662 161.219C600.936 161.531 601.295 161.688 601.74 161.688C602.006 161.688 602.252 161.617 602.479 161.477C602.713 161.336 602.9 161.141 603.041 160.891C603.189 160.633 603.264 160.324 603.264 159.965V159.121C603.053 158.895 602.822 158.719 602.572 158.594C602.33 158.461 602.064 158.395 601.775 158.395Z",fill:"#D11525"}),c.createElement("rect",{x:514.5,y:147.5,width:110,height:23,rx:3.5,stroke:"#FEB0B7"}),c.createElement("rect",{x:680.5,y:147.5,width:141,height:23,rx:3.5,fill:"#FFF2F3"}),c.createElement("path",{d:"M703.724 154.283C703.432 153.99 702.959 153.99 702.667 154.283L698.999 157.943L695.332 154.275C695.039 153.983 694.567 153.983 694.274 154.275C693.982 154.568 693.982 155.04 694.274 155.333L697.942 159L694.274 162.668C693.982 162.96 693.982 163.433 694.274 163.725C694.567 164.018 695.039 164.018 695.332 163.725L698.999 160.058L702.667 163.725C702.959 164.018 703.432 164.018 703.724 163.725C704.017 163.433 704.017 162.96 703.724 162.668L700.057 159L703.724 155.333C704.009 155.048 704.009 154.568 703.724 154.283Z",fill:"#D93644"}),c.createElement("path",{d:"M716.848 154.973C717.34 154.973 717.766 155.043 718.125 155.184C718.484 155.316 718.797 155.5 719.062 155.734V157.375C718.875 157.234 718.68 157.098 718.477 156.965C718.273 156.832 718.043 156.723 717.785 156.637C717.535 156.551 717.238 156.508 716.895 156.508C716.426 156.508 716 156.621 715.617 156.848C715.234 157.074 714.93 157.379 714.703 157.762C714.477 158.145 714.363 158.582 714.363 159.074C714.363 159.559 714.477 159.996 714.703 160.387C714.93 160.77 715.234 161.074 715.617 161.301C716 161.52 716.426 161.629 716.895 161.629C717.418 161.629 717.855 161.551 718.207 161.395C718.566 161.23 718.891 161.031 719.18 160.797V162.379C718.914 162.621 718.582 162.816 718.184 162.965C717.785 163.105 717.34 163.176 716.848 163.176C716.285 163.176 715.754 163.078 715.254 162.883C714.754 162.68 714.312 162.398 713.93 162.039C713.547 161.672 713.246 161.238 713.027 160.738C712.809 160.238 712.699 159.684 712.699 159.074C712.699 158.465 712.809 157.91 713.027 157.41C713.246 156.91 713.547 156.48 713.93 156.121C714.312 155.754 714.754 155.473 715.254 155.277C715.754 155.074 716.285 154.973 716.848 154.973ZM723.902 156.93C724.504 156.93 725.008 157.133 725.414 157.539C725.82 157.945 726.023 158.555 726.023 159.367V163H724.535L724.523 159.566C724.523 159.168 724.426 158.871 724.23 158.676C724.043 158.48 723.781 158.383 723.445 158.383C723.18 158.383 722.93 158.469 722.695 158.641C722.469 158.812 722.273 159.016 722.109 159.25V163H720.621V154.562H722.109V157.926C722.289 157.684 722.531 157.457 722.836 157.246C723.148 157.035 723.504 156.93 723.902 156.93ZM730.078 156.93C730.398 156.93 730.723 157.004 731.051 157.152C731.379 157.301 731.652 157.5 731.871 157.75V157.082H733.359V163H731.871V162.004C731.699 162.324 731.449 162.602 731.121 162.836C730.793 163.062 730.41 163.176 729.973 163.176C729.496 163.176 729.055 163.055 728.648 162.812C728.25 162.57 727.93 162.219 727.688 161.758C727.445 161.297 727.324 160.738 727.324 160.082C727.324 159.426 727.445 158.863 727.688 158.395C727.938 157.926 728.27 157.566 728.684 157.316C729.105 157.059 729.57 156.93 730.078 156.93ZM730.383 158.383C730.07 158.383 729.801 158.465 729.574 158.629C729.355 158.785 729.184 158.992 729.059 159.25C728.934 159.508 728.871 159.785 728.871 160.082C728.871 160.527 729.004 160.906 729.27 161.219C729.543 161.531 729.902 161.688 730.348 161.688C730.613 161.688 730.859 161.617 731.086 161.477C731.32 161.336 731.508 161.141 731.648 160.891C731.797 160.633 731.871 160.324 731.871 159.965V159.121C731.66 158.895 731.43 158.715 731.18 158.582C730.938 158.449 730.672 158.383 730.383 158.383ZM736.676 157.082V157.926C736.855 157.684 737.098 157.457 737.402 157.246C737.715 157.035 738.07 156.93 738.469 156.93C739.07 156.93 739.574 157.133 739.98 157.539C740.387 157.945 740.59 158.555 740.59 159.367V163H739.102L739.09 159.566C739.09 159.168 738.992 158.871 738.797 158.676C738.609 158.48 738.348 158.383 738.012 158.383C737.746 158.383 737.496 158.469 737.262 158.641C737.035 158.812 736.84 159.016 736.676 159.25V163H735.188V157.082H736.676ZM744.645 156.93C744.965 156.93 745.289 157.004 745.617 157.152C745.945 157.301 746.219 157.5 746.438 157.75V157.082H747.926V162.848C747.926 163.52 747.777 164.086 747.48 164.547C747.184 165.016 746.789 165.371 746.297 165.613C745.805 165.863 745.266 165.988 744.68 165.988C744.156 165.988 743.727 165.91 743.391 165.754C743.055 165.598 742.742 165.418 742.453 165.215V163.809C742.633 163.918 742.82 164.035 743.016 164.16C743.219 164.285 743.445 164.391 743.695 164.477C743.953 164.562 744.25 164.605 744.586 164.605C744.938 164.605 745.254 164.539 745.535 164.406C745.816 164.273 746.035 164.086 746.191 163.844C746.355 163.609 746.438 163.34 746.438 163.035V162.004C746.266 162.324 746.016 162.602 745.688 162.836C745.359 163.062 744.977 163.176 744.539 163.176C744.062 163.176 743.621 163.055 743.215 162.812C742.816 162.57 742.496 162.219 742.254 161.758C742.012 161.297 741.891 160.738 741.891 160.082C741.891 159.426 742.012 158.863 742.254 158.395C742.504 157.926 742.836 157.566 743.25 157.316C743.672 157.059 744.137 156.93 744.645 156.93ZM744.949 158.395C744.637 158.395 744.367 158.477 744.141 158.641C743.922 158.797 743.75 159.004 743.625 159.262C743.5 159.512 743.438 159.785 743.438 160.082C743.438 160.527 743.57 160.906 743.836 161.219C744.109 161.523 744.469 161.676 744.914 161.676C745.18 161.676 745.426 161.609 745.652 161.477C745.887 161.336 746.074 161.141 746.215 160.891C746.363 160.633 746.438 160.324 746.438 159.965V159.121C746.227 158.895 745.996 158.719 745.746 158.594C745.504 158.461 745.238 158.395 744.949 158.395ZM752.344 156.93C752.922 156.93 753.418 157.055 753.832 157.305C754.254 157.555 754.574 157.902 754.793 158.348C755.02 158.785 755.133 159.293 755.133 159.871V160.504H750.844C750.922 160.902 751.117 161.223 751.43 161.465C751.742 161.707 752.125 161.828 752.578 161.828C753.008 161.828 753.398 161.742 753.75 161.57C754.102 161.398 754.383 161.223 754.594 161.043L754.582 162.426C754.395 162.59 754.113 162.758 753.738 162.93C753.371 163.094 752.965 163.176 752.52 163.176C751.934 163.176 751.398 163.043 750.914 162.777C750.438 162.512 750.055 162.148 749.766 161.688C749.484 161.227 749.344 160.699 749.344 160.105C749.344 159.527 749.473 159 749.73 158.523C749.988 158.047 750.344 157.664 750.797 157.375C751.25 157.078 751.766 156.93 752.344 156.93ZM752.309 158.23C751.941 158.23 751.633 158.344 751.383 158.57C751.133 158.797 750.961 159.102 750.867 159.484H753.703C753.672 159.062 753.516 158.75 753.234 158.547C752.953 158.336 752.645 158.23 752.309 158.23ZM758.402 156.93C758.77 156.93 759.109 156.984 759.422 157.094C759.734 157.203 759.977 157.328 760.148 157.469V158.781C759.961 158.656 759.73 158.535 759.457 158.418C759.191 158.301 758.914 158.242 758.625 158.242C758.344 158.242 758.121 158.305 757.957 158.43C757.793 158.555 757.711 158.703 757.711 158.875C757.711 159 757.758 159.117 757.852 159.227C757.945 159.328 758.125 159.418 758.391 159.496L759.059 159.719C759.957 159.984 760.406 160.504 760.406 161.277C760.406 161.645 760.301 161.973 760.09 162.262C759.887 162.543 759.609 162.766 759.258 162.93C758.914 163.094 758.531 163.176 758.109 163.176C757.711 163.176 757.324 163.113 756.949 162.988C756.574 162.863 756.289 162.727 756.094 162.578V161.277C756.242 161.379 756.422 161.477 756.633 161.57C756.844 161.664 757.062 161.742 757.289 161.805C757.516 161.859 757.723 161.887 757.91 161.887C758.207 161.887 758.434 161.836 758.59 161.734C758.754 161.625 758.836 161.473 758.836 161.277C758.836 161.129 758.77 161.012 758.637 160.926C758.504 160.84 758.309 160.754 758.051 160.668L757.324 160.41C756.871 160.262 756.559 160.051 756.387 159.777C756.215 159.504 756.129 159.18 756.129 158.805C756.129 158.43 756.223 158.105 756.41 157.832C756.605 157.551 756.875 157.332 757.219 157.176C757.562 157.012 757.957 156.93 758.402 156.93ZM768.914 158.746C768.664 158.605 768.402 158.535 768.129 158.535C767.785 158.535 767.5 158.648 767.273 158.875C767.047 159.094 766.848 159.367 766.676 159.695V163H765.188V157.082H766.676V158.195C766.879 157.844 767.117 157.551 767.391 157.316C767.672 157.082 767.988 156.965 768.34 156.965C768.551 156.965 768.742 157 768.914 157.07V158.746ZM772.652 156.93C773.23 156.93 773.727 157.055 774.141 157.305C774.562 157.555 774.883 157.902 775.102 158.348C775.328 158.785 775.441 159.293 775.441 159.871V160.504H771.152C771.23 160.902 771.426 161.223 771.738 161.465C772.051 161.707 772.434 161.828 772.887 161.828C773.316 161.828 773.707 161.742 774.059 161.57C774.41 161.398 774.691 161.223 774.902 161.043L774.891 162.426C774.703 162.59 774.422 162.758 774.047 162.93C773.68 163.094 773.273 163.176 772.828 163.176C772.242 163.176 771.707 163.043 771.223 162.777C770.746 162.512 770.363 162.148 770.074 161.688C769.793 161.227 769.652 160.699 769.652 160.105C769.652 159.527 769.781 159 770.039 158.523C770.297 158.047 770.652 157.664 771.105 157.375C771.559 157.078 772.074 156.93 772.652 156.93ZM772.617 158.23C772.25 158.23 771.941 158.344 771.691 158.57C771.441 158.797 771.27 159.102 771.176 159.484H774.012C773.98 159.062 773.824 158.75 773.543 158.547C773.262 158.336 772.953 158.23 772.617 158.23ZM777.973 154C778.246 154 778.484 154.102 778.688 154.305C778.898 154.5 779.004 154.734 779.004 155.008C779.004 155.273 778.898 155.508 778.688 155.711C778.484 155.914 778.246 156.016 777.973 156.016C777.684 156.016 777.438 155.914 777.234 155.711C777.039 155.508 776.941 155.273 776.941 155.008C776.941 154.734 777.039 154.5 777.234 154.305C777.438 154.102 777.684 154 777.973 154ZM778.816 157.082V162.93C778.816 163.734 778.629 164.383 778.254 164.875C777.887 165.375 777.367 165.746 776.695 165.988L776.039 164.688C776.453 164.5 776.77 164.273 776.988 164.008C777.215 163.742 777.328 163.402 777.328 162.988V158.348H776.379V157.082H778.816ZM783.328 156.93C783.906 156.93 784.402 157.055 784.816 157.305C785.238 157.555 785.559 157.902 785.777 158.348C786.004 158.785 786.117 159.293 786.117 159.871V160.504H781.828C781.906 160.902 782.102 161.223 782.414 161.465C782.727 161.707 783.109 161.828 783.562 161.828C783.992 161.828 784.383 161.742 784.734 161.57C785.086 161.398 785.367 161.223 785.578 161.043L785.566 162.426C785.379 162.59 785.098 162.758 784.723 162.93C784.355 163.094 783.949 163.176 783.504 163.176C782.918 163.176 782.383 163.043 781.898 162.777C781.422 162.512 781.039 162.148 780.75 161.688C780.469 161.227 780.328 160.699 780.328 160.105C780.328 159.527 780.457 159 780.715 158.523C780.973 158.047 781.328 157.664 781.781 157.375C782.234 157.078 782.75 156.93 783.328 156.93ZM783.293 158.23C782.926 158.23 782.617 158.344 782.367 158.57C782.117 158.797 781.945 159.102 781.852 159.484H784.688C784.656 159.062 784.5 158.75 784.219 158.547C783.938 158.336 783.629 158.23 783.293 158.23ZM790.172 156.93C790.609 156.93 790.969 157 791.25 157.141C791.531 157.281 791.754 157.418 791.918 157.551V158.922C791.715 158.773 791.484 158.648 791.227 158.547C790.977 158.445 790.668 158.395 790.301 158.395C790.004 158.395 789.727 158.469 789.469 158.617C789.219 158.766 789.02 158.965 788.871 159.215C788.723 159.465 788.648 159.75 788.648 160.07C788.648 160.555 788.805 160.953 789.117 161.266C789.43 161.578 789.824 161.734 790.301 161.734C790.668 161.734 790.977 161.688 791.227 161.594C791.484 161.492 791.715 161.367 791.918 161.219V162.578C791.754 162.719 791.531 162.855 791.25 162.988C790.969 163.113 790.609 163.176 790.172 163.176C789.57 163.176 789.035 163.035 788.566 162.754C788.105 162.465 787.738 162.086 787.465 161.617C787.199 161.141 787.066 160.625 787.066 160.07C787.066 159.656 787.141 159.262 787.289 158.887C787.445 158.512 787.664 158.18 787.945 157.891C788.227 157.594 788.555 157.359 788.93 157.188C789.312 157.016 789.727 156.93 790.172 156.93ZM795.387 155.359V157.082H797.027V158.324H795.387V160.879C795.387 161.145 795.445 161.355 795.562 161.512C795.688 161.66 795.871 161.734 796.113 161.734C796.324 161.734 796.504 161.711 796.652 161.664C796.809 161.617 796.953 161.551 797.086 161.465V162.648C796.938 162.797 796.75 162.922 796.523 163.023C796.305 163.125 796.027 163.176 795.691 163.176C795.16 163.176 794.727 163.008 794.391 162.672C794.062 162.328 793.898 161.859 793.898 161.266V158.324H792.832V157.562C793.207 157.43 793.551 157.18 793.863 156.812C794.184 156.445 794.438 155.961 794.625 155.359H795.387ZM801.141 156.93C801.719 156.93 802.215 157.055 802.629 157.305C803.051 157.555 803.371 157.902 803.59 158.348C803.816 158.785 803.93 159.293 803.93 159.871V160.504H799.641C799.719 160.902 799.914 161.223 800.227 161.465C800.539 161.707 800.922 161.828 801.375 161.828C801.805 161.828 802.195 161.742 802.547 161.57C802.898 161.398 803.18 161.223 803.391 161.043L803.379 162.426C803.191 162.59 802.91 162.758 802.535 162.93C802.168 163.094 801.762 163.176 801.316 163.176C800.73 163.176 800.195 163.043 799.711 162.777C799.234 162.512 798.852 162.148 798.562 161.688C798.281 161.227 798.141 160.699 798.141 160.105C798.141 159.527 798.27 159 798.527 158.523C798.785 158.047 799.141 157.664 799.594 157.375C800.047 157.078 800.562 156.93 801.141 156.93ZM801.105 158.23C800.738 158.23 800.43 158.344 800.18 158.57C799.93 158.797 799.758 159.102 799.664 159.484H802.5C802.469 159.062 802.312 158.75 802.031 158.547C801.75 158.336 801.441 158.23 801.105 158.23ZM810.914 154.562V163H809.426V162.004C809.254 162.324 809.004 162.602 808.676 162.836C808.348 163.062 807.965 163.176 807.527 163.176C807.051 163.176 806.609 163.055 806.203 162.812C805.805 162.57 805.484 162.219 805.242 161.758C805 161.297 804.879 160.738 804.879 160.082C804.879 159.426 805 158.863 805.242 158.395C805.492 157.926 805.824 157.566 806.238 157.316C806.66 157.059 807.125 156.93 807.633 156.93C807.953 156.93 808.277 157.004 808.605 157.152C808.934 157.301 809.207 157.5 809.426 157.75V154.562H810.914ZM807.938 158.395C807.625 158.395 807.355 158.477 807.129 158.641C806.91 158.797 806.738 159.004 806.613 159.262C806.488 159.512 806.426 159.785 806.426 160.082C806.426 160.527 806.559 160.906 806.824 161.219C807.098 161.531 807.457 161.688 807.902 161.688C808.168 161.688 808.414 161.617 808.641 161.477C808.875 161.336 809.062 161.141 809.203 160.891C809.352 160.633 809.426 160.324 809.426 159.965V159.121C809.215 158.895 808.984 158.719 808.734 158.594C808.492 158.461 808.227 158.395 807.938 158.395Z",fill:"#D11525"}),c.createElement("rect",{x:680.5,y:147.5,width:141,height:23,rx:3.5,stroke:"#FEB0B7"}),c.createElement("rect",{x:287.5,y:146.5,width:136,height:23,rx:3.5,fill:"#F1F0FC"}),c.createElement("path",{d:"M302.5 150.5C298.352 150.5 295 153.852 295 158C295 162.148 298.352 165.5 302.5 165.5C306.648 165.5 310 162.148 310 158C310 153.852 306.648 150.5 302.5 150.5ZM302.5 164C299.193 164 296.5 161.307 296.5 158C296.5 154.693 299.193 152 302.5 152C305.807 152 308.5 154.693 308.5 158C308.5 161.307 305.807 164 302.5 164Z",fill:"#6C65E5"}),c.createElement("path",{d:"M318.979 153.494C319.377 153.494 319.767 153.549 320.147 153.659C320.528 153.769 320.871 153.938 321.176 154.167C321.489 154.396 321.734 154.683 321.912 155.03C322.098 155.369 322.191 155.775 322.191 156.249C322.191 156.748 322.064 157.18 321.811 157.544C321.565 157.899 321.239 158.179 320.833 158.382C320.427 158.576 319.987 158.691 319.513 158.725L322.572 162H320.249L317.291 158.521V162H315.526V153.494H318.979ZM317.291 155.145V157.29C317.494 157.358 317.718 157.413 317.964 157.455C318.218 157.489 318.472 157.506 318.726 157.506C319.233 157.506 319.635 157.404 319.932 157.201C320.236 156.99 320.389 156.693 320.389 156.312C320.389 155.898 320.228 155.602 319.906 155.424C319.593 155.238 319.208 155.145 318.751 155.145H317.291ZM326.343 155.424C326.969 155.424 327.507 155.559 327.955 155.83C328.412 156.101 328.759 156.478 328.996 156.96C329.242 157.434 329.364 157.984 329.364 158.61V159.296H324.718C324.802 159.728 325.014 160.075 325.353 160.337C325.691 160.599 326.106 160.73 326.597 160.73C327.062 160.73 327.485 160.637 327.866 160.451C328.247 160.265 328.552 160.075 328.78 159.88L328.768 161.378C328.564 161.556 328.26 161.738 327.854 161.924C327.456 162.102 327.016 162.19 326.533 162.19C325.898 162.19 325.319 162.047 324.794 161.759C324.278 161.471 323.863 161.077 323.55 160.578C323.245 160.079 323.093 159.507 323.093 158.864C323.093 158.238 323.232 157.667 323.512 157.15C323.791 156.634 324.176 156.219 324.667 155.906C325.158 155.585 325.716 155.424 326.343 155.424ZM326.305 156.833C325.907 156.833 325.573 156.956 325.302 157.201C325.031 157.447 324.845 157.777 324.743 158.191H327.815C327.782 157.734 327.612 157.396 327.308 157.176C327.003 156.947 326.669 156.833 326.305 156.833ZM337.032 155.589L333.998 162H332.97L329.974 155.589H331.853L333.465 159.562L335.153 155.589H337.032ZM339.495 152.25C339.8 152.25 340.062 152.36 340.282 152.58C340.502 152.792 340.612 153.046 340.612 153.342C340.612 153.63 340.502 153.883 340.282 154.104C340.062 154.324 339.8 154.434 339.495 154.434C339.19 154.434 338.928 154.324 338.708 154.104C338.496 153.883 338.391 153.63 338.391 153.342C338.391 153.046 338.496 152.792 338.708 152.58C338.928 152.36 339.19 152.25 339.495 152.25ZM340.435 155.589V162H338.822V156.96H337.794V155.589H340.435ZM345.271 155.424C345.898 155.424 346.435 155.559 346.884 155.83C347.341 156.101 347.688 156.478 347.925 156.96C348.17 157.434 348.293 157.984 348.293 158.61V159.296H343.646C343.731 159.728 343.943 160.075 344.281 160.337C344.62 160.599 345.035 160.73 345.525 160.73C345.991 160.73 346.414 160.637 346.795 160.451C347.176 160.265 347.48 160.075 347.709 159.88L347.696 161.378C347.493 161.556 347.188 161.738 346.782 161.924C346.384 162.102 345.944 162.19 345.462 162.19C344.827 162.19 344.247 162.047 343.723 161.759C343.206 161.471 342.792 161.077 342.479 160.578C342.174 160.079 342.021 159.507 342.021 158.864C342.021 158.238 342.161 157.667 342.44 157.15C342.72 156.634 343.105 156.219 343.596 155.906C344.087 155.585 344.645 155.424 345.271 155.424ZM345.233 156.833C344.836 156.833 344.501 156.956 344.23 157.201C343.96 157.447 343.773 157.777 343.672 158.191H346.744C346.71 157.734 346.541 157.396 346.236 157.176C345.932 156.947 345.597 156.833 345.233 156.833ZM358.678 155.589L356.456 162H355.288L353.79 157.849L352.292 162H351.111L348.902 155.589H350.654L351.835 159.385L353.219 155.589H354.374L355.745 159.385L356.926 155.589H358.678ZM367.641 157.392C367.37 157.239 367.086 157.163 366.79 157.163C366.418 157.163 366.109 157.286 365.863 157.531C365.618 157.768 365.402 158.064 365.216 158.42V162H363.604V155.589H365.216V156.795C365.436 156.414 365.694 156.097 365.99 155.843C366.295 155.589 366.638 155.462 367.019 155.462C367.247 155.462 367.454 155.5 367.641 155.576V157.392ZM371.69 155.424C372.317 155.424 372.854 155.559 373.303 155.83C373.76 156.101 374.107 156.478 374.344 156.96C374.589 157.434 374.712 157.984 374.712 158.61V159.296H370.065C370.15 159.728 370.362 160.075 370.7 160.337C371.039 160.599 371.453 160.73 371.944 160.73C372.41 160.73 372.833 160.637 373.214 160.451C373.595 160.265 373.899 160.075 374.128 159.88L374.115 161.378C373.912 161.556 373.607 161.738 373.201 161.924C372.803 162.102 372.363 162.19 371.881 162.19C371.246 162.19 370.666 162.047 370.142 161.759C369.625 161.471 369.211 161.077 368.897 160.578C368.593 160.079 368.44 159.507 368.44 158.864C368.44 158.238 368.58 157.667 368.859 157.15C369.139 156.634 369.524 156.219 370.015 155.906C370.506 155.585 371.064 155.424 371.69 155.424ZM371.652 156.833C371.255 156.833 370.92 156.956 370.649 157.201C370.379 157.447 370.192 157.777 370.091 158.191H373.163C373.129 157.734 372.96 157.396 372.655 157.176C372.351 156.947 372.016 156.833 371.652 156.833ZM378.724 155.424C379.071 155.424 379.422 155.504 379.777 155.665C380.133 155.826 380.429 156.042 380.666 156.312V155.589H382.278V165.047H380.666V160.921C380.48 161.268 380.209 161.568 379.854 161.822C379.498 162.068 379.083 162.19 378.609 162.19C378.093 162.19 377.615 162.059 377.175 161.797C376.743 161.535 376.396 161.154 376.134 160.654C375.871 160.155 375.74 159.55 375.74 158.839C375.74 158.128 375.871 157.519 376.134 157.011C376.405 156.503 376.764 156.114 377.213 155.843C377.67 155.563 378.174 155.424 378.724 155.424ZM379.054 157.011C378.715 157.011 378.423 157.1 378.178 157.277C377.941 157.447 377.755 157.671 377.619 157.95C377.484 158.221 377.416 158.517 377.416 158.839C377.416 159.321 377.56 159.732 377.848 160.07C378.144 160.4 378.533 160.565 379.016 160.565C379.303 160.565 379.57 160.493 379.815 160.35C380.069 160.197 380.272 159.986 380.425 159.715C380.586 159.436 380.666 159.101 380.666 158.712V157.798C380.438 157.552 380.188 157.362 379.917 157.227C379.655 157.083 379.367 157.011 379.054 157.011ZM389.921 155.589V159.41C389.921 159.977 389.794 160.468 389.54 160.883C389.286 161.289 388.939 161.602 388.499 161.822C388.067 162.042 387.576 162.152 387.026 162.152C386.468 162.152 385.968 162.042 385.528 161.822C385.097 161.602 384.754 161.289 384.5 160.883C384.255 160.468 384.132 159.977 384.132 159.41V155.589H385.757L385.77 159.118C385.77 159.618 385.884 159.99 386.112 160.235C386.341 160.481 386.646 160.604 387.026 160.604C387.399 160.604 387.699 160.481 387.928 160.235C388.165 159.99 388.283 159.618 388.283 159.118V155.589H389.921ZM393.107 152.25C393.412 152.25 393.674 152.36 393.895 152.58C394.115 152.792 394.225 153.046 394.225 153.342C394.225 153.63 394.115 153.883 393.895 154.104C393.674 154.324 393.412 154.434 393.107 154.434C392.803 154.434 392.54 154.324 392.32 154.104C392.109 153.883 392.003 153.63 392.003 153.342C392.003 153.046 392.109 152.792 392.32 152.58C392.54 152.36 392.803 152.25 393.107 152.25ZM394.047 155.589V162H392.435V156.96H391.406V155.589H394.047ZM400.115 157.392C399.844 157.239 399.561 157.163 399.265 157.163C398.892 157.163 398.583 157.286 398.338 157.531C398.092 157.768 397.877 158.064 397.69 158.42V162H396.078V155.589H397.69V156.795C397.91 156.414 398.169 156.097 398.465 155.843C398.77 155.589 399.112 155.462 399.493 155.462C399.722 155.462 399.929 155.5 400.115 155.576V157.392ZM404.165 155.424C404.791 155.424 405.329 155.559 405.777 155.83C406.234 156.101 406.581 156.478 406.818 156.96C407.064 157.434 407.187 157.984 407.187 158.61V159.296H402.54C402.625 159.728 402.836 160.075 403.175 160.337C403.513 160.599 403.928 160.73 404.419 160.73C404.884 160.73 405.308 160.637 405.688 160.451C406.069 160.265 406.374 160.075 406.603 159.88L406.59 161.378C406.387 161.556 406.082 161.738 405.676 161.924C405.278 162.102 404.838 162.19 404.355 162.19C403.721 162.19 403.141 162.047 402.616 161.759C402.1 161.471 401.685 161.077 401.372 160.578C401.067 160.079 400.915 159.507 400.915 158.864C400.915 158.238 401.055 157.667 401.334 157.15C401.613 156.634 401.998 156.219 402.489 155.906C402.98 155.585 403.539 155.424 404.165 155.424ZM404.127 156.833C403.729 156.833 403.395 156.956 403.124 157.201C402.853 157.447 402.667 157.777 402.565 158.191H405.638C405.604 157.734 405.435 157.396 405.13 157.176C404.825 156.947 404.491 156.833 404.127 156.833ZM414.753 152.859V162H413.141V160.921C412.954 161.268 412.684 161.568 412.328 161.822C411.973 162.068 411.558 162.19 411.084 162.19C410.568 162.19 410.09 162.059 409.649 161.797C409.218 161.535 408.871 161.154 408.608 160.654C408.346 160.155 408.215 159.55 408.215 158.839C408.215 158.128 408.346 157.519 408.608 157.011C408.879 156.503 409.239 156.114 409.688 155.843C410.145 155.563 410.648 155.424 411.198 155.424C411.545 155.424 411.896 155.504 412.252 155.665C412.607 155.826 412.904 156.042 413.141 156.312V152.859H414.753ZM411.528 157.011C411.19 157.011 410.898 157.1 410.652 157.277C410.415 157.447 410.229 157.671 410.094 157.95C409.958 158.221 409.891 158.517 409.891 158.839C409.891 159.321 410.035 159.732 410.322 160.07C410.618 160.409 411.008 160.578 411.49 160.578C411.778 160.578 412.045 160.502 412.29 160.35C412.544 160.197 412.747 159.986 412.899 159.715C413.06 159.436 413.141 159.101 413.141 158.712V157.798C412.912 157.552 412.662 157.362 412.392 157.227C412.129 157.083 411.841 157.011 411.528 157.011Z",fill:"#615BC2"}),c.createElement("rect",{x:287.5,y:146.5,width:136,height:23,rx:3.5,stroke:"#BEBBF3"}),c.createElement("rect",{x:142.5,y:146.5,width:88,height:23,rx:3.5,fill:"#FFF4E5"}),c.createElement("path",{d:"M154.692 153.291C155.589 153.291 156.376 153.473 157.053 153.837C157.73 154.201 158.255 154.709 158.627 155.36C159.008 156.012 159.199 156.778 159.199 157.658C159.199 158.496 159.021 159.258 158.666 159.943C158.31 160.62 157.802 161.158 157.142 161.556C156.482 161.953 155.695 162.152 154.781 162.152C154.197 162.152 153.613 162.123 153.029 162.063C152.453 162.004 151.907 161.924 151.391 161.822V153.621C151.916 153.536 152.453 153.46 153.003 153.393C153.554 153.325 154.116 153.291 154.692 153.291ZM154.73 154.941C154.476 154.941 154.209 154.954 153.93 154.979C153.651 155.005 153.393 155.039 153.156 155.081V160.362C153.41 160.413 153.672 160.451 153.943 160.477C154.222 160.493 154.485 160.502 154.73 160.502C155.289 160.502 155.767 160.383 156.165 160.146C156.562 159.901 156.867 159.567 157.079 159.144C157.29 158.72 157.396 158.246 157.396 157.722C157.396 157.18 157.29 156.702 157.079 156.287C156.867 155.872 156.562 155.547 156.165 155.31C155.767 155.064 155.289 154.941 154.73 154.941ZM164.797 157.392C164.527 157.239 164.243 157.163 163.947 157.163C163.574 157.163 163.265 157.286 163.02 157.531C162.775 157.768 162.559 158.064 162.373 158.42V162H160.76V155.589H162.373V156.795C162.593 156.414 162.851 156.097 163.147 155.843C163.452 155.589 163.794 155.462 164.175 155.462C164.404 155.462 164.611 155.5 164.797 155.576V157.392ZM168.581 155.424C168.928 155.424 169.279 155.504 169.634 155.665C169.99 155.826 170.286 156.042 170.523 156.312V155.589H172.135V162H170.523V160.921C170.337 161.268 170.066 161.568 169.71 161.822C169.355 162.068 168.94 162.19 168.466 162.19C167.95 162.19 167.472 162.059 167.032 161.797C166.6 161.535 166.253 161.154 165.991 160.654C165.728 160.155 165.597 159.55 165.597 158.839C165.597 158.128 165.728 157.519 165.991 157.011C166.262 156.503 166.621 156.114 167.07 155.843C167.527 155.563 168.03 155.424 168.581 155.424ZM168.911 156.998C168.572 156.998 168.28 157.087 168.035 157.265C167.798 157.434 167.611 157.658 167.476 157.938C167.341 158.217 167.273 158.517 167.273 158.839C167.273 159.321 167.417 159.732 167.705 160.07C168.001 160.409 168.39 160.578 168.873 160.578C169.16 160.578 169.427 160.502 169.672 160.35C169.926 160.197 170.129 159.986 170.282 159.715C170.443 159.436 170.523 159.101 170.523 158.712V157.798C170.294 157.552 170.045 157.358 169.774 157.214C169.512 157.07 169.224 156.998 168.911 156.998ZM177.874 155.589V156.935H176.21V162H174.598V156.935H173.621V155.589H174.598V155.018C174.598 154.527 174.7 154.108 174.903 153.761C175.114 153.405 175.389 153.134 175.728 152.948C176.067 152.762 176.439 152.669 176.845 152.669C177.116 152.669 177.353 152.699 177.556 152.758C177.759 152.817 177.937 152.897 178.089 152.999V154.345C177.81 154.175 177.488 154.095 177.125 154.104C176.871 154.112 176.655 154.197 176.477 154.357C176.299 154.51 176.21 154.764 176.21 155.119V155.589H177.874ZM181.53 153.723V155.589H183.307V156.935H181.53V159.702C181.53 159.99 181.593 160.218 181.72 160.388C181.856 160.549 182.055 160.629 182.317 160.629C182.545 160.629 182.74 160.604 182.901 160.553C183.07 160.502 183.227 160.43 183.371 160.337V161.619C183.21 161.78 183.007 161.915 182.761 162.025C182.524 162.135 182.224 162.19 181.86 162.19C181.284 162.19 180.815 162.008 180.451 161.645C180.095 161.272 179.917 160.764 179.917 160.121V156.935H178.762V156.109C179.168 155.965 179.541 155.695 179.879 155.297C180.226 154.899 180.501 154.374 180.705 153.723H181.53ZM190.442 155.589V156.401C190.637 156.156 190.869 155.932 191.14 155.729C191.419 155.525 191.775 155.424 192.207 155.424C192.655 155.424 193.061 155.53 193.425 155.741C193.789 155.944 194.073 156.253 194.276 156.668C194.53 156.321 194.826 156.029 195.165 155.792C195.503 155.547 195.897 155.424 196.345 155.424C196.777 155.424 197.17 155.525 197.526 155.729C197.881 155.923 198.165 156.215 198.376 156.604C198.597 156.994 198.707 157.48 198.707 158.064V162H197.094L197.082 158.28C197.082 157.849 196.967 157.527 196.739 157.315C196.519 157.104 196.227 156.998 195.863 156.998C195.583 156.998 195.342 157.087 195.139 157.265C194.936 157.434 194.746 157.637 194.568 157.874V162H192.956L192.943 158.28C192.943 157.849 192.829 157.527 192.6 157.315C192.38 157.104 192.092 156.998 191.737 156.998C191.466 156.998 191.225 157.083 191.013 157.252C190.802 157.413 190.611 157.603 190.442 157.823V162H188.83V155.589H190.442ZM203.531 155.424C204.157 155.424 204.728 155.576 205.245 155.881C205.761 156.177 206.176 156.583 206.489 157.1C206.81 157.607 206.971 158.179 206.971 158.813C206.971 159.448 206.81 160.02 206.489 160.527C206.176 161.035 205.761 161.441 205.245 161.746C204.728 162.042 204.157 162.19 203.531 162.19C202.913 162.19 202.342 162.042 201.817 161.746C201.301 161.441 200.886 161.035 200.573 160.527C200.26 160.02 200.103 159.448 200.103 158.813C200.103 158.179 200.26 157.607 200.573 157.1C200.886 156.583 201.301 156.177 201.817 155.881C202.342 155.576 202.913 155.424 203.531 155.424ZM203.531 156.985C203.226 156.985 202.943 157.057 202.68 157.201C202.418 157.345 202.206 157.552 202.045 157.823C201.893 158.094 201.817 158.424 201.817 158.813C201.817 159.203 201.893 159.533 202.045 159.804C202.206 160.075 202.418 160.282 202.68 160.426C202.943 160.561 203.226 160.629 203.531 160.629C203.835 160.629 204.119 160.561 204.381 160.426C204.644 160.282 204.855 160.075 205.016 159.804C205.177 159.533 205.257 159.203 205.257 158.813C205.257 158.424 205.177 158.094 205.016 157.823C204.855 157.552 204.644 157.345 204.381 157.201C204.119 157.057 203.835 156.985 203.531 156.985ZM214.588 152.859V162H212.976V160.921C212.79 161.268 212.519 161.568 212.164 161.822C211.808 162.068 211.393 162.19 210.919 162.19C210.403 162.19 209.925 162.059 209.485 161.797C209.053 161.535 208.706 161.154 208.444 160.654C208.181 160.155 208.05 159.55 208.05 158.839C208.05 158.128 208.181 157.519 208.444 157.011C208.715 156.503 209.074 156.114 209.523 155.843C209.98 155.563 210.484 155.424 211.034 155.424C211.381 155.424 211.732 155.504 212.087 155.665C212.443 155.826 212.739 156.042 212.976 156.312V152.859H214.588ZM211.364 157.011C211.025 157.011 210.733 157.1 210.488 157.277C210.251 157.447 210.065 157.671 209.929 157.95C209.794 158.221 209.726 158.517 209.726 158.839C209.726 159.321 209.87 159.732 210.158 160.07C210.454 160.409 210.843 160.578 211.326 160.578C211.613 160.578 211.88 160.502 212.125 160.35C212.379 160.197 212.583 159.986 212.735 159.715C212.896 159.436 212.976 159.101 212.976 158.712V157.798C212.748 157.552 212.498 157.362 212.227 157.227C211.965 157.083 211.677 157.011 211.364 157.011ZM219.375 155.424C220.001 155.424 220.538 155.559 220.987 155.83C221.444 156.101 221.791 156.478 222.028 156.96C222.273 157.434 222.396 157.984 222.396 158.61V159.296H217.75C217.834 159.728 218.046 160.075 218.384 160.337C218.723 160.599 219.138 160.73 219.628 160.73C220.094 160.73 220.517 160.637 220.898 160.451C221.279 160.265 221.583 160.075 221.812 159.88L221.799 161.378C221.596 161.556 221.292 161.738 220.885 161.924C220.487 162.102 220.047 162.19 219.565 162.19C218.93 162.19 218.35 162.047 217.826 161.759C217.309 161.471 216.895 161.077 216.582 160.578C216.277 160.079 216.125 159.507 216.125 158.864C216.125 158.238 216.264 157.667 216.543 157.15C216.823 156.634 217.208 156.219 217.699 155.906C218.19 155.585 218.748 155.424 219.375 155.424ZM219.336 156.833C218.939 156.833 218.604 156.956 218.333 157.201C218.063 157.447 217.876 157.777 217.775 158.191H220.847C220.813 157.734 220.644 157.396 220.339 157.176C220.035 156.947 219.7 156.833 219.336 156.833Z",fill:"#B35300"}),c.createElement("rect",{x:142.5,y:146.5,width:88,height:23,rx:3.5,stroke:"#FFC46F"}),c.createElement("path",{d:"M243 157.25C242.586 157.25 242.25 157.586 242.25 158C242.25 158.414 242.586 158.75 243 158.75V157.25ZM275.53 158.53C275.823 158.237 275.823 157.763 275.53 157.47L270.757 152.697C270.464 152.404 269.99 152.404 269.697 152.697C269.404 152.99 269.404 153.464 269.697 153.757L273.939 158L269.697 162.243C269.404 162.536 269.404 163.01 269.697 163.303C269.99 163.596 270.464 163.596 270.757 163.303L275.53 158.53ZM243 158.75H275V157.25H243V158.75Z",fill:"#202021"}),c.createElement("path",{d:"M110 157.25C109.586 157.25 109.25 157.586 109.25 158C109.25 158.414 109.586 158.75 110 158.75V157.25ZM130.53 158.53C130.823 158.237 130.823 157.763 130.53 157.47L125.757 152.697C125.464 152.404 124.99 152.404 124.697 152.697C124.404 152.99 124.404 153.464 124.697 153.757L128.939 158L124.697 162.243C124.404 162.536 124.404 163.01 124.697 163.303C124.99 163.596 125.464 163.596 125.757 163.303L130.53 158.53ZM110 158.75H130V157.25H110V158.75Z",fill:"#202021"}),c.createElement("path",{d:"M636 82.25C635.586 82.25 635.25 82.5858 635.25 83C635.25 83.4142 635.586 83.75 636 83.75V82.25ZM668.53 83.5303C668.823 83.2374 668.823 82.7626 668.53 82.4697L663.757 77.6967C663.464 77.4038 662.99 77.4038 662.697 77.6967C662.404 77.9896 662.404 78.4645 662.697 78.7574L666.939 83L662.697 87.2426C662.404 87.5355 662.404 88.0104 662.697 88.3033C662.99 88.5962 663.464 88.5962 663.757 88.3033L668.53 83.5303ZM636 83.75H668V82.25H636V83.75Z",fill:"#202021"}),c.createElement("path",{d:"M463.965 157.25C463.551 157.25 463.215 157.586 463.215 158C463.215 158.414 463.551 158.75 463.965 158.75L463.965 157.25ZM503.531 158.53C503.824 158.237 503.824 157.763 503.531 157.47L498.758 152.697C498.466 152.404 497.991 152.404 497.698 152.697C497.405 152.99 497.405 153.465 497.698 153.757L501.94 158L497.698 162.243C497.405 162.536 497.405 163.01 497.698 163.303C497.991 163.596 498.465 163.596 498.758 163.303L503.531 158.53ZM463.965 158.75L503.001 158.75L503.001 157.25L463.965 157.25L463.965 158.75Z",fill:"#202021"}),c.createElement("path",{d:"M635 229.25C634.586 229.25 634.25 229.586 634.25 230C634.25 230.414 634.586 230.75 635 230.75L635 229.25ZM667.53 230.53C667.823 230.237 667.823 229.763 667.53 229.47L662.757 224.697C662.464 224.404 661.99 224.404 661.697 224.697C661.404 224.99 661.404 225.464 661.697 225.757L665.939 230L661.697 234.243C661.404 234.536 661.404 235.01 661.697 235.303C661.99 235.596 662.464 235.596 662.757 235.303L667.53 230.53ZM635 230.75L667 230.75L667 229.25L635 229.25L635 230.75Z",fill:"#202021"}),c.createElement("path",{d:"M439 158H448.065",stroke:"#202021",strokeWidth:1.5,strokeLinecap:"round"}),c.createElement("path",{d:"M480.502 226.5L481.145 226.114L480.502 226.5ZM503.486 231.928C503.802 232.196 503.842 232.669 503.574 232.985L499.214 238.138C498.946 238.454 498.473 238.493 498.157 238.226C497.841 237.958 497.801 237.485 498.069 237.169L501.944 232.589L497.364 228.713C497.048 228.445 497.009 227.972 497.276 227.656C497.544 227.34 498.017 227.3 498.333 227.568L503.486 231.928ZM461.414 157.302C463.213 157.302 464.706 158.478 465.938 160.211C467.181 161.956 468.27 164.413 469.244 167.316C471.196 173.132 472.753 180.944 474.103 188.972C474.779 192.992 475.404 197.076 476.001 201.004C476.598 204.934 477.167 208.705 477.731 212.106C478.295 215.508 478.851 218.526 479.423 220.953C480.001 223.406 480.576 225.166 481.145 226.114L479.859 226.886C479.156 225.715 478.54 223.746 477.963 221.297C477.38 218.821 476.816 215.763 476.251 212.351C475.685 208.937 475.115 205.155 474.518 201.23C473.921 197.301 473.297 193.228 472.624 189.221C471.275 181.197 469.733 173.487 467.822 167.794C466.865 164.942 465.832 162.648 464.716 161.081C463.591 159.5 462.49 158.802 461.414 158.802L461.414 157.302ZM481.145 226.114C482.151 227.791 483.948 229.021 486.19 229.904C488.425 230.785 491.025 231.29 493.522 231.567C496.013 231.844 498.371 231.891 500.109 231.868C500.976 231.856 501.687 231.827 502.18 231.801C502.426 231.788 502.618 231.776 502.747 231.767C502.811 231.763 502.86 231.759 502.893 231.757C502.909 231.755 502.921 231.755 502.929 231.754C502.933 231.754 502.935 231.753 502.937 231.753C502.938 231.753 502.939 231.753 502.939 231.753C502.939 231.753 502.939 231.753 502.939 231.753C502.939 231.753 502.939 231.753 503.001 232.5C503.064 233.248 503.064 233.248 503.063 233.248C503.063 233.248 503.063 233.248 503.062 233.248C503.062 233.248 503.061 233.248 503.059 233.248C503.057 233.248 503.053 233.249 503.048 233.249C503.039 233.25 503.025 233.251 503.007 233.252C502.971 233.255 502.918 233.259 502.85 233.264C502.713 233.273 502.513 233.286 502.259 233.299C501.749 233.326 501.019 233.356 500.129 233.368C498.35 233.391 495.927 233.344 493.356 233.058C490.79 232.773 488.046 232.247 485.64 231.3C483.242 230.355 481.102 228.96 479.859 226.886L481.145 226.114Z",fill:"#202021"}),c.createElement("path",{d:"M480.502 89.6998L481.145 90.0855L480.502 89.6998ZM503.486 84.272C503.802 84.0045 503.842 83.5312 503.574 83.215L499.214 78.0622C498.946 77.746 498.473 77.7066 498.157 77.9741C497.841 78.2417 497.801 78.7149 498.069 79.0311L501.944 83.6114L497.364 87.4871C497.048 87.7547 497.009 88.2279 497.276 88.5441C497.544 88.8603 498.017 88.8998 498.333 88.6322L503.486 84.272ZM461.414 158.898C463.213 158.898 464.706 157.721 465.938 155.989C467.181 154.244 468.27 151.787 469.244 148.884C471.196 143.068 472.753 135.256 474.103 127.228C474.779 123.208 475.404 119.124 476.001 115.196C476.598 111.266 477.167 107.495 477.731 104.094C478.295 100.692 478.851 97.6735 479.423 95.2473C480.001 92.7936 480.576 91.0343 481.145 90.0855L479.859 89.314C479.156 90.4849 478.54 92.4544 477.963 94.9032C477.38 97.3794 476.816 100.437 476.251 103.849C475.685 107.263 475.115 111.045 474.518 114.97C473.921 118.898 473.297 122.972 472.624 126.979C471.275 135.003 469.733 142.713 467.822 148.406C466.865 151.258 465.832 153.552 464.716 155.119C463.591 156.7 462.49 157.398 461.414 157.398L461.414 158.898ZM481.145 90.0855C482.151 88.4091 483.948 87.1793 486.19 86.2959C488.425 85.4153 491.025 84.9099 493.522 84.6325C496.013 84.3556 498.371 84.3091 500.109 84.3323C500.976 84.3438 501.687 84.3727 502.18 84.3987C502.426 84.4116 502.618 84.4238 502.747 84.4327C502.811 84.4372 502.86 84.4408 502.893 84.4432C502.909 84.4445 502.921 84.4454 502.929 84.4461C502.933 84.4464 502.935 84.4466 502.937 84.4467C502.938 84.4468 502.939 84.4469 502.939 84.4469C502.939 84.4469 502.939 84.4469 502.939 84.4469C502.939 84.4469 502.939 84.4469 503.001 83.6995C503.064 82.9521 503.064 82.9521 503.063 82.952C503.063 82.952 503.063 82.952 503.062 82.952C503.062 82.9519 503.061 82.9518 503.059 82.9517C503.057 82.9515 503.053 82.9512 503.048 82.9508C503.039 82.9501 503.025 82.949 503.007 82.9476C502.971 82.9448 502.918 82.941 502.85 82.9363C502.713 82.9268 502.513 82.9141 502.259 82.9007C501.749 82.8739 501.019 82.8443 500.129 82.8324C498.35 82.8087 495.927 82.856 493.356 83.1417C490.79 83.4268 488.046 83.9527 485.64 84.9003C483.242 85.8451 481.102 87.2403 479.859 89.314L481.145 90.0855Z",fill:"#202021"}),c.createElement("path",{d:"M47.6328 143.635C48.2982 143.635 48.8405 143.726 49.2598 143.908C49.6882 144.09 50.0618 144.327 50.3809 144.619V145.973C50.1803 145.827 49.9525 145.667 49.6973 145.494C49.4512 145.321 49.1595 145.171 48.8223 145.043C48.4941 144.906 48.0977 144.838 47.6328 144.838C46.9492 144.838 46.3385 144.993 45.8008 145.303C45.263 145.613 44.8392 146.041 44.5293 146.588C44.2194 147.126 44.0645 147.736 44.0645 148.42C44.0645 149.104 44.2194 149.714 44.5293 150.252C44.8392 150.79 45.263 151.218 45.8008 151.537C46.3385 151.847 46.9492 152.002 47.6328 152.002C48.3346 152.002 48.9316 151.888 49.4238 151.66C49.9251 151.423 50.3353 151.182 50.6543 150.936V152.166C50.3353 152.449 49.916 152.695 49.3965 152.904C48.8861 153.105 48.2982 153.205 47.6328 153.205C46.9401 153.205 46.3021 153.082 45.7188 152.836C45.1354 152.581 44.625 152.234 44.1875 151.797C43.75 151.359 43.4082 150.854 43.1621 150.279C42.9251 149.696 42.8066 149.076 42.8066 148.42C42.8066 147.764 42.9251 147.148 43.1621 146.574C43.4082 145.991 43.75 145.48 44.1875 145.043C44.625 144.605 45.1354 144.264 45.7188 144.018C46.3021 143.762 46.9401 143.635 47.6328 143.635ZM55.8496 146.027C56.3145 146.027 56.7383 146.132 57.1211 146.342C57.5039 146.542 57.8092 146.852 58.0371 147.271C58.265 147.682 58.3789 148.201 58.3789 148.83V153H57.2578L57.2441 148.939C57.2441 148.347 57.112 147.896 56.8477 147.586C56.5924 147.276 56.196 147.121 55.6582 147.121C55.2936 147.121 54.929 147.258 54.5645 147.531C54.209 147.796 53.8945 148.105 53.6211 148.461V153H52.5V143.156H53.6211V147.244C53.7669 147.062 53.9538 146.88 54.1816 146.697C54.4095 146.506 54.6647 146.346 54.9473 146.219C55.2389 146.091 55.5397 146.027 55.8496 146.027ZM63.3145 146.027C63.7064 146.027 64.1029 146.123 64.5039 146.314C64.9141 146.497 65.265 146.752 65.5566 147.08V146.164H66.6777V153H65.5566V151.838C65.3197 152.202 64.9961 152.521 64.5859 152.795C64.1849 153.068 63.7246 153.205 63.2051 153.205C62.6217 153.205 62.0885 153.059 61.6055 152.768C61.1224 152.467 60.735 152.052 60.4434 151.523C60.1608 150.995 60.0195 150.384 60.0195 149.691C60.0195 148.935 60.1608 148.283 60.4434 147.736C60.735 147.189 61.1315 146.77 61.6328 146.479C62.1341 146.178 62.6947 146.027 63.3145 146.027ZM63.5195 147.121C63.0273 147.121 62.6081 147.244 62.2617 147.49C61.9154 147.736 61.6465 148.055 61.4551 148.447C61.2728 148.83 61.1816 149.245 61.1816 149.691C61.1816 150.129 61.2728 150.535 61.4551 150.908C61.6374 151.273 61.8926 151.564 62.2207 151.783C62.5579 152.002 62.9453 152.111 63.3828 152.111C63.8021 152.111 64.1758 152.002 64.5039 151.783C64.832 151.564 65.0918 151.264 65.2832 150.881C65.4746 150.489 65.5658 150.051 65.5566 149.568L65.543 148.256C65.2604 147.9 64.9551 147.622 64.627 147.422C64.3079 147.221 63.9388 147.121 63.5195 147.121ZM70.123 146.164V147.244C70.2689 147.062 70.4557 146.88 70.6836 146.697C70.9115 146.506 71.1667 146.346 71.4492 146.219C71.7409 146.091 72.0417 146.027 72.3516 146.027C72.8164 146.027 73.2402 146.132 73.623 146.342C74.0059 146.542 74.3112 146.852 74.5391 147.271C74.7669 147.682 74.8809 148.201 74.8809 148.83V153H73.7598L73.7461 148.939C73.7461 148.347 73.6139 147.896 73.3496 147.586C73.0944 147.276 72.6979 147.121 72.1602 147.121C71.7956 147.121 71.431 147.258 71.0664 147.531C70.7109 147.796 70.3965 148.105 70.123 148.461V153H69.002V146.164H70.123ZM79.8164 146.027C80.2083 146.027 80.6048 146.123 81.0059 146.314C81.416 146.497 81.7669 146.752 82.0586 147.08V146.164H83.1797V152.863C83.1797 153.674 83.0156 154.349 82.6875 154.887C82.3594 155.424 81.9219 155.826 81.375 156.09C80.8281 156.354 80.2311 156.486 79.584 156.486C79.1647 156.486 78.8047 156.436 78.5039 156.336C78.2122 156.245 77.9616 156.126 77.752 155.98C77.5423 155.844 77.3509 155.712 77.1777 155.584V154.381C77.3145 154.481 77.4922 154.609 77.7109 154.764C77.9388 154.928 78.2077 155.074 78.5176 155.201C78.8366 155.329 79.1921 155.393 79.584 155.393C80.0306 155.393 80.4408 155.311 80.8145 155.146C81.1882 154.982 81.4889 154.741 81.7168 154.422C81.9447 154.103 82.0586 153.72 82.0586 153.273V151.838C81.8216 152.202 81.498 152.521 81.0879 152.795C80.6868 153.068 80.2266 153.205 79.707 153.205C79.1237 153.205 78.5905 153.059 78.1074 152.768C77.6243 152.467 77.237 152.052 76.9453 151.523C76.6628 150.995 76.5215 150.384 76.5215 149.691C76.5215 148.935 76.6628 148.283 76.9453 147.736C77.237 147.189 77.6335 146.77 78.1348 146.479C78.6361 146.178 79.1966 146.027 79.8164 146.027ZM80.0215 147.135C79.5293 147.135 79.11 147.258 78.7637 147.504C78.4173 147.741 78.1484 148.055 77.957 148.447C77.7747 148.83 77.6836 149.245 77.6836 149.691C77.6836 150.129 77.7747 150.53 77.957 150.895C78.1393 151.259 78.3945 151.551 78.7227 151.77C79.0599 151.988 79.4473 152.098 79.8848 152.098C80.304 152.098 80.6777 151.988 81.0059 151.77C81.334 151.551 81.5938 151.25 81.7852 150.867C81.9766 150.484 82.0677 150.051 82.0586 149.568L82.0449 148.256C81.7624 147.9 81.457 147.627 81.1289 147.436C80.8099 147.235 80.4408 147.135 80.0215 147.135ZM88.3203 146.027C89.0221 146.027 89.6055 146.173 90.0703 146.465C90.5352 146.757 90.8815 147.153 91.1094 147.654C91.3464 148.156 91.4648 148.721 91.4648 149.35V150.02H86.2148C86.2695 150.402 86.4017 150.753 86.6113 151.072C86.821 151.391 87.0944 151.646 87.4316 151.838C87.7689 152.02 88.1562 152.111 88.5938 152.111C89.0859 152.111 89.5462 151.988 89.9746 151.742C90.403 151.487 90.763 151.209 91.0547 150.908L91.041 152.125C90.9134 152.28 90.722 152.444 90.4668 152.617C90.2207 152.781 89.9336 152.918 89.6055 153.027C89.2865 153.146 88.9492 153.205 88.5938 153.205C87.901 153.205 87.2858 153.041 86.748 152.713C86.2103 152.385 85.7865 151.952 85.4766 151.414C85.1758 150.867 85.0254 150.27 85.0254 149.623C85.0254 148.976 85.1667 148.379 85.4492 147.832C85.7318 147.285 86.1191 146.848 86.6113 146.52C87.1126 146.191 87.6823 146.027 88.3203 146.027ZM88.3203 147.121C87.7552 147.121 87.2904 147.312 86.9258 147.695C86.5612 148.069 86.3333 148.525 86.2422 149.062H90.3574C90.3118 148.616 90.1842 148.251 89.9746 147.969C89.7741 147.686 89.528 147.477 89.2363 147.34C88.9447 147.194 88.6393 147.121 88.3203 147.121ZM95.3477 146.027C95.7487 146.027 96.1224 146.087 96.4688 146.205C96.8151 146.314 97.0658 146.428 97.2207 146.547V147.75C97.0293 147.604 96.7695 147.463 96.4414 147.326C96.1133 147.189 95.776 147.121 95.4297 147.121C95.0013 147.121 94.6777 147.221 94.459 147.422C94.2493 147.622 94.1445 147.832 94.1445 148.051C94.1445 148.224 94.2038 148.402 94.3223 148.584C94.4499 148.757 94.6686 148.898 94.9785 149.008L96.127 149.418C96.5736 149.573 96.9062 149.796 97.125 150.088C97.3438 150.38 97.4531 150.721 97.4531 151.113C97.4531 151.496 97.3438 151.847 97.125 152.166C96.9154 152.485 96.6191 152.74 96.2363 152.932C95.8626 153.114 95.4297 153.205 94.9375 153.205C94.6732 153.205 94.3952 153.169 94.1035 153.096C93.821 153.032 93.5658 152.954 93.3379 152.863C93.11 152.763 92.9414 152.676 92.832 152.604V151.4C92.9596 151.492 93.1374 151.596 93.3652 151.715C93.6022 151.824 93.8529 151.92 94.1172 152.002C94.3815 152.075 94.6276 152.111 94.8555 152.111C95.2839 152.111 95.6211 152.016 95.8672 151.824C96.1224 151.633 96.25 151.396 96.25 151.113C96.25 150.895 96.1634 150.721 95.9902 150.594C95.8262 150.466 95.5846 150.343 95.2656 150.225L94.2539 149.855C93.7253 149.655 93.3743 149.404 93.2012 149.104C93.028 148.794 92.9414 148.443 92.9414 148.051C92.9414 147.467 93.1602 146.984 93.5977 146.602C94.0352 146.219 94.6185 146.027 95.3477 146.027ZM46.0879 163.156V173H44.9668V171.838C44.7298 172.202 44.4062 172.521 43.9961 172.795C43.5951 173.068 43.1348 173.205 42.6152 173.205C42.0319 173.205 41.4987 173.059 41.0156 172.768C40.5326 172.467 40.1452 172.052 39.8535 171.523C39.571 170.995 39.4297 170.384 39.4297 169.691C39.4297 168.935 39.571 168.283 39.8535 167.736C40.1452 167.189 40.5417 166.77 41.043 166.479C41.5443 166.178 42.1048 166.027 42.7246 166.027C43.1165 166.027 43.513 166.123 43.9141 166.314C44.3242 166.497 44.6751 166.752 44.9668 167.08V163.156H46.0879ZM42.9297 167.148C42.4375 167.148 42.0182 167.271 41.6719 167.518C41.3255 167.755 41.0566 168.064 40.8652 168.447C40.6829 168.83 40.5918 169.245 40.5918 169.691C40.5918 170.129 40.6829 170.535 40.8652 170.908C41.0475 171.273 41.3027 171.564 41.6309 171.783C41.9681 172.002 42.3555 172.111 42.793 172.111C43.2122 172.111 43.5859 172.002 43.9141 171.783C44.2422 171.564 44.502 171.264 44.6934 170.881C44.8848 170.489 44.9759 170.051 44.9668 169.568L44.9531 168.256C44.6706 167.9 44.3652 167.627 44.0371 167.436C43.7181 167.244 43.349 167.148 42.9297 167.148ZM51.2285 166.027C51.9303 166.027 52.5137 166.173 52.9785 166.465C53.4434 166.757 53.7897 167.153 54.0176 167.654C54.2546 168.156 54.373 168.721 54.373 169.35V170.02H49.123C49.1777 170.402 49.3099 170.753 49.5195 171.072C49.7292 171.391 50.0026 171.646 50.3398 171.838C50.6771 172.02 51.0645 172.111 51.502 172.111C51.9941 172.111 52.4544 171.988 52.8828 171.742C53.3112 171.487 53.6712 171.209 53.9629 170.908L53.9492 172.125C53.8216 172.28 53.6302 172.444 53.375 172.617C53.1289 172.781 52.8418 172.918 52.5137 173.027C52.1947 173.146 51.8574 173.205 51.502 173.205C50.8092 173.205 50.194 173.041 49.6562 172.713C49.1185 172.385 48.6947 171.952 48.3848 171.414C48.084 170.867 47.9336 170.27 47.9336 169.623C47.9336 168.976 48.0749 168.379 48.3574 167.832C48.64 167.285 49.0273 166.848 49.5195 166.52C50.0208 166.191 50.5905 166.027 51.2285 166.027ZM51.2285 167.121C50.6634 167.121 50.1986 167.312 49.834 167.695C49.4694 168.069 49.2415 168.525 49.1504 169.062H53.2656C53.2201 168.616 53.0924 168.251 52.8828 167.969C52.6823 167.686 52.4362 167.477 52.1445 167.34C51.8529 167.194 51.5475 167.121 51.2285 167.121ZM58.1055 164.195V166.164H60.1016V167.217H58.1055V171.223C58.1055 171.505 58.1784 171.729 58.3242 171.893C58.4701 172.057 58.6934 172.139 58.9941 172.139C59.2676 172.139 59.4954 172.107 59.6777 172.043C59.86 171.97 60.0195 171.893 60.1562 171.811V172.727C59.974 172.872 59.778 172.986 59.5684 173.068C59.3678 173.16 59.0944 173.205 58.748 173.205C58.1647 173.205 57.7227 173.032 57.4219 172.686C57.1302 172.33 56.9844 171.861 56.9844 171.277V167.217H55.6719V166.889C56.1185 166.688 56.4922 166.36 56.793 165.904C57.0938 165.439 57.3581 164.87 57.5859 164.195H58.1055ZM64.9551 166.027C65.6569 166.027 66.2402 166.173 66.7051 166.465C67.1699 166.757 67.5163 167.153 67.7441 167.654C67.9811 168.156 68.0996 168.721 68.0996 169.35V170.02H62.8496C62.9043 170.402 63.0365 170.753 63.2461 171.072C63.4557 171.391 63.7292 171.646 64.0664 171.838C64.4036 172.02 64.791 172.111 65.2285 172.111C65.7207 172.111 66.181 171.988 66.6094 171.742C67.0378 171.487 67.3978 171.209 67.6895 170.908L67.6758 172.125C67.5482 172.28 67.3568 172.444 67.1016 172.617C66.8555 172.781 66.5684 172.918 66.2402 173.027C65.9212 173.146 65.584 173.205 65.2285 173.205C64.5358 173.205 63.9206 173.041 63.3828 172.713C62.8451 172.385 62.4212 171.952 62.1113 171.414C61.8105 170.867 61.6602 170.27 61.6602 169.623C61.6602 168.976 61.8014 168.379 62.084 167.832C62.3665 167.285 62.7539 166.848 63.2461 166.52C63.7474 166.191 64.3171 166.027 64.9551 166.027ZM64.9551 167.121C64.39 167.121 63.9251 167.312 63.5605 167.695C63.196 168.069 62.9681 168.525 62.877 169.062H66.9922C66.9466 168.616 66.819 168.251 66.6094 167.969C66.4089 167.686 66.1628 167.477 65.8711 167.34C65.5794 167.194 65.2741 167.121 64.9551 167.121ZM73.0352 166.027C73.5365 166.027 73.9694 166.109 74.334 166.273C74.6986 166.428 74.9492 166.57 75.0859 166.697V167.832C74.8307 167.641 74.5391 167.477 74.2109 167.34C73.8828 167.194 73.4909 167.121 73.0352 167.121C72.5521 167.121 72.1283 167.24 71.7637 167.477C71.3991 167.704 71.1165 168.01 70.916 168.393C70.7246 168.766 70.6289 169.176 70.6289 169.623C70.6289 170.061 70.7246 170.471 70.916 170.854C71.1165 171.227 71.3991 171.533 71.7637 171.77C72.1283 171.997 72.5521 172.111 73.0352 172.111C73.4909 172.111 73.8828 172.043 74.2109 171.906C74.5391 171.76 74.8307 171.592 75.0859 171.4V172.535C74.9492 172.672 74.6986 172.818 74.334 172.973C73.9694 173.128 73.5365 173.205 73.0352 173.205C72.3424 173.205 71.7272 173.041 71.1895 172.713C70.6517 172.385 70.2279 171.952 69.918 171.414C69.6172 170.867 69.4668 170.27 69.4668 169.623C69.4668 168.976 69.6172 168.379 69.918 167.832C70.2279 167.285 70.6517 166.848 71.1895 166.52C71.7272 166.191 72.3424 166.027 73.0352 166.027ZM78.8184 164.195V166.164H80.8145V167.217H78.8184V171.223C78.8184 171.505 78.8913 171.729 79.0371 171.893C79.1829 172.057 79.4062 172.139 79.707 172.139C79.9805 172.139 80.2083 172.107 80.3906 172.043C80.5729 171.97 80.7324 171.893 80.8691 171.811V172.727C80.6868 172.872 80.4909 172.986 80.2812 173.068C80.0807 173.16 79.8073 173.205 79.4609 173.205C78.8776 173.205 78.4355 173.032 78.1348 172.686C77.8431 172.33 77.6973 171.861 77.6973 171.277V167.217H76.3848V166.889C76.8314 166.688 77.2051 166.36 77.5059 165.904C77.8066 165.439 78.071 164.87 78.2988 164.195H78.8184ZM85.668 166.027C86.3698 166.027 86.9531 166.173 87.418 166.465C87.8828 166.757 88.2292 167.153 88.457 167.654C88.694 168.156 88.8125 168.721 88.8125 169.35V170.02H83.5625C83.6172 170.402 83.7493 170.753 83.959 171.072C84.1686 171.391 84.4421 171.646 84.7793 171.838C85.1165 172.02 85.5039 172.111 85.9414 172.111C86.4336 172.111 86.8939 171.988 87.3223 171.742C87.7507 171.487 88.1107 171.209 88.4023 170.908L88.3887 172.125C88.2611 172.28 88.0697 172.444 87.8145 172.617C87.5684 172.781 87.2812 172.918 86.9531 173.027C86.6341 173.146 86.2969 173.205 85.9414 173.205C85.2487 173.205 84.6335 173.041 84.0957 172.713C83.5579 172.385 83.1341 171.952 82.8242 171.414C82.5234 170.867 82.373 170.27 82.373 169.623C82.373 168.976 82.5143 168.379 82.7969 167.832C83.0794 167.285 83.4668 166.848 83.959 166.52C84.4603 166.191 85.0299 166.027 85.668 166.027ZM85.668 167.121C85.1029 167.121 84.638 167.312 84.2734 167.695C83.9089 168.069 83.681 168.525 83.5898 169.062H87.7051C87.6595 168.616 87.5319 168.251 87.3223 167.969C87.1217 167.686 86.8757 167.477 86.584 167.34C86.2923 167.194 85.987 167.121 85.668 167.121ZM96.8379 163.156V173H95.7168V171.838C95.4798 172.202 95.1562 172.521 94.7461 172.795C94.3451 173.068 93.8848 173.205 93.3652 173.205C92.7819 173.205 92.2487 173.059 91.7656 172.768C91.2826 172.467 90.8952 172.052 90.6035 171.523C90.321 170.995 90.1797 170.384 90.1797 169.691C90.1797 168.935 90.321 168.283 90.6035 167.736C90.8952 167.189 91.2917 166.77 91.793 166.479C92.2943 166.178 92.8548 166.027 93.4746 166.027C93.8665 166.027 94.263 166.123 94.6641 166.314C95.0742 166.497 95.4251 166.752 95.7168 167.08V163.156H96.8379ZM93.6797 167.148C93.1875 167.148 92.7682 167.271 92.4219 167.518C92.0755 167.755 91.8066 168.064 91.6152 168.447C91.4329 168.83 91.3418 169.245 91.3418 169.691C91.3418 170.129 91.4329 170.535 91.6152 170.908C91.7975 171.273 92.0527 171.564 92.3809 171.783C92.7181 172.002 93.1055 172.111 93.543 172.111C93.9622 172.111 94.3359 172.002 94.6641 171.783C94.9922 171.564 95.252 171.264 95.4434 170.881C95.6348 170.489 95.7259 170.051 95.7168 169.568L95.7031 168.256C95.4206 167.9 95.1152 167.627 94.7871 167.436C94.4681 167.244 94.099 167.148 93.6797 167.148Z",fill:"#202021"}),c.createElement("path",{d:"M383.299 31.125V35.8945C383.299 36.5742 383.154 37.1602 382.865 37.6523C382.584 38.1367 382.201 38.5078 381.717 38.7656C381.232 39.0234 380.682 39.1523 380.064 39.1523C379.455 39.1523 378.904 39.0234 378.412 38.7656C377.928 38.5078 377.541 38.1367 377.252 37.6523C376.971 37.1602 376.83 36.5742 376.83 35.8945V31.125H377.885V35.8594C377.885 36.3906 377.982 36.8203 378.178 37.1484C378.381 37.4766 378.646 37.7148 378.975 37.8633C379.311 38.0039 379.674 38.0742 380.064 38.0742C380.455 38.0664 380.814 37.9922 381.143 37.8516C381.479 37.7031 381.744 37.4688 381.939 37.1484C382.143 36.8203 382.244 36.3906 382.244 35.8594V31.125H383.299ZM387.213 33.0234C387.557 33.0234 387.877 33.0742 388.174 33.1758C388.471 33.2695 388.686 33.3672 388.818 33.4688V34.5C388.654 34.375 388.432 34.2539 388.15 34.1367C387.869 34.0195 387.58 33.9609 387.283 33.9609C386.916 33.9609 386.639 34.0469 386.451 34.2188C386.271 34.3906 386.182 34.5703 386.182 34.7578C386.182 34.9062 386.232 35.0586 386.334 35.2148C386.443 35.3633 386.631 35.4844 386.896 35.5781L387.881 35.9297C388.264 36.0625 388.549 36.2539 388.736 36.5039C388.924 36.7539 389.018 37.0469 389.018 37.3828C389.018 37.7109 388.924 38.0117 388.736 38.2852C388.557 38.5586 388.303 38.7773 387.975 38.9414C387.654 39.0977 387.283 39.1758 386.861 39.1758C386.635 39.1758 386.396 39.1445 386.146 39.082C385.904 39.0273 385.686 38.9609 385.49 38.8828C385.295 38.7969 385.15 38.7227 385.057 38.6602V37.6289C385.166 37.707 385.318 37.7969 385.514 37.8984C385.717 37.9922 385.932 38.0742 386.158 38.1445C386.385 38.207 386.596 38.2383 386.791 38.2383C387.158 38.2383 387.447 38.1562 387.658 37.9922C387.877 37.8281 387.986 37.625 387.986 37.3828C387.986 37.1953 387.912 37.0469 387.764 36.9375C387.623 36.8281 387.416 36.7227 387.143 36.6211L386.275 36.3047C385.822 36.1328 385.521 35.918 385.373 35.6602C385.225 35.3945 385.15 35.0938 385.15 34.7578C385.15 34.2578 385.338 33.8438 385.713 33.5156C386.088 33.1875 386.588 33.0234 387.213 33.0234ZM392.896 33.0234C393.498 33.0234 393.998 33.1484 394.396 33.3984C394.795 33.6484 395.092 33.9883 395.287 34.418C395.49 34.8477 395.592 35.332 395.592 35.8711V36.4453H391.092C391.139 36.7734 391.252 37.0742 391.432 37.3477C391.611 37.6211 391.846 37.8398 392.135 38.0039C392.424 38.1602 392.756 38.2383 393.131 38.2383C393.553 38.2383 393.947 38.1328 394.314 37.9219C394.682 37.7031 394.99 37.4648 395.24 37.207L395.229 38.25C395.119 38.3828 394.955 38.5234 394.736 38.6719C394.525 38.8125 394.279 38.9297 393.998 39.0234C393.725 39.125 393.436 39.1758 393.131 39.1758C392.537 39.1758 392.01 39.0352 391.549 38.7539C391.088 38.4727 390.725 38.1016 390.459 37.6406C390.201 37.1719 390.072 36.6602 390.072 36.1055C390.072 35.5508 390.193 35.0391 390.436 34.5703C390.678 34.1016 391.01 33.7266 391.432 33.4453C391.861 33.1641 392.35 33.0234 392.896 33.0234ZM392.896 33.9609C392.412 33.9609 392.014 34.125 391.701 34.4531C391.389 34.7734 391.193 35.1641 391.115 35.625H394.643C394.604 35.2422 394.494 34.9297 394.314 34.6875C394.143 34.4453 393.932 34.2656 393.682 34.1484C393.432 34.0234 393.17 33.9609 392.896 33.9609ZM398.135 33.1406V34.3125C398.361 33.9219 398.635 33.6094 398.955 33.375C399.275 33.1406 399.604 33.0234 399.939 33.0234C400.166 33.0234 400.369 33.0625 400.549 33.1406V34.2539C400.299 34.1055 400.049 34.0312 399.799 34.0312C399.4 34.0312 399.076 34.1719 398.826 34.4531C398.584 34.7344 398.354 35.0703 398.135 35.4609V39H397.174V33.1406H398.135ZM412.982 33.1406L410.932 39H410.334L408.729 34.8633L407.123 39H406.525L404.475 33.1406H405.623L406.924 37.2539L408.459 33.1406H408.998L410.533 37.2539L411.834 33.1406H412.982ZM415.092 30.3281C415.318 30.3281 415.506 30.4102 415.654 30.5742C415.811 30.7305 415.889 30.9141 415.889 31.125C415.889 31.3281 415.811 31.5117 415.654 31.6758C415.506 31.8398 415.318 31.9219 415.092 31.9219C414.865 31.9219 414.674 31.8398 414.518 31.6758C414.369 31.5117 414.295 31.3281 414.295 31.125C414.295 30.9141 414.369 30.7305 414.518 30.5742C414.674 30.4102 414.865 30.3281 415.092 30.3281ZM415.689 33.1406V39H414.729V34.043H413.803V33.1406H415.689ZM419.381 31.4531V33.1406H421.092V34.043H419.381V37.4766C419.381 37.7188 419.443 37.9102 419.568 38.0508C419.693 38.1914 419.885 38.2617 420.143 38.2617C420.377 38.2617 420.572 38.2344 420.729 38.1797C420.885 38.1172 421.021 38.0508 421.139 37.9805V38.7656C420.982 38.8906 420.814 38.9883 420.635 39.0586C420.463 39.1367 420.229 39.1758 419.932 39.1758C419.432 39.1758 419.053 39.0273 418.795 38.7305C418.545 38.4258 418.42 38.0234 418.42 37.5234V34.043H417.295V33.7617C417.678 33.5898 417.998 33.3086 418.256 32.918C418.514 32.5195 418.74 32.0312 418.936 31.4531H419.381ZM425.709 33.0234C426.107 33.0234 426.471 33.1133 426.799 33.293C427.127 33.4648 427.389 33.7305 427.584 34.0898C427.779 34.4414 427.877 34.8867 427.877 35.4258V39H426.916L426.904 35.5195C426.904 35.0117 426.791 34.625 426.564 34.3594C426.346 34.0938 426.006 33.9609 425.545 33.9609C425.232 33.9609 424.92 34.0781 424.607 34.3125C424.303 34.5391 424.033 34.8047 423.799 35.1094V39H422.838V30.5625H423.799V34.0664C423.924 33.9102 424.084 33.7539 424.279 33.5977C424.475 33.4336 424.693 33.2969 424.936 33.1875C425.186 33.0781 425.443 33.0234 425.709 33.0234ZM436.186 33.0234C436.693 33.0234 437.15 33.1484 437.557 33.3984C437.971 33.6406 438.299 33.9844 438.541 34.4297C438.791 34.8672 438.916 35.3828 438.916 35.9766C438.916 36.6172 438.791 37.1797 438.541 37.6641C438.299 38.1406 437.963 38.5117 437.533 38.7773C437.111 39.043 436.631 39.1758 436.092 39.1758C435.756 39.1758 435.412 39.0859 435.061 38.9062C434.717 38.7266 434.42 38.4961 434.17 38.2148V41.8125H433.209V33.1406H434.17V34.1367C434.373 33.8242 434.646 33.5625 434.99 33.3516C435.342 33.1328 435.74 33.0234 436.186 33.0234ZM436.033 33.9609C435.682 33.9609 435.361 34.0508 435.072 34.2305C434.791 34.4102 434.568 34.6602 434.404 34.9805C434.248 35.293 434.17 35.6602 434.17 36.082L434.182 37.207C434.432 37.5117 434.693 37.7617 434.967 37.957C435.24 38.1445 435.557 38.2383 435.916 38.2383C436.338 38.2383 436.697 38.1289 436.994 37.9102C437.291 37.6914 437.518 37.4102 437.674 37.0664C437.838 36.7148 437.92 36.3516 437.92 35.9766C437.92 35.5938 437.842 35.2539 437.686 34.957C437.529 34.6523 437.311 34.4102 437.029 34.2305C436.748 34.0508 436.416 33.9609 436.033 33.9609ZM441.459 33.1406V34.3125C441.686 33.9219 441.959 33.6094 442.279 33.375C442.6 33.1406 442.928 33.0234 443.264 33.0234C443.49 33.0234 443.693 33.0625 443.873 33.1406V34.2539C443.623 34.1055 443.373 34.0312 443.123 34.0312C442.725 34.0312 442.4 34.1719 442.15 34.4531C441.908 34.7344 441.678 35.0703 441.459 35.4609V39H440.498V33.1406H441.459ZM447.752 33.0234C448.346 33.0234 448.873 33.1641 449.334 33.4453C449.795 33.7266 450.154 34.1016 450.412 34.5703C450.678 35.0391 450.811 35.5508 450.811 36.1055C450.811 36.6602 450.678 37.1719 450.412 37.6406C450.154 38.1016 449.795 38.4727 449.334 38.7539C448.873 39.0352 448.346 39.1758 447.752 39.1758C447.158 39.1758 446.631 39.0352 446.17 38.7539C445.709 38.4727 445.346 38.1016 445.08 37.6406C444.822 37.1719 444.693 36.6602 444.693 36.1055C444.693 35.5508 444.822 35.0391 445.08 34.5703C445.346 34.1016 445.709 33.7266 446.17 33.4453C446.631 33.1641 447.158 33.0234 447.752 33.0234ZM447.752 33.9609C447.338 33.9609 446.975 34.0625 446.662 34.2656C446.35 34.4609 446.107 34.7227 445.936 35.0508C445.771 35.3711 445.689 35.7227 445.689 36.1055C445.689 36.4805 445.771 36.832 445.936 37.1602C446.107 37.4805 446.35 37.7422 446.662 37.9453C446.975 38.1406 447.338 38.2383 447.752 38.2383C448.174 38.2383 448.537 38.1406 448.842 37.9453C449.154 37.7422 449.393 37.4805 449.557 37.1602C449.729 36.832 449.814 36.4805 449.814 36.1055C449.814 35.7227 449.729 35.3711 449.557 35.0508C449.393 34.7227 449.154 34.4609 448.842 34.2656C448.537 34.0625 448.174 33.9609 447.752 33.9609ZM455.369 33.0234C455.877 33.0234 456.334 33.1484 456.74 33.3984C457.154 33.6406 457.482 33.9844 457.725 34.4297C457.975 34.8672 458.1 35.3828 458.1 35.9766C458.1 36.6172 457.975 37.1797 457.725 37.6641C457.482 38.1406 457.146 38.5117 456.717 38.7773C456.295 39.043 455.814 39.1758 455.275 39.1758C454.939 39.1758 454.596 39.0859 454.244 38.9062C453.9 38.7266 453.604 38.4961 453.354 38.2148V41.8125H452.393V33.1406H453.354V34.1367C453.557 33.8242 453.83 33.5625 454.174 33.3516C454.525 33.1328 454.924 33.0234 455.369 33.0234ZM455.217 33.9609C454.865 33.9609 454.545 34.0508 454.256 34.2305C453.975 34.4102 453.752 34.6602 453.588 34.9805C453.432 35.293 453.354 35.6602 453.354 36.082L453.365 37.207C453.615 37.5117 453.877 37.7617 454.15 37.957C454.424 38.1445 454.74 38.2383 455.1 38.2383C455.521 38.2383 455.881 38.1289 456.178 37.9102C456.475 37.6914 456.701 37.4102 456.857 37.0664C457.021 36.7148 457.104 36.3516 457.104 35.9766C457.104 35.5938 457.025 35.2539 456.869 34.957C456.713 34.6523 456.494 34.4102 456.213 34.2305C455.932 34.0508 455.6 33.9609 455.217 33.9609ZM462.096 33.0234C462.697 33.0234 463.197 33.1484 463.596 33.3984C463.994 33.6484 464.291 33.9883 464.486 34.418C464.689 34.8477 464.791 35.332 464.791 35.8711V36.4453H460.291C460.338 36.7734 460.451 37.0742 460.631 37.3477C460.811 37.6211 461.045 37.8398 461.334 38.0039C461.623 38.1602 461.955 38.2383 462.33 38.2383C462.752 38.2383 463.146 38.1328 463.514 37.9219C463.881 37.7031 464.189 37.4648 464.439 37.207L464.428 38.25C464.318 38.3828 464.154 38.5234 463.936 38.6719C463.725 38.8125 463.479 38.9297 463.197 39.0234C462.924 39.125 462.635 39.1758 462.33 39.1758C461.736 39.1758 461.209 39.0352 460.748 38.7539C460.287 38.4727 459.924 38.1016 459.658 37.6406C459.4 37.1719 459.271 36.6602 459.271 36.1055C459.271 35.5508 459.393 35.0391 459.635 34.5703C459.877 34.1016 460.209 33.7266 460.631 33.4453C461.061 33.1641 461.549 33.0234 462.096 33.0234ZM462.096 33.9609C461.611 33.9609 461.213 34.125 460.9 34.4531C460.588 34.7734 460.393 35.1641 460.314 35.625H463.842C463.803 35.2422 463.693 34.9297 463.514 34.6875C463.342 34.4453 463.131 34.2656 462.881 34.1484C462.631 34.0234 462.369 33.9609 462.096 33.9609ZM467.334 33.1406V34.3125C467.561 33.9219 467.834 33.6094 468.154 33.375C468.475 33.1406 468.803 33.0234 469.139 33.0234C469.365 33.0234 469.568 33.0625 469.748 33.1406V34.2539C469.498 34.1055 469.248 34.0312 468.998 34.0312C468.6 34.0312 468.275 34.1719 468.025 34.4531C467.783 34.7344 467.553 35.0703 467.334 35.4609V39H466.373V33.1406H467.334ZM477.471 33.0234C477.979 33.0234 478.436 33.1484 478.842 33.3984C479.256 33.6406 479.584 33.9844 479.826 34.4297C480.076 34.8672 480.201 35.3828 480.201 35.9766C480.201 36.6172 480.076 37.1797 479.826 37.6641C479.584 38.1406 479.248 38.5117 478.818 38.7773C478.396 39.043 477.916 39.1758 477.377 39.1758C477.041 39.1758 476.697 39.0859 476.346 38.9062C476.002 38.7266 475.705 38.4961 475.455 38.2148V41.8125H474.494V33.1406H475.455V34.1367C475.658 33.8242 475.932 33.5625 476.275 33.3516C476.627 33.1328 477.025 33.0234 477.471 33.0234ZM477.318 33.9609C476.967 33.9609 476.646 34.0508 476.357 34.2305C476.076 34.4102 475.854 34.6602 475.689 34.9805C475.533 35.293 475.455 35.6602 475.455 36.082L475.467 37.207C475.717 37.5117 475.979 37.7617 476.252 37.957C476.525 38.1445 476.842 38.2383 477.201 38.2383C477.623 38.2383 477.982 38.1289 478.279 37.9102C478.576 37.6914 478.803 37.4102 478.959 37.0664C479.123 36.7148 479.205 36.3516 479.205 35.9766C479.205 35.5938 479.127 35.2539 478.971 34.957C478.814 34.6523 478.596 34.4102 478.314 34.2305C478.033 34.0508 477.701 33.9609 477.318 33.9609ZM484.197 33.0234C484.799 33.0234 485.299 33.1484 485.697 33.3984C486.096 33.6484 486.393 33.9883 486.588 34.418C486.791 34.8477 486.893 35.332 486.893 35.8711V36.4453H482.393C482.439 36.7734 482.553 37.0742 482.732 37.3477C482.912 37.6211 483.146 37.8398 483.436 38.0039C483.725 38.1602 484.057 38.2383 484.432 38.2383C484.854 38.2383 485.248 38.1328 485.615 37.9219C485.982 37.7031 486.291 37.4648 486.541 37.207L486.529 38.25C486.42 38.3828 486.256 38.5234 486.037 38.6719C485.826 38.8125 485.58 38.9297 485.299 39.0234C485.025 39.125 484.736 39.1758 484.432 39.1758C483.838 39.1758 483.311 39.0352 482.85 38.7539C482.389 38.4727 482.025 38.1016 481.76 37.6406C481.502 37.1719 481.373 36.6602 481.373 36.1055C481.373 35.5508 481.494 35.0391 481.736 34.5703C481.979 34.1016 482.311 33.7266 482.732 33.4453C483.162 33.1641 483.65 33.0234 484.197 33.0234ZM484.197 33.9609C483.713 33.9609 483.314 34.125 483.002 34.4531C482.689 34.7734 482.494 35.1641 482.416 35.625H485.943C485.904 35.2422 485.795 34.9297 485.615 34.6875C485.443 34.4453 485.232 34.2656 484.982 34.1484C484.732 34.0234 484.471 33.9609 484.197 33.9609ZM489.436 33.1406V34.3125C489.662 33.9219 489.936 33.6094 490.256 33.375C490.576 33.1406 490.904 33.0234 491.24 33.0234C491.467 33.0234 491.67 33.0625 491.85 33.1406V34.2539C491.6 34.1055 491.35 34.0312 491.1 34.0312C490.701 34.0312 490.377 34.1719 490.127 34.4531C489.885 34.7344 489.654 35.0703 489.436 35.4609V39H488.475V33.1406H489.436ZM494.041 33.1406V33.8906C494.229 33.6797 494.467 33.4844 494.756 33.3047C495.053 33.1172 495.4 33.0234 495.799 33.0234C496.221 33.0234 496.615 33.125 496.982 33.3281C497.35 33.5234 497.631 33.8203 497.826 34.2188C498.1 33.8906 498.396 33.6094 498.717 33.375C499.037 33.1406 499.412 33.0234 499.842 33.0234C500.24 33.0234 500.611 33.1133 500.955 33.293C501.307 33.4648 501.588 33.7305 501.799 34.0898C502.018 34.4414 502.127 34.8867 502.127 35.4258V39H501.166L501.154 35.5195C501.154 35.0117 501.021 34.625 500.756 34.3594C500.498 34.0938 500.139 33.9609 499.678 33.9609C499.342 33.9609 499.049 34.0664 498.799 34.2773C498.549 34.4883 498.311 34.7344 498.084 35.0156V39H497.123L497.111 35.5195C497.111 35.0117 496.979 34.625 496.713 34.3594C496.455 34.0938 496.096 33.9609 495.635 33.9609C495.314 33.9609 495.021 34.0547 494.756 34.2422C494.498 34.4297 494.26 34.6562 494.041 34.9219V39H493.08V33.1406H494.041ZM504.881 30.3281C505.107 30.3281 505.295 30.4102 505.443 30.5742C505.6 30.7305 505.678 30.9141 505.678 31.125C505.678 31.3281 505.6 31.5117 505.443 31.6758C505.295 31.8398 505.107 31.9219 504.881 31.9219C504.654 31.9219 504.463 31.8398 504.307 31.6758C504.158 31.5117 504.084 31.3281 504.084 31.125C504.084 30.9141 504.158 30.7305 504.307 30.5742C504.463 30.4102 504.654 30.3281 504.881 30.3281ZM505.479 33.1406V39H504.518V34.043H503.592V33.1406H505.479ZM509.299 33.0234C509.643 33.0234 509.963 33.0742 510.26 33.1758C510.557 33.2695 510.771 33.3672 510.904 33.4688V34.5C510.74 34.375 510.518 34.2539 510.236 34.1367C509.955 34.0195 509.666 33.9609 509.369 33.9609C509.002 33.9609 508.725 34.0469 508.537 34.2188C508.357 34.3906 508.268 34.5703 508.268 34.7578C508.268 34.9062 508.318 35.0586 508.42 35.2148C508.529 35.3633 508.717 35.4844 508.982 35.5781L509.967 35.9297C510.35 36.0625 510.635 36.2539 510.822 36.5039C511.01 36.7539 511.104 37.0469 511.104 37.3828C511.104 37.7109 511.01 38.0117 510.822 38.2852C510.643 38.5586 510.389 38.7773 510.061 38.9414C509.74 39.0977 509.369 39.1758 508.947 39.1758C508.721 39.1758 508.482 39.1445 508.232 39.082C507.99 39.0273 507.771 38.9609 507.576 38.8828C507.381 38.7969 507.236 38.7227 507.143 38.6602V37.6289C507.252 37.707 507.404 37.7969 507.6 37.8984C507.803 37.9922 508.018 38.0742 508.244 38.1445C508.471 38.207 508.682 38.2383 508.877 38.2383C509.244 38.2383 509.533 38.1562 509.744 37.9922C509.963 37.8281 510.072 37.625 510.072 37.3828C510.072 37.1953 509.998 37.0469 509.85 36.9375C509.709 36.8281 509.502 36.7227 509.229 36.6211L508.361 36.3047C507.908 36.1328 507.607 35.918 507.459 35.6602C507.311 35.3945 507.236 35.0938 507.236 34.7578C507.236 34.2578 507.424 33.8438 507.799 33.5156C508.174 33.1875 508.674 33.0234 509.299 33.0234ZM514.314 33.0234C514.658 33.0234 514.979 33.0742 515.275 33.1758C515.572 33.2695 515.787 33.3672 515.92 33.4688V34.5C515.756 34.375 515.533 34.2539 515.252 34.1367C514.971 34.0195 514.682 33.9609 514.385 33.9609C514.018 33.9609 513.74 34.0469 513.553 34.2188C513.373 34.3906 513.283 34.5703 513.283 34.7578C513.283 34.9062 513.334 35.0586 513.436 35.2148C513.545 35.3633 513.732 35.4844 513.998 35.5781L514.982 35.9297C515.365 36.0625 515.65 36.2539 515.838 36.5039C516.025 36.7539 516.119 37.0469 516.119 37.3828C516.119 37.7109 516.025 38.0117 515.838 38.2852C515.658 38.5586 515.404 38.7773 515.076 38.9414C514.756 39.0977 514.385 39.1758 513.963 39.1758C513.736 39.1758 513.498 39.1445 513.248 39.082C513.006 39.0273 512.787 38.9609 512.592 38.8828C512.396 38.7969 512.252 38.7227 512.158 38.6602V37.6289C512.268 37.707 512.42 37.7969 512.615 37.8984C512.818 37.9922 513.033 38.0742 513.26 38.1445C513.486 38.207 513.697 38.2383 513.893 38.2383C514.26 38.2383 514.549 38.1562 514.76 37.9922C514.979 37.8281 515.088 37.625 515.088 37.3828C515.088 37.1953 515.014 37.0469 514.865 36.9375C514.725 36.8281 514.518 36.7227 514.244 36.6211L513.377 36.3047C512.924 36.1328 512.623 35.918 512.475 35.6602C512.326 35.3945 512.252 35.0938 512.252 34.7578C512.252 34.2578 512.439 33.8438 512.814 33.5156C513.189 33.1875 513.689 33.0234 514.314 33.0234ZM518.521 30.3281C518.748 30.3281 518.936 30.4102 519.084 30.5742C519.24 30.7305 519.318 30.9141 519.318 31.125C519.318 31.3281 519.24 31.5117 519.084 31.6758C518.936 31.8398 518.748 31.9219 518.521 31.9219C518.295 31.9219 518.104 31.8398 517.947 31.6758C517.799 31.5117 517.725 31.3281 517.725 31.125C517.725 30.9141 517.799 30.7305 517.947 30.5742C518.104 30.4102 518.295 30.3281 518.521 30.3281ZM519.119 33.1406V39H518.158V34.043H517.232V33.1406H519.119ZM523.842 33.0234C524.436 33.0234 524.963 33.1641 525.424 33.4453C525.885 33.7266 526.244 34.1016 526.502 34.5703C526.768 35.0391 526.9 35.5508 526.9 36.1055C526.9 36.6602 526.768 37.1719 526.502 37.6406C526.244 38.1016 525.885 38.4727 525.424 38.7539C524.963 39.0352 524.436 39.1758 523.842 39.1758C523.248 39.1758 522.721 39.0352 522.26 38.7539C521.799 38.4727 521.436 38.1016 521.17 37.6406C520.912 37.1719 520.783 36.6602 520.783 36.1055C520.783 35.5508 520.912 35.0391 521.17 34.5703C521.436 34.1016 521.799 33.7266 522.26 33.4453C522.721 33.1641 523.248 33.0234 523.842 33.0234ZM523.842 33.9609C523.428 33.9609 523.064 34.0625 522.752 34.2656C522.439 34.4609 522.197 34.7227 522.025 35.0508C521.861 35.3711 521.779 35.7227 521.779 36.1055C521.779 36.4805 521.861 36.832 522.025 37.1602C522.197 37.4805 522.439 37.7422 522.752 37.9453C523.064 38.1406 523.428 38.2383 523.842 38.2383C524.264 38.2383 524.627 38.1406 524.932 37.9453C525.244 37.7422 525.482 37.4805 525.646 37.1602C525.818 36.832 525.904 36.4805 525.904 36.1055C525.904 35.7227 525.818 35.3711 525.646 35.0508C525.482 34.7227 525.244 34.4609 524.932 34.2656C524.627 34.0625 524.264 33.9609 523.842 33.9609ZM529.443 33.1406V34.0664C529.568 33.9102 529.729 33.7539 529.924 33.5977C530.119 33.4336 530.338 33.2969 530.58 33.1875C530.83 33.0781 531.088 33.0234 531.354 33.0234C531.752 33.0234 532.115 33.1133 532.443 33.293C532.771 33.4648 533.033 33.7305 533.229 34.0898C533.424 34.4414 533.521 34.8867 533.521 35.4258V39H532.561L532.549 35.5195C532.549 35.0117 532.436 34.625 532.209 34.3594C531.99 34.0938 531.65 33.9609 531.189 33.9609C530.877 33.9609 530.564 34.0781 530.252 34.3125C529.947 34.5391 529.678 34.8047 529.443 35.1094V39H528.482V33.1406H529.443ZM374.018 48.0234C374.447 48.0234 374.818 48.0938 375.131 48.2344C375.443 48.3672 375.658 48.4883 375.775 48.5977V49.5703C375.557 49.4062 375.307 49.2656 375.025 49.1484C374.744 49.0234 374.408 48.9609 374.018 48.9609C373.604 48.9609 373.24 49.0625 372.928 49.2656C372.615 49.4609 372.373 49.7227 372.201 50.0508C372.037 50.3711 371.955 50.7227 371.955 51.1055C371.955 51.4805 372.037 51.832 372.201 52.1602C372.373 52.4805 372.615 52.7422 372.928 52.9453C373.24 53.1406 373.604 53.2383 374.018 53.2383C374.408 53.2383 374.744 53.1797 375.025 53.0625C375.307 52.9375 375.557 52.793 375.775 52.6289V53.6016C375.658 53.7188 375.443 53.8438 375.131 53.9766C374.818 54.1094 374.447 54.1758 374.018 54.1758C373.424 54.1758 372.896 54.0352 372.436 53.7539C371.975 53.4727 371.611 53.1016 371.346 52.6406C371.088 52.1719 370.959 51.6602 370.959 51.1055C370.959 50.5508 371.088 50.0391 371.346 49.5703C371.611 49.1016 371.975 48.7266 372.436 48.4453C372.896 48.1641 373.424 48.0234 374.018 48.0234ZM379.771 48.0234C380.107 48.0234 380.447 48.1055 380.791 48.2695C381.143 48.4258 381.443 48.6445 381.693 48.9258V48.1406H382.654V54H381.693V53.0039C381.49 53.3164 381.213 53.5898 380.861 53.8242C380.518 54.0586 380.123 54.1758 379.678 54.1758C379.178 54.1758 378.721 54.0508 378.307 53.8008C377.893 53.543 377.561 53.1875 377.311 52.7344C377.068 52.2812 376.947 51.7578 376.947 51.1641C376.947 50.5156 377.068 49.957 377.311 49.4883C377.561 49.0195 377.9 48.6602 378.33 48.4102C378.76 48.1523 379.24 48.0234 379.771 48.0234ZM379.947 48.9609C379.525 48.9609 379.166 49.0664 378.869 49.2773C378.572 49.4883 378.342 49.7617 378.178 50.0977C378.021 50.4258 377.943 50.7812 377.943 51.1641C377.943 51.5391 378.021 51.8867 378.178 52.207C378.334 52.5195 378.553 52.7695 378.834 52.957C379.123 53.1445 379.455 53.2383 379.83 53.2383C380.189 53.2383 380.51 53.1445 380.791 52.957C381.072 52.7695 381.295 52.5117 381.459 52.1836C381.623 51.8477 381.701 51.4727 381.693 51.0586L381.682 49.9336C381.439 49.6289 381.178 49.3906 380.896 49.2188C380.623 49.0469 380.307 48.9609 379.947 48.9609ZM385.607 48.1406V49.0664C385.732 48.9102 385.893 48.7539 386.088 48.5977C386.283 48.4336 386.502 48.2969 386.744 48.1875C386.994 48.0781 387.252 48.0234 387.518 48.0234C387.916 48.0234 388.279 48.1133 388.607 48.293C388.936 48.4648 389.197 48.7305 389.393 49.0898C389.588 49.4414 389.686 49.8867 389.686 50.4258V54H388.725L388.713 50.5195C388.713 50.0117 388.6 49.625 388.373 49.3594C388.154 49.0938 387.814 48.9609 387.354 48.9609C387.041 48.9609 386.729 49.0781 386.416 49.3125C386.111 49.5391 385.842 49.8047 385.607 50.1094V54H384.646V48.1406H385.607ZM398.334 46.1484L402.002 54H400.736L399.916 52.125H396.236L395.404 54H394.139L397.807 46.1484H398.334ZM398.088 47.9297L396.67 51.1289H399.482L398.088 47.9297ZM406.092 48.0234C406.6 48.0234 407.057 48.1484 407.463 48.3984C407.877 48.6406 408.205 48.9844 408.447 49.4297C408.697 49.8672 408.822 50.3828 408.822 50.9766C408.822 51.6172 408.697 52.1797 408.447 52.6641C408.205 53.1406 407.869 53.5117 407.439 53.7773C407.018 54.043 406.537 54.1758 405.998 54.1758C405.662 54.1758 405.318 54.0859 404.967 53.9062C404.623 53.7266 404.326 53.4961 404.076 53.2148V56.8125H403.115V48.1406H404.076V49.1367C404.279 48.8242 404.553 48.5625 404.896 48.3516C405.248 48.1328 405.646 48.0234 406.092 48.0234ZM405.939 48.9609C405.588 48.9609 405.268 49.0508 404.979 49.2305C404.697 49.4102 404.475 49.6602 404.311 49.9805C404.154 50.293 404.076 50.6602 404.076 51.082L404.088 52.207C404.338 52.5117 404.6 52.7617 404.873 52.957C405.146 53.1445 405.463 53.2383 405.822 53.2383C406.244 53.2383 406.604 53.1289 406.9 52.9102C407.197 52.6914 407.424 52.4102 407.58 52.0664C407.744 51.7148 407.826 51.3516 407.826 50.9766C407.826 50.5938 407.748 50.2539 407.592 49.957C407.436 49.6523 407.217 49.4102 406.936 49.2305C406.654 49.0508 406.322 48.9609 405.939 48.9609ZM413.381 48.0234C413.889 48.0234 414.346 48.1484 414.752 48.3984C415.166 48.6406 415.494 48.9844 415.736 49.4297C415.986 49.8672 416.111 50.3828 416.111 50.9766C416.111 51.6172 415.986 52.1797 415.736 52.6641C415.494 53.1406 415.158 53.5117 414.729 53.7773C414.307 54.043 413.826 54.1758 413.287 54.1758C412.951 54.1758 412.607 54.0859 412.256 53.9062C411.912 53.7266 411.615 53.4961 411.365 53.2148V56.8125H410.404V48.1406H411.365V49.1367C411.568 48.8242 411.842 48.5625 412.186 48.3516C412.537 48.1328 412.936 48.0234 413.381 48.0234ZM413.229 48.9609C412.877 48.9609 412.557 49.0508 412.268 49.2305C411.986 49.4102 411.764 49.6602 411.6 49.9805C411.443 50.293 411.365 50.6602 411.365 51.082L411.377 52.207C411.627 52.5117 411.889 52.7617 412.162 52.957C412.436 53.1445 412.752 53.2383 413.111 53.2383C413.533 53.2383 413.893 53.1289 414.189 52.9102C414.486 52.6914 414.713 52.4102 414.869 52.0664C415.033 51.7148 415.115 51.3516 415.115 50.9766C415.115 50.5938 415.037 50.2539 414.881 49.957C414.725 49.6523 414.506 49.4102 414.225 49.2305C413.943 49.0508 413.611 48.9609 413.229 48.9609ZM418.654 48.1406V49.3125C418.881 48.9219 419.154 48.6094 419.475 48.375C419.795 48.1406 420.123 48.0234 420.459 48.0234C420.686 48.0234 420.889 48.0625 421.068 48.1406V49.2539C420.818 49.1055 420.568 49.0312 420.318 49.0312C419.92 49.0312 419.596 49.1719 419.346 49.4531C419.104 49.7344 418.873 50.0703 418.654 50.4609V54H417.693V48.1406H418.654ZM424.947 48.0234C425.541 48.0234 426.068 48.1641 426.529 48.4453C426.99 48.7266 427.35 49.1016 427.607 49.5703C427.873 50.0391 428.006 50.5508 428.006 51.1055C428.006 51.6602 427.873 52.1719 427.607 52.6406C427.35 53.1016 426.99 53.4727 426.529 53.7539C426.068 54.0352 425.541 54.1758 424.947 54.1758C424.354 54.1758 423.826 54.0352 423.365 53.7539C422.904 53.4727 422.541 53.1016 422.275 52.6406C422.018 52.1719 421.889 51.6602 421.889 51.1055C421.889 50.5508 422.018 50.0391 422.275 49.5703C422.541 49.1016 422.904 48.7266 423.365 48.4453C423.826 48.1641 424.354 48.0234 424.947 48.0234ZM424.947 48.9609C424.533 48.9609 424.17 49.0625 423.857 49.2656C423.545 49.4609 423.303 49.7227 423.131 50.0508C422.967 50.3711 422.885 50.7227 422.885 51.1055C422.885 51.4805 422.967 51.832 423.131 52.1602C423.303 52.4805 423.545 52.7422 423.857 52.9453C424.17 53.1406 424.533 53.2383 424.947 53.2383C425.369 53.2383 425.732 53.1406 426.037 52.9453C426.35 52.7422 426.588 52.4805 426.752 52.1602C426.924 51.832 427.01 51.4805 427.01 51.1055C427.01 50.7227 426.924 50.3711 426.752 50.0508C426.588 49.7227 426.35 49.4609 426.037 49.2656C425.732 49.0625 425.369 48.9609 424.947 48.9609ZM434.521 48.1406L431.768 54H431.17L428.533 48.1406H429.682L431.451 52.4531L433.373 48.1406H434.521ZM437.99 48.0234C438.592 48.0234 439.092 48.1484 439.49 48.3984C439.889 48.6484 440.186 48.9883 440.381 49.418C440.584 49.8477 440.686 50.332 440.686 50.8711V51.4453H436.186C436.232 51.7734 436.346 52.0742 436.525 52.3477C436.705 52.6211 436.939 52.8398 437.229 53.0039C437.518 53.1602 437.85 53.2383 438.225 53.2383C438.646 53.2383 439.041 53.1328 439.408 52.9219C439.775 52.7031 440.084 52.4648 440.334 52.207L440.322 53.25C440.213 53.3828 440.049 53.5234 439.83 53.6719C439.619 53.8125 439.373 53.9297 439.092 54.0234C438.818 54.125 438.529 54.1758 438.225 54.1758C437.631 54.1758 437.104 54.0352 436.643 53.7539C436.182 53.4727 435.818 53.1016 435.553 52.6406C435.295 52.1719 435.166 51.6602 435.166 51.1055C435.166 50.5508 435.287 50.0391 435.529 49.5703C435.771 49.1016 436.104 48.7266 436.525 48.4453C436.955 48.1641 437.443 48.0234 437.99 48.0234ZM437.99 48.9609C437.506 48.9609 437.107 49.125 436.795 49.4531C436.482 49.7734 436.287 50.1641 436.209 50.625H439.736C439.697 50.2422 439.588 49.9297 439.408 49.6875C439.236 49.4453 439.025 49.2656 438.775 49.1484C438.525 49.0234 438.264 48.9609 437.99 48.9609ZM442.678 52.6172L443.639 52.9453L442.584 56.0742L441.857 55.8867L442.678 52.6172ZM452.393 46.1484C452.846 46.1484 453.279 46.2344 453.693 46.4062C454.107 46.5703 454.447 46.8281 454.713 47.1797C454.986 47.5234 455.123 47.9648 455.123 48.5039C455.123 48.9883 454.982 49.3984 454.701 49.7344C454.428 50.0703 454.076 50.3242 453.646 50.4961C453.225 50.6602 452.787 50.7422 452.334 50.7422C452.193 50.7422 452.006 50.7344 451.771 50.7188L455.428 54H453.811L450.436 50.7188V54H449.381V46.1484H452.393ZM450.436 47.1445V49.6641C450.693 49.7344 450.975 49.7891 451.279 49.8281C451.584 49.8672 451.885 49.8867 452.182 49.8867C452.775 49.8867 453.232 49.7617 453.553 49.5117C453.881 49.2617 454.045 48.9258 454.045 48.5039C454.045 48.0664 453.865 47.7305 453.506 47.4961C453.154 47.2617 452.725 47.1445 452.217 47.1445H450.436ZM458.604 48.0234C459.205 48.0234 459.705 48.1484 460.104 48.3984C460.502 48.6484 460.799 48.9883 460.994 49.418C461.197 49.8477 461.299 50.332 461.299 50.8711V51.4453H456.799C456.846 51.7734 456.959 52.0742 457.139 52.3477C457.318 52.6211 457.553 52.8398 457.842 53.0039C458.131 53.1602 458.463 53.2383 458.838 53.2383C459.26 53.2383 459.654 53.1328 460.021 52.9219C460.389 52.7031 460.697 52.4648 460.947 52.207L460.936 53.25C460.826 53.3828 460.662 53.5234 460.443 53.6719C460.232 53.8125 459.986 53.9297 459.705 54.0234C459.432 54.125 459.143 54.1758 458.838 54.1758C458.244 54.1758 457.717 54.0352 457.256 53.7539C456.795 53.4727 456.432 53.1016 456.166 52.6406C455.908 52.1719 455.779 51.6602 455.779 51.1055C455.779 50.5508 455.9 50.0391 456.143 49.5703C456.385 49.1016 456.717 48.7266 457.139 48.4453C457.568 48.1641 458.057 48.0234 458.604 48.0234ZM458.604 48.9609C458.119 48.9609 457.721 49.125 457.408 49.4531C457.096 49.7734 456.9 50.1641 456.822 50.625H460.35C460.311 50.2422 460.201 49.9297 460.021 49.6875C459.85 49.4453 459.639 49.2656 459.389 49.1484C459.139 49.0234 458.877 48.9609 458.604 48.9609ZM463.654 45.3281C463.881 45.3281 464.068 45.4102 464.217 45.5742C464.373 45.7305 464.451 45.9141 464.451 46.125C464.451 46.3281 464.373 46.5117 464.217 46.6758C464.068 46.8398 463.881 46.9219 463.654 46.9219C463.428 46.9219 463.236 46.8398 463.08 46.6758C462.932 46.5117 462.857 46.3281 462.857 46.125C462.857 45.9141 462.932 45.7305 463.08 45.5742C463.236 45.4102 463.428 45.3281 463.654 45.3281ZM464.275 48.1406V53.9766C464.275 54.7656 464.092 55.4023 463.725 55.8867C463.365 56.3711 462.877 56.7383 462.26 56.9883L461.826 56.1211C462.342 55.8711 462.717 55.5938 462.951 55.2891C463.193 54.9844 463.314 54.5938 463.314 54.1172V49.043H462.389V48.1406H464.275ZM468.682 48.0234C469.283 48.0234 469.783 48.1484 470.182 48.3984C470.58 48.6484 470.877 48.9883 471.072 49.418C471.275 49.8477 471.377 50.332 471.377 50.8711V51.4453H466.877C466.924 51.7734 467.037 52.0742 467.217 52.3477C467.396 52.6211 467.631 52.8398 467.92 53.0039C468.209 53.1602 468.541 53.2383 468.916 53.2383C469.338 53.2383 469.732 53.1328 470.1 52.9219C470.467 52.7031 470.775 52.4648 471.025 52.207L471.014 53.25C470.904 53.3828 470.74 53.5234 470.521 53.6719C470.311 53.8125 470.064 53.9297 469.783 54.0234C469.51 54.125 469.221 54.1758 468.916 54.1758C468.322 54.1758 467.795 54.0352 467.334 53.7539C466.873 53.4727 466.51 53.1016 466.244 52.6406C465.986 52.1719 465.857 51.6602 465.857 51.1055C465.857 50.5508 465.979 50.0391 466.221 49.5703C466.463 49.1016 466.795 48.7266 467.217 48.4453C467.646 48.1641 468.135 48.0234 468.682 48.0234ZM468.682 48.9609C468.197 48.9609 467.799 49.125 467.486 49.4531C467.174 49.7734 466.979 50.1641 466.9 50.625H470.428C470.389 50.2422 470.279 49.9297 470.1 49.6875C469.928 49.4453 469.717 49.2656 469.467 49.1484C469.217 49.0234 468.955 48.9609 468.682 48.9609ZM475.607 48.0234C476.037 48.0234 476.408 48.0938 476.721 48.2344C477.033 48.3672 477.248 48.4883 477.365 48.5977V49.5703C477.146 49.4062 476.896 49.2656 476.615 49.1484C476.334 49.0234 475.998 48.9609 475.607 48.9609C475.193 48.9609 474.83 49.0625 474.518 49.2656C474.205 49.4609 473.963 49.7227 473.791 50.0508C473.627 50.3711 473.545 50.7227 473.545 51.1055C473.545 51.4805 473.627 51.832 473.791 52.1602C473.963 52.4805 474.205 52.7422 474.518 52.9453C474.83 53.1406 475.193 53.2383 475.607 53.2383C475.998 53.2383 476.334 53.1797 476.615 53.0625C476.896 52.9375 477.146 52.793 477.365 52.6289V53.6016C477.248 53.7188 477.033 53.8438 476.721 53.9766C476.408 54.1094 476.037 54.1758 475.607 54.1758C475.014 54.1758 474.486 54.0352 474.025 53.7539C473.564 53.4727 473.201 53.1016 472.936 52.6406C472.678 52.1719 472.549 51.6602 472.549 51.1055C472.549 50.5508 472.678 50.0391 472.936 49.5703C473.201 49.1016 473.564 48.7266 474.025 48.4453C474.486 48.1641 475.014 48.0234 475.607 48.0234ZM480.564 46.4531V48.1406H482.275V49.043H480.564V52.4766C480.564 52.7188 480.627 52.9102 480.752 53.0508C480.877 53.1914 481.068 53.2617 481.326 53.2617C481.561 53.2617 481.756 53.2344 481.912 53.1797C482.068 53.1172 482.205 53.0508 482.322 52.9805V53.7656C482.166 53.8906 481.998 53.9883 481.818 54.0586C481.646 54.1367 481.412 54.1758 481.115 54.1758C480.615 54.1758 480.236 54.0273 479.979 53.7305C479.729 53.4258 479.604 53.0234 479.604 52.5234V49.043H478.479V48.7617C478.861 48.5898 479.182 48.3086 479.439 47.918C479.697 47.5195 479.924 47.0312 480.119 46.4531H480.564ZM490.186 48.0234C490.779 48.0234 491.307 48.1641 491.768 48.4453C492.229 48.7266 492.588 49.1016 492.846 49.5703C493.111 50.0391 493.244 50.5508 493.244 51.1055C493.244 51.6602 493.111 52.1719 492.846 52.6406C492.588 53.1016 492.229 53.4727 491.768 53.7539C491.307 54.0352 490.779 54.1758 490.186 54.1758C489.592 54.1758 489.064 54.0352 488.604 53.7539C488.143 53.4727 487.779 53.1016 487.514 52.6406C487.256 52.1719 487.127 51.6602 487.127 51.1055C487.127 50.5508 487.256 50.0391 487.514 49.5703C487.779 49.1016 488.143 48.7266 488.604 48.4453C489.064 48.1641 489.592 48.0234 490.186 48.0234ZM490.186 48.9609C489.771 48.9609 489.408 49.0625 489.096 49.2656C488.783 49.4609 488.541 49.7227 488.369 50.0508C488.205 50.3711 488.123 50.7227 488.123 51.1055C488.123 51.4805 488.205 51.832 488.369 52.1602C488.541 52.4805 488.783 52.7422 489.096 52.9453C489.408 53.1406 489.771 53.2383 490.186 53.2383C490.607 53.2383 490.971 53.1406 491.275 52.9453C491.588 52.7422 491.826 52.4805 491.99 52.1602C492.162 51.832 492.248 51.4805 492.248 51.1055C492.248 50.7227 492.162 50.3711 491.99 50.0508C491.826 49.7227 491.588 49.4609 491.275 49.2656C490.971 49.0625 490.607 48.9609 490.186 48.9609ZM495.787 48.1406V49.3125C496.014 48.9219 496.287 48.6094 496.607 48.375C496.928 48.1406 497.256 48.0234 497.592 48.0234C497.818 48.0234 498.021 48.0625 498.201 48.1406V49.2539C497.951 49.1055 497.701 49.0312 497.451 49.0312C497.053 49.0312 496.729 49.1719 496.479 49.4531C496.236 49.7344 496.006 50.0703 495.787 50.4609V54H494.826V48.1406H495.787ZM506.674 45.9727C507.244 45.9727 507.709 46.0508 508.068 46.207C508.436 46.3633 508.756 46.5664 509.029 46.8164V47.9766C508.857 47.8516 508.662 47.7148 508.443 47.5664C508.232 47.418 507.982 47.2891 507.693 47.1797C507.412 47.0625 507.072 47.0039 506.674 47.0039C506.088 47.0039 505.564 47.1367 505.104 47.4023C504.643 47.668 504.279 48.0352 504.014 48.5039C503.748 48.9648 503.615 49.4883 503.615 50.0742C503.615 50.6602 503.748 51.1836 504.014 51.6445C504.279 52.1055 504.643 52.4727 505.104 52.7461C505.564 53.0117 506.088 53.1445 506.674 53.1445C507.275 53.1445 507.787 53.0469 508.209 52.8516C508.639 52.6484 508.99 52.4414 509.264 52.2305V53.2852C508.99 53.5273 508.631 53.7383 508.186 53.918C507.748 54.0898 507.244 54.1758 506.674 54.1758C506.08 54.1758 505.533 54.0703 505.033 53.8594C504.533 53.6406 504.096 53.3438 503.721 52.9688C503.346 52.5938 503.053 52.1602 502.842 51.668C502.639 51.168 502.537 50.6367 502.537 50.0742C502.537 49.5117 502.639 48.9844 502.842 48.4922C503.053 47.9922 503.346 47.5547 503.721 47.1797C504.096 46.8047 504.533 46.5117 505.033 46.3008C505.533 46.082 506.08 45.9727 506.674 45.9727ZM513.26 48.0234C513.596 48.0234 513.936 48.1055 514.279 48.2695C514.631 48.4258 514.932 48.6445 515.182 48.9258V48.1406H516.143V54H515.182V53.0039C514.979 53.3164 514.701 53.5898 514.35 53.8242C514.006 54.0586 513.611 54.1758 513.166 54.1758C512.666 54.1758 512.209 54.0508 511.795 53.8008C511.381 53.543 511.049 53.1875 510.799 52.7344C510.557 52.2812 510.436 51.7578 510.436 51.1641C510.436 50.5156 510.557 49.957 510.799 49.4883C511.049 49.0195 511.389 48.6602 511.818 48.4102C512.248 48.1523 512.729 48.0234 513.26 48.0234ZM513.436 48.9609C513.014 48.9609 512.654 49.0664 512.357 49.2773C512.061 49.4883 511.83 49.7617 511.666 50.0977C511.51 50.4258 511.432 50.7812 511.432 51.1641C511.432 51.5391 511.51 51.8867 511.666 52.207C511.822 52.5195 512.041 52.7695 512.322 52.957C512.611 53.1445 512.943 53.2383 513.318 53.2383C513.678 53.2383 513.998 53.1445 514.279 52.957C514.561 52.7695 514.783 52.5117 514.947 52.1836C515.111 51.8477 515.189 51.4727 515.182 51.0586L515.17 49.9336C514.928 49.6289 514.666 49.3906 514.385 49.2188C514.111 49.0469 513.795 48.9609 513.436 48.9609ZM519.096 48.1406V49.0664C519.221 48.9102 519.381 48.7539 519.576 48.5977C519.771 48.4336 519.99 48.2969 520.232 48.1875C520.482 48.0781 520.74 48.0234 521.006 48.0234C521.404 48.0234 521.768 48.1133 522.096 48.293C522.424 48.4648 522.686 48.7305 522.881 49.0898C523.076 49.4414 523.174 49.8867 523.174 50.4258V54H522.213L522.201 50.5195C522.201 50.0117 522.088 49.625 521.861 49.3594C521.643 49.0938 521.303 48.9609 520.842 48.9609C520.529 48.9609 520.217 49.0781 519.904 49.3125C519.6 49.5391 519.33 49.8047 519.096 50.1094V54H518.135V48.1406H519.096ZM527.639 48.0234C528.068 48.0234 528.439 48.0938 528.752 48.2344C529.064 48.3672 529.279 48.4883 529.396 48.5977V49.5703C529.178 49.4062 528.928 49.2656 528.646 49.1484C528.365 49.0234 528.029 48.9609 527.639 48.9609C527.225 48.9609 526.861 49.0625 526.549 49.2656C526.236 49.4609 525.994 49.7227 525.822 50.0508C525.658 50.3711 525.576 50.7227 525.576 51.1055C525.576 51.4805 525.658 51.832 525.822 52.1602C525.994 52.4805 526.236 52.7422 526.549 52.9453C526.861 53.1406 527.225 53.2383 527.639 53.2383C528.029 53.2383 528.365 53.1797 528.646 53.0625C528.928 52.9375 529.178 52.793 529.396 52.6289V53.6016C529.279 53.7188 529.064 53.8438 528.752 53.9766C528.439 54.1094 528.068 54.1758 527.639 54.1758C527.045 54.1758 526.518 54.0352 526.057 53.7539C525.596 53.4727 525.232 53.1016 524.967 52.6406C524.709 52.1719 524.58 51.6602 524.58 51.1055C524.58 50.5508 524.709 50.0391 524.967 49.5703C525.232 49.1016 525.596 48.7266 526.057 48.4453C526.518 48.1641 527.045 48.0234 527.639 48.0234ZM533.393 48.0234C533.994 48.0234 534.494 48.1484 534.893 48.3984C535.291 48.6484 535.588 48.9883 535.783 49.418C535.986 49.8477 536.088 50.332 536.088 50.8711V51.4453H531.588C531.635 51.7734 531.748 52.0742 531.928 52.3477C532.107 52.6211 532.342 52.8398 532.631 53.0039C532.92 53.1602 533.252 53.2383 533.627 53.2383C534.049 53.2383 534.443 53.1328 534.811 52.9219C535.178 52.7031 535.486 52.4648 535.736 52.207L535.725 53.25C535.615 53.3828 535.451 53.5234 535.232 53.6719C535.021 53.8125 534.775 53.9297 534.494 54.0234C534.221 54.125 533.932 54.1758 533.627 54.1758C533.033 54.1758 532.506 54.0352 532.045 53.7539C531.584 53.4727 531.221 53.1016 530.955 52.6406C530.697 52.1719 530.568 51.6602 530.568 51.1055C530.568 50.5508 530.689 50.0391 530.932 49.5703C531.174 49.1016 531.506 48.7266 531.928 48.4453C532.357 48.1641 532.846 48.0234 533.393 48.0234ZM533.393 48.9609C532.908 48.9609 532.51 49.125 532.197 49.4531C531.885 49.7734 531.689 50.1641 531.611 50.625H535.139C535.1 50.2422 534.99 49.9297 534.811 49.6875C534.639 49.4453 534.428 49.2656 534.178 49.1484C533.928 49.0234 533.666 48.9609 533.393 48.9609ZM538.631 45.5625V54H537.67V45.5625H538.631Z",fill:"#615BC2"}),c.createElement("circle",{cx:455,cy:158,r:5,fill:"#6C65E5",stroke:"#F2F2F5",strokeWidth:2}),c.createElement("path",{d:"M455 154.643L455 59",stroke:"#6C65E5",strokeWidth:1.5,strokeLinecap:"round"}),c.createElement("path",{d:"M580.799 36.125V40.8945C580.799 41.5742 580.654 42.1602 580.365 42.6523C580.084 43.1367 579.701 43.5078 579.217 43.7656C578.732 44.0234 578.182 44.1523 577.564 44.1523C576.955 44.1523 576.404 44.0234 575.912 43.7656C575.428 43.5078 575.041 43.1367 574.752 42.6523C574.471 42.1602 574.33 41.5742 574.33 40.8945V36.125H575.385V40.8594C575.385 41.3906 575.482 41.8203 575.678 42.1484C575.881 42.4766 576.146 42.7148 576.475 42.8633C576.811 43.0039 577.174 43.0742 577.564 43.0742C577.955 43.0664 578.314 42.9922 578.643 42.8516C578.979 42.7031 579.244 42.4688 579.439 42.1484C579.643 41.8203 579.744 41.3906 579.744 40.8594V36.125H580.799ZM584.713 38.0234C585.057 38.0234 585.377 38.0742 585.674 38.1758C585.971 38.2695 586.186 38.3672 586.318 38.4688V39.5C586.154 39.375 585.932 39.2539 585.65 39.1367C585.369 39.0195 585.08 38.9609 584.783 38.9609C584.416 38.9609 584.139 39.0469 583.951 39.2188C583.771 39.3906 583.682 39.5703 583.682 39.7578C583.682 39.9062 583.732 40.0586 583.834 40.2148C583.943 40.3633 584.131 40.4844 584.396 40.5781L585.381 40.9297C585.764 41.0625 586.049 41.2539 586.236 41.5039C586.424 41.7539 586.518 42.0469 586.518 42.3828C586.518 42.7109 586.424 43.0117 586.236 43.2852C586.057 43.5586 585.803 43.7773 585.475 43.9414C585.154 44.0977 584.783 44.1758 584.361 44.1758C584.135 44.1758 583.896 44.1445 583.646 44.082C583.404 44.0273 583.186 43.9609 582.99 43.8828C582.795 43.7969 582.65 43.7227 582.557 43.6602V42.6289C582.666 42.707 582.818 42.7969 583.014 42.8984C583.217 42.9922 583.432 43.0742 583.658 43.1445C583.885 43.207 584.096 43.2383 584.291 43.2383C584.658 43.2383 584.947 43.1562 585.158 42.9922C585.377 42.8281 585.486 42.625 585.486 42.3828C585.486 42.1953 585.412 42.0469 585.264 41.9375C585.123 41.8281 584.916 41.7227 584.643 41.6211L583.775 41.3047C583.322 41.1328 583.021 40.918 582.873 40.6602C582.725 40.3945 582.65 40.0938 582.65 39.7578C582.65 39.2578 582.838 38.8438 583.213 38.5156C583.588 38.1875 584.088 38.0234 584.713 38.0234ZM590.396 38.0234C590.998 38.0234 591.498 38.1484 591.896 38.3984C592.295 38.6484 592.592 38.9883 592.787 39.418C592.99 39.8477 593.092 40.332 593.092 40.8711V41.4453H588.592C588.639 41.7734 588.752 42.0742 588.932 42.3477C589.111 42.6211 589.346 42.8398 589.635 43.0039C589.924 43.1602 590.256 43.2383 590.631 43.2383C591.053 43.2383 591.447 43.1328 591.814 42.9219C592.182 42.7031 592.49 42.4648 592.74 42.207L592.729 43.25C592.619 43.3828 592.455 43.5234 592.236 43.6719C592.025 43.8125 591.779 43.9297 591.498 44.0234C591.225 44.125 590.936 44.1758 590.631 44.1758C590.037 44.1758 589.51 44.0352 589.049 43.7539C588.588 43.4727 588.225 43.1016 587.959 42.6406C587.701 42.1719 587.572 41.6602 587.572 41.1055C587.572 40.5508 587.693 40.0391 587.936 39.5703C588.178 39.1016 588.51 38.7266 588.932 38.4453C589.361 38.1641 589.85 38.0234 590.396 38.0234ZM590.396 38.9609C589.912 38.9609 589.514 39.125 589.201 39.4531C588.889 39.7734 588.693 40.1641 588.615 40.625H592.143C592.104 40.2422 591.994 39.9297 591.814 39.6875C591.643 39.4453 591.432 39.2656 591.182 39.1484C590.932 39.0234 590.67 38.9609 590.396 38.9609ZM595.635 38.1406V39.3125C595.861 38.9219 596.135 38.6094 596.455 38.375C596.775 38.1406 597.104 38.0234 597.439 38.0234C597.666 38.0234 597.869 38.0625 598.049 38.1406V39.2539C597.799 39.1055 597.549 39.0312 597.299 39.0312C596.9 39.0312 596.576 39.1719 596.326 39.4531C596.084 39.7344 595.854 40.0703 595.635 40.4609V44H594.674V38.1406H595.635ZM610.482 38.1406L608.432 44H607.834L606.229 39.8633L604.623 44H604.025L601.975 38.1406H603.123L604.424 42.2539L605.959 38.1406H606.498L608.033 42.2539L609.334 38.1406H610.482ZM612.592 35.3281C612.818 35.3281 613.006 35.4102 613.154 35.5742C613.311 35.7305 613.389 35.9141 613.389 36.125C613.389 36.3281 613.311 36.5117 613.154 36.6758C613.006 36.8398 612.818 36.9219 612.592 36.9219C612.365 36.9219 612.174 36.8398 612.018 36.6758C611.869 36.5117 611.795 36.3281 611.795 36.125C611.795 35.9141 611.869 35.7305 612.018 35.5742C612.174 35.4102 612.365 35.3281 612.592 35.3281ZM613.189 38.1406V44H612.229V39.043H611.303V38.1406H613.189ZM616.881 36.4531V38.1406H618.592V39.043H616.881V42.4766C616.881 42.7188 616.943 42.9102 617.068 43.0508C617.193 43.1914 617.385 43.2617 617.643 43.2617C617.877 43.2617 618.072 43.2344 618.229 43.1797C618.385 43.1172 618.521 43.0508 618.639 42.9805V43.7656C618.482 43.8906 618.314 43.9883 618.135 44.0586C617.963 44.1367 617.729 44.1758 617.432 44.1758C616.932 44.1758 616.553 44.0273 616.295 43.7305C616.045 43.4258 615.92 43.0234 615.92 42.5234V39.043H614.795V38.7617C615.178 38.5898 615.498 38.3086 615.756 37.918C616.014 37.5195 616.24 37.0312 616.436 36.4531H616.881ZM623.209 38.0234C623.607 38.0234 623.971 38.1133 624.299 38.293C624.627 38.4648 624.889 38.7305 625.084 39.0898C625.279 39.4414 625.377 39.8867 625.377 40.4258V44H624.416L624.404 40.5195C624.404 40.0117 624.291 39.625 624.064 39.3594C623.846 39.0938 623.506 38.9609 623.045 38.9609C622.732 38.9609 622.42 39.0781 622.107 39.3125C621.803 39.5391 621.533 39.8047 621.299 40.1094V44H620.338V35.5625H621.299V39.0664C621.424 38.9102 621.584 38.7539 621.779 38.5977C621.975 38.4336 622.193 38.2969 622.436 38.1875C622.686 38.0781 622.943 38.0234 623.209 38.0234ZM633.686 38.0234C634.193 38.0234 634.65 38.1484 635.057 38.3984C635.471 38.6406 635.799 38.9844 636.041 39.4297C636.291 39.8672 636.416 40.3828 636.416 40.9766C636.416 41.6172 636.291 42.1797 636.041 42.6641C635.799 43.1406 635.463 43.5117 635.033 43.7773C634.611 44.043 634.131 44.1758 633.592 44.1758C633.256 44.1758 632.912 44.0859 632.561 43.9062C632.217 43.7266 631.92 43.4961 631.67 43.2148V46.8125H630.709V38.1406H631.67V39.1367C631.873 38.8242 632.146 38.5625 632.49 38.3516C632.842 38.1328 633.24 38.0234 633.686 38.0234ZM633.533 38.9609C633.182 38.9609 632.861 39.0508 632.572 39.2305C632.291 39.4102 632.068 39.6602 631.904 39.9805C631.748 40.293 631.67 40.6602 631.67 41.082L631.682 42.207C631.932 42.5117 632.193 42.7617 632.467 42.957C632.74 43.1445 633.057 43.2383 633.416 43.2383C633.838 43.2383 634.197 43.1289 634.494 42.9102C634.791 42.6914 635.018 42.4102 635.174 42.0664C635.338 41.7148 635.42 41.3516 635.42 40.9766C635.42 40.5938 635.342 40.2539 635.186 39.957C635.029 39.6523 634.811 39.4102 634.529 39.2305C634.248 39.0508 633.916 38.9609 633.533 38.9609ZM638.959 38.1406V39.3125C639.186 38.9219 639.459 38.6094 639.779 38.375C640.1 38.1406 640.428 38.0234 640.764 38.0234C640.99 38.0234 641.193 38.0625 641.373 38.1406V39.2539C641.123 39.1055 640.873 39.0312 640.623 39.0312C640.225 39.0312 639.9 39.1719 639.65 39.4531C639.408 39.7344 639.178 40.0703 638.959 40.4609V44H637.998V38.1406H638.959ZM645.252 38.0234C645.846 38.0234 646.373 38.1641 646.834 38.4453C647.295 38.7266 647.654 39.1016 647.912 39.5703C648.178 40.0391 648.311 40.5508 648.311 41.1055C648.311 41.6602 648.178 42.1719 647.912 42.6406C647.654 43.1016 647.295 43.4727 646.834 43.7539C646.373 44.0352 645.846 44.1758 645.252 44.1758C644.658 44.1758 644.131 44.0352 643.67 43.7539C643.209 43.4727 642.846 43.1016 642.58 42.6406C642.322 42.1719 642.193 41.6602 642.193 41.1055C642.193 40.5508 642.322 40.0391 642.58 39.5703C642.846 39.1016 643.209 38.7266 643.67 38.4453C644.131 38.1641 644.658 38.0234 645.252 38.0234ZM645.252 38.9609C644.838 38.9609 644.475 39.0625 644.162 39.2656C643.85 39.4609 643.607 39.7227 643.436 40.0508C643.271 40.3711 643.189 40.7227 643.189 41.1055C643.189 41.4805 643.271 41.832 643.436 42.1602C643.607 42.4805 643.85 42.7422 644.162 42.9453C644.475 43.1406 644.838 43.2383 645.252 43.2383C645.674 43.2383 646.037 43.1406 646.342 42.9453C646.654 42.7422 646.893 42.4805 647.057 42.1602C647.229 41.832 647.314 41.4805 647.314 41.1055C647.314 40.7227 647.229 40.3711 647.057 40.0508C646.893 39.7227 646.654 39.4609 646.342 39.2656C646.037 39.0625 645.674 38.9609 645.252 38.9609ZM652.869 38.0234C653.377 38.0234 653.834 38.1484 654.24 38.3984C654.654 38.6406 654.982 38.9844 655.225 39.4297C655.475 39.8672 655.6 40.3828 655.6 40.9766C655.6 41.6172 655.475 42.1797 655.225 42.6641C654.982 43.1406 654.646 43.5117 654.217 43.7773C653.795 44.043 653.314 44.1758 652.775 44.1758C652.439 44.1758 652.096 44.0859 651.744 43.9062C651.4 43.7266 651.104 43.4961 650.854 43.2148V46.8125H649.893V38.1406H650.854V39.1367C651.057 38.8242 651.33 38.5625 651.674 38.3516C652.025 38.1328 652.424 38.0234 652.869 38.0234ZM652.717 38.9609C652.365 38.9609 652.045 39.0508 651.756 39.2305C651.475 39.4102 651.252 39.6602 651.088 39.9805C650.932 40.293 650.854 40.6602 650.854 41.082L650.865 42.207C651.115 42.5117 651.377 42.7617 651.65 42.957C651.924 43.1445 652.24 43.2383 652.6 43.2383C653.021 43.2383 653.381 43.1289 653.678 42.9102C653.975 42.6914 654.201 42.4102 654.357 42.0664C654.521 41.7148 654.604 41.3516 654.604 40.9766C654.604 40.5938 654.525 40.2539 654.369 39.957C654.213 39.6523 653.994 39.4102 653.713 39.2305C653.432 39.0508 653.1 38.9609 652.717 38.9609ZM659.596 38.0234C660.197 38.0234 660.697 38.1484 661.096 38.3984C661.494 38.6484 661.791 38.9883 661.986 39.418C662.189 39.8477 662.291 40.332 662.291 40.8711V41.4453H657.791C657.838 41.7734 657.951 42.0742 658.131 42.3477C658.311 42.6211 658.545 42.8398 658.834 43.0039C659.123 43.1602 659.455 43.2383 659.83 43.2383C660.252 43.2383 660.646 43.1328 661.014 42.9219C661.381 42.7031 661.689 42.4648 661.939 42.207L661.928 43.25C661.818 43.3828 661.654 43.5234 661.436 43.6719C661.225 43.8125 660.979 43.9297 660.697 44.0234C660.424 44.125 660.135 44.1758 659.83 44.1758C659.236 44.1758 658.709 44.0352 658.248 43.7539C657.787 43.4727 657.424 43.1016 657.158 42.6406C656.9 42.1719 656.771 41.6602 656.771 41.1055C656.771 40.5508 656.893 40.0391 657.135 39.5703C657.377 39.1016 657.709 38.7266 658.131 38.4453C658.561 38.1641 659.049 38.0234 659.596 38.0234ZM659.596 38.9609C659.111 38.9609 658.713 39.125 658.4 39.4531C658.088 39.7734 657.893 40.1641 657.814 40.625H661.342C661.303 40.2422 661.193 39.9297 661.014 39.6875C660.842 39.4453 660.631 39.2656 660.381 39.1484C660.131 39.0234 659.869 38.9609 659.596 38.9609ZM664.834 38.1406V39.3125C665.061 38.9219 665.334 38.6094 665.654 38.375C665.975 38.1406 666.303 38.0234 666.639 38.0234C666.865 38.0234 667.068 38.0625 667.248 38.1406V39.2539C666.998 39.1055 666.748 39.0312 666.498 39.0312C666.1 39.0312 665.775 39.1719 665.525 39.4531C665.283 39.7344 665.053 40.0703 664.834 40.4609V44H663.873V38.1406H664.834ZM674.971 38.0234C675.479 38.0234 675.936 38.1484 676.342 38.3984C676.756 38.6406 677.084 38.9844 677.326 39.4297C677.576 39.8672 677.701 40.3828 677.701 40.9766C677.701 41.6172 677.576 42.1797 677.326 42.6641C677.084 43.1406 676.748 43.5117 676.318 43.7773C675.896 44.043 675.416 44.1758 674.877 44.1758C674.541 44.1758 674.197 44.0859 673.846 43.9062C673.502 43.7266 673.205 43.4961 672.955 43.2148V46.8125H671.994V38.1406H672.955V39.1367C673.158 38.8242 673.432 38.5625 673.775 38.3516C674.127 38.1328 674.525 38.0234 674.971 38.0234ZM674.818 38.9609C674.467 38.9609 674.146 39.0508 673.857 39.2305C673.576 39.4102 673.354 39.6602 673.189 39.9805C673.033 40.293 672.955 40.6602 672.955 41.082L672.967 42.207C673.217 42.5117 673.479 42.7617 673.752 42.957C674.025 43.1445 674.342 43.2383 674.701 43.2383C675.123 43.2383 675.482 43.1289 675.779 42.9102C676.076 42.6914 676.303 42.4102 676.459 42.0664C676.623 41.7148 676.705 41.3516 676.705 40.9766C676.705 40.5938 676.627 40.2539 676.471 39.957C676.314 39.6523 676.096 39.4102 675.814 39.2305C675.533 39.0508 675.201 38.9609 674.818 38.9609ZM681.697 38.0234C682.299 38.0234 682.799 38.1484 683.197 38.3984C683.596 38.6484 683.893 38.9883 684.088 39.418C684.291 39.8477 684.393 40.332 684.393 40.8711V41.4453H679.893C679.939 41.7734 680.053 42.0742 680.232 42.3477C680.412 42.6211 680.646 42.8398 680.936 43.0039C681.225 43.1602 681.557 43.2383 681.932 43.2383C682.354 43.2383 682.748 43.1328 683.115 42.9219C683.482 42.7031 683.791 42.4648 684.041 42.207L684.029 43.25C683.92 43.3828 683.756 43.5234 683.537 43.6719C683.326 43.8125 683.08 43.9297 682.799 44.0234C682.525 44.125 682.236 44.1758 681.932 44.1758C681.338 44.1758 680.811 44.0352 680.35 43.7539C679.889 43.4727 679.525 43.1016 679.26 42.6406C679.002 42.1719 678.873 41.6602 678.873 41.1055C678.873 40.5508 678.994 40.0391 679.236 39.5703C679.479 39.1016 679.811 38.7266 680.232 38.4453C680.662 38.1641 681.15 38.0234 681.697 38.0234ZM681.697 38.9609C681.213 38.9609 680.814 39.125 680.502 39.4531C680.189 39.7734 679.994 40.1641 679.916 40.625H683.443C683.404 40.2422 683.295 39.9297 683.115 39.6875C682.943 39.4453 682.732 39.2656 682.482 39.1484C682.232 39.0234 681.971 38.9609 681.697 38.9609ZM686.936 38.1406V39.3125C687.162 38.9219 687.436 38.6094 687.756 38.375C688.076 38.1406 688.404 38.0234 688.74 38.0234C688.967 38.0234 689.17 38.0625 689.35 38.1406V39.2539C689.1 39.1055 688.85 39.0312 688.6 39.0312C688.201 39.0312 687.877 39.1719 687.627 39.4531C687.385 39.7344 687.154 40.0703 686.936 40.4609V44H685.975V38.1406H686.936ZM691.541 38.1406V38.8906C691.729 38.6797 691.967 38.4844 692.256 38.3047C692.553 38.1172 692.9 38.0234 693.299 38.0234C693.721 38.0234 694.115 38.125 694.482 38.3281C694.85 38.5234 695.131 38.8203 695.326 39.2188C695.6 38.8906 695.896 38.6094 696.217 38.375C696.537 38.1406 696.912 38.0234 697.342 38.0234C697.74 38.0234 698.111 38.1133 698.455 38.293C698.807 38.4648 699.088 38.7305 699.299 39.0898C699.518 39.4414 699.627 39.8867 699.627 40.4258V44H698.666L698.654 40.5195C698.654 40.0117 698.521 39.625 698.256 39.3594C697.998 39.0938 697.639 38.9609 697.178 38.9609C696.842 38.9609 696.549 39.0664 696.299 39.2773C696.049 39.4883 695.811 39.7344 695.584 40.0156V44H694.623L694.611 40.5195C694.611 40.0117 694.479 39.625 694.213 39.3594C693.955 39.0938 693.596 38.9609 693.135 38.9609C692.814 38.9609 692.521 39.0547 692.256 39.2422C691.998 39.4297 691.76 39.6562 691.541 39.9219V44H690.58V38.1406H691.541ZM702.381 35.3281C702.607 35.3281 702.795 35.4102 702.943 35.5742C703.1 35.7305 703.178 35.9141 703.178 36.125C703.178 36.3281 703.1 36.5117 702.943 36.6758C702.795 36.8398 702.607 36.9219 702.381 36.9219C702.154 36.9219 701.963 36.8398 701.807 36.6758C701.658 36.5117 701.584 36.3281 701.584 36.125C701.584 35.9141 701.658 35.7305 701.807 35.5742C701.963 35.4102 702.154 35.3281 702.381 35.3281ZM702.979 38.1406V44H702.018V39.043H701.092V38.1406H702.979ZM706.799 38.0234C707.143 38.0234 707.463 38.0742 707.76 38.1758C708.057 38.2695 708.271 38.3672 708.404 38.4688V39.5C708.24 39.375 708.018 39.2539 707.736 39.1367C707.455 39.0195 707.166 38.9609 706.869 38.9609C706.502 38.9609 706.225 39.0469 706.037 39.2188C705.857 39.3906 705.768 39.5703 705.768 39.7578C705.768 39.9062 705.818 40.0586 705.92 40.2148C706.029 40.3633 706.217 40.4844 706.482 40.5781L707.467 40.9297C707.85 41.0625 708.135 41.2539 708.322 41.5039C708.51 41.7539 708.604 42.0469 708.604 42.3828C708.604 42.7109 708.51 43.0117 708.322 43.2852C708.143 43.5586 707.889 43.7773 707.561 43.9414C707.24 44.0977 706.869 44.1758 706.447 44.1758C706.221 44.1758 705.982 44.1445 705.732 44.082C705.49 44.0273 705.271 43.9609 705.076 43.8828C704.881 43.7969 704.736 43.7227 704.643 43.6602V42.6289C704.752 42.707 704.904 42.7969 705.1 42.8984C705.303 42.9922 705.518 43.0742 705.744 43.1445C705.971 43.207 706.182 43.2383 706.377 43.2383C706.744 43.2383 707.033 43.1562 707.244 42.9922C707.463 42.8281 707.572 42.625 707.572 42.3828C707.572 42.1953 707.498 42.0469 707.35 41.9375C707.209 41.8281 707.002 41.7227 706.729 41.6211L705.861 41.3047C705.408 41.1328 705.107 40.918 704.959 40.6602C704.811 40.3945 704.736 40.0938 704.736 39.7578C704.736 39.2578 704.924 38.8438 705.299 38.5156C705.674 38.1875 706.174 38.0234 706.799 38.0234ZM711.814 38.0234C712.158 38.0234 712.479 38.0742 712.775 38.1758C713.072 38.2695 713.287 38.3672 713.42 38.4688V39.5C713.256 39.375 713.033 39.2539 712.752 39.1367C712.471 39.0195 712.182 38.9609 711.885 38.9609C711.518 38.9609 711.24 39.0469 711.053 39.2188C710.873 39.3906 710.783 39.5703 710.783 39.7578C710.783 39.9062 710.834 40.0586 710.936 40.2148C711.045 40.3633 711.232 40.4844 711.498 40.5781L712.482 40.9297C712.865 41.0625 713.15 41.2539 713.338 41.5039C713.525 41.7539 713.619 42.0469 713.619 42.3828C713.619 42.7109 713.525 43.0117 713.338 43.2852C713.158 43.5586 712.904 43.7773 712.576 43.9414C712.256 44.0977 711.885 44.1758 711.463 44.1758C711.236 44.1758 710.998 44.1445 710.748 44.082C710.506 44.0273 710.287 43.9609 710.092 43.8828C709.896 43.7969 709.752 43.7227 709.658 43.6602V42.6289C709.768 42.707 709.92 42.7969 710.115 42.8984C710.318 42.9922 710.533 43.0742 710.76 43.1445C710.986 43.207 711.197 43.2383 711.393 43.2383C711.76 43.2383 712.049 43.1562 712.26 42.9922C712.479 42.8281 712.588 42.625 712.588 42.3828C712.588 42.1953 712.514 42.0469 712.365 41.9375C712.225 41.8281 712.018 41.7227 711.744 41.6211L710.877 41.3047C710.424 41.1328 710.123 40.918 709.975 40.6602C709.826 40.3945 709.752 40.0938 709.752 39.7578C709.752 39.2578 709.939 38.8438 710.314 38.5156C710.689 38.1875 711.189 38.0234 711.814 38.0234ZM716.021 35.3281C716.248 35.3281 716.436 35.4102 716.584 35.5742C716.74 35.7305 716.818 35.9141 716.818 36.125C716.818 36.3281 716.74 36.5117 716.584 36.6758C716.436 36.8398 716.248 36.9219 716.021 36.9219C715.795 36.9219 715.604 36.8398 715.447 36.6758C715.299 36.5117 715.225 36.3281 715.225 36.125C715.225 35.9141 715.299 35.7305 715.447 35.5742C715.604 35.4102 715.795 35.3281 716.021 35.3281ZM716.619 38.1406V44H715.658V39.043H714.732V38.1406H716.619ZM721.342 38.0234C721.936 38.0234 722.463 38.1641 722.924 38.4453C723.385 38.7266 723.744 39.1016 724.002 39.5703C724.268 40.0391 724.4 40.5508 724.4 41.1055C724.4 41.6602 724.268 42.1719 724.002 42.6406C723.744 43.1016 723.385 43.4727 722.924 43.7539C722.463 44.0352 721.936 44.1758 721.342 44.1758C720.748 44.1758 720.221 44.0352 719.76 43.7539C719.299 43.4727 718.936 43.1016 718.67 42.6406C718.412 42.1719 718.283 41.6602 718.283 41.1055C718.283 40.5508 718.412 40.0391 718.67 39.5703C718.936 39.1016 719.299 38.7266 719.76 38.4453C720.221 38.1641 720.748 38.0234 721.342 38.0234ZM721.342 38.9609C720.928 38.9609 720.564 39.0625 720.252 39.2656C719.939 39.4609 719.697 39.7227 719.525 40.0508C719.361 40.3711 719.279 40.7227 719.279 41.1055C719.279 41.4805 719.361 41.832 719.525 42.1602C719.697 42.4805 719.939 42.7422 720.252 42.9453C720.564 43.1406 720.928 43.2383 721.342 43.2383C721.764 43.2383 722.127 43.1406 722.432 42.9453C722.744 42.7422 722.982 42.4805 723.146 42.1602C723.318 41.832 723.404 41.4805 723.404 41.1055C723.404 40.7227 723.318 40.3711 723.146 40.0508C722.982 39.7227 722.744 39.4609 722.432 39.2656C722.127 39.0625 721.764 38.9609 721.342 38.9609ZM726.943 38.1406V39.0664C727.068 38.9102 727.229 38.7539 727.424 38.5977C727.619 38.4336 727.838 38.2969 728.08 38.1875C728.33 38.0781 728.588 38.0234 728.854 38.0234C729.252 38.0234 729.615 38.1133 729.943 38.293C730.271 38.4648 730.533 38.7305 730.729 39.0898C730.924 39.4414 731.021 39.8867 731.021 40.4258V44H730.061L730.049 40.5195C730.049 40.0117 729.936 39.625 729.709 39.3594C729.49 39.0938 729.15 38.9609 728.689 38.9609C728.377 38.9609 728.064 39.0781 727.752 39.3125C727.447 39.5391 727.178 39.8047 726.943 40.1094V44H725.982V38.1406H726.943ZM603.814 53.0234C604.244 53.0234 604.615 53.0938 604.928 53.2344C605.24 53.3672 605.455 53.4883 605.572 53.5977V54.5703C605.354 54.4062 605.104 54.2656 604.822 54.1484C604.541 54.0234 604.205 53.9609 603.814 53.9609C603.4 53.9609 603.037 54.0625 602.725 54.2656C602.412 54.4609 602.17 54.7227 601.998 55.0508C601.834 55.3711 601.752 55.7227 601.752 56.1055C601.752 56.4805 601.834 56.832 601.998 57.1602C602.17 57.4805 602.412 57.7422 602.725 57.9453C603.037 58.1406 603.4 58.2383 603.814 58.2383C604.205 58.2383 604.541 58.1797 604.822 58.0625C605.104 57.9375 605.354 57.793 605.572 57.6289V58.6016C605.455 58.7188 605.24 58.8438 604.928 58.9766C604.615 59.1094 604.244 59.1758 603.814 59.1758C603.221 59.1758 602.693 59.0352 602.232 58.7539C601.771 58.4727 601.408 58.1016 601.143 57.6406C600.885 57.1719 600.756 56.6602 600.756 56.1055C600.756 55.5508 600.885 55.0391 601.143 54.5703C601.408 54.1016 601.771 53.7266 602.232 53.4453C602.693 53.1641 603.221 53.0234 603.814 53.0234ZM609.568 53.0234C609.904 53.0234 610.244 53.1055 610.588 53.2695C610.939 53.4258 611.24 53.6445 611.49 53.9258V53.1406H612.451V59H611.49V58.0039C611.287 58.3164 611.01 58.5898 610.658 58.8242C610.314 59.0586 609.92 59.1758 609.475 59.1758C608.975 59.1758 608.518 59.0508 608.104 58.8008C607.689 58.543 607.357 58.1875 607.107 57.7344C606.865 57.2812 606.744 56.7578 606.744 56.1641C606.744 55.5156 606.865 54.957 607.107 54.4883C607.357 54.0195 607.697 53.6602 608.127 53.4102C608.557 53.1523 609.037 53.0234 609.568 53.0234ZM609.744 53.9609C609.322 53.9609 608.963 54.0664 608.666 54.2773C608.369 54.4883 608.139 54.7617 607.975 55.0977C607.818 55.4258 607.74 55.7812 607.74 56.1641C607.74 56.5391 607.818 56.8867 607.975 57.207C608.131 57.5195 608.35 57.7695 608.631 57.957C608.92 58.1445 609.252 58.2383 609.627 58.2383C609.986 58.2383 610.307 58.1445 610.588 57.957C610.869 57.7695 611.092 57.5117 611.256 57.1836C611.42 56.8477 611.498 56.4727 611.49 56.0586L611.479 54.9336C611.236 54.6289 610.975 54.3906 610.693 54.2188C610.42 54.0469 610.104 53.9609 609.744 53.9609ZM615.404 53.1406V54.0664C615.529 53.9102 615.689 53.7539 615.885 53.5977C616.08 53.4336 616.299 53.2969 616.541 53.1875C616.791 53.0781 617.049 53.0234 617.314 53.0234C617.713 53.0234 618.076 53.1133 618.404 53.293C618.732 53.4648 618.994 53.7305 619.189 54.0898C619.385 54.4414 619.482 54.8867 619.482 55.4258V59H618.521L618.51 55.5195C618.51 55.0117 618.396 54.625 618.17 54.3594C617.951 54.0938 617.611 53.9609 617.15 53.9609C616.838 53.9609 616.525 54.0781 616.213 54.3125C615.908 54.5391 615.639 54.8047 615.404 55.1094V59H614.443V53.1406H615.404ZM627.229 53.0234C627.564 53.0234 627.904 53.1055 628.248 53.2695C628.6 53.4258 628.9 53.6445 629.15 53.9258V53.1406H630.111V59H629.15V58.0039C628.947 58.3164 628.67 58.5898 628.318 58.8242C627.975 59.0586 627.58 59.1758 627.135 59.1758C626.635 59.1758 626.178 59.0508 625.764 58.8008C625.35 58.543 625.018 58.1875 624.768 57.7344C624.525 57.2812 624.404 56.7578 624.404 56.1641C624.404 55.5156 624.525 54.957 624.768 54.4883C625.018 54.0195 625.357 53.6602 625.787 53.4102C626.217 53.1523 626.697 53.0234 627.229 53.0234ZM627.404 53.9609C626.982 53.9609 626.623 54.0664 626.326 54.2773C626.029 54.4883 625.799 54.7617 625.635 55.0977C625.479 55.4258 625.4 55.7812 625.4 56.1641C625.4 56.5391 625.479 56.8867 625.635 57.207C625.791 57.5195 626.01 57.7695 626.291 57.957C626.58 58.1445 626.912 58.2383 627.287 58.2383C627.646 58.2383 627.967 58.1445 628.248 57.957C628.529 57.7695 628.752 57.5117 628.916 57.1836C629.08 56.8477 629.158 56.4727 629.15 56.0586L629.139 54.9336C628.896 54.6289 628.635 54.3906 628.354 54.2188C628.08 54.0469 627.764 53.9609 627.404 53.9609ZM635.08 53.0234C635.588 53.0234 636.045 53.1484 636.451 53.3984C636.865 53.6406 637.193 53.9844 637.436 54.4297C637.686 54.8672 637.811 55.3828 637.811 55.9766C637.811 56.6172 637.686 57.1797 637.436 57.6641C637.193 58.1406 636.857 58.5117 636.428 58.7773C636.006 59.043 635.525 59.1758 634.986 59.1758C634.65 59.1758 634.307 59.0859 633.955 58.9062C633.611 58.7266 633.314 58.4961 633.064 58.2148V61.8125H632.104V53.1406H633.064V54.1367C633.268 53.8242 633.541 53.5625 633.885 53.3516C634.236 53.1328 634.635 53.0234 635.08 53.0234ZM634.928 53.9609C634.576 53.9609 634.256 54.0508 633.967 54.2305C633.686 54.4102 633.463 54.6602 633.299 54.9805C633.143 55.293 633.064 55.6602 633.064 56.082L633.076 57.207C633.326 57.5117 633.588 57.7617 633.861 57.957C634.135 58.1445 634.451 58.2383 634.811 58.2383C635.232 58.2383 635.592 58.1289 635.889 57.9102C636.186 57.6914 636.412 57.4102 636.568 57.0664C636.732 56.7148 636.814 56.3516 636.814 55.9766C636.814 55.5938 636.736 55.2539 636.58 54.957C636.424 54.6523 636.205 54.4102 635.924 54.2305C635.643 54.0508 635.311 53.9609 634.928 53.9609ZM642.369 53.0234C642.877 53.0234 643.334 53.1484 643.74 53.3984C644.154 53.6406 644.482 53.9844 644.725 54.4297C644.975 54.8672 645.1 55.3828 645.1 55.9766C645.1 56.6172 644.975 57.1797 644.725 57.6641C644.482 58.1406 644.146 58.5117 643.717 58.7773C643.295 59.043 642.814 59.1758 642.275 59.1758C641.939 59.1758 641.596 59.0859 641.244 58.9062C640.9 58.7266 640.604 58.4961 640.354 58.2148V61.8125H639.393V53.1406H640.354V54.1367C640.557 53.8242 640.83 53.5625 641.174 53.3516C641.525 53.1328 641.924 53.0234 642.369 53.0234ZM642.217 53.9609C641.865 53.9609 641.545 54.0508 641.256 54.2305C640.975 54.4102 640.752 54.6602 640.588 54.9805C640.432 55.293 640.354 55.6602 640.354 56.082L640.365 57.207C640.615 57.5117 640.877 57.7617 641.15 57.957C641.424 58.1445 641.74 58.2383 642.1 58.2383C642.521 58.2383 642.881 58.1289 643.178 57.9102C643.475 57.6914 643.701 57.4102 643.857 57.0664C644.021 56.7148 644.104 56.3516 644.104 55.9766C644.104 55.5938 644.025 55.2539 643.869 54.957C643.713 54.6523 643.494 54.4102 643.213 54.2305C642.932 54.0508 642.6 53.9609 642.217 53.9609ZM647.643 50.5625V59H646.682V50.5625H647.643ZM649.963 53.1406L652.014 57.4531L654.006 53.1406H655.154L650.842 61.8125H649.729L651.404 58.6484L648.814 53.1406H649.963ZM662.49 53.0234C662.92 53.0234 663.291 53.0938 663.604 53.2344C663.916 53.3672 664.131 53.4883 664.248 53.5977V54.5703C664.029 54.4062 663.779 54.2656 663.498 54.1484C663.217 54.0234 662.881 53.9609 662.49 53.9609C662.076 53.9609 661.713 54.0625 661.4 54.2656C661.088 54.4609 660.846 54.7227 660.674 55.0508C660.51 55.3711 660.428 55.7227 660.428 56.1055C660.428 56.4805 660.51 56.832 660.674 57.1602C660.846 57.4805 661.088 57.7422 661.4 57.9453C661.713 58.1406 662.076 58.2383 662.49 58.2383C662.881 58.2383 663.217 58.1797 663.498 58.0625C663.779 57.9375 664.029 57.793 664.248 57.6289V58.6016C664.131 58.7188 663.916 58.8438 663.604 58.9766C663.291 59.1094 662.92 59.1758 662.49 59.1758C661.896 59.1758 661.369 59.0352 660.908 58.7539C660.447 58.4727 660.084 58.1016 659.818 57.6406C659.561 57.1719 659.432 56.6602 659.432 56.1055C659.432 55.5508 659.561 55.0391 659.818 54.5703C660.084 54.1016 660.447 53.7266 660.908 53.4453C661.369 53.1641 661.896 53.0234 662.49 53.0234ZM668.701 53.0234C669.1 53.0234 669.463 53.1133 669.791 53.293C670.119 53.4648 670.381 53.7305 670.576 54.0898C670.771 54.4414 670.869 54.8867 670.869 55.4258V59H669.908L669.896 55.5195C669.896 55.0117 669.783 54.625 669.557 54.3594C669.338 54.0938 668.998 53.9609 668.537 53.9609C668.225 53.9609 667.912 54.0781 667.6 54.3125C667.295 54.5391 667.025 54.8047 666.791 55.1094V59H665.83V50.5625H666.791V54.0664C666.916 53.9102 667.076 53.7539 667.271 53.5977C667.467 53.4336 667.686 53.2969 667.928 53.1875C668.178 53.0781 668.436 53.0234 668.701 53.0234ZM675.1 53.0234C675.436 53.0234 675.775 53.1055 676.119 53.2695C676.471 53.4258 676.771 53.6445 677.021 53.9258V53.1406H677.982V59H677.021V58.0039C676.818 58.3164 676.541 58.5898 676.189 58.8242C675.846 59.0586 675.451 59.1758 675.006 59.1758C674.506 59.1758 674.049 59.0508 673.635 58.8008C673.221 58.543 672.889 58.1875 672.639 57.7344C672.396 57.2812 672.275 56.7578 672.275 56.1641C672.275 55.5156 672.396 54.957 672.639 54.4883C672.889 54.0195 673.229 53.6602 673.658 53.4102C674.088 53.1523 674.568 53.0234 675.1 53.0234ZM675.275 53.9609C674.854 53.9609 674.494 54.0664 674.197 54.2773C673.9 54.4883 673.67 54.7617 673.506 55.0977C673.35 55.4258 673.271 55.7812 673.271 56.1641C673.271 56.5391 673.35 56.8867 673.506 57.207C673.662 57.5195 673.881 57.7695 674.162 57.957C674.451 58.1445 674.783 58.2383 675.158 58.2383C675.518 58.2383 675.838 58.1445 676.119 57.957C676.4 57.7695 676.623 57.5117 676.787 57.1836C676.951 56.8477 677.029 56.4727 677.021 56.0586L677.01 54.9336C676.768 54.6289 676.506 54.3906 676.225 54.2188C675.951 54.0469 675.635 53.9609 675.275 53.9609ZM680.936 53.1406V54.0664C681.061 53.9102 681.221 53.7539 681.416 53.5977C681.611 53.4336 681.83 53.2969 682.072 53.1875C682.322 53.0781 682.58 53.0234 682.846 53.0234C683.244 53.0234 683.607 53.1133 683.936 53.293C684.264 53.4648 684.525 53.7305 684.721 54.0898C684.916 54.4414 685.014 54.8867 685.014 55.4258V59H684.053L684.041 55.5195C684.041 55.0117 683.928 54.625 683.701 54.3594C683.482 54.0938 683.143 53.9609 682.682 53.9609C682.369 53.9609 682.057 54.0781 681.744 54.3125C681.439 54.5391 681.17 54.8047 680.936 55.1094V59H679.975V53.1406H680.936ZM689.244 53.0234C689.58 53.0234 689.92 53.1055 690.264 53.2695C690.615 53.4258 690.916 53.6445 691.166 53.9258V53.1406H692.127V58.8828C692.127 59.5781 691.986 60.1562 691.705 60.6172C691.424 61.0781 691.049 61.4219 690.58 61.6484C690.111 61.875 689.6 61.9883 689.045 61.9883C688.686 61.9883 688.377 61.9453 688.119 61.8594C687.869 61.7812 687.654 61.6797 687.475 61.5547C687.295 61.4375 687.131 61.3242 686.982 61.2148V60.1836C687.1 60.2695 687.252 60.3789 687.439 60.5117C687.635 60.6523 687.865 60.7773 688.131 60.8867C688.404 60.9961 688.709 61.0508 689.045 61.0508C689.428 61.0508 689.779 60.9805 690.1 60.8398C690.42 60.6992 690.678 60.4922 690.873 60.2188C691.068 59.9453 691.166 59.6172 691.166 59.2344V58.0039C690.963 58.3164 690.686 58.5898 690.334 58.8242C689.99 59.0586 689.596 59.1758 689.15 59.1758C688.65 59.1758 688.193 59.0508 687.779 58.8008C687.365 58.543 687.033 58.1875 686.783 57.7344C686.541 57.2812 686.42 56.7578 686.42 56.1641C686.42 55.5156 686.541 54.957 686.783 54.4883C687.033 54.0195 687.373 53.6602 687.803 53.4102C688.232 53.1523 688.713 53.0234 689.244 53.0234ZM689.42 53.9727C688.998 53.9727 688.639 54.0781 688.342 54.2891C688.045 54.4922 687.814 54.7617 687.65 55.0977C687.494 55.4258 687.416 55.7812 687.416 56.1641C687.416 56.5391 687.494 56.8828 687.65 57.1953C687.807 57.5078 688.025 57.7578 688.307 57.9453C688.596 58.1328 688.928 58.2266 689.303 58.2266C689.662 58.2266 689.982 58.1328 690.264 57.9453C690.545 57.7578 690.768 57.5 690.932 57.1719C691.096 56.8438 691.174 56.4727 691.166 56.0586L691.154 54.9336C690.912 54.6289 690.65 54.3945 690.369 54.2305C690.096 54.0586 689.779 53.9727 689.42 53.9727ZM696.533 53.0234C697.135 53.0234 697.635 53.1484 698.033 53.3984C698.432 53.6484 698.729 53.9883 698.924 54.418C699.127 54.8477 699.229 55.332 699.229 55.8711V56.4453H694.729C694.775 56.7734 694.889 57.0742 695.068 57.3477C695.248 57.6211 695.482 57.8398 695.771 58.0039C696.061 58.1602 696.393 58.2383 696.768 58.2383C697.189 58.2383 697.584 58.1328 697.951 57.9219C698.318 57.7031 698.627 57.4648 698.877 57.207L698.865 58.25C698.756 58.3828 698.592 58.5234 698.373 58.6719C698.162 58.8125 697.916 58.9297 697.635 59.0234C697.361 59.125 697.072 59.1758 696.768 59.1758C696.174 59.1758 695.646 59.0352 695.186 58.7539C694.725 58.4727 694.361 58.1016 694.096 57.6406C693.838 57.1719 693.709 56.6602 693.709 56.1055C693.709 55.5508 693.83 55.0391 694.072 54.5703C694.314 54.1016 694.646 53.7266 695.068 53.4453C695.498 53.1641 695.986 53.0234 696.533 53.0234ZM696.533 53.9609C696.049 53.9609 695.65 54.125 695.338 54.4531C695.025 54.7734 694.83 55.1641 694.752 55.625H698.279C698.24 55.2422 698.131 54.9297 697.951 54.6875C697.779 54.4453 697.568 54.2656 697.318 54.1484C697.068 54.0234 696.807 53.9609 696.533 53.9609ZM702.557 53.0234C702.9 53.0234 703.221 53.0742 703.518 53.1758C703.814 53.2695 704.029 53.3672 704.162 53.4688V54.5C703.998 54.375 703.775 54.2539 703.494 54.1367C703.213 54.0195 702.924 53.9609 702.627 53.9609C702.26 53.9609 701.982 54.0469 701.795 54.2188C701.615 54.3906 701.525 54.5703 701.525 54.7578C701.525 54.9062 701.576 55.0586 701.678 55.2148C701.787 55.3633 701.975 55.4844 702.24 55.5781L703.225 55.9297C703.607 56.0625 703.893 56.2539 704.08 56.5039C704.268 56.7539 704.361 57.0469 704.361 57.3828C704.361 57.7109 704.268 58.0117 704.08 58.2852C703.9 58.5586 703.646 58.7773 703.318 58.9414C702.998 59.0977 702.627 59.1758 702.205 59.1758C701.979 59.1758 701.74 59.1445 701.49 59.082C701.248 59.0273 701.029 58.9609 700.834 58.8828C700.639 58.7969 700.494 58.7227 700.4 58.6602V57.6289C700.51 57.707 700.662 57.7969 700.857 57.8984C701.061 57.9922 701.275 58.0742 701.502 58.1445C701.729 58.207 701.939 58.2383 702.135 58.2383C702.502 58.2383 702.791 58.1562 703.002 57.9922C703.221 57.8281 703.33 57.625 703.33 57.3828C703.33 57.1953 703.256 57.0469 703.107 56.9375C702.967 56.8281 702.76 56.7227 702.486 56.6211L701.619 56.3047C701.166 56.1328 700.865 55.918 700.717 55.6602C700.568 55.3945 700.494 55.0938 700.494 54.7578C700.494 54.2578 700.682 53.8438 701.057 53.5156C701.432 53.1875 701.932 53.0234 702.557 53.0234Z",fill:"#615BC2"}),c.createElement("circle",{cx:652.5,cy:82.8965,r:5,transform:"rotate(180 652.5 82.8965)",fill:"#6C65E5",stroke:"#F2F2F5",strokeWidth:2}),c.createElement("path",{d:"M652.5 68L652.5 85.4923",stroke:"#6C65E5",strokeWidth:1.5,strokeLinecap:"round"}),c.createElement("path",{d:"M512.779 224.635C513.445 224.635 513.987 224.726 514.406 224.908C514.835 225.09 515.208 225.327 515.527 225.619V226.973C515.327 226.827 515.099 226.667 514.844 226.494C514.598 226.321 514.306 226.171 513.969 226.043C513.641 225.906 513.244 225.838 512.779 225.838C512.096 225.838 511.485 225.993 510.947 226.303C510.41 226.613 509.986 227.041 509.676 227.588C509.366 228.126 509.211 228.736 509.211 229.42C509.211 230.104 509.366 230.714 509.676 231.252C509.986 231.79 510.41 232.218 510.947 232.537C511.485 232.847 512.096 233.002 512.779 233.002C513.481 233.002 514.078 232.888 514.57 232.66C515.072 232.423 515.482 232.182 515.801 231.936V233.166C515.482 233.449 515.062 233.695 514.543 233.904C514.033 234.105 513.445 234.205 512.779 234.205C512.087 234.205 511.449 234.082 510.865 233.836C510.282 233.581 509.771 233.234 509.334 232.797C508.896 232.359 508.555 231.854 508.309 231.279C508.072 230.696 507.953 230.076 507.953 229.42C507.953 228.764 508.072 228.148 508.309 227.574C508.555 226.991 508.896 226.48 509.334 226.043C509.771 225.605 510.282 225.264 510.865 225.018C511.449 224.762 512.087 224.635 512.779 224.635ZM520.996 227.027C521.461 227.027 521.885 227.132 522.268 227.342C522.65 227.542 522.956 227.852 523.184 228.271C523.411 228.682 523.525 229.201 523.525 229.83V234H522.404L522.391 229.939C522.391 229.347 522.258 228.896 521.994 228.586C521.739 228.276 521.342 228.121 520.805 228.121C520.44 228.121 520.076 228.258 519.711 228.531C519.355 228.796 519.041 229.105 518.768 229.461V234H517.646V224.156H518.768V228.244C518.913 228.062 519.1 227.88 519.328 227.697C519.556 227.506 519.811 227.346 520.094 227.219C520.385 227.091 520.686 227.027 520.996 227.027ZM528.461 227.027C528.853 227.027 529.249 227.123 529.65 227.314C530.061 227.497 530.411 227.752 530.703 228.08V227.164H531.824V234H530.703V232.838C530.466 233.202 530.143 233.521 529.732 233.795C529.331 234.068 528.871 234.205 528.352 234.205C527.768 234.205 527.235 234.059 526.752 233.768C526.269 233.467 525.882 233.052 525.59 232.523C525.307 231.995 525.166 231.384 525.166 230.691C525.166 229.935 525.307 229.283 525.59 228.736C525.882 228.189 526.278 227.77 526.779 227.479C527.281 227.178 527.841 227.027 528.461 227.027ZM528.666 228.121C528.174 228.121 527.755 228.244 527.408 228.49C527.062 228.736 526.793 229.055 526.602 229.447C526.419 229.83 526.328 230.245 526.328 230.691C526.328 231.129 526.419 231.535 526.602 231.908C526.784 232.273 527.039 232.564 527.367 232.783C527.704 233.002 528.092 233.111 528.529 233.111C528.949 233.111 529.322 233.002 529.65 232.783C529.979 232.564 530.238 232.264 530.43 231.881C530.621 231.489 530.712 231.051 530.703 230.568L530.689 229.256C530.407 228.9 530.102 228.622 529.773 228.422C529.454 228.221 529.085 228.121 528.666 228.121ZM535.27 227.164V228.244C535.415 228.062 535.602 227.88 535.83 227.697C536.058 227.506 536.313 227.346 536.596 227.219C536.887 227.091 537.188 227.027 537.498 227.027C537.963 227.027 538.387 227.132 538.77 227.342C539.152 227.542 539.458 227.852 539.686 228.271C539.913 228.682 540.027 229.201 540.027 229.83V234H538.906L538.893 229.939C538.893 229.347 538.76 228.896 538.496 228.586C538.241 228.276 537.844 228.121 537.307 228.121C536.942 228.121 536.577 228.258 536.213 228.531C535.857 228.796 535.543 229.105 535.27 229.461V234H534.148V227.164H535.27ZM544.963 227.027C545.355 227.027 545.751 227.123 546.152 227.314C546.562 227.497 546.913 227.752 547.205 228.08V227.164H548.326V233.863C548.326 234.674 548.162 235.349 547.834 235.887C547.506 236.424 547.068 236.826 546.521 237.09C545.975 237.354 545.378 237.486 544.73 237.486C544.311 237.486 543.951 237.436 543.65 237.336C543.359 237.245 543.108 237.126 542.898 236.98C542.689 236.844 542.497 236.712 542.324 236.584V235.381C542.461 235.481 542.639 235.609 542.857 235.764C543.085 235.928 543.354 236.074 543.664 236.201C543.983 236.329 544.339 236.393 544.73 236.393C545.177 236.393 545.587 236.311 545.961 236.146C546.335 235.982 546.635 235.741 546.863 235.422C547.091 235.103 547.205 234.72 547.205 234.273V232.838C546.968 233.202 546.645 233.521 546.234 233.795C545.833 234.068 545.373 234.205 544.854 234.205C544.27 234.205 543.737 234.059 543.254 233.768C542.771 233.467 542.383 233.052 542.092 232.523C541.809 231.995 541.668 231.384 541.668 230.691C541.668 229.935 541.809 229.283 542.092 228.736C542.383 228.189 542.78 227.77 543.281 227.479C543.783 227.178 544.343 227.027 544.963 227.027ZM545.168 228.135C544.676 228.135 544.257 228.258 543.91 228.504C543.564 228.741 543.295 229.055 543.104 229.447C542.921 229.83 542.83 230.245 542.83 230.691C542.83 231.129 542.921 231.53 543.104 231.895C543.286 232.259 543.541 232.551 543.869 232.77C544.206 232.988 544.594 233.098 545.031 233.098C545.451 233.098 545.824 232.988 546.152 232.77C546.48 232.551 546.74 232.25 546.932 231.867C547.123 231.484 547.214 231.051 547.205 230.568L547.191 229.256C546.909 228.9 546.604 228.627 546.275 228.436C545.956 228.235 545.587 228.135 545.168 228.135ZM553.467 227.027C554.169 227.027 554.752 227.173 555.217 227.465C555.682 227.757 556.028 228.153 556.256 228.654C556.493 229.156 556.611 229.721 556.611 230.35V231.02H551.361C551.416 231.402 551.548 231.753 551.758 232.072C551.967 232.391 552.241 232.646 552.578 232.838C552.915 233.02 553.303 233.111 553.74 233.111C554.232 233.111 554.693 232.988 555.121 232.742C555.549 232.487 555.91 232.209 556.201 231.908L556.188 233.125C556.06 233.28 555.868 233.444 555.613 233.617C555.367 233.781 555.08 233.918 554.752 234.027C554.433 234.146 554.096 234.205 553.74 234.205C553.048 234.205 552.432 234.041 551.895 233.713C551.357 233.385 550.933 232.952 550.623 232.414C550.322 231.867 550.172 231.27 550.172 230.623C550.172 229.976 550.313 229.379 550.596 228.832C550.878 228.285 551.266 227.848 551.758 227.52C552.259 227.191 552.829 227.027 553.467 227.027ZM553.467 228.121C552.902 228.121 552.437 228.312 552.072 228.695C551.708 229.069 551.48 229.525 551.389 230.062H555.504C555.458 229.616 555.331 229.251 555.121 228.969C554.921 228.686 554.674 228.477 554.383 228.34C554.091 228.194 553.786 228.121 553.467 228.121ZM560.494 227.027C560.895 227.027 561.269 227.087 561.615 227.205C561.962 227.314 562.212 227.428 562.367 227.547V228.75C562.176 228.604 561.916 228.463 561.588 228.326C561.26 228.189 560.923 228.121 560.576 228.121C560.148 228.121 559.824 228.221 559.605 228.422C559.396 228.622 559.291 228.832 559.291 229.051C559.291 229.224 559.35 229.402 559.469 229.584C559.596 229.757 559.815 229.898 560.125 230.008L561.273 230.418C561.72 230.573 562.053 230.796 562.271 231.088C562.49 231.38 562.6 231.721 562.6 232.113C562.6 232.496 562.49 232.847 562.271 233.166C562.062 233.485 561.766 233.74 561.383 233.932C561.009 234.114 560.576 234.205 560.084 234.205C559.82 234.205 559.542 234.169 559.25 234.096C558.967 234.032 558.712 233.954 558.484 233.863C558.257 233.763 558.088 233.676 557.979 233.604V232.4C558.106 232.492 558.284 232.596 558.512 232.715C558.749 232.824 558.999 232.92 559.264 233.002C559.528 233.075 559.774 233.111 560.002 233.111C560.43 233.111 560.768 233.016 561.014 232.824C561.269 232.633 561.396 232.396 561.396 232.113C561.396 231.895 561.31 231.721 561.137 231.594C560.973 231.466 560.731 231.343 560.412 231.225L559.4 230.855C558.872 230.655 558.521 230.404 558.348 230.104C558.174 229.794 558.088 229.443 558.088 229.051C558.088 228.467 558.307 227.984 558.744 227.602C559.182 227.219 559.765 227.027 560.494 227.027ZM571.5 227.027C572.001 227.027 572.434 227.109 572.799 227.273C573.163 227.428 573.414 227.57 573.551 227.697V228.832C573.296 228.641 573.004 228.477 572.676 228.34C572.348 228.194 571.956 228.121 571.5 228.121C571.017 228.121 570.593 228.24 570.229 228.477C569.864 228.704 569.581 229.01 569.381 229.393C569.189 229.766 569.094 230.176 569.094 230.623C569.094 231.061 569.189 231.471 569.381 231.854C569.581 232.227 569.864 232.533 570.229 232.77C570.593 232.997 571.017 233.111 571.5 233.111C571.956 233.111 572.348 233.043 572.676 232.906C573.004 232.76 573.296 232.592 573.551 232.4V233.535C573.414 233.672 573.163 233.818 572.799 233.973C572.434 234.128 572.001 234.205 571.5 234.205C570.807 234.205 570.192 234.041 569.654 233.713C569.117 233.385 568.693 232.952 568.383 232.414C568.082 231.867 567.932 231.27 567.932 230.623C567.932 229.976 568.082 229.379 568.383 228.832C568.693 228.285 569.117 227.848 569.654 227.52C570.192 227.191 570.807 227.027 571.5 227.027ZM578.213 227.027C578.605 227.027 579.001 227.123 579.402 227.314C579.812 227.497 580.163 227.752 580.455 228.08V227.164H581.576V234H580.455V232.838C580.218 233.202 579.895 233.521 579.484 233.795C579.083 234.068 578.623 234.205 578.104 234.205C577.52 234.205 576.987 234.059 576.504 233.768C576.021 233.467 575.633 233.052 575.342 232.523C575.059 231.995 574.918 231.384 574.918 230.691C574.918 229.935 575.059 229.283 575.342 228.736C575.633 228.189 576.03 227.77 576.531 227.479C577.033 227.178 577.593 227.027 578.213 227.027ZM578.418 228.121C577.926 228.121 577.507 228.244 577.16 228.49C576.814 228.736 576.545 229.055 576.354 229.447C576.171 229.83 576.08 230.245 576.08 230.691C576.08 231.129 576.171 231.535 576.354 231.908C576.536 232.273 576.791 232.564 577.119 232.783C577.456 233.002 577.844 233.111 578.281 233.111C578.701 233.111 579.074 233.002 579.402 232.783C579.73 232.564 579.99 232.264 580.182 231.881C580.373 231.489 580.464 231.051 580.455 230.568L580.441 229.256C580.159 228.9 579.854 228.622 579.525 228.422C579.206 228.221 578.837 228.121 578.418 228.121ZM585.021 227.164V228.244C585.167 228.062 585.354 227.88 585.582 227.697C585.81 227.506 586.065 227.346 586.348 227.219C586.639 227.091 586.94 227.027 587.25 227.027C587.715 227.027 588.139 227.132 588.521 227.342C588.904 227.542 589.21 227.852 589.438 228.271C589.665 228.682 589.779 229.201 589.779 229.83V234H588.658L588.645 229.939C588.645 229.347 588.512 228.896 588.248 228.586C587.993 228.276 587.596 228.121 587.059 228.121C586.694 228.121 586.329 228.258 585.965 228.531C585.609 228.796 585.295 229.105 585.021 229.461V234H583.9V227.164H585.021ZM594.988 227.027C595.49 227.027 595.923 227.109 596.287 227.273C596.652 227.428 596.902 227.57 597.039 227.697V228.832C596.784 228.641 596.492 228.477 596.164 228.34C595.836 228.194 595.444 228.121 594.988 228.121C594.505 228.121 594.081 228.24 593.717 228.477C593.352 228.704 593.07 229.01 592.869 229.393C592.678 229.766 592.582 230.176 592.582 230.623C592.582 231.061 592.678 231.471 592.869 231.854C593.07 232.227 593.352 232.533 593.717 232.77C594.081 232.997 594.505 233.111 594.988 233.111C595.444 233.111 595.836 233.043 596.164 232.906C596.492 232.76 596.784 232.592 597.039 232.4V233.535C596.902 233.672 596.652 233.818 596.287 233.973C595.923 234.128 595.49 234.205 594.988 234.205C594.296 234.205 593.68 234.041 593.143 233.713C592.605 233.385 592.181 232.952 591.871 232.414C591.57 231.867 591.42 231.27 591.42 230.623C591.42 229.976 591.57 229.379 591.871 228.832C592.181 228.285 592.605 227.848 593.143 227.52C593.68 227.191 594.296 227.027 594.988 227.027ZM601.701 227.027C602.403 227.027 602.986 227.173 603.451 227.465C603.916 227.757 604.262 228.153 604.49 228.654C604.727 229.156 604.846 229.721 604.846 230.35V231.02H599.596C599.65 231.402 599.783 231.753 599.992 232.072C600.202 232.391 600.475 232.646 600.812 232.838C601.15 233.02 601.537 233.111 601.975 233.111C602.467 233.111 602.927 232.988 603.355 232.742C603.784 232.487 604.144 232.209 604.436 231.908L604.422 233.125C604.294 233.28 604.103 233.444 603.848 233.617C603.602 233.781 603.314 233.918 602.986 234.027C602.667 234.146 602.33 234.205 601.975 234.205C601.282 234.205 600.667 234.041 600.129 233.713C599.591 233.385 599.167 232.952 598.857 232.414C598.557 231.867 598.406 231.27 598.406 230.623C598.406 229.976 598.548 229.379 598.83 228.832C599.113 228.285 599.5 227.848 599.992 227.52C600.493 227.191 601.063 227.027 601.701 227.027ZM601.701 228.121C601.136 228.121 600.671 228.312 600.307 228.695C599.942 229.069 599.714 229.525 599.623 230.062H603.738C603.693 229.616 603.565 229.251 603.355 228.969C603.155 228.686 602.909 228.477 602.617 228.34C602.326 228.194 602.02 228.121 601.701 228.121ZM607.812 224.156V234H606.691V224.156H607.812ZM611.258 224.156V234H610.137V224.156H611.258ZM616.398 227.027C617.1 227.027 617.684 227.173 618.148 227.465C618.613 227.757 618.96 228.153 619.188 228.654C619.424 229.156 619.543 229.721 619.543 230.35V231.02H614.293C614.348 231.402 614.48 231.753 614.689 232.072C614.899 232.391 615.173 232.646 615.51 232.838C615.847 233.02 616.234 233.111 616.672 233.111C617.164 233.111 617.624 232.988 618.053 232.742C618.481 232.487 618.841 232.209 619.133 231.908L619.119 233.125C618.992 233.28 618.8 233.444 618.545 233.617C618.299 233.781 618.012 233.918 617.684 234.027C617.365 234.146 617.027 234.205 616.672 234.205C615.979 234.205 615.364 234.041 614.826 233.713C614.288 233.385 613.865 232.952 613.555 232.414C613.254 231.867 613.104 231.27 613.104 230.623C613.104 229.976 613.245 229.379 613.527 228.832C613.81 228.285 614.197 227.848 614.689 227.52C615.191 227.191 615.76 227.027 616.398 227.027ZM616.398 228.121C615.833 228.121 615.368 228.312 615.004 228.695C614.639 229.069 614.411 229.525 614.32 230.062H618.436C618.39 229.616 618.262 229.251 618.053 228.969C617.852 228.686 617.606 228.477 617.314 228.34C617.023 228.194 616.717 228.121 616.398 228.121ZM627.568 224.156V234H626.447V232.838C626.21 233.202 625.887 233.521 625.477 233.795C625.076 234.068 624.615 234.205 624.096 234.205C623.512 234.205 622.979 234.059 622.496 233.768C622.013 233.467 621.626 233.052 621.334 232.523C621.051 231.995 620.91 231.384 620.91 230.691C620.91 229.935 621.051 229.283 621.334 228.736C621.626 228.189 622.022 227.77 622.523 227.479C623.025 227.178 623.585 227.027 624.205 227.027C624.597 227.027 624.993 227.123 625.395 227.314C625.805 227.497 626.156 227.752 626.447 228.08V224.156H627.568ZM624.41 228.148C623.918 228.148 623.499 228.271 623.152 228.518C622.806 228.755 622.537 229.064 622.346 229.447C622.163 229.83 622.072 230.245 622.072 230.691C622.072 231.129 622.163 231.535 622.346 231.908C622.528 232.273 622.783 232.564 623.111 232.783C623.449 233.002 623.836 233.111 624.273 233.111C624.693 233.111 625.066 233.002 625.395 232.783C625.723 232.564 625.982 232.264 626.174 231.881C626.365 231.489 626.456 231.051 626.447 230.568L626.434 229.256C626.151 228.9 625.846 228.627 625.518 228.436C625.199 228.244 624.829 228.148 624.41 228.148Z",fill:"#D11525"}),c.createElement("circle",{cx:259,cy:158,r:5,fill:"#6C65E5",stroke:"#F2F2F5",strokeWidth:2}),c.createElement("path",{d:"M259 154.643L259 59",stroke:"#6C65E5",strokeWidth:1.5,strokeLinecap:"round"}),c.createElement("path",{d:"M213.379 33.125V37.8945C213.379 38.5742 213.234 39.1602 212.945 39.6523C212.664 40.1367 212.281 40.5078 211.797 40.7656C211.312 41.0234 210.762 41.1523 210.145 41.1523C209.535 41.1523 208.984 41.0234 208.492 40.7656C208.008 40.5078 207.621 40.1367 207.332 39.6523C207.051 39.1602 206.91 38.5742 206.91 37.8945V33.125H207.965V37.8594C207.965 38.3906 208.062 38.8203 208.258 39.1484C208.461 39.4766 208.727 39.7148 209.055 39.8633C209.391 40.0039 209.754 40.0742 210.145 40.0742C210.535 40.0664 210.895 39.9922 211.223 39.8516C211.559 39.7031 211.824 39.4688 212.02 39.1484C212.223 38.8203 212.324 38.3906 212.324 37.8594V33.125H213.379ZM217.293 35.0234C217.637 35.0234 217.957 35.0742 218.254 35.1758C218.551 35.2695 218.766 35.3672 218.898 35.4688V36.5C218.734 36.375 218.512 36.2539 218.23 36.1367C217.949 36.0195 217.66 35.9609 217.363 35.9609C216.996 35.9609 216.719 36.0469 216.531 36.2188C216.352 36.3906 216.262 36.5703 216.262 36.7578C216.262 36.9062 216.312 37.0586 216.414 37.2148C216.523 37.3633 216.711 37.4844 216.977 37.5781L217.961 37.9297C218.344 38.0625 218.629 38.2539 218.816 38.5039C219.004 38.7539 219.098 39.0469 219.098 39.3828C219.098 39.7109 219.004 40.0117 218.816 40.2852C218.637 40.5586 218.383 40.7773 218.055 40.9414C217.734 41.0977 217.363 41.1758 216.941 41.1758C216.715 41.1758 216.477 41.1445 216.227 41.082C215.984 41.0273 215.766 40.9609 215.57 40.8828C215.375 40.7969 215.23 40.7227 215.137 40.6602V39.6289C215.246 39.707 215.398 39.7969 215.594 39.8984C215.797 39.9922 216.012 40.0742 216.238 40.1445C216.465 40.207 216.676 40.2383 216.871 40.2383C217.238 40.2383 217.527 40.1562 217.738 39.9922C217.957 39.8281 218.066 39.625 218.066 39.3828C218.066 39.1953 217.992 39.0469 217.844 38.9375C217.703 38.8281 217.496 38.7227 217.223 38.6211L216.355 38.3047C215.902 38.1328 215.602 37.918 215.453 37.6602C215.305 37.3945 215.23 37.0938 215.23 36.7578C215.23 36.2578 215.418 35.8438 215.793 35.5156C216.168 35.1875 216.668 35.0234 217.293 35.0234ZM222.977 35.0234C223.578 35.0234 224.078 35.1484 224.477 35.3984C224.875 35.6484 225.172 35.9883 225.367 36.418C225.57 36.8477 225.672 37.332 225.672 37.8711V38.4453H221.172C221.219 38.7734 221.332 39.0742 221.512 39.3477C221.691 39.6211 221.926 39.8398 222.215 40.0039C222.504 40.1602 222.836 40.2383 223.211 40.2383C223.633 40.2383 224.027 40.1328 224.395 39.9219C224.762 39.7031 225.07 39.4648 225.32 39.207L225.309 40.25C225.199 40.3828 225.035 40.5234 224.816 40.6719C224.605 40.8125 224.359 40.9297 224.078 41.0234C223.805 41.125 223.516 41.1758 223.211 41.1758C222.617 41.1758 222.09 41.0352 221.629 40.7539C221.168 40.4727 220.805 40.1016 220.539 39.6406C220.281 39.1719 220.152 38.6602 220.152 38.1055C220.152 37.5508 220.273 37.0391 220.516 36.5703C220.758 36.1016 221.09 35.7266 221.512 35.4453C221.941 35.1641 222.43 35.0234 222.977 35.0234ZM222.977 35.9609C222.492 35.9609 222.094 36.125 221.781 36.4531C221.469 36.7734 221.273 37.1641 221.195 37.625H224.723C224.684 37.2422 224.574 36.9297 224.395 36.6875C224.223 36.4453 224.012 36.2656 223.762 36.1484C223.512 36.0234 223.25 35.9609 222.977 35.9609ZM228.215 35.1406V36.3125C228.441 35.9219 228.715 35.6094 229.035 35.375C229.355 35.1406 229.684 35.0234 230.02 35.0234C230.246 35.0234 230.449 35.0625 230.629 35.1406V36.2539C230.379 36.1055 230.129 36.0312 229.879 36.0312C229.48 36.0312 229.156 36.1719 228.906 36.4531C228.664 36.7344 228.434 37.0703 228.215 37.4609V41H227.254V35.1406H228.215ZM236.312 32.3281C236.539 32.3281 236.727 32.4102 236.875 32.5742C237.031 32.7305 237.109 32.9141 237.109 33.125C237.109 33.3281 237.031 33.5117 236.875 33.6758C236.727 33.8398 236.539 33.9219 236.312 33.9219C236.086 33.9219 235.895 33.8398 235.738 33.6758C235.59 33.5117 235.516 33.3281 235.516 33.125C235.516 32.9141 235.59 32.7305 235.738 32.5742C235.895 32.4102 236.086 32.3281 236.312 32.3281ZM236.91 35.1406V41H235.949V36.043H235.023V35.1406H236.91ZM240.73 35.0234C241.074 35.0234 241.395 35.0742 241.691 35.1758C241.988 35.2695 242.203 35.3672 242.336 35.4688V36.5C242.172 36.375 241.949 36.2539 241.668 36.1367C241.387 36.0195 241.098 35.9609 240.801 35.9609C240.434 35.9609 240.156 36.0469 239.969 36.2188C239.789 36.3906 239.699 36.5703 239.699 36.7578C239.699 36.9062 239.75 37.0586 239.852 37.2148C239.961 37.3633 240.148 37.4844 240.414 37.5781L241.398 37.9297C241.781 38.0625 242.066 38.2539 242.254 38.5039C242.441 38.7539 242.535 39.0469 242.535 39.3828C242.535 39.7109 242.441 40.0117 242.254 40.2852C242.074 40.5586 241.82 40.7773 241.492 40.9414C241.172 41.0977 240.801 41.1758 240.379 41.1758C240.152 41.1758 239.914 41.1445 239.664 41.082C239.422 41.0273 239.203 40.9609 239.008 40.8828C238.812 40.7969 238.668 40.7227 238.574 40.6602V39.6289C238.684 39.707 238.836 39.7969 239.031 39.8984C239.234 39.9922 239.449 40.0742 239.676 40.1445C239.902 40.207 240.113 40.2383 240.309 40.2383C240.676 40.2383 240.965 40.1562 241.176 39.9922C241.395 39.8281 241.504 39.625 241.504 39.3828C241.504 39.1953 241.43 39.0469 241.281 38.9375C241.141 38.8281 240.934 38.7227 240.66 38.6211L239.793 38.3047C239.34 38.1328 239.039 37.918 238.891 37.6602C238.742 37.3945 238.668 37.0938 238.668 36.7578C238.668 36.2578 238.855 35.8438 239.23 35.5156C239.605 35.1875 240.105 35.0234 240.73 35.0234ZM249.262 35.0234C249.605 35.0234 249.926 35.0742 250.223 35.1758C250.52 35.2695 250.734 35.3672 250.867 35.4688V36.5C250.703 36.375 250.48 36.2539 250.199 36.1367C249.918 36.0195 249.629 35.9609 249.332 35.9609C248.965 35.9609 248.688 36.0469 248.5 36.2188C248.32 36.3906 248.23 36.5703 248.23 36.7578C248.23 36.9062 248.281 37.0586 248.383 37.2148C248.492 37.3633 248.68 37.4844 248.945 37.5781L249.93 37.9297C250.312 38.0625 250.598 38.2539 250.785 38.5039C250.973 38.7539 251.066 39.0469 251.066 39.3828C251.066 39.7109 250.973 40.0117 250.785 40.2852C250.605 40.5586 250.352 40.7773 250.023 40.9414C249.703 41.0977 249.332 41.1758 248.91 41.1758C248.684 41.1758 248.445 41.1445 248.195 41.082C247.953 41.0273 247.734 40.9609 247.539 40.8828C247.344 40.7969 247.199 40.7227 247.105 40.6602V39.6289C247.215 39.707 247.367 39.7969 247.562 39.8984C247.766 39.9922 247.98 40.0742 248.207 40.1445C248.434 40.207 248.645 40.2383 248.84 40.2383C249.207 40.2383 249.496 40.1562 249.707 39.9922C249.926 39.8281 250.035 39.625 250.035 39.3828C250.035 39.1953 249.961 39.0469 249.812 38.9375C249.672 38.8281 249.465 38.7227 249.191 38.6211L248.324 38.3047C247.871 38.1328 247.57 37.918 247.422 37.6602C247.273 37.3945 247.199 37.0938 247.199 36.7578C247.199 36.2578 247.387 35.8438 247.762 35.5156C248.137 35.1875 248.637 35.0234 249.262 35.0234ZM254.945 35.0234C255.547 35.0234 256.047 35.1484 256.445 35.3984C256.844 35.6484 257.141 35.9883 257.336 36.418C257.539 36.8477 257.641 37.332 257.641 37.8711V38.4453H253.141C253.188 38.7734 253.301 39.0742 253.48 39.3477C253.66 39.6211 253.895 39.8398 254.184 40.0039C254.473 40.1602 254.805 40.2383 255.18 40.2383C255.602 40.2383 255.996 40.1328 256.363 39.9219C256.73 39.7031 257.039 39.4648 257.289 39.207L257.277 40.25C257.168 40.3828 257.004 40.5234 256.785 40.6719C256.574 40.8125 256.328 40.9297 256.047 41.0234C255.773 41.125 255.484 41.1758 255.18 41.1758C254.586 41.1758 254.059 41.0352 253.598 40.7539C253.137 40.4727 252.773 40.1016 252.508 39.6406C252.25 39.1719 252.121 38.6602 252.121 38.1055C252.121 37.5508 252.242 37.0391 252.484 36.5703C252.727 36.1016 253.059 35.7266 253.48 35.4453C253.91 35.1641 254.398 35.0234 254.945 35.0234ZM254.945 35.9609C254.461 35.9609 254.062 36.125 253.75 36.4531C253.438 36.7734 253.242 37.1641 253.164 37.625H256.691C256.652 37.2422 256.543 36.9297 256.363 36.6875C256.191 36.4453 255.98 36.2656 255.73 36.1484C255.48 36.0234 255.219 35.9609 254.945 35.9609ZM260.184 35.1406V36.0664C260.309 35.9102 260.469 35.7539 260.664 35.5977C260.859 35.4336 261.078 35.2969 261.32 35.1875C261.57 35.0781 261.828 35.0234 262.094 35.0234C262.492 35.0234 262.855 35.1133 263.184 35.293C263.512 35.4648 263.773 35.7305 263.969 36.0898C264.164 36.4414 264.262 36.8867 264.262 37.4258V41H263.301L263.289 37.5195C263.289 37.0117 263.176 36.625 262.949 36.3594C262.73 36.0938 262.391 35.9609 261.93 35.9609C261.617 35.9609 261.305 36.0781 260.992 36.3125C260.688 36.5391 260.418 36.8047 260.184 37.1094V41H259.223V35.1406H260.184ZM271.375 32.5625V41H270.414V40.0039C270.211 40.3164 269.934 40.5898 269.582 40.8242C269.238 41.0586 268.844 41.1758 268.398 41.1758C267.898 41.1758 267.441 41.0508 267.027 40.8008C266.613 40.543 266.281 40.1875 266.031 39.7344C265.789 39.2812 265.668 38.7578 265.668 38.1641C265.668 37.5156 265.789 36.957 266.031 36.4883C266.281 36.0195 266.621 35.6602 267.051 35.4102C267.48 35.1523 267.961 35.0234 268.492 35.0234C268.828 35.0234 269.168 35.1055 269.512 35.2695C269.863 35.4258 270.164 35.6445 270.414 35.9258V32.5625H271.375ZM268.668 35.9844C268.246 35.9844 267.887 36.0898 267.59 36.3008C267.293 36.5039 267.062 36.7695 266.898 37.0977C266.742 37.4258 266.664 37.7812 266.664 38.1641C266.664 38.5391 266.742 38.8867 266.898 39.207C267.055 39.5195 267.273 39.7695 267.555 39.957C267.844 40.1445 268.176 40.2383 268.551 40.2383C268.91 40.2383 269.23 40.1445 269.512 39.957C269.793 39.7695 270.016 39.5117 270.18 39.1836C270.344 38.8477 270.422 38.4727 270.414 38.0586L270.402 36.9336C270.16 36.6289 269.898 36.3945 269.617 36.2305C269.344 36.0664 269.027 35.9844 268.668 35.9844ZM274.305 32.3281C274.531 32.3281 274.719 32.4102 274.867 32.5742C275.023 32.7305 275.102 32.9141 275.102 33.125C275.102 33.3281 275.023 33.5117 274.867 33.6758C274.719 33.8398 274.531 33.9219 274.305 33.9219C274.078 33.9219 273.887 33.8398 273.73 33.6758C273.582 33.5117 273.508 33.3281 273.508 33.125C273.508 32.9141 273.582 32.7305 273.73 32.5742C273.887 32.4102 274.078 32.3281 274.305 32.3281ZM274.902 35.1406V41H273.941V36.043H273.016V35.1406H274.902ZM277.938 35.1406V36.0664C278.062 35.9102 278.223 35.7539 278.418 35.5977C278.613 35.4336 278.832 35.2969 279.074 35.1875C279.324 35.0781 279.582 35.0234 279.848 35.0234C280.246 35.0234 280.609 35.1133 280.938 35.293C281.266 35.4648 281.527 35.7305 281.723 36.0898C281.918 36.4414 282.016 36.8867 282.016 37.4258V41H281.055L281.043 37.5195C281.043 37.0117 280.93 36.625 280.703 36.3594C280.484 36.0938 280.145 35.9609 279.684 35.9609C279.371 35.9609 279.059 36.0781 278.746 36.3125C278.441 36.5391 278.172 36.8047 277.938 37.1094V41H276.977V35.1406H277.938ZM286.246 35.0234C286.582 35.0234 286.922 35.1055 287.266 35.2695C287.617 35.4258 287.918 35.6445 288.168 35.9258V35.1406H289.129V40.8828C289.129 41.5781 288.988 42.1562 288.707 42.6172C288.426 43.0781 288.051 43.4219 287.582 43.6484C287.113 43.875 286.602 43.9883 286.047 43.9883C285.688 43.9883 285.379 43.9453 285.121 43.8594C284.871 43.7812 284.656 43.6797 284.477 43.5547C284.297 43.4375 284.133 43.3242 283.984 43.2148V42.1836C284.102 42.2695 284.254 42.3789 284.441 42.5117C284.637 42.6523 284.867 42.7773 285.133 42.8867C285.406 42.9961 285.711 43.0508 286.047 43.0508C286.43 43.0508 286.781 42.9805 287.102 42.8398C287.422 42.6992 287.68 42.4922 287.875 42.2188C288.07 41.9453 288.168 41.6172 288.168 41.2344V40.0039C287.965 40.3164 287.688 40.5898 287.336 40.8242C286.992 41.0586 286.598 41.1758 286.152 41.1758C285.652 41.1758 285.195 41.0508 284.781 40.8008C284.367 40.543 284.035 40.1875 283.785 39.7344C283.543 39.2812 283.422 38.7578 283.422 38.1641C283.422 37.5156 283.543 36.957 283.785 36.4883C284.035 36.0195 284.375 35.6602 284.805 35.4102C285.234 35.1523 285.715 35.0234 286.246 35.0234ZM286.422 35.9727C286 35.9727 285.641 36.0781 285.344 36.2891C285.047 36.4922 284.816 36.7617 284.652 37.0977C284.496 37.4258 284.418 37.7812 284.418 38.1641C284.418 38.5391 284.496 38.8828 284.652 39.1953C284.809 39.5078 285.027 39.7578 285.309 39.9453C285.598 40.1328 285.93 40.2266 286.305 40.2266C286.664 40.2266 286.984 40.1328 287.266 39.9453C287.547 39.7578 287.77 39.5 287.934 39.1719C288.098 38.8438 288.176 38.4727 288.168 38.0586L288.156 36.9336C287.914 36.6289 287.652 36.3945 287.371 36.2305C287.098 36.0586 286.781 35.9727 286.422 35.9727ZM296.254 33.4531V35.1406H297.965V36.043H296.254V39.4766C296.254 39.7188 296.316 39.9102 296.441 40.0508C296.566 40.1914 296.758 40.2617 297.016 40.2617C297.25 40.2617 297.445 40.2344 297.602 40.1797C297.758 40.1172 297.895 40.0508 298.012 39.9805V40.7656C297.855 40.8906 297.688 40.9883 297.508 41.0586C297.336 41.1367 297.102 41.1758 296.805 41.1758C296.305 41.1758 295.926 41.0273 295.668 40.7305C295.418 40.4258 295.293 40.0234 295.293 39.5234V36.043H294.168V35.7617C294.551 35.5898 294.871 35.3086 295.129 34.918C295.387 34.5195 295.613 34.0312 295.809 33.4531H296.254ZM302.582 35.0234C302.98 35.0234 303.344 35.1133 303.672 35.293C304 35.4648 304.262 35.7305 304.457 36.0898C304.652 36.4414 304.75 36.8867 304.75 37.4258V41H303.789L303.777 37.5195C303.777 37.0117 303.664 36.625 303.438 36.3594C303.219 36.0938 302.879 35.9609 302.418 35.9609C302.105 35.9609 301.793 36.0781 301.48 36.3125C301.176 36.5391 300.906 36.8047 300.672 37.1094V41H299.711V32.5625H300.672V36.0664C300.797 35.9102 300.957 35.7539 301.152 35.5977C301.348 35.4336 301.566 35.2969 301.809 35.1875C302.059 35.0781 302.316 35.0234 302.582 35.0234ZM308.98 35.0234C309.582 35.0234 310.082 35.1484 310.48 35.3984C310.879 35.6484 311.176 35.9883 311.371 36.418C311.574 36.8477 311.676 37.332 311.676 37.8711V38.4453H307.176C307.223 38.7734 307.336 39.0742 307.516 39.3477C307.695 39.6211 307.93 39.8398 308.219 40.0039C308.508 40.1602 308.84 40.2383 309.215 40.2383C309.637 40.2383 310.031 40.1328 310.398 39.9219C310.766 39.7031 311.074 39.4648 311.324 39.207L311.312 40.25C311.203 40.3828 311.039 40.5234 310.82 40.6719C310.609 40.8125 310.363 40.9297 310.082 41.0234C309.809 41.125 309.52 41.1758 309.215 41.1758C308.621 41.1758 308.094 41.0352 307.633 40.7539C307.172 40.4727 306.809 40.1016 306.543 39.6406C306.285 39.1719 306.156 38.6602 306.156 38.1055C306.156 37.5508 306.277 37.0391 306.52 36.5703C306.762 36.1016 307.094 35.7266 307.516 35.4453C307.945 35.1641 308.434 35.0234 308.98 35.0234ZM308.98 35.9609C308.496 35.9609 308.098 36.125 307.785 36.4531C307.473 36.7734 307.277 37.1641 307.199 37.625H310.727C310.688 37.2422 310.578 36.9297 310.398 36.6875C310.227 36.4453 310.016 36.2656 309.766 36.1484C309.516 36.0234 309.254 35.9609 308.98 35.9609ZM195.818 50.0234C196.248 50.0234 196.619 50.0938 196.932 50.2344C197.244 50.3672 197.459 50.4883 197.576 50.5977V51.5703C197.357 51.4062 197.107 51.2656 196.826 51.1484C196.545 51.0234 196.209 50.9609 195.818 50.9609C195.404 50.9609 195.041 51.0625 194.729 51.2656C194.416 51.4609 194.174 51.7227 194.002 52.0508C193.838 52.3711 193.756 52.7227 193.756 53.1055C193.756 53.4805 193.838 53.832 194.002 54.1602C194.174 54.4805 194.416 54.7422 194.729 54.9453C195.041 55.1406 195.404 55.2383 195.818 55.2383C196.209 55.2383 196.545 55.1797 196.826 55.0625C197.107 54.9375 197.357 54.793 197.576 54.6289V55.6016C197.459 55.7188 197.244 55.8438 196.932 55.9766C196.619 56.1094 196.248 56.1758 195.818 56.1758C195.225 56.1758 194.697 56.0352 194.236 55.7539C193.775 55.4727 193.412 55.1016 193.146 54.6406C192.889 54.1719 192.76 53.6602 192.76 53.1055C192.76 52.5508 192.889 52.0391 193.146 51.5703C193.412 51.1016 193.775 50.7266 194.236 50.4453C194.697 50.1641 195.225 50.0234 195.818 50.0234ZM202.029 50.0234C202.428 50.0234 202.791 50.1133 203.119 50.293C203.447 50.4648 203.709 50.7305 203.904 51.0898C204.1 51.4414 204.197 51.8867 204.197 52.4258V56H203.236L203.225 52.5195C203.225 52.0117 203.111 51.625 202.885 51.3594C202.666 51.0938 202.326 50.9609 201.865 50.9609C201.553 50.9609 201.24 51.0781 200.928 51.3125C200.623 51.5391 200.354 51.8047 200.119 52.1094V56H199.158V47.5625H200.119V51.0664C200.244 50.9102 200.404 50.7539 200.6 50.5977C200.795 50.4336 201.014 50.2969 201.256 50.1875C201.506 50.0781 201.764 50.0234 202.029 50.0234ZM208.428 50.0234C208.764 50.0234 209.104 50.1055 209.447 50.2695C209.799 50.4258 210.1 50.6445 210.35 50.9258V50.1406H211.311V56H210.35V55.0039C210.146 55.3164 209.869 55.5898 209.518 55.8242C209.174 56.0586 208.779 56.1758 208.334 56.1758C207.834 56.1758 207.377 56.0508 206.963 55.8008C206.549 55.543 206.217 55.1875 205.967 54.7344C205.725 54.2812 205.604 53.7578 205.604 53.1641C205.604 52.5156 205.725 51.957 205.967 51.4883C206.217 51.0195 206.557 50.6602 206.986 50.4102C207.416 50.1523 207.896 50.0234 208.428 50.0234ZM208.604 50.9609C208.182 50.9609 207.822 51.0664 207.525 51.2773C207.229 51.4883 206.998 51.7617 206.834 52.0977C206.678 52.4258 206.6 52.7812 206.6 53.1641C206.6 53.5391 206.678 53.8867 206.834 54.207C206.99 54.5195 207.209 54.7695 207.49 54.957C207.779 55.1445 208.111 55.2383 208.486 55.2383C208.846 55.2383 209.166 55.1445 209.447 54.957C209.729 54.7695 209.951 54.5117 210.115 54.1836C210.279 53.8477 210.357 53.4727 210.35 53.0586L210.338 51.9336C210.096 51.6289 209.834 51.3906 209.553 51.2188C209.279 51.0469 208.963 50.9609 208.604 50.9609ZM214.264 50.1406V51.0664C214.389 50.9102 214.549 50.7539 214.744 50.5977C214.939 50.4336 215.158 50.2969 215.4 50.1875C215.65 50.0781 215.908 50.0234 216.174 50.0234C216.572 50.0234 216.936 50.1133 217.264 50.293C217.592 50.4648 217.854 50.7305 218.049 51.0898C218.244 51.4414 218.342 51.8867 218.342 52.4258V56H217.381L217.369 52.5195C217.369 52.0117 217.256 51.625 217.029 51.3594C216.811 51.0938 216.471 50.9609 216.01 50.9609C215.697 50.9609 215.385 51.0781 215.072 51.3125C214.768 51.5391 214.498 51.8047 214.264 52.1094V56H213.303V50.1406H214.264ZM222.572 50.0234C222.908 50.0234 223.248 50.1055 223.592 50.2695C223.943 50.4258 224.244 50.6445 224.494 50.9258V50.1406H225.455V55.8828C225.455 56.5781 225.314 57.1562 225.033 57.6172C224.752 58.0781 224.377 58.4219 223.908 58.6484C223.439 58.875 222.928 58.9883 222.373 58.9883C222.014 58.9883 221.705 58.9453 221.447 58.8594C221.197 58.7812 220.982 58.6797 220.803 58.5547C220.623 58.4375 220.459 58.3242 220.311 58.2148V57.1836C220.428 57.2695 220.58 57.3789 220.768 57.5117C220.963 57.6523 221.193 57.7773 221.459 57.8867C221.732 57.9961 222.037 58.0508 222.373 58.0508C222.756 58.0508 223.107 57.9805 223.428 57.8398C223.748 57.6992 224.006 57.4922 224.201 57.2188C224.396 56.9453 224.494 56.6172 224.494 56.2344V55.0039C224.291 55.3164 224.014 55.5898 223.662 55.8242C223.318 56.0586 222.924 56.1758 222.479 56.1758C221.979 56.1758 221.521 56.0508 221.107 55.8008C220.693 55.543 220.361 55.1875 220.111 54.7344C219.869 54.2812 219.748 53.7578 219.748 53.1641C219.748 52.5156 219.869 51.957 220.111 51.4883C220.361 51.0195 220.701 50.6602 221.131 50.4102C221.561 50.1523 222.041 50.0234 222.572 50.0234ZM222.748 50.9727C222.326 50.9727 221.967 51.0781 221.67 51.2891C221.373 51.4922 221.143 51.7617 220.979 52.0977C220.822 52.4258 220.744 52.7812 220.744 53.1641C220.744 53.5391 220.822 53.8828 220.979 54.1953C221.135 54.5078 221.354 54.7578 221.635 54.9453C221.924 55.1328 222.256 55.2266 222.631 55.2266C222.99 55.2266 223.311 55.1328 223.592 54.9453C223.873 54.7578 224.096 54.5 224.26 54.1719C224.424 53.8438 224.502 53.4727 224.494 53.0586L224.482 51.9336C224.24 51.6289 223.979 51.3945 223.697 51.2305C223.424 51.0586 223.107 50.9727 222.748 50.9727ZM229.861 50.0234C230.463 50.0234 230.963 50.1484 231.361 50.3984C231.76 50.6484 232.057 50.9883 232.252 51.418C232.455 51.8477 232.557 52.332 232.557 52.8711V53.4453H228.057C228.104 53.7734 228.217 54.0742 228.396 54.3477C228.576 54.6211 228.811 54.8398 229.1 55.0039C229.389 55.1602 229.721 55.2383 230.096 55.2383C230.518 55.2383 230.912 55.1328 231.279 54.9219C231.646 54.7031 231.955 54.4648 232.205 54.207L232.193 55.25C232.084 55.3828 231.92 55.5234 231.701 55.6719C231.49 55.8125 231.244 55.9297 230.963 56.0234C230.689 56.125 230.4 56.1758 230.096 56.1758C229.502 56.1758 228.975 56.0352 228.514 55.7539C228.053 55.4727 227.689 55.1016 227.424 54.6406C227.166 54.1719 227.037 53.6602 227.037 53.1055C227.037 52.5508 227.158 52.0391 227.4 51.5703C227.643 51.1016 227.975 50.7266 228.396 50.4453C228.826 50.1641 229.314 50.0234 229.861 50.0234ZM229.861 50.9609C229.377 50.9609 228.979 51.125 228.666 51.4531C228.354 51.7734 228.158 52.1641 228.08 52.625H231.607C231.568 52.2422 231.459 51.9297 231.279 51.6875C231.107 51.4453 230.896 51.2656 230.646 51.1484C230.396 51.0234 230.135 50.9609 229.861 50.9609ZM235.885 50.0234C236.229 50.0234 236.549 50.0742 236.846 50.1758C237.143 50.2695 237.357 50.3672 237.49 50.4688V51.5C237.326 51.375 237.104 51.2539 236.822 51.1367C236.541 51.0195 236.252 50.9609 235.955 50.9609C235.588 50.9609 235.311 51.0469 235.123 51.2188C234.943 51.3906 234.854 51.5703 234.854 51.7578C234.854 51.9062 234.904 52.0586 235.006 52.2148C235.115 52.3633 235.303 52.4844 235.568 52.5781L236.553 52.9297C236.936 53.0625 237.221 53.2539 237.408 53.5039C237.596 53.7539 237.689 54.0469 237.689 54.3828C237.689 54.7109 237.596 55.0117 237.408 55.2852C237.229 55.5586 236.975 55.7773 236.646 55.9414C236.326 56.0977 235.955 56.1758 235.533 56.1758C235.307 56.1758 235.068 56.1445 234.818 56.082C234.576 56.0273 234.357 55.9609 234.162 55.8828C233.967 55.7969 233.822 55.7227 233.729 55.6602V54.6289C233.838 54.707 233.99 54.7969 234.186 54.8984C234.389 54.9922 234.604 55.0742 234.83 55.1445C235.057 55.207 235.268 55.2383 235.463 55.2383C235.83 55.2383 236.119 55.1562 236.33 54.9922C236.549 54.8281 236.658 54.625 236.658 54.3828C236.658 54.1953 236.584 54.0469 236.436 53.9375C236.295 53.8281 236.088 53.7227 235.814 53.6211L234.947 53.3047C234.494 53.1328 234.193 52.918 234.045 52.6602C233.896 52.3945 233.822 52.0938 233.822 51.7578C233.822 51.2578 234.01 50.8438 234.385 50.5156C234.76 50.1875 235.26 50.0234 235.885 50.0234ZM244.287 48.4531V50.1406H245.998V51.043H244.287V54.4766C244.287 54.7188 244.35 54.9102 244.475 55.0508C244.6 55.1914 244.791 55.2617 245.049 55.2617C245.283 55.2617 245.479 55.2344 245.635 55.1797C245.791 55.1172 245.928 55.0508 246.045 54.9805V55.7656C245.889 55.8906 245.721 55.9883 245.541 56.0586C245.369 56.1367 245.135 56.1758 244.838 56.1758C244.338 56.1758 243.959 56.0273 243.701 55.7305C243.451 55.4258 243.326 55.0234 243.326 54.5234V51.043H242.201V50.7617C242.584 50.5898 242.904 50.3086 243.162 49.918C243.42 49.5195 243.646 49.0312 243.842 48.4531H244.287ZM250.393 50.0234C250.986 50.0234 251.514 50.1641 251.975 50.4453C252.436 50.7266 252.795 51.1016 253.053 51.5703C253.318 52.0391 253.451 52.5508 253.451 53.1055C253.451 53.6602 253.318 54.1719 253.053 54.6406C252.795 55.1016 252.436 55.4727 251.975 55.7539C251.514 56.0352 250.986 56.1758 250.393 56.1758C249.799 56.1758 249.271 56.0352 248.811 55.7539C248.35 55.4727 247.986 55.1016 247.721 54.6406C247.463 54.1719 247.334 53.6602 247.334 53.1055C247.334 52.5508 247.463 52.0391 247.721 51.5703C247.986 51.1016 248.35 50.7266 248.811 50.4453C249.271 50.1641 249.799 50.0234 250.393 50.0234ZM250.393 50.9609C249.979 50.9609 249.615 51.0625 249.303 51.2656C248.99 51.4609 248.748 51.7227 248.576 52.0508C248.412 52.3711 248.33 52.7227 248.33 53.1055C248.33 53.4805 248.412 53.832 248.576 54.1602C248.748 54.4805 248.99 54.7422 249.303 54.9453C249.615 55.1406 249.979 55.2383 250.393 55.2383C250.814 55.2383 251.178 55.1406 251.482 54.9453C251.795 54.7422 252.033 54.4805 252.197 54.1602C252.369 53.832 252.455 53.4805 252.455 53.1055C252.455 52.7227 252.369 52.3711 252.197 52.0508C252.033 51.7227 251.795 51.4609 251.482 51.2656C251.178 51.0625 250.814 50.9609 250.393 50.9609ZM261.432 50.0234C261.971 50.0234 262.451 50.1523 262.873 50.4102C263.303 50.6602 263.639 51.0195 263.881 51.4883C264.131 51.957 264.256 52.5156 264.256 53.1641C264.256 53.7578 264.131 54.2812 263.881 54.7344C263.639 55.1875 263.311 55.543 262.896 55.8008C262.49 56.0508 262.033 56.1758 261.525 56.1758C261.08 56.1758 260.682 56.0586 260.33 55.8242C259.986 55.5898 259.713 55.3164 259.51 55.0039V56H258.549V47.5625H259.51V50.9258C259.76 50.6445 260.057 50.4258 260.4 50.2695C260.752 50.1055 261.096 50.0234 261.432 50.0234ZM261.256 50.9727C260.896 50.9727 260.58 51.0586 260.307 51.2305C260.033 51.3945 259.771 51.6289 259.521 51.9336L259.51 53.0586C259.51 53.4727 259.588 53.8438 259.744 54.1719C259.908 54.5 260.131 54.7578 260.412 54.9453C260.701 55.1328 261.021 55.2266 261.373 55.2266C261.756 55.2266 262.088 55.1328 262.369 54.9453C262.65 54.7578 262.869 54.5078 263.025 54.1953C263.182 53.8828 263.26 53.5391 263.26 53.1641C263.26 52.7812 263.178 52.4258 263.014 52.0977C262.857 51.7617 262.631 51.4922 262.334 51.2891C262.037 51.0781 261.678 50.9727 261.256 50.9727ZM268.252 50.0234C268.854 50.0234 269.354 50.1484 269.752 50.3984C270.15 50.6484 270.447 50.9883 270.643 51.418C270.846 51.8477 270.947 52.332 270.947 52.8711V53.4453H266.447C266.494 53.7734 266.607 54.0742 266.787 54.3477C266.967 54.6211 267.201 54.8398 267.49 55.0039C267.779 55.1602 268.111 55.2383 268.486 55.2383C268.908 55.2383 269.303 55.1328 269.67 54.9219C270.037 54.7031 270.346 54.4648 270.596 54.207L270.584 55.25C270.475 55.3828 270.311 55.5234 270.092 55.6719C269.881 55.8125 269.635 55.9297 269.354 56.0234C269.08 56.125 268.791 56.1758 268.486 56.1758C267.893 56.1758 267.365 56.0352 266.904 55.7539C266.443 55.4727 266.08 55.1016 265.814 54.6406C265.557 54.1719 265.428 53.6602 265.428 53.1055C265.428 52.5508 265.549 52.0391 265.791 51.5703C266.033 51.1016 266.365 50.7266 266.787 50.4453C267.217 50.1641 267.705 50.0234 268.252 50.0234ZM268.252 50.9609C267.768 50.9609 267.369 51.125 267.057 51.4531C266.744 51.7734 266.549 52.1641 266.471 52.625H269.998C269.959 52.2422 269.85 51.9297 269.67 51.6875C269.498 51.4453 269.287 51.2656 269.037 51.1484C268.787 51.0234 268.525 50.9609 268.252 50.9609ZM277.006 50.1406V51.3125C277.232 50.9219 277.506 50.6094 277.826 50.375C278.146 50.1406 278.475 50.0234 278.811 50.0234C279.037 50.0234 279.24 50.0625 279.42 50.1406V51.2539C279.17 51.1055 278.92 51.0312 278.67 51.0312C278.271 51.0312 277.947 51.1719 277.697 51.4531C277.455 51.7344 277.225 52.0703 277.006 52.4609V56H276.045V50.1406H277.006ZM283.064 50.0234C283.666 50.0234 284.166 50.1484 284.564 50.3984C284.963 50.6484 285.26 50.9883 285.455 51.418C285.658 51.8477 285.76 52.332 285.76 52.8711V53.4453H281.26C281.307 53.7734 281.42 54.0742 281.6 54.3477C281.779 54.6211 282.014 54.8398 282.303 55.0039C282.592 55.1602 282.924 55.2383 283.299 55.2383C283.721 55.2383 284.115 55.1328 284.482 54.9219C284.85 54.7031 285.158 54.4648 285.408 54.207L285.396 55.25C285.287 55.3828 285.123 55.5234 284.904 55.6719C284.693 55.8125 284.447 55.9297 284.166 56.0234C283.893 56.125 283.604 56.1758 283.299 56.1758C282.705 56.1758 282.178 56.0352 281.717 55.7539C281.256 55.4727 280.893 55.1016 280.627 54.6406C280.369 54.1719 280.24 53.6602 280.24 53.1055C280.24 52.5508 280.361 52.0391 280.604 51.5703C280.846 51.1016 281.178 50.7266 281.6 50.4453C282.029 50.1641 282.518 50.0234 283.064 50.0234ZM283.064 50.9609C282.58 50.9609 282.182 51.125 281.869 51.4531C281.557 51.7734 281.361 52.1641 281.283 52.625H284.811C284.771 52.2422 284.662 51.9297 284.482 51.6875C284.311 51.4453 284.1 51.2656 283.85 51.1484C283.6 51.0234 283.338 50.9609 283.064 50.9609ZM292.51 50.1406L289.756 56H289.158L286.521 50.1406H287.67L289.439 54.4531L291.361 50.1406H292.51ZM294.619 47.3281C294.846 47.3281 295.033 47.4102 295.182 47.5742C295.338 47.7305 295.416 47.9141 295.416 48.125C295.416 48.3281 295.338 48.5117 295.182 48.6758C295.033 48.8398 294.846 48.9219 294.619 48.9219C294.393 48.9219 294.201 48.8398 294.045 48.6758C293.896 48.5117 293.822 48.3281 293.822 48.125C293.822 47.9141 293.896 47.7305 294.045 47.5742C294.201 47.4102 294.393 47.3281 294.619 47.3281ZM295.217 50.1406V56H294.256V51.043H293.33V50.1406H295.217ZM299.705 50.0234C300.307 50.0234 300.807 50.1484 301.205 50.3984C301.604 50.6484 301.9 50.9883 302.096 51.418C302.299 51.8477 302.4 52.332 302.4 52.8711V53.4453H297.9C297.947 53.7734 298.061 54.0742 298.24 54.3477C298.42 54.6211 298.654 54.8398 298.943 55.0039C299.232 55.1602 299.564 55.2383 299.939 55.2383C300.361 55.2383 300.756 55.1328 301.123 54.9219C301.49 54.7031 301.799 54.4648 302.049 54.207L302.037 55.25C301.928 55.3828 301.764 55.5234 301.545 55.6719C301.334 55.8125 301.088 55.9297 300.807 56.0234C300.533 56.125 300.244 56.1758 299.939 56.1758C299.346 56.1758 298.818 56.0352 298.357 55.7539C297.896 55.4727 297.533 55.1016 297.268 54.6406C297.01 54.1719 296.881 53.6602 296.881 53.1055C296.881 52.5508 297.002 52.0391 297.244 51.5703C297.486 51.1016 297.818 50.7266 298.24 50.4453C298.67 50.1641 299.158 50.0234 299.705 50.0234ZM299.705 50.9609C299.221 50.9609 298.822 51.125 298.51 51.4531C298.197 51.7734 298.002 52.1641 297.924 52.625H301.451C301.412 52.2422 301.303 51.9297 301.123 51.6875C300.951 51.4453 300.74 51.2656 300.49 51.1484C300.24 51.0234 299.979 50.9609 299.705 50.9609ZM311.67 50.1406L309.619 56H309.021L307.416 51.8633L305.811 56H305.213L303.162 50.1406H304.311L305.611 54.2539L307.146 50.1406H307.686L309.221 54.2539L310.521 50.1406H311.67ZM315.256 50.0234C315.857 50.0234 316.357 50.1484 316.756 50.3984C317.154 50.6484 317.451 50.9883 317.646 51.418C317.85 51.8477 317.951 52.332 317.951 52.8711V53.4453H313.451C313.498 53.7734 313.611 54.0742 313.791 54.3477C313.971 54.6211 314.205 54.8398 314.494 55.0039C314.783 55.1602 315.115 55.2383 315.49 55.2383C315.912 55.2383 316.307 55.1328 316.674 54.9219C317.041 54.7031 317.35 54.4648 317.6 54.207L317.588 55.25C317.479 55.3828 317.314 55.5234 317.096 55.6719C316.885 55.8125 316.639 55.9297 316.357 56.0234C316.084 56.125 315.795 56.1758 315.49 56.1758C314.896 56.1758 314.369 56.0352 313.908 55.7539C313.447 55.4727 313.084 55.1016 312.818 54.6406C312.561 54.1719 312.432 53.6602 312.432 53.1055C312.432 52.5508 312.553 52.0391 312.795 51.5703C313.037 51.1016 313.369 50.7266 313.791 50.4453C314.221 50.1641 314.709 50.0234 315.256 50.0234ZM315.256 50.9609C314.771 50.9609 314.373 51.125 314.061 51.4531C313.748 51.7734 313.553 52.1641 313.475 52.625H317.002C316.963 52.2422 316.854 51.9297 316.674 51.6875C316.502 51.4453 316.291 51.2656 316.041 51.1484C315.791 51.0234 315.529 50.9609 315.256 50.9609ZM324.83 47.5625V56H323.869V55.0039C323.666 55.3164 323.389 55.5898 323.037 55.8242C322.693 56.0586 322.299 56.1758 321.854 56.1758C321.354 56.1758 320.896 56.0508 320.482 55.8008C320.068 55.543 319.736 55.1875 319.486 54.7344C319.244 54.2812 319.123 53.7578 319.123 53.1641C319.123 52.5156 319.244 51.957 319.486 51.4883C319.736 51.0195 320.076 50.6602 320.506 50.4102C320.936 50.1523 321.416 50.0234 321.947 50.0234C322.283 50.0234 322.623 50.1055 322.967 50.2695C323.318 50.4258 323.619 50.6445 323.869 50.9258V47.5625H324.83ZM322.123 50.9844C321.701 50.9844 321.342 51.0898 321.045 51.3008C320.748 51.5039 320.518 51.7695 320.354 52.0977C320.197 52.4258 320.119 52.7812 320.119 53.1641C320.119 53.5391 320.197 53.8867 320.354 54.207C320.51 54.5195 320.729 54.7695 321.01 54.957C321.299 55.1445 321.631 55.2383 322.006 55.2383C322.365 55.2383 322.686 55.1445 322.967 54.957C323.248 54.7695 323.471 54.5117 323.635 54.1836C323.799 53.8477 323.877 53.4727 323.869 53.0586L323.857 51.9336C323.615 51.6289 323.354 51.3945 323.072 51.2305C322.799 51.0664 322.482 50.9844 322.123 50.9844Z",fill:"#615BC2"}),c.createElement("path",{d:"M579.52 246.648L583.188 254.5H581.922L581.102 252.625H577.422L576.59 254.5H575.324L578.992 246.648H579.52ZM579.273 248.43L577.855 251.629H580.668L579.273 248.43ZM589.094 248.641V252.109C589.094 252.625 588.984 253.07 588.766 253.445C588.547 253.82 588.25 254.109 587.875 254.312C587.5 254.516 587.078 254.617 586.609 254.617C586.141 254.617 585.719 254.516 585.344 254.312C584.969 254.109 584.672 253.82 584.453 253.445C584.234 253.07 584.125 252.625 584.125 252.109V248.641H585.121V252.109C585.121 252.617 585.27 253.008 585.566 253.281C585.871 253.547 586.219 253.68 586.609 253.68C587 253.68 587.344 253.547 587.641 253.281C587.945 253.008 588.098 252.617 588.098 252.109V248.641H589.094ZM592.527 246.953V248.641H594.238V249.543H592.527V252.977C592.527 253.219 592.59 253.41 592.715 253.551C592.84 253.691 593.031 253.762 593.289 253.762C593.523 253.762 593.719 253.734 593.875 253.68C594.031 253.617 594.168 253.551 594.285 253.48V254.266C594.129 254.391 593.961 254.488 593.781 254.559C593.609 254.637 593.375 254.676 593.078 254.676C592.578 254.676 592.199 254.527 591.941 254.23C591.691 253.926 591.566 253.523 591.566 253.023V249.543H590.441V249.262C590.824 249.09 591.145 248.809 591.402 248.418C591.66 248.02 591.887 247.531 592.082 246.953H592.527ZM598.633 248.523C599.227 248.523 599.754 248.664 600.215 248.945C600.676 249.227 601.035 249.602 601.293 250.07C601.559 250.539 601.691 251.051 601.691 251.605C601.691 252.16 601.559 252.672 601.293 253.141C601.035 253.602 600.676 253.973 600.215 254.254C599.754 254.535 599.227 254.676 598.633 254.676C598.039 254.676 597.512 254.535 597.051 254.254C596.59 253.973 596.227 253.602 595.961 253.141C595.703 252.672 595.574 252.16 595.574 251.605C595.574 251.051 595.703 250.539 595.961 250.07C596.227 249.602 596.59 249.227 597.051 248.945C597.512 248.664 598.039 248.523 598.633 248.523ZM598.633 249.461C598.219 249.461 597.855 249.562 597.543 249.766C597.23 249.961 596.988 250.223 596.816 250.551C596.652 250.871 596.57 251.223 596.57 251.605C596.57 251.98 596.652 252.332 596.816 252.66C596.988 252.98 597.23 253.242 597.543 253.445C597.855 253.641 598.219 253.738 598.633 253.738C599.055 253.738 599.418 253.641 599.723 253.445C600.035 253.242 600.273 252.98 600.438 252.66C600.609 252.332 600.695 251.98 600.695 251.605C600.695 251.223 600.609 250.871 600.438 250.551C600.273 250.223 600.035 249.961 599.723 249.766C599.418 249.562 599.055 249.461 598.633 249.461ZM604.234 248.641V249.391C604.422 249.18 604.66 248.984 604.949 248.805C605.246 248.617 605.594 248.523 605.992 248.523C606.414 248.523 606.809 248.625 607.176 248.828C607.543 249.023 607.824 249.32 608.02 249.719C608.293 249.391 608.59 249.109 608.91 248.875C609.23 248.641 609.605 248.523 610.035 248.523C610.434 248.523 610.805 248.613 611.148 248.793C611.5 248.965 611.781 249.23 611.992 249.59C612.211 249.941 612.32 250.387 612.32 250.926V254.5H611.359L611.348 251.02C611.348 250.512 611.215 250.125 610.949 249.859C610.691 249.594 610.332 249.461 609.871 249.461C609.535 249.461 609.242 249.566 608.992 249.777C608.742 249.988 608.504 250.234 608.277 250.516V254.5H607.316L607.305 251.02C607.305 250.512 607.172 250.125 606.906 249.859C606.648 249.594 606.289 249.461 605.828 249.461C605.508 249.461 605.215 249.555 604.949 249.742C604.691 249.93 604.453 250.156 604.234 250.422V254.5H603.273V248.641H604.234ZM616.551 248.523C616.887 248.523 617.227 248.605 617.57 248.77C617.922 248.926 618.223 249.145 618.473 249.426V248.641H619.434V254.5H618.473V253.504C618.27 253.816 617.992 254.09 617.641 254.324C617.297 254.559 616.902 254.676 616.457 254.676C615.957 254.676 615.5 254.551 615.086 254.301C614.672 254.043 614.34 253.688 614.09 253.234C613.848 252.781 613.727 252.258 613.727 251.664C613.727 251.016 613.848 250.457 614.09 249.988C614.34 249.52 614.68 249.16 615.109 248.91C615.539 248.652 616.02 248.523 616.551 248.523ZM616.727 249.461C616.305 249.461 615.945 249.566 615.648 249.777C615.352 249.988 615.121 250.262 614.957 250.598C614.801 250.926 614.723 251.281 614.723 251.664C614.723 252.039 614.801 252.387 614.957 252.707C615.113 253.02 615.332 253.27 615.613 253.457C615.902 253.645 616.234 253.738 616.609 253.738C616.969 253.738 617.289 253.645 617.57 253.457C617.852 253.27 618.074 253.012 618.238 252.684C618.402 252.348 618.48 251.973 618.473 251.559L618.461 250.434C618.219 250.129 617.957 249.891 617.676 249.719C617.402 249.547 617.086 249.461 616.727 249.461ZM623.043 246.953V248.641H624.754V249.543H623.043V252.977C623.043 253.219 623.105 253.41 623.23 253.551C623.355 253.691 623.547 253.762 623.805 253.762C624.039 253.762 624.234 253.734 624.391 253.68C624.547 253.617 624.684 253.551 624.801 253.48V254.266C624.645 254.391 624.477 254.488 624.297 254.559C624.125 254.637 623.891 254.676 623.594 254.676C623.094 254.676 622.715 254.527 622.457 254.23C622.207 253.926 622.082 253.523 622.082 253.023V249.543H620.957V249.262C621.34 249.09 621.66 248.809 621.918 248.418C622.176 248.02 622.402 247.531 622.598 246.953H623.043ZM627.438 245.828C627.664 245.828 627.852 245.91 628 246.074C628.156 246.23 628.234 246.414 628.234 246.625C628.234 246.828 628.156 247.012 628 247.176C627.852 247.34 627.664 247.422 627.438 247.422C627.211 247.422 627.02 247.34 626.863 247.176C626.715 247.012 626.641 246.828 626.641 246.625C626.641 246.414 626.715 246.23 626.863 246.074C627.02 245.91 627.211 245.828 627.438 245.828ZM628.035 248.641V254.5H627.074V249.543H626.148V248.641H628.035ZM632.758 248.523C633.188 248.523 633.559 248.594 633.871 248.734C634.184 248.867 634.398 248.988 634.516 249.098V250.07C634.297 249.906 634.047 249.766 633.766 249.648C633.484 249.523 633.148 249.461 632.758 249.461C632.344 249.461 631.98 249.562 631.668 249.766C631.355 249.961 631.113 250.223 630.941 250.551C630.777 250.871 630.695 251.223 630.695 251.605C630.695 251.98 630.777 252.332 630.941 252.66C631.113 252.98 631.355 253.242 631.668 253.445C631.98 253.641 632.344 253.738 632.758 253.738C633.148 253.738 633.484 253.68 633.766 253.562C634.047 253.438 634.297 253.293 634.516 253.129V254.102C634.398 254.219 634.184 254.344 633.871 254.477C633.559 254.609 633.188 254.676 632.758 254.676C632.164 254.676 631.637 254.535 631.176 254.254C630.715 253.973 630.352 253.602 630.086 253.141C629.828 252.672 629.699 252.16 629.699 251.605C629.699 251.051 629.828 250.539 630.086 250.07C630.352 249.602 630.715 249.227 631.176 248.945C631.637 248.664 632.164 248.523 632.758 248.523ZM638.512 248.523C638.848 248.523 639.188 248.605 639.531 248.77C639.883 248.926 640.184 249.145 640.434 249.426V248.641H641.395V254.5H640.434V253.504C640.23 253.816 639.953 254.09 639.602 254.324C639.258 254.559 638.863 254.676 638.418 254.676C637.918 254.676 637.461 254.551 637.047 254.301C636.633 254.043 636.301 253.688 636.051 253.234C635.809 252.781 635.688 252.258 635.688 251.664C635.688 251.016 635.809 250.457 636.051 249.988C636.301 249.52 636.641 249.16 637.07 248.91C637.5 248.652 637.98 248.523 638.512 248.523ZM638.688 249.461C638.266 249.461 637.906 249.566 637.609 249.777C637.312 249.988 637.082 250.262 636.918 250.598C636.762 250.926 636.684 251.281 636.684 251.664C636.684 252.039 636.762 252.387 636.918 252.707C637.074 253.02 637.293 253.27 637.574 253.457C637.863 253.645 638.195 253.738 638.57 253.738C638.93 253.738 639.25 253.645 639.531 253.457C639.812 253.27 640.035 253.012 640.199 252.684C640.363 252.348 640.441 251.973 640.434 251.559L640.422 250.434C640.18 250.129 639.918 249.891 639.637 249.719C639.363 249.547 639.047 249.461 638.688 249.461ZM644.348 246.062V254.5H643.387V246.062H644.348ZM647.301 246.062V254.5H646.34V246.062H647.301ZM649.621 248.641L651.672 252.953L653.664 248.641H654.812L650.5 257.312H649.387L651.062 254.148L648.473 248.641H649.621ZM661.914 248.523C662.25 248.523 662.59 248.605 662.934 248.77C663.285 248.926 663.586 249.145 663.836 249.426V248.641H664.797V254.383C664.797 255.078 664.656 255.656 664.375 256.117C664.094 256.578 663.719 256.922 663.25 257.148C662.781 257.375 662.27 257.488 661.715 257.488C661.355 257.488 661.047 257.445 660.789 257.359C660.539 257.281 660.324 257.18 660.145 257.055C659.965 256.938 659.801 256.824 659.652 256.715V255.684C659.77 255.77 659.922 255.879 660.109 256.012C660.305 256.152 660.535 256.277 660.801 256.387C661.074 256.496 661.379 256.551 661.715 256.551C662.098 256.551 662.449 256.48 662.77 256.34C663.09 256.199 663.348 255.992 663.543 255.719C663.738 255.445 663.836 255.117 663.836 254.734V253.504C663.633 253.816 663.355 254.09 663.004 254.324C662.66 254.559 662.266 254.676 661.82 254.676C661.32 254.676 660.863 254.551 660.449 254.301C660.035 254.043 659.703 253.688 659.453 253.234C659.211 252.781 659.09 252.258 659.09 251.664C659.09 251.016 659.211 250.457 659.453 249.988C659.703 249.52 660.043 249.16 660.473 248.91C660.902 248.652 661.383 248.523 661.914 248.523ZM662.09 249.473C661.668 249.473 661.309 249.578 661.012 249.789C660.715 249.992 660.484 250.262 660.32 250.598C660.164 250.926 660.086 251.281 660.086 251.664C660.086 252.039 660.164 252.383 660.32 252.695C660.477 253.008 660.695 253.258 660.977 253.445C661.266 253.633 661.598 253.727 661.973 253.727C662.332 253.727 662.652 253.633 662.934 253.445C663.215 253.258 663.438 253 663.602 252.672C663.766 252.344 663.844 251.973 663.836 251.559L663.824 250.434C663.582 250.129 663.32 249.895 663.039 249.73C662.766 249.559 662.449 249.473 662.09 249.473ZM669.438 248.523C670.031 248.523 670.559 248.664 671.02 248.945C671.48 249.227 671.84 249.602 672.098 250.07C672.363 250.539 672.496 251.051 672.496 251.605C672.496 252.16 672.363 252.672 672.098 253.141C671.84 253.602 671.48 253.973 671.02 254.254C670.559 254.535 670.031 254.676 669.438 254.676C668.844 254.676 668.316 254.535 667.855 254.254C667.395 253.973 667.031 253.602 666.766 253.141C666.508 252.672 666.379 252.16 666.379 251.605C666.379 251.051 666.508 250.539 666.766 250.07C667.031 249.602 667.395 249.227 667.855 248.945C668.316 248.664 668.844 248.523 669.438 248.523ZM669.438 249.461C669.023 249.461 668.66 249.562 668.348 249.766C668.035 249.961 667.793 250.223 667.621 250.551C667.457 250.871 667.375 251.223 667.375 251.605C667.375 251.98 667.457 252.332 667.621 252.66C667.793 252.98 668.035 253.242 668.348 253.445C668.66 253.641 669.023 253.738 669.438 253.738C669.859 253.738 670.223 253.641 670.527 253.445C670.84 253.242 671.078 252.98 671.242 252.66C671.414 252.332 671.5 251.98 671.5 251.605C671.5 251.223 671.414 250.871 671.242 250.551C671.078 250.223 670.84 249.961 670.527 249.766C670.223 249.562 669.859 249.461 669.438 249.461ZM676.492 248.523C677.094 248.523 677.594 248.648 677.992 248.898C678.391 249.148 678.688 249.488 678.883 249.918C679.086 250.348 679.188 250.832 679.188 251.371V251.945H674.688C674.734 252.273 674.848 252.574 675.027 252.848C675.207 253.121 675.441 253.34 675.73 253.504C676.02 253.66 676.352 253.738 676.727 253.738C677.148 253.738 677.543 253.633 677.91 253.422C678.277 253.203 678.586 252.965 678.836 252.707L678.824 253.75C678.715 253.883 678.551 254.023 678.332 254.172C678.121 254.312 677.875 254.43 677.594 254.523C677.32 254.625 677.031 254.676 676.727 254.676C676.133 254.676 675.605 254.535 675.145 254.254C674.684 253.973 674.32 253.602 674.055 253.141C673.797 252.672 673.668 252.16 673.668 251.605C673.668 251.051 673.789 250.539 674.031 250.07C674.273 249.602 674.605 249.227 675.027 248.945C675.457 248.664 675.945 248.523 676.492 248.523ZM676.492 249.461C676.008 249.461 675.609 249.625 675.297 249.953C674.984 250.273 674.789 250.664 674.711 251.125H678.238C678.199 250.742 678.09 250.43 677.91 250.188C677.738 249.945 677.527 249.766 677.277 249.648C677.027 249.523 676.766 249.461 676.492 249.461ZM682.516 248.523C682.859 248.523 683.18 248.574 683.477 248.676C683.773 248.77 683.988 248.867 684.121 248.969V250C683.957 249.875 683.734 249.754 683.453 249.637C683.172 249.52 682.883 249.461 682.586 249.461C682.219 249.461 681.941 249.547 681.754 249.719C681.574 249.891 681.484 250.07 681.484 250.258C681.484 250.406 681.535 250.559 681.637 250.715C681.746 250.863 681.934 250.984 682.199 251.078L683.184 251.43C683.566 251.562 683.852 251.754 684.039 252.004C684.227 252.254 684.32 252.547 684.32 252.883C684.32 253.211 684.227 253.512 684.039 253.785C683.859 254.059 683.605 254.277 683.277 254.441C682.957 254.598 682.586 254.676 682.164 254.676C681.938 254.676 681.699 254.645 681.449 254.582C681.207 254.527 680.988 254.461 680.793 254.383C680.598 254.297 680.453 254.223 680.359 254.16V253.129C680.469 253.207 680.621 253.297 680.816 253.398C681.02 253.492 681.234 253.574 681.461 253.645C681.688 253.707 681.898 253.738 682.094 253.738C682.461 253.738 682.75 253.656 682.961 253.492C683.18 253.328 683.289 253.125 683.289 252.883C683.289 252.695 683.215 252.547 683.066 252.438C682.926 252.328 682.719 252.223 682.445 252.121L681.578 251.805C681.125 251.633 680.824 251.418 680.676 251.16C680.527 250.895 680.453 250.594 680.453 250.258C680.453 249.758 680.641 249.344 681.016 249.016C681.391 248.688 681.891 248.523 682.516 248.523ZM690.918 246.953V248.641H692.629V249.543H690.918V252.977C690.918 253.219 690.98 253.41 691.105 253.551C691.23 253.691 691.422 253.762 691.68 253.762C691.914 253.762 692.109 253.734 692.266 253.68C692.422 253.617 692.559 253.551 692.676 253.48V254.266C692.52 254.391 692.352 254.488 692.172 254.559C692 254.637 691.766 254.676 691.469 254.676C690.969 254.676 690.59 254.527 690.332 254.23C690.082 253.926 689.957 253.523 689.957 253.023V249.543H688.832V249.262C689.215 249.09 689.535 248.809 689.793 248.418C690.051 248.02 690.277 247.531 690.473 246.953H690.918ZM697.023 248.523C697.617 248.523 698.145 248.664 698.605 248.945C699.066 249.227 699.426 249.602 699.684 250.07C699.949 250.539 700.082 251.051 700.082 251.605C700.082 252.16 699.949 252.672 699.684 253.141C699.426 253.602 699.066 253.973 698.605 254.254C698.145 254.535 697.617 254.676 697.023 254.676C696.43 254.676 695.902 254.535 695.441 254.254C694.98 253.973 694.617 253.602 694.352 253.141C694.094 252.672 693.965 252.16 693.965 251.605C693.965 251.051 694.094 250.539 694.352 250.07C694.617 249.602 694.98 249.227 695.441 248.945C695.902 248.664 696.43 248.523 697.023 248.523ZM697.023 249.461C696.609 249.461 696.246 249.562 695.934 249.766C695.621 249.961 695.379 250.223 695.207 250.551C695.043 250.871 694.961 251.223 694.961 251.605C694.961 251.98 695.043 252.332 695.207 252.66C695.379 252.98 695.621 253.242 695.934 253.445C696.246 253.641 696.609 253.738 697.023 253.738C697.445 253.738 697.809 253.641 698.113 253.445C698.426 253.242 698.664 252.98 698.828 252.66C699 252.332 699.086 251.98 699.086 251.605C699.086 251.223 699 250.871 698.828 250.551C698.664 250.223 698.426 249.961 698.113 249.766C697.809 249.562 697.445 249.461 697.023 249.461ZM708.906 246.473C709.477 246.473 709.941 246.551 710.301 246.707C710.668 246.863 710.988 247.066 711.262 247.316V248.477C711.09 248.352 710.895 248.215 710.676 248.066C710.465 247.918 710.215 247.789 709.926 247.68C709.645 247.562 709.305 247.504 708.906 247.504C708.32 247.504 707.797 247.637 707.336 247.902C706.875 248.168 706.512 248.535 706.246 249.004C705.98 249.465 705.848 249.988 705.848 250.574C705.848 251.16 705.98 251.684 706.246 252.145C706.512 252.605 706.875 252.973 707.336 253.246C707.797 253.512 708.32 253.645 708.906 253.645C709.508 253.645 710.02 253.547 710.441 253.352C710.871 253.148 711.223 252.941 711.496 252.73V253.785C711.223 254.027 710.863 254.238 710.418 254.418C709.98 254.59 709.477 254.676 708.906 254.676C708.312 254.676 707.766 254.57 707.266 254.359C706.766 254.141 706.328 253.844 705.953 253.469C705.578 253.094 705.285 252.66 705.074 252.168C704.871 251.668 704.77 251.137 704.77 250.574C704.77 250.012 704.871 249.484 705.074 248.992C705.285 248.492 705.578 248.055 705.953 247.68C706.328 247.305 706.766 247.012 707.266 246.801C707.766 246.582 708.312 246.473 708.906 246.473ZM715.492 248.523C715.828 248.523 716.168 248.605 716.512 248.77C716.863 248.926 717.164 249.145 717.414 249.426V248.641H718.375V254.5H717.414V253.504C717.211 253.816 716.934 254.09 716.582 254.324C716.238 254.559 715.844 254.676 715.398 254.676C714.898 254.676 714.441 254.551 714.027 254.301C713.613 254.043 713.281 253.688 713.031 253.234C712.789 252.781 712.668 252.258 712.668 251.664C712.668 251.016 712.789 250.457 713.031 249.988C713.281 249.52 713.621 249.16 714.051 248.91C714.48 248.652 714.961 248.523 715.492 248.523ZM715.668 249.461C715.246 249.461 714.887 249.566 714.59 249.777C714.293 249.988 714.062 250.262 713.898 250.598C713.742 250.926 713.664 251.281 713.664 251.664C713.664 252.039 713.742 252.387 713.898 252.707C714.055 253.02 714.273 253.27 714.555 253.457C714.844 253.645 715.176 253.738 715.551 253.738C715.91 253.738 716.23 253.645 716.512 253.457C716.793 253.27 717.016 253.012 717.18 252.684C717.344 252.348 717.422 251.973 717.414 251.559L717.402 250.434C717.16 250.129 716.898 249.891 716.617 249.719C716.344 249.547 716.027 249.461 715.668 249.461ZM721.328 248.641V249.566C721.453 249.41 721.613 249.254 721.809 249.098C722.004 248.934 722.223 248.797 722.465 248.688C722.715 248.578 722.973 248.523 723.238 248.523C723.637 248.523 724 248.613 724.328 248.793C724.656 248.965 724.918 249.23 725.113 249.59C725.309 249.941 725.406 250.387 725.406 250.926V254.5H724.445L724.434 251.02C724.434 250.512 724.32 250.125 724.094 249.859C723.875 249.594 723.535 249.461 723.074 249.461C722.762 249.461 722.449 249.578 722.137 249.812C721.832 250.039 721.562 250.305 721.328 250.609V254.5H720.367V248.641H721.328ZM729.871 248.523C730.301 248.523 730.672 248.594 730.984 248.734C731.297 248.867 731.512 248.988 731.629 249.098V250.07C731.41 249.906 731.16 249.766 730.879 249.648C730.598 249.523 730.262 249.461 729.871 249.461C729.457 249.461 729.094 249.562 728.781 249.766C728.469 249.961 728.227 250.223 728.055 250.551C727.891 250.871 727.809 251.223 727.809 251.605C727.809 251.98 727.891 252.332 728.055 252.66C728.227 252.98 728.469 253.242 728.781 253.445C729.094 253.641 729.457 253.738 729.871 253.738C730.262 253.738 730.598 253.68 730.879 253.562C731.16 253.438 731.41 253.293 731.629 253.129V254.102C731.512 254.219 731.297 254.344 730.984 254.477C730.672 254.609 730.301 254.676 729.871 254.676C729.277 254.676 728.75 254.535 728.289 254.254C727.828 253.973 727.465 253.602 727.199 253.141C726.941 252.672 726.812 252.16 726.812 251.605C726.812 251.051 726.941 250.539 727.199 250.07C727.465 249.602 727.828 249.227 728.289 248.945C728.75 248.664 729.277 248.523 729.871 248.523ZM735.625 248.523C736.227 248.523 736.727 248.648 737.125 248.898C737.523 249.148 737.82 249.488 738.016 249.918C738.219 250.348 738.32 250.832 738.32 251.371V251.945H733.82C733.867 252.273 733.98 252.574 734.16 252.848C734.34 253.121 734.574 253.34 734.863 253.504C735.152 253.66 735.484 253.738 735.859 253.738C736.281 253.738 736.676 253.633 737.043 253.422C737.41 253.203 737.719 252.965 737.969 252.707L737.957 253.75C737.848 253.883 737.684 254.023 737.465 254.172C737.254 254.312 737.008 254.43 736.727 254.523C736.453 254.625 736.164 254.676 735.859 254.676C735.266 254.676 734.738 254.535 734.277 254.254C733.816 253.973 733.453 253.602 733.188 253.141C732.93 252.672 732.801 252.16 732.801 251.605C732.801 251.051 732.922 250.539 733.164 250.07C733.406 249.602 733.738 249.227 734.16 248.945C734.59 248.664 735.078 248.523 735.625 248.523ZM735.625 249.461C735.141 249.461 734.742 249.625 734.43 249.953C734.117 250.273 733.922 250.664 733.844 251.125H737.371C737.332 250.742 737.223 250.43 737.043 250.188C736.871 249.945 736.66 249.766 736.41 249.648C736.16 249.523 735.898 249.461 735.625 249.461ZM740.863 246.062V254.5H739.902V246.062H740.863ZM743.816 246.062V254.5H742.855V246.062H743.816ZM748.223 248.523C748.824 248.523 749.324 248.648 749.723 248.898C750.121 249.148 750.418 249.488 750.613 249.918C750.816 250.348 750.918 250.832 750.918 251.371V251.945H746.418C746.465 252.273 746.578 252.574 746.758 252.848C746.938 253.121 747.172 253.34 747.461 253.504C747.75 253.66 748.082 253.738 748.457 253.738C748.879 253.738 749.273 253.633 749.641 253.422C750.008 253.203 750.316 252.965 750.566 252.707L750.555 253.75C750.445 253.883 750.281 254.023 750.062 254.172C749.852 254.312 749.605 254.43 749.324 254.523C749.051 254.625 748.762 254.676 748.457 254.676C747.863 254.676 747.336 254.535 746.875 254.254C746.414 253.973 746.051 253.602 745.785 253.141C745.527 252.672 745.398 252.16 745.398 251.605C745.398 251.051 745.52 250.539 745.762 250.07C746.004 249.602 746.336 249.227 746.758 248.945C747.188 248.664 747.676 248.523 748.223 248.523ZM748.223 249.461C747.738 249.461 747.34 249.625 747.027 249.953C746.715 250.273 746.52 250.664 746.441 251.125H749.969C749.93 250.742 749.82 250.43 749.641 250.188C749.469 249.945 749.258 249.766 749.008 249.648C748.758 249.523 748.496 249.461 748.223 249.461ZM757.797 246.062V254.5H756.836V253.504C756.633 253.816 756.355 254.09 756.004 254.324C755.66 254.559 755.266 254.676 754.82 254.676C754.32 254.676 753.863 254.551 753.449 254.301C753.035 254.043 752.703 253.688 752.453 253.234C752.211 252.781 752.09 252.258 752.09 251.664C752.09 251.016 752.211 250.457 752.453 249.988C752.703 249.52 753.043 249.16 753.473 248.91C753.902 248.652 754.383 248.523 754.914 248.523C755.25 248.523 755.59 248.605 755.934 248.77C756.285 248.926 756.586 249.145 756.836 249.426V246.062H757.797ZM755.09 249.484C754.668 249.484 754.309 249.59 754.012 249.801C753.715 250.004 753.484 250.27 753.32 250.598C753.164 250.926 753.086 251.281 753.086 251.664C753.086 252.039 753.164 252.387 753.32 252.707C753.477 253.02 753.695 253.27 753.977 253.457C754.266 253.645 754.598 253.738 754.973 253.738C755.332 253.738 755.652 253.645 755.934 253.457C756.215 253.27 756.438 253.012 756.602 252.684C756.766 252.348 756.844 251.973 756.836 251.559L756.824 250.434C756.582 250.129 756.32 249.895 756.039 249.73C755.766 249.566 755.449 249.484 755.09 249.484Z",fill:"#615BC2"}),c.createElement("path",{d:"M634.5 157.25C634.086 157.25 633.75 157.586 633.75 158C633.75 158.414 634.086 158.75 634.5 158.75V157.25ZM667.03 158.53C667.323 158.237 667.323 157.763 667.03 157.47L662.257 152.697C661.964 152.404 661.49 152.404 661.197 152.697C660.904 152.99 660.904 153.464 661.197 153.757L665.439 158L661.197 162.243C660.904 162.536 660.904 163.01 661.197 163.303C661.49 163.596 661.964 163.596 662.257 163.303L667.03 158.53ZM634.5 158.75H666.5V157.25H634.5V158.75Z",fill:"#202021"}),c.createElement("circle",{cx:650.5,cy:157.896,r:5,transform:"rotate(180 650.5 157.896)",fill:"#6C65E5",stroke:"#F2F2F5",strokeWidth:2}),c.createElement("path",{d:"M650.5 143L650.5 160.492",stroke:"#6C65E5",strokeWidth:1.5,strokeLinecap:"round"}),c.createElement("path",{d:"M579.299 115.125V119.895C579.299 120.574 579.154 121.16 578.865 121.652C578.584 122.137 578.201 122.508 577.717 122.766C577.232 123.023 576.682 123.152 576.064 123.152C575.455 123.152 574.904 123.023 574.412 122.766C573.928 122.508 573.541 122.137 573.252 121.652C572.971 121.16 572.83 120.574 572.83 119.895V115.125H573.885V119.859C573.885 120.391 573.982 120.82 574.178 121.148C574.381 121.477 574.646 121.715 574.975 121.863C575.311 122.004 575.674 122.074 576.064 122.074C576.455 122.066 576.814 121.992 577.143 121.852C577.479 121.703 577.744 121.469 577.939 121.148C578.143 120.82 578.244 120.391 578.244 119.859V115.125H579.299ZM583.213 117.023C583.557 117.023 583.877 117.074 584.174 117.176C584.471 117.27 584.686 117.367 584.818 117.469V118.5C584.654 118.375 584.432 118.254 584.15 118.137C583.869 118.02 583.58 117.961 583.283 117.961C582.916 117.961 582.639 118.047 582.451 118.219C582.271 118.391 582.182 118.57 582.182 118.758C582.182 118.906 582.232 119.059 582.334 119.215C582.443 119.363 582.631 119.484 582.896 119.578L583.881 119.93C584.264 120.063 584.549 120.254 584.736 120.504C584.924 120.754 585.018 121.047 585.018 121.383C585.018 121.711 584.924 122.012 584.736 122.285C584.557 122.559 584.303 122.777 583.975 122.941C583.654 123.098 583.283 123.176 582.861 123.176C582.635 123.176 582.396 123.145 582.146 123.082C581.904 123.027 581.686 122.961 581.49 122.883C581.295 122.797 581.15 122.723 581.057 122.66V121.629C581.166 121.707 581.318 121.797 581.514 121.898C581.717 121.992 581.932 122.074 582.158 122.145C582.385 122.207 582.596 122.238 582.791 122.238C583.158 122.238 583.447 122.156 583.658 121.992C583.877 121.828 583.986 121.625 583.986 121.383C583.986 121.195 583.912 121.047 583.764 120.938C583.623 120.828 583.416 120.723 583.143 120.621L582.275 120.305C581.822 120.133 581.521 119.918 581.373 119.66C581.225 119.395 581.15 119.094 581.15 118.758C581.15 118.258 581.338 117.844 581.713 117.516C582.088 117.188 582.588 117.023 583.213 117.023ZM588.896 117.023C589.498 117.023 589.998 117.148 590.396 117.398C590.795 117.648 591.092 117.988 591.287 118.418C591.49 118.848 591.592 119.332 591.592 119.871V120.445H587.092C587.139 120.773 587.252 121.074 587.432 121.348C587.611 121.621 587.846 121.84 588.135 122.004C588.424 122.16 588.756 122.238 589.131 122.238C589.553 122.238 589.947 122.133 590.314 121.922C590.682 121.703 590.99 121.465 591.24 121.207L591.229 122.25C591.119 122.383 590.955 122.523 590.736 122.672C590.525 122.813 590.279 122.93 589.998 123.023C589.725 123.125 589.436 123.176 589.131 123.176C588.537 123.176 588.01 123.035 587.549 122.754C587.088 122.473 586.725 122.102 586.459 121.641C586.201 121.172 586.072 120.66 586.072 120.105C586.072 119.551 586.193 119.039 586.436 118.57C586.678 118.102 587.01 117.727 587.432 117.445C587.861 117.164 588.35 117.023 588.896 117.023ZM588.896 117.961C588.412 117.961 588.014 118.125 587.701 118.453C587.389 118.773 587.193 119.164 587.115 119.625H590.643C590.604 119.242 590.494 118.93 590.314 118.688C590.143 118.445 589.932 118.266 589.682 118.148C589.432 118.023 589.17 117.961 588.896 117.961ZM594.135 117.141V118.313C594.361 117.922 594.635 117.609 594.955 117.375C595.275 117.141 595.604 117.023 595.939 117.023C596.166 117.023 596.369 117.063 596.549 117.141V118.254C596.299 118.105 596.049 118.031 595.799 118.031C595.4 118.031 595.076 118.172 594.826 118.453C594.584 118.734 594.354 119.07 594.135 119.461V123H593.174V117.141H594.135ZM608.982 117.141L606.932 123H606.334L604.729 118.863L603.123 123H602.525L600.475 117.141H601.623L602.924 121.254L604.459 117.141H604.998L606.533 121.254L607.834 117.141H608.982ZM611.092 114.328C611.318 114.328 611.506 114.41 611.654 114.574C611.811 114.73 611.889 114.914 611.889 115.125C611.889 115.328 611.811 115.512 611.654 115.676C611.506 115.84 611.318 115.922 611.092 115.922C610.865 115.922 610.674 115.84 610.518 115.676C610.369 115.512 610.295 115.328 610.295 115.125C610.295 114.914 610.369 114.73 610.518 114.574C610.674 114.41 610.865 114.328 611.092 114.328ZM611.689 117.141V123H610.729V118.043H609.803V117.141H611.689ZM615.381 115.453V117.141H617.092V118.043H615.381V121.477C615.381 121.719 615.443 121.91 615.568 122.051C615.693 122.191 615.885 122.262 616.143 122.262C616.377 122.262 616.572 122.234 616.729 122.18C616.885 122.117 617.021 122.051 617.139 121.98V122.766C616.982 122.891 616.814 122.988 616.635 123.059C616.463 123.137 616.229 123.176 615.932 123.176C615.432 123.176 615.053 123.027 614.795 122.73C614.545 122.426 614.42 122.023 614.42 121.523V118.043H613.295V117.762C613.678 117.59 613.998 117.309 614.256 116.918C614.514 116.52 614.74 116.031 614.936 115.453H615.381ZM621.709 117.023C622.107 117.023 622.471 117.113 622.799 117.293C623.127 117.465 623.389 117.73 623.584 118.09C623.779 118.441 623.877 118.887 623.877 119.426V123H622.916L622.904 119.52C622.904 119.012 622.791 118.625 622.564 118.359C622.346 118.094 622.006 117.961 621.545 117.961C621.232 117.961 620.92 118.078 620.607 118.313C620.303 118.539 620.033 118.805 619.799 119.109V123H618.838V114.563H619.799V118.066C619.924 117.91 620.084 117.754 620.279 117.598C620.475 117.434 620.693 117.297 620.936 117.188C621.186 117.078 621.443 117.023 621.709 117.023ZM632.186 117.023C632.693 117.023 633.15 117.148 633.557 117.398C633.971 117.641 634.299 117.984 634.541 118.43C634.791 118.867 634.916 119.383 634.916 119.977C634.916 120.617 634.791 121.18 634.541 121.664C634.299 122.141 633.963 122.512 633.533 122.777C633.111 123.043 632.631 123.176 632.092 123.176C631.756 123.176 631.412 123.086 631.061 122.906C630.717 122.727 630.42 122.496 630.17 122.215V125.813H629.209V117.141H630.17V118.137C630.373 117.824 630.646 117.563 630.99 117.352C631.342 117.133 631.74 117.023 632.186 117.023ZM632.033 117.961C631.682 117.961 631.361 118.051 631.072 118.23C630.791 118.41 630.568 118.66 630.404 118.98C630.248 119.293 630.17 119.66 630.17 120.082L630.182 121.207C630.432 121.512 630.693 121.762 630.967 121.957C631.24 122.145 631.557 122.238 631.916 122.238C632.338 122.238 632.697 122.129 632.994 121.91C633.291 121.691 633.518 121.41 633.674 121.066C633.838 120.715 633.92 120.352 633.92 119.977C633.92 119.594 633.842 119.254 633.686 118.957C633.529 118.652 633.311 118.41 633.029 118.23C632.748 118.051 632.416 117.961 632.033 117.961ZM637.459 117.141V118.313C637.686 117.922 637.959 117.609 638.279 117.375C638.6 117.141 638.928 117.023 639.264 117.023C639.49 117.023 639.693 117.063 639.873 117.141V118.254C639.623 118.105 639.373 118.031 639.123 118.031C638.725 118.031 638.4 118.172 638.15 118.453C637.908 118.734 637.678 119.07 637.459 119.461V123H636.498V117.141H637.459ZM643.752 117.023C644.346 117.023 644.873 117.164 645.334 117.445C645.795 117.727 646.154 118.102 646.412 118.57C646.678 119.039 646.811 119.551 646.811 120.105C646.811 120.66 646.678 121.172 646.412 121.641C646.154 122.102 645.795 122.473 645.334 122.754C644.873 123.035 644.346 123.176 643.752 123.176C643.158 123.176 642.631 123.035 642.17 122.754C641.709 122.473 641.346 122.102 641.08 121.641C640.822 121.172 640.693 120.66 640.693 120.105C640.693 119.551 640.822 119.039 641.08 118.57C641.346 118.102 641.709 117.727 642.17 117.445C642.631 117.164 643.158 117.023 643.752 117.023ZM643.752 117.961C643.338 117.961 642.975 118.063 642.662 118.266C642.35 118.461 642.107 118.723 641.936 119.051C641.771 119.371 641.689 119.723 641.689 120.105C641.689 120.48 641.771 120.832 641.936 121.16C642.107 121.48 642.35 121.742 642.662 121.945C642.975 122.141 643.338 122.238 643.752 122.238C644.174 122.238 644.537 122.141 644.842 121.945C645.154 121.742 645.393 121.48 645.557 121.16C645.729 120.832 645.814 120.48 645.814 120.105C645.814 119.723 645.729 119.371 645.557 119.051C645.393 118.723 645.154 118.461 644.842 118.266C644.537 118.063 644.174 117.961 643.752 117.961ZM651.369 117.023C651.877 117.023 652.334 117.148 652.74 117.398C653.154 117.641 653.482 117.984 653.725 118.43C653.975 118.867 654.1 119.383 654.1 119.977C654.1 120.617 653.975 121.18 653.725 121.664C653.482 122.141 653.146 122.512 652.717 122.777C652.295 123.043 651.814 123.176 651.275 123.176C650.939 123.176 650.596 123.086 650.244 122.906C649.9 122.727 649.604 122.496 649.354 122.215V125.813H648.393V117.141H649.354V118.137C649.557 117.824 649.83 117.563 650.174 117.352C650.525 117.133 650.924 117.023 651.369 117.023ZM651.217 117.961C650.865 117.961 650.545 118.051 650.256 118.23C649.975 118.41 649.752 118.66 649.588 118.98C649.432 119.293 649.354 119.66 649.354 120.082L649.365 121.207C649.615 121.512 649.877 121.762 650.15 121.957C650.424 122.145 650.74 122.238 651.1 122.238C651.521 122.238 651.881 122.129 652.178 121.91C652.475 121.691 652.701 121.41 652.857 121.066C653.021 120.715 653.104 120.352 653.104 119.977C653.104 119.594 653.025 119.254 652.869 118.957C652.713 118.652 652.494 118.41 652.213 118.23C651.932 118.051 651.6 117.961 651.217 117.961ZM658.096 117.023C658.697 117.023 659.197 117.148 659.596 117.398C659.994 117.648 660.291 117.988 660.486 118.418C660.689 118.848 660.791 119.332 660.791 119.871V120.445H656.291C656.338 120.773 656.451 121.074 656.631 121.348C656.811 121.621 657.045 121.84 657.334 122.004C657.623 122.16 657.955 122.238 658.33 122.238C658.752 122.238 659.146 122.133 659.514 121.922C659.881 121.703 660.189 121.465 660.439 121.207L660.428 122.25C660.318 122.383 660.154 122.523 659.936 122.672C659.725 122.813 659.479 122.93 659.197 123.023C658.924 123.125 658.635 123.176 658.33 123.176C657.736 123.176 657.209 123.035 656.748 122.754C656.287 122.473 655.924 122.102 655.658 121.641C655.4 121.172 655.271 120.66 655.271 120.105C655.271 119.551 655.393 119.039 655.635 118.57C655.877 118.102 656.209 117.727 656.631 117.445C657.061 117.164 657.549 117.023 658.096 117.023ZM658.096 117.961C657.611 117.961 657.213 118.125 656.9 118.453C656.588 118.773 656.393 119.164 656.314 119.625H659.842C659.803 119.242 659.693 118.93 659.514 118.688C659.342 118.445 659.131 118.266 658.881 118.148C658.631 118.023 658.369 117.961 658.096 117.961ZM663.334 117.141V118.313C663.561 117.922 663.834 117.609 664.154 117.375C664.475 117.141 664.803 117.023 665.139 117.023C665.365 117.023 665.568 117.063 665.748 117.141V118.254C665.498 118.105 665.248 118.031 664.998 118.031C664.6 118.031 664.275 118.172 664.025 118.453C663.783 118.734 663.553 119.07 663.334 119.461V123H662.373V117.141H663.334ZM673.471 117.023C673.979 117.023 674.436 117.148 674.842 117.398C675.256 117.641 675.584 117.984 675.826 118.43C676.076 118.867 676.201 119.383 676.201 119.977C676.201 120.617 676.076 121.18 675.826 121.664C675.584 122.141 675.248 122.512 674.818 122.777C674.396 123.043 673.916 123.176 673.377 123.176C673.041 123.176 672.697 123.086 672.346 122.906C672.002 122.727 671.705 122.496 671.455 122.215V125.813H670.494V117.141H671.455V118.137C671.658 117.824 671.932 117.563 672.275 117.352C672.627 117.133 673.025 117.023 673.471 117.023ZM673.318 117.961C672.967 117.961 672.646 118.051 672.357 118.23C672.076 118.41 671.854 118.66 671.689 118.98C671.533 119.293 671.455 119.66 671.455 120.082L671.467 121.207C671.717 121.512 671.979 121.762 672.252 121.957C672.525 122.145 672.842 122.238 673.201 122.238C673.623 122.238 673.982 122.129 674.279 121.91C674.576 121.691 674.803 121.41 674.959 121.066C675.123 120.715 675.205 120.352 675.205 119.977C675.205 119.594 675.127 119.254 674.971 118.957C674.814 118.652 674.596 118.41 674.314 118.23C674.033 118.051 673.701 117.961 673.318 117.961ZM680.197 117.023C680.799 117.023 681.299 117.148 681.697 117.398C682.096 117.648 682.393 117.988 682.588 118.418C682.791 118.848 682.893 119.332 682.893 119.871V120.445H678.393C678.439 120.773 678.553 121.074 678.732 121.348C678.912 121.621 679.146 121.84 679.436 122.004C679.725 122.16 680.057 122.238 680.432 122.238C680.854 122.238 681.248 122.133 681.615 121.922C681.982 121.703 682.291 121.465 682.541 121.207L682.529 122.25C682.42 122.383 682.256 122.523 682.037 122.672C681.826 122.813 681.58 122.93 681.299 123.023C681.025 123.125 680.736 123.176 680.432 123.176C679.838 123.176 679.311 123.035 678.85 122.754C678.389 122.473 678.025 122.102 677.76 121.641C677.502 121.172 677.373 120.66 677.373 120.105C677.373 119.551 677.494 119.039 677.736 118.57C677.979 118.102 678.311 117.727 678.732 117.445C679.162 117.164 679.65 117.023 680.197 117.023ZM680.197 117.961C679.713 117.961 679.314 118.125 679.002 118.453C678.689 118.773 678.494 119.164 678.416 119.625H681.943C681.904 119.242 681.795 118.93 681.615 118.688C681.443 118.445 681.232 118.266 680.982 118.148C680.732 118.023 680.471 117.961 680.197 117.961ZM685.436 117.141V118.313C685.662 117.922 685.936 117.609 686.256 117.375C686.576 117.141 686.904 117.023 687.24 117.023C687.467 117.023 687.67 117.063 687.85 117.141V118.254C687.6 118.105 687.35 118.031 687.1 118.031C686.701 118.031 686.377 118.172 686.127 118.453C685.885 118.734 685.654 119.07 685.436 119.461V123H684.475V117.141H685.436ZM690.041 117.141V117.891C690.229 117.68 690.467 117.484 690.756 117.305C691.053 117.117 691.4 117.023 691.799 117.023C692.221 117.023 692.615 117.125 692.982 117.328C693.35 117.523 693.631 117.82 693.826 118.219C694.1 117.891 694.396 117.609 694.717 117.375C695.037 117.141 695.412 117.023 695.842 117.023C696.24 117.023 696.611 117.113 696.955 117.293C697.307 117.465 697.588 117.73 697.799 118.09C698.018 118.441 698.127 118.887 698.127 119.426V123H697.166L697.154 119.52C697.154 119.012 697.021 118.625 696.756 118.359C696.498 118.094 696.139 117.961 695.678 117.961C695.342 117.961 695.049 118.066 694.799 118.277C694.549 118.488 694.311 118.734 694.084 119.016V123H693.123L693.111 119.52C693.111 119.012 692.979 118.625 692.713 118.359C692.455 118.094 692.096 117.961 691.635 117.961C691.314 117.961 691.021 118.055 690.756 118.242C690.498 118.43 690.26 118.656 690.041 118.922V123H689.08V117.141H690.041ZM700.881 114.328C701.107 114.328 701.295 114.41 701.443 114.574C701.6 114.73 701.678 114.914 701.678 115.125C701.678 115.328 701.6 115.512 701.443 115.676C701.295 115.84 701.107 115.922 700.881 115.922C700.654 115.922 700.463 115.84 700.307 115.676C700.158 115.512 700.084 115.328 700.084 115.125C700.084 114.914 700.158 114.73 700.307 114.574C700.463 114.41 700.654 114.328 700.881 114.328ZM701.479 117.141V123H700.518V118.043H699.592V117.141H701.479ZM705.299 117.023C705.643 117.023 705.963 117.074 706.26 117.176C706.557 117.27 706.771 117.367 706.904 117.469V118.5C706.74 118.375 706.518 118.254 706.236 118.137C705.955 118.02 705.666 117.961 705.369 117.961C705.002 117.961 704.725 118.047 704.537 118.219C704.357 118.391 704.268 118.57 704.268 118.758C704.268 118.906 704.318 119.059 704.42 119.215C704.529 119.363 704.717 119.484 704.982 119.578L705.967 119.93C706.35 120.063 706.635 120.254 706.822 120.504C707.01 120.754 707.104 121.047 707.104 121.383C707.104 121.711 707.01 122.012 706.822 122.285C706.643 122.559 706.389 122.777 706.061 122.941C705.74 123.098 705.369 123.176 704.947 123.176C704.721 123.176 704.482 123.145 704.232 123.082C703.99 123.027 703.771 122.961 703.576 122.883C703.381 122.797 703.236 122.723 703.143 122.66V121.629C703.252 121.707 703.404 121.797 703.6 121.898C703.803 121.992 704.018 122.074 704.244 122.145C704.471 122.207 704.682 122.238 704.877 122.238C705.244 122.238 705.533 122.156 705.744 121.992C705.963 121.828 706.072 121.625 706.072 121.383C706.072 121.195 705.998 121.047 705.85 120.938C705.709 120.828 705.502 120.723 705.229 120.621L704.361 120.305C703.908 120.133 703.607 119.918 703.459 119.66C703.311 119.395 703.236 119.094 703.236 118.758C703.236 118.258 703.424 117.844 703.799 117.516C704.174 117.188 704.674 117.023 705.299 117.023ZM710.314 117.023C710.658 117.023 710.979 117.074 711.275 117.176C711.572 117.27 711.787 117.367 711.92 117.469V118.5C711.756 118.375 711.533 118.254 711.252 118.137C710.971 118.02 710.682 117.961 710.385 117.961C710.018 117.961 709.74 118.047 709.553 118.219C709.373 118.391 709.283 118.57 709.283 118.758C709.283 118.906 709.334 119.059 709.436 119.215C709.545 119.363 709.732 119.484 709.998 119.578L710.982 119.93C711.365 120.063 711.65 120.254 711.838 120.504C712.025 120.754 712.119 121.047 712.119 121.383C712.119 121.711 712.025 122.012 711.838 122.285C711.658 122.559 711.404 122.777 711.076 122.941C710.756 123.098 710.385 123.176 709.963 123.176C709.736 123.176 709.498 123.145 709.248 123.082C709.006 123.027 708.787 122.961 708.592 122.883C708.396 122.797 708.252 122.723 708.158 122.66V121.629C708.268 121.707 708.42 121.797 708.615 121.898C708.818 121.992 709.033 122.074 709.26 122.145C709.486 122.207 709.697 122.238 709.893 122.238C710.26 122.238 710.549 122.156 710.76 121.992C710.979 121.828 711.088 121.625 711.088 121.383C711.088 121.195 711.014 121.047 710.865 120.938C710.725 120.828 710.518 120.723 710.244 120.621L709.377 120.305C708.924 120.133 708.623 119.918 708.475 119.66C708.326 119.395 708.252 119.094 708.252 118.758C708.252 118.258 708.439 117.844 708.814 117.516C709.189 117.188 709.689 117.023 710.314 117.023ZM714.521 114.328C714.748 114.328 714.936 114.41 715.084 114.574C715.24 114.73 715.318 114.914 715.318 115.125C715.318 115.328 715.24 115.512 715.084 115.676C714.936 115.84 714.748 115.922 714.521 115.922C714.295 115.922 714.104 115.84 713.947 115.676C713.799 115.512 713.725 115.328 713.725 115.125C713.725 114.914 713.799 114.73 713.947 114.574C714.104 114.41 714.295 114.328 714.521 114.328ZM715.119 117.141V123H714.158V118.043H713.232V117.141H715.119ZM719.842 117.023C720.436 117.023 720.963 117.164 721.424 117.445C721.885 117.727 722.244 118.102 722.502 118.57C722.768 119.039 722.9 119.551 722.9 120.105C722.9 120.66 722.768 121.172 722.502 121.641C722.244 122.102 721.885 122.473 721.424 122.754C720.963 123.035 720.436 123.176 719.842 123.176C719.248 123.176 718.721 123.035 718.26 122.754C717.799 122.473 717.436 122.102 717.17 121.641C716.912 121.172 716.783 120.66 716.783 120.105C716.783 119.551 716.912 119.039 717.17 118.57C717.436 118.102 717.799 117.727 718.26 117.445C718.721 117.164 719.248 117.023 719.842 117.023ZM719.842 117.961C719.428 117.961 719.064 118.063 718.752 118.266C718.439 118.461 718.197 118.723 718.025 119.051C717.861 119.371 717.779 119.723 717.779 120.105C717.779 120.48 717.861 120.832 718.025 121.16C718.197 121.48 718.439 121.742 718.752 121.945C719.064 122.141 719.428 122.238 719.842 122.238C720.264 122.238 720.627 122.141 720.932 121.945C721.244 121.742 721.482 121.48 721.646 121.16C721.818 120.832 721.904 120.48 721.904 120.105C721.904 119.723 721.818 119.371 721.646 119.051C721.482 118.723 721.244 118.461 720.932 118.266C720.627 118.063 720.264 117.961 719.842 117.961ZM725.443 117.141V118.066C725.568 117.91 725.729 117.754 725.924 117.598C726.119 117.434 726.338 117.297 726.58 117.188C726.83 117.078 727.088 117.023 727.354 117.023C727.752 117.023 728.115 117.113 728.443 117.293C728.771 117.465 729.033 117.73 729.229 118.09C729.424 118.441 729.521 118.887 729.521 119.426V123H728.561L728.549 119.52C728.549 119.012 728.436 118.625 728.209 118.359C727.99 118.094 727.65 117.961 727.189 117.961C726.877 117.961 726.564 118.078 726.252 118.313C725.947 118.539 725.678 118.805 725.443 119.109V123H724.482V117.141H725.443ZM601.852 132.023C602.281 132.023 602.652 132.094 602.965 132.234C603.277 132.367 603.492 132.488 603.609 132.598V133.57C603.391 133.406 603.141 133.266 602.859 133.148C602.578 133.023 602.242 132.961 601.852 132.961C601.438 132.961 601.074 133.063 600.762 133.266C600.449 133.461 600.207 133.723 600.035 134.051C599.871 134.371 599.789 134.723 599.789 135.105C599.789 135.48 599.871 135.832 600.035 136.16C600.207 136.48 600.449 136.742 600.762 136.945C601.074 137.141 601.438 137.238 601.852 137.238C602.242 137.238 602.578 137.18 602.859 137.063C603.141 136.938 603.391 136.793 603.609 136.629V137.602C603.492 137.719 603.277 137.844 602.965 137.977C602.652 138.109 602.281 138.176 601.852 138.176C601.258 138.176 600.73 138.035 600.27 137.754C599.809 137.473 599.445 137.102 599.18 136.641C598.922 136.172 598.793 135.66 598.793 135.105C598.793 134.551 598.922 134.039 599.18 133.57C599.445 133.102 599.809 132.727 600.27 132.445C600.73 132.164 601.258 132.023 601.852 132.023ZM607.605 132.023C607.941 132.023 608.281 132.105 608.625 132.27C608.977 132.426 609.277 132.645 609.527 132.926V132.141H610.488V138H609.527V137.004C609.324 137.316 609.047 137.59 608.695 137.824C608.352 138.059 607.957 138.176 607.512 138.176C607.012 138.176 606.555 138.051 606.141 137.801C605.727 137.543 605.395 137.188 605.145 136.734C604.902 136.281 604.781 135.758 604.781 135.164C604.781 134.516 604.902 133.957 605.145 133.488C605.395 133.02 605.734 132.66 606.164 132.41C606.594 132.152 607.074 132.023 607.605 132.023ZM607.781 132.961C607.359 132.961 607 133.066 606.703 133.277C606.406 133.488 606.176 133.762 606.012 134.098C605.855 134.426 605.777 134.781 605.777 135.164C605.777 135.539 605.855 135.887 606.012 136.207C606.168 136.52 606.387 136.77 606.668 136.957C606.957 137.145 607.289 137.238 607.664 137.238C608.023 137.238 608.344 137.145 608.625 136.957C608.906 136.77 609.129 136.512 609.293 136.184C609.457 135.848 609.535 135.473 609.527 135.059L609.516 133.934C609.273 133.629 609.012 133.391 608.73 133.219C608.457 133.047 608.141 132.961 607.781 132.961ZM613.441 132.141V133.066C613.566 132.91 613.727 132.754 613.922 132.598C614.117 132.434 614.336 132.297 614.578 132.188C614.828 132.078 615.086 132.023 615.352 132.023C615.75 132.023 616.113 132.113 616.441 132.293C616.77 132.465 617.031 132.73 617.227 133.09C617.422 133.441 617.52 133.887 617.52 134.426V138H616.559L616.547 134.52C616.547 134.012 616.434 133.625 616.207 133.359C615.988 133.094 615.648 132.961 615.188 132.961C614.875 132.961 614.562 133.078 614.25 133.313C613.945 133.539 613.676 133.805 613.441 134.109V138H612.48V132.141H613.441ZM623.812 132.141V133.313C624.039 132.922 624.312 132.609 624.633 132.375C624.953 132.141 625.281 132.023 625.617 132.023C625.844 132.023 626.047 132.063 626.227 132.141V133.254C625.977 133.105 625.727 133.031 625.477 133.031C625.078 133.031 624.754 133.172 624.504 133.453C624.262 133.734 624.031 134.07 623.812 134.461V138H622.852V132.141H623.812ZM629.871 132.023C630.473 132.023 630.973 132.148 631.371 132.398C631.77 132.648 632.066 132.988 632.262 133.418C632.465 133.848 632.566 134.332 632.566 134.871V135.445H628.066C628.113 135.773 628.227 136.074 628.406 136.348C628.586 136.621 628.82 136.84 629.109 137.004C629.398 137.16 629.73 137.238 630.105 137.238C630.527 137.238 630.922 137.133 631.289 136.922C631.656 136.703 631.965 136.465 632.215 136.207L632.203 137.25C632.094 137.383 631.93 137.523 631.711 137.672C631.5 137.813 631.254 137.93 630.973 138.023C630.699 138.125 630.41 138.176 630.105 138.176C629.512 138.176 628.984 138.035 628.523 137.754C628.062 137.473 627.699 137.102 627.434 136.641C627.176 136.172 627.047 135.66 627.047 135.105C627.047 134.551 627.168 134.039 627.41 133.57C627.652 133.102 627.984 132.727 628.406 132.445C628.836 132.164 629.324 132.023 629.871 132.023ZM629.871 132.961C629.387 132.961 628.988 133.125 628.676 133.453C628.363 133.773 628.168 134.164 628.09 134.625H631.617C631.578 134.242 631.469 133.93 631.289 133.688C631.117 133.445 630.906 133.266 630.656 133.148C630.406 133.023 630.145 132.961 629.871 132.961ZM634.922 129.328C635.148 129.328 635.336 129.41 635.484 129.574C635.641 129.73 635.719 129.914 635.719 130.125C635.719 130.328 635.641 130.512 635.484 130.676C635.336 130.84 635.148 130.922 634.922 130.922C634.695 130.922 634.504 130.84 634.348 130.676C634.199 130.512 634.125 130.328 634.125 130.125C634.125 129.914 634.199 129.73 634.348 129.574C634.504 129.41 634.695 129.328 634.922 129.328ZM635.543 132.141V137.977C635.543 138.766 635.359 139.402 634.992 139.887C634.633 140.371 634.145 140.738 633.527 140.988L633.094 140.121C633.609 139.871 633.984 139.594 634.219 139.289C634.461 138.984 634.582 138.594 634.582 138.117V133.043H633.656V132.141H635.543ZM639.949 132.023C640.551 132.023 641.051 132.148 641.449 132.398C641.848 132.648 642.145 132.988 642.34 133.418C642.543 133.848 642.645 134.332 642.645 134.871V135.445H638.145C638.191 135.773 638.305 136.074 638.484 136.348C638.664 136.621 638.898 136.84 639.188 137.004C639.477 137.16 639.809 137.238 640.184 137.238C640.605 137.238 641 137.133 641.367 136.922C641.734 136.703 642.043 136.465 642.293 136.207L642.281 137.25C642.172 137.383 642.008 137.523 641.789 137.672C641.578 137.813 641.332 137.93 641.051 138.023C640.777 138.125 640.488 138.176 640.184 138.176C639.59 138.176 639.062 138.035 638.602 137.754C638.141 137.473 637.777 137.102 637.512 136.641C637.254 136.172 637.125 135.66 637.125 135.105C637.125 134.551 637.246 134.039 637.488 133.57C637.73 133.102 638.062 132.727 638.484 132.445C638.914 132.164 639.402 132.023 639.949 132.023ZM639.949 132.961C639.465 132.961 639.066 133.125 638.754 133.453C638.441 133.773 638.246 134.164 638.168 134.625H641.695C641.656 134.242 641.547 133.93 641.367 133.688C641.195 133.445 640.984 133.266 640.734 133.148C640.484 133.023 640.223 132.961 639.949 132.961ZM646.875 132.023C647.305 132.023 647.676 132.094 647.988 132.234C648.301 132.367 648.516 132.488 648.633 132.598V133.57C648.414 133.406 648.164 133.266 647.883 133.148C647.602 133.023 647.266 132.961 646.875 132.961C646.461 132.961 646.098 133.063 645.785 133.266C645.473 133.461 645.23 133.723 645.059 134.051C644.895 134.371 644.812 134.723 644.812 135.105C644.812 135.48 644.895 135.832 645.059 136.16C645.23 136.48 645.473 136.742 645.785 136.945C646.098 137.141 646.461 137.238 646.875 137.238C647.266 137.238 647.602 137.18 647.883 137.063C648.164 136.938 648.414 136.793 648.633 136.629V137.602C648.516 137.719 648.301 137.844 647.988 137.977C647.676 138.109 647.305 138.176 646.875 138.176C646.281 138.176 645.754 138.035 645.293 137.754C644.832 137.473 644.469 137.102 644.203 136.641C643.945 136.172 643.816 135.66 643.816 135.105C643.816 134.551 643.945 134.039 644.203 133.57C644.469 133.102 644.832 132.727 645.293 132.445C645.754 132.164 646.281 132.023 646.875 132.023ZM651.832 130.453V132.141H653.543V133.043H651.832V136.477C651.832 136.719 651.895 136.91 652.02 137.051C652.145 137.191 652.336 137.262 652.594 137.262C652.828 137.262 653.023 137.234 653.18 137.18C653.336 137.117 653.473 137.051 653.59 136.98V137.766C653.434 137.891 653.266 137.988 653.086 138.059C652.914 138.137 652.68 138.176 652.383 138.176C651.883 138.176 651.504 138.027 651.246 137.73C650.996 137.426 650.871 137.023 650.871 136.523V133.043H649.746V132.762C650.129 132.59 650.449 132.309 650.707 131.918C650.965 131.52 651.191 131.031 651.387 130.453H651.832ZM661.453 132.023C661.883 132.023 662.254 132.094 662.566 132.234C662.879 132.367 663.094 132.488 663.211 132.598V133.57C662.992 133.406 662.742 133.266 662.461 133.148C662.18 133.023 661.844 132.961 661.453 132.961C661.039 132.961 660.676 133.063 660.363 133.266C660.051 133.461 659.809 133.723 659.637 134.051C659.473 134.371 659.391 134.723 659.391 135.105C659.391 135.48 659.473 135.832 659.637 136.16C659.809 136.48 660.051 136.742 660.363 136.945C660.676 137.141 661.039 137.238 661.453 137.238C661.844 137.238 662.18 137.18 662.461 137.063C662.742 136.938 662.992 136.793 663.211 136.629V137.602C663.094 137.719 662.879 137.844 662.566 137.977C662.254 138.109 661.883 138.176 661.453 138.176C660.859 138.176 660.332 138.035 659.871 137.754C659.41 137.473 659.047 137.102 658.781 136.641C658.523 136.172 658.395 135.66 658.395 135.105C658.395 134.551 658.523 134.039 658.781 133.57C659.047 133.102 659.41 132.727 659.871 132.445C660.332 132.164 660.859 132.023 661.453 132.023ZM667.664 132.023C668.062 132.023 668.426 132.113 668.754 132.293C669.082 132.465 669.344 132.73 669.539 133.09C669.734 133.441 669.832 133.887 669.832 134.426V138H668.871L668.859 134.52C668.859 134.012 668.746 133.625 668.52 133.359C668.301 133.094 667.961 132.961 667.5 132.961C667.188 132.961 666.875 133.078 666.562 133.313C666.258 133.539 665.988 133.805 665.754 134.109V138H664.793V129.563H665.754V133.066C665.879 132.91 666.039 132.754 666.234 132.598C666.43 132.434 666.648 132.297 666.891 132.188C667.141 132.078 667.398 132.023 667.664 132.023ZM674.062 132.023C674.398 132.023 674.738 132.105 675.082 132.27C675.434 132.426 675.734 132.645 675.984 132.926V132.141H676.945V138H675.984V137.004C675.781 137.316 675.504 137.59 675.152 137.824C674.809 138.059 674.414 138.176 673.969 138.176C673.469 138.176 673.012 138.051 672.598 137.801C672.184 137.543 671.852 137.188 671.602 136.734C671.359 136.281 671.238 135.758 671.238 135.164C671.238 134.516 671.359 133.957 671.602 133.488C671.852 133.02 672.191 132.66 672.621 132.41C673.051 132.152 673.531 132.023 674.062 132.023ZM674.238 132.961C673.816 132.961 673.457 133.066 673.16 133.277C672.863 133.488 672.633 133.762 672.469 134.098C672.312 134.426 672.234 134.781 672.234 135.164C672.234 135.539 672.312 135.887 672.469 136.207C672.625 136.52 672.844 136.77 673.125 136.957C673.414 137.145 673.746 137.238 674.121 137.238C674.48 137.238 674.801 137.145 675.082 136.957C675.363 136.77 675.586 136.512 675.75 136.184C675.914 135.848 675.992 135.473 675.984 135.059L675.973 133.934C675.73 133.629 675.469 133.391 675.188 133.219C674.914 133.047 674.598 132.961 674.238 132.961ZM679.898 132.141V133.066C680.023 132.91 680.184 132.754 680.379 132.598C680.574 132.434 680.793 132.297 681.035 132.188C681.285 132.078 681.543 132.023 681.809 132.023C682.207 132.023 682.57 132.113 682.898 132.293C683.227 132.465 683.488 132.73 683.684 133.09C683.879 133.441 683.977 133.887 683.977 134.426V138H683.016L683.004 134.52C683.004 134.012 682.891 133.625 682.664 133.359C682.445 133.094 682.105 132.961 681.645 132.961C681.332 132.961 681.02 133.078 680.707 133.313C680.402 133.539 680.133 133.805 679.898 134.109V138H678.938V132.141H679.898ZM688.207 132.023C688.543 132.023 688.883 132.105 689.227 132.27C689.578 132.426 689.879 132.645 690.129 132.926V132.141H691.09V137.883C691.09 138.578 690.949 139.156 690.668 139.617C690.387 140.078 690.012 140.422 689.543 140.648C689.074 140.875 688.562 140.988 688.008 140.988C687.648 140.988 687.34 140.945 687.082 140.859C686.832 140.781 686.617 140.68 686.438 140.555C686.258 140.438 686.094 140.324 685.945 140.215V139.184C686.062 139.27 686.215 139.379 686.402 139.512C686.598 139.652 686.828 139.777 687.094 139.887C687.367 139.996 687.672 140.051 688.008 140.051C688.391 140.051 688.742 139.98 689.062 139.84C689.383 139.699 689.641 139.492 689.836 139.219C690.031 138.945 690.129 138.617 690.129 138.234V137.004C689.926 137.316 689.648 137.59 689.297 137.824C688.953 138.059 688.559 138.176 688.113 138.176C687.613 138.176 687.156 138.051 686.742 137.801C686.328 137.543 685.996 137.188 685.746 136.734C685.504 136.281 685.383 135.758 685.383 135.164C685.383 134.516 685.504 133.957 685.746 133.488C685.996 133.02 686.336 132.66 686.766 132.41C687.195 132.152 687.676 132.023 688.207 132.023ZM688.383 132.973C687.961 132.973 687.602 133.078 687.305 133.289C687.008 133.492 686.777 133.762 686.613 134.098C686.457 134.426 686.379 134.781 686.379 135.164C686.379 135.539 686.457 135.883 686.613 136.195C686.77 136.508 686.988 136.758 687.27 136.945C687.559 137.133 687.891 137.227 688.266 137.227C688.625 137.227 688.945 137.133 689.227 136.945C689.508 136.758 689.73 136.5 689.895 136.172C690.059 135.844 690.137 135.473 690.129 135.059L690.117 133.934C689.875 133.629 689.613 133.395 689.332 133.23C689.059 133.059 688.742 132.973 688.383 132.973ZM695.496 132.023C696.098 132.023 696.598 132.148 696.996 132.398C697.395 132.648 697.691 132.988 697.887 133.418C698.09 133.848 698.191 134.332 698.191 134.871V135.445H693.691C693.738 135.773 693.852 136.074 694.031 136.348C694.211 136.621 694.445 136.84 694.734 137.004C695.023 137.16 695.355 137.238 695.73 137.238C696.152 137.238 696.547 137.133 696.914 136.922C697.281 136.703 697.59 136.465 697.84 136.207L697.828 137.25C697.719 137.383 697.555 137.523 697.336 137.672C697.125 137.813 696.879 137.93 696.598 138.023C696.324 138.125 696.035 138.176 695.73 138.176C695.137 138.176 694.609 138.035 694.148 137.754C693.688 137.473 693.324 137.102 693.059 136.641C692.801 136.172 692.672 135.66 692.672 135.105C692.672 134.551 692.793 134.039 693.035 133.57C693.277 133.102 693.609 132.727 694.031 132.445C694.461 132.164 694.949 132.023 695.496 132.023ZM695.496 132.961C695.012 132.961 694.613 133.125 694.301 133.453C693.988 133.773 693.793 134.164 693.715 134.625H697.242C697.203 134.242 697.094 133.93 696.914 133.688C696.742 133.445 696.531 133.266 696.281 133.148C696.031 133.023 695.77 132.961 695.496 132.961ZM701.52 132.023C701.863 132.023 702.184 132.074 702.48 132.176C702.777 132.27 702.992 132.367 703.125 132.469V133.5C702.961 133.375 702.738 133.254 702.457 133.137C702.176 133.02 701.887 132.961 701.59 132.961C701.223 132.961 700.945 133.047 700.758 133.219C700.578 133.391 700.488 133.57 700.488 133.758C700.488 133.906 700.539 134.059 700.641 134.215C700.75 134.363 700.938 134.484 701.203 134.578L702.188 134.93C702.57 135.063 702.855 135.254 703.043 135.504C703.23 135.754 703.324 136.047 703.324 136.383C703.324 136.711 703.23 137.012 703.043 137.285C702.863 137.559 702.609 137.777 702.281 137.941C701.961 138.098 701.59 138.176 701.168 138.176C700.941 138.176 700.703 138.145 700.453 138.082C700.211 138.027 699.992 137.961 699.797 137.883C699.602 137.797 699.457 137.723 699.363 137.66V136.629C699.473 136.707 699.625 136.797 699.82 136.898C700.023 136.992 700.238 137.074 700.465 137.145C700.691 137.207 700.902 137.238 701.098 137.238C701.465 137.238 701.754 137.156 701.965 136.992C702.184 136.828 702.293 136.625 702.293 136.383C702.293 136.195 702.219 136.047 702.07 135.938C701.93 135.828 701.723 135.723 701.449 135.621L700.582 135.305C700.129 135.133 699.828 134.918 699.68 134.66C699.531 134.395 699.457 134.094 699.457 133.758C699.457 133.258 699.645 132.844 700.02 132.516C700.395 132.188 700.895 132.023 701.52 132.023Z",fill:"#615BC2"}),c.createElement("defs",null,c.createElement("clipPath",{id:"clip0_3664_550"},c.createElement("rect",{width:18,height:18,fill:"white",transform:"translate(531 74)"})))),U4=()=>{const e=c.useRef(null),t=u1(),r=f1(t.breakpoints.down("md")),[o,a]=c.useState(!1);return l(Y,{children:[n(S,{condition:!r,show:l(F,{variant:"body2",children:["Show change request process"," "]})}),n(N1,{title:"Change request process",ref:e,onClick:()=>a(!0),children:n(e4,{})}),n(u2,{open:o,anchorEl:e.current,anchorOrigin:{vertical:"bottom",horizontal:"right"},transformOrigin:{vertical:"top",horizontal:"right"},onClose:()=>a(!1),children:l(H,{sx:{p:{xs:2,md:4},maxWidth:920},children:[n(F,{variant:"h3",children:"Change request process:"}),n(F,{variant:"body2",children:l("ol",{children:[n("li",{children:"When changes are detected they are added into a draft mode"}),n("li",{children:"The next step is for those changes to be sent for review"}),l("li",{children:["These changes can be seen by everyone but only who has ",n("strong",{children:"“Review change request”"})," ","permission can Approve them"]}),l("ul",{children:[l("li",{children:["If changes are Approved then someone who has"," ",n("strong",{children:"“Apply/Reject change request”"})," ","permission needs to apply these changes to be live on the feature toggles and request is Closed"]}),l("li",{children:["If changes are Rejected bu someone who has"," ",n("strong",{children:"“Apply/Reject change request”"})," ","permission or an admin then change request goes automatically to Rejected and request is Closed."]}),n("li",{children:"If changes are Cancelled by the author or an admin then change request goes automatically to Cancelled and request is Closed."})]})]})}),n(H,{sx:{mt:3},children:n(Yr,{style:{maxWidth:"calc(100vw - 4rem)"}})})]})})]})},v6=u(H)(({theme:e})=>({padding:e.spacing(1),display:"flex",justifyContent:"center","& .MuiInputBase-input":{fontSize:e.fontSizes.smallBody}})),Qr=()=>{const{trackEvent:e}=A1(),[t,r]=c.useState({isOpen:!1,enableEnvironment:"",isEnabled:!1,requiredApprovals:1}),o=u1(),a=J("projectId"),{data:i,loading:s,refetchChangeRequestConfig:C}=v8(a),{updateChangeRequestEnvironmentConfig:p}=m2(),{setToastData:d,setToastApiError:h}=h1(),g=(x,Z,I)=>()=>{r({isOpen:!0,enableEnvironment:x,isEnabled:Z,requiredApprovals:I})},m=async()=>{t.enableEnvironment&&await w(),r(x=>({...x,isOpen:!1}))};async function w(x){try{await p(x||{project:a,environment:t.enableEnvironment,enabled:!t.isEnabled,requiredApprovals:t.requiredApprovals}),d({type:"success",title:"Updated change request status",text:"Successfully updated change request status."}),await C()}catch(Z){h(c1(Z))}}const V=Array.from(Array(10).keys()).map(x=>String(x+1)).map(x=>({key:x,label:`${x} ${x==="1"?"approval":"approvals"}`,sx:{fontSize:o.fontSizes.smallBody}}));function b(x,Z){w({project:a,environment:x.environment,enabled:x.changeRequestEnabled,requiredApprovals:Number(Z)})}const k=c.useMemo(()=>[{Header:"Environment",accessor:"environment",disableSortBy:!0},{Header:"Type",accessor:"type",disableGlobalFilter:!0,disableSortBy:!0},{Header:"Required approvals",Cell:({row:{original:x}})=>{const{hasAccess:Z}=c.useContext(F1);return n(S,{condition:x.changeRequestEnabled,show:n(v6,{"data-loading":!0,children:n(g2,{sx:{width:"140px",marginLeft:1},options:V,value:x.requiredApprovals||1,onChange:I=>{b(x,I)},disabled:!Z(I3,a),IconComponent:p4,fullWidth:!0})})})},width:100,disableGlobalFilter:!0,disableSortBy:!0},{Header:"Status",accessor:"changeRequestEnabled",id:"changeRequestEnabled",align:"center",Cell:({value:x,row:{original:Z}})=>n(v6,{"data-loading":!0,children:n(B6,{checked:x,projectId:a,permission:I3,inputProps:{"aria-label":Z.environment},onClick:g(Z.environment,Z.changeRequestEnabled,Z.requiredApprovals)})}),width:100,disableGlobalFilter:!0,disableSortBy:!0}],[]),{getTableProps:f,getTableBodyProps:T,headerGroups:M,rows:j,prepareRow:B}=n1.useTable({columns:k,data:i,sortTypes:A5,autoResetGlobalFilter:!1,disableSortRemove:!0,defaultColumn:{Cell:d1}},n1.useGlobalFilter);return l(s1,{header:n(r1,{titleElement:"Change request configuration",actions:n(U4,{})}),isLoading:s,children:[n(y1,{severity:"info",sx:{mb:3},children:"If change request is enabled for an environment, then any change in that environment needs to be approved before it will be applied"}),l(a2,{...f(),children:[n(i2,{headerGroups:M}),n(s2,{...T(),children:j.map(x=>(B(x),n(C2,{hover:!0,...x.getRowProps(),children:x.cells.map(Z=>n(l2,{...Z.getCellProps(),children:Z.render("Cell")}))})))})]}),l(W1,{onClick:()=>{e("change_request",{props:{eventType:`change request ${t.isEnabled?"disabled":"enabled"}`}}),m()},open:t.isOpen,onClose:()=>r(x=>({...x,isOpen:!1})),primaryButtonText:t.isEnabled?"Disable":"Enable",secondaryButtonText:"Cancel",title:`${t.isEnabled?"Disable":"Enable"} change requests`,children:[l(F,{sx:{mb:1},children:["You are about to"," ",t.isEnabled?"disable":"enable"," “Change request”",n(S,{condition:!!t.enableEnvironment,show:l(Y,{children:[" ","for"," ",n("strong",{children:t.enableEnvironment})]})}),"."]}),n(S,{condition:!t.isEnabled,show:n(F,{variant:"body2",color:"text.secondary",children:"When enabling change request for an environment, you need to be sure that your Unleash Admin already have created the custom project roles in your Unleash instance so you can assign your project members from the project access page."})})]})]})},Xr=()=>{const e=J("projectId"),t=H1(e),{hasAccess:r}=c.useContext(F1),{isOss:o,isPro:a}=l1();return w1(`Project change request configuration – ${t}`),o()||a()?n(s1,{header:n(r1,{titleElement:"Change request configuration",actions:n(U4,{})}),sx:{justifyContent:"center"},children:n(x2,{feature:"change-requests"})}):r(V1,e)?n(Qr,{}):n(s1,{header:n(r1,{title:"Change request configuration"}),children:n(y1,{severity:"error",children:"You need project owner permissions to access this section."})})},q4=()=>{const{makeRequest:e,createRequest:t,errors:r,loading:o}=v3({propagateErrors:!0});return{deleteToken:async(s,C)=>{const p=`api/admin/projects/${C}/api-tokens/${s}`,d=t(p,{method:"DELETE"});try{return await e(d.caller,d.id)}catch(h){throw h}},createToken:async(s,C)=>{const p=`api/admin/projects/${C}/api-tokens`,d=t(p,{method:"POST",body:JSON.stringify(s)});try{return await e(d.caller,d.id)}catch(h){throw h}},errors:r,loading:o}},G4=(e,t={})=>{const r=e5(`api/admin/projects/${e}/api-tokens`),{data:o,error:a,mutate:i}=c5(r,eo,t),s=c.useMemo(()=>o??[],[o]),C=c.useCallback(()=>{i().catch(console.warn)},[i]);return{tokens:s,error:a,loading:!a&&!o,refetch:C}},eo=async e=>(await(await fetch(e).then(t5("Project Api tokens"))).json()).tokens,b6="Create project API token",to=()=>{const e=J("projectId"),{setToastApiError:t}=h1(),{uiConfig:r}=l1(),o=L1(),[a,i]=c.useState(!1),[s,C]=c.useState(""),{getApiTokenPayload:p,username:d,type:h,apiTokenTypes:g,environment:m,setUsername:w,setTokenType:V,setEnvironment:b,isValid:k,errors:f,clearErrors:T}=d9(e),{createToken:M,loading:j}=q4(),{refetch:B}=G4(e),{trackEvent:x}=A1();w1(b6);const Z=`api/admin/project/${e}/api-tokens`;return l(y3,{loading:j,title:b6,modal:!0,description:"Unleash SDKs use API tokens to authenticate to the Unleash API. Client SDKs need a token with 'client privileges', which allows them to fetch feature toggle configurations and post usage metrics.",documentationLink:"https://docs.getunleash.io/reference/api-tokens-and-client-keys",documentationLinkLabel:"API tokens documentation",formatApiCode:()=>`curl --location --request POST '${r.unleashUrl}/${Z}' \\
|
|
8
|
+
--header 'Authorization: INSERT_API_KEY' \\
|
|
9
|
+
--header 'Content-Type: application/json' \\
|
|
10
|
+
--data-raw '${JSON.stringify(p(),void 0,2)}'`,children:[l(u9,{handleSubmit:async W=>{if(W.preventDefault(),!!k())try{const y=p();await M(y,e).then(v=>v.json()).then(v=>{_8(),C(v.secret),i(!0),x("project_api_tokens",{props:{eventType:"api_key_created"}}),B()})}catch(y){t(c1(y))}},handleCancel:()=>{o($1)},mode:"Create",actions:n(b8,{name:"token",permission:V8,projectId:e}),children:[n(p9,{username:d,setUsername:w,errors:f,clearErrors:T}),n(h9,{type:h,setType:V,apiTokenTypes:g}),n(g9,{type:h,environment:m,setEnvironment:b})]}),n(m9,{open:a,closeConfirm:()=>{i(!1),o($1)},token:s,type:h})]})},no=()=>{const e=L1();return n(Y1,{open:!0,onClose:()=>e($1),label:"Create API token",children:n(to,{})})},ro=()=>{const e=J("projectId"),t=H1(e),{hasAccess:r}=c.useContext(F1),{tokens:o,loading:a,refetch:i}=G4(e),{trackEvent:s}=A1(),{deleteToken:C}=q4();w1(`Project api access – ${t}`);const{getTableProps:p,getTableBodyProps:d,headerGroups:h,rows:g,prepareRow:m,state:{globalFilter:w},setGlobalFilter:V,setHiddenColumns:b,columns:k}=f9(o,f=>l(i3,{children:[n(y9,{token:f.row.original,permission:O3,project:e,track:()=>s("project_api_tokens",{props:{eventType:"api_key_copied"}})}),n(v9,{token:f.row.original,permission:x8,project:e,onRemove:async()=>{await C(f.row.original.secret,e),s("project_api_tokens",{props:{eventType:"api_key_deleted"}}),i()}})]}));return l("div",{style:{width:"100%",overflow:"hidden"},children:[n(s1,{header:n(r1,{title:`API access (${g.length})`,actions:l(Y,{children:[n(k1,{initialValue:w,onChange:V}),n(r1.Divider,{}),n(b9,{permission:w8,path:"create",project:e})]})}),children:n(S,{condition:!r(O3,e),show:n(y1,{severity:"warning",children:"You need to have the correct permissions to read API tokens"}),elseShow:n(V9,{compact:!0,loading:a,headerGroups:h,setHiddenColumns:b,prepareRow:m,getTableBodyProps:d,getTableProps:p,rows:g,columns:k,globalFilter:w})})}),n(m5,{children:n(e1,{path:"create",element:n(no,{})})})]})},oo=()=>{const e=J("projectId"),t=H1(e),{isOss:r}=l1(),o=L1();return w1(`Project segments – ${t}`),r()?n(s1,{header:n(r1,{titleElement:"Segments"}),sx:{justifyContent:"center"},children:n(x2,{feature:"segments"})}):l(m5,{children:[n(e1,{path:"create",element:n(Y1,{open:!0,onClose:()=>o($1),label:"Create segment",children:n(S8,{modal:!0})})}),n(e1,{path:"edit/:segmentId",element:n(Y1,{open:!0,onClose:()=>o($1),label:"Edit segment",children:n(H8,{modal:!0})})}),n(e1,{path:"*",element:n(M8,{})})]})},ao=(e,t)=>{const r=new URLSearchParams({environmentId:t});return`/projects/${e}/settings/default-strategy/edit?${r}`},io={name:"flexibleRollout",disabled:!1,constraints:[],title:"",parameters:{rollout:"100",stickiness:"default",groupId:""}},so=({environment:e,description:t})=>{const r=J("projectId"),{environment:o,defaultStrategy:a}=e,i=ao(r,o),s=c.useMemo(()=>a||io,[JSON.stringify(a)]);return n(Y,{children:n(_9,{strategy:s,description:t,actions:n(Y,{children:n(s5,{permission:E8,environmentId:o,projectId:r,component:S1,to:i,tooltipProps:{title:`Edit default strategy for "${o}"`},"data-testid":`STRATEGY_EDIT-${s==null?void 0:s.name}`,children:n(m3,{})})}),children:n(T8,{strategy:s})})})},Co=u("div",{shouldForwardProp:e=>e!=="enabled"})(({theme:e,enabled:t})=>({borderRadius:e.shape.borderRadiusLarge,marginBottom:e.spacing(2),backgroundColor:t?e.palette.background.paper:e.palette.envAccordion.disabled})),lo=u(k8)({boxShadow:"none",background:"none"}),co=u(A8)(({theme:e})=>({boxShadow:"none",padding:e.spacing(2,4),pointerEvents:"none",[e.breakpoints.down(400)]:{padding:e.spacing(1,2)}})),uo=u(L8,{shouldForwardProp:e=>e!=="enabled"})(({theme:e})=>({padding:e.spacing(3),background:e.palette.envAccordion.expanded,borderBottomLeftRadius:e.shape.borderRadiusLarge,borderBottomRightRadius:e.shape.borderRadiusLarge,boxShadow:"inset 0px 2px 4px rgba(32, 32, 33, 0.05)",[e.breakpoints.down("md")]:{padding:e.spacing(2,1)}})),po=u("div")(({theme:e})=>({width:"100%",position:"relative",paddingBottom:e.spacing(2)})),ho=u("div")(({theme:e})=>({[e.breakpoints.down(400)]:{padding:e.spacing(1)}})),go=u("div",{shouldForwardProp:e=>e!=="enabled"})(({theme:e,enabled:t})=>({display:"flex",justifyContent:"center",flexDirection:"column",color:t?e.palette.text.primary:e.palette.text.secondary})),mo=u("div")(({theme:e})=>({display:"flex",alignItems:"center",fontWeight:"bold",[e.breakpoints.down(560)]:{flexDirection:"column",textAlign:"center"}})),fo=u(a9)(({theme:e})=>({[e.breakpoints.down(560)]:{marginBottom:"0.5rem"}})),yo=u(D8)(({theme:e})=>({fontSize:e.fontSizes.bodySize,fontWeight:e.typography.fontWeightMedium,[e.breakpoints.down(560)]:{textAlign:"center"}})),vo=({environment:e})=>{const{environment:t}=e,r=`Default strategy configuration in the ${t} environment`,o=u1(),a=!1;return n(Co,{enabled:!1,children:l(lo,{expanded:!0,onChange:i=>i.stopPropagation(),"data-testid":`${Z8}_${t}`,className:"environment-accordion accordion-disabled",style:{outline:`2px solid ${o.palette.divider}`,backgroundColor:o.palette.background.paper},children:[n(co,{children:n(go,{"data-loading":!0,enabled:a,children:l(mo,{children:[n(fo,{enabled:!0}),n("div",{children:n(yo,{text:t,maxWidth:"100",maxLength:15})})]})})}),n(uo,{enabled:!0,children:n(po,{children:n(ho,{children:n(so,{environment:e,description:r})})})})]})})},bo=u(y1)(({theme:e})=>({marginBottom:e.spacing(4)})),Vo=()=>{const e=J("projectId"),t=H1(e),{hasAccess:r}=c.useContext(F1),{project:o}=v1(e),a=L1();if(w1(`Project default strategy configuration – ${t}`),!r(V1,e))return n(s1,{header:n(r1,{title:"Default Strategy configuration"}),children:n(y1,{severity:"error",children:"You need project owner permissions to access this section."})});const i=`/projects/${e}/settings/default-strategy`,s=()=>a(i);return l(Y,{children:[l(s1,{header:n(r1,{title:"Default Strategy"}),children:[n(bo,{severity:"info",children:"Here you can customize your default strategy for each specific environment. These will be used when you enable a toggle environment that has no strategies defined"}),o==null?void 0:o.environments.map(C=>n(vo,{environment:C},C.environment))]}),n(m5,{children:n(e1,{path:"edit",element:n(Y1,{label:"Edit feature strategy",onClose:s,open:!0,children:n(i9,{})})})})]})},_o=u("div")(({theme:e})=>({borderTop:`1px solid ${e.palette.divider}`})),xo=u("div")(({theme:e})=>({paddingTop:e.spacing(4),lineHeight:2})),wo=u("div")(({theme:e})=>({paddingTop:e.spacing(3)})),So=u("div")(({theme:e})=>({display:"flex",justifyContent:"flex-end",paddingTop:e.spacing(3)})),Ho=({projectId:e,featureCount:t})=>{const[r,o]=c.useState(!1),a=L1();return l(_o,{children:[n(xo,{children:"Delete project"}),n("div",{children:"Before you can delete a project, you must first archive all the feature toggles associated with it. Keep in mind that deleting a project will permanently remove all the archived feature toggles, and they cannot be recovered once deleted."}),l(wo,{children:["Currently there are"," ",l("strong",{children:[t," feature toggles active"]})]}),n(So,{children:n(L5,{permission:R8,disabled:t>0,projectId:e,onClick:()=>{o(!0)},tooltipProps:{title:"Delete project"},"data-loading":!0,children:"Delete project"})}),n(h4,{project:e,open:r,onClose:()=>{o(!1)},onSuccess:()=>{a("/projects")}})]})},Mo=()=>{const{uiConfig:e}=l1(),{setToastData:t,setToastApiError:r}=h1(),{hasAccess:o}=c.useContext(F1),a=J("projectId"),{project:i}=v1(a),{defaultStickiness:s}=F8(a),{trackEvent:C}=A1(),{projectId:p,projectName:d,projectDesc:h,projectStickiness:g,projectMode:m,featureLimit:w,setProjectId:V,setProjectName:b,setProjectDesc:k,setProjectStickiness:f,setProjectMode:T,setFeatureLimit:M,getProjectPayload:j,clearErrors:B,validateProjectId:x,validateName:Z,errors:I}=j8(a,i.name,i.description,s,i.mode,i.featureLimit?String(i.featureLimit):""),O=()=>`curl --location --request PUT '${e.unleashUrl}/api/admin/projects/${a}' \\
|
|
11
|
+
--header 'Authorization: INSERT_API_KEY' \\
|
|
12
|
+
--header 'Content-Type: application/json' \\
|
|
13
|
+
--data-raw '${JSON.stringify(j(),void 0,2)}'`,{editProject:R,loading:q}=H5(),G=async y=>{y.preventDefault();const v=j();if(Z())try{await R(a,v),t({title:"Project information updated",type:"success"}),g!==I8&&C("project_stickiness_set")}catch(L){r(c1(L))}},W=!o(V1,p)&&n(y1,{severity:"error",sx:{mb:4},children:"You do not have the required permissions to edit this project."});return l(y3,{loading:q,disablePadding:!0,description:"Projects allows you to group feature toggles together in the management UI.",documentationLink:"https://docs.getunleash.io/reference/projects",documentationLinkLabel:"Projects documentation",formatApiCode:O,children:[W,l(s1,{header:n(r1,{title:"Settings"}),children:[n(P8,{errors:I,handleSubmit:G,projectId:p,setProjectId:V,projectName:d,projectMode:m,featureLimit:w,featureCount:i.features.length,setProjectName:b,projectStickiness:g,setProjectStickiness:f,setProjectMode:T,projectDesc:h,mode:"Edit",setProjectDesc:k,setFeatureLimit:M,clearErrors:B,validateProjectId:x,children:n(L5,{type:"submit",permission:V1,projectId:p,children:"Save changes"})}),n(Ho,{projectId:p,featureCount:i.features.length})]})]})},Eo=()=>{const e=J("projectId"),t=H1(e),{hasAccess:r}=c.useContext(F1);return w1(`Project configuration – ${t}`),r(V1,e)?n(Mo,{}):n(s1,{header:n(r1,{title:"Access"}),children:n(y1,{severity:"error",children:"You need project owner permissions to access this section."})})},To=()=>{var s;const e=g4(),{isPro:t,isEnterprise:r}=l1(),o=L1(),a=[{id:"",label:"Settings"},{id:"environments",label:"Environments"},...t()||r()?[{id:"access",label:"Access"},{id:"segments",label:"Segments"},{id:"change-requests",label:"Change request configuration",icon:t()?n(H,{sx:{marginLeft:"auto"},children:n(m4,{})}):void 0}]:[],{id:"api-access",label:"API access"},{id:"default-strategy",label:"Default strategy"}],i=C=>{o(C.id)};return n(O8,{tabs:a,value:((s=a.find(({id:C})=>{var p;return C&&((p=e.pathname)==null?void 0:p.includes(`/${C}`))}))==null?void 0:s.id)||a[0].id,onChange:i,children:l(m5,{children:[n(e1,{path:"/*",element:n(Eo,{})}),n(e1,{path:"environments/*",element:n(_4,{})}),n(e1,{path:"access/*",element:n(Jr,{})}),n(e1,{path:"segments/*",element:n(oo,{})}),n(e1,{path:"change-requests/*",element:n(Xr,{})}),n(e1,{path:"api-access/*",element:n(ro,{})}),n(e1,{path:"default-strategy/*",element:n(Vo,{})}),n(e1,{path:"*",element:n(f4,{replace:!0,to:a[0].id})})]})})},ko=u(A4)(()=>({padding:0,margin:0,[`& .${D4.root}:before`]:{flex:0,padding:0}})),V6=u(R4,{shouldForwardProp:e=>e!=="active"})(({theme:e,active:t})=>({width:"1px",backgroundColor:t?e.palette.common.white:`${C5(e.palette.common.white,.5)}`})),z2=u(Z4,{shouldForwardProp:e=>e!=="active"})(({theme:e,active:t})=>({color:t?e.palette.background.sidebar:`${C5(e.palette.common.white,.8)}`,backgroundColor:t?e.palette.common.white:"initial",fontWeight:t?e.fontWeight.bold:"normal",borderColor:t?e.palette.common.white:`${C5(e.palette.common.white,.8)}`,width:e.spacing(5),height:e.spacing(5),lineHeight:e.spacing(5),borderWidth:"1px",display:"flex",alignItems:"center",justifyContent:"center",margin:e.spacing(1,0)})),N2=u(L4,{shouldForwardProp:e=>e!=="active"})(({theme:e,active:t})=>({padding:e.spacing(2,2,6,2),color:t?e.palette.common.white:`${C5(e.palette.common.white,.8)}`})),W2=u(H,{shouldForwardProp:e=>e!=="active"})(({theme:e,active:t})=>({fontWeight:t?e.fontWeight.bold:"normal",fontSize:e.fontSizes.bodySize})),U2=u(H)(({theme:e})=>({fontSize:e.fontSizes.smallerBody})),Ao=({stage:e})=>l(ko,{children:[l(K5,{children:[l(J5,{children:[n(z2,{variant:"outlined",active:e==="configure",children:"1"}),n(V6,{active:e==="configure"})]}),l(N2,{active:e==="configure",children:[n(W2,{active:e==="configure",children:"Import file"}),n(U2,{children:"Import previously exported toggle configuration from another Unleash instance as a JSON file"})]})]}),l(K5,{children:[l(J5,{children:[n(z2,{variant:"outlined",active:e==="validate",children:"2"}),n(V6,{active:e==="validate"})]}),l(N2,{active:e==="validate",children:[n(W2,{active:e==="validate",children:"Validate configuration"}),n(U2,{children:"Check the errors and warnings from the import process"})]})]}),l(K5,{children:[n(J5,{children:n(z2,{variant:"outlined",active:e==="import",children:"3"})}),l(N2,{active:e==="import",children:[n(W2,{active:e==="import",children:"Finish import"}),n(U2,{children:"Feature toggle configuration will be imported to your new Unleash instance"})]})]})]});function y5(e,t,r,o){function a(i){return i instanceof r?i:new r(function(s){s(i)})}return new(r||(r=Promise))(function(i,s){function C(h){try{d(o.next(h))}catch(g){s(g)}}function p(h){try{d(o.throw(h))}catch(g){s(g)}}function d(h){h.done?i(h.value):a(h.value).then(C,p)}d((o=o.apply(e,t||[])).next())})}function v5(e,t){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o,a,i,s;return s={next:C(0),throw:C(1),return:C(2)},typeof Symbol=="function"&&(s[Symbol.iterator]=function(){return this}),s;function C(d){return function(h){return p([d,h])}}function p(d){if(o)throw new TypeError("Generator is already executing.");for(;s&&(s=0,d[0]&&(r=0)),r;)try{if(o=1,a&&(i=d[0]&2?a.return:d[0]?a.throw||((i=a.return)&&i.call(a),0):a.next)&&!(i=i.call(a,d[1])).done)return i;switch(a=0,i&&(d=[d[0]&2,i.value]),d[0]){case 0:case 1:i=d;break;case 4:return r.label++,{value:d[1],done:!1};case 5:r.label++,a=d[1],d=[0];continue;case 7:d=r.ops.pop(),r.trys.pop();continue;default:if(i=r.trys,!(i=i.length>0&&i[i.length-1])&&(d[0]===6||d[0]===2)){r=0;continue}if(d[0]===3&&(!i||d[1]>i[0]&&d[1]<i[3])){r.label=d[1];break}if(d[0]===6&&r.label<i[1]){r.label=i[1],i=d;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(d);break}i[2]&&r.ops.pop(),r.trys.pop();continue}d=t.call(e,r)}catch(h){d=[6,h],a=0}finally{o=i=0}if(d[0]&5)throw d[1];return{value:d[0]?d[1]:void 0,done:!0}}}function _6(e,t){var r=typeof Symbol=="function"&&e[Symbol.iterator];if(!r)return e;var o=r.call(e),a,i=[],s;try{for(;(t===void 0||t-- >0)&&!(a=o.next()).done;)i.push(a.value)}catch(C){s={error:C}}finally{try{a&&!a.done&&(r=o.return)&&r.call(o)}finally{if(s)throw s.error}}return i}function x6(e,t,r){if(r||arguments.length===2)for(var o=0,a=t.length,i;o<a;o++)(i||!(o in t))&&(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))}var Lo=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function F5(e,t){var r=Do(e);if(typeof r.path!="string"){var o=e.webkitRelativePath;Object.defineProperty(r,"path",{value:typeof t=="string"?t:typeof o=="string"&&o.length>0?o:e.name,writable:!1,configurable:!1,enumerable:!0})}return r}function Do(e){var t=e.name,r=t&&t.lastIndexOf(".")!==-1;if(r&&!e.type){var o=t.split(".").pop().toLowerCase(),a=Lo.get(o);a&&Object.defineProperty(e,"type",{value:a,writable:!1,configurable:!1,enumerable:!0})}return e}var Zo=[".DS_Store","Thumbs.db"];function Ro(e){return y5(this,void 0,void 0,function(){return v5(this,function(t){return n2(e)&&Fo(e.dataTransfer)?[2,Oo(e.dataTransfer,e.type)]:jo(e)?[2,Po(e)]:Array.isArray(e)&&e.every(function(r){return"getFile"in r&&typeof r.getFile=="function"})?[2,Io(e)]:[2,[]]})})}function Fo(e){return n2(e)}function jo(e){return n2(e)&&n2(e.target)}function n2(e){return typeof e=="object"&&e!==null}function Po(e){return t3(e.target.files).map(function(t){return F5(t)})}function Io(e){return y5(this,void 0,void 0,function(){var t;return v5(this,function(r){switch(r.label){case 0:return[4,Promise.all(e.map(function(o){return o.getFile()}))];case 1:return t=r.sent(),[2,t.map(function(o){return F5(o)})]}})})}function Oo(e,t){return y5(this,void 0,void 0,function(){var r,o;return v5(this,function(a){switch(a.label){case 0:return e.items?(r=t3(e.items).filter(function(i){return i.kind==="file"}),t!=="drop"?[2,r]:[4,Promise.all(r.map(Bo))]):[3,2];case 1:return o=a.sent(),[2,w6(K4(o))];case 2:return[2,w6(t3(e.files).map(function(i){return F5(i)}))]}})})}function w6(e){return e.filter(function(t){return Zo.indexOf(t.name)===-1})}function t3(e){if(e===null)return[];for(var t=[],r=0;r<e.length;r++){var o=e[r];t.push(o)}return t}function Bo(e){if(typeof e.webkitGetAsEntry!="function")return S6(e);var t=e.webkitGetAsEntry();return t&&t.isDirectory?J4(t):S6(e)}function K4(e){return e.reduce(function(t,r){return x6(x6([],_6(t),!1),_6(Array.isArray(r)?K4(r):[r]),!1)},[])}function S6(e){var t=e.getAsFile();if(!t)return Promise.reject("".concat(e," is not a File"));var r=F5(t);return Promise.resolve(r)}function $o(e){return y5(this,void 0,void 0,function(){return v5(this,function(t){return[2,e.isDirectory?J4(e):zo(e)]})})}function J4(e){var t=e.createReader();return new Promise(function(r,o){var a=[];function i(){var s=this;t.readEntries(function(C){return y5(s,void 0,void 0,function(){var p,d,h;return v5(this,function(g){switch(g.label){case 0:if(C.length)return[3,5];g.label=1;case 1:return g.trys.push([1,3,,4]),[4,Promise.all(a)];case 2:return p=g.sent(),r(p),[3,4];case 3:return d=g.sent(),o(d),[3,4];case 4:return[3,6];case 5:h=Promise.all(C.map($o)),a.push(h),i(),g.label=6;case 6:return[2]}})})},function(C){o(C)})}i()})}function zo(e){return y5(this,void 0,void 0,function(){return v5(this,function(t){return[2,new Promise(function(r,o){e.file(function(a){var i=F5(a,e.fullPath);r(i)},function(a){o(a)})})]})})}var No=function(e,t){if(e&&t){var r=Array.isArray(t)?t:t.split(","),o=e.name||"",a=(e.type||"").toLowerCase(),i=a.replace(/\/.*$/,"");return r.some(function(s){var C=s.trim().toLowerCase();return C.charAt(0)==="."?o.toLowerCase().endsWith(C):C.endsWith("/*")?i===C.replace(/\/.*$/,""):a===C})}return!0};function H6(e){return qo(e)||Uo(e)||Q4(e)||Wo()}function Wo(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
14
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Uo(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function qo(e){if(Array.isArray(e))return n3(e)}function M6(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),r.push.apply(r,o)}return r}function E6(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?M6(Object(r),!0).forEach(function(o){Y4(e,o,r[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):M6(Object(r)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(r,o))})}return e}function Y4(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function S5(e,t){return Jo(e)||Ko(e,t)||Q4(e,t)||Go()}function Go(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
15
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Q4(e,t){if(e){if(typeof e=="string")return n3(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return n3(e,t)}}function n3(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,o=new Array(t);r<t;r++)o[r]=e[r];return o}function Ko(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var o=[],a=!0,i=!1,s,C;try{for(r=r.call(e);!(a=(s=r.next()).done)&&(o.push(s.value),!(t&&o.length===t));a=!0);}catch(p){i=!0,C=p}finally{try{!a&&r.return!=null&&r.return()}finally{if(i)throw C}}return o}}function Jo(e){if(Array.isArray(e))return e}var Yo="file-invalid-type",Qo="file-too-large",Xo="file-too-small",ea="too-many-files",ta=function(t){t=Array.isArray(t)&&t.length===1?t[0]:t;var r=Array.isArray(t)?"one of ".concat(t.join(", ")):t;return{code:Yo,message:"File type must be ".concat(r)}},T6=function(t){return{code:Qo,message:"File is larger than ".concat(t," ").concat(t===1?"byte":"bytes")}},k6=function(t){return{code:Xo,message:"File is smaller than ".concat(t," ").concat(t===1?"byte":"bytes")}},na={code:ea,message:"Too many files"};function X4(e,t){var r=e.type==="application/x-moz-file"||No(e,t);return[r,r?null:ta(t)]}function e7(e,t,r){if(K1(e.size))if(K1(t)&&K1(r)){if(e.size>r)return[!1,T6(r)];if(e.size<t)return[!1,k6(t)]}else{if(K1(t)&&e.size<t)return[!1,k6(t)];if(K1(r)&&e.size>r)return[!1,T6(r)]}return[!0,null]}function K1(e){return e!=null}function ra(e){var t=e.files,r=e.accept,o=e.minSize,a=e.maxSize,i=e.multiple,s=e.maxFiles,C=e.validator;return!i&&t.length>1||i&&s>=1&&t.length>s?!1:t.every(function(p){var d=X4(p,r),h=S5(d,1),g=h[0],m=e7(p,o,a),w=S5(m,1),V=w[0],b=C?C(p):null;return g&&V&&!b})}function r2(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function U5(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function A6(e){e.preventDefault()}function oa(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function aa(e){return e.indexOf("Edge/")!==-1}function ia(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return oa(e)||aa(e)}function T1(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(o){for(var a=arguments.length,i=new Array(a>1?a-1:0),s=1;s<a;s++)i[s-1]=arguments[s];return t.some(function(C){return!r2(o)&&C&&C.apply(void 0,[o].concat(i)),r2(o)})}}function sa(){return"showOpenFilePicker"in window}function Ca(e){if(K1(e)){var t=Object.entries(e).filter(function(r){var o=S5(r,2),a=o[0],i=o[1],s=!0;return t7(a)||(console.warn('Skipped "'.concat(a,'" because it is not a valid MIME type. Check https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types for a list of valid MIME types.')),s=!1),(!Array.isArray(i)||!i.every(n7))&&(console.warn('Skipped "'.concat(a,'" because an invalid file extension was provided.')),s=!1),s}).reduce(function(r,o){var a=S5(o,2),i=a[0],s=a[1];return E6(E6({},r),{},Y4({},i,s))},{});return[{description:"Files",accept:t}]}return e}function la(e){if(K1(e))return Object.entries(e).reduce(function(t,r){var o=S5(r,2),a=o[0],i=o[1];return[].concat(H6(t),[a],H6(i))},[]).filter(function(t){return t7(t)||n7(t)}).join(",")}function ca(e){return e instanceof DOMException&&(e.name==="AbortError"||e.code===e.ABORT_ERR)}function da(e){return e instanceof DOMException&&(e.name==="SecurityError"||e.code===e.SECURITY_ERR)}function t7(e){return e==="audio/*"||e==="video/*"||e==="image/*"||e==="text/*"||/\w+\/[-+.\w]+/g.test(e)}function n7(e){return/^.*\.[\w]+$/.test(e)}var ua=["children"],pa=["open"],ha=["refKey","role","onKeyDown","onFocus","onBlur","onClick","onDragEnter","onDragOver","onDragLeave","onDrop"],ga=["refKey","onChange","onClick"];function ma(e){return va(e)||ya(e)||r7(e)||fa()}function fa(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
16
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function ya(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function va(e){if(Array.isArray(e))return r3(e)}function q2(e,t){return _a(e)||Va(e,t)||r7(e,t)||ba()}function ba(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
17
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function r7(e,t){if(e){if(typeof e=="string")return r3(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return r3(e,t)}}function r3(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,o=new Array(t);r<t;r++)o[r]=e[r];return o}function Va(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var o=[],a=!0,i=!1,s,C;try{for(r=r.call(e);!(a=(s=r.next()).done)&&(o.push(s.value),!(t&&o.length===t));a=!0);}catch(p){i=!0,C=p}finally{try{!a&&r.return!=null&&r.return()}finally{if(i)throw C}}return o}}function _a(e){if(Array.isArray(e))return e}function L6(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),r.push.apply(r,o)}return r}function t1(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?L6(Object(r),!0).forEach(function(o){o3(e,o,r[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):L6(Object(r)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(r,o))})}return e}function o3(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function o2(e,t){if(e==null)return{};var r=xa(e,t),o,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)o=i[a],!(t.indexOf(o)>=0)&&Object.prototype.propertyIsEnumerable.call(e,o)&&(r[o]=e[o])}return r}function xa(e,t){if(e==null)return{};var r={},o=Object.keys(e),a,i;for(i=0;i<o.length;i++)a=o[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}var R3=c.forwardRef(function(e,t){var r=e.children,o=o2(e,ua),a=a7(o),i=a.open,s=o2(a,pa);return c.useImperativeHandle(t,function(){return{open:i}},[i]),q5.createElement(c.Fragment,null,r(t1(t1({},s),{},{open:i})))});R3.displayName="Dropzone";var o7={disabled:!1,getFilesFromEvent:Ro,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};R3.defaultProps=o7;R3.propTypes={children:Q.func,accept:Q.objectOf(Q.arrayOf(Q.string)),multiple:Q.bool,preventDropOnDocument:Q.bool,noClick:Q.bool,noKeyboard:Q.bool,noDrag:Q.bool,noDragEventsBubbling:Q.bool,minSize:Q.number,maxSize:Q.number,maxFiles:Q.number,disabled:Q.bool,getFilesFromEvent:Q.func,onFileDialogCancel:Q.func,onFileDialogOpen:Q.func,useFsAccessApi:Q.bool,autoFocus:Q.bool,onDragEnter:Q.func,onDragLeave:Q.func,onDragOver:Q.func,onDrop:Q.func,onDropAccepted:Q.func,onDropRejected:Q.func,onError:Q.func,validator:Q.func};var a3={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function a7(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=t1(t1({},o7),e),r=t.accept,o=t.disabled,a=t.getFilesFromEvent,i=t.maxSize,s=t.minSize,C=t.multiple,p=t.maxFiles,d=t.onDragEnter,h=t.onDragLeave,g=t.onDragOver,m=t.onDrop,w=t.onDropAccepted,V=t.onDropRejected,b=t.onFileDialogCancel,k=t.onFileDialogOpen,f=t.useFsAccessApi,T=t.autoFocus,M=t.preventDropOnDocument,j=t.noClick,B=t.noKeyboard,x=t.noDrag,Z=t.noDragEventsBubbling,I=t.onError,O=t.validator,R=c.useMemo(function(){return la(r)},[r]),q=c.useMemo(function(){return Ca(r)},[r]),G=c.useMemo(function(){return typeof k=="function"?k:D6},[k]),W=c.useMemo(function(){return typeof b=="function"?b:D6},[b]),y=c.useRef(null),v=c.useRef(null),E=c.useReducer(wa,a3),L=q2(E,2),N=L[0],D=L[1],K=N.isFocused,X=N.isFileDialogActive,g1=c.useRef(typeof window<"u"&&window.isSecureContext&&f&&sa()),b1=function(){!g1.current&&X&&setTimeout(function(){if(v.current){var P=v.current.files;P.length||(D({type:"closeDialog"}),W())}},300)};c.useEffect(function(){return window.addEventListener("focus",b1,!1),function(){window.removeEventListener("focus",b1,!1)}},[v,X,W,g1]);var D1=c.useRef([]),j5=function(P){y.current&&y.current.contains(P.target)||(P.preventDefault(),D1.current=[])};c.useEffect(function(){return M&&(document.addEventListener("dragover",A6,!1),document.addEventListener("drop",j5,!1)),function(){M&&(document.removeEventListener("dragover",A6),document.removeEventListener("drop",j5))}},[y,M]),c.useEffect(function(){return!o&&T&&y.current&&y.current.focus(),function(){}},[y,T,o]);var M1=c.useCallback(function(_){I?I(_):console.error(_)},[I]),b5=c.useCallback(function(_){_.preventDefault(),_.persist(),A(_),D1.current=[].concat(ma(D1.current),[_.target]),U5(_)&&Promise.resolve(a(_)).then(function(P){if(!(r2(_)&&!Z)){var o1=P.length,C1=o1>0&&ra({files:P,accept:R,minSize:s,maxSize:i,multiple:C,maxFiles:p,validator:O}),m1=o1>0&&!C1;D({isDragAccept:C1,isDragReject:m1,isDragActive:!0,type:"setDraggedFiles"}),d&&d(_)}}).catch(function(P){return M1(P)})},[a,d,M1,Z,R,s,i,C,p,O]),P5=c.useCallback(function(_){_.preventDefault(),_.persist(),A(_);var P=U5(_);if(P&&_.dataTransfer)try{_.dataTransfer.dropEffect="copy"}catch{}return P&&g&&g(_),!1},[g,Z]),I5=c.useCallback(function(_){_.preventDefault(),_.persist(),A(_);var P=D1.current.filter(function(C1){return y.current&&y.current.contains(C1)}),o1=P.indexOf(_.target);o1!==-1&&P.splice(o1,1),D1.current=P,!(P.length>0)&&(D({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),U5(_)&&h&&h(_))},[y,h,Z]),U1=c.useCallback(function(_,P){var o1=[],C1=[];_.forEach(function(m1){var _5=X4(m1,R),a5=q2(_5,2),M2=a5[0],E2=a5[1],T2=e7(m1,s,i),B5=q2(T2,2),k2=B5[0],A2=B5[1],L2=O?O(m1):null;if(M2&&k2&&!L2)o1.push(m1);else{var D2=[E2,A2];L2&&(D2=D2.concat(L2)),C1.push({file:m1,errors:D2.filter(function(s7){return s7})})}}),(!C&&o1.length>1||C&&p>=1&&o1.length>p)&&(o1.forEach(function(m1){C1.push({file:m1,errors:[na]})}),o1.splice(0)),D({acceptedFiles:o1,fileRejections:C1,type:"setFiles"}),m&&m(o1,C1,P),C1.length>0&&V&&V(C1,P),o1.length>0&&w&&w(o1,P)},[D,C,R,s,i,p,m,w,V,O]),r5=c.useCallback(function(_){_.preventDefault(),_.persist(),A(_),D1.current=[],U5(_)&&Promise.resolve(a(_)).then(function(P){r2(_)&&!Z||U1(P,_)}).catch(function(P){return M1(P)}),D({type:"reset"})},[a,U1,M1,Z]),E1=c.useCallback(function(){if(g1.current){D({type:"openDialog"}),G();var _={multiple:C,types:q};window.showOpenFilePicker(_).then(function(P){return a(P)}).then(function(P){U1(P,null),D({type:"closeDialog"})}).catch(function(P){ca(P)?(W(P),D({type:"closeDialog"})):da(P)?(g1.current=!1,v.current?(v.current.value=null,v.current.click()):M1(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no <input> was provided."))):M1(P)});return}v.current&&(D({type:"openDialog"}),G(),v.current.value=null,v.current.click())},[D,G,W,f,U1,M1,q,C]),V5=c.useCallback(function(_){!y.current||!y.current.isEqualNode(_.target)||(_.key===" "||_.key==="Enter"||_.keyCode===32||_.keyCode===13)&&(_.preventDefault(),E1())},[y,E1]),j1=c.useCallback(function(){D({type:"focus"})},[]),q1=c.useCallback(function(){D({type:"blur"})},[]),O5=c.useCallback(function(){j||(ia()?setTimeout(E1,0):E1())},[j,E1]),P1=function(P){return o?null:P},o5=function(P){return B?null:P1(P)},G1=function(P){return x?null:P1(P)},A=function(P){Z&&P.stopPropagation()},$=c.useMemo(function(){return function(){var _=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},P=_.refKey,o1=P===void 0?"ref":P,C1=_.role,m1=_.onKeyDown,_5=_.onFocus,a5=_.onBlur,M2=_.onClick,E2=_.onDragEnter,T2=_.onDragOver,B5=_.onDragLeave,k2=_.onDrop,A2=o2(_,ha);return t1(t1(o3({onKeyDown:o5(T1(m1,V5)),onFocus:o5(T1(_5,j1)),onBlur:o5(T1(a5,q1)),onClick:P1(T1(M2,O5)),onDragEnter:G1(T1(E2,b5)),onDragOver:G1(T1(T2,P5)),onDragLeave:G1(T1(B5,I5)),onDrop:G1(T1(k2,r5)),role:typeof C1=="string"&&C1!==""?C1:"presentation"},o1,y),!o&&!B?{tabIndex:0}:{}),A2)}},[y,V5,j1,q1,O5,b5,P5,I5,r5,B,x,o]),a1=c.useCallback(function(_){_.stopPropagation()},[]),z=c.useMemo(function(){return function(){var _=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},P=_.refKey,o1=P===void 0?"ref":P,C1=_.onChange,m1=_.onClick,_5=o2(_,ga),a5=o3({accept:R,multiple:C,type:"file",style:{display:"none"},onChange:P1(T1(C1,r5)),onClick:P1(T1(m1,a1)),tabIndex:-1},o1,v);return t1(t1({},a5),_5)}},[v,r,C,r5,o]);return t1(t1({},N),{},{isFocused:K&&!o,getRootProps:$,getInputProps:z,rootRef:y,inputRef:v,open:P1(E1)})}function wa(e,t){switch(t.type){case"focus":return t1(t1({},e),{},{isFocused:!0});case"blur":return t1(t1({},e),{},{isFocused:!1});case"openDialog":return t1(t1({},a3),{},{isFileDialogActive:!0});case"closeDialog":return t1(t1({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return t1(t1({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return t1(t1({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return t1({},a3);default:return e}}function D6(){}const Sa=e=>JSON.stringify(JSON.parse(e),null,4),Ha=({onSuccess:e,onError:t})=>r=>{var a;const o=(a=r==null?void 0:r.target)==null?void 0:a.result;if(typeof o=="string")try{const i=Sa(o);e(i)}catch{t("Cannot format as valid JSON")}else t("Unsupported format")},Ma=({onSuccess:e,onError:t,children:r,onDragStatusChange:o,...a})=>{const i=c.useCallback(([d])=>{const h=new FileReader;h.onload=Ha({onSuccess:e,onError:t}),h.readAsText(d)},[]),{getRootProps:s,getInputProps:C,isDragActive:p}=a7({onDrop:i,accept:{"application/json":[".json"]},maxFiles:1});return c.useEffect(()=>{o(p)},[p]),l(H,{...s(),...a,children:[n("input",{...C()}),r]})},Ea=u(Ma)(({theme:e})=>({padding:e.spacing(4,2,2,2),border:`1px dashed ${e.palette.secondary.border}`,borderRadius:e.shape.borderRadiusLarge,display:"flex",flexDirection:"column",alignItems:"center"})),i7=u(_2,{shouldForwardProp:e=>e!=="active"})(({theme:e,active:t})=>({transition:"background-color 0.5s ease",color:e.palette.common.white,backgroundColor:t?e.palette.primary.main:e.palette.divider,"@keyframes pulse":{"0%":{boxShadow:`0 0 0 0px ${C5(e.palette.primary.main,.7)}`},"100%":{boxShadow:`0 0 0 20px ${C5(e.palette.primary.main,0)}`}},animation:t?"pulse 2s infinite":""})),Ta=u(H)(({theme:e})=>({backgroundColor:e.palette.background.elevation2,borderRadius:e.shape.borderRadiusLarge,padding:e.spacing(3)})),G2=u(F)(({theme:e})=>({marginBottom:e.spacing(.5)})),K2=u(H)(({theme:e})=>({marginBottom:e.spacing(3),color:e.palette.text.secondary,fontSize:e.fontSizes.smallBody})),ka=()=>l(Ta,{children:[n(G2,{children:"What is being imported?"}),l(K2,{children:["Feature toggles will be imported with full configuration:",l("ul",{children:[n("li",{children:"strategies"}),n("li",{children:"context fields"}),n("li",{children:"variants"}),n("li",{children:"tags"}),n("li",{children:"feature toggle status"})]})]}),n(G2,{children:"Exceptions?"}),n(K2,{children:"If the feature toggle already exists in the new instance, it will be overwritten"}),n(G2,{children:"What is not imported?"}),n(K2,{sx:{marginBottom:0},children:"If we detect segments or custom strategies in your imported file, we will stop the import. You need to create them first in the new instance and run the import again"})]}),F3=u("div")(({theme:e})=>({backgroundColor:e.palette.background.paper,padding:e.spacing(5,8,3,8),display:"flex",flexDirection:"column",gap:e.spacing(3),flexBasis:"70%"})),j3=u(H)(({theme:e})=>({width:"100%",borderTop:`1px solid ${e.palette.divider}`,marginTop:"auto",paddingTop:e.spacing(3),display:"flex",justifyContent:"flex-end"})),Aa=u(p3)(({theme:e})=>({width:"100%"})),La=u(F)(({theme:e})=>({marginTop:e.spacing(4),fontSize:e.fontSizes.mainHeader})),Da=u(F)(({theme:e})=>({marginTop:e.spacing(2),marginBottom:e.spacing(1.5),color:e.palette.text.secondary})),Za=u(F)(({theme:e})=>({marginTop:e.spacing(4),color:e.palette.text.secondary})),Ra=({activeTab:e,setActiveTab:t})=>n(H,{sx:{borderBottom:1,borderColor:"divider"},children:l(g3,{value:e,children:[n(Y5,{label:"Upload file",value:"file",onClick:()=>t("file")}),n(Y5,{label:"Code editor",value:"code","data-testid":B8,onClick:()=>t("code")})]})}),Fa=({activeTab:e,setActiveTab:t,importPayload:r,setImportPayload:o})=>{const[a,i]=c.useState(!1),{setToastData:s}=h1();return n(S,{condition:e==="file",show:l(Ea,{onSuccess:C=>{o(C),t("code"),s({type:"success",title:"File uploaded"})},onError:C=>{o(""),s({type:"error",title:C})},onDragStatusChange:i,children:[n(i7,{sx:{width:80,height:80},active:a,children:n(w9,{fontSize:"large"})}),n(La,{children:a?"Drop your file to upload":"Drop your file here"}),n(Da,{children:"or select a file from your device"}),n(p1,{variant:"outlined",children:"Select file"}),n(Za,{children:"JSON format: max 500 kB"})]}),elseShow:n(Aa,{label:"Exported toggles",variant:"outlined",onChange:C=>o(C.target.value),value:r,"data-testid":$8,multiline:!0,minRows:13,maxRows:13})})},ja=({onSubmit:e,onClose:t,disabled:r})=>l(j3,{children:[n(p1,{sx:{position:"static"},variant:"contained",type:"submit",onClick:e,"data-testid":z8,disabled:r,children:"Validate"}),n(p1,{sx:{position:"static",ml:2},variant:"outlined",type:"submit",onClick:t,children:"Cancel import"})]}),Pa=({tabs:e,importOptions:t,importArea:r,actions:o})=>l(F3,{children:[e,t,r,n(ka,{}),o]}),Ia=()=>{const{makeRequest:e,createRequest:t,errors:r,loading:o}=v3({propagateErrors:!0});return{loading:o,errors:r,validateImport:async i=>{const C=t("api/admin/features-batch/validate",{method:"POST",body:JSON.stringify(i)});try{return(await e(C.caller,C.id)).json()}catch(p){throw p}}}},Oa=u(H)(({theme:e})=>({backgroundColor:e.palette.background.elevation2,borderRadius:e.shape.borderRadiusLarge,padding:e.spacing(3)})),Z6=u("span")(({theme:e})=>({fontSize:e.fontSizes.smallBody,color:e.palette.text.secondary})),R6=u("span")(({theme:e})=>({fontSize:e.fontSizes.smallBody,color:e.palette.text.primary,fontWeight:e.fontWeight.bold})),F6=u(H)(({theme:e})=>({border:`1px solid ${e.palette.error.border}`,borderRadius:e.shape.borderRadiusLarge,paddingBottom:e.spacing(2)})),Ba=u(H)(({theme:e})=>({border:`1px solid ${e.palette.warning.border}`,borderRadius:e.shape.borderRadiusLarge,paddingBottom:e.spacing(2)})),j6=u(H)(({theme:e})=>({color:e.palette.error.dark,backgroundColor:e.palette.error.light,fontSize:e.fontSizes.smallBody,borderBottom:`1px solid ${e.palette.error.border}`,borderTopLeftRadius:e.shape.borderRadiusLarge,borderTopRightRadius:e.shape.borderRadiusLarge,padding:e.spacing(2)})),$a=u(H)(({theme:e})=>({color:e.palette.warning.dark,backgroundColor:e.palette.warning.light,fontSize:e.fontSizes.smallBody,borderBottom:`1px solid ${e.palette.warning.border}`,borderTopLeftRadius:e.shape.borderRadiusLarge,borderTopRightRadius:e.shape.borderRadiusLarge,padding:e.spacing(2)})),P6=u(H)(({theme:e})=>({color:e.palette.error.dark,fontSize:e.fontSizes.smallBody})),za=u(H)(({theme:e})=>({color:e.palette.warning.dark,fontSize:e.fontSizes.smallBody})),J2=u("ul")(({theme:e})=>({marginTop:e.spacing(1),marginBottom:e.spacing(0),paddingLeft:e.spacing(3),paddingBottom:e.spacing(3),borderBottom:`1px dashed ${e.palette.neutral.border}`})),Y2=u("li")(({theme:e})=>({fontSize:e.fontSizes.smallBody})),Na=({environment:e,project:t,payload:r,onClose:o,onBack:a,onSubmit:i})=>{const{validateImport:s}=Ia(),{setToastData:C}=h1(),{trackEvent:p}=A1(),[d,h]=c.useState({errors:[],warnings:[],permissions:[]}),[g,m]=c.useState(!0),w=V=>{V.errors.length>0||V.permissions.length>0?p("export_import",{props:{eventType:"validation fail"}}):p("export_import",{props:{eventType:"validation success"}}),h(V)};return c.useEffect(()=>{s({environment:e,project:t,data:JSON.parse(r)}).then(w).catch(V=>{m(!1),C({type:"error",title:c1(V)})})},[]),l(F3,{children:[l(Oa,{children:[n(F,{sx:{mb:1.5},children:"You are importing this configuration in:"}),l(H,{sx:{display:"flex",gap:3},children:[l("span",{children:[n(Z6,{children:"Environment: "}),n(R6,{children:e})]}),l("span",{children:[n(Z6,{children:"Project: "}),n(R6,{children:t})]})]})]}),n(S,{condition:d.permissions.length>0,show:l(F6,{children:[l(j6,{children:[n("strong",{children:"Missing permissions!"})," There are some permissions that you need to be granted before importing this configuration"]}),d.permissions.map(V=>l(H,{sx:{p:2},children:[n(P6,{children:V.message}),n(J2,{children:V.affectedItems.map(b=>n(Y2,{children:b},b))})]},V.message))]})}),n(S,{condition:d.errors.length>0,show:l(F6,{children:[l(j6,{children:[n("strong",{children:"Conflict!"})," There are some errors that need to be fixed before the import."]}),d.errors.map(V=>l(H,{sx:{p:2},children:[n(P6,{children:V.message}),n(J2,{children:V.affectedItems.map(b=>n(Y2,{children:b},b))})]},V.message))]})}),n(S,{condition:d.warnings.length>0,show:l(Ba,{children:[l($a,{children:[n("strong",{children:"Warning!"})," It is recommended to verify the following information before importing."]}),d.warnings.map(V=>l(H,{sx:{p:2},children:[n(za,{children:V.message}),n(J2,{children:V.affectedItems.map(b=>n(Y2,{children:b},b))})]},V.message))]})}),l(j3,{children:[n(p1,{sx:{position:"static",mr:"auto"},variant:"outlined",type:"submit",onClick:a,children:"Back"}),n(L5,{permission:s3,projectId:t,sx:{position:"static"},variant:"contained",type:"submit",onClick:i,"data-testid":N8,disabled:d.errors.length>0||d.permissions.length>0||!g,children:"Import configuration"}),n(p1,{sx:{position:"static",ml:2},variant:"outlined",type:"submit",onClick:o,children:"Cancel import"})]})]})},Wa=()=>{const{makeRequest:e,createRequest:t,errors:r,loading:o}=v3({propagateErrors:!0}),{trackEvent:a}=A1();return{loading:o,errors:r,createImport:async s=>{const p=t("api/admin/features-batch/import",{method:"POST",body:JSON.stringify(s)});try{const d=await e(p.caller,p.id);return a("export_import",{props:{eventType:"features imported"}}),d}catch(d){throw a("export_import",{props:{eventType:"features import failed"}}),d}}}},Ua=u(V4)(({theme:e})=>({padding:e.spacing(4,2,2,2),display:"flex",flexDirection:"column",alignItems:"center",gap:e.spacing(8)})),qa=u(F)(({theme:e})=>({fontSize:e.fontSizes.mainHeader})),Ga=u(_2)(({theme:e})=>({backgroundColor:e.palette.primary.main})),Ka=u(_2)(({theme:e})=>({backgroundColor:e.palette.error.main})),Ja=u(V4)(({theme:e})=>({border:`1px solid ${e.palette.info.border}`,borderRadius:e.shape.borderRadiusLarge,padding:e.spacing(2),color:e.palette.info.dark,backgroundColor:e.palette.info.light,fontSize:e.fontSizes.smallBody})),Ya=(e,t)=>e?{status:"loading"}:Object.keys(t).length>0?{status:"error",errors:t}:{status:"success"},Qa=({environment:e,project:t,payload:r,onClose:o})=>{const{createImport:a,loading:i,errors:s}=Wa(),{refetch:C}=v1(t),{refetch:p}=f2(t),{setToastData:d}=h1(),{isChangeRequestConfigured:h}=k5(t);c.useEffect(()=>{a({environment:e,project:t,data:JSON.parse(r)}).then(()=>{C(),p()}).catch(w=>{d({type:"error",title:c1(w)})})},[]);const g=Ya(i,s),m=h(e)&&g.status==="success";return l(F3,{children:[l(Ua,{children:[n(S,{condition:g.status==="loading",show:n(i7,{sx:{width:80,height:80},active:!0,children:n(M9,{fontSize:"large"})})}),n(S,{condition:g.status==="success",show:n(Ga,{sx:{width:80,height:80},children:n(a4,{fontSize:"large"})})}),n(S,{condition:g.status==="error",show:n(Ka,{sx:{width:80,height:80},children:n(x9,{fontSize:"large"})})}),l(qa,{children:[n(S,{condition:g.status==="loading",show:"Importing..."}),n(S,{condition:g.status==="success",show:"Import completed"}),n(S,{condition:g.status==="error",show:"Import failed"})]})]}),n(S,{condition:m,show:l(Ja,{children:["For this environment ",n("strong",{children:"Change request"})," is enabled. This means that the import has generated a change request which needs to be approved before the configuration will be visible in the instance."]})}),n(j3,{children:n(p1,{sx:{position:"static"},variant:"contained",type:"submit",onClick:o,children:"Close"})})]})},Xa=u(H)(({theme:e})=>({backgroundColor:e.palette.background.elevation2,borderRadius:e.shape.borderRadiusLarge,padding:e.spacing(3)})),ei=u(F)(({theme:e})=>({marginBottom:e.spacing(3),fontWeight:e.fontWeight.bold})),ti=u(F)(({theme:e})=>({marginBottom:e.spacing(1.5)})),ni=({project:e,environment:t,onChange:r})=>{const{project:o}=v1(e),a=o.environments.map(({environment:i})=>({key:i,label:i,title:i}));return c.useEffect(()=>{t===""&&a[0]&&r(a[0].key)},[JSON.stringify(a)]),l(Xa,{children:[n(ei,{children:"Import options"}),n(ti,{children:"Choose the environment to import the configuration for"}),n(g2,{sx:{width:"180px"},options:a,onChange:r,label:"Environment",value:t,"data-testid":W8,IconComponent:p4,fullWidth:!0})]})},ri=u("div")(({theme:e})=>({minHeight:"100vh",display:"flex"})),oi=u("div")(({theme:e})=>({backgroundColor:e.palette.background.sidebar,padding:e.spacing(8),flexBasis:"30%"})),ai=u("div")(({theme:e})=>({textTransform:"uppercase",fontSize:e.fontSizes.smallBody,color:e.palette.common.white,fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(3)})),ii=e=>{try{return JSON.parse(e),!0}catch{return!1}},si=({open:e,setOpen:t,project:r})=>{const[o,a]=c.useState("configure"),[i,s]=c.useState(""),[C,p]=c.useState(""),[d,h]=c.useState("file"),g=()=>{t(!1)};c.useEffect(()=>{e===!0&&m()},[e]);const m=()=>{a("configure"),s(""),p(""),h("file")};return n(Y1,{open:e,onClose:g,label:"Import toggles",children:l(ri,{children:[l(oi,{children:[n(ai,{children:"Process"}),n(Ao,{stage:o})]}),n(S,{condition:o==="configure",show:n(Pa,{tabs:n(Ra,{activeTab:d,setActiveTab:h}),importOptions:n(ni,{project:r,environment:i,onChange:s}),importArea:n(Fa,{activeTab:d,setActiveTab:h,importPayload:C,setImportPayload:p}),actions:n(ja,{disabled:!ii(C),onSubmit:()=>a("validate"),onClose:g})})}),n(S,{condition:o==="validate",show:n(Na,{project:r,environment:i,payload:C,onBack:()=>a("configure"),onSubmit:()=>a("import"),onClose:g})}),n(S,{condition:o==="import",show:n(Qa,{project:r,environment:i,payload:C,onClose:g})})]})})},hi=()=>{var O;const e=J("projectId"),t=U8(),{project:r,loading:o,error:a,refetch:i}=v1(e),s=X6(o),{setToastData:C}=h1(),[p,d]=c.useState(!1),h=L1(),{pathname:g}=g4(),{isOss:m,uiConfig:w,isPro:V}=l1(),b=`/projects/${e}`,k=(r==null?void 0:r.name)||e,{favorite:f,unfavorite:T}=q8(),[M,j]=c.useState(!1),B=[{title:"Overview",path:b,name:"overview"},{title:"Health",path:`${b}/health`,name:"health"},{title:"Archive",path:`${b}/archive`,name:"archive"},{title:"Change requests",path:`${b}/change-requests`,name:"change-request",isEnterprise:!0},{title:"Event log",path:`${b}/logs`,name:"logs"},{title:"Project settings",path:`${b}/settings`,name:"settings"}].filter(R=>!(m()&&R.isEnterprise)),x=[...B].reverse().find(R=>g.startsWith(R.path));if(c.useEffect(()=>{const R=t.get("created"),q=t.get("edited");(R||q)&&C({type:"success",title:R?"Project created":"Project updated"})},[]),(a==null?void 0:a.status)===404)return l(Z1,{sx:R=>({padding:R.spacing(2,4,4)}),children:[n(F,{variant:"h1",children:"404 Not Found"}),l(F,{children:["Project ",n("strong",{children:e})," does not exist."]})]});const Z=async()=>{r!=null&&r.favorite?await T(e):await f(e),i()},I=n(H,{sx:R=>({marginLeft:R.spacing(1),display:"flex"}),children:n(m4,{})});return l("div",{ref:s,children:[l(F9,{children:[n(j9,{children:l(L9,{children:[l($3,{children:[n(R9,{onClick:Z,isFavorite:r==null?void 0:r.favorite}),n(P9,{children:n(D9,{"data-loading":!0,children:k})})]}),n($3,{children:n(S,{condition:!!((O=w==null?void 0:w.flags)!=null&&O.featuresExportImport),show:n(s5,{permission:h2,projectId:e,onClick:()=>d(!0),tooltipProps:{title:"Import"},"data-testid":G8,"data-loading":!0,children:n(H9,{})})})})]})}),n(I9,{}),n(O9,{children:n(g3,{value:x==null?void 0:x.path,indicatorColor:"primary",textColor:"primary",variant:"scrollable",allowScrollButtonsMobile:!0,children:B.map(R=>n(B9,{label:R.title,value:R.path,onClick:()=>h(R.path),"data-testid":`TAB_${R.title}`,iconPosition:R.isEnterprise?"end":void 0,icon:R.isEnterprise&&V()&&I||void 0},R.title))})})]}),n(h4,{project:e,open:M,onClose:()=>{j(!1)},onSuccess:()=>{h("/projects")}}),l(m5,{children:[n(e1,{path:"health",element:n(Ie,{})}),n(e1,{path:"access/*",element:n(f4,{replace:!0,to:`/projects/${e}/settings/access`})}),n(e1,{path:"environments",element:n(_4,{})}),n(e1,{path:"archive",element:n(n0,{})}),n(e1,{path:"logs",element:n(Be,{})}),n(e1,{path:"change-requests",element:n(Mr,{})}),n(e1,{path:"change-requests/:id",element:n(cr,{})}),n(e1,{path:"settings/*",element:n(To,{})}),n(e1,{path:"*",element:n(ve,{})})]}),n(si,{open:p,setOpen:d,project:e})]})};export{hi as default};
|