ethyca-fides 2.66.2rc0__py2.py3-none-any.whl → 2.67.0__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of ethyca-fides might be problematic. Click here for more details.
- {ethyca_fides-2.66.2rc0.dist-info → ethyca_fides-2.67.0.dist-info}/METADATA +1 -1
- {ethyca_fides-2.66.2rc0.dist-info → ethyca_fides-2.67.0.dist-info}/RECORD +297 -282
- fides/_version.py +3 -3
- fides/api/alembic/migrations/versions/7e9a2b52f498_adding_masking_secrets.py +60 -0
- fides/api/alembic/migrations/versions/a7065df4dcf1_add_finalized_fields_to_privacy_request.py +65 -0
- fides/api/alembic/migrations/versions/d0031087eacb_create_manualtaskconditionaldependency_.py +106 -0
- fides/api/api/v1/endpoints/dataset_config_endpoints.py +13 -5
- fides/api/api/v1/endpoints/drp_endpoints.py +7 -1
- fides/api/api/v1/endpoints/privacy_request_endpoints.py +44 -1
- fides/api/api/v1/endpoints/user_endpoints.py +83 -7
- fides/api/app_setup.py +3 -2
- fides/api/common_exceptions.py +8 -0
- fides/api/db/base.py +1 -0
- fides/api/db/database.py +1 -1
- fides/api/graph/execution.py +46 -0
- fides/api/graph/graph.py +13 -2
- fides/api/graph/traversal.py +126 -39
- fides/api/models/manual_task/__init__.py +2 -0
- fides/api/models/manual_task/conditional_dependency.py +144 -0
- fides/api/models/{manual_task.py → manual_task/manual_task.py} +10 -0
- fides/api/models/masking_secret.py +72 -0
- fides/api/models/policy.py +23 -0
- fides/api/models/privacy_request/execution_log.py +1 -0
- fides/api/models/privacy_request/privacy_request.py +64 -26
- fides/api/oauth/roles.py +2 -0
- fides/api/schemas/application_config.py +12 -1
- fides/api/schemas/connection_configuration/connection_secrets_datahub.py +10 -1
- fides/api/schemas/masking/masking_secrets.py +1 -1
- fides/api/schemas/policy.py +1 -0
- fides/api/schemas/privacy_request.py +5 -0
- fides/api/service/connectors/base_connector.py +15 -0
- fides/api/service/connectors/bigquery_connector.py +72 -19
- fides/api/service/connectors/dynamodb_connector.py +2 -1
- fides/api/service/connectors/fides_connector.py +1 -0
- fides/api/service/connectors/http_connector.py +1 -0
- fides/api/service/connectors/manual_task_connector.py +1 -0
- fides/api/service/connectors/manual_webhook_connector.py +2 -1
- fides/api/service/connectors/mongodb_connector.py +1 -0
- fides/api/service/connectors/okta_connector.py +1 -0
- fides/api/service/connectors/query_configs/bigquery_query_config.py +95 -36
- fides/api/service/connectors/query_configs/snowflake_query_config.py +3 -3
- fides/api/service/connectors/rds_mysql_connector.py +1 -0
- fides/api/service/connectors/rds_postgres_connector.py +1 -0
- fides/api/service/connectors/s3_connector.py +1 -0
- fides/api/service/connectors/saas_connector.py +1 -0
- fides/api/service/connectors/scylla_connector.py +1 -0
- fides/api/service/connectors/snowflake_connector.py +55 -2
- fides/api/service/connectors/sql_connector.py +159 -13
- fides/api/service/connectors/website_connector.py +1 -0
- fides/api/service/privacy_request/dsr_package/templates/welcome.html +2 -2
- fides/api/service/privacy_request/request_runner_service.py +145 -55
- fides/api/service/privacy_request/request_service.py +172 -52
- fides/api/task/conditional_dependencies/__init__.py +0 -0
- fides/api/task/conditional_dependencies/evaluator.py +109 -0
- fides/api/task/conditional_dependencies/schemas.py +54 -0
- fides/api/task/create_request_tasks.py +1 -1
- fides/api/task/deprecated_graph_task.py +24 -6
- fides/api/task/execute_request_tasks.py +93 -12
- fides/api/task/filter_results.py +1 -1
- fides/api/task/graph_task.py +86 -5
- fides/api/task/manual/manual_task_address.py +46 -0
- fides/api/task/manual/manual_task_graph_task.py +118 -126
- fides/api/task/manual/manual_task_utils.py +52 -105
- fides/api/util/aws_util.py +5 -1
- fides/api/util/cache.py +61 -0
- fides/api/util/encryption/secrets_util.py +48 -18
- fides/api/util/memory_watchdog.py +286 -0
- fides/common/api/scope_registry.py +3 -0
- fides/common/api/v1/urn_registry.py +1 -1
- fides/config/execution_settings.py +12 -0
- fides/config/utils.py +2 -0
- fides/service/privacy_request/privacy_request_service.py +6 -1
- fides/ui-build/static/admin/404.html +1 -1
- fides/ui-build/static/admin/_next/static/MNlh9olWjgbqAHKyQY3LF/_buildManifest.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1316-2606e19807c08aa5.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1467-8808ec8836e033f9.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1817-b78b58ae3b75d75a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1975.7d4634a0e823a02b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{203-5a663f465ba26bb4.js → 203-cd78ea279cecba60.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/2150-930ffaf2c4718edc.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/255-1bc0cbef7a59cdc6.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{3450-0ba194991d0cca88.js → 3450-69f4e16978971bb8.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/346-aa3b88efb85f2e28.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3550-d04125c828d591a1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{3855-e172870d3e21b0dd.js → 3855-509ca7ac99b5eada.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{3872-46cebf7ec1b31a2b.js → 3872-0a0f0032ca39a93f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/409-ea70638a59296659.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{4121-2bc09fc4ddbfe5cb.js → 4121-877e19d3fa078c7b.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{4230-60100f7ef3ddcde1.js → 4230-114e31621c19ea69.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/4259.d1507e0db19cbed7.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/431-1db919f6569a4021.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{4608-bbb7bf511a05c3c2.js → 4608-f16f281f2d05d963.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/5163-e682273cd76a7d07.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5309-d9a488457898263b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{905-ffdbd0b14167e8bd.js → 5596-4378b2927dae65b2.js} +3 -3
- fides/ui-build/static/admin/_next/static/chunks/5619-9b50cec521203989.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{6084-7178ff6ea6822475.js → 6084-ddbad3149364725d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/6148-59a59d5c5925344f.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6419-d0c00d661b01f8fa.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{6662-507be5d46e5b719b.js → 6662-a9e54ead3dc53644.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/6780-b42a27e72707936d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{6853-2ad3e08fe6f9f5f2.js → 6853-d0190d2cca9dbde2.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{6882-6af16fef26c21e06.js → 6882-59ea739e3616ce83.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/6954-ba98e778a5b45ebf.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{7476-281ee9a8286556f3.js → 7476-cc0d9a94ed7aad53.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/7725-539d3a906f627531.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{787-fb41002f797eb2df.js → 787-c57185ad89c4e288.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{79-7e87aff851423d4a.js → 79-2aab56be75e16187.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{796-329a5f823ec258a5.js → 796-3bdda2a7868464af.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/8735-40caf91800a3610c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/8765-f622a35b40a7ec63.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9046-7085a401297c5520.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9187-7438242f0d380bb0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{9226-746771d47dff6266.js → 9226-2dcac54ab3fb94be.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/9278-08cc704317fe535e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{9951-9b753ad7c3f51bdf.js → 9951-7c6639e5d062779e.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{_app-39ccb07327c2c5d5.js → _app-750d6bd16c971bb9.js} +56 -56
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/{manual-98777246bec9dc2a.js → manual-2a655ff3a97f2492.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{add-systems-a71c0aff4e0e6535.js → add-systems-0902f0bb4080643e.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{[id]-1edf582ba3cd3bbb.js → [id]-f22ddd9b48a5c418.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{new-06bb3b0bf097fcdb.js → new-e74cb5ea87f15b40.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/{privacy-experience-685771e5f7196d87.js → privacy-experience-21f997c69fc3b4c2.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{[id]-6ccedc70dc447089.js → [id]-da4124b7600a2a1d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{new-944bca1cc57985b5.js → new-a57d251c88ce68ae.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/{privacy-notices-84f4bd14ce8673bc.js → privacy-notices-ad105181bc91209b.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-b0c4235fe6d0b0c8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]/{[resourceUrn]-11d52f1570759c4d.js → [resourceUrn]-aad6047a4604b945.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/{projects-32eac8bbd217615a.js → projects-29784a11fe0fbd0a.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources/{[resourceUrn]-b83afa5565d0c84e.js → [resourceUrn]-b6b98cea25dd94fa.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{data-catalog-6f630d42ac9fb6b4.js → data-catalog-7770a8dc34bd0fc0.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]/[systemId]-3e5725cd06d7fe6c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]-92b0bd97d8e79340.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-ee3c0a103346fc06.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{activity-9aa744d56cdacb0d.js → activity-ad6a84a6276f914c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/discovery/{[resourceUrn]-14bd7500362ff224.js → [resourceUrn]-f98dd251babb7e28.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{discovery-9e7dfd5a6acc2e8f.js → discovery-56eb4c014f0d96a3.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datamap-d23b3ae139f0428b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/[collectionName]/{[...subfieldNames]-c0d2bfd465df20e0.js → [...subfieldNames]-15301bd6bf7cf718.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/{[collectionName]-28280a8a39a6e37c.js → [collectionName]-0fa72873e464f581.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/{new-82fb246d87e58ebd.js → new-0d50084fbdf9b84c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{dataset-20165c31ab1bc7cf.js → dataset-f3348d0a92543bab.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/{[id]-b4a6bcc87d126840.js → [id]-7d6027570d05c57f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/{new-f95d7b0bbfc58f5a.js → new-c6614583b14dc9f2.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{fides-js-docs-5d8fd1af75f19e2f.js → fides-js-docs-1f4335dca5c09860.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{index-1919aab9e5834b51.js → index-fbf9b845bb901238.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-8e346fb36e8034d2.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/{integrations-e2d5d7e2a5265e68.js → integrations-7f15cd8538cdc24d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging-1bae386d8c190348.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/{table-migration-69ad86b7a8a9a115.js → table-migration-05616e2ae20ff4f8.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-79f1576b1126975c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/messaging-f1d818242d8550f8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-d40a26bddb126c5c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-96a08c4431b5462c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-9d1840f8309b706e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent/[configuration_id]/{[purpose_id]-fc201657f4a782c7.js → [purpose_id]-e891d01ece59669e.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{consent-c2d39cba8396ef3a.js → consent-f61b87e79367865b.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{custom-fields-d992103cc55901ae.js → custom-fields-f8eea5d508c60c64.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{locations-023e1895552817de.js → locations-ed6a140b362c5baa.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{organization-ac403c0886b20e20.js → organization-ff9a34264d48c35f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]/{test-datasets-7a3396ac819c7904.js → test-datasets-a4b6d41ca679298b.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/{[id]-8314a819837f5b2a.js → [id]-c8f5fbaa83dd9945.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{systems-21f423a7c417aa9d.js → systems-c05b49ddec1a1b4f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-df0d88716578e295.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/user-management/profile/[id]-da68efc31998dc66.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/{user-management-173ac3a1ed2b05a6.js → user-management-e98dfc7d4f2a4e16.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/webpack-90e8ec1fc5c6455b.js +1 -0
- fides/ui-build/static/admin/_next/static/css/{5bfb2473e5701527.css → 23cf870196941c9a.css} +1 -1
- fides/ui-build/static/admin/_next/static/css/{94965f224bc991e9.css → 8bc1833f1fa53ff0.css} +1 -1
- fides/ui-build/static/admin/_next/static/css/d9924caa849931b3.css +1 -0
- fides/ui-build/static/admin/_next/static/css/dbcf63488933a4d5.css +29 -0
- fides/ui-build/static/admin/add-systems/manual.html +1 -1
- fides/ui-build/static/admin/add-systems/multiple.html +1 -1
- fides/ui-build/static/admin/add-systems.html +1 -1
- fides/ui-build/static/admin/consent/configure/add-vendors.html +1 -1
- fides/ui-build/static/admin/consent/configure.html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience/[id].html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience/new.html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience.html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices/[id].html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices/new.html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices.html +1 -1
- fides/ui-build/static/admin/consent/properties.html +1 -1
- fides/ui-build/static/admin/consent/reporting.html +1 -1
- fides/ui-build/static/admin/consent.html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects.html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/resources/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/resources.html +1 -1
- fides/ui-build/static/admin/data-catalog.html +1 -1
- fides/ui-build/static/admin/data-discovery/action-center/[monitorId]/[systemId].html +1 -1
- fides/ui-build/static/admin/data-discovery/action-center/[monitorId].html +1 -1
- fides/ui-build/static/admin/data-discovery/action-center.html +1 -1
- fides/ui-build/static/admin/data-discovery/activity.html +1 -1
- fides/ui-build/static/admin/data-discovery/detection/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-discovery/detection.html +1 -1
- fides/ui-build/static/admin/data-discovery/discovery/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-discovery/discovery.html +1 -1
- fides/ui-build/static/admin/datamap.html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId]/[collectionName]/[...subfieldNames].html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId]/[collectionName].html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId].html +1 -1
- fides/ui-build/static/admin/dataset/new.html +1 -1
- fides/ui-build/static/admin/dataset.html +1 -1
- fides/ui-build/static/admin/datastore-connection/[id].html +1 -1
- fides/ui-build/static/admin/datastore-connection/new.html +1 -1
- fides/ui-build/static/admin/datastore-connection.html +1 -1
- fides/ui-build/static/admin/index.html +1 -1
- fides/ui-build/static/admin/integrations/[id].html +1 -1
- fides/ui-build/static/admin/integrations.html +1 -1
- fides/ui-build/static/admin/lib/fides-ext-gpp.js +1 -1
- fides/ui-build/static/admin/lib/fides-headless.js +1 -1
- fides/ui-build/static/admin/lib/fides-preview.js +1 -1
- fides/ui-build/static/admin/lib/fides-tcf.js +4 -4
- fides/ui-build/static/admin/lib/fides.js +4 -4
- fides/ui-build/static/admin/login/[provider].html +1 -1
- fides/ui-build/static/admin/login.html +1 -1
- fides/ui-build/static/admin/messaging/[id].html +1 -1
- fides/ui-build/static/admin/messaging/add-template.html +1 -1
- fides/ui-build/static/admin/messaging.html +1 -1
- fides/ui-build/static/admin/poc/ant-components.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/AntForm.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikAntFormItem.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikControlled.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikField.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikSpreadField.html +1 -1
- fides/ui-build/static/admin/poc/forms.html +1 -1
- fides/ui-build/static/admin/poc/table-migration.html +1 -1
- fides/ui-build/static/admin/privacy-requests/[id].html +1 -1
- fides/ui-build/static/admin/privacy-requests/configure/messaging.html +1 -1
- fides/ui-build/static/admin/privacy-requests/configure/storage.html +1 -1
- fides/ui-build/static/admin/privacy-requests/configure.html +1 -1
- fides/ui-build/static/admin/privacy-requests.html +1 -1
- fides/ui-build/static/admin/properties/[id].html +1 -1
- fides/ui-build/static/admin/properties/add-property.html +1 -1
- fides/ui-build/static/admin/properties.html +1 -1
- fides/ui-build/static/admin/reporting/datamap.html +1 -1
- fides/ui-build/static/admin/settings/about/alpha.html +1 -1
- fides/ui-build/static/admin/settings/about.html +1 -1
- fides/ui-build/static/admin/settings/consent/[configuration_id]/[purpose_id].html +1 -1
- fides/ui-build/static/admin/settings/consent.html +1 -1
- fides/ui-build/static/admin/settings/custom-fields.html +1 -1
- fides/ui-build/static/admin/settings/domain-records.html +1 -1
- fides/ui-build/static/admin/settings/domains.html +1 -1
- fides/ui-build/static/admin/settings/email-templates.html +1 -1
- fides/ui-build/static/admin/settings/locations.html +1 -1
- fides/ui-build/static/admin/settings/organization.html +1 -1
- fides/ui-build/static/admin/settings/regulations.html +1 -1
- fides/ui-build/static/admin/systems/configure/[id]/test-datasets.html +1 -1
- fides/ui-build/static/admin/systems/configure/[id].html +1 -1
- fides/ui-build/static/admin/systems.html +1 -1
- fides/ui-build/static/admin/taxonomy.html +1 -1
- fides/ui-build/static/admin/user-management/new.html +1 -1
- fides/ui-build/static/admin/user-management/profile/[id].html +1 -1
- fides/ui-build/static/admin/user-management.html +1 -1
- fides/ui-build/static/admin/_next/static/8108ANFxs99VY7KZ_Xev2/_buildManifest.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1316-6cc72a45ebf7ff81.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1807-3beab149351d5ded.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1817-e601e737e3cc7a0e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/255-7db55b0e3a0f9dea.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2599-6c4d22e75028d8b6.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2858-0b44609b6be7850b.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2866-a73888c17a195cbe.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3615-5e2d062d684b8fa1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/409-a257e14acebcd73b.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/431-34f0b91c26f8d9ab.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5309-b2c4803370634ff8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/570-c99f07161bd339cd.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6780-e3d40aa17a4bf2e9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6954-bb875d9ac89f6030.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7062.fda15dcb7df85675.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7c79804f.7a7112aece470725.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9014-eeae6f581158e645.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9046-5c4c22c375de25b1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9278-9b1b5970f0702668.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9392.f4520f66206d347d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/ea076c0a.84423f606aef37cd.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-afdbd4665657cfa1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]/[systemId]-2265ecb899d45fbc.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]-5d522637871ac6c8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-9ddb52ebb7ac4c71.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datamap-7674b97d655c193b.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-0a58aee2d1e7fa01.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging-5094ffea13f32ed9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-32600543eb7b584f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/messaging-10ce53ea356f8bad.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-5501bbb129fee9c4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-cbe4c8f9096b6543.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-e130c0197362e8f3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-6387fcc8cce872eb.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/user-management/profile/[id]-ff5738706da07801.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/webpack-ff0cd6bff75588da.js +0 -1
- fides/ui-build/static/admin/_next/static/css/2cadb5f62dcd7c2b.css +0 -1
- {ethyca_fides-2.66.2rc0.dist-info → ethyca_fides-2.67.0.dist-info}/WHEEL +0 -0
- {ethyca_fides-2.66.2rc0.dist-info → ethyca_fides-2.67.0.dist-info}/entry_points.txt +0 -0
- {ethyca_fides-2.66.2rc0.dist-info → ethyca_fides-2.67.0.dist-info}/licenses/LICENSE +0 -0
- {ethyca_fides-2.66.2rc0.dist-info → ethyca_fides-2.67.0.dist-info}/top_level.txt +0 -0
- /fides/ui-build/static/admin/_next/static/{8108ANFxs99VY7KZ_Xev2 → MNlh9olWjgbqAHKyQY3LF}/_ssgManifest.js +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/{2921-455e6357b74d2f76.js → 2921-86f1547ac40a5cdf.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/{3923-6cc911dafccc5f63.js → 3923-13a6b4da2d51bf8f.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/{401-1b529d5800aa1f3a.js → 401-3cc1fee61494e3bd.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/{5574-b13021775a15bfd2.js → 5574-9312f97b637d9ee2.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/{7630-9aac73191ed5ed13.js → 7630-b1c93688013ef013.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/{9826-111aaee8bd8dbd09.js → 9826-3c578665c6d3b21d.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/{404-aece2c920ea14514.js → 404-2d803dab6a00f353.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/{multiple-dc75dc6e37e52f05.js → multiple-8ff7f37913ad736a.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure/{add-vendors-24d226b5a8de5c74.js → add-vendors-d00c9034cdeb0236.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/consent/{configure-6a8ef51138ac926a.js → configure-0e1ca0f4c8e7f4da.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/consent/{properties-6f86ab63a08a6528.js → properties-057cad65e7414a44.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/{consent-73d3cbf68f7c3a31.js → consent-e17c56eec8d91371.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/{[projectUrn]-6ba9e160dae64695.js → [projectUrn]-80a6cc8e8573514a.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/{resources-7648bbd4f6711e4d.js → resources-6c3714ee97a718c1.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/detection/{[resourceUrn]-393e20924c83373e.js → [resourceUrn]-31e6c54794a9883e.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{detection-8733807dad4bc96e.js → detection-2822a423a7ad0550.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/dataset/{[datasetId]-006b695e5af5ef24.js → [datasetId]-a8e8b5f4ee7af86c.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/{datastore-connection-c391c6fad56eec48.js → datastore-connection-3bd77864da523d41.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/messaging/{[id]-53fecfb9dd6a1e0c.js → [id]-5627d0d0668077f9.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/messaging/{add-template-76b01cec5fde10a9.js → add-template-feca66ad5c5fe54a.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/poc/{ant-components-5c08e8447c45ce44.js → ant-components-64a322d01aae5ca7.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/{AntForm-06ad5f34585480aa.js → AntForm-8bca16a7726e7eb2.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/{FormikAntFormItem-6f071c2bc9446cb0.js → FormikAntFormItem-b0f246fc3b67ebf7.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/{FormikControlled-efcc38c58991ac9e.js → FormikControlled-1a0852b090bfc392.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/{FormikField-430ba5c979abfb7c.js → FormikField-11f3de1b45e36583.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/poc/{forms-5c561880bf131afb.js → forms-1b73a1c2b6c6285f.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/{configure-d888a69a3bbe040e.js → configure-e551a860ec727802.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/properties/{[id]-d3d8e3d7583ec635.js → [id]-dd99183f93763ae4.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/properties/{add-property-1af10ed303815d46.js → add-property-0bdbc1fcbf553b8f.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/{properties-cebc0dc186be499a.js → properties-e959378bb32b6b73.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/settings/about/{alpha-5e1322de868d615e.js → alpha-1066f0c202ef744c.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/settings/{about-241f95e372b65d0f.js → about-37ba24a72a06862e.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/settings/{domain-records-41242f805599feda.js → domain-records-51333dbd21cb37c8.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/settings/{domains-2e885f74c92f669c.js → domains-bde86e5f6c09da5a.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/settings/{email-templates-ff112655ad5f41e5.js → email-templates-4f9a5cc8bea7725b.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/settings/{regulations-86062a18e081a52a.js → regulations-102efd9199e87124.js} +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/user-management/{new-a2524414e968f862.js → new-de8cb3739ab99c09.js} +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
(function(b,Ge){typeof exports=="object"&&typeof module<"u"?Ge(exports):(b=typeof globalThis<"u"?globalThis:b||self,Ge(b.Fides={}))})(this,function(b){"use strict";var Ge=Object.defineProperty,tr=(e,t,n)=>t in e?Ge(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,wt=(e,t,n)=>tr(e,typeof t!="symbol"?t+"":t,n);class kt{constructor(t,n,i){wt(this,"consentPreference"),wt(this,"notice"),wt(this,"noticeHistoryId"),this.notice=t,this.consentPreference=n,this.noticeHistoryId=i}}b.TCMobileDataVals=void 0,(e=>{(t=>(t[t._0=0]="_0",t[t._1=1]="_1"))(e.IABTCFgdprApplies||(e.IABTCFgdprApplies={})),(t=>(t[t._0=0]="_0",t[t._1=1]="_1"))(e.IABTCFPurposeOneTreatment||(e.IABTCFPurposeOneTreatment={})),(t=>(t[t._0=0]="_0",t[t._1=1]="_1"))(e.IABTCFUseNonStandardTexts||(e.IABTCFUseNonStandardTexts={}))})(b.TCMobileDataVals||(b.TCMobileDataVals={}));var cn=(e=>(e.GPP_US_NATIONAL="gpp_us_national",e.GPP_US_STATE="gpp_us_state",e))(cn||{}),dn=(e=>(e.FRONTEND="frontend",e.SYSTEM_WIDE="system_wide",e.NOT_APPLICABLE="not_applicable",e))(dn||{}),V=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.NOTICE_ONLY="notice_only",e))(V||{}),G=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.ACKNOWLEDGE="acknowledge",e.NOT_APPLICABLE="not_applicable",e.TCF="tcf",e))(G||{}),we=(e=>(e.OMIT="omit",e.INCLUDE="include",e))(we||{}),fe=(e=>(e.BOOLEAN="boolean",e.CONSENT_MECHANISM="consent_mechanism",e))(fe||{}),le=(e=>(e.THROW="throw",e.WARN="warn",e.IGNORE="ignore",e))(le||{}),U=(e=>(e.OVERLAY="overlay",e.BANNER_AND_MODAL="banner_and_modal",e.MODAL="modal",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.HEADLESS="headless",e))(U||{}),un=(e=>(e.ALWAYS_ENABLED="always_enabled",e.ENABLED_WHERE_REQUIRED="enabled_where_required",e.ALWAYS_DISABLED="always_disabled",e))(un||{}),pn=(e=>(e.PURPOSES="/tcf/purposes",e.FEATURES="/tcf/features",e.VENDORS="/tcf/vendors",e))(pn||{}),ke=(e=>(e.OPTIONS="options",e.EXPERIENCE_TRANSLATION="language",e))(ke||{}),J=(e=>(e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e))(J||{}),Et=(e=>(e.ACKNOWLEDGE="acknowledge",e.OPT_IN_OPT_OUT="opt_in_opt_out",e.OPT_IN_ONLY="opt_in_only",e))(Et||{}),fn=(e=>(e.REJECT_ALL="reject_all",e.REJECT_CONSENT_ONLY="reject_consent_only",e))(fn||{}),N=(e=>(e.BUTTON="button",e.REJECT="reject",e.ACCEPT="accept",e.SCRIPT="script",e.SAVE="save",e.DISMISS="dismiss",e.GPC="gpc",e.INDIVIDUAL_NOTICE="individual_notice",e.ACKNOWLEDGE="acknowledge",e.OT_MIGRATION="ot_migration",e))(N||{}),vn=(e=>(e.privacy_center="privacy_center",e.overlay="overlay",e.api="api",e))(vn||{}),ne=(e=>(e.NONE="none",e.APPLIED="applied",e.OVERRIDDEN="overridden",e))(ne||{}),$e=(e=>(e.OVERLAY="overlay",e.MODAL="modal",e.BANNER="banner",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.TCF_BANNER="tcf_banner",e))($e||{}),Ct=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Be={exports:{}};/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */Be.exports,function(e,t){(function(n){var i=t,o=e&&e.exports==i&&e,r=typeof Ct=="object"&&Ct;(r.global===r||r.window===r)&&(n=r);var l=function(g){this.message=g};l.prototype=new Error,l.prototype.name="InvalidCharacterError";var s=function(g){throw new l(g)},a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=/[\t\n\f\r ]/g,u=function(g){g=String(g).replace(c,"");var p=g.length;p%4==0&&(g=g.replace(/==?$/,""),p=g.length),(p%4==1||/[^+a-zA-Z0-9/]/.test(g))&&s("Invalid character: the string to be decoded is not correctly encoded.");for(var _=0,m,h,w="",k=-1;++k<p;)h=a.indexOf(g.charAt(k)),m=_%4?m*64+h:h,_++%4&&(w+=String.fromCharCode(255&m>>(-2*_&6)));return w},d=function(g){g=String(g),/[^\0-\xFF]/.test(g)&&s("The string to be encoded contains characters outside of the Latin1 range.");for(var p=g.length%3,_="",m=-1,h,w,k,E,T=g.length-p;++m<T;)h=g.charCodeAt(m)<<16,w=g.charCodeAt(++m)<<8,k=g.charCodeAt(++m),E=h+w+k,_+=a.charAt(E>>18&63)+a.charAt(E>>12&63)+a.charAt(E>>6&63)+a.charAt(E&63);return p==2?(h=g.charCodeAt(m)<<8,w=g.charCodeAt(++m),E=h+w,_+=a.charAt(E>>10)+a.charAt(E>>4&63)+a.charAt(E<<2&63)+"="):p==1&&(E=g.charCodeAt(m),_+=a.charAt(E>>2)+a.charAt(E<<4&63)+"=="),_},y={encode:d,decode:u,version:"1.0.0"};if(i&&!i.nodeType)if(o)o.exports=y;else for(var f in y)y.hasOwnProperty(f)&&(i[f]=y[f]);else n.base64=y})(Ct)}(Be,Be.exports);var gn=Be.exports;/*! js-cookie v3.0.5 | MIT */function He(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)e[i]=n[i]}return e}var nr={read:function(e){return e[0]==='"'&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function xt(e,t){function n(o,r,l){if(!(typeof document>"u")){l=He({},t,l),typeof l.expires=="number"&&(l.expires=new Date(Date.now()+l.expires*864e5)),l.expires&&(l.expires=l.expires.toUTCString()),o=encodeURIComponent(o).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var a in l)l[a]&&(s+="; "+a,l[a]!==!0&&(s+="="+l[a].split(";")[0]));return document.cookie=o+"="+e.write(r,o)+s}}function i(o){if(!(typeof document>"u"||arguments.length&&!o)){for(var r=document.cookie?document.cookie.split("; "):[],l={},s=0;s<r.length;s++){var a=r[s].split("="),c=a.slice(1).join("=");try{var u=decodeURIComponent(a[0]);if(l[u]=e.read(c,u),o===u)break}catch{}}return o?l[o]:l}}return Object.create({set:n,get:i,remove:function(o,r){n(o,"",He({},r,{expires:-1}))},withAttributes:function(o){return xt(this.converter,He({},this.attributes,o))},withConverter:function(o){return xt(He({},this.converter,o),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var ir=xt(nr,{path:"/"});let Ve;const or=new Uint8Array(16);function rr(){if(!Ve&&(Ve=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Ve))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Ve(or)}const z=[];for(let e=0;e<256;++e)z.push((e+256).toString(16).slice(1));function ar(e,t=0){return z[e[t+0]]+z[e[t+1]]+z[e[t+2]]+z[e[t+3]]+"-"+z[e[t+4]]+z[e[t+5]]+"-"+z[e[t+6]]+z[e[t+7]]+"-"+z[e[t+8]]+z[e[t+9]]+"-"+z[e[t+10]]+z[e[t+11]]+z[e[t+12]]+z[e[t+13]]+z[e[t+14]]+z[e[t+15]]}var _n={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function bn(e,t,n){if(_n.randomUUID&&!e)return _n.randomUUID();e=e||{};const i=e.random||(e.rng||rr)();return i[6]=i[6]&15|64,i[8]=i[8]&63|128,ar(i)}const Ke=(e,t)=>!!Object.keys(t).includes(e.notice_key),ce=e=>!e||e===G.OPT_OUT?!1:e===G.OPT_IN?!0:e===G.ACKNOWLEDGE,Ae=(e,t)=>e?t===V.NOTICE_ONLY?G.ACKNOWLEDGE:G.OPT_IN:G.OPT_OUT,Ne=e=>typeof e=="string"?ce(e):e,yn=e=>e?e.split(",").map(t=>t.trim()).filter(Boolean):[],mn=(e,t)=>e===void 0?!1:typeof e=="boolean"?e:t.globalPrivacyControl===!0?e.globalPrivacyControl:e.value,hn=(e,t)=>e.consent_mechanism===V.NOTICE_ONLY?!0:t&&Ke(e,t)?!!t[e.notice_key]:ce(e.default_preference);var sr=(e=>(e.CONSENT="Consent",e.CONTRACT="Contract",e.LEGAL_OBLIGATIONS="Legal obligations",e.VITAL_INTERESTS="Vital interests",e.PUBLIC_INTEREST="Public interest",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(sr||{}),Ot=(e=>(e.CONSENT="Consent",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(Ot||{});const lr=",",cr=[{experienceKey:"tcf_purpose_consents",tcfModelKey:"purposeConsents",enabledIdsKey:"purposesConsent"},{experienceKey:"tcf_purpose_legitimate_interests",tcfModelKey:"purposeLegitimateInterests",enabledIdsKey:"purposesLegint"},{experienceKey:"tcf_special_features",tcfModelKey:"specialFeatureOptins",enabledIdsKey:"specialFeatures"},{experienceKey:"tcf_vendor_consents",tcfModelKey:"vendorConsents",enabledIdsKey:"vendorsConsent"},{experienceKey:"tcf_vendor_legitimate_interests",tcfModelKey:"vendorLegitimateInterests",enabledIdsKey:"vendorsLegint"}],dr=[{cookieKey:"system_consent_preferences",experienceKey:"tcf_system_consents"},{cookieKey:"system_legitimate_interests_preferences",experienceKey:"tcf_system_legitimate_interests"}];cr.filter(({experienceKey:e})=>e!=="tcf_features"&&e!=="tcf_special_purposes").map(e=>e.experienceKey),Ot.CONSENT.toString(),Ot.LEGITIMATE_INTERESTS.toString();var ur=Object.defineProperty,pr=Object.defineProperties,fr=Object.getOwnPropertyDescriptors,wn=Object.getOwnPropertySymbols,vr=Object.prototype.hasOwnProperty,gr=Object.prototype.propertyIsEnumerable,kn=(e,t,n)=>t in e?ur(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ve=(e,t)=>{for(var n in t||(t={}))vr.call(t,n)&&kn(e,n,t[n]);if(wn)for(var n of wn(t))gr.call(t,n)&&kn(e,n,t[n]);return e},Se=(e,t)=>pr(e,fr(t)),_r=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Pt="fides_consent",En=365,Ye=ir.withConverter({read(e){return decodeURIComponent(e)},write(e){return encodeURIComponent(e)}}),Tt=e=>e?Object.values(e).some(t=>t!==void 0):!1,Cn=()=>bn(),br=Cn(),xn=e=>{var t;return!((t=e.fides_meta)!=null&&t.updatedAt)},On=e=>{const t=new Date;return{consent:e||{},identity:{fides_user_device_id:br||Cn()},fides_meta:{version:"0.9.0",createdAt:t.toISOString(),updatedAt:""},tcf_consent:{}}},qe=e=>Ye.get(e),Ee=()=>{const e=qe(Pt);if(e)try{return JSON.parse(e)}catch{try{return JSON.parse(gn.decode(e))}catch{return}}},Pn=(e,t=!1)=>{const n=On(e);if(typeof document>"u")return n;if(t)return document.cookie="fides_consent=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT",n;let i=Ee();if(i!=null&&i.consent){const{consent:o}=i;Object.entries(o).forEach(([r,l])=>{o[r]=Ne(l)})}if(!i)return n;try{"consent"in i&&"fides_meta"in i||(i=Se(ve({},n),{consent:i}));const o=ve(ve({},e),i.consent);return i.consent=o,i}catch(o){return console.error("Unable to read consent cookie: invalid JSON.",o),n}},Tn=(e,t=!1)=>{if(typeof document>"u")return;const n=new Date().toISOString();e.fides_meta.updatedAt=n;let i=JSON.stringify(e);t&&(i=gn.encode(i));const o=window.location.hostname.split(".");let r="";for(let l=1;l<=o.length;l+=1)if(r=o.slice(-l).join("."),Ye.set(Pt,i,{path:"/",domain:r,expires:En})){const s=Ee();if(s&&s.fides_meta.updatedAt===e.fides_meta.updatedAt)break}},$t=({experience:e,cookie:t})=>{var n;if(!e.privacy_notices)return e;const i=(n=e.privacy_notices)==null?void 0:n.map(r=>{const l=Object.keys(t.consent).includes(r.notice_key)?Ae(!!t.consent[r.notice_key],r.consent_mechanism):void 0;return Se(ve({},r),{current_preference:l})});return Se(ve({},e),{privacy_notices:i})},yr=e=>{const t={};return dr.forEach(({cookieKey:n})=>{var i;const o=(i=e[n])!=null?i:[];t[n]=Object.fromEntries(o.map(r=>[r.id,ce(r.preference)]))}),t},$n=(e,t)=>{const n={};return e?.options.forEach(({cookieKeys:i,default:o})=>{if(o===void 0)return;const r=mn(o,t);i.forEach(l=>{const s=n[l];if(s===void 0){n[l]=r;return}n[l]=s&&r})}),n},An=(e,t=!0)=>{e.forEach(n=>{var i;if(Ye.remove(n.name,{path:(i=n.path)!=null?i:"/",domain:n.domain}),t){const{hostname:o}=window.location;Ye.remove(n.name,{domain:`.${o}`})}})},Nn=e=>{const t=new Map(e.map(({notice:n,consentPreference:i})=>[n.notice_key,ce(i)]));return Object.fromEntries(t)},Sn=(e,t)=>_r(void 0,null,function*(){return Se(ve({},e),{consent:Nn(t)})}),mr=e=>{const t={};return e.privacy_notices&&e.privacy_notices.forEach(n=>{n.current_preference?t[n.notice_key]=ce(n.current_preference):n.default_preference&&(t[n.notice_key]=ce(n.default_preference))}),t},In=({cookie:e,experience:t})=>{const n=mr(t);return Se(ve({},e),{consent:n})};var hr=Object.defineProperty,wr=(e,t,n)=>t in e?hr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Ln=(e,t,n)=>wr(e,typeof t!="symbol"?t+"":t,n);class kr{constructor(){Ln(this,"cookieName","OptanonConsent"),Ln(this,"migrationMethod",N.OT_MIGRATION)}getConsentCookie(){return qe(this.cookieName)}convertToFidesConsent(t,n){if(n.otFidesMapping)try{const i=decodeURIComponent(n.otFidesMapping).replace(/^'|'$/g,""),o=JSON.parse(i),r=this.parseCookieValue(t,o);return r}catch{return}}parseCookieValue(t,n){const i={},o=t.match(/groups=([^&]*)/);return!o||!o[1]||o[1].split(",").forEach(r=>{const[l,s]=r.split(":");n[l]&&n[l].forEach(a=>{const c=s==="1";i[a]===void 0&&(i[a]=c)})}),i}}var Fn=(e=>(e.ONETRUST="onetrust",e))(Fn||{});const At=new Map;function Er(e,t){At.set(e,t)}function Cr(e){e.otFidesMapping&&Er(Fn.ONETRUST,new kr)}function jn(e){let t,n;if(Array.from(At).some(([o,r])=>{const l=r.getConsentCookie();if(!l)return!1;const s=r.convertToFidesConsent(l,e);return s?(t=s,n=o,!0):!1}),!n)return{consent:void 0,method:void 0};const i=At.get(n);return{consent:t,method:i.migrationMethod}}const xr=e=>{typeof window<"u"&&!window.fidesDebugger?window.fidesDebugger=e?console.log:()=>{}:globalThis.fidesDebugger=()=>{}},B="en",We="Manage preferences",Ze=/^([A-Za-z]{2,3})(?:(?:[_-]([A-Za-z0-9]{2,4}))?$|(?:(?:[_-]\w+)+))/,Or=/^(?:([a-z]{2})(-[a-z0-9]{1,3})?|(eea))$/i,Pr=[{overrideName:"fidesEmbed",overrideType:"boolean",overrideKey:"fides_embed",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableSaveApi",overrideType:"boolean",overrideKey:"fides_disable_save_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableNoticesServedApi",overrideType:"boolean",overrideKey:"fides_disable_notices_served_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableBanner",overrideType:"boolean",overrideKey:"fides_disable_banner",validationRegex:/^(true|false)$/},{overrideName:"fidesString",overrideType:"string",overrideKey:"fides_string",validationRegex:/(.*)/},{overrideName:"fidesTcfGdprApplies",overrideType:"boolean",overrideKey:"fides_tcf_gdpr_applies",validationRegex:/^(true|false)$/},{overrideName:"fidesLocale",overrideType:"string",overrideKey:"fides_locale",validationRegex:Ze},{overrideName:"fidesPrimaryColor",overrideType:"string",overrideKey:"fides_primary_color",validationRegex:/(.*)/},{overrideName:"fidesClearCookie",overrideType:"string",overrideKey:"fides_clear_cookie",validationRegex:/(.*)/},{overrideName:"fidesConsentOverride",overrideType:"string",overrideKey:"fides_consent_override",validationRegex:/^(accept|reject)$/},{overrideName:"otFidesMapping",overrideType:"string",overrideKey:"ot_fides_mapping",validationRegex:/(.*)/},{overrideName:"fidesDisabledNotices",overrideType:"array",overrideKey:"fides_disabled_notices",validationRegex:/(.*)/,transform:yn},{overrideName:"fidesConsentNonApplicableFlagMode",overrideType:"string",overrideKey:"fides_consent_non_applicable_flag_mode",validationRegex:/^(omit|include)$/},{overrideName:"fidesConsentFlagType",overrideType:"string",overrideKey:"fides_consent_flag_type",validationRegex:/^(boolean|consent_mechanism)$/},{overrideName:"fidesInitializedEventMode",overrideType:"string",overrideKey:"fides_initialized_event_mode",validationRegex:/^(multiple|once|disable)$/},{overrideName:"fidesModalDefaultView",overrideType:"string",overrideKey:"fides_modal_default_view",validationRegex:/^\/tcf\/(purposes|features|vendors)$/}],Tr=[{overrideName:"title",overrideType:"string",overrideKey:"fides_title",validationRegex:/(.*)/},{overrideName:"description",overrideType:"string",overrideKey:"fides_description",validationRegex:/(.*)/},{overrideName:"privacy_policy_url",overrideType:"string",overrideKey:"fides_privacy_policy_url",validationRegex:/(.*)/},{overrideName:"override_language",overrideType:"string",overrideKey:"fides_override_language",validationRegex:Ze}],$r="fides-overlay-wrapper",Ar="fides-i18n-icon",Nt=["marketing","data_sales","data_sales_and_sharing","data_sales_sharing_gpp_us_state","data_sharing_gpp_us_state","data_sales_gpp_us_state","targeted_advertising_gpp_us_state","sales_sharing_targeted_advertising_gpp_us_national","sales_sharing_targeted_advertising"];var Nr=Object.defineProperty,Sr=Object.defineProperties,Ir=Object.getOwnPropertyDescriptors,Dn=Object.getOwnPropertySymbols,Lr=Object.prototype.hasOwnProperty,Fr=Object.prototype.propertyIsEnumerable,Mn=(e,t,n)=>t in e?Nr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Je=(e,t)=>{for(var n in t||(t={}))Lr.call(t,n)&&Mn(e,n,t[n]);if(Dn)for(var n of Dn(t))Fr.call(t,n)&&Mn(e,n,t[n]);return e},jr=(e,t)=>Sr(e,Ir(t));const Ce=e=>!e||typeof e!="object"?!1:Object.keys(e).length===0||"id"in e,Dr=e=>!!(e&&e.every(t=>t.default_preference===G.OPT_IN)),Xe=e=>{if(e){if(e.location&&Or.test(e.location))return e.location.replace("-","_").toLowerCase();if(e.country&&e.region)return`${e.country.toLowerCase()}_${e.region.toLowerCase()}`}},Rn=e=>{if(typeof e!="object"||!e.fidesApiUrl||!e.privacyCenterUrl)return!1;try{new URL(e.privacyCenterUrl),new URL(e.fidesApiUrl)}catch{return!1}return!0},zn=e=>{switch(e){case ke.OPTIONS:return Pr;case ke.EXPERIENCE_TRANSLATION:return Tr;default:return null}},Un=e=>{if(!Ce(e))return!1;const t=e.experience_config;return t&&(t.component===U.MODAL||t.component===U.BANNER_AND_MODAL||t.component===U.TCF_OVERLAY||t.component===U.HEADLESS)?!(t.component===U.BANNER_AND_MODAL&&!(e.privacy_notices&&e.privacy_notices.length>0)):!1},Qe=e=>e.fidesConsentOverride===N.ACCEPT||e.fidesConsentOverride===N.REJECT,Mr=e=>{var t;return(t=e.default_preference)!=null?t:G.OPT_OUT},et=(e,t,n,i)=>{var o,r,l,s,a,c;return i!=null&&i.fidesDisableBanner||!Ce(e)?!1:((o=e.experience_config)==null?void 0:o.component)===U.TCF_OVERLAY&&t?i&&Qe(i)?!1:(r=e.meta)!=null&&r.version_hash?e.meta.version_hash!==t.tcf_version_hash:!0:((l=e.experience_config)==null?void 0:l.component)===U.MODAL||((s=e.experience_config)==null?void 0:s.component)===U.HEADLESS||!((a=e?.privacy_notices)!=null&&a.length)?!1:n?i&&Qe(i)?!1:t?.fides_meta.consentMethod===N.GPC?!0:!((c=e.privacy_notices)!=null&&c.every(u=>Ke(u,n))):!0},Gn=e=>{e[0]==="window"&&e.shift();let t=window;for(;e.length>0;){const n=e.shift();if(typeof n>"u"||typeof t[n]!="object")return;t=t[n]}return t},Bn=({value:e,notice:t,consentContext:n})=>!n.globalPrivacyControl||!t.has_gpc_flag||t.consent_mechanism===V.NOTICE_ONLY?ne.NONE:e?ne.OVERRIDDEN:ne.APPLIED,St=()=>{},Rr=(e,t)=>e.map(n=>{var i;const o=Ae(t.includes(n.notice.notice_key),n.notice.consent_mechanism);return new kt(n.notice,o,(i=n.bestTranslation)==null?void 0:i.privacy_notice_history_id)}),Hn=e=>{try{const t=JSON.stringify(e);return btoa(t.replace(/\s/g,""))}catch(t){throw new Error("Failed to encode Notice Consent string:",{cause:t})}},tt=e=>{if(!e)return{};try{const t=atob(e),n=JSON.parse(t);return Object.fromEntries(Object.entries(n).map(([i,o])=>[i,!!o]))}catch(t){throw new Error("Failed to decode Notice Consent string:",{cause:t})}},zr=({consent:e,nonApplicableNotices:t,flagType:n,mode:i=we.OMIT})=>{if(!(t!=null&&t.length))return e;const o=Je({},e);return i===we.INCLUDE?t.forEach(r=>{o[r]=n===fe.CONSENT_MECHANISM?G.NOT_APPLICABLE:!0}):t.forEach(r=>{delete o[r]}),o},Ur=({consent:e,flagType:t=fe.BOOLEAN,consentMechanisms:n})=>{const i={};if(t!==fe.CONSENT_MECHANISM)return Object.fromEntries(Object.entries(e).map(([r,l])=>[r,Ne(l)]));const o=Object.values(e).some(r=>typeof r=="boolean");if(o&&!n)throw new Error("Cannot transform boolean consent values to consent mechanisms without consent mechanisms map");return o?(Object.keys(e).forEach(r=>{const l=e[r];if(typeof l=="string")i[r]=l;else{const s=n[r];i[r]=Ae(l,s)}}),i):Je({},e)},Ie=(e,t,n=[],i,o)=>{var r,l,s;const a=Je({},e),c=(r=window.Fides)==null?void 0:r.options,u=(l=o??c?.fidesConsentNonApplicableFlagMode)!=null?l:we.OMIT,d=(s=i??c?.fidesConsentFlagType)!=null?s:fe.BOOLEAN,y={};Object.assign(y,zr({consent:{},nonApplicableNotices:t??[],flagType:d,mode:u}));const f=n.reduce((g,p)=>jr(Je({},g),{[p.notice_key]:p.consent_mechanism}),{});return Object.assign(y,Ur({consent:a,consentMechanisms:f,flagType:d})),y},Gr=e=>{const t=e.split("~")[0];return!!(t&&["1","2"].includes(t)&&e!=null&&e.match(t==="1"?/\d~[0-9.]*$/:/\d~[0-9.]*~dv.[0-9.]*$/))};var Br=Object.defineProperty,Hr=Object.defineProperties,Vr=Object.getOwnPropertyDescriptors,Vn=Object.getOwnPropertySymbols,Kr=Object.prototype.hasOwnProperty,Yr=Object.prototype.propertyIsEnumerable,Kn=(e,t,n)=>t in e?Br(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,nt=(e,t)=>{for(var n in t||(t={}))Kr.call(t,n)&&Kn(e,n,t[n]);if(Vn)for(var n of Vn(t))Yr.call(t,n)&&Kn(e,n,t[n]);return e},Yn=(e,t)=>Hr(e,Vr(t)),ge=(e=>(e.FIDES="fides",e.EXTERNAL="external",e))(ge||{}),q=(e=>(e.TOGGLE="toggle",e.BUTTON="button",e.LINK="link",e))(q||{});const ie=(e,t,n)=>{var i,o,r,l,s,a,c,u;const d=t?nt({},t):void 0;if(typeof window<"u"&&typeof CustomEvent<"u"){const y=nt({consentMethod:d?.fides_meta.consentMethod},n);(i=n?.trigger)!=null&&i.origin||(y.trigger=Yn(nt({},y.trigger),{origin:"fides"}));const f=(o=performance?.mark)==null?void 0:o.call(performance,e),g=f?.startTime,p=d;p&&d!=null&&d.consent&&(p.consent=Ie(d.consent,(l=(r=window.Fides)==null?void 0:r.experience)==null?void 0:l.non_applicable_privacy_notices,(a=(s=window.Fides)==null?void 0:s.experience)==null?void 0:a.privacy_notices));const _=new CustomEvent(e,{detail:Yn(nt({},p),{debug:!!((u=(c=window.Fides)==null?void 0:c.options)!=null&&u.debug),extraDetails:y,timestamp:g}),bubbles:!0});window.dispatchEvent(_)}},qn=(e,t)=>{const n=i=>t(i.detail);return window.addEventListener(e,n),()=>{window.removeEventListener(e,n)}},Wn=(e,t)=>{var n,i;ie("FidesConsentLoaded",e,t),((i=(n=window.Fides)==null?void 0:n.options)==null?void 0:i.fidesInitializedEventMode)==="multiple"&&ie("FidesInitialized",e,t)},Zn=(e,t)=>{var n,i;ie("FidesReady",e,t);const o=(i=(n=window.Fides)==null?void 0:n.options)==null?void 0:i.fidesInitializedEventMode;(o==="multiple"||o==="once")&&ie("FidesInitialized",e,t)};var qr=(e=>(e.GVL="gvl",e.AC="gacp",e))(qr||{});const It=e=>{if(!e)return{tc:"",ac:"",gpp:"",nc:""};const[t="",n="",i="",o=""]=e.split(lr);return t?{tc:t,ac:n,gpp:i,nc:o}:{tc:"",ac:"",gpp:i,nc:o}},Wr=()=>typeof window.blueConicClient<"u"&&typeof window.blueConicClient.event<"u"&&typeof window.blueConicClient.event.subscribe<"u",it=()=>{var e,t,n;if(!Wr()||!((e=window.blueConicClient)!=null&&e.profile))return;const i=(n=(t=window.blueConicClient)==null?void 0:t.profile)==null?void 0:n.getProfile(),{consent:o}=window.Fides,r=o!==void 0&&Object.entries(o).length>0,l=Nt.some(s=>o[s]);!r||l?(i.setConsentedObjectives(["iab_purpose_1","iab_purpose_2","iab_purpose_3","iab_purpose_4"]),i.setRefusedObjectives([])):(i.setConsentedObjectives(["iab_purpose_1"]),i.setRefusedObjectives(["iab_purpose_2","iab_purpose_3","iab_purpose_4"])),window.blueConicClient.profile.updateProfile()},Zr=({approach:e="onetrust"}={approach:"onetrust"})=>{if(e!=="onetrust")throw new Error("Unsupported approach");window.addEventListener("FidesReady",it),window.addEventListener("FidesUpdated",it),window.addEventListener("onBlueConicLoaded",it),it()},Jn=(e,t)=>{var n,i,o,r,l,s,a,c,u,d,y,f,g,p;const _=(n=window.dataLayer)!=null?n:[];window.dataLayer=_;const{detail:m,type:h}=e,{consent:w,extraDetails:k,fides_string:E,timestamp:T}=m;let R=w;const C=(l=(r=t?.flag_type)!=null?r:(o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesConsentFlagType)!=null?l:fe.BOOLEAN,A=(u=(c=t?.non_applicable_flag_mode)!=null?c:(a=(s=window.Fides)==null?void 0:s.options)==null?void 0:a.fidesConsentNonApplicableFlagMode)!=null?u:we.OMIT,P=(f=(y=(d=window.Fides)==null?void 0:d.experience)==null?void 0:y.privacy_notices)!=null?f:[],I=(p=(g=window.Fides)==null?void 0:g.experience)==null?void 0:p.non_applicable_privacy_notices;R=Ie(w,I,P,C,A);const Z={consent:R,extraDetails:k,fides_string:E,timestamp:T};_.push({event:h,Fides:Z})},Jr=e=>{var t,n;if(Object.entries({FidesInitializing:!1,FidesInitialized:!0,FidesConsentLoaded:!0,FidesReady:!0,FidesUpdating:!0,FidesUpdated:!0,FidesUIChanged:!0,FidesUIShown:!0,FidesModalClosed:!0}).filter(([,i])=>i).map(([i])=>i).forEach(i=>{window.addEventListener(i,o=>Jn(o,e))}),(t=window.Fides)!=null&&t.initialized){const{consent:i,fides_meta:o,identity:r,tcf_consent:l}=window.Fides,s=(n=performance?.getEntriesByName("FidesInitialized")[0])==null?void 0:n.startTime;Jn({type:"FidesInitialized",detail:{consent:i,fides_meta:o,identity:r,tcf_consent:l,timestamp:s,extraDetails:{consentMethod:o?.consentMethod}}},e)}},Xr=()=>{if(window.fbq)return window.fbq;const e={queue:[],loaded:!0,version:"2.0",push(...t){const n=window.fbq;n.callMethod?n.callMethod(...t):n.queue.push(t)}};return window.fbq=Object.assign(e.push,e),window._fbq=window.fbq,window.fbq},Qr=e=>{const t=Xr();t("consent",e.consent?"grant":"revoke"),e.dataUse?t("dataProcessingOptions",[]):t("dataProcessingOptions",["LDU"],1,1e3)},ea={marketing:Nt,sale_of_data:Nt,analytics:["analytics"],preferences:["functional"]};function ta(e,t){var n;const i=Object.fromEntries(Object.entries(e).map(([r,l])=>[r,Ne(l)])),o={};return Object.entries(ea).forEach(([r,l])=>{const s=l.some(c=>i[c]===!0),a=l.some(c=>i[c]===!1);s?o[r]=!0:a&&(o[r]=!1)}),o.sale_of_data===void 0&&(o.sale_of_data=(n=t?.sale_of_data_default)!=null?n:!1),o}const ot=(e,t)=>{window.Shopify.customerPrivacy.setTrackingConsent(ta(e,t),()=>{})},Xn=e=>{var t,n;(t=window.Shopify)!=null&&t.customerPrivacy||console.error("Fides could not access Shopify's customerPrivacy API"),window.addEventListener("FidesReady",i=>ot(i.detail.consent,e)),window.addEventListener("FidesUpdating",i=>ot(i.detail.consent,e)),window.addEventListener("FidesUpdated",i=>ot(i.detail.consent,e)),(n=window.Fides)!=null&&n.initialized&&window.Fides.cookie&&ot(window.Fides.cookie.consent,e)},na=e=>{let t,n;const i=()=>{clearTimeout(t),clearTimeout(n)},o=()=>{if(window.Shopify){if(i(),window.Shopify.customerPrivacy){Xn(e);return}window.Shopify.loadFeatures([{name:"consent-tracking-api",version:"0.1"}],r=>{if(r)throw Error("Fides could not load Shopify's consent-tracking-api");Xn(e)});return}n=setTimeout(o,200)};t=setTimeout(()=>{throw i(),Error("Fides.shopify was called but Shopify is not present in the page after 3 seconds.")},3e3),o()};var ia={"static.gpc":"\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.gpc.description":"\u062A\u0645 \u062A\u0637\u0628\u064A\u0642 \u062A\u0641\u0636\u064A\u0644\u0643 \u0644\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629. \u0644\u0642\u062F \u0623\u0644\u063A\u064A \u0627\u0634\u062A\u0631\u0627\u0643\u0643 \u062A\u0644\u0642\u0627\u0626\u064A\u064B\u0627 \u0641\u064A \u062D\u0627\u0644\u0627\u062A \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062A\u064A \u062A\u0644\u062A\u0632\u0645 \u0628\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629.","static.gpc.status.applied":"\u062A\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","static.gpc.status.overridden":"\u062A\u0645 \u0627\u0644\u062A\u062C\u0627\u0648\u0632","static.gpc.title":"\u062A\u0645 \u0627\u0643\u062A\u0634\u0627\u0641 \u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629"},oa={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438","static.gpc.description":"\u0412\u0430\u0448\u0435\u0442\u043E \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0438\u0442\u0430\u043D\u0438\u0435 \u0437\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438 \u0435 \u0437\u0430\u0447\u0435\u0442\u0435\u043D\u043E. \u0412\u0438\u0435 \u0441\u0442\u0435 \u0431\u0438\u043B\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u0438 \u043E\u0442 \u0441\u043B\u0443\u0447\u0430\u0438\u0442\u0435 \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u0434\u0430\u043D\u043D\u0438, \u043A\u043E\u0438\u0442\u043E \u0441\u0435 \u043E\u0442\u043D\u0430\u0441\u044F\u0442 \u043A\u044A\u043C \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u043E","static.gpc.status.overridden":"\u041F\u0440\u0435\u043C\u0430\u0445\u043D\u0430\u0442\u043E","static.gpc.title":"\u041E\u0442\u043A\u0440\u0438\u0442\u043E \u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438"},ra={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161 izbor globalne kontrole privatnosti je uva\u017Een. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Prihva\u0107ena","static.gpc.status.overridden":"Odbijena","static.gpc.title":"Otkrivena je Globalna kontrola privatnosti"},aa={"static.gpc":"Control de privadesa global","static.gpc.description":"S\u2019ha respectat la vostra prefer\xE8ncia pel que fa al control de privadesa global. Se us ha excl\xF2s autom\xE0ticament dels casos d\u2019\xFAs de dades que s\u2019adhereixen al control de privadesa global.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Anul\xB7lat","static.gpc.title":"Control de privadesa global detectat"},sa={"static.gpc":"Glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F","static.gpc.description":"Byly dodr\u017Eeny va\u0161e glob\xE1ln\xED preference ochrany osobn\xEDch \xFAdaj\u016F. Automaticky jste byli vy\u0159azeni z pou\u017E\xEDv\xE1n\xED \xFAdaj\u016F v p\u0159\xEDpadech, na kter\xE9 se vztahuje glob\xE1ln\xED ochrana osobn\xEDch \xFAdaj\u016F.","static.gpc.status.applied":"Aplikov\xE1no","static.gpc.status.overridden":"P\u0159eps\xE1no","static.gpc.title":"Bylo zji\u0161t\u011Bna glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F"},la={"static.gpc":"Global fortrolighedskontrol","static.gpc.description":"Din pr\xE6ference i forbindelse med global fortrolighedskontrol er blevet efterkommet. Du er automatisk blevet frameldt tilf\xE6lde af databrug, der overholder global fortrolighedskontrol.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Tilsidesat","static.gpc.title":"Der blev p\xE5vist global fortrolighedskontrol"},ca={"static.gpc":"Globale Datenschutzeinstellungen","static.gpc.description":"Ihre globale Datenschutzeinstellungen werden ber\xFCcksichtigt. Sie wurden automatisch von Anwendungsf\xE4llen ausgenommen, die nicht Ihren globalen Datenschutzeinstellungen unterliegen.","static.gpc.status.applied":"Angewendet","static.gpc.status.overridden":"\xDCberschrieben","static.gpc.title":"Globale Datenschutzeinstellungen entdeckt"},da={"static.gpc":"\u039A\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.gpc.description":"\u0397 \u03C0\u03C1\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03AE \u03C3\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B7\u03C1\u03B7\u03B8\u03B5\u03AF. \u0388\u03C7\u03B5\u03C4\u03B5 \u03B5\u03BE\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C0\u03B5\u03C1\u03B9\u03C0\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03BF\u03C1\u03C6\u03CE\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5.","static.gpc.status.applied":"\u0395\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03C4\u03B7\u03BA\u03B5","static.gpc.status.overridden":"\u03A0\u03B1\u03C1\u03B1\u03BA\u03AC\u03BC\u03C6\u03B8\u03B7\u03BA\u03B5","static.gpc.title":"\u0395\u03BD\u03C4\u03BF\u03C0\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5"},ua={"static.gpc":"Global Privacy Control","static.gpc.description":"Your global privacy control preference has been honored. You have been automatically opted out of data use cases which adhere to global privacy control.","static.gpc.status.applied":"Applied","static.gpc.status.overridden":"Overridden","static.gpc.title":"Global Privacy Control detected"},pa={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le ha excluido autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado"},fa={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le excluy\xF3 autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado"},va={"static.gpc":"\xDCldine andmekaitsekontroll","static.gpc.description":"Teie \xFCldist andmekaitse-eelistust on arvestatud. Teid on automaatselt v\xE4lja arvatud andmete kasutamise juhtudest, mis j\xE4rgivad \xFCldist andmekaitsekontrolli.","static.gpc.status.applied":"Rakendatud","static.gpc.status.overridden":"T\xFChistatud","static.gpc.title":"Tuvastatud \xFCldine andmekaitsekontroll"},ga={"static.gpc":"Pribatutasun-kontrol globala","static.gpc.description":"Pribatutasun-kontrol globalaren lehentasuna bete da. Pribatutasun-kontrol globalari atxikitzen zaizkion datuen erabileren kasuetatik automatikoki baztertua izan zara.","static.gpc.status.applied":"Ezarrita","static.gpc.status.overridden":"Baliogabetuta","static.gpc.title":"Pribatutasun-kontrol globala antzeman da"},_a={"static.gpc":"Maailmanlaajunen tietosuojavalvonta","static.gpc.description":"Maailmanlaajuinen tietosuojavalvontanne on vahvistettu. Teid\xE4t on automaattisesti poistettu tietojen k\xE4ytt\xF6tapauksista, jotka noudattavat maailmanlaajuista tietosuojavalvontaa.","static.gpc.status.applied":"K\xE4yt\xF6ss\xE4","static.gpc.status.overridden":"Ohitettu","static.gpc.title":"Maailmanlaajuinen tietosuojavalvonta havaittu"},ba={"static.gpc":"Global Privacy Control","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le global de la confidentialit\xE9 (GPC) a \xE9t\xE9 respect\xE9e. Vous avez automatiquement \xE9t\xE9 retir\xE9 des cas d\u2019usage des donn\xE9es qui adh\xE8rent au GPC.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Ignor\xE9","static.gpc.title":"Global Privacy Control (GPC) d\xE9tect\xE9"},ya={"static.gpc":"Contr\xF4le mondial de confidentialit\xE9","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le mondial de confidentialit\xE9 a \xE9t\xE9 honor\xE9e. Vous avez \xE9t\xE9 automatiquement \xE9cart\xE9 des cas d'utilisation de donn\xE9es qui adh\xE8rent au contr\xF4le mondial de confidentialit\xE9.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Annul\xE9","static.gpc.title":"Contr\xF4le mondial de confidentialit\xE9 d\xE9tect\xE9"},ma={"static.gpc":"Control de privacidade global","static.gpc.description":"Respetouse a s\xFAa preferencia de control de privacidade global. Foi automaticamente exclu\xEDdo dos casos de uso de datos que cumpren o control de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidade global detectado"},ha={"static.gpc":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923","static.gpc.description":"\u0906\u092A\u0915\u0940 \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0935\u0930\u0940\u092F\u0924\u093E\u0913\u0902 \u0915\u093E \u0938\u092E\u094D\u092E\u093E\u0928 \u0915\u093F\u092F\u093E \u0917\u092F\u093E\u0964 \u0906\u092A\u0915\u094B \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u093E\u0932\u0928 \u0915\u0930\u0928\u0947 \u0935\u093E\u0932\u0947 \u0921\u0947\u091F\u093E \u0909\u092A\u092F\u094B\u0917 \u092E\u093E\u092E\u0932\u094B\u0902 \u0938\u0947 \u0938\u094D\u0935\u091A\u093E\u0932\u093F\u0924 \u0930\u0942\u092A \u0938\u0947 \u092C\u093E\u0939\u0930 \u0915\u0930 \u0926\u093F\u092F\u093E \u0917\u092F\u093E \u0939\u0948\u0964","static.gpc.status.applied":"\u0932\u093E\u0917\u0942 \u0915\u093F\u092F\u093E","static.gpc.status.overridden":"\u0913\u0935\u0930\u0930\u093E\u0907\u0921 \u0915\u093F\u092F\u093E","static.gpc.title":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u0924\u093E \u091A\u0932\u093E"},wa={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Po\u0161tuju se va\u0161e preferencije globalne kontrole privatnosti. Automatski se isklju\u010Deni iz slu\u010Dajeve kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Primijenjeno","static.gpc.status.overridden":"Premo\u0161\u0107eno","static.gpc.title":"Primije\u0107ena je Globalna kontrola privatnosti (Global Privacy Control)"},ka={"static.gpc":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s","static.gpc.description":"A glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1ssal kapcsolatos be\xE1ll\xEDt\xE1sai el lettek fogadva. Automatikusan kiker\xFClt azokb\xF3l az adatfelhaszn\xE1l\xE1si esetekb\u0151l, amelyek a glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1shoz tartoznak.","static.gpc.status.applied":"Alkalmazva","static.gpc.status.overridden":"Fel\xFCl\xEDrva","static.gpc.title":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s \xE9szlelve"},Ea={"static.gpc":"Controllo Globale della Privacy","static.gpc.description":"Le tue preferenze del Controllo Globale della Privacy sono state prese in carico. Sei stato automaticamente escluso dai casi di utilizzo dei dati che corrispondono al Controllo Globale della Privacy.","static.gpc.status.applied":"Applicato","static.gpc.status.overridden":"Non applicato","static.gpc.title":"Controllo Globale della Privacy rilevato"},Ca={"static.gpc":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB","static.gpc.description":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u8A2D\u5B9A\u306F\u5C0A\u91CD\u3055\u308C\u307E\u3059\u3002\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306B\u5F93\u3046\u30C7\u30FC\u30BF\u306E\u30E6\u30FC\u30B9\u30B1\u30FC\u30B9\u304B\u3089\u306F\u81EA\u52D5\u7684\u306B\u30AA\u30D7\u30C8\u30A2\u30A6\u30C8\u3055\u308C\u3066\u3044\u307E\u3059\u3002","static.gpc.status.applied":"\u9069\u7528","static.gpc.status.overridden":"\u5909\u66F4","static.gpc.title":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u3092\u691C\u51FA\u3057\u307E\u3057\u305F"},xa={"static.gpc":"Visuotin\u0117 privatumo kontrol\u0117","static.gpc.description":"Buvo atsi\u017Evelgta \u012F j\u016Bs\u0173 visuotin\u0117s privatumo kontrol\u0117s pageidavim\u0105. Buvote automati\u0161kai at\u0161auktas i\u0161 duomen\u0173 naudojimo atvej\u0173, kai laikomasi visuotin\u0117s privatumo kontrol\u0117s.","static.gpc.status.applied":"Taikoma","static.gpc.status.overridden":"Nebegaliojantis","static.gpc.title":"Aptikta visuotin\u0117 privatumo kontrol\u0117"},Oa={"static.gpc":"Glob\u0101l\u0101 priv\u0101tuma kontrole","static.gpc.description":"M\u0113s esam izpild\u012Bju\u0161i j\u016Bsu pras\u012Bbu kontrol\u0113t glob\u0101lo priv\u0101tumu. P\u0113c noklus\u0113juma esat no\u0146emts no datu lietojuma pieteikumiem, kas atbilst glob\u0101lajai priv\u0101tuma kontrolei.","static.gpc.status.applied":"Pielietots","static.gpc.status.overridden":"Ignor\u0113ts","static.gpc.title":"Konstat\u0113ta glob\u0101l\u0101 priv\u0101tuma kontrole"},Pa={"static.gpc":"Kontroll Globali tal-Privatezza","static.gpc.description":"Il-preferenza globali tieg\u0127ek g\u0127all-kontroll tal-privatezza \u0121iet onorata. Inti awtomatikament g\u0127a\u017Cilt li ma tibqax tu\u017Ca d-dejta f'ka\u017Cijiet li jirrispettaw il-kontroll globali tal-privatezza.","static.gpc.status.applied":"Applikat","static.gpc.status.overridden":"Maqbu\u017Ca","static.gpc.title":"Instab il-Kontroll Globali tal-Privatezza"},Ta={"static.gpc":"Global Privacy Control","static.gpc.description":"Uw Global Privacy Control-voorkeur wordt gerespecteerd. U bent automatisch afgemeld voor gegevensgebruiksscenario's die zich houden aan Global Privacy Control.","static.gpc.status.applied":"Toegepast","static.gpc.status.overridden":"Genegeerd","static.gpc.title":"Global Privacy Control gedetecteerd"},$a={"static.gpc":"Globale personverninnstillinger","static.gpc.description":"Preferansene dine vedr\xF8rende de globale personverninnstilingene dine er godtatt. Du har automatisk takket nei til databruksaker som f\xF8lger globale personverninnstillinger.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Overstyrt","static.gpc.title":"Globale personverninnstillinger er oppdaget"},Aa={"static.gpc":"Og\xF3lna kontrola prywatno\u015Bci","static.gpc.description":"Twoja preferencja dotycz\u0105ca og\xF3lnej kontroli prywatno\u015Bci zosta\u0142a uwzgl\u0119dniona. Automatycznie odm\xF3wiono zgody na Twoje przypadki wykorzystania danych, kt\xF3re s\u0105 zgodne z Og\xF3ln\u0105 kontrol\u0105 prywatno\u015Bci.","static.gpc.status.applied":"Zastosowano","static.gpc.status.overridden":"Nadpisano","static.gpc.title":"Wykryta Og\xF3lna kontrola prywatno\u015Bci"},Na={"static.gpc":"Controle de Privacidade Global","static.gpc.description":"Sua prefer\xEAncia global de controle de privacidade foi respeitada. Voc\xEA foi automaticamente removido dos casos de uso de dados que aderem ao controle de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controle de Privacidade Global detectado"},Sa={"static.gpc":"Controlo de Privacidade Global","static.gpc.description":"A sua prefer\xEAncia de controlo de privacidade global foi honrada. Foi automaticamente exclu\xEDdo/a dos casos de utiliza\xE7\xE3o de dados que aderem ao controlo de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controlo de Privacidade Global detetado"},Ia={"static.gpc":"Control global al confiden\u021Bialit\u0103\u021Bii","static.gpc.description":"Preferin\u021Ba dvs. de control global al confiden\u021Bialit\u0103\u021Bii a fost onorat\u0103. A\u021Bi fost exclus(\u0103) automat de la cazurile de utilizare a datelor care respect\u0103 controlul global al confiden\u021Bialit\u0103\u021Bii.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Suprascris","static.gpc.title":"A fost detectat un control global al confiden\u021Bialit\u0103\u021Bii"},La={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Global Privacy Control \u0443\u0447\u0442\u0435\u043D\u0430. \u0412\u044B \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0435\u0441\u044C \u0432 \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u044F\u0445, \u0433\u0434\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F Global Privacy Control.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.status.overridden":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.title":"\u041E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435 Global Privacy Control"},Fa={"static.gpc":"Glob\xE1lna kontrola s\xFAkromia","static.gpc.description":"Va\u0161a predvo\u013Eba pre glob\xE1lnu kontrolu s\xFAkromia bola dodr\u017Ean\xE1. Pre pr\xEDpady pou\u017Eitia, kde sa pou\u017E\xEDva glob\xE1lna kontrola s\xFAkromia, v\xE1m bol automaticky nastaven\xFD explicitn\xFD nes\xFAhlas.","static.gpc.status.applied":"Pou\u017Eit\xE1","static.gpc.status.overridden":"Prep\xEDsan\xE1","static.gpc.title":"Bola zisten\xE1 Glob\xE1lna kontrola s\xFAkromia"},ja={"static.gpc":"Global Privacy Control","static.gpc.description":"Va\u0161a nastavitev globalnega nadzora zasebnosti je bila upo\u0161tevana. Samodejno je bilo preklicano va\u0161e soglasje za tiste primere uporabe podatkov, ki se ravnajo po globalnem nadzoru zasebnosti.","static.gpc.status.applied":"Uporabljeno","static.gpc.status.overridden":"Pregla\u0161eno","static.gpc.title":"Zaznan globalni nadzor zasebnosti \xBBGlobal Privacy Control\xAB"},Da={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438 \u0458\u0435 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0430. \u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0442\u0435 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0438 \u0438\u0437 \u0441\u043B\u0443\u0447\u0430\u0458\u0435\u0432\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0441\u043A\u043B\u0430\u0434\u0443 \u0441\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u043C \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043E\u043C \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.status.overridden":"\u0417\u0430\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.title":"Global Privacy Control \u043E\u0442\u043A\u0440\u0438\u0432\u0435\u043D"},Ma={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161a globalna postavka kontrole privatnosti se po\u0161tuje. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161c\u0301enja podataka koji podle\u017Eu globalnoj kontroli privatnosti.","static.gpc.status.applied":"Primenjeno","static.gpc.status.overridden":"Zaobi\u0111eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti"},Ra={"static.gpc":"Global integritetskontroll","static.gpc.description":"Dina preferenser f\xF6r global integritetskontroll har efterf\xF6ljts. Du har automatiskt valt bort anv\xE4ndningsfall f\xF6r uppgifter som efterf\xF6ljer global integritetskontroll.","static.gpc.status.applied":"Till\xE4mpad","static.gpc.status.overridden":"\xC5sidosatt","static.gpc.title":"Global integritetskontroll uppt\xE4cktes"},za={"static.gpc":"Global Gizlilik Kontrol\xFC","static.gpc.description":"Global gizlilik kontrol\xFC tercihiniz yerine getirildi. Global gizlilik kontrol\xFCne uygun veri kullan\u0131m durumlar\u0131ndan otomatik olarak \xE7\u0131kar\u0131ld\u0131n\u0131z.","static.gpc.status.applied":"Uyguland\u0131","static.gpc.status.overridden":"Ge\xE7ersiz k\u0131l\u0131nd\u0131","static.gpc.title":"Global Gizlilik Kontrol\xFC tespit edildi"},Ua={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.gpc.description":"\u0412\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 \u0432\u0440\u0430\u0445\u043E\u0432\u0430\u043D\u043E. \u0412\u0430\u0441 \u0431\u0443\u043B\u043E \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0432\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u043E \u0437 \u0432\u0438\u043F\u0430\u0434\u043A\u0456\u0432 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0456 \u0434\u043E\u0442\u0440\u0438\u043C\u0443\u044E\u0442\u044C\u0441\u044F \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456.","static.gpc.status.applied":"\u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0430\u043D\u043E","static.gpc.status.overridden":"\u041F\u0435\u0440\u0435\u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E","static.gpc.title":"\u0412\u0438\u044F\u0432\u043B\u0435\u043D\u043E \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456"},Ga={"static.gpc":"\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u5C40\u9690\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u5F97\u5230\u5C0A\u91CD\u3002\u60A8\u5DF2\u81EA\u52A8\u9009\u62E9\u9000\u51FA\u7B26\u5408\u5168\u5C40\u9690\u79C1\u63A7\u5236\u7684\u6570\u636E\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u5E94\u7528","static.gpc.status.overridden":"\u88AB\u8986\u76D6","static.gpc.title":"\u68C0\u6D4B\u5230\u5168\u5C40\u9690\u79C1\u63A7\u5236"},Ba={"static.gpc":"\u5168\u57DF\u96B1\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u88AB\u63A5\u53D7\u3002\u6839\u64DA\u60A8\u7684\u9078\u64C7\xB7\uFF0C\u5DF2\u81EA\u52D5\u5C07\u60A8\u9000\u51FA\u7B26\u5408\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u7684\u8CC7\u6599\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u61C9\u7528","static.gpc.status.overridden":"\u5DF2\u8986\u5BEB","static.gpc.title":"\u6AA2\u6E2C\u5230\u5168\u57DF\u96B1\u79C1\u63A7\u5236"};const Lt={ar:ia,bg:oa,bs:ra,ca:aa,cs:sa,da:la,de:ca,el:da,en:ua,es:pa,"es-MX":fa,et:va,eu:ga,fi:_a,fr:ba,"fr-CA":ya,gl:ma,"hi-IN":ha,hr:wa,hu:ka,it:Ea,ja:Ca,lt:xa,lv:Oa,mt:Pa,nl:Ta,no:$a,pl:Aa,"pt-BR":Na,"pt-PT":Sa,ro:Ia,ru:La,sk:Fa,sl:ja,"sr-Cyrl":Da,"sr-Latn":Ma,sv:Ra,tr:za,uk:Ua,zh:Ga,"zh-Hant":Ba},Ha=[{locale:"ar",label_en:"Arabic",label_original:"\u0627\u0644\u0639\u064E\u0631\u064E\u0628\u0650\u064A\u064E\u0651\u0629"},{locale:"bg",label_en:"Bulgarian",label_original:"\u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u0435\u0437\u0438\u043A"},{locale:"bs",label_en:"Bosnian",label_original:"Bosanski Jezik"},{locale:"ca",label_en:"Catalan",label_original:"catal\xE0"},{locale:"cs",label_en:"Czech",label_original:"\u010Desk\xFD jazyk"},{locale:"da",label_en:"Danish",label_original:"Dansk"},{locale:"de",label_en:"German",label_original:"Deutsch"},{locale:"el",label_en:"Greek",label_original:"\u03B5\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"},{locale:"en",label_en:"English",label_original:"English"},{locale:"es",label_en:"Spanish",label_original:"Espa\xF1ol"},{locale:"es-MX",label_en:"Spanish (Mexico)",label_original:"Espa\xF1ol - MX"},{locale:"et",label_en:"Estonian",label_original:"Eesti"},{locale:"eu",label_en:"Basque",label_original:"euskara"},{locale:"fi",label_en:"Finnish",label_original:"Suomi"},{locale:"fr",label_en:"French",label_original:"Fran\xE7ais"},{locale:"fr-CA",label_en:"French (Canada)",label_original:"Fran\xE7ais - CA"},{locale:"gl",label_en:"Galician",label_original:"Galego"},{locale:"hi-IN",label_en:"Hindi (India)",label_original:"\u0939\u093F\u0928\u094D\u0926\u0940"},{locale:"hr",label_en:"Croatian",label_original:"Hrvatski Jezik"},{locale:"hu",label_en:"Hungarian",label_original:"magyar"},{locale:"it",label_en:"Italian",label_original:"Italiano"},{locale:"ja",label_en:"Japanese",label_original:"\u65E5\u672C\u8A9E"},{locale:"lt",label_en:"Lithuanian",label_original:"lietuvi\u0173 kalba"},{locale:"lv",label_en:"Latvian",label_original:"latvie\u0161u valoda"},{locale:"mt",label_en:"Maltese",label_original:"Malti"},{locale:"nl",label_en:"Dutch",label_original:"Nederlands"},{locale:"no",label_en:"Norwegian",label_original:"Norsk"},{locale:"pl",label_en:"Polish",label_original:"Polski"},{locale:"pt-BR",label_en:"Portuguese (Brazil)",label_original:"Portugu\xEAs - BR"},{locale:"pt-PT",label_en:"Portuguese (Portugal)",label_original:"Portugu\xEAs - PT"},{locale:"ro",label_en:"Romanian",label_original:"limba rom\xE2n\u0103"},{locale:"ru",label_en:"Russian",label_original:"\u0440\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"},{locale:"sk",label_en:"Slovak",label_original:"sloven\u010Dina"},{locale:"sl",label_en:"Slovenian",label_original:"Slovenski Jezik"},{locale:"sr-Cyrl",label_en:"Serbian (Cyrillic)",label_original:"\u0441\u0440\u043F\u0441\u043A\u0438"},{locale:"sr-Latn",label_en:"Serbian (Latin)",label_original:"Srpski"},{locale:"sv",label_en:"Swedish",label_original:"Sverige"},{locale:"tr",label_en:"Turkish",label_original:"T\xFCrk\xE7e"},{locale:"uk",label_en:"Ukrainian",label_original:"\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 \u043C\u043E\u0432\u0430"},{locale:"zh",label_en:"Chinese (Simplified)",label_original:"\u7B80\u4F53\u4E2D\u6587"},{locale:"zh-Hant",label_en:"Chinese (Traditional)",label_original:"\u7E41\u9AD4\u4E2D\u6587"}];var Va=Object.defineProperty,Qn=Object.getOwnPropertySymbols,Ka=Object.prototype.hasOwnProperty,Ya=Object.prototype.propertyIsEnumerable,ei=(e,t,n)=>t in e?Va(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,X=(e,t)=>{for(var n in t||(t={}))Ka.call(t,n)&&ei(e,n,t[n]);if(Qn)for(var n of Qn(t))Ya.call(t,n)&&ei(e,n,t[n]);return e};function Q(e,t){return e.toLowerCase().replaceAll("_","-")===t.toLowerCase().replaceAll("_","-")}function qa(e,t){const n={},i=["accept_button_label","acknowledge_button_label","banner_description","banner_title","description","purpose_header","privacy_policy_link_label","privacy_policy_url","privacy_preferences_link_label","reject_button_label","save_button_label","title","modal_link_label"];if(e.translations)e.translations.forEach(o=>{const r=o.language;let l=!1;t!=null&&t.override_language&&(l=Q(t.override_language,r));const s={};i.forEach(a=>{let c=null;t&&(l||a==="privacy_policy_url")&&(c=a in t?t[a]:null);const u=o[a];typeof u=="string"&&(s[`exp.${a}`]=c||u)}),n[r]=X(X({},s),n[r])});else{const o=B,r={};i.forEach(l=>{const s=e[l];typeof s=="string"&&(r[`exp.${l}`]=s)}),n[o]=X(X({},r),n[o])}return n}function Ft(e){var t;if((t=e?.experience_config)!=null&&t.translations){const{translations:n}=e.experience_config,i=n.find(o=>o.is_default);return i?.language}}function ti(e,t){const n={};return t.forEach(i=>{const o=Object.keys(e).find(r=>Q(r,i));if(o){const r=e[o],l={};["purposes","specialPurposes","features","specialFeatures","stacks","dataCategories"].forEach(s=>{const a=r[s]||{};Object.keys(a).forEach(c=>{const u=a[c],d=`exp.tcf.${s}.${c}`;l[`${d}.name`]=u.name,l[`${d}.description`]=u.description,u.illustrations&&u.illustrations.length>0&&u.illustrations.forEach((y,f)=>{l[`${d}.illustrations.${f}`]=y})})}),n[i]=X(X({},l),n[i])}}),n}function ni(e){return Object.keys(Lt).forEach(t=>{e.load(t,Lt[t])}),Object.keys(Lt)}function ii(e,t,n){var i;const o={},r=(i=t.available_locales)!=null&&i.length?t.available_locales:[B];if(t!=null&&t.experience_config){const l=t.experience_config,s=qa(l,n);Object.keys(s).forEach(a=>{o[a]=X(X({},s[a]),o[a])})}r.forEach(l=>{e.load(l,o[l])})}function oi(e,t){if(!t.gvl)return;const{locale:n}=e,i={};i[n]=t.gvl;const o=ti(i,[n]);e.load(n,o[n])}function ri(e,t,n){const i=ti(t,n);n.forEach(o=>{e.load(o,i[o])})}function ai(e){return e.locale}function si(e,t,n=B){const i=e?.language;return t||i||n}function li(e,t,n=B){const i=e.match(Ze);if(i){const[o,r]=i,l=t.find(a=>Q(a,o));if(l)return l;const s=t.find(a=>Q(a,r));if(s)return s}return n}function _e(e,t){return e.t(t)!==""&&e.t(t)!==t}function jt(e,t,n){if(!n||!n.translations)return null;if(e){const o=n.translations.find(r=>Q(r.language,e));if(o)return o}return n.translations.find(o=>Q(o.language,t))||n.translations[0]||null}function rt(e,t,n){if(!n||!n.translations)return null;if(e){const o=n.translations.find(r=>Q(r.language,e));if(o)return o}return n.translations.find(o=>Q(o.language,t))||n.translations[0]||null}function ci(e,t,n,i,o){var r,l,s,a,c;ni(e);const u=(r=n.available_locales)!=null&&r.length?n.available_locales:[B];ii(e,n,o);const d=Ha.filter(_=>u.includes(_.locale)),y=d.findIndex(_=>Q(_.locale,e.getDefaultLocale()));y>0&&d.unshift(d.splice(y,1)[0]),e.setAvailableLanguages(d);const f=Ft(n)||B;e.setDefaultLocale(f);let g=f;((l=n.experience_config)==null?void 0:l.auto_detect_language)===!1||(g=si(t,i?.fidesLocale,f));const p=li(g,u||[],e.getDefaultLocale());if((a=(s=n.experience_config)==null?void 0:s.translations)!=null&&a.find(_=>_.language===p))e.activate(p);else{const _=rt(p,f,n.experience_config);_?.language,e.activate(_?.language||p)}((c=n.experience_config)==null?void 0:c.component)===U.TCF_OVERLAY&&n.gvl&&oi(e,n)}function Dt(){let e=[],t=B,n=B;const i={};return{setAvailableLanguages(o){e=o},get availableLanguages(){return e},activate:o=>{n=o},getDefaultLocale:()=>t,setDefaultLocale:o=>{t=o},get locale(){return n},load:(o,r)=>{i[o]=X(X({},i[o]),r)},t:o=>{if(typeof o>"u")throw new TypeError("Unexpected type for descriptor or id!");let r;if(typeof o=="string")r=o;else if(typeof o=="object"&&o.id)r=o.id;else return"";return n&&n in i&&r&&r in i[n]&&i[n][r]?i[n][r]:r}}}const di=(e,t,n)=>{var i;let o=We;if(!e)t.t("exp.modal_link_label")!=="exp.modal_link_label"&&(o=t.t("exp.modal_link_label"));else{const r=t.getDefaultLocale(),l=(i=n?.experience_config)==null?void 0:i.translations.find(s=>s.language===r);l!=null&&l.modal_link_label&&(o=l.modal_link_label)}return o},Wa=Dt();function Za(e){return Array.from(e).length}var Ja=Object.defineProperty,Xa=Object.defineProperties,Qa=Object.getOwnPropertyDescriptors,ui=Object.getOwnPropertySymbols,es=Object.prototype.hasOwnProperty,ts=Object.prototype.propertyIsEnumerable,pi=(e,t,n)=>t in e?Ja(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Le=(e,t)=>{for(var n in t||(t={}))es.call(t,n)&&pi(e,n,t[n]);if(ui)for(var n of ui(t))ts.call(t,n)&&pi(e,n,t[n]);return e},Mt=(e,t)=>Xa(e,Qa(t)),at=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())}),fi=(e=>(e.PRIVACY_EXPERIENCE="/privacy-experience",e.PRIVACY_PREFERENCES="/privacy-preferences",e.GVL_TRANSLATIONS="/privacy-experience/gvl/translations",e.NOTICES_SERVED="/notices-served",e))(fi||{});function vi(){return{}}const gi=e=>at(void 0,[e],function*({userLocationString:t,userLanguageString:n,fidesApiUrl:i,apiOptions:o,propertyId:r,requestMinimalTCF:l,missingExperienceHandler:s=vi}){var a,c,u;if(o!=null&&o.getPrivacyExperienceFn)try{return yield o.getPrivacyExperienceFn(t,null)}catch(p){return s(p)}const d=[["Unescape-Safestr","true"],["Accept-Encoding","gzip, deflate"]];n&&d.push(["Accept-Language",n]);const y={method:"GET",mode:"cors",headers:d};let f=Le(Le({show_disabled:"false",region:t,component:U.OVERLAY,has_config:"true",systems_applicable:"true",exclude_gvl_languages:"true",include_meta:"true",include_gvl:"true",include_non_applicable_notices:"true"},l&&{minimal_tcf:"true"}),r&&{property_id:r});f=new URLSearchParams(f);let g;try{if(g=yield fetch(`${i}/privacy-experience?${f}`,y),!g.ok)throw new Error("Error fetching experience from Fides API")}catch(p){return s(p)}try{const p=yield g.json();if(((a=p.items)==null?void 0:a.length)<1)return{};const _=p.items&&p.items[0],m=(u=(c=_.experience_config)==null?void 0:c.translations)==null?void 0:u[0].language;return _}catch(p){return s(p)}}),_i=(e,t)=>at(void 0,null,function*(){const n=new URLSearchParams;t?.forEach(l=>{n.append("language",l)});const i={method:"GET",mode:"cors"};let o;try{o=yield fetch(`${e}/privacy-experience/gvl/translations${Za(n)>0?"?":""}${n.toString()}`,i)}catch{return{}}return o.ok?yield o.json():{}}),bi={method:"PATCH",mode:"cors",headers:{"Content-Type":"application/json"}},yi="Fides.js",mi=(e,t,n,i,o)=>at(void 0,null,function*(){var r;if((r=n.apiOptions)!=null&&r.savePreferencesFn){try{yield n.apiOptions.savePreferencesFn(e,i.consent,i.fides_string,o)}catch(a){return Promise.reject(a)}return Promise.resolve()}const l=Mt(Le({},bi),{body:JSON.stringify(Mt(Le({},t),{source:yi}))});return(yield fetch(`${n.fidesApiUrl}/privacy-preferences`,l)).ok,Promise.resolve()}),hi=e=>at(void 0,[e],function*({request:t,options:n}){var i;if((i=n.apiOptions)!=null&&i.patchNoticesServedFn)try{return yield n.apiOptions.patchNoticesServedFn(t)}catch{return null}const o=Mt(Le({},bi),{body:JSON.stringify(t)}),r=yield fetch(`${n.fidesApiUrl}/notices-served`,o);return r.ok?r.json():null});var ns=Object.defineProperty,is=(e,t,n)=>t in e?ns(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,os=(e,t,n)=>is(e,t+"",n);let rs=class{constructor(){os(this,"servedNoticeHistoryId",null)}getServedNoticeHistoryId(){return this.servedNoticeHistoryId||(this.servedNoticeHistoryId=bn()),this.servedNoticeHistoryId}reset(){this.servedNoticeHistoryId=null}hasLifecycleId(){return this.servedNoticeHistoryId!==null}};const wi=new rs;var as=Object.defineProperty,ss=Object.defineProperties,ls=Object.getOwnPropertyDescriptors,ki=Object.getOwnPropertySymbols,cs=Object.prototype.hasOwnProperty,ds=Object.prototype.propertyIsEnumerable,Ei=(e,t,n)=>t in e?as(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,oe=(e,t)=>{for(var n in t||(t={}))cs.call(t,n)&&Ei(e,n,t[n]);if(ki)for(var n of ki(t))ds.call(t,n)&&Ei(e,n,t[n]);return e},st=(e,t)=>ss(e,ls(t)),Rt=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const us=[N.SCRIPT,N.GPC,N.OT_MIGRATION];function ps(e,t,n,i,o,r,l,s,a){return Rt(this,null,function*(){const c=(r||[]).map(d=>({preference:d.consentPreference,privacy_notice_history_id:d.noticeHistoryId||""})),u=oe({browser_identity:t.identity,preferences:c,privacy_experience_config_history_id:o,user_geography:s,method:i,served_notice_history_id:a,property_id:n.property_id},l??[]);yield mi(i,u,e,t,n)})}const fs=e=>Rt(void 0,[e],function*({consentPreferencesToSave:t,privacyExperienceConfigHistoryId:n,experience:i,consentMethod:o,options:r,userLocationString:l,cookie:s,eventExtraDetails:a,servedNoticeHistoryId:c,tcf:u,updateCookie:d}){var y,f,g,p,_;if(!d&&t&&(d=k=>Sn(k,t)),!d&&!t)throw new Error("updateCookie is required");const m=st(oe({},a?.trigger),{origin:((y=a?.trigger)==null?void 0:y.origin)||(us.includes(o)?ge.EXTERNAL:ge.FIDES)}),h=yield d(s);Object.assign(s,h),Object.assign(s.fides_meta,{consentMethod:o}),ie("FidesUpdating",s,st(oe({},a),{trigger:m}));const w=Ie(s.consent,(g=(f=window.Fides)==null?void 0:f.experience)==null?void 0:g.non_applicable_privacy_notices,(_=(p=window.Fides)==null?void 0:p.experience)==null?void 0:_.privacy_notices);if(window.Fides.consent=w,window.Fides.fides_string=s.fides_string,window.Fides.tcf_consent=s.tcf_consent,Tn(st(oe({},s),{consent:w}),r.base64Cookie),window.Fides.saved_consent=s.consent,!r.fidesDisableSaveApi)try{yield ps(r,s,i,o,n,t,u,l,c)}catch{}t&&t.filter(k=>k.consentPreference===G.OPT_OUT).forEach(k=>{var E,T;(E=k.notice)!=null&&E.cookies&&An(k.notice.cookies,(T=i.experience_config)==null?void 0:T.auto_subdomain_cookie_deletion)}),ie("FidesUpdated",s,st(oe({},a),{trigger:m}))}),Ci=(e,t,n,i)=>Object.entries(n).reduce((o,[r,l])=>{if(o)return o;const s=t.find(u=>u===r);if(s&&!l&&i!==N.OT_MIGRATION)return new Error(`Provided notice key '${r}' is not applicable to the current experience.`);const a=e.find(u=>u.notice_key===r);if(!s&&!a)return new Error(`'${r}' is not a valid notice key`);const c=a?.consent_mechanism===V.NOTICE_ONLY;return c&&l!==!0&&l!==G.ACKNOWLEDGE&&i!==N.OT_MIGRATION?new Error(`Invalid consent value for notice-only notice key: '${r}'. Must be \`true\` or "acknowledge"`):!c&&typeof l!="boolean"&&l!==G.OPT_IN&&l!==G.OPT_OUT?new Error(`Invalid consent value for notice key: '${r}'. Must be a boolean or "opt_in" or "opt_out"`):null},null),zt=(e,t)=>Rt(void 0,null,function*(){var n;const{experience:i,cookie:o,config:r,locale:l}=e;if(!i)throw new Error("Experience must be initialized before updating consent");if(!r)throw new Error("Config is not initialized");if(!o)throw new Error("Cookie is not initialized");if(!(t!=null&&t.noticeConsent)&&!(t!=null&&t.fidesString)&&!(t!=null&&t.tcf))throw new Error("Either consent object or fidesString must be provided");if(t!=null&&t.validation&&!Object.values(le).includes(t.validation))throw new Error(`Validation must be one of: ${Object.values(le).join(", ")} (default is ${le.THROW})`);const{noticeConsent:s,fidesString:a,validation:c=le.THROW,consentMethod:u=N.SCRIPT,eventExtraDetails:d={trigger:{origin:ge.EXTERNAL}},tcf:y,updateCookie:f}=t,{experience_config:g,privacy_notices:p,non_applicable_privacy_notices:_}=i,m=Ft(i)||B,h=C=>{if(c===le.THROW)throw new Error(C);c===le.WARN&&console.warn(C)};let w=o.consent||{};if(a)try{const C=It(a);if(C.nc){const A=tt(C.nc);w=oe(oe({},o.consent),A);const P=Ci(p||[],_||[],w,u);P&&h(P.message)}}catch(C){const A=C instanceof Error?C.message:String(C);h(`Invalid fidesString provided: ${A}`)}else if(s){const C=Ci(p||[],_||[],s,u);C&&h(C.message),w=oe(oe({},o.consent),s)}const k=[];Object.entries(w).forEach(([C,A])=>{const P=p?.find(I=>I.notice_key===C);if(P){const I=jt(l,m,P),Z=I?.privacy_notice_history_id;let te;if(typeof A=="boolean"?te=Ae(A,P.consent_mechanism):te=A,Z){const Y=new kt(P,te,Z);k.push(Y)}}});let E;if((n=g?.translations)!=null&&n.length){const C=rt(l,m,g);E=C?.privacy_experience_config_history_id}const T=Xe(r.geolocation),R=wi.getServedNoticeHistoryId();return fs({consentPreferencesToSave:k,privacyExperienceConfigHistoryId:E,experience:i,consentMethod:u,options:r.options,userLocationString:T,cookie:o,eventExtraDetails:d,servedNoticeHistoryId:R,tcf:y,updateCookie:f})}),Ut=e=>{throw new Error(e)},lt=e=>{typeof window<"u"&&(window.Fides=e)},xi=({cookie:e,experience:t})=>{let n=t;return Tt(e.consent)&&(n=$t({experience:t,cookie:e})),n},Oi=({tcfEnabled:e=!1})=>({consent:{},experience:void 0,geolocation:{},locale:B,options:{debug:!0,isOverlayEnabled:!1,isPrefetchEnabled:!1,isGeolocationEnabled:!1,geolocationApiUrl:"",overlayParentId:null,modalLinkId:null,privacyCenterUrl:"",fidesApiUrl:"",tcfEnabled:e,gppEnabled:!1,fidesEmbed:!1,fidesDisableSaveApi:!1,fidesDisableNoticesServedApi:!1,fidesDisableBanner:!1,fidesString:null,apiOptions:null,fidesTcfGdprApplies:e,fidesJsBaseUrl:"",customOptionsPath:null,preventDismissal:!1,allowHTMLDescription:null,base64Cookie:!1,fidesPrimaryColor:null,fidesClearCookie:!1,showFidesBrandLink:!e,fidesConsentOverride:null,otFidesMapping:null,fidesDisabledNotices:null,fidesConsentNonApplicableFlagMode:null,fidesConsentFlagType:null,fidesInitializedEventMode:"once"},fides_meta:{},identity:{},tcf_consent:{},saved_consent:{},config:void 0,initialized:!1,onFidesEvent:qn,blueconic:Zr,gtm:Jr,meta:Qr,shopify:na,showModal:St,getModalLinkLabel:()=>We,encodeNoticeConsentString:Hn,decodeNoticeConsentString:tt,reinitialize(){return typeof this.init!="function"?Promise.reject(new Error("Fides.init method is not available")):((!this.config||!this.initialized)&&Ut("Fides must be initialized before reinitializing"),this.init())},shouldShowExperience(){return!(this!=null&&this.experience)||!(this!=null&&this.cookie)||!(this!=null&&this.saved_consent)||!(this!=null&&this.options)?!1:et(this.experience,this.cookie,this.saved_consent,this.options)},updateConsent(t){const{consent:n,fidesString:i,validation:o}=t;return zt(this,{noticeConsent:n,fidesString:i,validation:o})}});var vs=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Pi=(e,t)=>vs(void 0,null,function*(){if(!e||!t)return null;const n=yield fetch(t,{mode:"cors"});if(!n.ok)return null;try{return yield n.json()}catch{return null}}),gs=()=>{var e,t,n;if(window.Fides.options.tcfEnabled&&!((t=(e=window.Fides.experience)==null?void 0:e.privacy_notices)!=null&&t.length))return!1;if(typeof((n=window.navigator)==null?void 0:n.globalPrivacyControl)=="boolean")return window.navigator.globalPrivacyControl;const i=new URL(window.location.href).searchParams.get("globalPrivacyControl");if(i==="true")return!0;if(i==="false")return!1},xe=()=>typeof window>"u"?{}:{globalPrivacyControl:gs()};var _s=Object.defineProperty,Ti=Object.getOwnPropertySymbols,bs=Object.prototype.hasOwnProperty,ys=Object.prototype.propertyIsEnumerable,$i=(e,t,n)=>t in e?_s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ms=(e,t)=>{for(var n in t||(t={}))bs.call(t,n)&&$i(e,n,t[n]);if(Ti)for(var n of Ti(t))ys.call(t,n)&&$i(e,n,t[n]);return e},hs=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const ws=e=>hs(void 0,null,function*(){var t;const{experience:n,saved_consent:i,options:o}=e;if(!n||!n.experience_config||!((t=n.privacy_notices)!=null&&t.length))return!1;const r=xe(),{nc:l}=It(o.fidesString||"");r.globalPrivacyControl;const{consent:s,method:a}=jn(o),c=!!s&&!!a&&!Ee();if(!r.globalPrivacyControl&&!l&&!c)return!1;let u=!1,d=!1,y=!1;const f=n.privacy_notices.reduce((g,p)=>{const _=ms({},g),m=ce(p.default_preference);_[p.notice_key]=m,i[p.notice_key]&&(_[p.notice_key]=i[p.notice_key]);const h=Ke(p,i),w=p.consent_mechanism===V.NOTICE_ONLY;if(c&&s){const k=s[p.notice_key];if(k!==void 0)return y=!0,_[p.notice_key]=k,_}if(w)return _;if(l){const k=tt(l)[p.notice_key];if(k!==void 0)return d=!0,_[p.notice_key]=k,_}return r.globalPrivacyControl&&!h&&p.has_gpc_flag&&(u=!0,_[p.notice_key]=!1),_},{});if(u||d||y){let g=N.SCRIPT;return y&&a?g=a:d?g=N.SCRIPT:u&&(g=N.GPC),yield zt(e,{noticeConsent:f,consentMethod:g}),!0}return!1}),ks=()=>{document.body.classList.add("fides-no-scroll")},Ai=()=>{document.body.classList.remove("fides-no-scroll")},Es=e=>new DOMParser().parseFromString(e,"text/html").body.textContent||"",Ni=e=>{let t=0,n=200;return new Promise(i=>{const o=r=>{const l=setTimeout(()=>{const s=document.getElementById(e);s?(clearInterval(l),i(s)):(t+=1,t>=5&&n<1e3&&(n+=200),o(n))},r)};o(n)})};var Cs=Object.defineProperty,xs=Object.defineProperties,Os=Object.getOwnPropertyDescriptors,Si=Object.getOwnPropertySymbols,Ps=Object.prototype.hasOwnProperty,Ts=Object.prototype.propertyIsEnumerable,Ii=(e,t,n)=>t in e?Cs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Gt=(e,t)=>{for(var n in t||(t={}))Ps.call(t,n)&&Ii(e,n,t[n]);if(Si)for(var n of Si(t))Ts.call(t,n)&&Ii(e,n,t[n]);return e},$s=(e,t)=>xs(e,Os(t)),Li=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const As=(e,t)=>Li(void 0,null,function*(){return Xe(e)||Xe(yield Pi(t.isGeolocationEnabled,t.geolocationApiUrl))}),Fi=(e,t)=>{const n={};if(typeof window<"u"){const i=new URLSearchParams(window.location.search),o=t.options.customOptionsPath&&t.options.customOptionsPath.split("."),r=o&&o.length>=0?Gn(o):window.fides_overrides,l=zn(e);l?.forEach(({overrideName:s,overrideType:a,overrideKey:c,validationRegex:u,transform:d})=>{const y=i.get(c),f=r?r[c]:void 0,g=qe(c),p=y||f||g;p&&u.test(p.toString())&&(d?n[s]=d(p.toString()):n[s]=a==="string"?p:JSON.parse(p.toString()))})}return n},Ns=({consent:e,options:t})=>{const n=xe(),i=$n(e,n);return Pn(i,t.fidesClearCookie)},Ss=({cookie:e,savedConsent:t,experience:n,geolocation:i,options:o,updateExperienceFromCookieConsent:r})=>{let l=n;return Ce(n)&&(l=r({experience:n,cookie:e,debug:o.debug})),{consent:e.consent,fides_meta:e.fides_meta,identity:e.identity,experience:l,tcf_consent:e.tcf_consent,fides_string:e.fides_string,saved_consent:t,geolocation:i,options:o,initialized:!0}},Is=e=>Li(void 0,[e],function*({fides:t,initOverlay:n,renderOverlay:i,updateExperience:o,overrides:r}){var l,s,a,c,u,d,y;const{config:f}=t;if(!f)throw new Error("Fides config should be initialized");const{options:g,geolocation:p}=f;let _=!0,m,h=()=>We;if(!t.cookie)throw new Error("Fides cookie should be initialized");if(_=g.isOverlayEnabled,_){Rn(g)||(_=!1),m=yield As(p,g);let R=!1;if(m?Ce(t.experience)||(R=!0,t.experience=yield gi({userLocationString:m,fidesApiUrl:g.fidesApiUrl,apiOptions:g.apiOptions,requestMinimalTCF:!1,propertyId:(l=t.config)==null?void 0:l.propertyId})):_=!1,_&&Ce(t.experience)&&Un(t.experience)){if(R){const P=o({cookie:t.cookie,experience:t.experience});t.experience=Gt(Gt({},t.experience),P)}(s=t.config)!=null&&s.propertyId&&(t.experience.property_id=t.config.propertyId);const C=In({cookie:t.cookie,experience:t.experience});t.cookie=C;const A=Dt();if(ci(A,window?.navigator,t.experience,g,r?.experienceTranslationOverrides),t.locale=A.locale||B,h=P=>di(!!(P!=null&&P.disableLocalization),A,t.experience),((a=t.experience.experience_config)==null?void 0:a.component)===U.HEADLESS){const P=g.modalLinkId||"fides-modal-link";!t.experience||g.fidesEmbed||g.modalLinkId,Ni(P).then(I=>{document.body.classList.add("fides-overlay-modal-link-shown"),I.classList.add("fides-modal-link-shown")}),_=!1}if(n&&_){const P=$s(Gt({},t),{cookie:t.cookie,config:f,options:g,experience:t.experience,fidesRegionString:m});n({initializedFides:P,i18n:A,renderOverlay:i}).catch(I=>{})}setTimeout(ws.bind(null,t))}}const{fides_meta:w,identity:k,fides_string:E,tcf_consent:T}=t.cookie;return{consent:Ie(t.cookie.consent,(c=t.experience)==null?void 0:c.non_applicable_privacy_notices,(u=t.experience)==null?void 0:u.privacy_notices,(d=g.fidesConsentFlagType)!=null?d:void 0,(y=g.fidesConsentNonApplicableFlagMode)!=null?y:void 0),fides_meta:w,identity:k,fides_string:E,tcf_consent:T,experience:t.experience,geolocation:p,options:g,initialized:!0,getModalLinkLabel:h}});var ct,O,ji,be,Di,Mi,Bt,Ht,Vt,Kt,Ri,Fe={},zi=[],Ls=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,dt=Array.isArray;function de(e,t){for(var n in t)e[n]=t[n];return e}function Ui(e){var t=e.parentNode;t&&t.removeChild(e)}function v(e,t,n){var i,o,r,l={};for(r in t)r=="key"?i=t[r]:r=="ref"?o=t[r]:l[r]=t[r];if(arguments.length>2&&(l.children=arguments.length>3?ct.call(arguments,2):n),typeof e=="function"&&e.defaultProps!=null)for(r in e.defaultProps)l[r]===void 0&&(l[r]=e.defaultProps[r]);return ut(e,l,i,o,null)}function ut(e,t,n,i,o){var r={type:e,props:t,key:n,ref:i,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:o??++ji,__i:-1,__u:0};return o==null&&O.vnode!=null&&O.vnode(r),r}function re(e){return e.children}function ae(e,t){this.props=e,this.context=t}function ye(e,t){if(t==null)return e.__?ye(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type=="function"?ye(e):null}function Gi(e){var t,n;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null){e.__e=e.__c.base=n.__e;break}return Gi(e)}}function Yt(e){(!e.__d&&(e.__d=!0)&&be.push(e)&&!pt.__r++||Di!==O.debounceRendering)&&((Di=O.debounceRendering)||Mi)(pt)}function pt(){var e,t,n,i,o,r,l,s;for(be.sort(Bt);e=be.shift();)e.__d&&(t=be.length,i=void 0,r=(o=(n=e).__v).__e,l=[],s=[],n.__P&&((i=de({},o)).__v=o.__v+1,O.vnode&&O.vnode(i),qt(n.__P,i,o,n.__n,n.__P.namespaceURI,32&o.__u?[r]:null,l,r??ye(o),!!(32&o.__u),s),i.__v=o.__v,i.__.__k[i.__i]=i,Yi(l,i,s),i.__e!=r&&Gi(i)),be.length>t&&be.sort(Bt));pt.__r=0}function Bi(e,t,n,i,o,r,l,s,a,c,u){var d,y,f,g,p,_=i&&i.__k||zi,m=t.length;for(n.__d=a,Fs(n,t,_),a=n.__d,d=0;d<m;d++)(f=n.__k[d])!=null&&typeof f!="boolean"&&typeof f!="function"&&(y=f.__i===-1?Fe:_[f.__i]||Fe,f.__i=d,qt(e,f,y,o,r,l,s,a,c,u),g=f.__e,f.ref&&y.ref!=f.ref&&(y.ref&&Wt(y.ref,null,f),u.push(f.ref,f.__c||g,f)),p==null&&g!=null&&(p=g),65536&f.__u||y.__k===f.__k?(a&&typeof f.type=="string"&&!e.contains(a)&&(a=ye(y)),a=Hi(f,a,e)):typeof f.type=="function"&&f.__d!==void 0?a=f.__d:g&&(a=g.nextSibling),f.__d=void 0,f.__u&=-196609);n.__d=a,n.__e=p}function Fs(e,t,n){var i,o,r,l,s,a=t.length,c=n.length,u=c,d=0;for(e.__k=[],i=0;i<a;i++)l=i+d,(o=e.__k[i]=(o=t[i])==null||typeof o=="boolean"||typeof o=="function"?null:typeof o=="string"||typeof o=="number"||typeof o=="bigint"||o.constructor==String?ut(null,o,null,null,null):dt(o)?ut(re,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?ut(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):o)!=null?(o.__=e,o.__b=e.__b+1,s=js(o,n,l,u),o.__i=s,r=null,s!==-1&&(u--,(r=n[s])&&(r.__u|=131072)),r==null||r.__v===null?(s==-1&&d--,typeof o.type!="function"&&(o.__u|=65536)):s!==l&&(s==l-1?d=s-l:s==l+1?d++:s>l?u>a-l?d+=s-l:d--:s<l&&d++,s!==i+d&&(o.__u|=65536))):(r=n[l])&&r.key==null&&r.__e&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=ye(r)),Zt(r,r,!1),n[l]=null,u--);if(u)for(i=0;i<c;i++)(r=n[i])!=null&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=ye(r)),Zt(r,r))}function Hi(e,t,n){var i,o;if(typeof e.type=="function"){for(i=e.__k,o=0;i&&o<i.length;o++)i[o]&&(i[o].__=e,t=Hi(i[o],t,n));return t}e.__e!=t&&(n.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType===8);return t}function ft(e,t){return t=t||[],e==null||typeof e=="boolean"||(dt(e)?e.some(function(n){ft(n,t)}):t.push(e)),t}function js(e,t,n,i){var o=e.key,r=e.type,l=n-1,s=n+1,a=t[n];if(a===null||a&&o==a.key&&r===a.type&&(131072&a.__u)==0)return n;if(i>(a!=null&&(131072&a.__u)==0?1:0))for(;l>=0||s<t.length;){if(l>=0){if((a=t[l])&&(131072&a.__u)==0&&o==a.key&&r===a.type)return l;l--}if(s<t.length){if((a=t[s])&&(131072&a.__u)==0&&o==a.key&&r===a.type)return s;s++}}return-1}function Vi(e,t,n){t[0]==="-"?e.setProperty(t,n??""):e[t]=n==null?"":typeof n!="number"||Ls.test(t)?n:n+"px"}function vt(e,t,n,i,o){var r;e:if(t==="style")if(typeof n=="string")e.style.cssText=n;else{if(typeof i=="string"&&(e.style.cssText=i=""),i)for(t in i)n&&t in n||Vi(e.style,t,"");if(n)for(t in n)i&&n[t]===i[t]||Vi(e.style,t,n[t])}else if(t[0]==="o"&&t[1]==="n")r=t!==(t=t.replace(/(PointerCapture)$|Capture$/i,"$1")),t=t.toLowerCase()in e||t==="onFocusOut"||t==="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+r]=n,n?i?n.u=i.u:(n.u=Ht,e.addEventListener(t,r?Kt:Vt,r)):e.removeEventListener(t,r?Kt:Vt,r);else{if(o=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=n??"";break e}catch{}typeof n=="function"||(n==null||n===!1&&t[4]!=="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&n==1?"":n))}}function Ki(e){return function(t){if(this.l){var n=this.l[t.type+e];if(t.t==null)t.t=Ht++;else if(t.t<n.u)return;return n(O.event?O.event(t):t)}}}function qt(e,t,n,i,o,r,l,s,a,c){var u,d,y,f,g,p,_,m,h,w,k,E,T,R,C,A,P=t.type;if(t.constructor!==void 0)return null;128&n.__u&&(a=!!(32&n.__u),r=[s=t.__e=n.__e]),(u=O.__b)&&u(t);e:if(typeof P=="function")try{if(m=t.props,h="prototype"in P&&P.prototype.render,w=(u=P.contextType)&&i[u.__c],k=u?w?w.props.value:u.__:i,n.__c?_=(d=t.__c=n.__c).__=d.__E:(h?t.__c=d=new P(m,k):(t.__c=d=new ae(m,k),d.constructor=P,d.render=Ms),w&&w.sub(d),d.props=m,d.state||(d.state={}),d.context=k,d.__n=i,y=d.__d=!0,d.__h=[],d._sb=[]),h&&d.__s==null&&(d.__s=d.state),h&&P.getDerivedStateFromProps!=null&&(d.__s==d.state&&(d.__s=de({},d.__s)),de(d.__s,P.getDerivedStateFromProps(m,d.__s))),f=d.props,g=d.state,d.__v=t,y)h&&P.getDerivedStateFromProps==null&&d.componentWillMount!=null&&d.componentWillMount(),h&&d.componentDidMount!=null&&d.__h.push(d.componentDidMount);else{if(h&&P.getDerivedStateFromProps==null&&m!==f&&d.componentWillReceiveProps!=null&&d.componentWillReceiveProps(m,k),!d.__e&&(d.shouldComponentUpdate!=null&&d.shouldComponentUpdate(m,d.__s,k)===!1||t.__v===n.__v)){for(t.__v!==n.__v&&(d.props=m,d.state=d.__s,d.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.forEach(function(I){I&&(I.__=t)}),E=0;E<d._sb.length;E++)d.__h.push(d._sb[E]);d._sb=[],d.__h.length&&l.push(d);break e}d.componentWillUpdate!=null&&d.componentWillUpdate(m,d.__s,k),h&&d.componentDidUpdate!=null&&d.__h.push(function(){d.componentDidUpdate(f,g,p)})}if(d.context=k,d.props=m,d.__P=e,d.__e=!1,T=O.__r,R=0,h){for(d.state=d.__s,d.__d=!1,T&&T(t),u=d.render(d.props,d.state,d.context),C=0;C<d._sb.length;C++)d.__h.push(d._sb[C]);d._sb=[]}else do d.__d=!1,T&&T(t),u=d.render(d.props,d.state,d.context),d.state=d.__s;while(d.__d&&++R<25);d.state=d.__s,d.getChildContext!=null&&(i=de(de({},i),d.getChildContext())),h&&!y&&d.getSnapshotBeforeUpdate!=null&&(p=d.getSnapshotBeforeUpdate(f,g)),Bi(e,dt(A=u!=null&&u.type===re&&u.key==null?u.props.children:u)?A:[A],t,n,i,o,r,l,s,a,c),d.base=t.__e,t.__u&=-161,d.__h.length&&l.push(d),_&&(d.__E=d.__=null)}catch(I){t.__v=null,a||r!=null?(t.__e=s,t.__u|=a?160:32,r[r.indexOf(s)]=null):(t.__e=n.__e,t.__k=n.__k),O.__e(I,t,n)}else r==null&&t.__v===n.__v?(t.__k=n.__k,t.__e=n.__e):t.__e=Ds(n.__e,t,n,i,o,r,l,a,c);(u=O.diffed)&&u(t)}function Yi(e,t,n){t.__d=void 0;for(var i=0;i<n.length;i++)Wt(n[i],n[++i],n[++i]);O.__c&&O.__c(t,e),e.some(function(o){try{e=o.__h,o.__h=[],e.some(function(r){r.call(o)})}catch(r){O.__e(r,o.__v)}})}function Ds(e,t,n,i,o,r,l,s,a){var c,u,d,y,f,g,p,_=n.props,m=t.props,h=t.type;if(h==="svg"?o="http://www.w3.org/2000/svg":h==="math"?o="http://www.w3.org/1998/Math/MathML":o||(o="http://www.w3.org/1999/xhtml"),r!=null){for(c=0;c<r.length;c++)if((f=r[c])&&"setAttribute"in f==!!h&&(h?f.localName===h:f.nodeType===3)){e=f,r[c]=null;break}}if(e==null){if(h===null)return document.createTextNode(m);e=document.createElementNS(o,h,m.is&&m),r=null,s=!1}if(h===null)_===m||s&&e.data===m||(e.data=m);else{if(r=r&&ct.call(e.childNodes),_=n.props||Fe,!s&&r!=null)for(_={},c=0;c<e.attributes.length;c++)_[(f=e.attributes[c]).name]=f.value;for(c in _)if(f=_[c],c!="children"){if(c=="dangerouslySetInnerHTML")d=f;else if(c!=="key"&&!(c in m)){if(c=="value"&&"defaultValue"in m||c=="checked"&&"defaultChecked"in m)continue;vt(e,c,null,f,o)}}for(c in m)f=m[c],c=="children"?y=f:c=="dangerouslySetInnerHTML"?u=f:c=="value"?g=f:c=="checked"?p=f:c==="key"||s&&typeof f!="function"||_[c]===f||vt(e,c,f,_[c],o);if(u)s||d&&(u.__html===d.__html||u.__html===e.innerHTML)||(e.innerHTML=u.__html),t.__k=[];else if(d&&(e.innerHTML=""),Bi(e,dt(y)?y:[y],t,n,i,h==="foreignObject"?"http://www.w3.org/1999/xhtml":o,r,l,r?r[0]:n.__k&&ye(n,0),s,a),r!=null)for(c=r.length;c--;)r[c]!=null&&Ui(r[c]);s||(c="value",g!==void 0&&(g!==e[c]||h==="progress"&&!g||h==="option"&&g!==_[c])&&vt(e,c,g,_[c],o),c="checked",p!==void 0&&p!==e[c]&&vt(e,c,p,_[c],o))}return e}function Wt(e,t,n){try{typeof e=="function"?e(t):e.current=t}catch(i){O.__e(i,n)}}function Zt(e,t,n){var i,o;if(O.unmount&&O.unmount(e),(i=e.ref)&&(i.current&&i.current!==e.__e||Wt(i,null,t)),(i=e.__c)!=null){if(i.componentWillUnmount)try{i.componentWillUnmount()}catch(r){O.__e(r,t)}i.base=i.__P=null}if(i=e.__k)for(o=0;o<i.length;o++)i[o]&&Zt(i[o],t,n||typeof e.type!="function");n||e.__e==null||Ui(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function Ms(e,t,n){return this.constructor(e,n)}function qi(e,t,n){var i,o,r,l;O.__&&O.__(e,t),o=(i=!1)?null:t.__k,r=[],l=[],qt(t,e=t.__k=v(re,null,[e]),o||Fe,Fe,t.namespaceURI,o?null:t.firstChild?ct.call(t.childNodes):null,r,o?o.__e:t.firstChild,i,l),Yi(r,e,l)}function je(e,t){var n={__c:t="__cC"+Ri++,__:e,Consumer:function(i,o){return i.children(o)},Provider:function(i){var o,r;return this.getChildContext||(o=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){o=null},this.shouldComponentUpdate=function(l){this.props.value!==l.value&&o.some(function(s){s.__e=!0,Yt(s)})},this.sub=function(l){o.push(l);var s=l.componentWillUnmount;l.componentWillUnmount=function(){o&&o.splice(o.indexOf(l),1),s&&s.call(l)}}),i.children}};return n.Provider.__=n.Consumer.contextType=n}ct=zi.slice,O={__e:function(e,t,n,i){for(var o,r,l;t=t.__;)if((o=t.__c)&&!o.__)try{if((r=o.constructor)&&r.getDerivedStateFromError!=null&&(o.setState(r.getDerivedStateFromError(e)),l=o.__d),o.componentDidCatch!=null&&(o.componentDidCatch(e,i||{}),l=o.__d),l)return o.__E=o}catch(s){e=s}throw e}},ji=0,ae.prototype.setState=function(e,t){var n;n=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=de({},this.state),typeof e=="function"&&(e=e(de({},n),this.props)),e&&de(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),Yt(this))},ae.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Yt(this))},ae.prototype.render=re,be=[],Mi=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Bt=function(e,t){return e.__v.__b-t.__v.__b},pt.__r=0,Ht=0,Vt=Ki(!1),Kt=Ki(!0),Ri=0;const Rs=e=>{try{const t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!t)return null;let n=parseInt(t[1],16),i=parseInt(t[2],16),o=parseInt(t[3],16);n/=255,i/=255,o/=255;const r=Math.max(n,i,o),l=Math.min(n,i,o);let s,a;const c=(r+l)/2;if(r===l)s=a=0;else{const u=r-l;switch(a=c>.5?u/(2-r-l):u/(r+l),r){case n:s=(i-o)/u+(i<o?6:0);break;case i:s=(o-n)/u+2;break;case o:s=(n-i)/u+4;break}s/=6}return{h:s,s:a,l:c}}catch{return null}},zs=(e,t=!1)=>{let n="";const i=Math.round(e.h*360),o=Math.round(e.s*100),r=Math.round(e.l*100);return n=`${i},${o}%,${r}%`,n=t?n:`hsl(${n})`,n};var Wi=(e=>(e.HEX="hex",e.HSL="hsl",e))(Wi||{});const Us=(e,t,n)=>{const i=t==="hex"?Rs(e):e;return i&&i.l?(i.l<.25?i.l=i.l+.1:i.l<.5?i.l=i.l+.08:i.l<.75?i.l=i.l+.06:i.l<.9?i.l=i.l+.04:i.l=.9,zs(i)):e};var gt=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Zi="fides-embed-container",Gs="fides-overlay";let _t;const Ji=e=>gt(void 0,[e],function*({initializedFides:t,i18n:n,renderOverlay:i}){const{options:o,experience:r}=t,l=()=>gt(void 0,null,function*(){var s,a,c;try{if(_t&&(qi(null,_t),_t=void 0),o.fidesPrimaryColor){document.documentElement.style.setProperty("--fides-overlay-primary-color",o.fidesPrimaryColor);const d=Us(o.fidesPrimaryColor,Wi.HEX,1);document.documentElement.style.setProperty("--fides-overlay-primary-button-background-hover-color",d)}let u;if(o.fidesEmbed)u=document.getElementById(Zi),u||(yield gt(void 0,null,function*(){return new Promise(d=>{let y=0,f=200;const g=setInterval(()=>{u=document.getElementById(Zi),u?(clearInterval(g),d()):(y+=1,y>=5&&f<1e3&&(f+=200))},f)})}));else{const d=o.overlayParentId||Gs;u=document.getElementById(d),u||(u=document.createElement("div"),u.id=d,u.className="fides-overlay",document.body.prepend(u))}return u?(i&&(((s=r.experience_config)==null?void 0:s.component)===U.MODAL||((a=r.experience_config)==null?void 0:a.component)===U.BANNER_AND_MODAL||((c=r.experience_config)==null?void 0:c.component)===U.TCF_OVERLAY)&&(i({initializedFides:t,i18n:n},u),_t=u),yield Promise.resolve()):yield Promise.reject(new Error("There was a problem rendering the Fides overlay."))}catch(u){return Promise.reject(u)}});return document?.readyState==="loading"?document.addEventListener("readystatechange",()=>gt(void 0,null,function*(){document.readyState==="interactive"&&l()})):l(),Promise.resolve()});function Bs(e,t){t===void 0&&(t={});var n=t.insertAt;if(!(typeof document>"u")){var i=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",n==="top"&&i.firstChild?i.insertBefore(o,i.firstChild):i.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}var Hs=`:root{--fides-overlay-primary-color:#2b2e35;--fides-overlay-background-color:#f7fafc;--fides-overlay-embed-background-color:transparent;--fides-overlay-font-color:#4a5568;--fides-overlay-font-color-dark:#2d3748;--fides-overlay-hover-color:#edf2f7;--fides-overlay-gpc-applied-background-color:#38a169;--fides-overlay-gpc-applied-text-color:#fff;--fides-overlay-gpc-overridden-background-color:#e53e3e;--fides-overlay-gpc-overridden-text-color:#fff;--fides-overlay-brand-link-logo-color:#2b2e35;--fides-overlay-background-dark-color:#e2e8f0;--fides-overlay-width:680px;--fides-overlay-primary-button-background-color:var(
|
|
1
|
+
(function(v,Ve){typeof exports=="object"&&typeof module<"u"?Ve(exports):(v=typeof globalThis<"u"?globalThis:v||self,Ve(v.Fides={}))})(this,function(v){"use strict";var Ve=Object.defineProperty,or=(e,t,n)=>t in e?Ve(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Ot=(e,t,n)=>or(e,typeof t!="symbol"?t+"":t,n);class kt{constructor(t,n,i){Ot(this,"consentPreference"),Ot(this,"notice"),Ot(this,"noticeHistoryId"),this.notice=t,this.consentPreference=n,this.noticeHistoryId=i}}v.TCMobileDataVals=void 0,(e=>{(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFgdprApplies||(e.IABTCFgdprApplies={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFPurposeOneTreatment||(e.IABTCFPurposeOneTreatment={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFUseNonStandardTexts||(e.IABTCFUseNonStandardTexts={}))})(v.TCMobileDataVals||(v.TCMobileDataVals={}));var fn=(e=>(e.GPP_US_NATIONAL="gpp_us_national",e.GPP_US_STATE="gpp_us_state",e))(fn||{}),pn=(e=>(e.FRONTEND="frontend",e.SYSTEM_WIDE="system_wide",e.NOT_APPLICABLE="not_applicable",e))(pn||{}),B=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.NOTICE_ONLY="notice_only",e))(B||{}),V=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.ACKNOWLEDGE="acknowledge",e.NOT_APPLICABLE="not_applicable",e.TCF="tcf",e))(V||{}),we=(e=>(e.OMIT="omit",e.INCLUDE="include",e))(we||{}),de=(e=>(e.BOOLEAN="boolean",e.CONSENT_MECHANISM="consent_mechanism",e))(de||{}),ue=(e=>(e.THROW="throw",e.WARN="warn",e.IGNORE="ignore",e))(ue||{}),U=(e=>(e.OVERLAY="overlay",e.BANNER_AND_MODAL="banner_and_modal",e.MODAL="modal",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.HEADLESS="headless",e))(U||{}),_n=(e=>(e.ALWAYS_ENABLED="always_enabled",e.ENABLED_WHERE_REQUIRED="enabled_where_required",e.ALWAYS_DISABLED="always_disabled",e))(_n||{}),vn=(e=>(e.PURPOSES="/tcf/purposes",e.FEATURES="/tcf/features",e.VENDORS="/tcf/vendors",e))(vn||{}),Ee=(e=>(e.OPTIONS="options",e.EXPERIENCE_TRANSLATION="language",e))(Ee||{}),ee=(e=>(e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e))(ee||{}),Pt=(e=>(e.ACKNOWLEDGE="acknowledge",e.OPT_IN_OPT_OUT="opt_in_opt_out",e.OPT_IN_ONLY="opt_in_only",e))(Pt||{}),gn=(e=>(e.REJECT_ALL="reject_all",e.REJECT_CONSENT_ONLY="reject_consent_only",e))(gn||{}),I=(e=>(e.BUTTON="button",e.REJECT="reject",e.ACCEPT="accept",e.SCRIPT="script",e.SAVE="save",e.DISMISS="dismiss",e.GPC="gpc",e.INDIVIDUAL_NOTICE="individual_notice",e.ACKNOWLEDGE="acknowledge",e.OT_MIGRATION="ot_migration",e))(I||{}),bn=(e=>(e.privacy_center="privacy_center",e.overlay="overlay",e.api="api",e))(bn||{}),oe=(e=>(e.NONE="none",e.APPLIED="applied",e.OVERRIDDEN="overridden",e))(oe||{}),Ae=(e=>(e.OVERLAY="overlay",e.MODAL="modal",e.BANNER="banner",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.TCF_BANNER="tcf_banner",e))(Ae||{}),Ct=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},He={exports:{}};/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */He.exports,function(e,t){(function(n){var i=t,o=e&&e.exports==i&&e,r=typeof Ct=="object"&&Ct;(r.global===r||r.window===r)&&(n=r);var l=function(g){this.message=g};l.prototype=new Error,l.prototype.name="InvalidCharacterError";var s=function(g){throw new l(g)},a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=/[\t\n\f\r ]/g,u=function(g){g=String(g).replace(c,"");var f=g.length;f%4==0&&(g=g.replace(/==?$/,""),f=g.length),(f%4==1||/[^+a-zA-Z0-9/]/.test(g))&&s("Invalid character: the string to be decoded is not correctly encoded.");for(var y=0,h,m,w="",O=-1;++O<f;)m=a.indexOf(g.charAt(O)),h=y%4?h*64+m:m,y++%4&&(w+=String.fromCharCode(255&h>>(-2*y&6)));return w},d=function(g){g=String(g),/[^\0-\xFF]/.test(g)&&s("The string to be encoded contains characters outside of the Latin1 range.");for(var f=g.length%3,y="",h=-1,m,w,O,E,N=g.length-f;++h<N;)m=g.charCodeAt(h)<<16,w=g.charCodeAt(++h)<<8,O=g.charCodeAt(++h),E=m+w+O,y+=a.charAt(E>>18&63)+a.charAt(E>>12&63)+a.charAt(E>>6&63)+a.charAt(E&63);return f==2?(m=g.charCodeAt(h)<<8,w=g.charCodeAt(++h),E=m+w,y+=a.charAt(E>>10)+a.charAt(E>>4&63)+a.charAt(E<<2&63)+"="):f==1&&(E=g.charCodeAt(h),y+=a.charAt(E>>2)+a.charAt(E<<4&63)+"=="),y},b={encode:d,decode:u,version:"1.0.0"};if(i&&!i.nodeType)if(o)o.exports=b;else for(var _ in b)b.hasOwnProperty(_)&&(i[_]=b[_]);else n.base64=b})(Ct)}(He,He.exports);var yn=He.exports;/*! js-cookie v3.0.5 | MIT */function Ke(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)e[i]=n[i]}return e}var rr={read:function(e){return e[0]==='"'&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function xt(e,t){function n(o,r,l){if(!(typeof document>"u")){l=Ke({},t,l),typeof l.expires=="number"&&(l.expires=new Date(Date.now()+l.expires*864e5)),l.expires&&(l.expires=l.expires.toUTCString()),o=encodeURIComponent(o).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var a in l)l[a]&&(s+="; "+a,l[a]!==!0&&(s+="="+l[a].split(";")[0]));return document.cookie=o+"="+e.write(r,o)+s}}function i(o){if(!(typeof document>"u"||arguments.length&&!o)){for(var r=document.cookie?document.cookie.split("; "):[],l={},s=0;s<r.length;s++){var a=r[s].split("="),c=a.slice(1).join("=");try{var u=decodeURIComponent(a[0]);if(l[u]=e.read(c,u),o===u)break}catch{}}return o?l[o]:l}}return Object.create({set:n,get:i,remove:function(o,r){n(o,"",Ke({},r,{expires:-1}))},withAttributes:function(o){return xt(this.converter,Ke({},this.attributes,o))},withConverter:function(o){return xt(Ke({},this.converter,o),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var ar=xt(rr,{path:"/"});let Ye;const sr=new Uint8Array(16);function lr(){if(!Ye&&(Ye=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Ye))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Ye(sr)}const M=[];for(let e=0;e<256;++e)M.push((e+256).toString(16).slice(1));function cr(e,t=0){return M[e[t+0]]+M[e[t+1]]+M[e[t+2]]+M[e[t+3]]+"-"+M[e[t+4]]+M[e[t+5]]+"-"+M[e[t+6]]+M[e[t+7]]+"-"+M[e[t+8]]+M[e[t+9]]+"-"+M[e[t+10]]+M[e[t+11]]+M[e[t+12]]+M[e[t+13]]+M[e[t+14]]+M[e[t+15]]}var hn={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function mn(e,t,n){if(hn.randomUUID&&!e)return hn.randomUUID();e=e||{};const i=e.random||(e.rng||lr)();return i[6]=i[6]&15|64,i[8]=i[8]&63|128,cr(i)}const qe=(e,t)=>!!Object.keys(t).includes(e.notice_key),fe=e=>!e||e===V.OPT_OUT?!1:e===V.OPT_IN?!0:e===V.ACKNOWLEDGE,Te=(e,t)=>e?t===B.NOTICE_ONLY?V.ACKNOWLEDGE:V.OPT_IN:V.OPT_OUT,Se=e=>typeof e=="string"?fe(e):e,wn=e=>e?e.split(",").map(t=>t.trim()).filter(Boolean):[],En=(e,t)=>e===void 0?!1:typeof e=="boolean"?e:t.globalPrivacyControl===!0?e.globalPrivacyControl:e.value,On=(e,t)=>e.consent_mechanism===B.NOTICE_ONLY?!0:t&&qe(e,t)?!!t[e.notice_key]:fe(e.default_preference);var Nt=(e=>(e.CONSENT="Consent",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(Nt||{});const dr=",",ur=[{experienceKey:"tcf_purpose_consents",tcfModelKey:"purposeConsents",enabledIdsKey:"purposesConsent"},{experienceKey:"tcf_purpose_legitimate_interests",tcfModelKey:"purposeLegitimateInterests",enabledIdsKey:"purposesLegint"},{experienceKey:"tcf_special_features",tcfModelKey:"specialFeatureOptins",enabledIdsKey:"specialFeatures"},{experienceKey:"tcf_vendor_consents",tcfModelKey:"vendorConsents",enabledIdsKey:"vendorsConsent"},{experienceKey:"tcf_vendor_legitimate_interests",tcfModelKey:"vendorLegitimateInterests",enabledIdsKey:"vendorsLegint"}],fr=[{cookieKey:"system_consent_preferences",experienceKey:"tcf_system_consents"},{cookieKey:"system_legitimate_interests_preferences",experienceKey:"tcf_system_legitimate_interests"}];ur.filter(({experienceKey:e})=>e!=="tcf_features"&&e!=="tcf_special_purposes").map(e=>e.experienceKey),Nt.CONSENT.toString(),Nt.LEGITIMATE_INTERESTS.toString();var pr=Object.defineProperty,_r=Object.defineProperties,vr=Object.getOwnPropertyDescriptors,kn=Object.getOwnPropertySymbols,gr=Object.prototype.hasOwnProperty,br=Object.prototype.propertyIsEnumerable,Pn=(e,t,n)=>t in e?pr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ve=(e,t)=>{for(var n in t||(t={}))gr.call(t,n)&&Pn(e,n,t[n]);if(kn)for(var n of kn(t))br.call(t,n)&&Pn(e,n,t[n]);return e},Ie=(e,t)=>_r(e,vr(t)),yr=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const At="fides_consent",Cn=365,We=ar.withConverter({read(e){return decodeURIComponent(e)},write(e){return encodeURIComponent(e)}}),Tt=e=>e?Object.values(e).some(t=>t!==void 0):!1,xn=()=>mn(),hr=xn(),Nn=e=>{var t;return!!!((t=e.fides_meta)!=null&&t.updatedAt)},An=e=>{const t=new Date;return{consent:e||{},identity:{fides_user_device_id:hr||xn()},fides_meta:{version:"0.9.0",createdAt:t.toISOString(),updatedAt:""},tcf_consent:{}}},Xe=e=>We.get(e),Oe=()=>{const e=Xe(At);if(e)try{return JSON.parse(e)}catch{try{return JSON.parse(yn.decode(e))}catch{return}}},Tn=(e,t=!1)=>{const n=An(e);if(typeof document>"u")return n;if(t)return document.cookie="fides_consent=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT",n;let i=Oe();if(i?.consent){const{consent:o}=i;Object.entries(o).forEach(([r,l])=>{o[r]=Se(l)})}if(!i)return n;try{"consent"in i&&"fides_meta"in i||(i=Ie(ve({},n),{consent:i}));const o=ve(ve({},e),i.consent);return i.consent=o,i}catch(o){return console.error("Unable to read consent cookie: invalid JSON.",o),n}},Sn=(e,t=!1)=>{if(typeof document>"u")return;const i=new Date().toISOString();e.fides_meta.updatedAt=i;let o=JSON.stringify(e);t&&(o=yn.encode(o));const r=window.location.hostname.split(".");let l="";for(let s=1;s<=r.length;s+=1)if(l=r.slice(-s).join("."),We.set(At,o,{path:"/",domain:l,expires:Cn})){const c=Oe();if(c&&c.fides_meta.updatedAt===e.fides_meta.updatedAt)break}},St=({experience:e,cookie:t})=>{var n;if(!e.privacy_notices)return e;const i=(n=e.privacy_notices)==null?void 0:n.map(r=>{const l=Object.keys(t.consent).includes(r.notice_key)?Te(!!t.consent[r.notice_key],r.consent_mechanism):void 0;return Ie(ve({},r),{current_preference:l})});return Ie(ve({},e),{privacy_notices:i})},mr=e=>{const t={};return fr.forEach(({cookieKey:n})=>{var i;const o=(i=e[n])!=null?i:[];t[n]=Object.fromEntries(o.map(r=>[r.id,fe(r.preference)]))}),t},In=(e,t)=>{const n={};return e?.options.forEach(({cookieKeys:i,default:o})=>{if(o===void 0)return;const r=En(o,t);i.forEach(l=>{const s=n[l];if(s===void 0){n[l]=r;return}n[l]=s&&r})}),n},Ln=(e,t=!0)=>{e.forEach(n=>{var i;if(We.remove(n.name,{path:(i=n.path)!=null?i:"/",domain:n.domain}),t){const{hostname:o}=window.location;We.remove(n.name,{domain:`.${o}`})}})},$n=e=>{const t=new Map(e.map(({notice:n,consentPreference:i})=>[n.notice_key,fe(i)]));return Object.fromEntries(t)},Fn=(e,t)=>yr(void 0,null,function*(){return Ie(ve({},e),{consent:$n(t)})}),wr=e=>{const t={};return e.privacy_notices&&e.privacy_notices.forEach(n=>{n.current_preference?t[n.notice_key]=fe(n.current_preference):n.default_preference&&(t[n.notice_key]=fe(n.default_preference))}),t},jn=({cookie:e,experience:t})=>{const n=wr(t);return Ie(ve({},e),{consent:n})};var Er=Object.defineProperty,Or=(e,t,n)=>t in e?Er(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Dn=(e,t,n)=>Or(e,typeof t!="symbol"?t+"":t,n);class kr{constructor(){Dn(this,"cookieName","OptanonConsent"),Dn(this,"migrationMethod",I.OT_MIGRATION)}getConsentCookie(){return Xe(this.cookieName)}convertToFidesConsent(t,n){if(n.otFidesMapping)try{const o=decodeURIComponent(n.otFidesMapping).replace(/^'|'$/g,""),r=JSON.parse(o),l=this.parseCookieValue(t,r);return l}catch{return}}parseCookieValue(t,n){const i={},o=t.match(/groups=([^&]*)/);return!o||!o[1]||o[1].split(",").forEach(s=>{const[a,c]=s.split(":");n[a]&&n[a].forEach(u=>{const d=c==="1";i[u]===void 0&&(i[u]=d)})}),i}}var Rn=(e=>(e.ONETRUST="onetrust",e))(Rn||{});const It=new Map;function Pr(e,t){It.set(e,t)}function Cr(e){e.otFidesMapping&&Pr(Rn.ONETRUST,new kr)}function zn(e){let t,n;if(Array.from(It).some(([o,r])=>{const l=r.getConsentCookie();if(!l)return!1;const s=r.convertToFidesConsent(l,e);return s?(t=s,n=o,!0):!1}),!n)return{consent:void 0,method:void 0};const i=It.get(n);return{consent:t,method:i.migrationMethod}}const xr=e=>{typeof window<"u"&&!window.fidesDebugger?window.fidesDebugger=e?console.log:()=>{}:globalThis.fidesDebugger=()=>{}},H="en",Ze="Manage preferences",Je=/^([A-Za-z]{2,3})(?:(?:[_-]([A-Za-z0-9]{2,4}))?$|(?:(?:[_-]\w+)+))/,Nr=/^(?:([a-z]{2})(-[a-z0-9]{1,3})?|(eea))$/i,Ar=[{overrideName:"fidesEmbed",overrideType:"boolean",overrideKey:"fides_embed",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableSaveApi",overrideType:"boolean",overrideKey:"fides_disable_save_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableNoticesServedApi",overrideType:"boolean",overrideKey:"fides_disable_notices_served_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableBanner",overrideType:"boolean",overrideKey:"fides_disable_banner",validationRegex:/^(true|false)$/},{overrideName:"fidesString",overrideType:"string",overrideKey:"fides_string",validationRegex:/(.*)/},{overrideName:"fidesTcfGdprApplies",overrideType:"boolean",overrideKey:"fides_tcf_gdpr_applies",validationRegex:/^(true|false)$/},{overrideName:"fidesLocale",overrideType:"string",overrideKey:"fides_locale",validationRegex:Je},{overrideName:"fidesPrimaryColor",overrideType:"string",overrideKey:"fides_primary_color",validationRegex:/(.*)/},{overrideName:"fidesClearCookie",overrideType:"string",overrideKey:"fides_clear_cookie",validationRegex:/(.*)/},{overrideName:"fidesConsentOverride",overrideType:"string",overrideKey:"fides_consent_override",validationRegex:/^(accept|reject)$/},{overrideName:"otFidesMapping",overrideType:"string",overrideKey:"ot_fides_mapping",validationRegex:/(.*)/},{overrideName:"fidesDisabledNotices",overrideType:"array",overrideKey:"fides_disabled_notices",validationRegex:/(.*)/,transform:wn},{overrideName:"fidesConsentNonApplicableFlagMode",overrideType:"string",overrideKey:"fides_consent_non_applicable_flag_mode",validationRegex:/^(omit|include)$/},{overrideName:"fidesConsentFlagType",overrideType:"string",overrideKey:"fides_consent_flag_type",validationRegex:/^(boolean|consent_mechanism)$/},{overrideName:"fidesInitializedEventMode",overrideType:"string",overrideKey:"fides_initialized_event_mode",validationRegex:/^(multiple|once|disable)$/},{overrideName:"fidesModalDefaultView",overrideType:"string",overrideKey:"fides_modal_default_view",validationRegex:/^\/tcf\/(purposes|features|vendors)$/},{overrideName:"fidesModalDisplay",overrideType:"string",overrideKey:"fides_modal_display",validationRegex:/^(immediate|default)$/}],Tr=[{overrideName:"title",overrideType:"string",overrideKey:"fides_title",validationRegex:/(.*)/},{overrideName:"description",overrideType:"string",overrideKey:"fides_description",validationRegex:/(.*)/},{overrideName:"privacy_policy_url",overrideType:"string",overrideKey:"fides_privacy_policy_url",validationRegex:/(.*)/},{overrideName:"override_language",overrideType:"string",overrideKey:"fides_override_language",validationRegex:Je}],Sr="fides-overlay-wrapper",Ir="fides-i18n-icon",Lt=["marketing","data_sales","data_sales_and_sharing","data_sales_sharing_gpp_us_state","data_sharing_gpp_us_state","data_sales_gpp_us_state","targeted_advertising_gpp_us_state","sales_sharing_targeted_advertising_gpp_us_national","sales_sharing_targeted_advertising"];var Lr=Object.defineProperty,$r=Object.defineProperties,Fr=Object.getOwnPropertyDescriptors,Mn=Object.getOwnPropertySymbols,jr=Object.prototype.hasOwnProperty,Dr=Object.prototype.propertyIsEnumerable,Un=(e,t,n)=>t in e?Lr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Qe=(e,t)=>{for(var n in t||(t={}))jr.call(t,n)&&Un(e,n,t[n]);if(Mn)for(var n of Mn(t))Dr.call(t,n)&&Un(e,n,t[n]);return e},Rr=(e,t)=>$r(e,Fr(t));const ke=e=>!e||typeof e!="object"?!1:Object.keys(e).length===0||"id"in e,zr=e=>!!(e&&e.every(t=>t.default_preference===V.OPT_IN)),et=e=>{if(e){if(e.location&&Nr.test(e.location))return e.location.replace("-","_").toLowerCase();if(e.country&&e.region)return`${e.country.toLowerCase()}_${e.region.toLowerCase()}`}},Gn=e=>{if(typeof e!="object"||!e.fidesApiUrl||!e.privacyCenterUrl)return!1;try{new URL(e.privacyCenterUrl),new URL(e.fidesApiUrl)}catch{return!1}return!0},Bn=e=>{switch(e){case Ee.OPTIONS:return Ar;case Ee.EXPERIENCE_TRANSLATION:return Tr;default:return null}},Vn=e=>{if(!ke(e))return!1;const t=e.experience_config;return!(!t||!(t.component===U.MODAL||t.component===U.BANNER_AND_MODAL||t.component===U.TCF_OVERLAY||t.component===U.HEADLESS)||t.component===U.BANNER_AND_MODAL&&!(e.privacy_notices&&e.privacy_notices.length>0))},tt=e=>e.fidesConsentOverride===I.ACCEPT||e.fidesConsentOverride===I.REJECT,Mr=e=>{var t;return(t=e.default_preference)!=null?t:V.OPT_OUT},nt=(e,t,n,i)=>{var o,r,l,s,a,c;return i?.fidesDisableBanner||!ke(e)||i.fidesModalDisplay==="immediate"?!1:((o=e.experience_config)==null?void 0:o.component)===U.TCF_OVERLAY&&t?i&&tt(i)?!1:(r=e.meta)!=null&&r.version_hash?e.meta.version_hash!==t.tcf_version_hash:!0:((l=e.experience_config)==null?void 0:l.component)===U.MODAL||((s=e.experience_config)==null?void 0:s.component)===U.HEADLESS||!((a=e?.privacy_notices)!=null&&a.length)?!1:n?i&&tt(i)?!1:t?.fides_meta.consentMethod===I.GPC?!0:!((c=e.privacy_notices)==null?void 0:c.every(d=>qe(d,n))):!0},Hn=e=>{e[0]==="window"&&e.shift();let t=window;for(;e.length>0;){const n=e.shift();if(typeof n>"u"||typeof t[n]!="object")return;t=t[n]}return t},Kn=({value:e,notice:t,consentContext:n})=>!n.globalPrivacyControl||!t.has_gpc_flag||t.consent_mechanism===B.NOTICE_ONLY?oe.NONE:e?oe.OVERRIDDEN:oe.APPLIED,$t=()=>{},Ur=(e,t)=>e.map(n=>{var i;const o=Te(t.includes(n.notice.notice_key),n.notice.consent_mechanism);return new kt(n.notice,o,(i=n.bestTranslation)==null?void 0:i.privacy_notice_history_id)}),Yn=e=>{try{const t=JSON.stringify(e);return btoa(t.replace(/\s/g,""))}catch(t){throw new Error("Failed to encode Notice Consent string:",{cause:t})}},it=e=>{if(!e)return{};try{const t=atob(e),n=JSON.parse(t);return Object.fromEntries(Object.entries(n).map(([i,o])=>[i,!!o]))}catch(t){throw new Error("Failed to decode Notice Consent string:",{cause:t})}},Gr=({consent:e,nonApplicableNotices:t,flagType:n,mode:i=we.OMIT})=>{if(!t?.length)return e;const o=Qe({},e);return i===we.INCLUDE?t.forEach(r=>{o[r]=n===de.CONSENT_MECHANISM?V.NOT_APPLICABLE:!0}):t.forEach(r=>{delete o[r]}),o},Br=({consent:e,flagType:t=de.BOOLEAN,consentMechanisms:n})=>{const i={};if(t!==de.CONSENT_MECHANISM)return Object.fromEntries(Object.entries(e).map(([r,l])=>[r,Se(l)]));const o=Object.values(e).some(r=>typeof r=="boolean");if(o&&!n)throw new Error("Cannot transform boolean consent values to consent mechanisms without consent mechanisms map");return o?(Object.keys(e).forEach(r=>{const l=e[r];if(typeof l=="string")i[r]=l;else{const s=n[r];i[r]=Te(l,s)}}),i):Qe({},e)},Le=(e,t,n=[],i,o)=>{var r,l,s;const a=Qe({},e),c=(r=window.Fides)==null?void 0:r.options,u=(l=o??c?.fidesConsentNonApplicableFlagMode)!=null?l:we.OMIT,d=(s=i??c?.fidesConsentFlagType)!=null?s:de.BOOLEAN,b={};Object.assign(b,Gr({consent:{},nonApplicableNotices:t??[],flagType:d,mode:u}));const _=n.reduce((g,f)=>Rr(Qe({},g),{[f.notice_key]:f.consent_mechanism}),{});return Object.assign(b,Br({consent:a,consentMechanisms:_,flagType:d})),b},Vr=e=>{const t=e.split("~")[0];return!!(t&&["1","2"].includes(t)&&e?.match(t==="1"?/\d~[0-9.]*$/:/\d~[0-9.]*~dv.[0-9.]*$/))},Ft=(e,t,n)=>new Proxy(e,{get(i,o){if(i[o.toString()]===void 0){const r=t.fidesConsentFlagType===de.CONSENT_MECHANISM;return!n&&o.toString()==="essential"?r?B.NOTICE_ONLY:!0:r?B.OPT_OUT:!1}return i[o.toString()]}});var Hr=Object.defineProperty,Kr=Object.defineProperties,Yr=Object.getOwnPropertyDescriptors,qn=Object.getOwnPropertySymbols,qr=Object.prototype.hasOwnProperty,Wr=Object.prototype.propertyIsEnumerable,Wn=(e,t,n)=>t in e?Hr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,$e=(e,t)=>{for(var n in t||(t={}))qr.call(t,n)&&Wn(e,n,t[n]);if(qn)for(var n of qn(t))Wr.call(t,n)&&Wn(e,n,t[n]);return e},Xr=(e,t)=>Kr(e,Yr(t)),ge=(e=>(e.FIDES="fides",e.EXTERNAL="external",e))(ge||{}),Z=(e=>(e.TOGGLE="toggle",e.BUTTON="button",e.LINK="link",e))(Z||{});const re=(e,t,n)=>{var i,o,r,l,s,a,c,u;const d=t?$e({},t):void 0;if(typeof window<"u"&&typeof CustomEvent<"u"){const b=$e({consentMethod:d?.fides_meta.consentMethod},n);(i=n?.trigger)!=null&&i.origin||(b.trigger=$e($e({},b.trigger),{origin:"fides"}));const _=(o=performance?.mark)==null?void 0:o.call(performance,e),g=_?.startTime,f=d;f&&d?.consent&&(f.consent=Le(d.consent,(l=(r=window.Fides)==null?void 0:r.experience)==null?void 0:l.non_applicable_privacy_notices,(a=(s=window.Fides)==null?void 0:s.experience)==null?void 0:a.privacy_notices));const y=new CustomEvent(e,{detail:Xr($e({},f),{debug:!!((u=(c=window.Fides)==null?void 0:c.options)!=null&&u.debug),extraDetails:b,timestamp:g}),bubbles:!0});window.dispatchEvent(y)}},Xn=(e,t)=>{const n=i=>t(i.detail);return window.addEventListener(e,n),()=>{window.removeEventListener(e,n)}},Zn=(e,t)=>{var n,i;re("FidesConsentLoaded",e,t),((i=(n=window.Fides)==null?void 0:n.options)==null?void 0:i.fidesInitializedEventMode)==="multiple"&&re("FidesInitialized",e,t)},Jn=(e,t)=>{var n,i;re("FidesReady",e,t);const o=(i=(n=window.Fides)==null?void 0:n.options)==null?void 0:i.fidesInitializedEventMode;(o==="multiple"||o==="once")&&re("FidesInitialized",e,t)},jt=e=>{if(!e)return{tc:"",ac:"",gpp:"",nc:""};const[t="",n="",i="",o=""]=e.split(dr);return t?{tc:t,ac:n,gpp:i,nc:o}:{tc:"",ac:"",gpp:i,nc:o}},Zr=()=>typeof window.blueConicClient<"u"&&typeof window.blueConicClient.event<"u"&&typeof window.blueConicClient.event.subscribe<"u",ot=()=>{var e,t,n;if(!Zr()||!((e=window.blueConicClient)!=null&&e.profile))return;const i=(n=(t=window.blueConicClient)==null?void 0:t.profile)==null?void 0:n.getProfile(),{consent:o}=window.Fides,r=o!==void 0&&Object.entries(o).length>0,l=Lt.some(s=>o[s]);!r||l?(i.setConsentedObjectives(["iab_purpose_1","iab_purpose_2","iab_purpose_3","iab_purpose_4"]),i.setRefusedObjectives([])):(i.setConsentedObjectives(["iab_purpose_1"]),i.setRefusedObjectives(["iab_purpose_2","iab_purpose_3","iab_purpose_4"])),window.blueConicClient.profile.updateProfile()},Jr=({approach:e="onetrust"}={approach:"onetrust"})=>{if(e!=="onetrust")throw new Error("Unsupported approach");window.addEventListener("FidesReady",ot),window.addEventListener("FidesUpdated",ot),window.addEventListener("onBlueConicLoaded",ot),ot()},Qn=(e,t)=>{var n,i,o,r,l,s,a,c,u,d,b,_,g,f;const y=(n=window.dataLayer)!=null?n:[];window.dataLayer=y;const{detail:h,type:m}=e,{consent:w,extraDetails:O,fides_string:E,timestamp:N}=h;let $=w;const k=(l=(r=t?.flag_type)!=null?r:(o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesConsentFlagType)!=null?l:de.BOOLEAN,x=(u=(c=t?.non_applicable_flag_mode)!=null?c:(a=(s=window.Fides)==null?void 0:s.options)==null?void 0:a.fidesConsentNonApplicableFlagMode)!=null?u:we.OMIT,A=(_=(b=(d=window.Fides)==null?void 0:d.experience)==null?void 0:b.privacy_notices)!=null?_:[],S=(f=(g=window.Fides)==null?void 0:g.experience)==null?void 0:f.non_applicable_privacy_notices;$=Le(w,S,A,k,x);const X={consent:$,extraDetails:O,fides_string:E,timestamp:N};y.push({event:m,Fides:X})},Qr=e=>{var t,n;if(Object.entries({FidesInitializing:!1,FidesInitialized:!0,FidesConsentLoaded:!0,FidesReady:!0,FidesUpdating:!0,FidesUpdated:!0,FidesUIChanged:!0,FidesUIShown:!0,FidesModalClosed:!0}).filter(([,r])=>r).map(([r])=>r).forEach(r=>{window.addEventListener(r,l=>Qn(l,e))}),(t=window.Fides)!=null&&t.initialized){const{consent:r,fides_meta:l,identity:s,tcf_consent:a}=window.Fides,c=(n=performance?.getEntriesByName("FidesInitialized")[0])==null?void 0:n.startTime;Qn({type:"FidesInitialized",detail:{consent:r,fides_meta:l,identity:s,tcf_consent:a,timestamp:c,extraDetails:{consentMethod:l?.consentMethod}}},e)}},ea=()=>{if(window.fbq)return window.fbq;const e={queue:[],loaded:!0,version:"2.0",push(...t){const n=window.fbq;n.callMethod?n.callMethod(...t):n.queue.push(t)}};return window.fbq=Object.assign(e.push,e),window._fbq=window.fbq,window.fbq},ta=e=>{const t=ea();t("consent",e.consent?"grant":"revoke"),e.dataUse?t("dataProcessingOptions",[]):t("dataProcessingOptions",["LDU"],1,1e3)},na={marketing:Lt,sale_of_data:Lt,analytics:["analytics"],preferences:["functional"]};function ia(e,t){var n;const i=Object.fromEntries(Object.entries(e).map(([r,l])=>[r,Se(l)])),o={};return Object.entries(na).forEach(([r,l])=>{const s=l.some(c=>i[c]===!0),a=l.some(c=>i[c]===!1);s?o[r]=!0:a&&(o[r]=!1)}),o.sale_of_data===void 0&&(o.sale_of_data=(n=t?.sale_of_data_default)!=null?n:!1),o}const rt=(e,t)=>{window.Shopify.customerPrivacy.setTrackingConsent(ia(e,t),()=>{})},ei=e=>{var t,n;(t=window.Shopify)!=null&&t.customerPrivacy||console.error("Fides could not access Shopify's customerPrivacy API"),window.addEventListener("FidesReady",i=>rt(i.detail.consent,e)),window.addEventListener("FidesUpdating",i=>rt(i.detail.consent,e)),window.addEventListener("FidesUpdated",i=>rt(i.detail.consent,e)),(n=window.Fides)!=null&&n.initialized&&window.Fides.cookie&&rt(window.Fides.cookie.consent,e)},oa=e=>{let t,n;const i=()=>{clearTimeout(t),clearTimeout(n)},o=()=>{if(window.Shopify){if(i(),window.Shopify.customerPrivacy){ei(e);return}window.Shopify.loadFeatures([{name:"consent-tracking-api",version:"0.1"}],r=>{if(r)throw Error("Fides could not load Shopify's consent-tracking-api");ei(e)});return}n=setTimeout(o,200)};t=setTimeout(()=>{throw i(),Error("Fides.shopify was called but Shopify is not present in the page after 3 seconds.")},3e3),o()};var ra={"static.gpc":"\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.gpc.description":"\u062A\u0645 \u062A\u0637\u0628\u064A\u0642 \u062A\u0641\u0636\u064A\u0644\u0643 \u0644\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629. \u0644\u0642\u062F \u0623\u0644\u063A\u064A \u0627\u0634\u062A\u0631\u0627\u0643\u0643 \u062A\u0644\u0642\u0627\u0626\u064A\u064B\u0627 \u0641\u064A \u062D\u0627\u0644\u0627\u062A \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062A\u064A \u062A\u0644\u062A\u0632\u0645 \u0628\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629.","static.gpc.status.applied":"\u062A\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","static.gpc.status.overridden":"\u062A\u0645 \u0627\u0644\u062A\u062C\u0627\u0648\u0632","static.gpc.title":"\u062A\u0645 \u0627\u0643\u062A\u0634\u0627\u0641 \u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629"},aa={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438","static.gpc.description":"\u0412\u0430\u0448\u0435\u0442\u043E \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0438\u0442\u0430\u043D\u0438\u0435 \u0437\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438 \u0435 \u0437\u0430\u0447\u0435\u0442\u0435\u043D\u043E. \u0412\u0438\u0435 \u0441\u0442\u0435 \u0431\u0438\u043B\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u0438 \u043E\u0442 \u0441\u043B\u0443\u0447\u0430\u0438\u0442\u0435 \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u0434\u0430\u043D\u043D\u0438, \u043A\u043E\u0438\u0442\u043E \u0441\u0435 \u043E\u0442\u043D\u0430\u0441\u044F\u0442 \u043A\u044A\u043C \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u043E","static.gpc.status.overridden":"\u041F\u0440\u0435\u043C\u0430\u0445\u043D\u0430\u0442\u043E","static.gpc.title":"\u041E\u0442\u043A\u0440\u0438\u0442\u043E \u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438"},sa={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161 izbor globalne kontrole privatnosti je uva\u017Een. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Prihva\u0107ena","static.gpc.status.overridden":"Odbijena","static.gpc.title":"Otkrivena je Globalna kontrola privatnosti"},la={"static.gpc":"Control de privadesa global","static.gpc.description":"S\u2019ha respectat la vostra prefer\xE8ncia pel que fa al control de privadesa global. Se us ha excl\xF2s autom\xE0ticament dels casos d\u2019\xFAs de dades que s\u2019adhereixen al control de privadesa global.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Anul\xB7lat","static.gpc.title":"Control de privadesa global detectat"},ca={"static.gpc":"Glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F","static.gpc.description":"Byly dodr\u017Eeny va\u0161e glob\xE1ln\xED preference ochrany osobn\xEDch \xFAdaj\u016F. Automaticky jste byli vy\u0159azeni z pou\u017E\xEDv\xE1n\xED \xFAdaj\u016F v p\u0159\xEDpadech, na kter\xE9 se vztahuje glob\xE1ln\xED ochrana osobn\xEDch \xFAdaj\u016F.","static.gpc.status.applied":"Aplikov\xE1no","static.gpc.status.overridden":"P\u0159eps\xE1no","static.gpc.title":"Bylo zji\u0161t\u011Bna glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F"},da={"static.gpc":"Global fortrolighedskontrol","static.gpc.description":"Din pr\xE6ference i forbindelse med global fortrolighedskontrol er blevet efterkommet. Du er automatisk blevet frameldt tilf\xE6lde af databrug, der overholder global fortrolighedskontrol.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Tilsidesat","static.gpc.title":"Der blev p\xE5vist global fortrolighedskontrol"},ua={"static.gpc":"Globale Datenschutzeinstellungen","static.gpc.description":"Ihre globale Datenschutzeinstellungen werden ber\xFCcksichtigt. Sie wurden automatisch von Anwendungsf\xE4llen ausgenommen, die nicht Ihren globalen Datenschutzeinstellungen unterliegen.","static.gpc.status.applied":"Angewendet","static.gpc.status.overridden":"\xDCberschrieben","static.gpc.title":"Globale Datenschutzeinstellungen entdeckt"},fa={"static.gpc":"\u039A\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.gpc.description":"\u0397 \u03C0\u03C1\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03AE \u03C3\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B7\u03C1\u03B7\u03B8\u03B5\u03AF. \u0388\u03C7\u03B5\u03C4\u03B5 \u03B5\u03BE\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C0\u03B5\u03C1\u03B9\u03C0\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03BF\u03C1\u03C6\u03CE\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5.","static.gpc.status.applied":"\u0395\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03C4\u03B7\u03BA\u03B5","static.gpc.status.overridden":"\u03A0\u03B1\u03C1\u03B1\u03BA\u03AC\u03BC\u03C6\u03B8\u03B7\u03BA\u03B5","static.gpc.title":"\u0395\u03BD\u03C4\u03BF\u03C0\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5"},pa={"static.gpc":"Global Privacy Control","static.gpc.description":"Your global privacy control preference has been honored. You have been automatically opted out of data use cases which adhere to global privacy control.","static.gpc.status.applied":"Applied","static.gpc.status.overridden":"Overridden","static.gpc.title":"Global Privacy Control detected"},_a={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le ha excluido autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado"},va={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le excluy\xF3 autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado"},ga={"static.gpc":"\xDCldine andmekaitsekontroll","static.gpc.description":"Teie \xFCldist andmekaitse-eelistust on arvestatud. Teid on automaatselt v\xE4lja arvatud andmete kasutamise juhtudest, mis j\xE4rgivad \xFCldist andmekaitsekontrolli.","static.gpc.status.applied":"Rakendatud","static.gpc.status.overridden":"T\xFChistatud","static.gpc.title":"Tuvastatud \xFCldine andmekaitsekontroll"},ba={"static.gpc":"Pribatutasun-kontrol globala","static.gpc.description":"Pribatutasun-kontrol globalaren lehentasuna bete da. Pribatutasun-kontrol globalari atxikitzen zaizkion datuen erabileren kasuetatik automatikoki baztertua izan zara.","static.gpc.status.applied":"Ezarrita","static.gpc.status.overridden":"Baliogabetuta","static.gpc.title":"Pribatutasun-kontrol globala antzeman da"},ya={"static.gpc":"Maailmanlaajunen tietosuojavalvonta","static.gpc.description":"Maailmanlaajuinen tietosuojavalvontanne on vahvistettu. Teid\xE4t on automaattisesti poistettu tietojen k\xE4ytt\xF6tapauksista, jotka noudattavat maailmanlaajuista tietosuojavalvontaa.","static.gpc.status.applied":"K\xE4yt\xF6ss\xE4","static.gpc.status.overridden":"Ohitettu","static.gpc.title":"Maailmanlaajuinen tietosuojavalvonta havaittu"},ha={"static.gpc":"Global Privacy Control","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le global de la confidentialit\xE9 (GPC) a \xE9t\xE9 respect\xE9e. Vous avez automatiquement \xE9t\xE9 retir\xE9 des cas d\u2019usage des donn\xE9es qui adh\xE8rent au GPC.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Ignor\xE9","static.gpc.title":"Global Privacy Control (GPC) d\xE9tect\xE9"},ma={"static.gpc":"Contr\xF4le mondial de confidentialit\xE9","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le mondial de confidentialit\xE9 a \xE9t\xE9 honor\xE9e. Vous avez \xE9t\xE9 automatiquement \xE9cart\xE9 des cas d'utilisation de donn\xE9es qui adh\xE8rent au contr\xF4le mondial de confidentialit\xE9.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Annul\xE9","static.gpc.title":"Contr\xF4le mondial de confidentialit\xE9 d\xE9tect\xE9"},wa={"static.gpc":"Control de privacidade global","static.gpc.description":"Respetouse a s\xFAa preferencia de control de privacidade global. Foi automaticamente exclu\xEDdo dos casos de uso de datos que cumpren o control de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidade global detectado"},Ea={"static.gpc":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923","static.gpc.description":"\u0906\u092A\u0915\u0940 \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0935\u0930\u0940\u092F\u0924\u093E\u0913\u0902 \u0915\u093E \u0938\u092E\u094D\u092E\u093E\u0928 \u0915\u093F\u092F\u093E \u0917\u092F\u093E\u0964 \u0906\u092A\u0915\u094B \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u093E\u0932\u0928 \u0915\u0930\u0928\u0947 \u0935\u093E\u0932\u0947 \u0921\u0947\u091F\u093E \u0909\u092A\u092F\u094B\u0917 \u092E\u093E\u092E\u0932\u094B\u0902 \u0938\u0947 \u0938\u094D\u0935\u091A\u093E\u0932\u093F\u0924 \u0930\u0942\u092A \u0938\u0947 \u092C\u093E\u0939\u0930 \u0915\u0930 \u0926\u093F\u092F\u093E \u0917\u092F\u093E \u0939\u0948\u0964","static.gpc.status.applied":"\u0932\u093E\u0917\u0942 \u0915\u093F\u092F\u093E","static.gpc.status.overridden":"\u0913\u0935\u0930\u0930\u093E\u0907\u0921 \u0915\u093F\u092F\u093E","static.gpc.title":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u0924\u093E \u091A\u0932\u093E"},Oa={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Po\u0161tuju se va\u0161e preferencije globalne kontrole privatnosti. Automatski se isklju\u010Deni iz slu\u010Dajeve kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Primijenjeno","static.gpc.status.overridden":"Premo\u0161\u0107eno","static.gpc.title":"Primije\u0107ena je Globalna kontrola privatnosti (Global Privacy Control)"},ka={"static.gpc":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s","static.gpc.description":"A glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1ssal kapcsolatos be\xE1ll\xEDt\xE1sai el lettek fogadva. Automatikusan kiker\xFClt azokb\xF3l az adatfelhaszn\xE1l\xE1si esetekb\u0151l, amelyek a glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1shoz tartoznak.","static.gpc.status.applied":"Alkalmazva","static.gpc.status.overridden":"Fel\xFCl\xEDrva","static.gpc.title":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s \xE9szlelve"},Pa={"static.gpc":"Controllo Globale della Privacy","static.gpc.description":"Le tue preferenze del Controllo Globale della Privacy sono state prese in carico. Sei stato automaticamente escluso dai casi di utilizzo dei dati che corrispondono al Controllo Globale della Privacy.","static.gpc.status.applied":"Applicato","static.gpc.status.overridden":"Non applicato","static.gpc.title":"Controllo Globale della Privacy rilevato"},Ca={"static.gpc":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB","static.gpc.description":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u8A2D\u5B9A\u306F\u5C0A\u91CD\u3055\u308C\u307E\u3059\u3002\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306B\u5F93\u3046\u30C7\u30FC\u30BF\u306E\u30E6\u30FC\u30B9\u30B1\u30FC\u30B9\u304B\u3089\u306F\u81EA\u52D5\u7684\u306B\u30AA\u30D7\u30C8\u30A2\u30A6\u30C8\u3055\u308C\u3066\u3044\u307E\u3059\u3002","static.gpc.status.applied":"\u9069\u7528","static.gpc.status.overridden":"\u5909\u66F4","static.gpc.title":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u3092\u691C\u51FA\u3057\u307E\u3057\u305F"},xa={"static.gpc":"Visuotin\u0117 privatumo kontrol\u0117","static.gpc.description":"Buvo atsi\u017Evelgta \u012F j\u016Bs\u0173 visuotin\u0117s privatumo kontrol\u0117s pageidavim\u0105. Buvote automati\u0161kai at\u0161auktas i\u0161 duomen\u0173 naudojimo atvej\u0173, kai laikomasi visuotin\u0117s privatumo kontrol\u0117s.","static.gpc.status.applied":"Taikoma","static.gpc.status.overridden":"Nebegaliojantis","static.gpc.title":"Aptikta visuotin\u0117 privatumo kontrol\u0117"},Na={"static.gpc":"Glob\u0101l\u0101 priv\u0101tuma kontrole","static.gpc.description":"M\u0113s esam izpild\u012Bju\u0161i j\u016Bsu pras\u012Bbu kontrol\u0113t glob\u0101lo priv\u0101tumu. P\u0113c noklus\u0113juma esat no\u0146emts no datu lietojuma pieteikumiem, kas atbilst glob\u0101lajai priv\u0101tuma kontrolei.","static.gpc.status.applied":"Pielietots","static.gpc.status.overridden":"Ignor\u0113ts","static.gpc.title":"Konstat\u0113ta glob\u0101l\u0101 priv\u0101tuma kontrole"},Aa={"static.gpc":"Kontroll Globali tal-Privatezza","static.gpc.description":"Il-preferenza globali tieg\u0127ek g\u0127all-kontroll tal-privatezza \u0121iet onorata. Inti awtomatikament g\u0127a\u017Cilt li ma tibqax tu\u017Ca d-dejta f'ka\u017Cijiet li jirrispettaw il-kontroll globali tal-privatezza.","static.gpc.status.applied":"Applikat","static.gpc.status.overridden":"Maqbu\u017Ca","static.gpc.title":"Instab il-Kontroll Globali tal-Privatezza"},Ta={"static.gpc":"Global Privacy Control","static.gpc.description":"Uw Global Privacy Control-voorkeur wordt gerespecteerd. U bent automatisch afgemeld voor gegevensgebruiksscenario's die zich houden aan Global Privacy Control.","static.gpc.status.applied":"Toegepast","static.gpc.status.overridden":"Genegeerd","static.gpc.title":"Global Privacy Control gedetecteerd"},Sa={"static.gpc":"Globale personverninnstillinger","static.gpc.description":"Preferansene dine vedr\xF8rende de globale personverninnstilingene dine er godtatt. Du har automatisk takket nei til databruksaker som f\xF8lger globale personverninnstillinger.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Overstyrt","static.gpc.title":"Globale personverninnstillinger er oppdaget"},Ia={"static.gpc":"Og\xF3lna kontrola prywatno\u015Bci","static.gpc.description":"Twoja preferencja dotycz\u0105ca og\xF3lnej kontroli prywatno\u015Bci zosta\u0142a uwzgl\u0119dniona. Automatycznie odm\xF3wiono zgody na Twoje przypadki wykorzystania danych, kt\xF3re s\u0105 zgodne z Og\xF3ln\u0105 kontrol\u0105 prywatno\u015Bci.","static.gpc.status.applied":"Zastosowano","static.gpc.status.overridden":"Nadpisano","static.gpc.title":"Wykryta Og\xF3lna kontrola prywatno\u015Bci"},La={"static.gpc":"Controle de Privacidade Global","static.gpc.description":"Sua prefer\xEAncia global de controle de privacidade foi respeitada. Voc\xEA foi automaticamente removido dos casos de uso de dados que aderem ao controle de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controle de Privacidade Global detectado"},$a={"static.gpc":"Controlo de Privacidade Global","static.gpc.description":"A sua prefer\xEAncia de controlo de privacidade global foi honrada. Foi automaticamente exclu\xEDdo/a dos casos de utiliza\xE7\xE3o de dados que aderem ao controlo de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controlo de Privacidade Global detetado"},Fa={"static.gpc":"Control global al confiden\u021Bialit\u0103\u021Bii","static.gpc.description":"Preferin\u021Ba dvs. de control global al confiden\u021Bialit\u0103\u021Bii a fost onorat\u0103. A\u021Bi fost exclus(\u0103) automat de la cazurile de utilizare a datelor care respect\u0103 controlul global al confiden\u021Bialit\u0103\u021Bii.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Suprascris","static.gpc.title":"A fost detectat un control global al confiden\u021Bialit\u0103\u021Bii"},ja={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Global Privacy Control \u0443\u0447\u0442\u0435\u043D\u0430. \u0412\u044B \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0435\u0441\u044C \u0432 \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u044F\u0445, \u0433\u0434\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F Global Privacy Control.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.status.overridden":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.title":"\u041E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435 Global Privacy Control"},Da={"static.gpc":"Glob\xE1lna kontrola s\xFAkromia","static.gpc.description":"Va\u0161a predvo\u013Eba pre glob\xE1lnu kontrolu s\xFAkromia bola dodr\u017Ean\xE1. Pre pr\xEDpady pou\u017Eitia, kde sa pou\u017E\xEDva glob\xE1lna kontrola s\xFAkromia, v\xE1m bol automaticky nastaven\xFD explicitn\xFD nes\xFAhlas.","static.gpc.status.applied":"Pou\u017Eit\xE1","static.gpc.status.overridden":"Prep\xEDsan\xE1","static.gpc.title":"Bola zisten\xE1 Glob\xE1lna kontrola s\xFAkromia"},Ra={"static.gpc":"Global Privacy Control","static.gpc.description":"Va\u0161a nastavitev globalnega nadzora zasebnosti je bila upo\u0161tevana. Samodejno je bilo preklicano va\u0161e soglasje za tiste primere uporabe podatkov, ki se ravnajo po globalnem nadzoru zasebnosti.","static.gpc.status.applied":"Uporabljeno","static.gpc.status.overridden":"Pregla\u0161eno","static.gpc.title":"Zaznan globalni nadzor zasebnosti \xBBGlobal Privacy Control\xAB"},za={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438 \u0458\u0435 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0430. \u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0442\u0435 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0438 \u0438\u0437 \u0441\u043B\u0443\u0447\u0430\u0458\u0435\u0432\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0441\u043A\u043B\u0430\u0434\u0443 \u0441\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u043C \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043E\u043C \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.status.overridden":"\u0417\u0430\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.title":"Global Privacy Control \u043E\u0442\u043A\u0440\u0438\u0432\u0435\u043D"},Ma={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161a globalna postavka kontrole privatnosti se po\u0161tuje. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161c\u0301enja podataka koji podle\u017Eu globalnoj kontroli privatnosti.","static.gpc.status.applied":"Primenjeno","static.gpc.status.overridden":"Zaobi\u0111eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti"},Ua={"static.gpc":"Global integritetskontroll","static.gpc.description":"Dina preferenser f\xF6r global integritetskontroll har efterf\xF6ljts. Du har automatiskt valt bort anv\xE4ndningsfall f\xF6r uppgifter som efterf\xF6ljer global integritetskontroll.","static.gpc.status.applied":"Till\xE4mpad","static.gpc.status.overridden":"\xC5sidosatt","static.gpc.title":"Global integritetskontroll uppt\xE4cktes"},Ga={"static.gpc":"Global Gizlilik Kontrol\xFC","static.gpc.description":"Global gizlilik kontrol\xFC tercihiniz yerine getirildi. Global gizlilik kontrol\xFCne uygun veri kullan\u0131m durumlar\u0131ndan otomatik olarak \xE7\u0131kar\u0131ld\u0131n\u0131z.","static.gpc.status.applied":"Uyguland\u0131","static.gpc.status.overridden":"Ge\xE7ersiz k\u0131l\u0131nd\u0131","static.gpc.title":"Global Gizlilik Kontrol\xFC tespit edildi"},Ba={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.gpc.description":"\u0412\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 \u0432\u0440\u0430\u0445\u043E\u0432\u0430\u043D\u043E. \u0412\u0430\u0441 \u0431\u0443\u043B\u043E \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0432\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u043E \u0437 \u0432\u0438\u043F\u0430\u0434\u043A\u0456\u0432 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0456 \u0434\u043E\u0442\u0440\u0438\u043C\u0443\u044E\u0442\u044C\u0441\u044F \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456.","static.gpc.status.applied":"\u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0430\u043D\u043E","static.gpc.status.overridden":"\u041F\u0435\u0440\u0435\u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E","static.gpc.title":"\u0412\u0438\u044F\u0432\u043B\u0435\u043D\u043E \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456"},Va={"static.gpc":"\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u5C40\u9690\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u5F97\u5230\u5C0A\u91CD\u3002\u60A8\u5DF2\u81EA\u52A8\u9009\u62E9\u9000\u51FA\u7B26\u5408\u5168\u5C40\u9690\u79C1\u63A7\u5236\u7684\u6570\u636E\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u5E94\u7528","static.gpc.status.overridden":"\u88AB\u8986\u76D6","static.gpc.title":"\u68C0\u6D4B\u5230\u5168\u5C40\u9690\u79C1\u63A7\u5236"},Ha={"static.gpc":"\u5168\u57DF\u96B1\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u88AB\u63A5\u53D7\u3002\u6839\u64DA\u60A8\u7684\u9078\u64C7\xB7\uFF0C\u5DF2\u81EA\u52D5\u5C07\u60A8\u9000\u51FA\u7B26\u5408\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u7684\u8CC7\u6599\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u61C9\u7528","static.gpc.status.overridden":"\u5DF2\u8986\u5BEB","static.gpc.title":"\u6AA2\u6E2C\u5230\u5168\u57DF\u96B1\u79C1\u63A7\u5236"};const Dt={ar:ra,bg:aa,bs:sa,ca:la,cs:ca,da,de:ua,el:fa,en:pa,es:_a,"es-MX":va,et:ga,eu:ba,fi:ya,fr:ha,"fr-CA":ma,gl:wa,"hi-IN":Ea,hr:Oa,hu:ka,it:Pa,ja:Ca,lt:xa,lv:Na,mt:Aa,nl:Ta,no:Sa,pl:Ia,"pt-BR":La,"pt-PT":$a,ro:Fa,ru:ja,sk:Da,sl:Ra,"sr-Cyrl":za,"sr-Latn":Ma,sv:Ua,tr:Ga,uk:Ba,zh:Va,"zh-Hant":Ha},Ka=[{locale:"ar",label_en:"Arabic",label_original:"\u0627\u0644\u0639\u064E\u0631\u064E\u0628\u0650\u064A\u064E\u0651\u0629"},{locale:"bg",label_en:"Bulgarian",label_original:"\u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u0435\u0437\u0438\u043A"},{locale:"bs",label_en:"Bosnian",label_original:"Bosanski Jezik"},{locale:"ca",label_en:"Catalan",label_original:"catal\xE0"},{locale:"cs",label_en:"Czech",label_original:"\u010Desk\xFD jazyk"},{locale:"da",label_en:"Danish",label_original:"Dansk"},{locale:"de",label_en:"German",label_original:"Deutsch"},{locale:"el",label_en:"Greek",label_original:"\u03B5\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"},{locale:"en",label_en:"English",label_original:"English"},{locale:"es",label_en:"Spanish",label_original:"Espa\xF1ol"},{locale:"es-MX",label_en:"Spanish (Mexico)",label_original:"Espa\xF1ol - MX"},{locale:"et",label_en:"Estonian",label_original:"Eesti"},{locale:"eu",label_en:"Basque",label_original:"euskara"},{locale:"fi",label_en:"Finnish",label_original:"Suomi"},{locale:"fr",label_en:"French",label_original:"Fran\xE7ais"},{locale:"fr-CA",label_en:"French (Canada)",label_original:"Fran\xE7ais - CA"},{locale:"gl",label_en:"Galician",label_original:"Galego"},{locale:"hi-IN",label_en:"Hindi (India)",label_original:"\u0939\u093F\u0928\u094D\u0926\u0940"},{locale:"hr",label_en:"Croatian",label_original:"Hrvatski Jezik"},{locale:"hu",label_en:"Hungarian",label_original:"magyar"},{locale:"it",label_en:"Italian",label_original:"Italiano"},{locale:"ja",label_en:"Japanese",label_original:"\u65E5\u672C\u8A9E"},{locale:"lt",label_en:"Lithuanian",label_original:"lietuvi\u0173 kalba"},{locale:"lv",label_en:"Latvian",label_original:"latvie\u0161u valoda"},{locale:"mt",label_en:"Maltese",label_original:"Malti"},{locale:"nl",label_en:"Dutch",label_original:"Nederlands"},{locale:"no",label_en:"Norwegian",label_original:"Norsk"},{locale:"pl",label_en:"Polish",label_original:"Polski"},{locale:"pt-BR",label_en:"Portuguese (Brazil)",label_original:"Portugu\xEAs - BR"},{locale:"pt-PT",label_en:"Portuguese (Portugal)",label_original:"Portugu\xEAs - PT"},{locale:"ro",label_en:"Romanian",label_original:"limba rom\xE2n\u0103"},{locale:"ru",label_en:"Russian",label_original:"\u0440\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"},{locale:"sk",label_en:"Slovak",label_original:"sloven\u010Dina"},{locale:"sl",label_en:"Slovenian",label_original:"Slovenski Jezik"},{locale:"sr-Cyrl",label_en:"Serbian (Cyrillic)",label_original:"\u0441\u0440\u043F\u0441\u043A\u0438"},{locale:"sr-Latn",label_en:"Serbian (Latin)",label_original:"Srpski"},{locale:"sv",label_en:"Swedish",label_original:"Sverige"},{locale:"tr",label_en:"Turkish",label_original:"T\xFCrk\xE7e"},{locale:"uk",label_en:"Ukrainian",label_original:"\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 \u043C\u043E\u0432\u0430"},{locale:"zh",label_en:"Chinese (Simplified)",label_original:"\u7B80\u4F53\u4E2D\u6587"},{locale:"zh-Hant",label_en:"Chinese (Traditional)",label_original:"\u7E41\u9AD4\u4E2D\u6587"}];var Ya=Object.defineProperty,ti=Object.getOwnPropertySymbols,qa=Object.prototype.hasOwnProperty,Wa=Object.prototype.propertyIsEnumerable,ni=(e,t,n)=>t in e?Ya(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,te=(e,t)=>{for(var n in t||(t={}))qa.call(t,n)&&ni(e,n,t[n]);if(ti)for(var n of ti(t))Wa.call(t,n)&&ni(e,n,t[n]);return e};function ne(e,t){return e.toLowerCase().replaceAll("_","-")===t.toLowerCase().replaceAll("_","-")}function Xa(e,t){const n={},i=["accept_button_label","acknowledge_button_label","banner_description","banner_title","description","purpose_header","privacy_policy_link_label","privacy_policy_url","privacy_preferences_link_label","reject_button_label","save_button_label","title","modal_link_label"];if(e.translations)e.translations.forEach(o=>{const r=o.language;let l=!1;t?.override_language&&(l=ne(t.override_language,r));const s={};i.forEach(a=>{let c=null;t&&(l||a==="privacy_policy_url")&&(c=a in t?t[a]:null);const b=o[a];typeof b=="string"&&(s[`exp.${a}`]=c||b)}),n[r]=te(te({},s),n[r])});else{const o=H,r={};i.forEach(l=>{const s=e[l];typeof s=="string"&&(r[`exp.${l}`]=s)}),n[o]=te(te({},r),n[o])}return n}function Rt(e){var t;if((t=e?.experience_config)!=null&&t.translations){const{translations:n}=e.experience_config,i=n.find(o=>o.is_default);return i?.language}}function ii(e,t){const n={};return t.forEach(i=>{const o=Object.keys(e).find(r=>ne(r,i));if(o){const r=e[o],l={};["purposes","specialPurposes","features","specialFeatures","stacks","dataCategories"].forEach(a=>{const c=r[a]||{};Object.keys(c).forEach(u=>{const d=c[u],b=`exp.tcf.${a}.${u}`;l[`${b}.name`]=d.name,l[`${b}.description`]=d.description,d.illustrations&&d.illustrations.length>0&&d.illustrations.forEach((_,g)=>{l[`${b}.illustrations.${g}`]=_})})}),n[i]=te(te({},l),n[i])}}),n}function oi(e){return Object.keys(Dt).forEach(t=>{e.load(t,Dt[t])}),Object.keys(Dt)}function ri(e,t,n){var i;const o={},r=(i=t.available_locales)!=null&&i.length?t.available_locales:[H];if(t?.experience_config){const l=t.experience_config,s=Xa(l,n);Object.keys(s).forEach(a=>{o[a]=te(te({},s[a]),o[a])})}r.forEach(l=>{e.load(l,o[l])})}function ai(e,t){if(!t.gvl)return;const{locale:n}=e,i={};i[n]=t.gvl;const o=ii(i,[n]);e.load(n,o[n])}function si(e,t,n){const i=ii(t,n);n.forEach(o=>{e.load(o,i[o])})}function li(e){return e.locale}function ci(e,t,n=H){const i=e?.language;return t||i||n}function di(e,t,n=H){const i=e.match(Je);if(i){const[o,r]=i,l=t.find(a=>ne(a,o));if(l)return l;const s=t.find(a=>ne(a,r));if(s)return s}return n}function be(e,t){return e.t(t)!==""&&e.t(t)!==t}function zt(e,t,n){if(!n||!n.translations)return null;if(e){const o=n.translations.find(r=>ne(r.language,e));if(o)return o}const i=n.translations.find(o=>ne(o.language,t));return i||n.translations[0]||null}function at(e,t,n){if(!n||!n.translations)return null;if(e){const o=n.translations.find(r=>ne(r.language,e));if(o)return o}const i=n.translations.find(o=>ne(o.language,t));return i||n.translations[0]||null}function ui(e,t,n,i,o){var r,l,s,a,c;oi(e);const u=(r=n.available_locales)!=null&&r.length?n.available_locales:[H];ri(e,n,o);const d=Ka.filter(h=>u.includes(h.locale)),b=d.findIndex(h=>ne(h.locale,e.getDefaultLocale()));b>0&&d.unshift(d.splice(b,1)[0]),e.setAvailableLanguages(d);const _=Rt(n)||H;e.setDefaultLocale(_);let g=_;((l=n.experience_config)==null?void 0:l.auto_detect_language)===!1||(g=ci(t,i?.fidesLocale,_));const f=di(g,u||[],e.getDefaultLocale());if(!!((a=(s=n.experience_config)==null?void 0:s.translations)!=null&&a.find(h=>h.language===f)))e.activate(f);else{const h=at(f,_,n.experience_config);h?.language,e.activate(h?.language||f)}((c=n.experience_config)==null?void 0:c.component)===U.TCF_OVERLAY&&n.gvl&&ai(e,n)}function Mt(){let e=[],t=H,n=H;const i={};return{setAvailableLanguages(o){e=o},get availableLanguages(){return e},activate:o=>{n=o},getDefaultLocale:()=>t,setDefaultLocale:o=>{t=o},get locale(){return n},load:(o,r)=>{i[o]=te(te({},i[o]),r)},t:o=>{if(typeof o>"u")throw new TypeError("Unexpected type for descriptor or id!");let r;if(typeof o=="string")r=o;else if(typeof o=="object"&&o.id)r=o.id;else return"";return n&&n in i&&r&&r in i[n]&&i[n][r]?i[n][r]:r}}}const fi=(e,t,n)=>{var i;let o=Ze;if(!e)t.t("exp.modal_link_label")!=="exp.modal_link_label"&&(o=t.t("exp.modal_link_label"));else{const r=t.getDefaultLocale(),l=(i=n?.experience_config)==null?void 0:i.translations.find(s=>s.language===r);l?.modal_link_label&&(o=l.modal_link_label)}return o},Za=Mt();function Ja(e){return Array.from(e).length}var Qa=Object.defineProperty,es=Object.defineProperties,ts=Object.getOwnPropertyDescriptors,pi=Object.getOwnPropertySymbols,ns=Object.prototype.hasOwnProperty,is=Object.prototype.propertyIsEnumerable,_i=(e,t,n)=>t in e?Qa(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Fe=(e,t)=>{for(var n in t||(t={}))ns.call(t,n)&&_i(e,n,t[n]);if(pi)for(var n of pi(t))is.call(t,n)&&_i(e,n,t[n]);return e},Ut=(e,t)=>es(e,ts(t)),st=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())}),vi=(e=>(e.PRIVACY_EXPERIENCE="/privacy-experience",e.PRIVACY_PREFERENCES="/privacy-preferences",e.GVL_TRANSLATIONS="/privacy-experience/gvl/translations",e.NOTICES_SERVED="/notices-served",e))(vi||{});function gi(){return{}}const bi=e=>st(void 0,[e],function*({userLocationString:t,userLanguageString:n,fidesApiUrl:i,apiOptions:o,propertyId:r,requestMinimalTCF:l,missingExperienceHandler:s=gi}){var a,c,u;if(o?.getPrivacyExperienceFn)try{return yield o.getPrivacyExperienceFn(t,null)}catch(f){return s(f)}const d=[["Unescape-Safestr","true"],["Accept-Encoding","gzip, deflate"]];n&&d.push(["Accept-Language",n]);const b={method:"GET",mode:"cors",headers:d};let _=Fe(Fe({show_disabled:"false",region:t,component:U.OVERLAY,has_config:"true",systems_applicable:"true",exclude_gvl_languages:"true",include_meta:"true",include_gvl:"true",include_non_applicable_notices:"true"},l&&{minimal_tcf:"true"}),r&&{property_id:r});_=new URLSearchParams(_);let g;try{if(g=yield fetch(`${i}/privacy-experience?${_}`,b),!g.ok)throw new Error("Error fetching experience from Fides API")}catch(f){return s(f)}try{const f=yield g.json();if(((a=f.items)==null?void 0:a.length)<1)return{};const y=f.items&&f.items[0],h=(u=(c=y.experience_config)==null?void 0:c.translations)==null?void 0:u[0].language;return y}catch(f){return s(f)}}),yi=(e,t)=>st(void 0,null,function*(){const n=new URLSearchParams;t?.forEach(l=>{n.append("language",l)});const i={method:"GET",mode:"cors"};let o;try{o=yield fetch(`${e}/privacy-experience/gvl/translations${Ja(n)>0?"?":""}${n.toString()}`,i)}catch{return{}}return o.ok?yield o.json():{}}),hi={method:"PATCH",mode:"cors",headers:{"Content-Type":"application/json"}},mi="Fides.js",wi=(e,t,n,i,o)=>st(void 0,null,function*(){var r;if((r=n.apiOptions)!=null&&r.savePreferencesFn){try{yield n.apiOptions.savePreferencesFn(e,i.consent,i.fides_string,o)}catch(a){return Promise.reject(a)}return Promise.resolve()}const l=Ut(Fe({},hi),{body:JSON.stringify(Ut(Fe({},t),{source:mi}))});return(yield fetch(`${n.fidesApiUrl}/privacy-preferences`,l)).ok,Promise.resolve()}),Ei=e=>st(void 0,[e],function*({request:t,options:n}){var i;if((i=n.apiOptions)!=null&&i.patchNoticesServedFn)try{return yield n.apiOptions.patchNoticesServedFn(t)}catch{return null}const o=Ut(Fe({},hi),{body:JSON.stringify(t)});try{const r=yield fetch(`${n.fidesApiUrl}/notices-served`,o);return r.ok?yield r.json():null}catch{return null}});var os=Object.defineProperty,rs=(e,t,n)=>t in e?os(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,as=(e,t,n)=>rs(e,t+"",n);class ss{constructor(){as(this,"servedNoticeHistoryId",null)}getServedNoticeHistoryId(){return this.servedNoticeHistoryId||(this.servedNoticeHistoryId=mn()),this.servedNoticeHistoryId}reset(){this.servedNoticeHistoryId=null}hasLifecycleId(){return this.servedNoticeHistoryId!==null}}const Oi=new ss;var ls=Object.defineProperty,cs=Object.defineProperties,ds=Object.getOwnPropertyDescriptors,ki=Object.getOwnPropertySymbols,us=Object.prototype.hasOwnProperty,fs=Object.prototype.propertyIsEnumerable,Pi=(e,t,n)=>t in e?ls(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ae=(e,t)=>{for(var n in t||(t={}))us.call(t,n)&&Pi(e,n,t[n]);if(ki)for(var n of ki(t))fs.call(t,n)&&Pi(e,n,t[n]);return e},lt=(e,t)=>cs(e,ds(t)),Gt=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const ps=[I.SCRIPT,I.GPC,I.OT_MIGRATION];function _s(e,t,n,i,o,r,l,s,a){return Gt(this,null,function*(){const c=(r||[]).map(d=>({preference:d.consentPreference,privacy_notice_history_id:d.noticeHistoryId||""})),u=ae({browser_identity:t.identity,preferences:c,privacy_experience_config_history_id:o,user_geography:s,method:i,served_notice_history_id:a,property_id:n.property_id},l??[]);yield wi(i,u,e,t,n)})}const vs=e=>Gt(void 0,[e],function*({consentPreferencesToSave:t,privacyExperienceConfigHistoryId:n,experience:i,consentMethod:o,options:r,userLocationString:l,cookie:s,eventExtraDetails:a,servedNoticeHistoryId:c,tcf:u,updateCookie:d}){var b,_,g,f,y,h,m,w,O;if(!d&&t&&(d=x=>Fn(x,t)),!d&&!t)throw new Error("updateCookie is required");const E=lt(ae({},a?.trigger),{origin:((b=a?.trigger)==null?void 0:b.origin)||(ps.includes(o)?ge.EXTERNAL:ge.FIDES)}),N=yield d(s);Object.assign(s,N),Object.assign(s.fides_meta,{consentMethod:o}),re("FidesUpdating",s,lt(ae({},a),{trigger:E}));const $=Le(s.consent,(g=(_=window.Fides)==null?void 0:_.experience)==null?void 0:g.non_applicable_privacy_notices,(y=(f=window.Fides)==null?void 0:f.experience)==null?void 0:y.privacy_notices),k=!!((m=(h=window.Fides)==null?void 0:h.experience)!=null&&m.non_applicable_privacy_notices)||!!((O=(w=window.Fides)==null?void 0:w.experience)!=null&&O.privacy_notices);if(window.Fides.consent=Ft($,r,k),window.Fides.fides_string=s.fides_string,window.Fides.tcf_consent=s.tcf_consent,Sn(lt(ae({},s),{consent:$}),r.base64Cookie),window.Fides.saved_consent=s.consent,!r.fidesDisableSaveApi)try{yield _s(r,s,i,o,n,t,u,l,c)}catch{}t&&t.filter(x=>x.consentPreference===V.OPT_OUT).forEach(x=>{var A,S;(A=x.notice)!=null&&A.cookies&&Ln(x.notice.cookies,(S=i.experience_config)==null?void 0:S.auto_subdomain_cookie_deletion)}),re("FidesUpdated",s,lt(ae({},a),{trigger:E}))}),Ci=(e,t,n,i)=>Object.entries(n).reduce((o,[r,l])=>{if(o)return o;const s=t.find(d=>d===r);if(s&&!l&&i!==I.OT_MIGRATION)return new Error(`Provided notice key '${r}' is not applicable to the current experience.`);const a=e.find(d=>d.notice_key===r);if(!s&&!a)return new Error(`'${r}' is not a valid notice key`);const u=a?.consent_mechanism===B.NOTICE_ONLY;return u&&l!==!0&&l!==V.ACKNOWLEDGE&&i!==I.OT_MIGRATION?new Error(`Invalid consent value for notice-only notice key: '${r}'. Must be \`true\` or "acknowledge"`):!u&&typeof l!="boolean"&&l!==V.OPT_IN&&l!==V.OPT_OUT?new Error(`Invalid consent value for notice key: '${r}'. Must be a boolean or "opt_in" or "opt_out"`):null},null),Bt=(e,t)=>Gt(void 0,null,function*(){var n;const{experience:i,cookie:o,config:r,locale:l}=e;if(!i)throw new Error("Experience must be initialized before updating consent");if(!r)throw new Error("Config is not initialized");if(!o)throw new Error("Cookie is not initialized");if(!t?.noticeConsent&&!t?.fidesString&&!t?.tcf)throw new Error("Either consent object or fidesString must be provided");if(t?.validation&&!Object.values(ue).includes(t.validation))throw new Error(`Validation must be one of: ${Object.values(ue).join(", ")} (default is ${ue.THROW})`);const{noticeConsent:s,fidesString:a,validation:c=ue.THROW,consentMethod:u=I.SCRIPT,eventExtraDetails:d={trigger:{origin:ge.EXTERNAL}},tcf:b,updateCookie:_}=t,{experience_config:g,privacy_notices:f,non_applicable_privacy_notices:y}=i,h=Rt(i)||H,m=k=>{if(c===ue.THROW)throw new Error(k);c===ue.WARN&&console.warn(k)};let w=o.consent||{};if(a)try{const k=jt(a);if(k.nc){const x=it(k.nc);w=ae(ae({},o.consent),x);const A=Ci(f||[],y||[],w,u);A&&m(A.message)}}catch(k){const x=k instanceof Error?k.message:String(k);m(`Invalid fidesString provided: ${x}`)}else if(s){const k=Ci(f||[],y||[],s,u);k&&m(k.message),w=ae(ae({},o.consent),s)}const O=[];Object.entries(w).forEach(([k,x])=>{const A=f?.find(S=>S.notice_key===k);if(A){const S=zt(l,h,A),X=S?.privacy_notice_history_id;let W;if(typeof x=="boolean"?W=Te(x,A.consent_mechanism):W=x,X){const K=new kt(A,W,X);O.push(K)}}});let E;if((n=g?.translations)!=null&&n.length){const k=at(l,h,g);E=k?.privacy_experience_config_history_id}const N=et(r.geolocation),$=Oi.getServedNoticeHistoryId();return vs({consentPreferencesToSave:O,privacyExperienceConfigHistoryId:E,experience:i,consentMethod:u,options:r.options,userLocationString:N,cookie:o,eventExtraDetails:d,servedNoticeHistoryId:$,tcf:b,updateCookie:_})}),Vt=e=>{throw new Error(e)},ct=e=>{typeof window<"u"&&(window.Fides=e)},xi=({cookie:e,experience:t})=>{let n=t;return Tt(e.consent)&&(n=St({experience:t,cookie:e})),n},Ni=({tcfEnabled:e=!1})=>({consent:{},experience:void 0,geolocation:{},locale:H,options:{debug:!0,isOverlayEnabled:!1,isPrefetchEnabled:!1,isGeolocationEnabled:!1,geolocationApiUrl:"",overlayParentId:null,modalLinkId:null,privacyCenterUrl:"",fidesApiUrl:"",tcfEnabled:e,gppEnabled:!1,fidesEmbed:!1,fidesDisableSaveApi:!1,fidesDisableNoticesServedApi:!1,fidesDisableBanner:!1,fidesString:null,apiOptions:null,fidesTcfGdprApplies:e,fidesJsBaseUrl:"",customOptionsPath:null,preventDismissal:!1,allowHTMLDescription:null,base64Cookie:!1,fidesPrimaryColor:null,fidesClearCookie:!1,showFidesBrandLink:!e,fidesConsentOverride:null,otFidesMapping:null,fidesDisabledNotices:null,fidesConsentNonApplicableFlagMode:null,fidesConsentFlagType:null,fidesInitializedEventMode:"once"},fides_meta:{},identity:{},tcf_consent:{},saved_consent:{},version:"DEV",config:void 0,initialized:!1,onFidesEvent:Xn,blueconic:Jr,gtm:Qr,meta:ta,shopify:oa,showModal:$t,getModalLinkLabel:()=>Ze,encodeNoticeConsentString:Yn,decodeNoticeConsentString:it,reinitialize(){return typeof this.init!="function"?Promise.reject(new Error("Fides.init method is not available")):((!this.config||!this.initialized)&&Vt("Fides must be initialized before reinitializing"),this.init())},shouldShowExperience(){return!(this!=null&&this.experience)||!(this!=null&&this.cookie)||!(this!=null&&this.saved_consent)||!(this!=null&&this.options)?!1:nt(this.experience,this.cookie,this.saved_consent,this.options)},updateConsent(t){const{consent:n,fidesString:i,validation:o}=t;return Bt(this,{noticeConsent:n,fidesString:i,validation:o})}});var gs=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Ai=(e,t)=>gs(void 0,null,function*(){if(!e||!t)return null;const i=yield fetch(t,{mode:"cors"});if(!i.ok)return null;try{return yield i.json()}catch{return null}}),bs=()=>{var e,t,n;if(window.Fides.options.tcfEnabled&&!((t=(e=window.Fides.experience)==null?void 0:e.privacy_notices)!=null&&t.length))return!1;if(typeof((n=window.navigator)==null?void 0:n.globalPrivacyControl)=="boolean")return window.navigator.globalPrivacyControl;const o=new URL(window.location.href).searchParams.get("globalPrivacyControl");if(o==="true")return!0;if(o==="false")return!1},Pe=()=>typeof window>"u"?{}:{globalPrivacyControl:bs()};var ys=Object.defineProperty,Ti=Object.getOwnPropertySymbols,hs=Object.prototype.hasOwnProperty,ms=Object.prototype.propertyIsEnumerable,Si=(e,t,n)=>t in e?ys(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ws=(e,t)=>{for(var n in t||(t={}))hs.call(t,n)&&Si(e,n,t[n]);if(Ti)for(var n of Ti(t))ms.call(t,n)&&Si(e,n,t[n]);return e},Es=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Os=e=>Es(void 0,null,function*(){var t;const{experience:n,saved_consent:i,options:o}=e;if(!n||!n.experience_config||!((t=n.privacy_notices)!=null&&t.length))return!1;const r=Pe(),{nc:l}=jt(o.fidesString||"");r.globalPrivacyControl;const{consent:s,method:a}=zn(o),c=!!s&&!!a&&!Oe();if(!r.globalPrivacyControl&&!l&&!c)return!1;let u=!1,d=!1,b=!1;const _=n.privacy_notices.reduce((g,f)=>{const y=ws({},g),h=fe(f.default_preference);y[f.notice_key]=h,i[f.notice_key]&&(y[f.notice_key]=i[f.notice_key]);const m=qe(f,i),w=f.consent_mechanism===B.NOTICE_ONLY;if(c&&s){const O=s[f.notice_key];if(O!==void 0)return b=!0,y[f.notice_key]=O,y}if(w)return y;if(l){const E=it(l)[f.notice_key];if(E!==void 0)return d=!0,y[f.notice_key]=E,y}return r.globalPrivacyControl&&!m&&f.has_gpc_flag&&(u=!0,y[f.notice_key]=!1),y},{});if(u||d||b){let g=I.SCRIPT;return b&&a?g=a:d?g=I.SCRIPT:u&&(g=I.GPC),yield Bt(e,{noticeConsent:_,consentMethod:g}),!0}return!1}),ks=()=>{document.body.classList.add("fides-no-scroll")},Ii=()=>{document.body.classList.remove("fides-no-scroll")},Ps=e=>new DOMParser().parseFromString(e,"text/html").body.textContent||"",Li=e=>{let t=0,n=200;return new Promise(i=>{const o=r=>{const l=setTimeout(()=>{const s=document.getElementById(e);s?(clearInterval(l),i(s)):(t+=1,t>=5&&n<1e3&&(n+=200),o(n))},r)};o(n)})};var Cs=Object.defineProperty,xs=Object.defineProperties,Ns=Object.getOwnPropertyDescriptors,$i=Object.getOwnPropertySymbols,As=Object.prototype.hasOwnProperty,Ts=Object.prototype.propertyIsEnumerable,Fi=(e,t,n)=>t in e?Cs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Ht=(e,t)=>{for(var n in t||(t={}))As.call(t,n)&&Fi(e,n,t[n]);if($i)for(var n of $i(t))Ts.call(t,n)&&Fi(e,n,t[n]);return e},Ss=(e,t)=>xs(e,Ns(t)),ji=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Is=(e,t)=>ji(void 0,null,function*(){const n=et(e);return n||et(yield Ai(t.isGeolocationEnabled,t.geolocationApiUrl))}),Di=(e,t)=>{const n={};if(typeof window<"u"){const i=new URLSearchParams(window.location.search),o=t.options.customOptionsPath&&t.options.customOptionsPath.split("."),r=o&&o.length>=0?Hn(o):window.fides_overrides,l=Bn(e);l?.forEach(({overrideName:s,overrideType:a,overrideKey:c,validationRegex:u,transform:d})=>{const b=i.get(c),_=r?r[c]:void 0,g=Xe(c),f=b||_||g;f&&u.test(f.toString())&&(d?n[s]=d(f.toString()):n[s]=a==="string"?f:JSON.parse(f.toString()))})}return n},Ls=({consent:e,options:t})=>{const n=Pe(),i=In(e,n);return Tn(i,t.fidesClearCookie)},$s=({cookie:e,savedConsent:t,experience:n,geolocation:i,options:o,updateExperienceFromCookieConsent:r})=>{let l=n;return ke(n)&&(l=r({experience:n,cookie:e,debug:o.debug})),{consent:e.consent,fides_meta:e.fides_meta,identity:e.identity,experience:l,tcf_consent:e.tcf_consent,fides_string:e.fides_string,saved_consent:t,geolocation:i,options:o,initialized:!0}},Fs=e=>ji(void 0,[e],function*({fides:t,initOverlay:n,renderOverlay:i,updateExperience:o,overrides:r}){var l,s,a,c,u,d,b,_,g;const{config:f}=t;if(!f)throw new Error("Fides config should be initialized");const{options:y,geolocation:h}=f;let m=!0,w,O=()=>Ze;if(!t.cookie)throw new Error("Fides cookie should be initialized");if(m=y.isOverlayEnabled,m){Gn(y)||(m=!1),w=yield Is(h,y);let W=!1;if(w?ke(t.experience)||(W=!0,t.experience=yield bi({userLocationString:w,fidesApiUrl:y.fidesApiUrl,apiOptions:y.apiOptions,requestMinimalTCF:!1,propertyId:(l=t.config)==null?void 0:l.propertyId})):m=!1,m&&ke(t.experience)&&Vn(t.experience)){if(W){const G=o({cookie:t.cookie,experience:t.experience});t.experience=Ht(Ht({},t.experience),G)}(s=t.config)!=null&&s.propertyId&&(t.experience.property_id=t.config.propertyId);const K=jn({cookie:t.cookie,experience:t.experience});t.cookie=K;const Q=Mt();if(ui(Q,window?.navigator,t.experience,y,r?.experienceTranslationOverrides),t.locale=Q.locale||H,O=G=>fi(!!G?.disableLocalization,Q,t.experience),((a=t.experience.experience_config)==null?void 0:a.component)===U.HEADLESS){const G=y.modalLinkId||"fides-modal-link";!t.experience||y.fidesEmbed||y.modalLinkId,Li(G).then(Ne=>{document.body.classList.add("fides-overlay-modal-link-shown"),Ne.classList.add("fides-modal-link-shown")}),m=!1}if(n&&m){const G=Ss(Ht({},t),{cookie:t.cookie,config:f,options:y,experience:t.experience,fidesRegionString:w});n({initializedFides:G,i18n:Q,renderOverlay:i}).catch(Ne=>{})}setTimeout(Os.bind(null,t))}}const{fides_meta:N,identity:$,fides_string:k,tcf_consent:x}=t.cookie,A=Le(t.cookie.consent,(c=t.experience)==null?void 0:c.non_applicable_privacy_notices,(u=t.experience)==null?void 0:u.privacy_notices,(d=y.fidesConsentFlagType)!=null?d:void 0,(b=y.fidesConsentNonApplicableFlagMode)!=null?b:void 0),S=!!((_=t.experience)!=null&&_.non_applicable_privacy_notices)||!!((g=t.experience)!=null&&g.privacy_notices);return{consent:Ft(A,y,S),fides_meta:N,identity:$,fides_string:k,tcf_consent:x,experience:t.experience,geolocation:h,options:y,initialized:!0,getModalLinkLabel:O}});var dt,P,Ri,ye,zi,Mi,Kt,Yt,qt,Wt,Ui,je={},Gi=[],js=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,ut=Array.isArray;function pe(e,t){for(var n in t)e[n]=t[n];return e}function Bi(e){var t=e.parentNode;t&&t.removeChild(e)}function Xt(e,t,n){var i,o,r,l={};for(r in t)r=="key"?i=t[r]:r=="ref"?o=t[r]:l[r]=t[r];if(arguments.length>2&&(l.children=arguments.length>3?dt.call(arguments,2):n),typeof e=="function"&&e.defaultProps!=null)for(r in e.defaultProps)l[r]===void 0&&(l[r]=e.defaultProps[r]);return ft(e,l,i,o,null)}function ft(e,t,n,i,o){var r={type:e,props:t,key:n,ref:i,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:o??++Ri,__i:-1,__u:0};return o==null&&P.vnode!=null&&P.vnode(r),r}function se(e){return e.children}function le(e,t){this.props=e,this.context=t}function he(e,t){if(t==null)return e.__?he(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type=="function"?he(e):null}function Vi(e){var t,n;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null){e.__e=e.__c.base=n.__e;break}return Vi(e)}}function Zt(e){(!e.__d&&(e.__d=!0)&&ye.push(e)&&!pt.__r++||zi!==P.debounceRendering)&&((zi=P.debounceRendering)||Mi)(pt)}function pt(){var e,t,n,i,o,r,l,s;for(ye.sort(Kt);e=ye.shift();)e.__d&&(t=ye.length,i=void 0,r=(o=(n=e).__v).__e,l=[],s=[],n.__P&&((i=pe({},o)).__v=o.__v+1,P.vnode&&P.vnode(i),Jt(n.__P,i,o,n.__n,n.__P.namespaceURI,32&o.__u?[r]:null,l,r??he(o),!!(32&o.__u),s),i.__v=o.__v,i.__.__k[i.__i]=i,Wi(l,i,s),i.__e!=r&&Vi(i)),ye.length>t&&ye.sort(Kt));pt.__r=0}function Hi(e,t,n,i,o,r,l,s,a,c,u){var d,b,_,g,f,y=i&&i.__k||Gi,h=t.length;for(n.__d=a,Ds(n,t,y),a=n.__d,d=0;d<h;d++)(_=n.__k[d])!=null&&typeof _!="boolean"&&typeof _!="function"&&(b=_.__i===-1?je:y[_.__i]||je,_.__i=d,Jt(e,_,b,o,r,l,s,a,c,u),g=_.__e,_.ref&&b.ref!=_.ref&&(b.ref&&Qt(b.ref,null,_),u.push(_.ref,_.__c||g,_)),f==null&&g!=null&&(f=g),65536&_.__u||b.__k===_.__k?(a&&typeof _.type=="string"&&!e.contains(a)&&(a=he(b)),a=Ki(_,a,e)):typeof _.type=="function"&&_.__d!==void 0?a=_.__d:g&&(a=g.nextSibling),_.__d=void 0,_.__u&=-196609);n.__d=a,n.__e=f}function Ds(e,t,n){var i,o,r,l,s,a=t.length,c=n.length,u=c,d=0;for(e.__k=[],i=0;i<a;i++)l=i+d,(o=e.__k[i]=(o=t[i])==null||typeof o=="boolean"||typeof o=="function"?null:typeof o=="string"||typeof o=="number"||typeof o=="bigint"||o.constructor==String?ft(null,o,null,null,null):ut(o)?ft(se,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?ft(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):o)!=null?(o.__=e,o.__b=e.__b+1,s=Rs(o,n,l,u),o.__i=s,r=null,s!==-1&&(u--,(r=n[s])&&(r.__u|=131072)),r==null||r.__v===null?(s==-1&&d--,typeof o.type!="function"&&(o.__u|=65536)):s!==l&&(s==l-1?d=s-l:s==l+1?d++:s>l?u>a-l?d+=s-l:d--:s<l&&d++,s!==i+d&&(o.__u|=65536))):(r=n[l])&&r.key==null&&r.__e&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=he(r)),en(r,r,!1),n[l]=null,u--);if(u)for(i=0;i<c;i++)(r=n[i])!=null&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=he(r)),en(r,r))}function Ki(e,t,n){var i,o;if(typeof e.type=="function"){for(i=e.__k,o=0;i&&o<i.length;o++)i[o]&&(i[o].__=e,t=Ki(i[o],t,n));return t}e.__e!=t&&(n.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType===8);return t}function _t(e,t){return t=t||[],e==null||typeof e=="boolean"||(ut(e)?e.some(function(n){_t(n,t)}):t.push(e)),t}function Rs(e,t,n,i){var o=e.key,r=e.type,l=n-1,s=n+1,a=t[n];if(a===null||a&&o==a.key&&r===a.type&&(131072&a.__u)==0)return n;if(i>(a!=null&&(131072&a.__u)==0?1:0))for(;l>=0||s<t.length;){if(l>=0){if((a=t[l])&&(131072&a.__u)==0&&o==a.key&&r===a.type)return l;l--}if(s<t.length){if((a=t[s])&&(131072&a.__u)==0&&o==a.key&&r===a.type)return s;s++}}return-1}function Yi(e,t,n){t[0]==="-"?e.setProperty(t,n??""):e[t]=n==null?"":typeof n!="number"||js.test(t)?n:n+"px"}function vt(e,t,n,i,o){var r;e:if(t==="style")if(typeof n=="string")e.style.cssText=n;else{if(typeof i=="string"&&(e.style.cssText=i=""),i)for(t in i)n&&t in n||Yi(e.style,t,"");if(n)for(t in n)i&&n[t]===i[t]||Yi(e.style,t,n[t])}else if(t[0]==="o"&&t[1]==="n")r=t!==(t=t.replace(/(PointerCapture)$|Capture$/i,"$1")),t=t.toLowerCase()in e||t==="onFocusOut"||t==="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+r]=n,n?i?n.u=i.u:(n.u=Yt,e.addEventListener(t,r?Wt:qt,r)):e.removeEventListener(t,r?Wt:qt,r);else{if(o=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=n??"";break e}catch{}typeof n=="function"||(n==null||n===!1&&t[4]!=="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&n==1?"":n))}}function qi(e){return function(t){if(this.l){var n=this.l[t.type+e];if(t.t==null)t.t=Yt++;else if(t.t<n.u)return;return n(P.event?P.event(t):t)}}}function Jt(e,t,n,i,o,r,l,s,a,c){var u,d,b,_,g,f,y,h,m,w,O,E,N,$,k,x,A=t.type;if(t.constructor!==void 0)return null;128&n.__u&&(a=!!(32&n.__u),r=[s=t.__e=n.__e]),(u=P.__b)&&u(t);e:if(typeof A=="function")try{if(h=t.props,m="prototype"in A&&A.prototype.render,w=(u=A.contextType)&&i[u.__c],O=u?w?w.props.value:u.__:i,n.__c?y=(d=t.__c=n.__c).__=d.__E:(m?t.__c=d=new A(h,O):(t.__c=d=new le(h,O),d.constructor=A,d.render=Ms),w&&w.sub(d),d.props=h,d.state||(d.state={}),d.context=O,d.__n=i,b=d.__d=!0,d.__h=[],d._sb=[]),m&&d.__s==null&&(d.__s=d.state),m&&A.getDerivedStateFromProps!=null&&(d.__s==d.state&&(d.__s=pe({},d.__s)),pe(d.__s,A.getDerivedStateFromProps(h,d.__s))),_=d.props,g=d.state,d.__v=t,b)m&&A.getDerivedStateFromProps==null&&d.componentWillMount!=null&&d.componentWillMount(),m&&d.componentDidMount!=null&&d.__h.push(d.componentDidMount);else{if(m&&A.getDerivedStateFromProps==null&&h!==_&&d.componentWillReceiveProps!=null&&d.componentWillReceiveProps(h,O),!d.__e&&(d.shouldComponentUpdate!=null&&d.shouldComponentUpdate(h,d.__s,O)===!1||t.__v===n.__v)){for(t.__v!==n.__v&&(d.props=h,d.state=d.__s,d.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.forEach(function(S){S&&(S.__=t)}),E=0;E<d._sb.length;E++)d.__h.push(d._sb[E]);d._sb=[],d.__h.length&&l.push(d);break e}d.componentWillUpdate!=null&&d.componentWillUpdate(h,d.__s,O),m&&d.componentDidUpdate!=null&&d.__h.push(function(){d.componentDidUpdate(_,g,f)})}if(d.context=O,d.props=h,d.__P=e,d.__e=!1,N=P.__r,$=0,m){for(d.state=d.__s,d.__d=!1,N&&N(t),u=d.render(d.props,d.state,d.context),k=0;k<d._sb.length;k++)d.__h.push(d._sb[k]);d._sb=[]}else do d.__d=!1,N&&N(t),u=d.render(d.props,d.state,d.context),d.state=d.__s;while(d.__d&&++$<25);d.state=d.__s,d.getChildContext!=null&&(i=pe(pe({},i),d.getChildContext())),m&&!b&&d.getSnapshotBeforeUpdate!=null&&(f=d.getSnapshotBeforeUpdate(_,g)),Hi(e,ut(x=u!=null&&u.type===se&&u.key==null?u.props.children:u)?x:[x],t,n,i,o,r,l,s,a,c),d.base=t.__e,t.__u&=-161,d.__h.length&&l.push(d),y&&(d.__E=d.__=null)}catch(S){t.__v=null,a||r!=null?(t.__e=s,t.__u|=a?160:32,r[r.indexOf(s)]=null):(t.__e=n.__e,t.__k=n.__k),P.__e(S,t,n)}else r==null&&t.__v===n.__v?(t.__k=n.__k,t.__e=n.__e):t.__e=zs(n.__e,t,n,i,o,r,l,a,c);(u=P.diffed)&&u(t)}function Wi(e,t,n){t.__d=void 0;for(var i=0;i<n.length;i++)Qt(n[i],n[++i],n[++i]);P.__c&&P.__c(t,e),e.some(function(o){try{e=o.__h,o.__h=[],e.some(function(r){r.call(o)})}catch(r){P.__e(r,o.__v)}})}function zs(e,t,n,i,o,r,l,s,a){var c,u,d,b,_,g,f,y=n.props,h=t.props,m=t.type;if(m==="svg"?o="http://www.w3.org/2000/svg":m==="math"?o="http://www.w3.org/1998/Math/MathML":o||(o="http://www.w3.org/1999/xhtml"),r!=null){for(c=0;c<r.length;c++)if((_=r[c])&&"setAttribute"in _==!!m&&(m?_.localName===m:_.nodeType===3)){e=_,r[c]=null;break}}if(e==null){if(m===null)return document.createTextNode(h);e=document.createElementNS(o,m,h.is&&h),r=null,s=!1}if(m===null)y===h||s&&e.data===h||(e.data=h);else{if(r=r&&dt.call(e.childNodes),y=n.props||je,!s&&r!=null)for(y={},c=0;c<e.attributes.length;c++)y[(_=e.attributes[c]).name]=_.value;for(c in y)if(_=y[c],c!="children"){if(c=="dangerouslySetInnerHTML")d=_;else if(c!=="key"&&!(c in h)){if(c=="value"&&"defaultValue"in h||c=="checked"&&"defaultChecked"in h)continue;vt(e,c,null,_,o)}}for(c in h)_=h[c],c=="children"?b=_:c=="dangerouslySetInnerHTML"?u=_:c=="value"?g=_:c=="checked"?f=_:c==="key"||s&&typeof _!="function"||y[c]===_||vt(e,c,_,y[c],o);if(u)s||d&&(u.__html===d.__html||u.__html===e.innerHTML)||(e.innerHTML=u.__html),t.__k=[];else if(d&&(e.innerHTML=""),Hi(e,ut(b)?b:[b],t,n,i,m==="foreignObject"?"http://www.w3.org/1999/xhtml":o,r,l,r?r[0]:n.__k&&he(n,0),s,a),r!=null)for(c=r.length;c--;)r[c]!=null&&Bi(r[c]);s||(c="value",g!==void 0&&(g!==e[c]||m==="progress"&&!g||m==="option"&&g!==y[c])&&vt(e,c,g,y[c],o),c="checked",f!==void 0&&f!==e[c]&&vt(e,c,f,y[c],o))}return e}function Qt(e,t,n){try{typeof e=="function"?e(t):e.current=t}catch(i){P.__e(i,n)}}function en(e,t,n){var i,o;if(P.unmount&&P.unmount(e),(i=e.ref)&&(i.current&&i.current!==e.__e||Qt(i,null,t)),(i=e.__c)!=null){if(i.componentWillUnmount)try{i.componentWillUnmount()}catch(r){P.__e(r,t)}i.base=i.__P=null}if(i=e.__k)for(o=0;o<i.length;o++)i[o]&&en(i[o],t,n||typeof e.type!="function");n||e.__e==null||Bi(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function Ms(e,t,n){return this.constructor(e,n)}function Xi(e,t,n){var i,o,r,l;P.__&&P.__(e,t),o=(i=!1)?null:t.__k,r=[],l=[],Jt(t,e=t.__k=Xt(se,null,[e]),o||je,je,t.namespaceURI,o?null:t.firstChild?dt.call(t.childNodes):null,r,o?o.__e:t.firstChild,i,l),Wi(r,e,l)}function De(e,t){var n={__c:t="__cC"+Ui++,__:e,Consumer:function(i,o){return i.children(o)},Provider:function(i){var o,r;return this.getChildContext||(o=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){o=null},this.shouldComponentUpdate=function(l){this.props.value!==l.value&&o.some(function(s){s.__e=!0,Zt(s)})},this.sub=function(l){o.push(l);var s=l.componentWillUnmount;l.componentWillUnmount=function(){o&&o.splice(o.indexOf(l),1),s&&s.call(l)}}),i.children}};return n.Provider.__=n.Consumer.contextType=n}dt=Gi.slice,P={__e:function(e,t,n,i){for(var o,r,l;t=t.__;)if((o=t.__c)&&!o.__)try{if((r=o.constructor)&&r.getDerivedStateFromError!=null&&(o.setState(r.getDerivedStateFromError(e)),l=o.__d),o.componentDidCatch!=null&&(o.componentDidCatch(e,i||{}),l=o.__d),l)return o.__E=o}catch(s){e=s}throw e}},Ri=0,le.prototype.setState=function(e,t){var n;n=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=pe({},this.state),typeof e=="function"&&(e=e(pe({},n),this.props)),e&&pe(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),Zt(this))},le.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Zt(this))},le.prototype.render=se,ye=[],Mi=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Kt=function(e,t){return e.__v.__b-t.__v.__b},pt.__r=0,Yt=0,qt=qi(!1),Wt=qi(!0),Ui=0;const Us=e=>{try{const t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!t)return null;let n=parseInt(t[1],16),i=parseInt(t[2],16),o=parseInt(t[3],16);n/=255,i/=255,o/=255;const r=Math.max(n,i,o),l=Math.min(n,i,o);let s,a;const c=(r+l)/2;if(r===l)s=a=0;else{const u=r-l;switch(a=c>.5?u/(2-r-l):u/(r+l),r){case n:s=(i-o)/u+(i<o?6:0);break;case i:s=(o-n)/u+2;break;case o:s=(n-i)/u+4;break}s/=6}return{h:s,s:a,l:c}}catch{return null}},Gs=(e,t=!1)=>{let n="";const i=Math.round(e.h*360),o=Math.round(e.s*100),r=Math.round(e.l*100);return n=`${i},${o}%,${r}%`,n=t?n:`hsl(${n})`,n};var Zi=(e=>(e.HEX="hex",e.HSL="hsl",e))(Zi||{});const Bs=(e,t,n)=>{const i=t==="hex"?Us(e):e;return i&&i.l?(i.l<.25?i.l=i.l+.1:i.l<.5?i.l=i.l+.08:i.l<.75?i.l=i.l+.06:i.l<.9?i.l=i.l+.04:i.l=.9,Gs(i)):e};var gt=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Ji="fides-embed-container",Vs="fides-overlay";let bt;const Qi=e=>gt(void 0,[e],function*({initializedFides:t,i18n:n,renderOverlay:i}){const{options:o,experience:r}=t,l=()=>gt(void 0,null,function*(){var s,a,c;try{if(bt&&(Xi(null,bt),bt=void 0),o.fidesPrimaryColor){document.documentElement.style.setProperty("--fides-overlay-primary-color",o.fidesPrimaryColor);const d=Bs(o.fidesPrimaryColor,Zi.HEX,1);document.documentElement.style.setProperty("--fides-overlay-primary-button-background-hover-color",d)}let u;if(o.fidesEmbed)u=document.getElementById(Ji),u||(yield gt(void 0,null,function*(){return new Promise(b=>{let _=0,g=200;const f=setInterval(()=>{u=document.getElementById(Ji),u?(clearInterval(f),b()):(_+=1,_>=5&&g<1e3&&(g+=200))},g)})}));else{const d=o.overlayParentId||Vs;u=document.getElementById(d),u||(u=document.createElement("div"),u.id=d,u.className="fides-overlay",document.body.prepend(u))}return u?(i&&(((s=r.experience_config)==null?void 0:s.component)===U.MODAL||((a=r.experience_config)==null?void 0:a.component)===U.BANNER_AND_MODAL||((c=r.experience_config)==null?void 0:c.component)===U.TCF_OVERLAY)&&(i({initializedFides:t,i18n:n},u),bt=u),yield Promise.resolve()):yield Promise.reject(new Error("There was a problem rendering the Fides overlay."))}catch(u){return Promise.reject(u)}});return document?.readyState==="loading"?document.addEventListener("readystatechange",()=>gt(void 0,null,function*(){document.readyState==="interactive"&&l()})):l(),Promise.resolve()});var Ce,L,tn,eo,Re=0,to=[],R=P,no=R.__b,io=R.__r,oo=R.diffed,ro=R.__c,ao=R.unmount,so=R.__;function yt(e,t){R.__h&&R.__h(L,e,Re||t),Re=0;var n=L.__H||(L.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function q(e){return Re=1,Hs(uo,e)}function Hs(e,t,n){var i=yt(Ce++,2);if(i.t=e,!i.__c&&(i.__=[n?n(t):uo(void 0,t),function(s){var a=i.__N?i.__N[0]:i.__[0],c=i.t(a,s);a!==c&&(i.__N=[c,i.__[1]],i.__c.setState({}))}],i.__c=L,!L.u)){var o=function(s,a,c){if(!i.__c.__H)return!0;var u=i.__c.__H.__.filter(function(b){return!!b.__c});if(u.every(function(b){return!b.__N}))return!r||r.call(this,s,a,c);var d=!1;return u.forEach(function(b){if(b.__N){var _=b.__[0];b.__=b.__N,b.__N=void 0,_!==b.__[0]&&(d=!0)}}),!(!d&&i.__c.props===s)&&(!r||r.call(this,s,a,c))};L.u=!0;var r=L.shouldComponentUpdate,l=L.componentWillUpdate;L.componentWillUpdate=function(s,a,c){if(this.__e){var u=r;r=void 0,o(s,a,c),r=u}l&&l.call(this,s,a,c)},L.shouldComponentUpdate=o}return i.__N||i.__}function F(e,t){var n=yt(Ce++,3);!R.__s&&co(n.__H,t)&&(n.__=e,n.i=t,L.__H.__h.push(n))}function ze(e){return Re=5,me(function(){return{current:e}},[])}function me(e,t){var n=yt(Ce++,7);return co(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function j(e,t){return Re=8,me(function(){return e},t)}function Me(e){var t=L.context[e.__c],n=yt(Ce++,9);return n.c=e,t?(n.__==null&&(n.__=!0,t.sub(L)),t.props.value):e.__}function Ks(){for(var e;e=to.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(ht),e.__H.__h.forEach(nn),e.__H.__h=[]}catch(t){e.__H.__h=[],R.__e(t,e.__v)}}R.__b=function(e){L=null,no&&no(e)},R.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),so&&so(e,t)},R.__r=function(e){io&&io(e),Ce=0;var t=(L=e.__c).__H;t&&(tn===L?(t.__h=[],L.__h=[],t.__.forEach(function(n){n.__N&&(n.__=n.__N),n.i=n.__N=void 0})):(t.__h.forEach(ht),t.__h.forEach(nn),t.__h=[],Ce=0)),tn=L},R.diffed=function(e){oo&&oo(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(to.push(t)!==1&&eo===R.requestAnimationFrame||((eo=R.requestAnimationFrame)||Ys)(Ks)),t.__H.__.forEach(function(n){n.i&&(n.__H=n.i),n.i=void 0})),tn=L=null},R.__c=function(e,t){t.some(function(n){try{n.__h.forEach(ht),n.__h=n.__h.filter(function(i){return!i.__||nn(i)})}catch(i){t.some(function(o){o.__h&&(o.__h=[])}),t=[],R.__e(i,n.__v)}}),ro&&ro(e,t)},R.unmount=function(e){ao&&ao(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach(function(i){try{ht(i)}catch(o){t=o}}),n.__H=void 0,t&&R.__e(t,n.__v))};var lo=typeof requestAnimationFrame=="function";function Ys(e){var t,n=function(){clearTimeout(i),lo&&cancelAnimationFrame(t),setTimeout(e)},i=setTimeout(n,100);lo&&(t=requestAnimationFrame(n))}function ht(e){var t=L,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),L=t}function nn(e){var t=L;e.__c=e.__(),L=t}function co(e,t){return!e||e.length!==t.length||t.some(function(n,i){return n!==e[i]})}function uo(e,t){return typeof t=="function"?t(e):t}function qs(e,t){for(var n in t)e[n]=t[n];return e}function fo(e,t){for(var n in e)if(n!=="__source"&&!(n in t))return!0;for(var i in t)if(i!=="__source"&&e[i]!==t[i])return!0;return!1}function po(e,t){this.props=e,this.context=t}(po.prototype=new le).isPureReactComponent=!0,po.prototype.shouldComponentUpdate=function(e,t){return fo(this.props,e)||fo(this.state,t)};var _o=P.__b;P.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),_o&&_o(e)};var Ws=P.__e;P.__e=function(e,t,n,i){if(e.then){for(var o,r=t;r=r.__;)if((o=r.__c)&&o.__c)return t.__e==null&&(t.__e=n.__e,t.__k=n.__k),o.__c(e,t)}Ws(e,t,n,i)};var vo=P.unmount;function go(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(i){typeof i.__c=="function"&&i.__c()}),e.__c.__H=null),(e=qs({},e)).__c!=null&&(e.__c.__P===n&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(i){return go(i,t,n)})),e}function bo(e,t,n){return e&&n&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(i){return bo(i,t,n)}),e.__c&&e.__c.__P===t&&(e.__e&&n.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=n)),e}function on(){this.__u=0,this.t=null,this.__b=null}function yo(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function mt(){this.u=null,this.o=null}P.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),vo&&vo(e)},(on.prototype=new le).__c=function(e,t){var n=t.__c,i=this;i.t==null&&(i.t=[]),i.t.push(n);var o=yo(i.__v),r=!1,l=function(){r||(r=!0,n.__R=null,o?o(s):s())};n.__R=l;var s=function(){if(!--i.__u){if(i.state.__a){var a=i.state.__a;i.__v.__k[0]=bo(a,a.__c.__P,a.__c.__O)}var c;for(i.setState({__a:i.__b=null});c=i.t.pop();)c.forceUpdate()}};i.__u++||32&t.__u||i.setState({__a:i.__b=i.__v.__k[0]}),e.then(l,l)},on.prototype.componentWillUnmount=function(){this.t=[]},on.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),i=this.__v.__k[0].__c;this.__v.__k[0]=go(this.__b,n,i.__O=i.__P)}this.__b=null}var o=t.__a&&Xt(se,null,e.fallback);return o&&(o.__u&=-33),[Xt(se,null,t.__a?null:e.children),o]};var ho=function(e,t,n){if(++n[1]===n[0]&&e.o.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.o.size))for(n=e.u;n;){for(;n.length>3;)n.pop()();if(n[1]<n[0])break;e.u=n=n[2]}};(mt.prototype=new le).__a=function(e){var t=this,n=yo(t.__v),i=t.o.get(e);return i[0]++,function(o){var r=function(){t.props.revealOrder?(i.push(o),ho(t,e,i)):o()};n?n(r):r()}},mt.prototype.render=function(e){this.u=null,this.o=new Map;var t=_t(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var n=t.length;n--;)this.o.set(t[n],this.u=[1,0,this.u]);return e.children},mt.prototype.componentDidUpdate=mt.prototype.componentDidMount=function(){var e=this;this.o.forEach(function(t,n){ho(e,n,t)})};var Xs=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,Zs=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,Js=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,Qs=/[A-Z0-9]/g,el=typeof document<"u",tl=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};le.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(le.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var mo=P.event;function nl(){}function il(){return this.cancelBubble}function ol(){return this.defaultPrevented}P.event=function(e){return mo&&(e=mo(e)),e.persist=nl,e.isPropagationStopped=il,e.isDefaultPrevented=ol,e.nativeEvent=e};var rl={enumerable:!1,configurable:!0,get:function(){return this.class}},wo=P.vnode;P.vnode=function(e){typeof e.type=="string"&&function(t){var n=t.props,i=t.type,o={};for(var r in n){var l=n[r];if(!(r==="value"&&"defaultValue"in n&&l==null||el&&r==="children"&&i==="noscript"||r==="class"||r==="className")){var s=r.toLowerCase();r==="defaultValue"&&"value"in n&&n.value==null?r="value":r==="download"&&l===!0?l="":s==="translate"&&l==="no"?l=!1:s==="ondoubleclick"?r="ondblclick":s!=="onchange"||i!=="input"&&i!=="textarea"||tl(n.type)?s==="onfocus"?r="onfocusin":s==="onblur"?r="onfocusout":Js.test(r)?r=s:i.indexOf("-")===-1&&Zs.test(r)?r=r.replace(Qs,"-$&").toLowerCase():l===null&&(l=void 0):s=r="oninput",s==="oninput"&&o[r=s]&&(r="oninputCapture"),o[r]=l}}i=="select"&&o.multiple&&Array.isArray(o.value)&&(o.value=_t(n.children).forEach(function(a){a.props.selected=o.value.indexOf(a.props.value)!=-1})),i=="select"&&o.defaultValue!=null&&(o.value=_t(n.children).forEach(function(a){a.props.selected=o.multiple?o.defaultValue.indexOf(a.props.value)!=-1:o.defaultValue==a.props.value})),n.class&&!n.className?(o.class=n.class,Object.defineProperty(o,"className",rl)):(n.className&&!n.class||n.class&&n.className)&&(o.class=o.className=n.className),t.props=o}(e),e.$$typeof=Xs,wo&&wo(e)};var Eo=P.__r;P.__r=function(e){Eo&&Eo(e),e.__c};var Oo=P.diffed;P.diffed=function(e){Oo&&Oo(e);var t=e.props,n=e.__e;n!=null&&e.type==="textarea"&&"value"in t&&t.value!==n.value&&(n.value=t.value==null?"":t.value)};var al=0;function p(e,t,n,i,o,r){t||(t={});var l,s,a=t;if("ref"in a)for(s in a={},t)s=="ref"?l=t[s]:a[s]=t[s];var c={type:e,props:a,key:n,ref:l,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--al,__i:-1,__u:0,__source:o,__self:r};if(typeof e=="function"&&(l=e.defaultProps))for(s in l)a[s]===void 0&&(a[s]=l[s]);return P.vnode&&P.vnode(c),c}function sl(e,t){t===void 0&&(t={});var n=t.insertAt;if(!(typeof document>"u")){var i=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",n==="top"&&i.firstChild?i.insertBefore(o,i.firstChild):i.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}var ll=`:root{--fides-overlay-primary-color:#2b2e35;--fides-overlay-background-color:#f7fafc;--fides-overlay-embed-background-color:transparent;--fides-overlay-font-color:#4a5568;--fides-overlay-font-color-dark:#2d3748;--fides-overlay-hover-color:#edf2f7;--fides-overlay-gpc-applied-background-color:#38a169;--fides-overlay-gpc-applied-text-color:#fff;--fides-overlay-gpc-overridden-background-color:#e53e3e;--fides-overlay-gpc-overridden-text-color:#fff;--fides-overlay-brand-link-logo-color:#2b2e35;--fides-overlay-background-dark-color:#e2e8f0;--fides-overlay-background-error-color:#f7c2c2;--fides-overlay-skeleton-gradient-from-color:rgba(0,0,0,.06);--fides-overlay-skeleton-gradient-to-color:rgba(0,0,0,.15);--fides-overlay-inactive-font-color:#a0aec0;--fides-overlay-primary-button-background-color:var(
|
|
2
2
|
--fides-overlay-primary-color
|
|
3
3
|
);--fides-overlay-primary-button-background-hover-color:#4f525b;--fides-overlay-primary-button-text-color:#fff;--fides-overlay-primary-button-border-color:transparent;--fides-overlay-secondary-button-background-color:var(
|
|
4
4
|
--fides-overlay-background-color
|
|
5
5
|
);--fides-overlay-secondary-button-background-hover-color:var(
|
|
6
6
|
--fides-overlay-hover-color
|
|
7
|
-
);--fides-overlay-secondary-button-text-color:#2d3748;--fides-overlay-secondary-button-border-color:var(
|
|
7
|
+
);--fides-overlay-neutral-background-color:#edf2f7;--fides-overlay-secondary-button-text-color:#2d3748;--fides-overlay-secondary-button-border-color:var(
|
|
8
8
|
--fides-overlay-primary-color
|
|
9
|
-
);--fides-overlay-title-font-color:var(--fides-overlay-font-color);--fides-overlay-body-font-color:var(--fides-overlay-font-color);--fides-overlay-link-font-color:var(--fides-overlay-font-color-dark);--fides-overlay-primary-active-color:var(--fides-overlay-primary-color);--fides-overlay-inactive-color:#e2e8f0;--fides-overlay-inactive-font-color:#a0aec0;--fides-overlay-disabled-color:#e1e7ee;--fides-overlay-row-divider-color:#e2e8f0;--fides-overlay-row-hover-color:var(--fides-overlay-hover-color);--fides-overlay-badge-background-color:#718096;--fides-overlay-badge-border-radius:4px;--fides-overlay-select-border-color:#e2e8f0;--fides-overlay-language-button-border-radius:4px;--fides-overlay-font-family:Inter,sans-serif;--fides-base-font-size:16px;--8px:calc(var(--fides-base-font-size)*0.5);--12px:calc(var(--fides-base-font-size)*0.75);--14px:calc(var(--fides-base-font-size)*0.875);--16px:calc(var(--fides-base-font-size)*1);--fides-overlay-font-size-body-xs:var(--8px);--fides-overlay-font-size-body-small:var(--12px);--fides-overlay-font-size-body:var(--14px);--fides-overlay-font-size-title:var(--16px);--fides-overlay-font-size-buttons:var(--14px);--fides-overlay-padding:24px;--fides-overlay-button-border-radius:6px;--fides-overlay-button-padding:8px 16px;--fides-overlay-link-v-padding:4px;--fides-overlay-link-h-padding:4px;--fides-overlay-link-padding:var(--fides-overlay-link-v-padding) var(--fides-overlay-link-h-padding);--fides-overlay-container-border-radius:12px;--fides-overlay-container-border-width:1px;--fides-overlay-component-border-radius:4px;--fides-overlay-banner-offset:48px;--fides-banner-font-size-title:var(--16px);--fides-overlay-language-loading-indicator-speed:5s;--fides-overlay-modal-secondary-button-group-height:calc(var(--fides-overlay-font-size-body) + var(--fides-overlay-link-v-padding)*2)}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}div.fides-overlay{position:fixed;z-index:1000}div#fides-overlay-wrapper *{box-sizing:border-box}.fides-banner,.fides-modal-container{-webkit-font-smoothing:antialiased;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);line-height:1.4em;white-space:pre-line}#fides-modal-link{cursor:pointer;display:none}#fides-modal-link.fides-modal-link-shown{display:inline}div#fides-banner-container:not(.fides-embedded){display:flex;justify-content:center;position:fixed;transform:translateY(0);transition:transform 1s,visibility 1s;visibility:visible;width:100%;z-index:1}div#fides-banner{align-items:center;background:var(--fides-overlay-background-color);border-top:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:var(--fides-overlay-font-size-body);justify-content:space-between;overflow-y:hidden;padding:24px;position:relative}.fides-embedded div#fides-banner{border:none}div#fides-banner-inner{width:100%}div#fides-banner-container.fides-banner-bottom{bottom:0;left:0}div#fides-banner-container.fides-banner-hidden{visibility:hidden}div#fides-banner-container.fides-banner-hidden.fides-embedded{display:none}div#fides-banner-container.fides-banner-bottom.fides-banner-hidden{transform:translateY(150%)}div#fides-banner-container.fides-banner-top{left:0;top:0}div#fides-banner-container.fides-banner-top.fides-banner-hidden{transform:translateY(-150%)}div#fides-banner-inner div#fides-button-group{align-items:center;flex-direction:row-reverse;margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0;width:100%}.fides-modal-footer div#fides-button-group{align-items:center;flex-direction:column;gap:12px;margin-inline:var(--fides-overlay-padding)}div#fides-banner-heading{align-items:center;display:flex;margin-right:13px}.fides-banner-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-banner-font-size-title);font-weight:600;line-height:1.5em;margin:0}.fides-banner-description{flex:1;font-size:var(--fides-overlay-font-size-body);margin-bottom:24px;margin-top:16px}.fides-banner-description .fides-link-button,.fides-banner-description a,.fides-modal-description .fides-link-button,.fides-modal-description a{color:var(--fides-overlay-primary-color);font-weight:600;text-decoration:underline}div#fides-banner-notices{margin-top:16px}div#fides-button-group{background-color:var(--fides-overlay-background-color);display:flex;justify-content:space-between;margin-bottom:var(--fides-overlay-padding);margin-top:8px;z-index:5}button.fides-banner-button{align-items:center;background:var(--fides-overlay-primary-button-background-color);border:1px solid;border-radius:var(--fides-overlay-button-border-radius);color:var(--fides-overlay-primary-button-text-color);cursor:pointer;display:flex;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-buttons);font-weight:600;justify-content:center;margin:4px 0 0;padding:var(--fides-overlay-button-padding);text-decoration:none}button.fides-banner-button:focus,button.fides-banner-button:hover,button.fides-banner-button[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-primary{background:var(--fides-overlay-primary-button-background-color);border:none;color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-banner-button-primary:focus,button.fides-banner-button.fides-banner-button-primary:hover,button.fides-banner-button.fides-banner-button-primary[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-secondary{background:var(--fides-overlay-secondary-button-background-color);border:1px solid var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-secondary-button-text-color)}button.fides-banner-button.fides-banner-button-secondary:focus,button.fides-banner-button.fides-banner-button-secondary:hover,button.fides-banner-button.fides-banner-button-secondary[disabled]{background:var(--fides-overlay-secondary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-tertiary{background:none;border:none;color:var(--fides-overlay-link-font-color);cursor:pointer;font-size:var(--fides-overlay-font-size-body);font-weight:500;line-height:1.25em;padding:0;text-decoration:underline}button.fides-banner-button.fides-acknowledge-button{min-width:160px}.fides-spinner{animation:spin 1s linear infinite;border-color:currentcolor currentcolor transparent transparent;border-radius:50%;border-style:solid;border-width:2px;border-right:2px solid var(--fides-overlay-primary-color);border-top:2px solid var(--fides-overlay-primary-color);height:1em;margin-left:8px;width:1em}.fides-banner-button-primary .fides-spinner{border-right-color:var(--fides-overlay-primary-button-text-color);border-top-color:var(--fides-overlay-primary-button-text-color)}.fides-banner-button-secondary .fides-spinner{border-right-color:var(--fides-overlay-secondary-button-border-color);border-top-color:var(--fides-overlay-secondary-button-border-color)}div.fides-modal-content{background-color:var(--fides-overlay-background-color);border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-container-border-radius);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:min(680px,100vh);overflow-x:hidden;overflow-y:auto;padding:0;position:fixed;top:50%;transform:translate(-50%,-50%);width:var(--fides-overlay-width);z-index:2}.fides-modal-container,.fides-modal-overlay{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0}div#fides-embed-container div#fides-consent-content .fides-modal-footer{position:inherit}div#fides-embed-container .fides-modal-body{padding-top:16px}div#fides-embed-container div#fides-consent-content{background-color:var(--fides-overlay-background-color);border:none;border-radius:var(--fides-overlay-container-border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:none;overflow:hidden;padding:0;position:static;top:50%;transform:none;width:var(--fides-overlay-width)}.fides-modal-container{display:flex;z-index:2}.fides-modal-container[aria-hidden=true]{display:none}div#fides-modal .fides-modal-header{display:flex;justify-content:end}div#fides-consent-content{overflow:auto;scrollbar-gutter:stable}div#fides-consent-content .fides-modal-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-overlay-font-size-title);font-weight:600;margin:0;text-align:center}div#fides-consent-content .fides-modal-body{height:100%;overflow-y:auto;padding-inline:var(--fides-overlay-padding)}.fides-modal-footer{background-color:var(--fides-overlay-background-color);border-bottom-left-radius:var(--fides-overlay-component-border-radius);border-bottom-right-radius:var(--fides-overlay-component-border-radius);bottom:0;display:flex;flex-direction:column;max-width:var(--fides-overlay-width);position:relative;width:100%;z-index:5}div#fides-consent-content .fides-modal-description{margin:8px 0 24px}.fides-banner-button-group{align-items:center;display:flex;gap:12px}.fides-modal-button-group{display:flex;flex-direction:row;gap:12px;margin-inline:var(--fides-overlay-padding);width:100%}.fides-modal-primary-actions .fides-banner-button{flex:1}.fides-banner-secondary-actions{justify-content:space-between}.fides-modal-secondary-actions{justify-content:center}.fides-modal-footer .fides-button-group-brand{min-height:var(--fides-overlay-modal-secondary-button-group-height)}.fides-modal-secondary-actions .fides-brand{align-items:center;bottom:var(--fides-overlay-padding);display:flex;font-size:var(--fides-overlay-font-size-body-xs);justify-content:center;position:absolute;right:var(--fides-overlay-padding)}.fides-modal-secondary-actions .fides-brand-link{align-items:center;color:var(--fides-overlay-font-color);display:flex;gap:4px;text-decoration:none}.fides-modal-secondary-actions .fides-brand .ethyca-logo{color:var(--fides-overlay-brand-link-logo-color)}.fides-banner-secondary-actions{gap:36px}.fides-no-scroll{overflow:hidden}div#fides-banner .fides-close-button{display:flex;position:absolute;right:0;top:0}.fides-modal-header .fides-close-button,div#fides-banner .fides-close-button{background:none;border:none;cursor:pointer;padding-right:8px;padding-top:8px}.fides-close-button:hover{background:var(--fides-overlay-hover-color)}.fides-embedded .fides-close-button{display:none!important}.fides-modal-notices{margin-bottom:16px}.fides-privacy-policy{color:var(--fides-overlay-primary-color);display:block;font-family:var(--fides-overlay-font-family);text-align:center}.fides-privacy-policy,button.fides-banner-button.fides-banner-button-tertiary,button.fides-i18n-button{line-height:1;margin:0;padding:var(--fides-overlay-link-padding)}@media (prefers-reduced-motion:reduce){.fides-toggle-display{transition-duration:0ms}}.fides-toggle{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1ch;position:relative}.fides-toggle .fides-toggle-input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%;z-index:4}.fides-toggle .fides-toggle-display{--offset:4px;--diameter:16px;align-items:center;background-color:var(--fides-overlay-inactive-color);border-radius:100vw;box-sizing:content-box;color:var(--fides-overlay-inactive-font-color);display:inline-flex!important;height:24px;justify-content:space-around;justify-content:end;padding-inline:8px;position:relative;transition:.25s;width:34px}div#fides-overlay-wrapper .fides-toggle .fides-toggle-display{box-sizing:content-box}.fides-toggle .fides-toggle-display:before{background-color:#fff;border-radius:50%;box-shadow:0 1.3px 2.7px rgba(0,0,0,.25);box-sizing:border-box;content:"";height:var(--diameter);left:var(--offset);position:absolute;top:50%;transform:translateY(-50%);transition:inherit;width:var(--diameter);z-index:3}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display{background-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-button-text-color);justify-content:start}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display:before{transform:translate(26px,-50%)}.fides-toggle .fides-toggle-input:disabled{cursor:not-allowed}.fides-toggle .fides-toggle-input:disabled+.fides-toggle-display,.fides-toggle .fides-toggle-input:disabled:checked+.fides-toggle-display{background-color:var(--fides-overlay-disabled-color)}.fides-toggle .fides-toggle-input:focus+.fides-toggle-display{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-toggle .fides-toggle-input:focus:not(:focus-visible)+.fides-toggle-display{outline:0}.fides-divider{border-color:var(--fides-overlay-row-divider-color);border-width:0 0 1px;margin:0}.fides-disclosure-hidden{display:flex;height:0;margin-bottom:0;margin-top:0;overflow:hidden;visibility:hidden}.fides-notice-toggle .fides-notice-toggle-title{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;padding-inline:12px 12px}.fides-notice-toggle .fides-notice-toggle-trigger{align-items:center;display:flex;justify-content:flex-end;min-height:40px}.fides-notice-toggle .fides-notice-toggle-trigger svg{flex-shrink:0}.fides-notice-toggle .fides-notice-toggle-title:hover{background-color:var(--fides-overlay-row-hover-color);cursor:pointer}.fides-notice-toggle .fides-notice-toggle-trigger:before{border-style:solid;border-width:2px 2px 0 0;content:"";display:inline-block;height:8px;margin-right:calc(var(--8px) + 2px);min-width:8px;transform:translateY(-2px) rotate(135deg);transition:transform .12s ease-in-out}.fides-notice-toggle.fides-notice-toggle-expanded .fides-notice-toggle-trigger:before{transform:translateY(2px) rotate(-45deg)}.fides-notice-toggle .fides-disclosure-visible{display:flex;flex-direction:column;gap:12px;overflow:auto;padding:12px}.fides-notice-toggle p{margin:0 0 18px}.fides-notice-toggle p:last-child{margin:0}.fides-notice-toggle-title .fides-flex-center{align-items:center;display:flex;white-space:wrap;width:100%}.fides-notice-toggle-expanded{background-color:var(--fides-overlay-row-hover-color)}.fides-notice-toggle-header{font-weight:600}.fides-notice-toggle-controls{align-items:center;display:flex;gap:8px;margin-left:8px;white-space:nowrap}.fides-gpc-banner{border:1px solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);display:flex;margin-bottom:16px;padding:18px}.fides-gpc-banner p{margin:0}.fides-gpc-warning{color:var(--fides-overlay-primary-color);margin-right:8px}.fides-gpc-header{font-weight:700}.fides-gpc-label{display:inline-flex;font-size:var(--fides-overlay-font-size-body);font-weight:600;padding:0 8px;white-space:nowrap}.fides-gpc-badge{border-radius:var(--fides-overlay-badge-border-radius);display:inline-flex;font-weight:700;margin-left:4px;padding:0 4px;text-transform:uppercase}.fides-gpc-badge-applied,.fides-gpc-badge-detected{background:var(--fides-overlay-gpc-applied-background-color);color:var(--fides-overlay-gpc-applied-text-color)}.fides-gpc-badge-overridden{background:var(--fides-overlay-gpc-overridden-background-color);color:var(--fides-overlay-gpc-overridden-text-color)}.fides-tab-list{display:flex;list-style-type:none;padding:0}.fides-tab-list>li{width:100%}.fides-tab-button{background:none;border-width:0 0 1px;border-bottom:1px solid var(--fides-overlay-row-divider-color);color:var(--fides-overlay-body-font-color);cursor:pointer;font-weight:500;padding:10px 20px;width:100%}.fides-tab-button[aria-selected=true]{border-bottom-width:2px;border-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-active-color);font-weight:600}.fides-tab-button::focus-visible{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-tab-button:focus:not(:focus-visible){outline:0}.fides-notice-badge{align-items:center;background:var(--fides-overlay-badge-background-color);border-radius:var(--fides-overlay-badge-border-radius);color:#fff;display:inline-flex;font-size:var(--fides-overlay-font-size-body-small);font-weight:600;height:18px;padding:0 4px;text-transform:uppercase}.fides-background-dark{background-color:var(--fides-overlay-background-dark-color)}.fides-radio-button-group{background-color:var(
|
|
9
|
+
);--fides-overlay-secondary-button-border-color-disabled:#a0aec0;--fides-overlay-title-font-color:var(--fides-overlay-font-color);--fides-overlay-body-font-color:var(--fides-overlay-font-color);--fides-overlay-link-font-color:var(--fides-overlay-font-color-dark);--fides-overlay-line-height:1.4em;--fides-overlay-primary-active-color:var(--fides-overlay-primary-color);--fides-overlay-inactive-color:#e2e8f0;--fides-overlay-disabled-color:#e1e7ee;--fides-overlay-row-divider-color:#e2e8f0;--fides-overlay-row-hover-color:var(--fides-overlay-hover-color);--fides-overlay-badge-background-color:#718096;--fides-overlay-badge-border-radius:4px;--fides-overlay-select-border-color:#e2e8f0;--fides-overlay-language-button-border-radius:4px;--fides-overlay-width:680px;--fides-overlay-font-family:Inter,sans-serif;--fides-base-font-size:16px;--8px:calc(var(--fides-base-font-size)*0.5);--12px:calc(var(--fides-base-font-size)*0.75);--14px:calc(var(--fides-base-font-size)*0.875);--16px:calc(var(--fides-base-font-size)*1);--fides-overlay-font-size-body-xs:var(--8px);--fides-overlay-font-size-body-small:var(--12px);--fides-overlay-font-size-body:var(--14px);--fides-overlay-font-size-title:var(--16px);--fides-overlay-font-size-buttons:var(--14px);--fides-overlay-padding:24px;--fides-overlay-button-border-radius:6px;--fides-overlay-button-padding:8px 16px;--fides-overlay-link-v-padding:4px;--fides-overlay-link-h-padding:4px;--fides-overlay-link-padding:var(--fides-overlay-link-v-padding) var(--fides-overlay-link-h-padding);--fides-overlay-container-border-radius:12px;--fides-overlay-container-border-width:1px;--fides-overlay-component-border-radius:4px;--fides-overlay-banner-offset:48px;--fides-banner-font-size-title:var(--16px);--fides-overlay-language-loading-indicator-speed:5s;--fides-overlay-modal-secondary-button-group-height:calc(var(--fides-overlay-font-size-body) + var(--fides-overlay-link-v-padding)*2)}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}div.fides-overlay{position:fixed;z-index:1000}div#fides-overlay-wrapper *{box-sizing:border-box}.fides-banner,.fides-modal-container{-webkit-font-smoothing:antialiased;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);line-height:var(--fides-overlay-line-height);white-space:pre-line}#fides-modal-link{cursor:pointer;display:none}#fides-modal-link.fides-modal-link-shown{display:inline}div#fides-banner-container:not(.fides-embedded){display:flex;justify-content:center;position:fixed;transform:translateY(0);transition:transform 1s,visibility 1s;visibility:visible;width:100%;z-index:1}div#fides-banner{align-items:center;background:var(--fides-overlay-background-color);border-top:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:var(--fides-overlay-font-size-body);justify-content:space-between;overflow-y:hidden;padding:24px;position:relative}.fides-embedded div#fides-banner{border:none}div#fides-banner-inner{width:100%}div#fides-banner-container.fides-banner-bottom{bottom:0;left:0}div#fides-banner-container.fides-banner-hidden{visibility:hidden}div#fides-banner-container.fides-banner-hidden.fides-embedded{display:none}div#fides-banner-container.fides-banner-bottom.fides-banner-hidden{transform:translateY(150%)}div#fides-banner-container.fides-banner-top{left:0;top:0}div#fides-banner-container.fides-banner-top.fides-banner-hidden{transform:translateY(-150%)}div#fides-banner-inner div#fides-button-group{align-items:center;flex-direction:row-reverse;margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0;width:100%}.fides-modal-footer div#fides-button-group{align-items:center;flex-direction:column;gap:12px;margin-inline:var(--fides-overlay-padding)}div#fides-banner-heading{align-items:center;display:flex;justify-content:space-between;margin-right:13px}.fides-banner-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-banner-font-size-title);font-weight:600;line-height:1.5em;margin:0}.fides-banner-description{flex:1;font-size:var(--fides-overlay-font-size-body);margin-bottom:24px;margin-top:16px}.fides-banner-description .fides-link-button,.fides-banner-description a,.fides-modal-description .fides-link-button,.fides-modal-description a{color:var(--fides-overlay-primary-color);font-weight:600;text-decoration:underline}div#fides-banner-notices{margin-top:16px}div#fides-button-group{background-color:var(--fides-overlay-background-color);display:flex;justify-content:space-between;margin-bottom:var(--fides-overlay-padding);margin-top:8px;z-index:5}button.fides-banner-button{align-items:center;background:var(--fides-overlay-primary-button-background-color);border:1px solid;border-radius:var(--fides-overlay-button-border-radius);color:var(--fides-overlay-primary-button-text-color);cursor:pointer;display:flex;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-buttons);font-weight:600;justify-content:center;margin:4px 0 0;padding:var(--fides-overlay-button-padding);text-decoration:none}button.fides-banner-button:focus,button.fides-banner-button:hover,button.fides-banner-button[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-primary{background:var(--fides-overlay-primary-button-background-color);border:none;color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-banner-button-primary:focus,button.fides-banner-button.fides-banner-button-primary:hover,button.fides-banner-button.fides-banner-button-primary[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-secondary{background:var(--fides-overlay-secondary-button-background-color);border:1px solid var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-secondary-button-text-color)}button.fides-banner-button.fides-banner-button-secondary:focus,button.fides-banner-button.fides-banner-button-secondary:hover,button.fides-banner-button.fides-banner-button-secondary[disabled]{background:var(--fides-overlay-secondary-button-background-hover-color)}button.fides-banner-button[disabled]{color:var(--fides-overlay-inactive-font-color)}button.fides-banner-button.fides-banner-button-secondary[disabled]{border-color:var(--fides-overlay-secondary-button-border-color-disabled)}button.fides-banner-button.fides-banner-button-tertiary{background:none;border:none;color:var(--fides-overlay-link-font-color);cursor:pointer;font-size:var(--fides-overlay-font-size-body);font-weight:500;line-height:1.25em;padding:0;text-decoration:underline}button.fides-banner-button.fides-acknowledge-button{min-width:160px}.fides-spinner{animation:spin 1s linear infinite;border-color:currentcolor currentcolor transparent transparent;border-radius:50%;border-style:solid;border-width:2px;border-right:2px solid var(--fides-overlay-skeleton-gradient-from-color);border-top:2px solid var(--fides-overlay-skeleton-gradient-from-color);height:1em;margin-left:8px;width:1em}.fides-banner-button-primary .fides-spinner{border-right-color:var(--fides-overlay-primary-button-text-color);border-top-color:var(--fides-overlay-primary-button-text-color)}.fides-banner-button-secondary .fides-spinner{border-right-color:var(--fides-overlay-inactive-font-color);border-top-color:var(--fides-overlay-inactive-font-color)}div.fides-modal-content{background-color:var(--fides-overlay-background-color);border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-container-border-radius);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:min(680px,100vh);overflow-x:hidden;overflow-y:auto;padding:0;position:fixed;top:50%;transform:translate(-50%,-50%);width:var(--fides-overlay-width);z-index:2}.fides-modal-container,.fides-modal-overlay{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0}div#fides-embed-container div#fides-consent-content .fides-modal-footer{position:inherit}div#fides-embed-container .fides-modal-body{padding-top:16px}div#fides-embed-container div#fides-consent-content{background-color:var(--fides-overlay-background-color);border:none;border-radius:var(--fides-overlay-container-border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:none;overflow:hidden;padding:0;position:static;top:50%;transform:none;width:var(--fides-overlay-width)}.fides-modal-container{display:flex;z-index:2}.fides-modal-container[aria-hidden=true]{display:none}div#fides-modal .fides-modal-header{display:flex;justify-content:end}div#fides-consent-content{overflow:auto;scrollbar-gutter:stable}div#fides-consent-content .fides-modal-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-overlay-font-size-title);font-weight:600;margin:0;text-align:center}div#fides-consent-content .fides-modal-body{height:100%;overflow-y:auto;padding-inline:var(--fides-overlay-padding)}.fides-modal-footer{background-color:var(--fides-overlay-background-color);border-bottom-left-radius:var(--fides-overlay-component-border-radius);border-bottom-right-radius:var(--fides-overlay-component-border-radius);bottom:0;display:flex;flex-direction:column;max-width:var(--fides-overlay-width);position:relative;width:100%;z-index:5}div#fides-consent-content .fides-modal-description{margin:8px 0 24px}.fides-banner-button-group{align-items:center;display:flex;gap:12px}.fides-modal-button-group{display:flex;flex-direction:row;gap:12px;margin-inline:var(--fides-overlay-padding);width:100%}.fides-modal-primary-actions .fides-banner-button{flex:1}.fides-banner-secondary-actions{justify-content:space-between}.fides-modal-secondary-actions{justify-content:center}.fides-modal-footer .fides-button-group-brand{min-height:var(--fides-overlay-modal-secondary-button-group-height)}.fides-modal-secondary-actions .fides-brand{align-items:center;bottom:var(--fides-overlay-padding);display:flex;font-size:var(--fides-overlay-font-size-body-xs);justify-content:center;position:absolute;right:var(--fides-overlay-padding)}.fides-modal-secondary-actions .fides-brand-link{align-items:center;color:var(--fides-overlay-font-color);display:flex;gap:4px;text-decoration:none}.fides-modal-secondary-actions .fides-brand .ethyca-logo{color:var(--fides-overlay-brand-link-logo-color)}.fides-banner-secondary-actions{gap:36px}.fides-no-scroll{overflow:hidden}div#fides-banner .fides-close-button{display:flex;position:absolute;right:0;top:0}.fides-modal-header .fides-close-button,div#fides-banner .fides-close-button{background:none;border:none;cursor:pointer;padding-right:8px;padding-top:8px}.fides-close-button:hover{background:var(--fides-overlay-hover-color)}.fides-embedded .fides-close-button{display:none!important}.fides-modal-notices{margin-bottom:16px}.fides-privacy-policy{color:var(--fides-overlay-primary-color);display:block;font-family:var(--fides-overlay-font-family);text-align:center}.fides-privacy-policy,button.fides-banner-button.fides-banner-button-tertiary,button.fides-i18n-button{line-height:1;margin:0;padding:var(--fides-overlay-link-padding)}@media (prefers-reduced-motion:reduce){.fides-toggle-display{transition-duration:0ms}}.fides-toggle{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1ch;position:relative}.fides-toggle .fides-toggle-input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%;z-index:4}.fides-toggle .fides-toggle-display{--offset:4px;--diameter:16px;align-items:center;background-color:var(--fides-overlay-inactive-color);border-radius:100vw;box-sizing:content-box;color:var(--fides-overlay-inactive-font-color);display:inline-flex!important;height:24px;justify-content:space-around;justify-content:end;padding-inline:8px;position:relative;transition:.25s;width:34px}div#fides-overlay-wrapper .fides-toggle .fides-toggle-display{box-sizing:content-box}.fides-toggle .fides-toggle-display:before{background-color:#fff;border-radius:50%;box-shadow:0 1.3px 2.7px rgba(0,0,0,.25);box-sizing:border-box;content:"";height:var(--diameter);left:var(--offset);position:absolute;top:50%;transform:translateY(-50%);transition:inherit;width:var(--diameter);z-index:3}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display{background-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-button-text-color);justify-content:start}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display:before{transform:translate(26px,-50%)}.fides-toggle .fides-toggle-input:disabled{cursor:not-allowed}.fides-toggle .fides-toggle-input:disabled+.fides-toggle-display,.fides-toggle .fides-toggle-input:disabled:checked+.fides-toggle-display{background-color:var(--fides-overlay-disabled-color)}.fides-toggle .fides-toggle-input:focus+.fides-toggle-display{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-toggle .fides-toggle-input:focus:not(:focus-visible)+.fides-toggle-display{outline:0}.fides-divider{border-color:var(--fides-overlay-row-divider-color);border-width:0 0 1px;margin:0}.fides-disclosure-hidden{display:flex;height:0;margin-bottom:0;margin-top:0;overflow:hidden;visibility:hidden}.fides-notice-toggle .fides-notice-toggle-title{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;padding-inline:12px 12px}.fides-notice-toggle .fides-notice-toggle-trigger{align-items:center;display:flex;flex-grow:1;justify-content:flex-end;min-height:40px}.fides-notice-toggle .fides-notice-toggle-trigger svg{flex-shrink:0}.fides-notice-toggle .fides-notice-toggle-title:hover{background-color:var(--fides-overlay-row-hover-color);cursor:pointer}.fides-notice-toggle .fides-notice-toggle-trigger:before{border-style:solid;border-width:2px 2px 0 0;content:"";display:inline-block;height:8px;margin-right:calc(var(--8px) + 2px);min-width:8px;transform:translateY(-2px) rotate(135deg);transition:transform .12s ease-in-out}.fides-notice-toggle.fides-notice-toggle-expanded .fides-notice-toggle-trigger:before{transform:translateY(2px) rotate(-45deg)}.fides-notice-toggle .fides-disclosure-visible{display:flex;flex-direction:column;gap:12px;overflow:auto;padding:12px}.fides-notice-toggle p{margin:0 0 18px}.fides-notice-toggle p:last-child{margin:0}.fides-notice-toggle-title .fides-flex-center{align-items:center;display:flex;white-space:wrap;width:100%}.fides-notice-toggle-expanded{background-color:var(--fides-overlay-row-hover-color)}.fides-notice-toggle-header{font-weight:600}.fides-notice-toggle-controls{align-items:center;display:flex;gap:8px;margin-left:8px;white-space:nowrap}.fides-gpc-banner{border:1px solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);display:flex;margin-bottom:16px;padding:18px}.fides-gpc-banner p{margin:0}.fides-gpc-warning{color:var(--fides-overlay-primary-color);margin-right:8px}.fides-gpc-header{font-weight:700}.fides-gpc-label{display:inline-flex;font-size:var(--fides-overlay-font-size-body);font-weight:600;padding:0 8px;white-space:nowrap}.fides-gpc-badge{border-radius:var(--fides-overlay-badge-border-radius);display:inline-flex;font-weight:700;margin-left:4px;padding:0 4px;text-transform:uppercase}.fides-gpc-badge-applied,.fides-gpc-badge-detected{background:var(--fides-overlay-gpc-applied-background-color);color:var(--fides-overlay-gpc-applied-text-color)}.fides-gpc-badge-overridden{background:var(--fides-overlay-gpc-overridden-background-color);color:var(--fides-overlay-gpc-overridden-text-color)}.fides-tab-list{display:flex;list-style-type:none;padding:0}.fides-tab-list>li{width:100%}.fides-tab-button{background:none;border-width:0 0 1px;border-bottom:1px solid var(--fides-overlay-row-divider-color);color:var(--fides-overlay-body-font-color);cursor:pointer;font-weight:500;padding:10px 20px;width:100%}.fides-tab-button[aria-selected=true]{border-bottom-width:2px;border-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-active-color);font-weight:600}.fides-tab-button::focus-visible{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-tab-button:focus:not(:focus-visible){outline:0}.fides-notice-badge{align-items:center;background:var(--fides-overlay-badge-background-color);border-radius:var(--fides-overlay-badge-border-radius);color:#fff;display:inline-flex;font-size:var(--fides-overlay-font-size-body-small);font-weight:600;height:18px;padding:0 4px;text-transform:uppercase}.fides-background-dark{background-color:var(--fides-overlay-background-dark-color)}.fides-radio-button-group{background-color:var(
|
|
10
10
|
--fides-overlay-secondary-button-background-hover-color
|
|
11
|
-
);border:1px solid var(--fides-overlay-row-divider-color);display:flex;margin-bottom:22px;padding:4px}.fides-radio-button{background-color:transparent;border:none;cursor:pointer;flex:1;padding:5px 16px}.fides-radio-button[aria-checked=true]{background-color:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}.fides-flex-center{align-items:center;display:flex}.fides-margin-right{margin-right:3px}.fides-justify-space-between{justify-content:space-between}.fides-vendor-details-table{width:100%}.fides-vendor-details-table td,.fides-vendor-details-table th{font-size:var(--fides-overlay-font-size-body-small);text-align:left}.fides-vendor-details-table td{border-bottom:1px solid var(--fides-overlay-row-divider-color)}.fides-link-button{background:none;border:none;cursor:pointer;padding:0}.fides-external-link,.fides-primary-text-color{color:var(--fides-overlay-primary-color)}.fides-external-link{font-size:var(--fides-overlay-font-size-body-small);font-weight:500;margin-right:16px}.fides-info-box{background-color:var(--fides-overlay-hover-color);border-radius:var(--fides-overlay-component-border-radius);margin:10px 0;padding:16px}.fides-info-box p{margin:0}.fides-tabs .tabpanel-container{overflow:hidden}.tabpanel-container section[hidden]{display:none}.fides-paging-buttons{display:flex;gap:8px;justify-content:center}.fides-paging-info{color:var(--fides-overlay-font-color-dark);font-size:var(--fides-overlay-font-size-body-small);font-weight:600;padding:8px}.fides-paging-previous-button{margin-right:8px}.fides-paging-next-button,.fides-paging-previous-button{background-color:transparent;border:none;cursor:pointer;padding:6px}.fides-paging-next-button:disabled,.fides-paging-previous-button:disabled{cursor:default}.fides-i18n-menu{position:relative}.fides-modal-footer .fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}.fides-modal-footer .fides-button-group-i18n{min-height:var(--fides-overlay-modal-secondary-button-group-height)}button.fides-i18n-button{align-items:center;background-color:transparent;border:none;color:var(--fides-overlay-body-font-color);cursor:pointer;display:flex;flex-direction:row;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);gap:2px;height:var(--fides-overlay-font-size-body);text-transform:uppercase;white-space:nowrap}#fides-i18n-icon{animation-duration:var(--fides-overlay-language-loading-indicator-speed);animation-iteration-count:infinite;animation-timing-function:linear;transform-origin:50% 50%}div#fides-overlay-wrapper .fides-i18n-button{box-sizing:content-box}.fides-i18n-popover{background-color:var(--fides-overlay-background-dark-color);border-radius:var(--fides-overlay-component-border-radius);bottom:100%;display:flex;flex-direction:column;gap:1px;left:0;max-height:0;min-width:calc(var(--fides-base-font-size)*9);overflow:hidden;position:absolute;transition:max-height .2s ease-in-out}.fides-i18n-menu-open .fides-i18n-popover{border:1px solid var(--fides-overlay-primary-color);max-height:calc(var(--fides-base-font-size)*7);overflow:scroll}.fides-i18n-button:hover{background-color:var(--fides-overlay-hover-color);border-radius:var(--fides-overlay-language-button-border-radius)}.fides-i18n-menu-open .fides-i18n-caret{transform:rotate(180deg)}button.fides-banner-button.fides-menu-item{background:var(--fides-overlay-secondary-button-background-color);border:none;border-radius:0;color:var(--fides-overlay-secondary-button-text-color);margin:0;padding-left:calc(var(--fides-base-font-size)*1.5);text-align:left;width:100%}button.fides-banner-button.fides-menu-item[aria-pressed=true]{background:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-menu-item[aria-pressed=true]:before{content:"\\2713";display:inline-block;margin-left:calc(var(--fides-base-font-size)*-1);margin-right:calc(var(--fides-base-font-size)*.25)}button.fides-banner-button.fides-menu-item:not([aria-pressed=true]):hover{background:var(--fides-overlay-secondary-button-background-hover-color)}@media (min-width:1280px){div#fides-banner{width:60%}}@media (min-width:768px){div#fides-banner{border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);width:75%}div#fides-banner-container.fides-banner-bottom{bottom:var(--fides-overlay-banner-offset)}}@media (max-width:768px){div#fides-consent-content,div.fides-modal-content{width:100%!important}.fides-modal-button-group{flex-direction:column}button.fides-banner-button{margin:0 8px 12px 0}div#fides-banner{padding:24px;width:100%}div#fides-banner-description{margin-bottom:0}div#fides-banner-inner div#fides-button-group{align-items:flex-start;flex-direction:column;gap:12px;padding-top:24px}.fides-banner-button-group{flex-direction:column;width:100%}button.fides-banner-button{margin:0;width:100%}div#fides-banner-inner-container{max-height:50vh;overflow-y:auto;scrollbar-gutter:stable}div.fides-privacy-policy-link{width:100%}.fides-modal-footer{max-width:100%}.fides-banner-secondary-actions{gap:12px}.fides-banner-secondary-actions .fides-manage-preferences-button{order:0}.fides-banner-secondary-actions .fides-privacy-policy{order:1}.fides-banner-secondary-actions .fides-i18n-menu{order:2}.fides-banner-button-group.fides-button-group-i18n{min-height:68px}.fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}}`;Bs(Hs);var Oe,S,Jt,Xi,De=0,Qi=[],j=O,eo=j.__b,to=j.__r,no=j.diffed,io=j.__c,oo=j.unmount,ro=j.__;function bt(e,t){j.__h&&j.__h(S,e,De||t),De=0;var n=S.__H||(S.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function H(e){return De=1,Vs(lo,e)}function Vs(e,t,n){var i=bt(Oe++,2);if(i.t=e,!i.__c&&(i.__=[n?n(t):lo(void 0,t),function(s){var a=i.__N?i.__N[0]:i.__[0],c=i.t(a,s);a!==c&&(i.__N=[c,i.__[1]],i.__c.setState({}))}],i.__c=S,!S.u)){var o=function(s,a,c){if(!i.__c.__H)return!0;var u=i.__c.__H.__.filter(function(y){return!!y.__c});if(u.every(function(y){return!y.__N}))return!r||r.call(this,s,a,c);var d=!1;return u.forEach(function(y){if(y.__N){var f=y.__[0];y.__=y.__N,y.__N=void 0,f!==y.__[0]&&(d=!0)}}),!(!d&&i.__c.props===s)&&(!r||r.call(this,s,a,c))};S.u=!0;var r=S.shouldComponentUpdate,l=S.componentWillUpdate;S.componentWillUpdate=function(s,a,c){if(this.__e){var u=r;r=void 0,o(s,a,c),r=u}l&&l.call(this,s,a,c)},S.shouldComponentUpdate=o}return i.__N||i.__}function L(e,t){var n=bt(Oe++,3);!j.__s&&so(n.__H,t)&&(n.__=e,n.i=t,S.__H.__h.push(n))}function Me(e){return De=5,me(function(){return{current:e}},[])}function me(e,t){var n=bt(Oe++,7);return so(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function F(e,t){return De=8,me(function(){return e},t)}function Re(e){var t=S.context[e.__c],n=bt(Oe++,9);return n.c=e,t?(n.__==null&&(n.__=!0,t.sub(S)),t.props.value):e.__}function Ks(){for(var e;e=Qi.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(yt),e.__H.__h.forEach(Xt),e.__H.__h=[]}catch(t){e.__H.__h=[],j.__e(t,e.__v)}}j.__b=function(e){S=null,eo&&eo(e)},j.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),ro&&ro(e,t)},j.__r=function(e){to&&to(e),Oe=0;var t=(S=e.__c).__H;t&&(Jt===S?(t.__h=[],S.__h=[],t.__.forEach(function(n){n.__N&&(n.__=n.__N),n.i=n.__N=void 0})):(t.__h.forEach(yt),t.__h.forEach(Xt),t.__h=[],Oe=0)),Jt=S},j.diffed=function(e){no&&no(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(Qi.push(t)!==1&&Xi===j.requestAnimationFrame||((Xi=j.requestAnimationFrame)||Ys)(Ks)),t.__H.__.forEach(function(n){n.i&&(n.__H=n.i),n.i=void 0})),Jt=S=null},j.__c=function(e,t){t.some(function(n){try{n.__h.forEach(yt),n.__h=n.__h.filter(function(i){return!i.__||Xt(i)})}catch(i){t.some(function(o){o.__h&&(o.__h=[])}),t=[],j.__e(i,n.__v)}}),io&&io(e,t)},j.unmount=function(e){oo&&oo(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach(function(i){try{yt(i)}catch(o){t=o}}),n.__H=void 0,t&&j.__e(t,n.__v))};var ao=typeof requestAnimationFrame=="function";function Ys(e){var t,n=function(){clearTimeout(i),ao&&cancelAnimationFrame(t),setTimeout(e)},i=setTimeout(n,100);ao&&(t=requestAnimationFrame(n))}function yt(e){var t=S,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),S=t}function Xt(e){var t=S;e.__c=e.__(),S=t}function so(e,t){return!e||e.length!==t.length||t.some(function(n,i){return n!==e[i]})}function lo(e,t){return typeof t=="function"?t(e):t}const qs=({id:e})=>{const[t,n]=H(!1),i=F(()=>n(!1),[]),o=F(()=>n(!0),[]),r=F(()=>{t?i():o()},[t,o,i]);return{isOpen:t,onOpen:o,onClose:i,onToggle:r,getButtonProps:()=>({"aria-expanded":t,"aria-controls":e,onClick:r}),getDisclosureProps:()=>({id:e,className:t?"fides-disclosure-visible":"fides-disclosure-hidden"})}},Ws=(e,t)=>{const[n,i]=H(null);return L(()=>{if(t)return()=>{};Ni(e).then(o=>{i(o)})},[e,t]),n},Zs=()=>{const[e,t]=H(!1);return L(()=>{t(!0)},[]),e};var Js=Object.defineProperty,co=Object.getOwnPropertySymbols,Xs=Object.prototype.hasOwnProperty,Qs=Object.prototype.propertyIsEnumerable,uo=(e,t,n)=>t in e?Js(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,el=(e,t)=>{for(var n in t||(t={}))Xs.call(t,n)&&uo(e,n,t[n]);if(co)for(var n of co(t))Qs.call(t,n)&&uo(e,n,t[n]);return e},tl=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const nl=({options:e,privacyExperience:t,privacyExperienceConfigHistoryId:n,privacyNoticeHistoryIds:i,userGeography:o,acknowledgeMode:r,tcfNoticesServed:l})=>{const s=F(a=>tl(void 0,null,function*(){var c;if(e.fidesDisableSaveApi||e.fidesDisableNoticesServedApi||!a.detail.extraDetails||a.detail.extraDetails.servingComponent===$e.BANNER&&!((c=t?.experience_config)!=null&&c.show_layer1_notices))return;const u=wi.getServedNoticeHistoryId(),d=el({served_notice_history_id:u,browser_identity:a.detail.identity,privacy_experience_config_history_id:n||"",user_geography:o,acknowledge_mode:r,privacy_notice_history_ids:i||[],serving_component:String(a.detail.extraDetails.servingComponent),property_id:t.property_id},l);hi({request:d,options:e})}),[e,t,n,o,r,i,l]);L(()=>(window.addEventListener("FidesUIShown",s),()=>{window.removeEventListener("FidesUIShown",s)}),[s])},po=je({}),il=({i18nInstance:e,children:t})=>{const[n,i]=H(),[o,r]=H(!1),l=F(a=>{e.activate(a),i(a)},[e,i]);L(()=>{const a=document.getElementById(Ar);o?a?.style.setProperty("animation-name","spin"):a?.style.removeProperty("animation-name")},[o]);const s=me(()=>({i18n:e,currentLocale:n,setCurrentLocale:l,isLoading:o,setIsLoading:r}),[e,n,l,o]);return v(po.Provider,{value:s},t)},se=()=>{const e=Re(po);if(!e||Object.keys(e).length===0)throw new Error("useI18n must be used within a I18nProvider");return e};var ol=Object.defineProperty,rl=Object.defineProperties,al=Object.getOwnPropertyDescriptors,fo=Object.getOwnPropertySymbols,sl=Object.prototype.hasOwnProperty,ll=Object.prototype.propertyIsEnumerable,vo=(e,t,n)=>t in e?ol(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Qt=(e,t)=>{for(var n in t||(t={}))sl.call(t,n)&&vo(e,n,t[n]);if(fo)for(var n of fo(t))ll.call(t,n)&&vo(e,n,t[n]);return e},cl=(e,t)=>rl(e,al(t));const go=je({}),dl=({children:e})=>{const t=Me(),n=Me(),i=F(s=>{t.current=s},[]),o=F(s=>{n.current=s},[]),r=F((s,a,c)=>{var u;ie(s,a,cl(Qt({},c),{servingComponent:(u=c?.servingComponent)!=null?u:n.current,trigger:Qt(Qt({},c?.trigger),t.current)})),i(void 0)},[i]),l=me(()=>({triggerRef:t,setTrigger:i,servingComponentRef:n,setServingComponent:o,dispatchFidesEventAndClearTrigger:r}),[i,r,o]);return v(go.Provider,{value:l},e)},ue=()=>{const e=Re(go);if(!e||Object.keys(e).length===0)throw new Error("useEvent must be used within a EventProvider");return e},_o=je({}),ul=({initializedFides:e,children:t})=>{const[n,i]=H(e),o=me(()=>({fidesGlobal:n,setFidesGlobal:i}),[n,i]);return v(_o.Provider,{value:o},t)},pl=()=>{const e=Re(_o);if(!e||Object.keys(e).length===0)throw new Error("useFidesGlobal must be used within a FidesGlobalProvider");return e},bo=({onClick:e,ariaLabel:t,hidden:n=!1})=>v("button",{type:"button","aria-label":t,className:"fides-close-button",onClick:e,style:{visibility:n?"hidden":"visible"}},v("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none"},v("path",{fill:"#2D3748",d:"m8 7.057 3.3-3.3.943.943-3.3 3.3 3.3 3.3-.943.943-3.3-3.3-3.3 3.3-.943-.943 3.3-3.3-3.3-3.3.943-.943 3.3 3.3Z"}))),fl=je({}),en="__VENDOR_COUNT_LINK__",yo=(e,t)=>t?v("span",{dangerouslySetInnerHTML:{__html:e.trim()}}):Es(e).trim(),mo=({description:e,onVendorPageClick:t,allowHTMLDescription:n=!1})=>{const[i,o]=H(),{setTrigger:r}=ue();let l=0;const s=Re(fl);return s!=null&&s.vendorCount&&(l=s.vendorCount),L(()=>{if(e)if(e.includes(en)&&t){const a=e.split(en);for(let u=1;u<a.length;u+=2)a.splice(u,0,v(re,null," ",v("button",{type:"button",className:"fides-link-button fides-vendor-count",onClick:()=>{t&&(r({type:q.LINK,label:en}),t())}},l)," "));const c=a.map(u=>typeof u=="string"?yo(u,n):u);o(c)}else o([yo(e,n)])},[e,t]),e?v("div",null,i):null},ho=({status:e})=>{const{i18n:t}=se(),n=t.t("static.gpc"),i=e.valueOf();let o="";if(e===ne.APPLIED)o=t.t("static.gpc.status.applied");else if(e===ne.OVERRIDDEN)o=t.t("static.gpc.status.overridden");else if(e===ne.NONE)return null;return v("span",{className:"fides-gpc-label"},n," ",v("span",{className:`fides-gpc-badge fides-gpc-badge-${i}`},o))};var vl=Object.defineProperty,gl=Object.defineProperties,_l=Object.getOwnPropertyDescriptors,wo=Object.getOwnPropertySymbols,bl=Object.prototype.hasOwnProperty,yl=Object.prototype.propertyIsEnumerable,ko=(e,t,n)=>t in e?vl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,tn=(e,t)=>{for(var n in t||(t={}))bl.call(t,n)&&ko(e,n,t[n]);if(wo)for(var n of wo(t))yl.call(t,n)&&ko(e,n,t[n]);return e},nn=(e,t)=>gl(e,_l(t));const ml=({attributes:e,dismissable:t,onOpen:n,onClose:i,bannerIsOpen:o,children:r,onVendorPageClick:l,renderButtonGroup:s,className:a,isEmbedded:c})=>{var u,d,y,f,g,p,_,m,h,w,k;const{container:E,dialog:T,title:R,closeButton:C}=e,{i18n:A}=se(),P=xe().globalPrivacyControl,{setTrigger:I}=ue();L(()=>{o&&n()},[o,n]);const Z=_e(A,"exp.banner_title")?A.t("exp.banner_title"):A.t("exp.title"),te=_e(A,"exp.banner_description")?A.t("exp.banner_description"):A.t("exp.description"),Y=["fides-banner","fides-banner-bottom",!o&&"fides-banner-hidden",c&&"fides-embedded",a].filter(Te=>typeof Te=="string").join(" ");let pe=[];return(y=(d=(u=window.Fides)==null?void 0:u.experience)==null?void 0:d.experience_config)!=null&&y.show_layer1_notices&&(g=(f=window.Fides)==null?void 0:f.experience)!=null&&g.privacy_notices&&(pe=(_=(p=window.Fides)==null?void 0:p.experience)==null?void 0:_.privacy_notices),v("div",nn(tn({className:Y},E),{id:`${E.id}-container`}),v("div",{id:E.id},v("div",nn(tn({},T),{id:`${E.id}-inner`}),v(bo,{ariaLabel:"Close banner",onClick:()=>{I({type:q.BUTTON,label:"Close banner"}),C.onClick(),i()},hidden:((h=(m=window.Fides)==null?void 0:m.options)==null?void 0:h.preventDismissal)||!t}),v("div",{id:`${E.id}-inner-container`},v("div",{className:"fides-banner__col"},v("div",{id:"fides-banner-heading"},v("h1",nn(tn({className:"fides-banner-title"},R),{id:`${E.id}-title`}),Z),P&&v(ho,{status:ne.APPLIED})),v("div",{id:`${E.id}-description`,className:"fides-banner-description fides-banner__content"},v(mo,{description:te,onVendorPageClick:l,allowHTMLDescription:(k=(w=window.Fides)==null?void 0:w.options)==null?void 0:k.allowHTMLDescription}),!!(pe!=null&&pe.length)&&v("div",{id:`${E.id}-notices`,className:"fides-banner-notices"},pe.map((Te,x)=>v("span",{key:Te.id},v("strong",null,Te.name),x<pe.length-1&&", "))))),r),s())))},hl=e=>{const[t,n]=H(!1);return L(()=>{const i=window.matchMedia(e);n(i.matches);function o(r){n(r.matches)}return i.addEventListener?i.addEventListener("change",o):i.addListener(o),()=>{i.removeEventListener?i.removeEventListener("change",o):i.removeListener(o)}},[e]),t},wl=()=>v("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31",height:"20",fill:"currentColor",className:"ethyca-logo",role:"img","aria-label":"Ethyca"},v("path",{d:"M11.5602 0H8.70311V7.9999H11.5602V0ZM23.0026 12.0001H20.1455V20H23.0026V12.0001ZM14.1258 20H17.5799L12.1315 11.9774V17.0631L14.1258 20ZM8.13179 17.0626V11.9769L2.68588 19.9995H6.14003L8.13129 17.0626H8.13179ZM23.5744 2.93688V8.02263L29.0198 0H25.5682L23.5739 2.93688H23.5744ZM19.5742 2.93688L17.5799 0H14.1258L19.5742 8.02263V2.93688ZM19.5717 8.57121H12.132V11.4283H19.5717V8.57121ZM31 8.57121H23.5603V11.4283H31V8.57121ZM8.13179 8.57121H0.691589V11.4283H8.13179V8.57121Z"})),kl=()=>v("div",{className:"fides-brand"},v("a",{href:"https://ethyca.com/",target:"_blank",rel:"noopener noreferrer",className:"fides-brand-link"},"Powered by",v(wl,null))),El=()=>v("div",{className:"fides-spinner"}),Pe=({buttonType:e,label:t,id:n,onClick:i,className:o="",disabled:r,loading:l})=>v("button",{type:"button",id:n,className:`fides-banner-button fides-banner-button-${e.valueOf()} ${o}`,onClick:i,"data-testid":`${t}-btn`,disabled:r||l,style:{cursor:r||l?"not-allowed":"pointer"}},t||"",l&&v(El,null));function Cl(e,t){for(var n in t)e[n]=t[n];return e}function Eo(e,t){for(var n in e)if(n!=="__source"&&!(n in t))return!0;for(var i in t)if(i!=="__source"&&e[i]!==t[i])return!0;return!1}function Co(e,t){this.props=e,this.context=t}(Co.prototype=new ae).isPureReactComponent=!0,Co.prototype.shouldComponentUpdate=function(e,t){return Eo(this.props,e)||Eo(this.state,t)};var xo=O.__b;O.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),xo&&xo(e)};var xl=O.__e;O.__e=function(e,t,n,i){if(e.then){for(var o,r=t;r=r.__;)if((o=r.__c)&&o.__c)return t.__e==null&&(t.__e=n.__e,t.__k=n.__k),o.__c(e,t)}xl(e,t,n,i)};var Oo=O.unmount;function Po(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(i){typeof i.__c=="function"&&i.__c()}),e.__c.__H=null),(e=Cl({},e)).__c!=null&&(e.__c.__P===n&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(i){return Po(i,t,n)})),e}function To(e,t,n){return e&&n&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(i){return To(i,t,n)}),e.__c&&e.__c.__P===t&&(e.__e&&n.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=n)),e}function on(){this.__u=0,this.t=null,this.__b=null}function $o(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function mt(){this.u=null,this.o=null}O.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),Oo&&Oo(e)},(on.prototype=new ae).__c=function(e,t){var n=t.__c,i=this;i.t==null&&(i.t=[]),i.t.push(n);var o=$o(i.__v),r=!1,l=function(){r||(r=!0,n.__R=null,o?o(s):s())};n.__R=l;var s=function(){if(!--i.__u){if(i.state.__a){var a=i.state.__a;i.__v.__k[0]=To(a,a.__c.__P,a.__c.__O)}var c;for(i.setState({__a:i.__b=null});c=i.t.pop();)c.forceUpdate()}};i.__u++||32&t.__u||i.setState({__a:i.__b=i.__v.__k[0]}),e.then(l,l)},on.prototype.componentWillUnmount=function(){this.t=[]},on.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),i=this.__v.__k[0].__c;this.__v.__k[0]=Po(this.__b,n,i.__O=i.__P)}this.__b=null}var o=t.__a&&v(re,null,e.fallback);return o&&(o.__u&=-33),[v(re,null,t.__a?null:e.children),o]};var Ao=function(e,t,n){if(++n[1]===n[0]&&e.o.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.o.size))for(n=e.u;n;){for(;n.length>3;)n.pop()();if(n[1]<n[0])break;e.u=n=n[2]}};(mt.prototype=new ae).__a=function(e){var t=this,n=$o(t.__v),i=t.o.get(e);return i[0]++,function(o){var r=function(){t.props.revealOrder?(i.push(o),Ao(t,e,i)):o()};n?n(r):r()}},mt.prototype.render=function(e){this.u=null,this.o=new Map;var t=ft(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var n=t.length;n--;)this.o.set(t[n],this.u=[1,0,this.u]);return e.children},mt.prototype.componentDidUpdate=mt.prototype.componentDidMount=function(){var e=this;this.o.forEach(function(t,n){Ao(e,n,t)})};var Ol=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,Pl=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,Tl=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,$l=/[A-Z0-9]/g,Al=typeof document<"u",Nl=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};ae.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(ae.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var No=O.event;function Sl(){}function Il(){return this.cancelBubble}function Ll(){return this.defaultPrevented}O.event=function(e){return No&&(e=No(e)),e.persist=Sl,e.isPropagationStopped=Il,e.isDefaultPrevented=Ll,e.nativeEvent=e};var Fl={enumerable:!1,configurable:!0,get:function(){return this.class}},So=O.vnode;O.vnode=function(e){typeof e.type=="string"&&function(t){var n=t.props,i=t.type,o={};for(var r in n){var l=n[r];if(!(r==="value"&&"defaultValue"in n&&l==null||Al&&r==="children"&&i==="noscript"||r==="class"||r==="className")){var s=r.toLowerCase();r==="defaultValue"&&"value"in n&&n.value==null?r="value":r==="download"&&l===!0?l="":s==="translate"&&l==="no"?l=!1:s==="ondoubleclick"?r="ondblclick":s!=="onchange"||i!=="input"&&i!=="textarea"||Nl(n.type)?s==="onfocus"?r="onfocusin":s==="onblur"?r="onfocusout":Tl.test(r)?r=s:i.indexOf("-")===-1&&Pl.test(r)?r=r.replace($l,"-$&").toLowerCase():l===null&&(l=void 0):s=r="oninput",s==="oninput"&&o[r=s]&&(r="oninputCapture"),o[r]=l}}i=="select"&&o.multiple&&Array.isArray(o.value)&&(o.value=ft(n.children).forEach(function(a){a.props.selected=o.value.indexOf(a.props.value)!=-1})),i=="select"&&o.defaultValue!=null&&(o.value=ft(n.children).forEach(function(a){a.props.selected=o.multiple?o.defaultValue.indexOf(a.props.value)!=-1:o.defaultValue==a.props.value})),n.class&&!n.className?(o.class=n.class,Object.defineProperty(o,"className",Fl)):(n.className&&!n.class||n.class&&n.className)&&(o.class=o.className=n.className),t.props=o}(e),e.$$typeof=Ol,So&&So(e)};var Io=O.__r;O.__r=function(e){Io&&Io(e),e.__c};var Lo=O.diffed;O.diffed=function(e){Lo&&Lo(e);var t=e.props,n=e.__e;n!=null&&e.type==="textarea"&&"value"in t&&t.value!==n.value&&(n.value=t.value==null?"":t.value)};const jl=je({});var Dl=Object.defineProperty,Ml=Object.defineProperties,Rl=Object.getOwnPropertyDescriptors,ht=Object.getOwnPropertySymbols,Fo=Object.prototype.hasOwnProperty,jo=Object.prototype.propertyIsEnumerable,Do=(e,t,n)=>t in e?Dl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,zl=(e,t)=>{for(var n in t||(t={}))Fo.call(t,n)&&Do(e,n,t[n]);if(ht)for(var n of ht(t))jo.call(t,n)&&Do(e,n,t[n]);return e},Ul=(e,t)=>Ml(e,Rl(t)),Gl=(e,t)=>{var n={};for(var i in e)Fo.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(e!=null&&ht)for(var i of ht(e))t.indexOf(i)<0&&jo.call(e,i)&&(n[i]=e[i]);return n};const Bl=e=>{var t=e,{isActive:n,className:i,children:o}=t,r=Gl(t,["isActive","className","children"]);return v("button",Ul(zl({type:"button",role:"menuitemradio","aria-checked":n||void 0},r),{className:`fides-banner-button fides-menu-item ${i||""}`}),o)};var Hl=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Vl=({availableLocales:e,options:t,isTCF:n})=>{const[i,o]=H(!1),{i18n:r,currentLocale:l,setCurrentLocale:s,setIsLoading:a}=se(),c=Re(jl),u=Me(null),d=Me(null),y=()=>{o(!i)},f=p=>Hl(void 0,null,function*(){if(p!==r.locale)if(n){a(!0);const _=yield _i(t.fidesApiUrl,[p]);a(!1),_&&Object.keys(_).length?(c.setGvlTranslations(_[p]),ri(r,_,e||[B]),s(p)):console.error(`Unable to load GVL translation for ${p}`)}else s(p);o(!1)}),g=F(p=>{var _,m;if(!i)return;const h=((_=d.current)==null?void 0:_.querySelectorAll(".fides-menu-item"))||[],{key:w}=p;if(w==="Escape"||w==="Tab"){o(!1);return}if(w==="ArrowUp"||w==="ArrowDown"){p.preventDefault();const k=Array.from(h).findIndex(T=>T===document.activeElement);let E=k;w==="ArrowDown"?E=k===h.length-1?0:k+1:w==="ArrowUp"&&(E=k===0?h.length-1:k-1),(m=h[E])==null||m.focus()}},[i]);return L(()=>(document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}),[g]),L(()=>{var p,_,m;if(i){const h=(p=d.current)==null?void 0:p.querySelectorAll(".fides-menu-item");(_=h?.[0])==null||_.focus()}else(m=u.current)==null||m.focus()},[i]),L(()=>{const p=_=>{i&&d.current&&!d.current.contains(_.target)&&u.current&&!u.current.contains(_.target)&&o(!1)};return document.addEventListener("mousedown",p),()=>{document.removeEventListener("mousedown",p)}},[i]),v("div",{className:`fides-i18n-menu ${i?"fides-i18n-menu-open":""}`,ref:d},v("div",{role:"menu",className:"fides-i18n-popover",id:"fides-i18n-popover"},r.availableLanguages.map(p=>v(Bl,{key:p.locale,"data-testid":`fides-i18n-option-${p.locale}`,id:l===p.locale?"fidesActiveMenuItem":void 0,onClick:()=>f(p.locale),isActive:l===p.locale,title:p.label_en,"aria-label":p.label_en,tabIndex:-1},p.label_original))),v("button",{type:"button",className:"fides-i18n-button",onClick:y,ref:u,"aria-haspopup":"true","aria-expanded":i,"aria-controls":"fides-i18n-popover","aria-label":`Select language, current language is ${l}`},v("svg",{xmlns:"http://www.w3.org/2000/svg",height:"100%",viewBox:"0 0 36 36",fill:"currentColor",id:"fides-i18n-icon"},v("path",{fill:"currentColor",d:"M18 32.625c.52 0 1.898-.506 3.347-3.403.619-1.245 1.153-2.756 1.547-4.472h-9.788c.394 1.716.928 3.227 1.547 4.472 1.449 2.897 2.827 3.403 3.347 3.403m-5.45-11.25h10.9a32.5 32.5 0 0 0 0-6.75h-10.9a32.5 32.5 0 0 0 0 6.75m.556-10.125h9.788c-.394-1.716-.928-3.227-1.547-4.472C19.898 3.881 18.52 3.375 18 3.375s-1.898.506-3.347 3.403c-.619 1.245-1.153 2.756-1.547 4.472m13.732 3.375A35 35 0 0 1 26.993 18c0 1.153-.056 2.285-.155 3.375h5.393c.253-1.083.394-2.215.394-3.375s-.134-2.292-.394-3.375h-5.393m4.135-3.375a14.7 14.7 0 0 0-6.92-6.567c.992 1.8 1.78 4.043 2.293 6.567h4.634zm-21.326 0c.513-2.524 1.3-4.76 2.292-6.567A14.7 14.7 0 0 0 5.02 11.25h4.634zm-5.878 3.375A14.8 14.8 0 0 0 3.375 18c0 1.16.134 2.292.394 3.375h5.393A35 35 0 0 1 9.007 18c0-1.153.056-2.285.155-3.375zm20.285 16.692a14.7 14.7 0 0 0 6.919-6.567h-4.627c-.513 2.524-1.3 4.76-2.292 6.567m-12.108 0c-.991-1.8-1.779-4.043-2.292-6.567H5.02a14.7 14.7 0 0 0 6.92 6.567zM18 36a18 18 0 1 1 0-36 18 18 0 0 1 0 36"})),l,v("svg",{className:"fides-i18n-caret",xmlns:"http://www.w3.org/2000/svg",height:"100%",fill:"currentColor",viewBox:"0 0 24 24"},v("path",{d:"M12 13.172L16.95 8.22198L18.364 9.63598L12 16L5.63599 9.63598L7.04999 8.22198L12 13.172Z"}))))},Kl=()=>{const{i18n:e}=se();if(!_e(e,"exp.privacy_policy_link_label")||!_e(e,"exp.privacy_policy_url"))return null;const t=e.t("exp.privacy_policy_link_label"),n=e.t("exp.privacy_policy_url");return v("div",{id:"fides-privacy-policy-link",style:{display:"flex",alignItems:"center",justifyContent:"center"}},v("a",{href:n,rel:"noopener noreferrer",target:"_blank",className:"fides-privacy-policy"},t))},Yl=({availableLocales:e=[B],onManagePreferencesClick:t,renderFirstButton:n,onAcceptAll:i,onRejectAll:o,hideOptInOut:r,hideRejectAll:l,options:s,isInModal:a,isTCF:c,isMinimalTCF:u,isGVLLoading:d})=>{var y;const[f,g]=H(!1),{i18n:p}=se(),{setTrigger:_}=ue(),m=hl("(max-width: 768px)"),h=((y=p.availableLanguages)==null?void 0:y.length)>1,w=_e(p,"exp.privacy_policy_link_label")&&_e(p,"exp.privacy_policy_url"),k=()=>{const T=!c||!u;g(!T),t&&T&&t()},E=a&&s.showFidesBrandLink;return L(()=>{f&&!u&&k()},[f,u]),v("div",{id:"fides-button-group"},v("div",{className:a?"fides-modal-button-group fides-modal-primary-actions":"fides-banner-button-group fides-banner-primary-actions"},!!n&&n(),!r&&v(re,null,c&&!!t&&v(Pe,{buttonType:J.SECONDARY,label:p.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:q.BUTTON,label:p.t("exp.privacy_preferences_link_label")}),k()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button",loading:f}),!l&&v(Pe,{buttonType:J.PRIMARY,label:p.t("exp.reject_button_label"),onClick:()=>{_({type:q.BUTTON,label:p.t("exp.reject_button_label")}),o()},className:"fides-reject-all-button",id:"fides-reject-all-button",loading:d}),v(Pe,{buttonType:J.PRIMARY,label:p.t("exp.accept_button_label"),onClick:()=>{_({type:q.BUTTON,label:p.t("exp.accept_button_label")}),i()},className:"fides-accept-all-button",id:"fides-accept-all-button",loading:d}))),v("div",{className:`${a?"fides-modal-button-group fides-modal-secondary-actions":"fides-banner-button-group fides-banner-secondary-actions"}${h?" fides-button-group-i18n":""}${w?" fides-button-group-privacy-policy":""}${E?" fides-button-group-brand":""}`},h&&v(Vl,{availableLocales:e,options:s,isTCF:!!c}),!c&&!!t&&v(Pe,{buttonType:m?J.SECONDARY:J.TERTIARY,label:p.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:q.BUTTON,label:p.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),w&&v(Kl,null),E&&v(kl,null)))},Mo=({experience:e,onAcceptAll:t,onRejectAll:n,onSave:i,onManagePreferencesClick:o,enabledKeys:r,isInModal:l,isAcknowledge:s,hideOptInOut:a=!1,options:c})=>{const{i18n:u}=se(),{setTrigger:d}=ue();if(!e.experience_config||!e.privacy_notices)return null;const{privacy_notices:y}=e,f=()=>{i(N.ACKNOWLEDGE,y.map(_=>_.notice_key))},g=()=>{i(N.SAVE,r)},p=()=>s?v(Pe,{buttonType:J.PRIMARY,label:u.t("exp.acknowledge_button_label"),onClick:()=>{d({type:q.BUTTON,label:u.t("exp.acknowledge_button_label")}),f()},className:"fides-acknowledge-button"}):l?v(Pe,{buttonType:a?J.PRIMARY:J.SECONDARY,label:u.t("exp.save_button_label"),onClick:()=>{d({type:q.BUTTON,label:u.t("exp.save_button_label")}),g()},className:"fides-save-button",id:"fides-save-button"}):null;return v(Yl,{availableLocales:e.available_locales,onManagePreferencesClick:o,onAcceptAll:t,onRejectAll:n,isInModal:l,renderFirstButton:p,hideOptInOut:a,options:c})};var ql=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])','input[type="radio"]:not([disabled]):not([tabindex^="-"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','iframe:not([tabindex^="-"])','audio[controls]:not([tabindex^="-"])','video[controls]:not([tabindex^="-"])','[contenteditable]:not([tabindex^="-"])','[tabindex]:not([tabindex^="-"])'],Wl="Tab",Zl="Escape";function W(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}W.prototype.create=function(){this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=ze('[data-a11y-dialog-show="'+this._id+'"]'),this._openers.forEach(function(t){t.addEventListener("click",this._show)}.bind(this));const e=this.$el;return this._closers=ze("[data-a11y-dialog-hide]",this.$el).filter(function(t){return t.closest('[aria-modal="true"], [data-a11y-dialog]')===e}).concat(ze('[data-a11y-dialog-hide="'+this._id+'"]')),this._closers.forEach(function(t){t.addEventListener("click",this._hide)}.bind(this)),this._fire("create"),this},W.prototype.show=function(e){if(this.shown)return this;this._previouslyFocused=document.activeElement;const t=e&&e.target?e.target:null;return t&&Object.is(this._previouslyFocused,document.body)&&(this._previouslyFocused=t),this.$el.removeAttribute("aria-hidden"),this.shown=!0,Ro(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e),this},W.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},W.prototype.destroy=function(){return this.hide(),this._openers.forEach(function(e){e.removeEventListener("click",this._show)}.bind(this)),this._closers.forEach(function(e){e.removeEventListener("click",this._hide)}.bind(this)),this._fire("destroy"),this._listeners={},this},W.prototype.on=function(e,t){return typeof this._listeners[e]>"u"&&(this._listeners[e]=[]),this._listeners[e].push(t),this},W.prototype.off=function(e,t){var n=(this._listeners[e]||[]).indexOf(t);return n>-1&&this._listeners[e].splice(n,1),this},W.prototype._fire=function(e,t){var n=this._listeners[e]||[],i=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(i),n.forEach(function(o){o(this.$el,t)}.bind(this))},W.prototype._bindKeypress=function(e){const t=document.activeElement;t&&t.closest('[aria-modal="true"]')!==this.$el||(this.shown&&e.key===Zl&&this.$el.getAttribute("role")!=="alertdialog"&&(e.preventDefault(),this.hide(e)),this.shown&&e.key===Wl&&Ql(this.$el,e))},W.prototype._maintainFocus=function(e){this.shown&&!e.target.closest('[aria-modal="true"]')&&!e.target.closest("[data-a11y-dialog-ignore-focus-trap]")&&Ro(this.$el)};function Jl(e){return Array.prototype.slice.call(e)}function ze(e,t){return Jl((t||document).querySelectorAll(e))}function Ro(e){var t=e.querySelector("[autofocus]")||e;t.focus()}function Xl(e){return ze(ql.join(","),e).filter(function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)})}function Ql(e,t){var n=Xl(e),i=n.indexOf(document.activeElement);t.shiftKey&&i===0?(n[n.length-1].focus(),t.preventDefault()):!t.shiftKey&&i===n.length-1&&(n[0].focus(),t.preventDefault())}function rn(){ze("[data-a11y-dialog]").forEach(function(e){new W(e)})}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",rn):window.requestAnimationFrame?window.requestAnimationFrame(rn):window.setTimeout(rn,16));const ec=()=>{const[e,t]=H(null),n=F(i=>{if(i!==null){const o=new W(i);t(o)}},[]);return{instance:e,container:n}},zo=({id:e,onClose:t,ariaHidden:n=!0})=>{const{instance:i,container:o}=ec(),r=`${e}-title`,l=F(()=>{i&&i.hide(),t&&t()},[t,i]);return L(()=>()=>{i&&i.destroy()},[i]),{instance:i,attributes:{container:{id:e,ref:o,role:"alertdialog","aria-hidden":n,"aria-labelledby":r},dialog:{role:"document"},closeButton:{type:"button",onClick:l},title:{role:"heading","aria-level":1,id:r}}}},tc=()=>v("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"currentColor"},v("path",{d:"M9 12.05a.68.68 0 0 0-.68.7c0 .39.32.7.68.7.39 0 .68-.31.68-.7a.66.66 0 0 0-.68-.7Zm0-1.18c.26 0 .44-.2.44-.46V6.19c0-.26-.2-.47-.44-.47a.49.49 0 0 0-.47.47v4.22c0 .25.21.46.47.46Zm7.27 2.27-5.85-9.9c-.3-.5-.83-.8-1.42-.8-.6 0-1.12.3-1.42.8l-5.86 9.9c-.3.5-.3 1.1-.01 1.6.3.51.83.82 1.43.82h11.72c.6 0 1.13-.3 1.43-.82.29-.5.28-1.1-.02-1.6Zm-.82 1.1c-.1.25-.33.38-.62.38H3.14a.7.7 0 0 1-.61-.35.64.64 0 0 1 0-.65l5.86-9.9A.7.7 0 0 1 9 3.37a.7.7 0 0 1 .61.35l5.86 9.9c.1.2.12.44-.02.63Z"})),nc=({title:e,description:t})=>v("div",{className:"fides-gpc-banner"},v("div",{className:"fides-gpc-warning"},v(tc,null)),v("div",null,v("p",{className:"fides-gpc-header"},e),v("p",null,t)));var ic=Object.defineProperty,oc=Object.defineProperties,rc=Object.getOwnPropertyDescriptors,Uo=Object.getOwnPropertySymbols,ac=Object.prototype.hasOwnProperty,sc=Object.prototype.propertyIsEnumerable,Go=(e,t,n)=>t in e?ic(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,lc=(e,t)=>{for(var n in t||(t={}))ac.call(t,n)&&Go(e,n,t[n]);if(Uo)for(var n of Uo(t))sc.call(t,n)&&Go(e,n,t[n]);return e},cc=(e,t)=>oc(e,rc(t));const Bo=({titleProps:e,className:t,renderModalFooter:n,children:i,onVendorPageClick:o})=>{var r,l;const{i18n:s}=se(),a=s.t("exp.title"),c=s.t("exp.description"),u=xe().globalPrivacyControl,d=s.t("static.gpc.title"),y=s.t("static.gpc.description");return v(re,null,v("div",{"data-testid":"consent-content",id:"fides-consent-content",className:t},v("div",{className:"fides-modal-body"},v("div",cc(lc({"data-testid":"fides-modal-title"},e),{className:"fides-modal-title"}),a),v("p",{"data-testid":"fides-modal-description",className:"fides-modal-description"},v(mo,{onVendorPageClick:o,description:c,allowHTMLDescription:(l=(r=window.Fides)==null?void 0:r.options)==null?void 0:l.allowHTMLDescription})),u&&v(nc,{title:d,description:y}),i)),v("div",{className:"fides-modal-footer"},n()))};var dc=Object.defineProperty,uc=Object.defineProperties,pc=Object.getOwnPropertyDescriptors,Ho=Object.getOwnPropertySymbols,fc=Object.prototype.hasOwnProperty,vc=Object.prototype.propertyIsEnumerable,Vo=(e,t,n)=>t in e?dc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Ko=(e,t)=>{for(var n in t||(t={}))fc.call(t,n)&&Vo(e,n,t[n]);if(Ho)for(var n of Ho(t))vc.call(t,n)&&Vo(e,n,t[n]);return e},Yo=(e,t)=>uc(e,pc(t));const gc=({attributes:e,children:t,dismissable:n,onVendorPageClick:i,renderModalFooter:o})=>{const{container:r,dialog:l,title:s,closeButton:a}=e,{setTrigger:c}=ue();return v("div",Yo(Ko({"data-testid":"consent-modal"},r),{className:"fides-modal-container"}),v("div",{className:"fides-modal-overlay"}),v("div",Yo(Ko({"data-testid":"fides-modal-content"},l),{className:"fides-modal-content"}),v("div",{className:"fides-modal-header"},v("div",null),v(bo,{ariaLabel:"Close modal",onClick:()=>{c({type:"button",label:"Close modal"}),a.onClick()},hidden:window.Fides.options.preventDismissal||!n})),v(Bo,{titleProps:s,renderModalFooter:o,onVendorPageClick:i},t)))},_c=({options:e,experience:t,cookie:n,savedConsent:i,onOpen:o,onDismiss:r,renderBanner:l,renderModalContent:s,renderModalFooter:a,onVendorPageClick:c,isUiBlocking:u})=>{const{setServingComponent:d,dispatchFidesEventAndClearTrigger:y}=ue(),f=100,g=Zs(),p=e.modalLinkId||"fides-modal-link",_=!t||!!e.fidesEmbed||e.modalLinkId==="",m=Ws(p,_),h=Me(null),[w,k]=H(null);L(()=>{w===null&&k(!et(t,n,i,e))},[w]);const[E,T]=H(e.fidesEmbed?et(t,n,i,e):!1);L(()=>(u&&E?ks():Ai(),()=>{Ai()}),[u,E]);const R=F(({saved:Y=!1})=>{Y||r(),y("FidesModalClosed",n,{saved:Y}),d(void 0)},[y,n,r,d]),{instance:C,attributes:A}=zo({id:"fides-modal",onClose:()=>{R({saved:!1})}});L(()=>{C&&C.on("show",()=>{document.documentElement.style.overflowY="hidden"}).on("hide",()=>{document.documentElement.style.overflowY=""})},[C]);const{attributes:P}=zo({id:"fides-banner",ariaHidden:!E&&!e.fidesEmbed,onClose:()=>{T(!1)}}),I=F((Y=ge.FIDES)=>{e.fidesEmbed?T(!1):C&&(T(!1),C.show(),o(Y))},[C,o,e]),Z=F(()=>{C&&!e.fidesEmbed&&(C.hide(),R({saved:!0}))},[C,R,e.fidesEmbed]);L(()=>{e.fidesEmbed&&!E&&o()},[e,o,E]),L(()=>{const Y=setTimeout(()=>{w||T(!0)},f);return()=>clearTimeout(Y)},[w,T]),L(()=>(t&&!e.fidesEmbed&&(window.Fides.showModal=()=>{I(ge.EXTERNAL)}),()=>{window.Fides.showModal=St}),[t,I,e.fidesEmbed]),L(()=>(document.body.classList.add("fides-overlay-modal-link-shown"),_||m&&(h.current=m,h.current.addEventListener("click",window.Fides.showModal),h.current.classList.add("fides-modal-link-shown")),()=>{h.current&&h.current.removeEventListener("click",window.Fides.showModal)}),[m,_,p]);const te=()=>{I()};return g&&t.experience_config?v("div",{id:$r,tabIndex:-1},!w&&E&&u&&v("div",{className:"fides-modal-overlay"}),e.fidesEmbed?E||!s||!a?null:v(Bo,{titleProps:A.title,renderModalFooter:()=>a({onClose:Z,isMobile:!1}),onVendorPageClick:c},s()):v(gc,{attributes:A,dismissable:t.experience_config.dismissable,onVendorPageClick:c,renderModalFooter:()=>a?a({onClose:Z,isMobile:!1}):null},s&&s()),!w&&l({attributes:P,isOpen:E,isEmbedded:e.fidesEmbed,onClose:()=>{T(!1)},onManagePreferencesClick:te})):null},bc=({label:e,name:t,id:n,checked:i,onChange:o,disabled:r,onLabel:l,offLabel:s})=>{const{setTrigger:a}=ue(),c=i?l:s;return v("div",{className:"fides-toggle","data-testid":`toggle-${e}`},v("input",{type:"checkbox",name:t,"aria-label":e,className:"fides-toggle-input",onChange:()=>{a({type:q.TOGGLE,label:e,checked:!i}),o(n)},checked:i,role:"switch",disabled:r}),v("span",{className:"fides-toggle-display"},c))};var yc=Object.defineProperty,mc=Object.defineProperties,hc=Object.getOwnPropertyDescriptors,qo=Object.getOwnPropertySymbols,wc=Object.prototype.hasOwnProperty,kc=Object.prototype.propertyIsEnumerable,Wo=(e,t,n)=>t in e?yc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Zo=(e,t)=>{for(var n in t||(t={}))wc.call(t,n)&&Wo(e,n,t[n]);if(qo)for(var n of qo(t))kc.call(t,n)&&Wo(e,n,t[n]);return e},Ec=(e,t)=>mc(e,hc(t));const Cc=({noticeKey:e,title:t,checked:n,onToggle:i,children:o,badge:r,gpcBadge:l,disabled:s,onLabel:a,offLabel:c,isHeader:u,includeToggle:d=!0})=>{const{isOpen:y,getButtonProps:f,getDisclosureProps:g,onToggle:p}=qs({id:e}),_=(w,k)=>{(w.code==="Space"||w.code==="Enter")&&(w.preventDefault(),k&&p())},m=o!=null,h=m?f():{};return v("div",{className:y&&m?"fides-notice-toggle fides-notice-toggle-expanded":"fides-notice-toggle"},v("div",{key:e,className:"fides-notice-toggle-title"},v("span",Ec(Zo({role:"button",tabIndex:0,onKeyDown:w=>_(w,m)},h),{className:u?"fides-notice-toggle-trigger fides-notice-toggle-header":"fides-notice-toggle-trigger"}),v("span",{className:"fides-flex-center fides-justify-space-between"},t)),v("span",{className:"fides-notice-toggle-controls"},l,r?v("span",{className:"fides-notice-badge"},r):null,d?v(bc,{label:t,name:e,id:e,checked:n,onChange:i,disabled:s,onLabel:a,offLabel:c}):null)),o?v("div",Zo({},g()),o):null)},xc=()=>v("hr",{className:"fides-divider"}),Oc=({noticeToggles:e,enabledNoticeKeys:t,onChange:n})=>{const{i18n:i}=se(),o=s=>{const a={key:s,type:"notice"};t.indexOf(s)===-1?n([...t,s],a):n(t.filter(c=>c!==s),a)};let r,l;return ai(i)===B&&(r="On",l="Off"),v("div",null,e.map((s,a)=>{const{noticeKey:c,title:u,description:d,checked:y,disabled:f,gpcStatus:g}=s,p=a===e.length-1;return v("div",{key:c},v(Cc,{noticeKey:c,title:u,checked:y,onToggle:o,gpcBadge:v(ho,{status:g}),disabled:f,onLabel:r,offLabel:l},d),p?null:v(xc,null))}))};var Pc=Object.defineProperty,Tc=Object.defineProperties,$c=Object.getOwnPropertyDescriptors,Jo=Object.getOwnPropertySymbols,Ac=Object.prototype.hasOwnProperty,Nc=Object.prototype.propertyIsEnumerable,Xo=(e,t,n)=>t in e?Pc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Sc=(e,t)=>{for(var n in t||(t={}))Ac.call(t,n)&&Xo(e,n,t[n]);if(Jo)for(var n of Jo(t))Nc.call(t,n)&&Xo(e,n,t[n]);return e},Ic=(e,t)=>Tc(e,$c(t));const Lc=()=>{var e;const{fidesGlobal:t,setFidesGlobal:n}=pl(),{fidesRegionString:i,cookie:o,options:r,saved_consent:l}=t,s=t.experience,{i18n:a,currentLocale:c,setCurrentLocale:u}=se(),{triggerRef:d,setTrigger:y,servingComponentRef:f,setServingComponent:g,dispatchFidesEventAndClearTrigger:p}=ue(),_=Ee(),m=x=>s.privacy_notices?s.privacy_notices.map($=>hn($,x||l||_?.consent)?$.notice_key:""):[];L(()=>{!c&&a.locale&&u(a.locale)},[c,a.locale,u]);const h=me(()=>{if(s.experience_config){const x=rt(c,a.getDefaultLocale(),s.experience_config);return x?.privacy_experience_config_history_id}},[s,c]),w=me(()=>{var x;const $=((x=s.privacy_notices)!=null?x:[]).map(K=>{var he,Ue;const sn=K.consent_mechanism===V.NOTICE_ONLY||((Ue=(he=r.fidesDisabledNotices)==null?void 0:he.includes(K.notice_key))!=null?Ue:!1)||K.disabled,ln=jt(c,a.getDefaultLocale(),K);return{notice:Ic(Sc({},K),{disabled:sn}),bestTranslation:ln}}),D=$.filter(K=>K.notice.consent_mechanism===V.NOTICE_ONLY),M=$.filter(K=>K.notice.consent_mechanism!==V.NOTICE_ONLY);return[...D,...M]},[s.privacy_notices,c,r.fidesDisabledNotices]),[k,E]=H(m());window.addEventListener("FidesUpdating",x=>{const{consent:$}=x.detail;Object.entries($).forEach(([D,M])=>{$[D]=Ne(M)}),E(m($))});const T=w.every(x=>x.notice.consent_mechanism===V.NOTICE_ONLY),R=w.map(x=>{var $,D;const M=k.indexOf(x.notice.notice_key)!==-1,K=xe(),he=Bn({value:M,notice:x.notice,consentContext:K});return{noticeKey:x.notice.notice_key,title:(($=x.bestTranslation)==null?void 0:$.title)||x.notice.name||"",description:(D=x.bestTranslation)==null?void 0:D.description,checked:M,consentMechanism:x.notice.consent_mechanism,disabled:x.notice.disabled,gpcStatus:he}});nl({privacyExperienceConfigHistoryId:h,privacyNoticeHistoryIds:w.reduce((x,$)=>{var D;const M=(D=$.bestTranslation)==null?void 0:D.privacy_notice_history_id;return M&&x.push(M),x},[]),options:r,userGeography:i,acknowledgeMode:T,privacyExperience:s});const C=F((x,$)=>{const D={};w.forEach(M=>{M.notice.consent_mechanism!==V.NOTICE_ONLY?D[M.notice.notice_key]=$.includes(M.notice.notice_key):D[M.notice.notice_key]=!0}),zt(t,{noticeConsent:D,consentMethod:x,eventExtraDetails:{servingComponent:f.current,trigger:d.current}}).finally(()=>{window.Fides&&n(window.Fides),y(void 0)}),E($)},[w,t,f,d,y,n]),A=F(x=>{C(x?N.SCRIPT:N.ACCEPT,w.filter($=>!$.notice.disabled||k.includes($.notice.notice_key)).map($=>$.notice.notice_key))},[k,C,w]),P=F(x=>{C(x?N.SCRIPT:N.REJECT,w.filter($=>$.notice.consent_mechanism===V.NOTICE_ONLY||$.notice.disabled&&k.includes($.notice.notice_key)).map($=>$.notice.notice_key))},[k,C,w]);L(()=>{Qe(r)&&s.privacy_notices&&(r.fidesConsentOverride===N.ACCEPT?A(!0):r.fidesConsentOverride===N.REJECT&&P(!0))},[s.privacy_notices,r.fidesConsentOverride]);const I=F(()=>{g($e.BANNER),p("FidesUIShown",o)},[o,p,g]),Z=F(x=>{g($e.MODAL),p("FidesUIShown",o,{trigger:{origin:x}})},[o,p,g]),te=F(()=>{Tt(_?.consent)||C(N.DISMISS,m())},[C,m,_?.consent]),Y=F((x,$)=>{const D={servingComponent:f.current,trigger:d.current,preference:$};E(x),p("FidesUIChanged",o,D)},[d,p,o,f]);if(!s.experience_config)return null;const pe=!!((e=s.experience_config)!=null&&e.dismissable),Te=w.length===1;return v(_c,{options:r,experience:s,cookie:o,savedConsent:l,isUiBlocking:!pe,onOpen:Z,onDismiss:te,renderBanner:({attributes:x,isEmbedded:$,isOpen:D,onClose:M,onManagePreferencesClick:K})=>{var he;const Ue=T||((he=s.experience_config)==null?void 0:he.layer1_button_options)===Et.ACKNOWLEDGE;return v(ml,{attributes:x,bannerIsOpen:D,dismissable:pe,onOpen:I,onClose:()=>{M(),te()},isEmbedded:$,renderButtonGroup:()=>v(Mo,{experience:s,onManagePreferencesClick:K,enabledKeys:k,onAcceptAll:()=>{A(),M()},onRejectAll:()=>{P(),M()},onSave:(sn,ln)=>{C(sn,ln),M()},isAcknowledge:Ue,hideOptInOut:Ue,options:r})})},renderModalContent:()=>v("div",null,v("div",{className:"fides-modal-notices"},v(Oc,{noticeToggles:R,enabledNoticeKeys:k,onChange:Y}))),renderModalFooter:({onClose:x})=>v(Mo,{experience:s,enabledKeys:k,onAcceptAll:()=>{A(),x()},onRejectAll:()=>{P(),x()},onSave:($,D)=>{C($,D),x()},isInModal:!0,isAcknowledge:T,hideOptInOut:Te||T,options:r})})},Fc=(e,t)=>{const{i18n:n,initializedFides:i}=e;qi(v(il,{i18nInstance:n},v(ul,{initializedFides:i},v(dl,null,v(Lc,null)))),t)};var jc=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});function Dc(e){return jc(this,null,function*(){var t;if(!((t=e.options.apiOptions)!=null&&t.getPreferencesFn))return null;try{return yield e.options.apiOptions.getPreferencesFn(e)}catch{return null}})}var Mc=Object.defineProperty,Rc=Object.defineProperties,zc=Object.getOwnPropertyDescriptors,Qo=Object.getOwnPropertySymbols,Uc=Object.prototype.hasOwnProperty,Gc=Object.prototype.propertyIsEnumerable,er=(e,t,n)=>t in e?Mc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ee=(e,t)=>{for(var n in t||(t={}))Uc.call(t,n)&&er(e,n,t[n]);if(Qo)for(var n of Qo(t))Gc.call(t,n)&&er(e,n,t[n]);return e},an=(e,t)=>Rc(e,zc(t)),Bc=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});function Hc(e){return Bc(this,null,function*(){var t,n,i,o;let r=(t=e??this.config)!=null?t:Ut("Fides must be initialized with a configuration object");xr(!!((n=r.options)!=null&&n.debug)),this.config=r,ie("FidesInitializing",void 0,{gppEnabled:this.config.options.gppEnabled||((o=(i=this.config.experience)==null?void 0:i.gpp_settings)==null?void 0:o.enabled),tcfEnabled:this.config.options.tcfEnabled});const l=Fi(ke.OPTIONS,r),s=Fi(ke.EXPERIENCE_TRANSLATION,r),a=yield Dc(r);!l.fidesString&&a!=null&&a.fides_string&&(l.fidesString=a.fides_string);const c={optionsOverrides:l,consentPrefsOverrides:a,experienceTranslationOverrides:s};Cr(l);let u;if(!Ee()){const{consent:f,method:g}=jn(l);f&&g&&(u=f)}r=an(ee({},r),{options:ee(ee({},r.options),c.optionsOverrides)}),this.config=r,this.cookie=Ns(r),this.cookie.consent=ee(ee({},this.cookie.consent),u),this.saved_consent=ee({},this.cookie.consent);const{fidesString:d}=r.options;if(d)try{const{nc:f}=It(d);this.decodeNoticeConsentString(f);const g={fides_string:d};this.cookie=ee(ee({},this.cookie),g)}catch{}if(this.experience=r.experience,!xn(this.cookie)||!!u){const f=Ss(an(ee({},r),{cookie:this.cookie,savedConsent:this.saved_consent,updateExperienceFromCookieConsent:$t}));Object.assign(this,f),lt(this),this.experience=f.experience,Wn(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const y=yield Is({fides:this,initOverlay:Ji,renderOverlay:Fc,updateExperience:xi,overrides:c});Object.assign(this,y),lt(this),Zn(this.cookie,{shouldShowExperience:this.shouldShowExperience()})})}const Vc=Oi({}),Kc=an(ee({},Vc),{init:Hc});lt(Kc),b.BannerEnabled=un,b.ButtonType=J,b.CONSENT_COOKIE_MAX_AGE_DAYS=En,b.CONSENT_COOKIE_NAME=Pt,b.ComponentType=U,b.ConsentFlagType=fe,b.ConsentMechanism=V,b.ConsentMethod=N,b.ConsentNonApplicableFlagMode=we,b.DEFAULT_LOCALE=B,b.DEFAULT_MODAL_LINK_LABEL=We,b.EnforcementLevel=dn,b.FidesEndpointPaths=fi,b.FidesEventOrigin=ge,b.FidesEventTargetType=q,b.FidesModalDefaultView=pn,b.GpcStatus=ne,b.LOCALE_REGEX=Ze,b.Layer1ButtonOption=Et,b.OverrideType=ke,b.PrivacyNoticeFramework=cn,b.REQUEST_SOURCE=yi,b.RejectAllMechanism=fn,b.RequestOrigin=vn,b.SaveConsentPreference=kt,b.ServingComponent=$e,b.UpdateConsentValidation=le,b.UserConsentPreference=G,b.allNoticesAreDefaultOptIn=Dr,b.applyOverridesToConsent=Ie,b.areLocalesEqual=Q,b.buildCookieConsentFromConsentPreferences=Nn,b.consentCookieObjHasSomeConsentSet=Tt,b.constructFidesRegionString=Xe,b.createConsentPreferencesToSave=Rr,b.createEmptyExperience=vi,b.decodeNoticeConsentString=tt,b.defaultShowModal=St,b.detectUserLocale=si,b.dispatchConsentLoadedEvents=Wn,b.dispatchFidesEvent=ie,b.dispatchReadyEvents=Zn,b.encodeNoticeConsentString=Hn,b.experienceIsValid=Un,b.extractDefaultLocaleFromExperience=Ft,b.fetchExperience=gi,b.fetchGvlTranslations=_i,b.getConsentContext=xe,b.getCookieByName=qe,b.getCoreFides=Oi,b.getCurrentLocale=ai,b.getFidesConsentCookie=Ee,b.getGeolocation=Pi,b.getGpcStatusFromNotice=Bn,b.getOrMakeFidesCookie=Pn,b.getOverrideValidatorMapByType=zn,b.getTcfDefaultPreference=Mr,b.getWindowObjFromPath=Gn,b.i18n=Wa,b.initOverlay=Ji,b.initializeI18n=ci,b.isConsentOverride=Qe,b.isNewFidesCookie=xn,b.isPrivacyExperience=Ce,b.isValidAcString=Gr,b.loadGVLMessagesFromExperience=oi,b.loadMessagesFromExperience=ii,b.loadMessagesFromFiles=ni,b.loadMessagesFromGVLTranslations=ri,b.localizeModalLinkText=di,b.makeConsentDefaultsLegacy=$n,b.makeFidesCookie=On,b.matchAvailableLocales=li,b.messageExists=_e,b.noticeHasConsentInCookie=Ke,b.onFidesEvent=qn,b.parseFidesDisabledNotices=yn,b.patchNoticesServed=hi,b.patchUserPreference=mi,b.processExternalConsentValue=Ne,b.raise=Ut,b.removeCookiesFromBrowser=An,b.resolveConsentValue=hn,b.resolveLegacyConsentValue=mn,b.saveFidesCookie=Tn,b.selectBestExperienceConfigTranslation=rt,b.selectBestNoticeTranslation=jt,b.setupI18n=Dt,b.shouldResurfaceBanner=et,b.transformConsentToFidesUserPreference=Ae,b.transformTcfPreferencesToCookieKeys=yr,b.transformUserPreferenceToBoolean=ce,b.updateCookieFromExperience=In,b.updateCookieFromNoticePreferences=Sn,b.updateExperience=xi,b.updateExperienceFromCookieConsentNotices=$t,b.updateWindowFides=lt,b.validateOptions=Rn});
|
|
11
|
+
);border:1px solid var(--fides-overlay-row-divider-color);display:flex;margin-bottom:22px;padding:4px}.fides-radio-button{background-color:transparent;border:none;cursor:pointer;flex:1;padding:5px 16px}.fides-radio-button[aria-checked=true]{background-color:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}.fides-flex-center{align-items:center;display:flex}.fides-margin-right{margin-right:3px}.fides-justify-space-between{justify-content:space-between}.fides-vendor-details-table{width:100%}.fides-vendor-details-table td,.fides-vendor-details-table th{font-size:var(--fides-overlay-font-size-body-small);text-align:left}.fides-vendor-details-table td{border-bottom:1px solid var(--fides-overlay-row-divider-color)}.fides-link-button{background:none;border:none;cursor:pointer;padding:0}.fides-external-link,.fides-primary-text-color{color:var(--fides-overlay-primary-color)}.fides-external-link{font-size:var(--fides-overlay-font-size-body-small);font-weight:500;margin-right:16px}.fides-info-box{background-color:var(--fides-overlay-neutral-background-color);border-radius:var(--fides-overlay-component-border-radius);margin:10px 0;padding:16px}.fides-info-box p{margin:0}.fides-tabs .tabpanel-container{overflow:hidden}.tabpanel-container section[hidden]{display:none}.fides-paging-buttons{display:flex;gap:8px;justify-content:center}.fides-paging-info{color:var(--fides-overlay-font-color-dark);font-size:var(--fides-overlay-font-size-body-small);font-weight:600;padding:8px}.fides-paging-previous-button{margin-right:8px}.fides-paging-next-button,.fides-paging-previous-button{background-color:transparent;border:none;cursor:pointer;padding:6px}.fides-paging-next-button:disabled,.fides-paging-previous-button:disabled{cursor:default}.fides-i18n-menu{position:relative}.fides-modal-footer .fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}.fides-modal-footer .fides-button-group-i18n{min-height:var(--fides-overlay-modal-secondary-button-group-height)}button.fides-i18n-button{align-items:center;background-color:transparent;border:none;color:var(--fides-overlay-body-font-color);cursor:pointer;display:flex;flex-direction:row;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);gap:2px;height:var(--fides-overlay-font-size-body);text-transform:uppercase;white-space:nowrap}#fides-i18n-icon{animation-duration:var(--fides-overlay-language-loading-indicator-speed);animation-iteration-count:infinite;animation-timing-function:linear;transform-origin:50% 50%}div#fides-overlay-wrapper .fides-i18n-button{box-sizing:content-box}.fides-i18n-popover{background-color:var(--fides-overlay-background-dark-color);border-radius:var(--fides-overlay-component-border-radius);bottom:100%;display:flex;flex-direction:column;gap:1px;left:0;max-height:0;min-width:calc(var(--fides-base-font-size)*9);overflow:hidden;position:absolute;transition:max-height .2s ease-in-out}.fides-i18n-menu-open .fides-i18n-popover{border:1px solid var(--fides-overlay-primary-color);max-height:calc(var(--fides-base-font-size)*7);overflow:scroll}.fides-i18n-button:hover{background-color:var(--fides-overlay-hover-color);border-radius:var(--fides-overlay-language-button-border-radius)}.fides-i18n-menu-open .fides-i18n-caret{transform:rotate(180deg)}button.fides-banner-button.fides-menu-item{background:var(--fides-overlay-secondary-button-background-color);border:none;border-radius:0;color:var(--fides-overlay-secondary-button-text-color);margin:0;padding-left:calc(var(--fides-base-font-size)*1.5);text-align:left;width:100%}button.fides-banner-button.fides-menu-item[aria-checked=true]{background:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-menu-item[aria-checked=true]:before{content:"\\2713";display:inline-block;margin-left:calc(var(--fides-base-font-size)*-1);margin-right:calc(var(--fides-base-font-size)*.25)}button.fides-banner-button.fides-menu-item:not([aria-checked=true]):hover{background:var(--fides-overlay-secondary-button-background-hover-color)}@media (min-width:1280px){div#fides-banner{width:60%}}@media (min-width:768px){div#fides-banner{border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);width:75%}div#fides-banner-container.fides-banner-bottom{bottom:var(--fides-overlay-banner-offset)}}@media (max-width:768px){div#fides-consent-content,div.fides-modal-content{width:100%!important}.fides-modal-button-group{flex-direction:column}button.fides-banner-button{margin:0 8px 12px 0}div#fides-banner{padding:24px;width:100%}div#fides-banner-description{margin-bottom:0}div#fides-banner-inner div#fides-button-group{align-items:flex-start;flex-direction:column;gap:12px;padding-top:24px}.fides-banner-button-group{flex-direction:column;width:100%}button.fides-banner-button{margin:0;width:100%}div#fides-banner-inner-container{max-height:50vh;overflow-y:auto;scrollbar-gutter:stable}div.fides-privacy-policy-link{width:100%}.fides-modal-footer{max-width:100%}.fides-banner-secondary-actions{gap:12px}.fides-banner-secondary-actions .fides-manage-preferences-button{order:0}.fides-banner-secondary-actions .fides-privacy-policy{order:1}.fides-banner-secondary-actions .fides-i18n-menu{order:2}.fides-banner-button-group.fides-button-group-i18n{min-height:68px}.fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}}.fides-data-toggle-skeleton__container{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;min-height:40px;padding-inline:12px;width:100%}.fides-notice-toggle .fides-skeleton__container:hover{background-color:unset;cursor:default}.fides-skeleton__component{animation-duration:1.4s;animation-iteration-count:infinite;animation-name:fides-skeleton-loading;animation-timing-function:ease;background:linear-gradient(90deg,var(--fides-overlay-skeleton-gradient-from-color) 25%,var(--fides-overlay-skeleton-gradient-to-color) 37%,var(--fides-overlay-skeleton-gradient-from-color) 63%);background-size:400% 100%}.fides-skeleton__text{border-radius:var(--fides-overlay-component-border-radius);height:var(--fides-overlay-line-height);width:60%}.fides-skeleton__switch{border-radius:100vw;height:24px;width:50px}@keyframes fides-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}`;sl(ll);const cl=({id:e})=>{const[t,n]=q(!1),i=j(()=>n(!1),[]),o=j(()=>n(!0),[]),r=j(()=>{t?i():o()},[t,o,i]);return{isOpen:t,onOpen:o,onClose:i,onToggle:r,getButtonProps:()=>({"aria-expanded":t,"aria-controls":e,onClick:r}),getDisclosureProps:()=>({id:e,className:t?"fides-disclosure-visible":"fides-disclosure-hidden"})}},dl=(e,t)=>{const[n,i]=q(null);return F(()=>{if(t)return()=>{};Li(e).then(o=>{i(o)})},[e,t]),n},ul=()=>{const[e,t]=q(!1);return F(()=>{t(!0)},[]),e};var fl=Object.defineProperty,ko=Object.getOwnPropertySymbols,pl=Object.prototype.hasOwnProperty,_l=Object.prototype.propertyIsEnumerable,Po=(e,t,n)=>t in e?fl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,vl=(e,t)=>{for(var n in t||(t={}))pl.call(t,n)&&Po(e,n,t[n]);if(ko)for(var n of ko(t))_l.call(t,n)&&Po(e,n,t[n]);return e},gl=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const bl=({options:e,privacyExperience:t,privacyExperienceConfigHistoryId:n,privacyNoticeHistoryIds:i,userGeography:o,acknowledgeMode:r,tcfNoticesServed:l})=>{const s=j(a=>gl(void 0,null,function*(){var c;if(e.fidesDisableSaveApi||e.fidesDisableNoticesServedApi||!a.detail.extraDetails||a.detail.extraDetails.servingComponent===Ae.BANNER&&!((c=t?.experience_config)!=null&&c.show_layer1_notices))return;const u=Oi.getServedNoticeHistoryId(),d=vl({served_notice_history_id:u,browser_identity:a.detail.identity,privacy_experience_config_history_id:n||"",user_geography:o,acknowledge_mode:r,privacy_notice_history_ids:i||[],serving_component:String(a.detail.extraDetails.servingComponent),property_id:t.property_id},l);Ei({request:d,options:e})}),[e,t,n,o,r,i,l]);F(()=>(window.addEventListener("FidesUIShown",s),()=>{window.removeEventListener("FidesUIShown",s)}),[s])},Co=De({}),yl=({i18nInstance:e,children:t})=>{const[n,i]=q(),[o,r]=q(!1),l=j(a=>{e.activate(a),i(a)},[e,i]);F(()=>{const a=document.getElementById(Ir);o?a?.style.setProperty("animation-name","spin"):a?.style.removeProperty("animation-name")},[o]);const s=me(()=>({i18n:e,currentLocale:n,setCurrentLocale:l,isLoading:o,setIsLoading:r}),[e,n,l,o]);return p(Co.Provider,{value:s,children:t})},ce=()=>{const e=Me(Co);if(!e||Object.keys(e).length===0)throw new Error("useI18n must be used within a I18nProvider");return e};var hl=Object.defineProperty,ml=Object.defineProperties,wl=Object.getOwnPropertyDescriptors,xo=Object.getOwnPropertySymbols,El=Object.prototype.hasOwnProperty,Ol=Object.prototype.propertyIsEnumerable,No=(e,t,n)=>t in e?hl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,rn=(e,t)=>{for(var n in t||(t={}))El.call(t,n)&&No(e,n,t[n]);if(xo)for(var n of xo(t))Ol.call(t,n)&&No(e,n,t[n]);return e},kl=(e,t)=>ml(e,wl(t));const Ao=De({}),Pl=({children:e})=>{const t=ze(),n=ze(),i=j(s=>{t.current=s},[]),o=j(s=>{n.current=s},[]),r=j((s,a,c)=>{var u;re(s,a,kl(rn({},c),{servingComponent:(u=c?.servingComponent)!=null?u:n.current,trigger:rn(rn({},c?.trigger),t.current)})),i(void 0)},[i]),l=me(()=>({triggerRef:t,setTrigger:i,servingComponentRef:n,setServingComponent:o,dispatchFidesEventAndClearTrigger:r}),[i,r,o]);return p(Ao.Provider,{value:l,children:e})},_e=()=>{const e=Me(Ao);if(!e||Object.keys(e).length===0)throw new Error("useEvent must be used within a EventProvider");return e},To=De({}),Cl=({initializedFides:e,children:t})=>{const[n,i]=q(e),o=me(()=>({fidesGlobal:n,setFidesGlobal:i}),[n,i]);return p(To.Provider,{value:o,children:t})},xl=()=>{const e=Me(To);if(!e||Object.keys(e).length===0)throw new Error("useFidesGlobal must be used within a FidesGlobalProvider");return e},So=({onClick:e,ariaLabel:t,hidden:n=!1})=>p("button",{type:"button","aria-label":t,className:"fides-close-button",onClick:e,style:{visibility:n?"hidden":"visible"},children:p("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",children:p("path",{fill:"#2D3748",d:"m8 7.057 3.3-3.3.943.943-3.3 3.3 3.3 3.3-.943.943-3.3-3.3-3.3 3.3-.943-.943 3.3-3.3-3.3-3.3.943-.943 3.3 3.3Z"})})}),Nl=De({}),an="__VENDOR_COUNT_LINK__",Io=(e,t)=>t?p("span",{dangerouslySetInnerHTML:{__html:e.trim()}}):Ps(e).trim(),Lo=({description:e,onVendorPageClick:t,allowHTMLDescription:n=!1})=>{const[i,o]=q(),{setTrigger:r}=_e();let l=0;const s=Me(Nl);return s?.vendorCount&&(l=s.vendorCount),F(()=>{if(e)if(e.includes(an)&&t){const a=e.split(an);for(let u=1;u<a.length;u+=2)a.splice(u,0,p(se,{children:[" ",p("button",{type:"button",className:"fides-link-button fides-vendor-count",onClick:()=>{t&&(r({type:Z.LINK,label:an}),t())},children:l})," "]}));const c=a.map(u=>typeof u=="string"?Io(u,n):u);o(c)}else o([Io(e,n)])},[e,t]),e?p("div",{children:i}):null},$o=({status:e})=>{const{i18n:t}=ce(),n=t.t("static.gpc"),i=e.valueOf();let o="";if(e===oe.APPLIED)o=t.t("static.gpc.status.applied");else if(e===oe.OVERRIDDEN)o=t.t("static.gpc.status.overridden");else if(e===oe.NONE)return null;return p("span",{className:"fides-gpc-label",children:[n," ",p("span",{className:`fides-gpc-badge fides-gpc-badge-${i}`,children:o})]})};var Al=Object.defineProperty,Tl=Object.defineProperties,Sl=Object.getOwnPropertyDescriptors,Fo=Object.getOwnPropertySymbols,Il=Object.prototype.hasOwnProperty,Ll=Object.prototype.propertyIsEnumerable,jo=(e,t,n)=>t in e?Al(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,sn=(e,t)=>{for(var n in t||(t={}))Il.call(t,n)&&jo(e,n,t[n]);if(Fo)for(var n of Fo(t))Ll.call(t,n)&&jo(e,n,t[n]);return e},ln=(e,t)=>Tl(e,Sl(t));const $l=({attributes:e,dismissable:t,onOpen:n,onClose:i,bannerIsOpen:o,children:r,onVendorPageClick:l,renderButtonGroup:s,className:a,isEmbedded:c})=>{var u,d,b,_,g,f,y,h,m,w,O;const{container:E,dialog:N,title:$,closeButton:k}=e,{i18n:x}=ce(),A=Pe().globalPrivacyControl,{setTrigger:S}=_e();F(()=>{o&&n()},[o,n]);const X=be(x,"exp.banner_title")?x.t("exp.banner_title"):x.t("exp.title"),W=be(x,"exp.banner_description")?x.t("exp.banner_description"):x.t("exp.description"),K=["fides-banner","fides-banner-bottom",!o&&"fides-banner-hidden",c&&"fides-embedded",a].filter(G=>typeof G=="string").join(" ");let Q=[];return(b=(d=(u=window.Fides)==null?void 0:u.experience)==null?void 0:d.experience_config)!=null&&b.show_layer1_notices&&((g=(_=window.Fides)==null?void 0:_.experience)!=null&&g.privacy_notices)&&(Q=(y=(f=window.Fides)==null?void 0:f.experience)==null?void 0:y.privacy_notices),p("div",ln(sn({className:K},E),{id:`${E.id}-container`,children:p("div",{id:E.id,children:p("div",ln(sn({},N),{id:`${E.id}-inner`,children:[p(So,{ariaLabel:"Close banner",onClick:()=>{S({type:Z.BUTTON,label:"Close banner"}),k.onClick(),i()},hidden:((m=(h=window.Fides)==null?void 0:h.options)==null?void 0:m.preventDismissal)||!t}),p("div",{id:`${E.id}-inner-container`,children:[p("div",{className:"fides-banner__col",children:[p("div",{id:"fides-banner-heading",children:[p("h1",ln(sn({className:"fides-banner-title"},$),{id:`${E.id}-title`,children:X})),A&&p($o,{status:oe.APPLIED})]}),p("div",{id:`${E.id}-description`,className:"fides-banner-description fides-banner__content",children:[p(Lo,{description:W,onVendorPageClick:l,allowHTMLDescription:(O=(w=window.Fides)==null?void 0:w.options)==null?void 0:O.allowHTMLDescription}),!!Q?.length&&p("div",{id:`${E.id}-notices`,className:"fides-banner-notices",children:Q.map((G,Ne)=>p("span",{children:[p("strong",{children:G.name}),Ne<Q.length-1&&", "]},G.id))})]})]}),r]}),s()]}))})}))},Fl=e=>{const[t,n]=q(!1);return F(()=>{const i=window.matchMedia(e);n(i.matches);function o(r){n(r.matches)}return i.addEventListener?i.addEventListener("change",o):i.addListener(o),()=>{i.removeEventListener?i.removeEventListener("change",o):i.removeListener(o)}},[e]),t},jl=()=>p("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31",height:"20",fill:"currentColor",className:"ethyca-logo",role:"img","aria-label":"Ethyca",children:p("path",{d:"M11.5602 0H8.70311V7.9999H11.5602V0ZM23.0026 12.0001H20.1455V20H23.0026V12.0001ZM14.1258 20H17.5799L12.1315 11.9774V17.0631L14.1258 20ZM8.13179 17.0626V11.9769L2.68588 19.9995H6.14003L8.13129 17.0626H8.13179ZM23.5744 2.93688V8.02263L29.0198 0H25.5682L23.5739 2.93688H23.5744ZM19.5742 2.93688L17.5799 0H14.1258L19.5742 8.02263V2.93688ZM19.5717 8.57121H12.132V11.4283H19.5717V8.57121ZM31 8.57121H23.5603V11.4283H31V8.57121ZM8.13179 8.57121H0.691589V11.4283H8.13179V8.57121Z"})}),Dl=()=>p("div",{className:"fides-brand",children:p("a",{href:"https://ethyca.com/",target:"_blank",rel:"noopener noreferrer",className:"fides-brand-link",children:["Powered by",p(jl,{})]})}),Rl=()=>p("div",{className:"fides-spinner"}),xe=({buttonType:e,label:t,id:n,onClick:i,className:o="",disabled:r,loading:l})=>p("button",{type:"button",id:n,className:`fides-banner-button fides-banner-button-${e.valueOf()} ${o}`,onClick:i,disabled:r||l,style:{cursor:r||l?"not-allowed":"pointer"},children:[t||"",l&&p(Rl,{})]}),zl=De({});var Ml=Object.defineProperty,Ul=Object.defineProperties,Gl=Object.getOwnPropertyDescriptors,wt=Object.getOwnPropertySymbols,Do=Object.prototype.hasOwnProperty,Ro=Object.prototype.propertyIsEnumerable,zo=(e,t,n)=>t in e?Ml(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Bl=(e,t)=>{for(var n in t||(t={}))Do.call(t,n)&&zo(e,n,t[n]);if(wt)for(var n of wt(t))Ro.call(t,n)&&zo(e,n,t[n]);return e},Vl=(e,t)=>Ul(e,Gl(t)),Hl=(e,t)=>{var n={};for(var i in e)Do.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(e!=null&&wt)for(var i of wt(e))t.indexOf(i)<0&&Ro.call(e,i)&&(n[i]=e[i]);return n};const Kl=e=>{var t=e,{isActive:n,className:i,children:o}=t,r=Hl(t,["isActive","className","children"]);return p("button",Vl(Bl({type:"button",role:"menuitemradio","aria-checked":n},r),{className:`fides-banner-button fides-menu-item ${i||""}`,children:o}))};var Yl=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const ql=({availableLocales:e,options:t,isTCF:n})=>{const[i,o]=q(!1),{i18n:r,currentLocale:l,setCurrentLocale:s,setIsLoading:a}=ce(),c=Me(zl),u=ze(null),d=ze(null),b=()=>{o(!i)},_=f=>Yl(void 0,null,function*(){var y;if(f!==r.locale)if(n){a(!0);const h=yield yi(t.fidesApiUrl,[f]);a(!1),h&&Object.keys(h).length?(c.setGvlTranslations(h[f]),si(r,h,e||[H]),s(f)):console.error(`Unable to load GVL translation for ${f}`)}else s(f);o(!1),(y=u.current)==null||y.focus()}),g=j(f=>{var y,h,m;if(!i)return;const w=((y=d.current)==null?void 0:y.querySelectorAll(".fides-menu-item"))||[],{key:O}=f;if(O==="Escape"||O==="Tab"){o(!1),(h=u.current)==null||h.focus();return}if(O==="ArrowUp"||O==="ArrowDown"){f.preventDefault();const E=Array.from(w).findIndex($=>$===document.activeElement);let N=E;O==="ArrowDown"?N=E===w.length-1?0:E+1:O==="ArrowUp"&&(N=E===0?w.length-1:E-1),(m=w[N])==null||m.focus()}},[i]);return F(()=>(document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}),[g]),F(()=>{var f,y;if(i){const h=(f=d.current)==null?void 0:f.querySelectorAll(".fides-menu-item");(y=h?.[0])==null||y.focus()}},[i]),F(()=>{const f=y=>{i&&d.current&&!d.current.contains(y.target)&&u.current&&!u.current.contains(y.target)&&o(!1)};return document.addEventListener("mousedown",f),()=>{document.removeEventListener("mousedown",f)}},[i]),p("div",{className:`fides-i18n-menu ${i?"fides-i18n-menu-open":""}`,ref:d,children:[p("div",{role:"menu",className:"fides-i18n-popover",id:"fides-i18n-popover",children:r.availableLanguages.map(f=>p(Kl,{id:l===f.locale?"fidesActiveMenuItem":void 0,onClick:()=>_(f.locale),isActive:l===f.locale,title:f.label_en,"aria-label":f.label_en,tabIndex:-1,children:f.label_original},f.locale))}),p("button",{type:"button",className:"fides-i18n-button",onClick:b,ref:u,"aria-haspopup":"true","aria-expanded":i,"aria-controls":"fides-i18n-popover","aria-label":`Select language, current language is ${l}`,children:[p("svg",{xmlns:"http://www.w3.org/2000/svg",height:"100%",viewBox:"0 0 36 36",fill:"currentColor",id:"fides-i18n-icon",children:p("path",{fill:"currentColor",d:"M18 32.625c.52 0 1.898-.506 3.347-3.403.619-1.245 1.153-2.756 1.547-4.472h-9.788c.394 1.716.928 3.227 1.547 4.472 1.449 2.897 2.827 3.403 3.347 3.403m-5.45-11.25h10.9a32.5 32.5 0 0 0 0-6.75h-10.9a32.5 32.5 0 0 0 0 6.75m.556-10.125h9.788c-.394-1.716-.928-3.227-1.547-4.472C19.898 3.881 18.52 3.375 18 3.375s-1.898.506-3.347 3.403c-.619 1.245-1.153 2.756-1.547 4.472m13.732 3.375A35 35 0 0 1 26.993 18c0 1.153-.056 2.285-.155 3.375h5.393c.253-1.083.394-2.215.394-3.375s-.134-2.292-.394-3.375h-5.393m4.135-3.375a14.7 14.7 0 0 0-6.92-6.567c.992 1.8 1.78 4.043 2.293 6.567h4.634zm-21.326 0c.513-2.524 1.3-4.76 2.292-6.567A14.7 14.7 0 0 0 5.02 11.25h4.634zm-5.878 3.375A14.8 14.8 0 0 0 3.375 18c0 1.16.134 2.292.394 3.375h5.393A35 35 0 0 1 9.007 18c0-1.153.056-2.285.155-3.375zm20.285 16.692a14.7 14.7 0 0 0 6.919-6.567h-4.627c-.513 2.524-1.3 4.76-2.292 6.567m-12.108 0c-.991-1.8-1.779-4.043-2.292-6.567H5.02a14.7 14.7 0 0 0 6.92 6.567zM18 36a18 18 0 1 1 0-36 18 18 0 0 1 0 36"})}),l,p("svg",{className:"fides-i18n-caret",xmlns:"http://www.w3.org/2000/svg",height:"100%",fill:"currentColor",viewBox:"0 0 24 24",children:p("path",{d:"M12 13.172L16.95 8.22198L18.364 9.63598L12 16L5.63599 9.63598L7.04999 8.22198L12 13.172Z"})})]})]})},Wl=()=>{const{i18n:e}=ce();if(!be(e,"exp.privacy_policy_link_label")||!be(e,"exp.privacy_policy_url"))return null;const t=e.t("exp.privacy_policy_link_label"),n=e.t("exp.privacy_policy_url");return p("div",{id:"fides-privacy-policy-link",style:{display:"flex",alignItems:"center",justifyContent:"center"},children:p("a",{href:n,rel:"noopener noreferrer",target:"_blank",className:"fides-privacy-policy",children:t})})},Xl=({availableLocales:e=[H],onManagePreferencesClick:t,renderFirstButton:n,onAcceptAll:i,onRejectAll:o,hideOptInOut:r,hideRejectAll:l,options:s,isInModal:a,isTCF:c,isGVLLoading:u})=>{var d;const{i18n:b}=ce(),{setTrigger:_}=_e(),g=Fl("(max-width: 768px)"),f=((d=b.availableLanguages)==null?void 0:d.length)>1,y=be(b,"exp.privacy_policy_link_label")&&be(b,"exp.privacy_policy_url"),h=a&&s.showFidesBrandLink;return p("div",{id:"fides-button-group",children:[p("div",{className:a?"fides-modal-button-group fides-modal-primary-actions":"fides-banner-button-group fides-banner-primary-actions",children:[!!n&&n(),!r&&p(se,{children:[c&&!!t&&p(xe,{buttonType:ee.SECONDARY,label:b.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:Z.BUTTON,label:b.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),!l&&p(xe,{buttonType:ee.PRIMARY,label:b.t("exp.reject_button_label"),onClick:()=>{_({type:Z.BUTTON,label:b.t("exp.reject_button_label")}),o()},className:"fides-reject-all-button",id:"fides-reject-all-button",loading:u}),p(xe,{buttonType:ee.PRIMARY,label:b.t("exp.accept_button_label"),onClick:()=>{_({type:Z.BUTTON,label:b.t("exp.accept_button_label")}),i()},className:"fides-accept-all-button",id:"fides-accept-all-button",loading:u})]})]}),p("div",{className:`${a?"fides-modal-button-group fides-modal-secondary-actions":"fides-banner-button-group fides-banner-secondary-actions"}${f?" fides-button-group-i18n":""}${y?" fides-button-group-privacy-policy":""}${h?" fides-button-group-brand":""}`,children:[f&&p(ql,{availableLocales:e,options:s,isTCF:!!c}),!c&&!!t&&p(xe,{buttonType:g?ee.SECONDARY:ee.TERTIARY,label:b.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:Z.BUTTON,label:b.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),y&&p(Wl,{}),h&&p(Dl,{})]})]})},Mo=({experience:e,onAcceptAll:t,onRejectAll:n,onSave:i,onManagePreferencesClick:o,enabledKeys:r,isInModal:l,isAcknowledge:s,hideOptInOut:a=!1,options:c})=>{const{i18n:u}=ce(),{setTrigger:d}=_e();if(!e.experience_config||!e.privacy_notices)return null;const{privacy_notices:b}=e,_=()=>{i(I.ACKNOWLEDGE,b.map(y=>y.notice_key))},g=()=>{i(I.SAVE,r)},f=()=>s?p(xe,{buttonType:ee.PRIMARY,label:u.t("exp.acknowledge_button_label"),onClick:()=>{d({type:Z.BUTTON,label:u.t("exp.acknowledge_button_label")}),_()},className:"fides-acknowledge-button"}):l?p(xe,{buttonType:a?ee.PRIMARY:ee.SECONDARY,label:u.t("exp.save_button_label"),onClick:()=>{d({type:Z.BUTTON,label:u.t("exp.save_button_label")}),g()},className:"fides-save-button",id:"fides-save-button"}):null;return p(Xl,{availableLocales:e.available_locales,onManagePreferencesClick:o,onAcceptAll:t,onRejectAll:n,isInModal:l,renderFirstButton:f,hideOptInOut:a,options:c})};var Zl=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])','input[type="radio"]:not([disabled]):not([tabindex^="-"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','iframe:not([tabindex^="-"])','audio[controls]:not([tabindex^="-"])','video[controls]:not([tabindex^="-"])','[contenteditable]:not([tabindex^="-"])','[tabindex]:not([tabindex^="-"])'],Jl="Tab",Ql="Escape";function J(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}J.prototype.create=function(){this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=Ue('[data-a11y-dialog-show="'+this._id+'"]'),this._openers.forEach(function(t){t.addEventListener("click",this._show)}.bind(this));const e=this.$el;return this._closers=Ue("[data-a11y-dialog-hide]",this.$el).filter(function(t){return t.closest('[aria-modal="true"], [data-a11y-dialog]')===e}).concat(Ue('[data-a11y-dialog-hide="'+this._id+'"]')),this._closers.forEach(function(t){t.addEventListener("click",this._hide)}.bind(this)),this._fire("create"),this},J.prototype.show=function(e){if(this.shown)return this;this._previouslyFocused=document.activeElement;const t=e&&e.target?e.target:null;return t&&Object.is(this._previouslyFocused,document.body)&&(this._previouslyFocused=t),this.$el.removeAttribute("aria-hidden"),this.shown=!0,Uo(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e),this},J.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},J.prototype.destroy=function(){return this.hide(),this._openers.forEach(function(e){e.removeEventListener("click",this._show)}.bind(this)),this._closers.forEach(function(e){e.removeEventListener("click",this._hide)}.bind(this)),this._fire("destroy"),this._listeners={},this},J.prototype.on=function(e,t){return typeof this._listeners[e]>"u"&&(this._listeners[e]=[]),this._listeners[e].push(t),this},J.prototype.off=function(e,t){var n=(this._listeners[e]||[]).indexOf(t);return n>-1&&this._listeners[e].splice(n,1),this},J.prototype._fire=function(e,t){var n=this._listeners[e]||[],i=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(i),n.forEach(function(o){o(this.$el,t)}.bind(this))},J.prototype._bindKeypress=function(e){const t=document.activeElement;t&&t.closest('[aria-modal="true"]')!==this.$el||(this.shown&&e.key===Ql&&this.$el.getAttribute("role")!=="alertdialog"&&(e.preventDefault(),this.hide(e)),this.shown&&e.key===Jl&&nc(this.$el,e))},J.prototype._maintainFocus=function(e){this.shown&&!e.target.closest('[aria-modal="true"]')&&!e.target.closest("[data-a11y-dialog-ignore-focus-trap]")&&Uo(this.$el)};function ec(e){return Array.prototype.slice.call(e)}function Ue(e,t){return ec((t||document).querySelectorAll(e))}function Uo(e){var t=e.querySelector("[autofocus]")||e;t.focus()}function tc(e){return Ue(Zl.join(","),e).filter(function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)})}function nc(e,t){var n=tc(e),i=n.indexOf(document.activeElement);t.shiftKey&&i===0?(n[n.length-1].focus(),t.preventDefault()):!t.shiftKey&&i===n.length-1&&(n[0].focus(),t.preventDefault())}function cn(){Ue("[data-a11y-dialog]").forEach(function(e){new J(e)})}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",cn):window.requestAnimationFrame?window.requestAnimationFrame(cn):window.setTimeout(cn,16));const ic=()=>{const[e,t]=q(null),n=j(i=>{if(i!==null){const o=new J(i);t(o)}},[]);return{instance:e,container:n}},Go=({id:e,onClose:t,ariaHidden:n=!0})=>{const{instance:i,container:o}=ic(),r=`${e}-title`,l=j(()=>{i&&i.hide(),t&&t()},[t,i]);return F(()=>()=>{i&&i.destroy()},[i]),{instance:i,attributes:{container:{id:e,ref:o,role:"alertdialog","aria-hidden":n,"aria-labelledby":r},dialog:{role:"document"},closeButton:{type:"button",onClick:l},title:{role:"heading","aria-level":1,id:r}}}},oc=()=>p("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"currentColor",children:p("path",{d:"M9 12.05a.68.68 0 0 0-.68.7c0 .39.32.7.68.7.39 0 .68-.31.68-.7a.66.66 0 0 0-.68-.7Zm0-1.18c.26 0 .44-.2.44-.46V6.19c0-.26-.2-.47-.44-.47a.49.49 0 0 0-.47.47v4.22c0 .25.21.46.47.46Zm7.27 2.27-5.85-9.9c-.3-.5-.83-.8-1.42-.8-.6 0-1.12.3-1.42.8l-5.86 9.9c-.3.5-.3 1.1-.01 1.6.3.51.83.82 1.43.82h11.72c.6 0 1.13-.3 1.43-.82.29-.5.28-1.1-.02-1.6Zm-.82 1.1c-.1.25-.33.38-.62.38H3.14a.7.7 0 0 1-.61-.35.64.64 0 0 1 0-.65l5.86-9.9A.7.7 0 0 1 9 3.37a.7.7 0 0 1 .61.35l5.86 9.9c.1.2.12.44-.02.63Z"})}),rc=({title:e,description:t})=>p("div",{className:"fides-gpc-banner",children:[p("div",{className:"fides-gpc-warning",children:p(oc,{})}),p("div",{children:[p("p",{className:"fides-gpc-header",children:e}),p("p",{children:t})]})]});var ac=Object.defineProperty,sc=Object.defineProperties,lc=Object.getOwnPropertyDescriptors,Bo=Object.getOwnPropertySymbols,cc=Object.prototype.hasOwnProperty,dc=Object.prototype.propertyIsEnumerable,Vo=(e,t,n)=>t in e?ac(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,uc=(e,t)=>{for(var n in t||(t={}))cc.call(t,n)&&Vo(e,n,t[n]);if(Bo)for(var n of Bo(t))dc.call(t,n)&&Vo(e,n,t[n]);return e},fc=(e,t)=>sc(e,lc(t));const Ho=({titleProps:e,className:t,renderModalFooter:n,children:i,onVendorPageClick:o})=>{var r,l;const{i18n:s}=ce(),a=s.t("exp.title"),c=s.t("exp.description"),u=Pe().globalPrivacyControl,d=s.t("static.gpc.title"),b=s.t("static.gpc.description");return p(se,{children:[p("div",{id:"fides-consent-content",className:t,children:p("div",{className:"fides-modal-body",children:[p("div",fc(uc({},e),{className:"fides-modal-title",children:a})),p("p",{className:"fides-modal-description",children:p(Lo,{onVendorPageClick:o,description:c,allowHTMLDescription:(l=(r=window.Fides)==null?void 0:r.options)==null?void 0:l.allowHTMLDescription})}),u&&p(rc,{title:d,description:b}),i]})}),p("div",{className:"fides-modal-footer",children:n()})]})};var pc=Object.defineProperty,_c=Object.defineProperties,vc=Object.getOwnPropertyDescriptors,Ko=Object.getOwnPropertySymbols,gc=Object.prototype.hasOwnProperty,bc=Object.prototype.propertyIsEnumerable,Yo=(e,t,n)=>t in e?pc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,qo=(e,t)=>{for(var n in t||(t={}))gc.call(t,n)&&Yo(e,n,t[n]);if(Ko)for(var n of Ko(t))bc.call(t,n)&&Yo(e,n,t[n]);return e},Wo=(e,t)=>_c(e,vc(t));const yc=({attributes:e,children:t,dismissable:n,onVendorPageClick:i,renderModalFooter:o})=>{const{container:r,dialog:l,title:s,closeButton:a}=e,{setTrigger:c}=_e();return p("div",Wo(qo({},r),{className:"fides-modal-container",children:[p("div",{className:"fides-modal-overlay"}),p("div",Wo(qo({},l),{className:"fides-modal-content",children:[p("div",{className:"fides-modal-header",children:[p("div",{}),p(So,{ariaLabel:"Close modal",onClick:()=>{c({type:"button",label:"Close modal"}),a.onClick()},hidden:window.Fides.options.preventDismissal||!n})]}),p(Ho,{titleProps:s,renderModalFooter:o,onVendorPageClick:i,children:t})]}))]}))},hc=({options:e,experience:t,cookie:n,savedConsent:i,onOpen:o,onDismiss:r,renderBanner:l,renderModalContent:s,renderModalFooter:a,onVendorPageClick:c,isUiBlocking:u})=>{const{setServingComponent:d,dispatchFidesEventAndClearTrigger:b}=_e(),_=100,g=ul(),f=e.modalLinkId||"fides-modal-link",y=!t||!!e.fidesEmbed||e.modalLinkId==="",h=dl(f,y),m=ze(null),[w,O]=q(null);F(()=>{w===null&&O(!nt(t,n,i,e))},[w]);const[E,N]=q(e.fidesEmbed?nt(t,n,i,e):!1);F(()=>(u&&E?ks():Ii(),()=>{Ii()}),[u,E]);const $=j(({saved:K=!1})=>{K||r(),b("FidesModalClosed",n,{saved:K}),d(void 0)},[b,n,r,d]),{instance:k,attributes:x}=Go({id:"fides-modal",onClose:()=>{$({saved:!1})}});F(()=>{k&&k.on("show",()=>{document.documentElement.style.overflowY="hidden"}).on("hide",()=>{document.documentElement.style.overflowY=""})},[k]);const{attributes:A}=Go({id:"fides-banner",ariaHidden:!E&&!e.fidesEmbed,onClose:()=>{N(!1)}}),S=j((K=ge.FIDES)=>{e.fidesEmbed?N(!1):k&&(N(!1),k.show(),o(K))},[k,o,e]),X=j(()=>{k&&!e.fidesEmbed&&(k.hide(),$({saved:!0}))},[k,$,e.fidesEmbed]);F(()=>{e.fidesEmbed&&!E&&o()},[e,o,E]),F(()=>{const K=setTimeout(()=>{w||N(!0)},_);return()=>clearTimeout(K)},[w,N]),F(()=>(t&&!e.fidesEmbed&&(window.Fides.showModal=()=>{S(ge.EXTERNAL)}),()=>{window.Fides.showModal=$t}),[t,S,e.fidesEmbed]),F(()=>{e.fidesModalDisplay==="immediate"&&S()},[e.fidesModalDisplay,S]),F(()=>(document.body.classList.add("fides-overlay-modal-link-shown"),y||h&&(m.current=h,m.current.addEventListener("click",window.Fides.showModal),m.current.classList.add("fides-modal-link-shown")),()=>{m.current&&m.current.removeEventListener("click",window.Fides.showModal)}),[h,y,f]);const W=()=>{S()};return!g||!t.experience_config?null:p("div",{id:Sr,tabIndex:-1,children:[!w&&E&&u&&p("div",{className:"fides-modal-overlay"}),e.fidesEmbed?E||!s||!a?null:p(Ho,{titleProps:x.title,renderModalFooter:()=>a({onClose:X,isMobile:!1}),onVendorPageClick:c,children:s()}):p(yc,{attributes:x,dismissable:t.experience_config.dismissable,onVendorPageClick:c,renderModalFooter:()=>a?a({onClose:X,isMobile:!1}):null,children:s&&s()}),!w&&l({attributes:A,isOpen:E,isEmbedded:e.fidesEmbed,onClose:()=>{N(!1)},onManagePreferencesClick:W})]})},mc=({label:e,name:t,id:n,checked:i,onChange:o,disabled:r,onLabel:l,offLabel:s})=>{const{setTrigger:a}=_e(),c=i?l:s;return p("div",{className:"fides-toggle",children:[p("input",{type:"checkbox",name:t,"aria-label":e,className:"fides-toggle-input",onChange:()=>{a({type:Z.TOGGLE,label:e,checked:!i}),o(n)},checked:i,role:"switch",disabled:r}),p("span",{className:"fides-toggle-display",children:c})]})};var wc=Object.defineProperty,Ec=Object.defineProperties,Oc=Object.getOwnPropertyDescriptors,Xo=Object.getOwnPropertySymbols,kc=Object.prototype.hasOwnProperty,Pc=Object.prototype.propertyIsEnumerable,Zo=(e,t,n)=>t in e?wc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Jo=(e,t)=>{for(var n in t||(t={}))kc.call(t,n)&&Zo(e,n,t[n]);if(Xo)for(var n of Xo(t))Pc.call(t,n)&&Zo(e,n,t[n]);return e},Qo=(e,t)=>Ec(e,Oc(t));const Cc=({noticeKey:e,title:t,checked:n,onToggle:i,children:o,badge:r,gpcBadge:l,disabled:s,onLabel:a,offLabel:c,isHeader:u,includeToggle:d=!0})=>{const{isOpen:b,getButtonProps:_,getDisclosureProps:g,onToggle:f}=cl({id:e}),y=(w,O)=>{(w.code==="Space"||w.code==="Enter")&&(w.preventDefault(),O&&f())},h=o!=null,m=h?_():{};return p("div",{className:b&&h?"fides-notice-toggle fides-notice-toggle-expanded":"fides-notice-toggle",children:[p("div",{className:"fides-notice-toggle-title",children:[p("span",Qo(Jo({role:"button",tabIndex:0,onKeyDown:w=>y(w,h)},m),{className:u?"fides-notice-toggle-trigger fides-notice-toggle-header":"fides-notice-toggle-trigger",children:p("span",{className:"fides-flex-center fides-justify-space-between",children:t})})),p("span",{className:"fides-notice-toggle-controls",children:[l,r?p("span",{className:"fides-notice-badge",children:r}):null,d?p(mc,{label:t,name:e,id:e,checked:n,onChange:i,disabled:s,onLabel:a,offLabel:c}):null]})]},e),o?p("div",Qo(Jo({},g()),{children:o})):null]})},xc=()=>p("hr",{className:"fides-divider"}),Nc=({noticeToggles:e,enabledNoticeKeys:t,onChange:n})=>{const{i18n:i}=ce(),o=s=>{const a={key:s,type:"notice"};t.indexOf(s)===-1?n([...t,s],a):n(t.filter(c=>c!==s),a)};let r,l;return li(i)===H&&(r="On",l="Off"),p("div",{children:e.map((s,a)=>{const{noticeKey:c,title:u,description:d,checked:b,disabled:_,gpcStatus:g}=s,f=a===e.length-1;return p("div",{children:[p(Cc,{noticeKey:c,title:u,checked:b,onToggle:o,gpcBadge:p($o,{status:g}),disabled:_,onLabel:r,offLabel:l,children:d}),f?null:p(xc,{})]},c)})})};var Ac=Object.defineProperty,Tc=Object.defineProperties,Sc=Object.getOwnPropertyDescriptors,er=Object.getOwnPropertySymbols,Ic=Object.prototype.hasOwnProperty,Lc=Object.prototype.propertyIsEnumerable,tr=(e,t,n)=>t in e?Ac(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,$c=(e,t)=>{for(var n in t||(t={}))Ic.call(t,n)&&tr(e,n,t[n]);if(er)for(var n of er(t))Lc.call(t,n)&&tr(e,n,t[n]);return e},Fc=(e,t)=>Tc(e,Sc(t));const jc=()=>{var e;const{fidesGlobal:t,setFidesGlobal:n}=xl(),{fidesRegionString:i,cookie:o,options:r,saved_consent:l}=t,s=t.experience,{i18n:a,currentLocale:c,setCurrentLocale:u}=ce(),{triggerRef:d,setTrigger:b,servingComponentRef:_,setServingComponent:g,dispatchFidesEventAndClearTrigger:f}=_e(),y=Oe(),h=C=>s.privacy_notices?s.privacy_notices.map(T=>On(T,C||l||y?.consent)?T.notice_key:""):[];F(()=>{!c&&a.locale&&u(a.locale)},[c,a.locale,u]);const m=me(()=>{if(s.experience_config){const C=at(c,a.getDefaultLocale(),s.experience_config);return C?.privacy_experience_config_history_id}},[s,c]),w=me(()=>{var C;const D=((C=s.privacy_notices)!=null?C:[]).map(Y=>{var Be,Et;const un=Y.consent_mechanism===B.NOTICE_ONLY||((Et=(Be=r.fidesDisabledNotices)==null?void 0:Be.includes(Y.notice_key))!=null?Et:!1)||Y.disabled,Wc=zt(c,a.getDefaultLocale(),Y);return{notice:Fc($c({},Y),{disabled:un}),bestTranslation:Wc}}),z=D.filter(Y=>Y.notice.consent_mechanism===B.NOTICE_ONLY),Ge=D.filter(Y=>Y.notice.consent_mechanism!==B.NOTICE_ONLY);return[...z,...Ge]},[s.privacy_notices,c,r.fidesDisabledNotices]),[O,E]=q(h());window.addEventListener("FidesUpdating",C=>{const{consent:T}=C.detail;Object.entries(T).forEach(([D,z])=>{T[D]=Se(z)}),E(h(T))});const N=w.every(C=>C.notice.consent_mechanism===B.NOTICE_ONLY),$=w.map(C=>{var T,D;const z=O.indexOf(C.notice.notice_key)!==-1,Ge=Pe(),Y=Kn({value:z,notice:C.notice,consentContext:Ge});return{noticeKey:C.notice.notice_key,title:((T=C.bestTranslation)==null?void 0:T.title)||C.notice.name||"",description:(D=C.bestTranslation)==null?void 0:D.description,checked:z,consentMechanism:C.notice.consent_mechanism,disabled:C.notice.disabled,gpcStatus:Y}});bl({privacyExperienceConfigHistoryId:m,privacyNoticeHistoryIds:w.reduce((C,T)=>{var D;const z=(D=T.bestTranslation)==null?void 0:D.privacy_notice_history_id;return z&&C.push(z),C},[]),options:r,userGeography:i,acknowledgeMode:N,privacyExperience:s});const k=j((C,T)=>{const D={};w.forEach(z=>{z.notice.consent_mechanism!==B.NOTICE_ONLY?D[z.notice.notice_key]=T.includes(z.notice.notice_key):D[z.notice.notice_key]=!0}),Bt(t,{noticeConsent:D,consentMethod:C,eventExtraDetails:{servingComponent:_.current,trigger:d.current}}).finally(()=>{window.Fides&&n(window.Fides),b(void 0)}),E(T)},[w,t,_,d,b,n]),x=j(C=>{k(C?I.SCRIPT:I.ACCEPT,w.filter(T=>!T.notice.disabled||O.includes(T.notice.notice_key)).map(T=>T.notice.notice_key))},[O,k,w]),A=j(C=>{k(C?I.SCRIPT:I.REJECT,w.filter(T=>T.notice.consent_mechanism===B.NOTICE_ONLY||T.notice.disabled&&O.includes(T.notice.notice_key)).map(T=>T.notice.notice_key))},[O,k,w]);F(()=>{tt(r)&&s.privacy_notices&&(r.fidesConsentOverride===I.ACCEPT?x(!0):r.fidesConsentOverride===I.REJECT&&A(!0))},[s.privacy_notices,r.fidesConsentOverride]);const S=j(()=>{g(Ae.BANNER),f("FidesUIShown",o)},[o,f,g]),X=j(C=>{g(Ae.MODAL),f("FidesUIShown",o,{trigger:{origin:C}})},[o,f,g]),W=j(()=>{Tt(y?.consent)||k(I.DISMISS,h())},[k,h,y?.consent]),K=j((C,T)=>{const D={servingComponent:_.current,trigger:d.current,preference:T};E(C),f("FidesUIChanged",o,D)},[d,f,o,_]);if(!s.experience_config)return null;const G=!!((e=s.experience_config)!=null&&e.dismissable),Ne=w.length===1;return p(hc,{options:r,experience:s,cookie:o,savedConsent:l,isUiBlocking:!G,onOpen:X,onDismiss:W,renderBanner:({attributes:C,isEmbedded:T,isOpen:D,onClose:z,onManagePreferencesClick:Ge})=>{var Y;const Be=N||((Y=s.experience_config)==null?void 0:Y.layer1_button_options)===Pt.ACKNOWLEDGE;return p($l,{attributes:C,bannerIsOpen:D,dismissable:G,onOpen:S,onClose:()=>{z(),W()},isEmbedded:T,renderButtonGroup:()=>p(Mo,{experience:s,onManagePreferencesClick:Ge,enabledKeys:O,onAcceptAll:()=>{x(),z()},onRejectAll:()=>{A(),z()},onSave:(Et,un)=>{k(Et,un),z()},isAcknowledge:Be,hideOptInOut:Be,options:r})})},renderModalContent:()=>p("div",{children:p("div",{className:"fides-modal-notices",children:p(Nc,{noticeToggles:$,enabledNoticeKeys:O,onChange:K})})}),renderModalFooter:({onClose:C})=>p(Mo,{experience:s,enabledKeys:O,onAcceptAll:()=>{x(),C()},onRejectAll:()=>{A(),C()},onSave:(T,D)=>{k(T,D),C()},isInModal:!0,isAcknowledge:N,hideOptInOut:Ne||N,options:r})})},Dc=(e,t)=>{const{i18n:n,initializedFides:i}=e;Xi(p(yl,{i18nInstance:n,children:p(Cl,{initializedFides:i,children:p(Pl,{children:p(jc,{})})})}),t)};var Rc=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});function zc(e){return Rc(this,null,function*(){var t;if(!((t=e.options.apiOptions)!=null&&t.getPreferencesFn))return null;try{return yield e.options.apiOptions.getPreferencesFn(e)}catch{return null}})}var Mc=Object.defineProperty,Uc=Object.defineProperties,Gc=Object.getOwnPropertyDescriptors,nr=Object.getOwnPropertySymbols,Bc=Object.prototype.hasOwnProperty,Vc=Object.prototype.propertyIsEnumerable,ir=(e,t,n)=>t in e?Mc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ie=(e,t)=>{for(var n in t||(t={}))Bc.call(t,n)&&ir(e,n,t[n]);if(nr)for(var n of nr(t))Vc.call(t,n)&&ir(e,n,t[n]);return e},dn=(e,t)=>Uc(e,Gc(t)),Hc=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});function Kc(e){return Hc(this,null,function*(){var t,n,i,o;let r=(t=e??this.config)!=null?t:Vt("Fides must be initialized with a configuration object");xr(!!((n=r.options)!=null&&n.debug)),this.config=r,re("FidesInitializing",void 0,{gppEnabled:this.config.options.gppEnabled||((o=(i=this.config.experience)==null?void 0:i.gpp_settings)==null?void 0:o.enabled),tcfEnabled:this.config.options.tcfEnabled});const l=Di(Ee.OPTIONS,r),s=Di(Ee.EXPERIENCE_TRANSLATION,r),a=yield zc(r);!l.fidesString&&a?.fides_string&&(l.fidesString=a.fides_string);const c={optionsOverrides:l,consentPrefsOverrides:a,experienceTranslationOverrides:s};Cr(l);let u;if(!Oe()){const{consent:f,method:y}=zn(l);f&&y&&(u=f)}r=dn(ie({},r),{options:ie(ie({},r.options),c.optionsOverrides)}),this.config=r,this.cookie=Ls(r),this.cookie.consent=ie(ie({},this.cookie.consent),u),this.saved_consent=ie({},this.cookie.consent);const{fidesString:d}=r.options;if(d)try{const{nc:f}=jt(d);this.decodeNoticeConsentString(f);const y={fides_string:d};this.cookie=ie(ie({},this.cookie),y)}catch{}if(this.experience=r.experience,!Nn(this.cookie)||!!u){const f=$s(dn(ie({},r),{cookie:this.cookie,savedConsent:this.saved_consent,updateExperienceFromCookieConsent:St}));Object.assign(this,f),ct(this),this.experience=f.experience,Zn(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const g=yield Fs({fides:this,initOverlay:Qi,renderOverlay:Dc,updateExperience:xi,overrides:c});Object.assign(this,g),ct(this),Jn(this.cookie,{shouldShowExperience:this.shouldShowExperience()})})}const Yc=Ni({}),qc=dn(ie({},Yc),{init:Kc});ct(qc),v.BannerEnabled=_n,v.ButtonType=ee,v.CONSENT_COOKIE_MAX_AGE_DAYS=Cn,v.CONSENT_COOKIE_NAME=At,v.ComponentType=U,v.ConsentFlagType=de,v.ConsentMechanism=B,v.ConsentMethod=I,v.ConsentNonApplicableFlagMode=we,v.DEFAULT_LOCALE=H,v.DEFAULT_MODAL_LINK_LABEL=Ze,v.EnforcementLevel=pn,v.FidesEndpointPaths=vi,v.FidesEventOrigin=ge,v.FidesEventTargetType=Z,v.FidesModalDefaultView=vn,v.GpcStatus=oe,v.LOCALE_REGEX=Je,v.Layer1ButtonOption=Pt,v.OverrideType=Ee,v.PrivacyNoticeFramework=fn,v.REQUEST_SOURCE=mi,v.RejectAllMechanism=gn,v.RequestOrigin=bn,v.SaveConsentPreference=kt,v.ServingComponent=Ae,v.UpdateConsentValidation=ue,v.UserConsentPreference=V,v.allNoticesAreDefaultOptIn=zr,v.applyOverridesToConsent=Le,v.areLocalesEqual=ne,v.buildCookieConsentFromConsentPreferences=$n,v.consentCookieObjHasSomeConsentSet=Tt,v.constructFidesRegionString=et,v.createConsentPreferencesToSave=Ur,v.createConsentProxy=Ft,v.createEmptyExperience=gi,v.decodeNoticeConsentString=it,v.defaultShowModal=$t,v.detectUserLocale=ci,v.dispatchConsentLoadedEvents=Zn,v.dispatchFidesEvent=re,v.dispatchReadyEvents=Jn,v.encodeNoticeConsentString=Yn,v.experienceIsValid=Vn,v.extractDefaultLocaleFromExperience=Rt,v.fetchExperience=bi,v.fetchGvlTranslations=yi,v.getConsentContext=Pe,v.getCookieByName=Xe,v.getCoreFides=Ni,v.getCurrentLocale=li,v.getFidesConsentCookie=Oe,v.getGeolocation=Ai,v.getGpcStatusFromNotice=Kn,v.getOrMakeFidesCookie=Tn,v.getOverrideValidatorMapByType=Bn,v.getTcfDefaultPreference=Mr,v.getWindowObjFromPath=Hn,v.i18n=Za,v.initOverlay=Qi,v.initializeI18n=ui,v.isConsentOverride=tt,v.isNewFidesCookie=Nn,v.isPrivacyExperience=ke,v.isValidAcString=Vr,v.loadGVLMessagesFromExperience=ai,v.loadMessagesFromExperience=ri,v.loadMessagesFromFiles=oi,v.loadMessagesFromGVLTranslations=si,v.localizeModalLinkText=fi,v.makeConsentDefaultsLegacy=In,v.makeFidesCookie=An,v.matchAvailableLocales=di,v.messageExists=be,v.noticeHasConsentInCookie=qe,v.onFidesEvent=Xn,v.parseFidesDisabledNotices=wn,v.patchNoticesServed=Ei,v.patchUserPreference=wi,v.processExternalConsentValue=Se,v.raise=Vt,v.removeCookiesFromBrowser=Ln,v.resolveConsentValue=On,v.resolveLegacyConsentValue=En,v.saveFidesCookie=Sn,v.selectBestExperienceConfigTranslation=at,v.selectBestNoticeTranslation=zt,v.setupI18n=Mt,v.shouldResurfaceBanner=nt,v.transformConsentToFidesUserPreference=Te,v.transformTcfPreferencesToCookieKeys=mr,v.transformUserPreferenceToBoolean=fe,v.updateCookieFromExperience=jn,v.updateCookieFromNoticePreferences=Fn,v.updateExperience=xi,v.updateExperienceFromCookieConsentNotices=St,v.updateWindowFides=ct,v.validateOptions=Gn});
|