`s, which have `min-width: 0;` by default.\n// So we reset that to ensure fieldsets behave more like a standard block element.\n// See https://github.com/twbs/bootstrap/issues/12359\n// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n// 2. Reset the default outline behavior of fieldsets so they don't affect page layout.\n\nfieldset {\n min-width: 0; // 1\n padding: 0; // 2\n margin: 0; // 2\n border: 0; // 2\n}\n\n// 1. By using `float: left`, the legend will behave like a block element.\n// This way the border of a fieldset wraps around the legend if present.\n// 2. Fix wrapping bug.\n// See https://github.com/twbs/bootstrap/issues/29712\n\nlegend {\n float: left; // 1\n width: 100%;\n padding: 0;\n margin-bottom: $legend-margin-bottom;\n @include font-size($legend-font-size);\n font-weight: $legend-font-weight;\n line-height: inherit;\n\n + * {\n clear: left; // 2\n }\n}\n\n// Fix height of inputs with a type of datetime-local, date, month, week, or time\n// See https://github.com/twbs/bootstrap/issues/18842\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n// 1. Correct the outline style in Safari.\n// 2. This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\n[type=\"search\"] {\n outline-offset: -2px; // 1\n -webkit-appearance: textfield; // 2\n}\n\n// 1. A few input types should stay LTR\n// See https://rtlstyling.com/posts/rtl-styling#form-inputs\n// 2. RTL only output\n// See https://rtlcss.com/learn/usage-guide/control-directives/#raw\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n\n// Remove the inner padding in Chrome and Safari on macOS.\n\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n// Remove padding around color pickers in webkit browsers\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n\n// 1. Inherit font family and line height for file input buttons\n// 2. Correct the inability to style clickable types in iOS and Safari.\n\n::file-selector-button {\n font: inherit; // 1\n -webkit-appearance: button; // 2\n}\n\n// Correct element displays\n\noutput {\n display: inline-block;\n}\n\n// Remove border from iframe\n\niframe {\n border: 0;\n}\n\n// Summary\n//\n// 1. Add the correct display in all browsers\n\nsummary {\n display: list-item; // 1\n cursor: pointer;\n}\n\n\n// Progress\n//\n// Add the correct vertical alignment in Chrome, Firefox, and Opera.\n\nprogress {\n vertical-align: baseline;\n}\n\n\n// Hidden attribute\n//\n// Always hide an element with the `hidden` HTML attribute.\n\n[hidden] {\n display: none !important;\n}\n","// stylelint-disable property-disallowed-list\n// Single side border-radius\n\n// Helper function to replace negative values with 0\n@function valid-radius($radius) {\n $return: ();\n @each $value in $radius {\n @if type-of($value) == number {\n $return: append($return, max($value, 0));\n } @else {\n $return: append($return, $value);\n }\n }\n @return $return;\n}\n\n// scss-docs-start border-radius-mixins\n@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {\n @if $enable-rounded {\n border-radius: valid-radius($radius);\n }\n @else if $fallback-border-radius != false {\n border-radius: $fallback-border-radius;\n }\n}\n\n@mixin border-top-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n border-top-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-right-radius: valid-radius($radius);\n border-bottom-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-right-radius: valid-radius($radius);\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-top-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-top-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n// scss-docs-end border-radius-mixins\n","/*!\n * Bootstrap Reboot v5.3.0-alpha1 (https://getbootstrap.com/)\n * Copyright The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {\n --bs-body-color: #adb5bd;\n --bs-body-color-rgb: 173, 181, 189;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #f8f9fa;\n --bs-emphasis-color-rgb: 248, 249, 250;\n --bs-secondary-color: rgba(173, 181, 189, 0.75);\n --bs-secondary-color-rgb: 173, 181, 189;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(173, 181, 189, 0.5);\n --bs-tertiary-color-rgb: 173, 181, 189;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-emphasis-color: #fff;\n --bs-primary-text: #6ea8fe;\n --bs-secondary-text: #dee2e6;\n --bs-success-text: #75b798;\n --bs-info-text: #6edff6;\n --bs-warning-text: #ffda6a;\n --bs-danger-text: #ea868f;\n --bs-light-text: #f8f9fa;\n --bs-dark-text: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #212529;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #495057;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #055160;\n --bs-warning-border-subtle: #664d03;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: #fff;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #9ec5fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 158, 197, 254;\n --bs-code-color: #e685b5;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: var(--bs-border-width) solid;\n opacity: 0.25;\n}\n\nh6, h5, h4, h3, h2, h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n color: var(--bs-heading-color, inherit);\n}\n\nh1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1 {\n font-size: 2.5rem;\n }\n}\n\nh2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2 {\n font-size: 2rem;\n }\n}\n\nh3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3 {\n font-size: 1.75rem;\n }\n}\n\nh4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4 {\n font-size: 1.5rem;\n }\n}\n\nh5 {\n font-size: 1.25rem;\n}\n\nh6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n text-decoration: underline dotted;\n cursor: help;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 0.875em;\n}\n\nmark {\n padding: 0.1875em;\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));\n text-decoration: underline;\n}\na:hover {\n --bs-link-color-rgb: var(--bs-link-hover-color-rgb);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: var(--bs-secondary-color);\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */\n"]
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.css
SPDXID: SPDXRef-ba098977a902abc24ecddb3bc90e9cec
FileChecksum: SHA1: 1853ca87b83aebadd4e033796a9b979e064f2d41
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.css.map
SPDXID: SPDXRef-9cff4a97a50fb6bbc92b11191934c944
FileChecksum: SHA1: 730d6c3e0eaf88e28a3dca00f8382da91b294c3c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022, 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","/*!\n * Bootstrap Utilities v5.3.0-alpha1 (https://getbootstrap.com/)\n * Copyright The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.min.css
SPDXID: SPDXRef-23aed77d460996b6198e14fe9a9c99d0
FileChecksum: SHA1: 77d76af9a86e1f1739ca73d7a31f56934304ae66
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.min.css.map
SPDXID: SPDXRef-9a122076d62221ed6b6370f6d4df625b
FileChecksum: SHA1: eac2c59d277259ea7c76db5f452745f074883fa7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022, 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","/*!\n * Bootstrap Utilities v5.3.0-alpha1 (https://getbootstrap.com/)\n * Copyright The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {\n --bs-body-color: #adb5bd;\n --bs-body-color-rgb: 173, 181, 189;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #f8f9fa;\n --bs-emphasis-color-rgb: 248, 249, 250;\n --bs-secondary-color: rgba(173, 181, 189, 0.75);\n --bs-secondary-color-rgb: 173, 181, 189;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(173, 181, 189, 0.5);\n --bs-tertiary-color-rgb: 173, 181, 189;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-emphasis-color: #fff;\n --bs-primary-text: #6ea8fe;\n --bs-secondary-text: #dee2e6;\n --bs-success-text: #75b798;\n --bs-info-text: #6edff6;\n --bs-warning-text: #ffda6a;\n --bs-danger-text: #ea868f;\n --bs-light-text: #f8f9fa;\n --bs-dark-text: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #212529;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #495057;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #055160;\n --bs-warning-border-subtle: #664d03;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: #fff;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #9ec5fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 158, 197, 254;\n --bs-code-color: #e685b5;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.text-bg-primary {\n color: #fff !important;\n background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-secondary {\n color: #fff !important;\n background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-success {\n color: #fff !important;\n background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-info {\n color: #000 !important;\n background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-warning {\n color: #000 !important;\n background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-danger {\n color: #fff !important;\n background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-light {\n color: #000 !important;\n background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-dark {\n color: #fff !important;\n background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;\n}\n\n.link-primary {\n color: #0d6efd !important;\n}\n.link-primary:hover, .link-primary:focus {\n color: #0a58ca !important;\n}\n\n.link-secondary {\n color: #6c757d !important;\n}\n.link-secondary:hover, .link-secondary:focus {\n color: #565e64 !important;\n}\n\n.link-success {\n color: #198754 !important;\n}\n.link-success:hover, .link-success:focus {\n color: #146c43 !important;\n}\n\n.link-info {\n color: #0dcaf0 !important;\n}\n.link-info:hover, .link-info:focus {\n color: #3dd5f3 !important;\n}\n\n.link-warning {\n color: #ffc107 !important;\n}\n.link-warning:hover, .link-warning:focus {\n color: #ffcd39 !important;\n}\n\n.link-danger {\n color: #dc3545 !important;\n}\n.link-danger:hover, .link-danger:focus {\n color: #b02a37 !important;\n}\n\n.link-light {\n color: #f8f9fa !important;\n}\n.link-light:hover, .link-light:focus {\n color: #f9fafb !important;\n}\n\n.link-dark {\n color: #212529 !important;\n}\n.link-dark:hover, .link-dark:focus {\n color: #1a1e21 !important;\n}\n\n.ratio {\n position: relative;\n width: 100%;\n}\n.ratio::before {\n display: block;\n padding-top: var(--bs-aspect-ratio);\n content: \"\";\n}\n.ratio > * {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n}\n\n.ratio-1x1 {\n --bs-aspect-ratio: 100%;\n}\n\n.ratio-4x3 {\n --bs-aspect-ratio: 75%;\n}\n\n.ratio-16x9 {\n --bs-aspect-ratio: 56.25%;\n}\n\n.ratio-21x9 {\n --bs-aspect-ratio: 42.8571428571%;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n.sticky-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n}\n\n.sticky-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n}\n\n@media (min-width: 576px) {\n .sticky-sm-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-sm-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 768px) {\n .sticky-md-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-md-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 992px) {\n .sticky-lg-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-lg-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1200px) {\n .sticky-xl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-xl-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1400px) {\n .sticky-xxl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-xxl-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n.hstack {\n display: flex;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n}\n\n.vstack {\n display: flex;\n flex: 1 1 auto;\n flex-direction: column;\n align-self: stretch;\n}\n\n.visually-hidden,\n.visually-hidden-focusable:not(:focus):not(:focus-within) {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important;\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1;\n content: \"\";\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.vr {\n display: inline-block;\n align-self: stretch;\n width: 1px;\n min-height: 1em;\n background-color: currentcolor;\n opacity: 0.25;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.float-start {\n float: left !important;\n}\n\n.float-end {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n.object-fit-contain {\n -o-object-fit: contain !important;\n object-fit: contain !important;\n}\n\n.object-fit-cover {\n -o-object-fit: cover !important;\n object-fit: cover !important;\n}\n\n.object-fit-fill {\n -o-object-fit: fill !important;\n object-fit: fill !important;\n}\n\n.object-fit-scale {\n -o-object-fit: scale-down !important;\n object-fit: scale-down !important;\n}\n\n.object-fit-none {\n -o-object-fit: none !important;\n object-fit: none !important;\n}\n\n.opacity-0 {\n opacity: 0 !important;\n}\n\n.opacity-25 {\n opacity: 0.25 !important;\n}\n\n.opacity-50 {\n opacity: 0.5 !important;\n}\n\n.opacity-75 {\n opacity: 0.75 !important;\n}\n\n.opacity-100 {\n opacity: 1 !important;\n}\n\n.overflow-auto {\n overflow: auto !important;\n}\n\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n.overflow-visible {\n overflow: visible !important;\n}\n\n.overflow-scroll {\n overflow: scroll !important;\n}\n\n.overflow-x-auto {\n overflow-x: auto !important;\n}\n\n.overflow-x-hidden {\n overflow-x: hidden !important;\n}\n\n.overflow-x-visible {\n overflow-x: visible !important;\n}\n\n.overflow-x-scroll {\n overflow-x: scroll !important;\n}\n\n.overflow-y-auto {\n overflow-y: auto !important;\n}\n\n.overflow-y-hidden {\n overflow-y: hidden !important;\n}\n\n.overflow-y-visible {\n overflow-y: visible !important;\n}\n\n.overflow-y-scroll {\n overflow-y: scroll !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15) !important;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: -webkit-sticky !important;\n position: sticky !important;\n}\n\n.top-0 {\n top: 0 !important;\n}\n\n.top-50 {\n top: 50% !important;\n}\n\n.top-100 {\n top: 100% !important;\n}\n\n.bottom-0 {\n bottom: 0 !important;\n}\n\n.bottom-50 {\n bottom: 50% !important;\n}\n\n.bottom-100 {\n bottom: 100% !important;\n}\n\n.start-0 {\n left: 0 !important;\n}\n\n.start-50 {\n left: 50% !important;\n}\n\n.start-100 {\n left: 100% !important;\n}\n\n.end-0 {\n right: 0 !important;\n}\n\n.end-50 {\n right: 50% !important;\n}\n\n.end-100 {\n right: 100% !important;\n}\n\n.translate-middle {\n transform: translate(-50%, -50%) !important;\n}\n\n.translate-middle-x {\n transform: translateX(-50%) !important;\n}\n\n.translate-middle-y {\n transform: translateY(-50%) !important;\n}\n\n.border {\n border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top {\n border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-end {\n border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-end-0 {\n border-right: 0 !important;\n}\n\n.border-bottom {\n border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-start {\n border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-start-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-secondary {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-success {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-info {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-warning {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-danger {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-light {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-dark {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-white {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-primary-subtle {\n border-color: var(--bs-primary-border-subtle) !important;\n}\n\n.border-secondary-subtle {\n border-color: var(--bs-secondary-border-subtle) !important;\n}\n\n.border-success-subtle {\n border-color: var(--bs-success-border-subtle) !important;\n}\n\n.border-info-subtle {\n border-color: var(--bs-info-border-subtle) !important;\n}\n\n.border-warning-subtle {\n border-color: var(--bs-warning-border-subtle) !important;\n}\n\n.border-danger-subtle {\n border-color: var(--bs-danger-border-subtle) !important;\n}\n\n.border-light-subtle {\n border-color: var(--bs-light-border-subtle) !important;\n}\n\n.border-dark-subtle {\n border-color: var(--bs-dark-border-subtle) !important;\n}\n\n.border-1 {\n --bs-border-width: 1px;\n}\n\n.border-2 {\n --bs-border-width: 2px;\n}\n\n.border-3 {\n --bs-border-width: 3px;\n}\n\n.border-4 {\n --bs-border-width: 4px;\n}\n\n.border-5 {\n --bs-border-width: 5px;\n}\n\n.border-opacity-10 {\n --bs-border-opacity: 0.1;\n}\n\n.border-opacity-25 {\n --bs-border-opacity: 0.25;\n}\n\n.border-opacity-50 {\n --bs-border-opacity: 0.5;\n}\n\n.border-opacity-75 {\n --bs-border-opacity: 0.75;\n}\n\n.border-opacity-100 {\n --bs-border-opacity: 1;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.vw-100 {\n width: 100vw !important;\n}\n\n.min-vw-100 {\n min-width: 100vw !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.vh-100 {\n height: 100vh !important;\n}\n\n.min-vh-100 {\n min-height: 100vh !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n.gap-0 {\n gap: 0 !important;\n}\n\n.gap-1 {\n gap: 0.25rem !important;\n}\n\n.gap-2 {\n gap: 0.5rem !important;\n}\n\n.gap-3 {\n gap: 1rem !important;\n}\n\n.gap-4 {\n gap: 1.5rem !important;\n}\n\n.gap-5 {\n gap: 3rem !important;\n}\n\n.row-gap-0 {\n row-gap: 0 !important;\n}\n\n.row-gap-1 {\n row-gap: 0.25rem !important;\n}\n\n.row-gap-2 {\n row-gap: 0.5rem !important;\n}\n\n.row-gap-3 {\n row-gap: 1rem !important;\n}\n\n.row-gap-4 {\n row-gap: 1.5rem !important;\n}\n\n.row-gap-5 {\n row-gap: 3rem !important;\n}\n\n.column-gap-0 {\n -moz-column-gap: 0 !important;\n column-gap: 0 !important;\n}\n\n.column-gap-1 {\n -moz-column-gap: 0.25rem !important;\n column-gap: 0.25rem !important;\n}\n\n.column-gap-2 {\n -moz-column-gap: 0.5rem !important;\n column-gap: 0.5rem !important;\n}\n\n.column-gap-3 {\n -moz-column-gap: 1rem !important;\n column-gap: 1rem !important;\n}\n\n.column-gap-4 {\n -moz-column-gap: 1.5rem !important;\n column-gap: 1.5rem !important;\n}\n\n.column-gap-5 {\n -moz-column-gap: 3rem !important;\n column-gap: 3rem !important;\n}\n\n.font-monospace {\n font-family: var(--bs-font-monospace) !important;\n}\n\n.fs-1 {\n font-size: calc(1.375rem + 1.5vw) !important;\n}\n\n.fs-2 {\n font-size: calc(1.325rem + 0.9vw) !important;\n}\n\n.fs-3 {\n font-size: calc(1.3rem + 0.6vw) !important;\n}\n\n.fs-4 {\n font-size: calc(1.275rem + 0.3vw) !important;\n}\n\n.fs-5 {\n font-size: 1.25rem !important;\n}\n\n.fs-6 {\n font-size: 1rem !important;\n}\n\n.fst-italic {\n font-style: italic !important;\n}\n\n.fst-normal {\n font-style: normal !important;\n}\n\n.fw-lighter {\n font-weight: lighter !important;\n}\n\n.fw-light {\n font-weight: 300 !important;\n}\n\n.fw-normal {\n font-weight: 400 !important;\n}\n\n.fw-medium {\n font-weight: 500 !important;\n}\n\n.fw-semibold {\n font-weight: 600 !important;\n}\n\n.fw-bold {\n font-weight: 700 !important;\n}\n\n.fw-bolder {\n font-weight: bolder !important;\n}\n\n.lh-1 {\n line-height: 1 !important;\n}\n\n.lh-sm {\n line-height: 1.25 !important;\n}\n\n.lh-base {\n line-height: 1.5 !impor
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.rtl.css
SPDXID: SPDXRef-91c3dcb12df43dee153ec041c042f343
FileChecksum: SHA1: 32529666509dd5ffa7e95b353353ac08752a955a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.rtl.css.map
SPDXID: SPDXRef-b785b062e09e7f9fead04debe1952b4c
FileChecksum: SHA1: cd78b55256e268fd1c1127a1408385a2e9911f00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022, 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","/*!\n * Bootstrap Utilities v5.3.0-alpha1 (https://getbootstrap.com/)\n * Copyright The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.rtl.min.css
SPDXID: SPDXRef-cc7d3c8b6ad8a0e5a94f9da524fdabda
FileChecksum: SHA1: 406055723f39c43b7d56e67266ec4b90b09baf51
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap-utilities.rtl.min.css.map
SPDXID: SPDXRef-6c6ed637e394386e9707437f8238413a
FileChecksum: SHA1: ea13aa365459bfdac1a31f0d86d5a3ea2c1f9121
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022, 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","/*!\n * Bootstrap Utilities v5.3.0-alpha1 (https://getbootstrap.com/)\n * Copyright The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {\n --bs-body-color: #adb5bd;\n --bs-body-color-rgb: 173, 181, 189;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #f8f9fa;\n --bs-emphasis-color-rgb: 248, 249, 250;\n --bs-secondary-color: rgba(173, 181, 189, 0.75);\n --bs-secondary-color-rgb: 173, 181, 189;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(173, 181, 189, 0.5);\n --bs-tertiary-color-rgb: 173, 181, 189;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-emphasis-color: #fff;\n --bs-primary-text: #6ea8fe;\n --bs-secondary-text: #dee2e6;\n --bs-success-text: #75b798;\n --bs-info-text: #6edff6;\n --bs-warning-text: #ffda6a;\n --bs-danger-text: #ea868f;\n --bs-light-text: #f8f9fa;\n --bs-dark-text: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #212529;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #495057;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #055160;\n --bs-warning-border-subtle: #664d03;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: #fff;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #9ec5fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 158, 197, 254;\n --bs-code-color: #e685b5;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.text-bg-primary {\n color: #fff !important;\n background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-secondary {\n color: #fff !important;\n background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-success {\n color: #fff !important;\n background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-info {\n color: #000 !important;\n background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-warning {\n color: #000 !important;\n background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-danger {\n color: #fff !important;\n background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-light {\n color: #000 !important;\n background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;\n}\n\n.text-bg-dark {\n color: #fff !important;\n background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;\n}\n\n.link-primary {\n color: #0d6efd !important;\n}\n.link-primary:hover, .link-primary:focus {\n color: #0a58ca !important;\n}\n\n.link-secondary {\n color: #6c757d !important;\n}\n.link-secondary:hover, .link-secondary:focus {\n color: #565e64 !important;\n}\n\n.link-success {\n color: #198754 !important;\n}\n.link-success:hover, .link-success:focus {\n color: #146c43 !important;\n}\n\n.link-info {\n color: #0dcaf0 !important;\n}\n.link-info:hover, .link-info:focus {\n color: #3dd5f3 !important;\n}\n\n.link-warning {\n color: #ffc107 !important;\n}\n.link-warning:hover, .link-warning:focus {\n color: #ffcd39 !important;\n}\n\n.link-danger {\n color: #dc3545 !important;\n}\n.link-danger:hover, .link-danger:focus {\n color: #b02a37 !important;\n}\n\n.link-light {\n color: #f8f9fa !important;\n}\n.link-light:hover, .link-light:focus {\n color: #f9fafb !important;\n}\n\n.link-dark {\n color: #212529 !important;\n}\n.link-dark:hover, .link-dark:focus {\n color: #1a1e21 !important;\n}\n\n.ratio {\n position: relative;\n width: 100%;\n}\n.ratio::before {\n display: block;\n padding-top: var(--bs-aspect-ratio);\n content: \"\";\n}\n.ratio > * {\n position: absolute;\n top: 0;\n right: 0;\n width: 100%;\n height: 100%;\n}\n\n.ratio-1x1 {\n --bs-aspect-ratio: 100%;\n}\n\n.ratio-4x3 {\n --bs-aspect-ratio: 75%;\n}\n\n.ratio-16x9 {\n --bs-aspect-ratio: 56.25%;\n}\n\n.ratio-21x9 {\n --bs-aspect-ratio: 42.8571428571%;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 1030;\n}\n\n.sticky-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n}\n\n.sticky-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n}\n\n@media (min-width: 576px) {\n .sticky-sm-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-sm-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 768px) {\n .sticky-md-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-md-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 992px) {\n .sticky-lg-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-lg-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1200px) {\n .sticky-xl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-xl-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1400px) {\n .sticky-xxl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n .sticky-xxl-bottom {\n position: -webkit-sticky;\n position: sticky;\n bottom: 0;\n z-index: 1020;\n }\n}\n.hstack {\n display: flex;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n}\n\n.vstack {\n display: flex;\n flex: 1 1 auto;\n flex-direction: column;\n align-self: stretch;\n}\n\n.visually-hidden,\n.visually-hidden-focusable:not(:focus):not(:focus-within) {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important;\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 1;\n content: \"\";\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.vr {\n display: inline-block;\n align-self: stretch;\n width: 1px;\n min-height: 1em;\n background-color: currentcolor;\n opacity: 0.25;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.float-start {\n float: right !important;\n}\n\n.float-end {\n float: left !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n.object-fit-contain {\n -o-object-fit: contain !important;\n object-fit: contain !important;\n}\n\n.object-fit-cover {\n -o-object-fit: cover !important;\n object-fit: cover !important;\n}\n\n.object-fit-fill {\n -o-object-fit: fill !important;\n object-fit: fill !important;\n}\n\n.object-fit-scale {\n -o-object-fit: scale-down !important;\n object-fit: scale-down !important;\n}\n\n.object-fit-none {\n -o-object-fit: none !important;\n object-fit: none !important;\n}\n\n.opacity-0 {\n opacity: 0 !important;\n}\n\n.opacity-25 {\n opacity: 0.25 !important;\n}\n\n.opacity-50 {\n opacity: 0.5 !important;\n}\n\n.opacity-75 {\n opacity: 0.75 !important;\n}\n\n.opacity-100 {\n opacity: 1 !important;\n}\n\n.overflow-auto {\n overflow: auto !important;\n}\n\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n.overflow-visible {\n overflow: visible !important;\n}\n\n.overflow-scroll {\n overflow: scroll !important;\n}\n\n.overflow-x-auto {\n overflow-x: auto !important;\n}\n\n.overflow-x-hidden {\n overflow-x: hidden !important;\n}\n\n.overflow-x-visible {\n overflow-x: visible !important;\n}\n\n.overflow-x-scroll {\n overflow-x: scroll !important;\n}\n\n.overflow-y-auto {\n overflow-y: auto !important;\n}\n\n.overflow-y-hidden {\n overflow-y: hidden !important;\n}\n\n.overflow-y-visible {\n overflow-y: visible !important;\n}\n\n.overflow-y-scroll {\n overflow-y: scroll !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15) !important;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: -webkit-sticky !important;\n position: sticky !important;\n}\n\n.top-0 {\n top: 0 !important;\n}\n\n.top-50 {\n top: 50% !important;\n}\n\n.top-100 {\n top: 100% !important;\n}\n\n.bottom-0 {\n bottom: 0 !important;\n}\n\n.bottom-50 {\n bottom: 50% !important;\n}\n\n.bottom-100 {\n bottom: 100% !important;\n}\n\n.start-0 {\n right: 0 !important;\n}\n\n.start-50 {\n right: 50% !important;\n}\n\n.start-100 {\n right: 100% !important;\n}\n\n.end-0 {\n left: 0 !important;\n}\n\n.end-50 {\n left: 50% !important;\n}\n\n.end-100 {\n left: 100% !important;\n}\n\n.translate-middle {\n transform: translate(50%, -50%) !important;\n}\n\n.translate-middle-x {\n transform: translateX(50%) !important;\n}\n\n.translate-middle-y {\n transform: translateY(-50%) !important;\n}\n\n.border {\n border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top {\n border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-end {\n border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-end-0 {\n border-left: 0 !important;\n}\n\n.border-bottom {\n border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-start {\n border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;\n}\n\n.border-start-0 {\n border-right: 0 !important;\n}\n\n.border-primary {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-secondary {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-success {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-info {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-warning {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-danger {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-light {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-dark {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-white {\n --bs-border-opacity: 1;\n border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;\n}\n\n.border-primary-subtle {\n border-color: var(--bs-primary-border-subtle) !important;\n}\n\n.border-secondary-subtle {\n border-color: var(--bs-secondary-border-subtle) !important;\n}\n\n.border-success-subtle {\n border-color: var(--bs-success-border-subtle) !important;\n}\n\n.border-info-subtle {\n border-color: var(--bs-info-border-subtle) !important;\n}\n\n.border-warning-subtle {\n border-color: var(--bs-warning-border-subtle) !important;\n}\n\n.border-danger-subtle {\n border-color: var(--bs-danger-border-subtle) !important;\n}\n\n.border-light-subtle {\n border-color: var(--bs-light-border-subtle) !important;\n}\n\n.border-dark-subtle {\n border-color: var(--bs-dark-border-subtle) !important;\n}\n\n.border-1 {\n --bs-border-width: 1px;\n}\n\n.border-2 {\n --bs-border-width: 2px;\n}\n\n.border-3 {\n --bs-border-width: 3px;\n}\n\n.border-4 {\n --bs-border-width: 4px;\n}\n\n.border-5 {\n --bs-border-width: 5px;\n}\n\n.border-opacity-10 {\n --bs-border-opacity: 0.1;\n}\n\n.border-opacity-25 {\n --bs-border-opacity: 0.25;\n}\n\n.border-opacity-50 {\n --bs-border-opacity: 0.5;\n}\n\n.border-opacity-75 {\n --bs-border-opacity: 0.75;\n}\n\n.border-opacity-100 {\n --bs-border-opacity: 1;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.vw-100 {\n width: 100vw !important;\n}\n\n.min-vw-100 {\n min-width: 100vw !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.vh-100 {\n height: 100vh !important;\n}\n\n.min-vh-100 {\n min-height: 100vh !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n}\n\n.mx-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n}\n\n.mx-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n}\n\n.mx-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n}\n\n.mx-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n}\n\n.mx-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n}\n\n.mx-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-left: 0 !important;\n}\n\n.me-1 {\n margin-left: 0.25rem !important;\n}\n\n.me-2 {\n margin-left: 0.5rem !important;\n}\n\n.me-3 {\n margin-left: 1rem !important;\n}\n\n.me-4 {\n margin-left: 1.5rem !important;\n}\n\n.me-5 {\n margin-left: 3rem !important;\n}\n\n.me-auto {\n margin-left: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-right: 0 !important;\n}\n\n.ms-1 {\n margin-right: 0.25rem !important;\n}\n\n.ms-2 {\n margin-right: 0.5rem !important;\n}\n\n.ms-3 {\n margin-right: 1rem !important;\n}\n\n.ms-4 {\n margin-right: 1.5rem !important;\n}\n\n.ms-5 {\n margin-right: 3rem !important;\n}\n\n.ms-auto {\n margin-right: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n}\n\n.px-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n}\n\n.px-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n}\n\n.px-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n\n.px-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n}\n\n.px-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-left: 0 !important;\n}\n\n.pe-1 {\n padding-left: 0.25rem !important;\n}\n\n.pe-2 {\n padding-left: 0.5rem !important;\n}\n\n.pe-3 {\n padding-left: 1rem !important;\n}\n\n.pe-4 {\n padding-left: 1.5rem !important;\n}\n\n.pe-5 {\n padding-left: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-right: 0 !important;\n}\n\n.ps-1 {\n padding-right: 0.25rem !important;\n}\n\n.ps-2 {\n padding-right: 0.5rem !important;\n}\n\n.ps-3 {\n padding-right: 1rem !important;\n}\n\n.ps-4 {\n padding-right: 1.5rem !important;\n}\n\n.ps-5 {\n padding-right: 3rem !important;\n}\n\n.gap-0 {\n gap: 0 !important;\n}\n\n.gap-1 {\n gap: 0.25rem !important;\n}\n\n.gap-2 {\n gap: 0.5rem !important;\n}\n\n.gap-3 {\n gap: 1rem !important;\n}\n\n.gap-4 {\n gap: 1.5rem !important;\n}\n\n.gap-5 {\n gap: 3rem !important;\n}\n\n.row-gap-0 {\n row-gap: 0 !important;\n}\n\n.row-gap-1 {\n row-gap: 0.25rem !important;\n}\n\n.row-gap-2 {\n row-gap: 0.5rem !important;\n}\n\n.row-gap-3 {\n row-gap: 1rem !important;\n}\n\n.row-gap-4 {\n row-gap: 1.5rem !important;\n}\n\n.row-gap-5 {\n row-gap: 3rem !important;\n}\n\n.column-gap-0 {\n -moz-column-gap: 0 !important;\n column-gap: 0 !important;\n}\n\n.column-gap-1 {\n -moz-column-gap: 0.25rem !important;\n column-gap: 0.25rem !important;\n}\n\n.column-gap-2 {\n -moz-column-gap: 0.5rem !important;\n column-gap: 0.5rem !important;\n}\n\n.column-gap-3 {\n -moz-column-gap: 1rem !important;\n column-gap: 1rem !important;\n}\n\n.column-gap-4 {\n -moz-column-gap: 1.5rem !important;\n column-gap: 1.5rem !important;\n}\n\n.column-gap-5 {\n -moz-column-gap: 3rem !important;\n column-gap: 3rem !important;\n}\n\n.font-monospace {\n font-family: var(--bs-font-monospace) !important;\n}\n\n.fs-1 {\n font-size: calc(1.375rem + 1.5vw) !important;\n}\n\n.fs-2 {\n font-size: calc(1.325rem + 0.9vw) !important;\n}\n\n.fs-3 {\n font-size: calc(1.3rem + 0.6vw) !important;\n}\n\n.fs-4 {\n font-size: calc(1.275rem + 0.3vw) !important;\n}\n\n.fs-5 {\n font-size: 1.25rem !important;\n}\n\n.fs-6 {\n font-size: 1rem !important;\n}\n\n.fst-italic {\n font-style: italic !important;\n}\n\n.fst-normal {\n font-style: normal !important;\n}\n\n.fw-lighter {\n font-weight: lighter !important;\n}\n\n.fw-light {\n font-weight: 300 !important;\n}\n\n.fw-normal {\n font-weight: 400 !important;\n}\n\n.fw-medium {\n font-weight: 500 !important;\n}\n\n.fw-semibold {\n font-weight: 600 !important;\n}\n\n.fw-bold {\n font-weight: 700 !important;\n}\n\n.fw-bolder {\n font-weight: bolder !important;\n}\n\n.lh-1 {\n line-height: 1 !important;\n}\n\n.lh-sm {\n line-height: 1.25 !important;\n}\n\n.lh-base {\n line-height: 1.5 !important;\n}\n\n.lh-lg {\n
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.css
SPDXID: SPDXRef-58ff7fcc9f023b38a405e3075f88da20
FileChecksum: SHA1: 785a483e5513cef81f025887d4f205d1f4801abb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.css.map
SPDXID: SPDXRef-b66869ed29c4e21e771226adc09b02d2
FileChecksum: SHA1: 12eac00e080b5b406e7423653d51437a97f99847
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","// scss-docs-start color-mode-mixin\n@mixin color-mode($mode: light, $root: false) {\n @if $color-mode-type == \"media-query\" {\n @if $root == true {\n @media (prefers-color-scheme: $mode) {\n :root {\n @content;\n }\n }\n } @else {\n @media (prefers-color-scheme: $mode) {\n @content;\n }\n }\n } @else {\n [data-bs-theme=\"#{$mode}\"] {\n @content;\n }\n }\n}\n// scss-docs-end color-mode-mixin\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n @include font-size(var(--#{$prefix}root-font-size));\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$prefix}body-font-family);\n @include font-size(var(--#{$prefix}body-font-size));\n font-weight: var(--#{$prefix}body-font-weight);\n line-height: var(--#{$prefix}body-line-height);\n color: var(--#{$prefix}body-color);\n text-align: var(--#{$prefix}body-text-align);\n background-color: var(--#{$prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n opacity: $hr-opacity;\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, ``-`` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom
Copyright 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {\n --bs-body-color: #adb5bd;\n --bs-body-color-rgb: 173, 181, 189;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #f8f9fa;\n --bs-emphasis-color-rgb: 248, 249, 250;\n --bs-secondary-color: rgba(173, 181, 189, 0.75);\n --bs-secondary-color-rgb: 173, 181, 189;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(173, 181, 189, 0.5);\n --bs-tertiary-color-rgb: 173, 181, 189;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-emphasis-color: #fff;\n --bs-primary-text: #6ea8fe;\n --bs-secondary-text: #dee2e6;\n --bs-success-text: #75b798;\n --bs-info-text: #6edff6;\n --bs-warning-text: #ffda6a;\n --bs-danger-text: #ea868f;\n --bs-light-text: #f8f9fa;\n --bs-dark-text: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #212529;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #495057;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #055160;\n --bs-warning-border-subtle: #664d03;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: #fff;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #9ec5fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 158, 197, 254;\n --bs-code-color: #e685b5;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: var(--bs-border-width) solid;\n opacity: 0.25;\n}\n\nh6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n color: var(--bs-heading-color, inherit);\n}\n\nh1, .h1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1, .h1 {\n font-size: 2.5rem;\n }\n}\n\nh2, .h2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2, .h2 {\n font-size: 2rem;\n }\n}\n\nh3, .h3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3, .h3 {\n font-size: 1.75rem;\n }\n}\n\nh4, .h4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4, .h4 {\n font-size: 1.5rem;\n }\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n text-decoration: underline dotted;\n cursor: help;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall, .small {\n font-size: 0.875em;\n}\n\nmark, .mark {\n padding: 0.1875em;\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));\n text-decoration: underline;\n}\na:hover {\n --bs-link-color-rgb: var(--bs-link-hover-color-rgb);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: var(--bs-secondary-color);\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: calc(1.625rem + 4.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-1 {\n font-size: 5rem;\n }\n}\n\n.display-2 {\n font-size: calc(1.575rem + 3.9vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-2 {\n font-size: 4.5rem;\n }\n}\n\n.display-3 {\n font-size: calc(1.525rem + 3.3vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-3 {\n font-size: 4rem;\n }\n}\n\n.display-4 {\n font-size: calc(1.475rem + 2.7vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-4 {\n font-size: 3.5rem;\n }\n}\n\n.display-5 {\n font-size: calc(1.425rem + 2.1vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-5 {\n font-size: 3rem;\n }\n}\n\n.display-6 {\n font-size: calc(1.375rem + 1.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-6 {\n font-size: 2.5rem;\n }\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 0.875em;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n.blockquote > :last-child {\n margin-bottom: 0;\n}\n\n.blockquote-footer {\n margin-top: -1rem;\n margin-bottom: 1rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n.blockquote-footer::before {\n content: \"— \";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: var(--bs-body-bg);\n border: var(--bs-border-width) solid var(--bs-border-color);\n border-radius: var(--bs-border-radius);\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 0.875em;\n color: var(--bs-secondary-color);\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-le
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.min.css
SPDXID: SPDXRef-b36ce300cea28ca4b994161f66875ac6
FileChecksum: SHA1: 719956aa52db4c8afdc5c0cfb3cbdead6258b8a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.min.css.map
SPDXID: SPDXRef-29595c92bfbbae73c6efac929cfcf32c
FileChecksum: SHA1: 93dbb15a5036f436a7213f76fcc82aa821769ff0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022, 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","@charset \"UTF-8\";\n/*!\n * Bootstrap v5.3.0-alpha1 (https://getbootstrap.com/)\n * Copyright The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {\n --bs-body-color: #adb5bd;\n --bs-body-color-rgb: 173, 181, 189;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #f8f9fa;\n --bs-emphasis-color-rgb: 248, 249, 250;\n --bs-secondary-color: rgba(173, 181, 189, 0.75);\n --bs-secondary-color-rgb: 173, 181, 189;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(173, 181, 189, 0.5);\n --bs-tertiary-color-rgb: 173, 181, 189;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-emphasis-color: #fff;\n --bs-primary-text: #6ea8fe;\n --bs-secondary-text: #dee2e6;\n --bs-success-text: #75b798;\n --bs-info-text: #6edff6;\n --bs-warning-text: #ffda6a;\n --bs-danger-text: #ea868f;\n --bs-light-text: #f8f9fa;\n --bs-dark-text: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #212529;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #495057;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #055160;\n --bs-warning-border-subtle: #664d03;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: #fff;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #9ec5fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 158, 197, 254;\n --bs-code-color: #e685b5;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: var(--bs-border-width) solid;\n opacity: 0.25;\n}\n\nh6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n color: var(--bs-heading-color, inherit);\n}\n\nh1, .h1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1, .h1 {\n font-size: 2.5rem;\n }\n}\n\nh2, .h2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2, .h2 {\n font-size: 2rem;\n }\n}\n\nh3, .h3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3, .h3 {\n font-size: 1.75rem;\n }\n}\n\nh4, .h4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4, .h4 {\n font-size: 1.5rem;\n }\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall, .small {\n font-size: 0.875em;\n}\n\nmark, .mark {\n padding: 0.1875em;\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));\n text-decoration: underline;\n}\na:hover {\n --bs-link-color-rgb: var(--bs-link-hover-color-rgb);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: var(--bs-secondary-color);\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: calc(1.625rem + 4.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-1 {\n font-size: 5rem;\n }\n}\n\n.display-2 {\n font-size: calc(1.575rem + 3.9vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-2 {\n font-size: 4.5rem;\n }\n}\n\n.display-3 {\n font-size: calc(1.525rem + 3.3vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-3 {\n font-size: 4rem;\n }\n}\n\n.display-4 {\n font-size: calc(1.475rem + 2.7vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-4 {\n font-size: 3.5rem;\n }\n}\n\n.display-5 {\n font-size: calc(1.425rem + 2.1vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-5 {\n font-size: 3rem;\n }\n}\n\n.display-6 {\n font-size: calc(1.375rem + 1.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-6 {\n font-size: 2.5rem;\n }\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 0.875em;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n.blockquote > :last-child {\n margin-bottom: 0;\n}\n\n.blockquote-footer {\n margin-top: -1rem;\n margin-bottom: 1rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n.blockquote-footer::before {\n content: \"— \";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: var(--bs-body-bg);\n border: var(--bs-border-width) solid var(--bs-border-color);\n border-radius: var(--bs-border-radius);\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 0.875em;\n color: var(--bs-secondary-color);\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.table {\n --bs-table-color: var(--bs-body-color);\n --bs-table-bg: transparent;\n --bs-table-border-color: var(--bs-border-color);\n --bs-table-accent-bg: transparent;\n --bs-table-striped-color: var(--bs-body-color);\n --bs-table-striped-bg: rgba(0, 0, 0, 0.05);\n --bs-table-active-color: var(--bs-body-color);\n --bs-table-active-bg: rgba(0, 0, 0, 0.1);\n --bs-table-hover-color: var(--bs-body-color);\n --bs-table-hover-bg: rgba(0, 0, 0, 0.075);\n width: 100%;\n margin-bottom: 1rem;\n color: var(--bs-table-color);\n vertical-align: top;\n border-color: var(--bs-table-border-color);\n}\n.table > :not(caption) > * > * {\n padding: 0.5rem 0.5rem;\n background-color: var(--bs-table-bg);\n border-bottom-width: var(--bs-border-width);\n box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);\n}\n.table > tbody {\n vertical-align: inherit;\n}\n.table > thead {\n vertical-align: bottom;\n}\n\n.table-group-divider {\n border-top: calc(var(--bs-border-width) * 2) solid currentcolor;\n}\n\n.caption-top {\n caption-side: top;\n}\n\n.table-sm > :not(caption) > * > * {\n padding: 0.25rem 0.25rem;\n}\n\n.table-bordered > :not(caption) > * {\n border-width: var(--bs-border-width) 0;\n}\n.table-bordered > :not(caption) > * > * {\n border-width: 0 var(--bs-border-width);\n}\n\n.table-borderless > :not(caption) > * > * {\n border-bottom-width: 0;\n}\n.table-borderless > :not(:first-child) {\n border-top-width: 0;\n}\n\n.table-striped > tbody > tr:nth-of-type(odd) > * {\n --bs-table-accent-bg: var(--bs-table-striped-bg);\n color: var(--bs-table-striped-color);\n}\n\n.table-striped-columns > :not(caption) > tr > :nth-child(even) {\n --bs-table-accent-bg: var(--bs-table-striped-bg);\n color: var(--bs-table-striped-color);\n}\n\n.table-active {\n --bs-table-accent-bg: var(--bs-table-active-bg);\n color: var(--bs-table-active-color);\n}\n\n.table-hover > tbody > tr:hover > * {\n --bs-table-accent-bg: var(--bs-table-hover-bg);\n color: var(--bs-table-hover-color);\n}\n\n.table-primary {\n --bs-table-color: #000;\n --bs-table-bg: #cfe2ff;\n --bs-table-border-color: #bacbe6;\n --bs-table-striped-bg: #c5d7f2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bacbe6;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfd1ec;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-secondary {\n --bs-table-color: #000;\n --bs-table-bg: #e2e3e5;\n --bs-table-border-color: #cbccce;\n --bs-table-striped-bg: #d7d8da;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #cbccce;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #d1d2d4;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-success {\n --bs-table-color: #000;\n --bs-table-bg: #d1e7dd;\n --bs-table-border-color: #bcd0c7;\n --bs-table-striped-bg: #c7dbd2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bcd0c7;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #c1d6cc;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-info {\n --bs-table-color: #000;\n --bs-table-bg: #cff4fc;\n --bs-table-border-color: #badce3;\n --bs-table-striped-bg: #c5e8ef;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #badce3;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfe2e9;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-warning {\n --bs-table-color: #000;\n --bs-table-bg: #fff3cd;\n --bs-table-border-color: #e6dbb9;\n --bs-table-striped-bg: #f2e7c3;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #e6dbb9;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #ece1be;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-danger {\n --bs-table-color: #000;\n --bs-table-bg: #f8d7da;\n --bs-table-border-color: #dfc2c4;\n --bs-table-striped-bg: #eccccf;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfc2c4;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5c7ca;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-light {\n --bs-table-color: #000;\n --bs-table-bg: #f8f9fa;\n --bs-table-border-color: #dfe0e1;\n --bs-table-striped-bg: #ecedee;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfe0e1;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5e6e7;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-dark {\n --bs-table-color: #fff;\n --bs-table-bg: #212529;\n --bs-table-border-color: #373b3e;\n --bs-table-striped-bg: #2c3034;\n --bs-table-striped-color: #fff;\n --bs-table-active-bg: #373b3e;\n --bs-table-active-color: #fff;\n --bs-table-hover-bg: #323539;\n --bs-table-hover-color: #fff;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-responsive {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 767.98px) {\n .table-responsive-md {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1399.98px) {\n .table-responsive-xxl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n.form-label {\n margin-bottom: 0.5rem;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + var(--bs-border-width));\n padding-bottom: calc(0.375rem + var(--bs-border-width));\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + var(--bs-border-width));\n padding-bottom: calc(0.5rem + var(--bs-border-width));\n font-size: 1.25rem;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + var(--bs-border-width));\n padding-bottom: calc(0.25rem + var(--bs-border-width));\n font-size: 0.875rem;\n}\n\n.form-text {\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: var(--bs-secondary-color);\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: var(--bs-body-color);\n background-color: var(--bs-form-control-bg);\n background-clip: padding-box;\n border: var(--bs-border-width) solid var(--bs-border-color);\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border-radius: 0.375rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n.form-control[type=file] {\n overflow: hidden;\n}\n.form-control[type=file]:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n.form-control:focus {\n color: var(--bs-body-color);\n background-color: var(--bs-form-control-bg);\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-control::-webkit-date-and-time-value {\n height: 1.5em;\n}\n.form-control::-webkit-datetime-edit {\n display: block;\n padding: 0;\n}\n.form-control::-moz-placeholder {\n color: var(--bs-secondary-color);\n opacity: 1;\n}\n.form-control::placeholder {\n color: var(--bs-secondary-color);\n opacity: 1;\n}\n.form-control:disabled {\n background-color: var(--bs-form-control-disabled-bg);\n opacity: 1;\n}\n.form-control::-webkit-file-upload-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n -webkit-margin-end: 0.75rem;\n margin-inline-end: 0.75rem;\n color: var(--bs-body-color);\n background-color: var(--bs-tertiary-bg);\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: var(--bs-border-width);\n border-radius: 0;\n -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n.form-control::file-selector-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n -webkit-margin-end: 0.75rem;\n marg
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.rtl.css
SPDXID: SPDXRef-5c6ba8d4f6933acdd7c46e373490adff
FileChecksum: SHA1: 407d6c5a3be33bd2611cc3ab27c65027edf82af0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.rtl.css.map
SPDXID: SPDXRef-6592f90816842bdd458636ee26d96e7f
FileChecksum: SHA1: 1dc2d930fa8b4d284bfdcee718251f95d5909719
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","// scss-docs-start color-mode-mixin\n@mixin color-mode($mode: light, $root: false) {\n @if $color-mode-type == \"media-query\" {\n @if $root == true {\n @media (prefers-color-scheme: $mode) {\n :root {\n @content;\n }\n }\n } @else {\n @media (prefers-color-scheme: $mode) {\n @content;\n }\n }\n } @else {\n [data-bs-theme=\"#{$mode}\"] {\n @content;\n }\n }\n}\n// scss-docs-end color-mode-mixin\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n @include font-size(var(--#{$prefix}root-font-size));\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$prefix}body-font-family);\n @include font-size(var(--#{$prefix}body-font-size));\n font-weight: var(--#{$prefix}body-font-weight);\n line-height: var(--#{$prefix}body-line-height);\n color: var(--#{$prefix}body-color);\n text-align: var(--#{$prefix}body-text-align);\n background-color: var(--#{$prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n opacity: $hr-opacity;\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, ``-`` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-heigh
Copyright 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {\n --bs-body-color: #adb5bd;\n --bs-body-color-rgb: 173, 181, 189;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #f8f9fa;\n --bs-emphasis-color-rgb: 248, 249, 250;\n --bs-secondary-color: rgba(173, 181, 189, 0.75);\n --bs-secondary-color-rgb: 173, 181, 189;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(173, 181, 189, 0.5);\n --bs-tertiary-color-rgb: 173, 181, 189;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-emphasis-color: #fff;\n --bs-primary-text: #6ea8fe;\n --bs-secondary-text: #dee2e6;\n --bs-success-text: #75b798;\n --bs-info-text: #6edff6;\n --bs-warning-text: #ffda6a;\n --bs-danger-text: #ea868f;\n --bs-light-text: #f8f9fa;\n --bs-dark-text: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #212529;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #495057;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #055160;\n --bs-warning-border-subtle: #664d03;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: #fff;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #9ec5fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 158, 197, 254;\n --bs-code-color: #e685b5;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: var(--bs-border-width) solid;\n opacity: 0.25;\n}\n\nh6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n color: var(--bs-heading-color, inherit);\n}\n\nh1, .h1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1, .h1 {\n font-size: 2.5rem;\n }\n}\n\nh2, .h2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2, .h2 {\n font-size: 2rem;\n }\n}\n\nh3, .h3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3, .h3 {\n font-size: 1.75rem;\n }\n}\n\nh4, .h4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4, .h4 {\n font-size: 1.5rem;\n }\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n text-decoration: underline dotted;\n cursor: help;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall, .small {\n font-size: 0.875em;\n}\n\nmark, .mark {\n padding: 0.1875em;\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));\n text-decoration: underline;\n}\na:hover {\n --bs-link-color-rgb: var(--bs-link-hover-color-rgb);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: var(--bs-secondary-color);\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: calc(1.625rem + 4.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-1 {\n font-size: 5rem;\n }\n}\n\n.display-2 {\n font-size: calc(1.575rem + 3.9vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-2 {\n font-size: 4.5rem;\n }\n}\n\n.display-3 {\n font-size: calc(1.525rem + 3.3vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-3 {\n font-size: 4rem;\n }\n}\n\n.display-4 {\n font-size: calc(1.475rem + 2.7vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-4 {\n font-size: 3.5rem;\n }\n}\n\n.display-5 {\n font-size: calc(1.425rem + 2.1vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-5 {\n font-size: 3rem;\n }\n}\n\n.display-6 {\n font-size: calc(1.375rem + 1.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-6 {\n font-size: 2.5rem;\n }\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 0.875em;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n.blockquote > :last-child {\n margin-bottom: 0;\n}\n\n.blockquote-footer {\n margin-top: -1rem;\n margin-bottom: 1rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n.blockquote-footer::before {\n content: \"— \";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: var(--bs-body-bg);\n border: var(--bs-border-width) solid var(--bs-border-color);\n border-radius: var(--bs-border-radius);\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 0.875em;\n color: var(--bs-secondary-color);\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-l
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.rtl.min.css
SPDXID: SPDXRef-5bac268cfdb05f6cb37c474442ad6607
FileChecksum: SHA1: f9de4b9bc1a30aa8652a7ecd8c621448d51a48ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/css/bootstrap.rtl.min.css.map
SPDXID: SPDXRef-d4287a8c19bffeaf9b989a70393a0753
FileChecksum: SHA1: 3370398bc326836c5c586e80f543cc7ea1e2647e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022, 2011-2022 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n // scss-docs-end root-body-variables\n\n @if $headings-color != null {\n --#{$prefix}heading-color: #{$headings-color};\n }\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n --#{$prefix}emphasis-color: #{$emphasis-color};\n\n // scss-docs-start form-control-vars\n --#{$prefix}form-control-bg: var(--#{$prefix}body-bg);\n --#{$prefix}form-control-disabled-bg: var(--#{$prefix}secondary-bg);\n // scss-docs-end form-control-vars\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$emphasis-color-dark};\n\n --#{$prefix}primary-text: #{$primary-text-dark};\n --#{$prefix}secondary-text: #{$secondary-text-dark};\n --#{$prefix}success-text: #{$success-text-dark};\n --#{$prefix}info-text: #{$info-text-dark};\n --#{$prefix}warning-text: #{$warning-text-dark};\n --#{$prefix}danger-text: #{$danger-text-dark};\n --#{$prefix}light-text: #{$light-text-dark};\n --#{$prefix}dark-text: #{$dark-text-dark};\n\n --#{$prefix}primary-bg-subtle: #{$primary-bg-subtle-dark};\n --#{$prefix}secondary-bg-subtle: #{$secondary-bg-subtle-dark};\n --#{$prefix}success-bg-subtle: #{$success-bg-subtle-dark};\n --#{$prefix}info-bg-subtle: #{$info-bg-subtle-dark};\n --#{$prefix}warning-bg-subtle: #{$warning-bg-subtle-dark};\n --#{$prefix}danger-bg-subtle: #{$danger-bg-subtle-dark};\n --#{$prefix}light-bg-subtle: #{$light-bg-subtle-dark};\n --#{$prefix}dark-bg-subtle: #{$dark-bg-subtle-dark};\n\n --#{$prefix}primary-border-subtle: #{$primary-border-subtle-dark};\n --#{$prefix}secondary-border-subtle: #{$secondary-border-subtle-dark};\n --#{$prefix}success-border-subtle: #{$success-border-subtle-dark};\n --#{$prefix}info-border-subtle: #{$info-border-subtle-dark};\n --#{$prefix}warning-border-subtle: #{$warning-border-subtle-dark};\n --#{$prefix}danger-border-subtle: #{$danger-border-subtle-dark};\n --#{$prefix}light-border-subtle: #{$light-border-subtle-dark};\n --#{$prefix}dark-border-subtle: #{$dark-border-subtle-dark};\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","@charset \"UTF-8\";\n/*!\n * Bootstrap v5.3.0-alpha1 (https://getbootstrap.com/)\n * Copyright The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text: #0a58ca;\n --bs-secondary-text: #6c757d;\n --bs-success-text: #146c43;\n --bs-info-text: #087990;\n --bs-warning-text: #997404;\n --bs-danger-text: #b02a37;\n --bs-light-text: #6c757d;\n --bs-dark-text: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #f8f9fa;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #e9ecef;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);\n --bs-emphasis-color: #000;\n --bs-form-control-bg: var(--bs-body-bg);\n --bs-form-control-disabled-bg: var(--bs-secondary-bg);\n --bs-highlight-bg: #fff3cd;\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n[data-bs-theme=dark] {\n --bs-body-color: #adb5bd;\n --bs-body-color-rgb: 173, 181, 189;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #f8f9fa;\n --bs-emphasis-color-rgb: 248, 249, 250;\n --bs-secondary-color: rgba(173, 181, 189, 0.75);\n --bs-secondary-color-rgb: 173, 181, 189;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(173, 181, 189, 0.5);\n --bs-tertiary-color-rgb: 173, 181, 189;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-emphasis-color: #fff;\n --bs-primary-text: #6ea8fe;\n --bs-secondary-text: #dee2e6;\n --bs-success-text: #75b798;\n --bs-info-text: #6edff6;\n --bs-warning-text: #ffda6a;\n --bs-danger-text: #ea868f;\n --bs-light-text: #f8f9fa;\n --bs-dark-text: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #212529;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #495057;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #055160;\n --bs-warning-border-subtle: #664d03;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: #fff;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #9ec5fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 158, 197, 254;\n --bs-code-color: #e685b5;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: var(--bs-border-width) solid;\n opacity: 0.25;\n}\n\nh6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n color: var(--bs-heading-color, inherit);\n}\n\nh1, .h1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1, .h1 {\n font-size: 2.5rem;\n }\n}\n\nh2, .h2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2, .h2 {\n font-size: 2rem;\n }\n}\n\nh3, .h3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3, .h3 {\n font-size: 1.75rem;\n }\n}\n\nh4, .h4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4, .h4 {\n font-size: 1.5rem;\n }\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-right: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-right: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall, .small {\n font-size: 0.875em;\n}\n\nmark, .mark {\n padding: 0.1875em;\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));\n text-decoration: underline;\n}\na:hover {\n --bs-link-color-rgb: var(--bs-link-hover-color-rgb);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: var(--bs-secondary-color);\n text-align: right;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: right;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: right;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: calc(1.625rem + 4.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-1 {\n font-size: 5rem;\n }\n}\n\n.display-2 {\n font-size: calc(1.575rem + 3.9vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-2 {\n font-size: 4.5rem;\n }\n}\n\n.display-3 {\n font-size: calc(1.525rem + 3.3vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-3 {\n font-size: 4rem;\n }\n}\n\n.display-4 {\n font-size: calc(1.475rem + 2.7vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-4 {\n font-size: 3.5rem;\n }\n}\n\n.display-5 {\n font-size: calc(1.425rem + 2.1vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-5 {\n font-size: 3rem;\n }\n}\n\n.display-6 {\n font-size: calc(1.375rem + 1.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-6 {\n font-size: 2.5rem;\n }\n}\n\n.list-unstyled {\n padding-right: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-right: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n.list-inline-item:not(:last-child) {\n margin-left: 0.5rem;\n}\n\n.initialism {\n font-size: 0.875em;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n.blockquote > :last-child {\n margin-bottom: 0;\n}\n\n.blockquote-footer {\n margin-top: -1rem;\n margin-bottom: 1rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n.blockquote-footer::before {\n content: \"— \";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: var(--bs-body-bg);\n border: var(--bs-border-width) solid var(--bs-border-color);\n border-radius: var(--bs-border-radius);\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 0.875em;\n color: var(--bs-secondary-color);\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-left: auto;\n margin-right: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-right: 8.33333333%;\n}\n\n.offset-2 {\n margin-right: 16.66666667%;\n}\n\n.offset-3 {\n margin-right: 25%;\n}\n\n.offset-4 {\n margin-right: 33.33333333%;\n}\n\n.offset-5 {\n margin-right: 41.66666667%;\n}\n\n.offset-6 {\n margin-right: 50%;\n}\n\n.offset-7 {\n margin-right: 58.33333333%;\n}\n\n.offset-8 {\n margin-right: 66.66666667%;\n}\n\n.offset-9 {\n margin-right: 75%;\n}\n\n.offset-10 {\n margin-right: 83.33333333%;\n}\n\n.offset-11 {\n margin-right: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-right: 0;\n }\n .offset-sm-1 {\n margin-right: 8.33333333%;\n }\n .offset-sm-2 {\n margin-right: 16.66666667%;\n }\n .offset-sm-3 {\n margin-right: 25%;\n }\n .offset-sm-4 {\n margin-right: 33.33333333%;\n }\n .offset-sm-5 {\n margin-right: 41.66666667%;\n }\n .offset-sm-6 {\n margin-right: 50%;\n }\n .offset-sm-7 {\n margin-right: 58.33333333%;\n }\n .offset-sm-8 {\n margin-right: 66.66666667%;\n }\n .offset-sm-9 {\n margin-right: 75%;\n }\n .offset-sm-10 {\n margin-right: 83.33333333%;\n }\n .offset-sm-11 {\n margin-right: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-right: 0;\n }\n .offset-md-1 {\n margin-right: 8.33333333%;\n }\n .offset-md-2 {\n margin-right: 16.66666667%;\n }\n .offset-md-3 {\n margin-right: 25%;\n }\n .offset-md-4 {\n margin-right: 33.33333333%;\n }\n .offset-md-5 {\n margin-right: 41.66666667%;\n }\n .offset-md-6 {\n margin-right: 50%;\n }\n .offset-md-7 {\n margin-right: 58.33333333%;\n }\n .offset-md-8 {\n margin-right: 66.66666667%;\n }\n .offset-md-9 {\n margin-right: 75%;\n }\n .offset-md-10 {\n margin-right: 83.33333333%;\n }\n .offset-md-11 {\n margin-right: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-right: 0;\n }\n .offset-lg-1 {\n margin-right: 8.33333333%;\n }\n .offset-lg-2 {\n margin-right: 16.66666667%;\n }\n .offset-lg-3 {\n margin-right: 25%;\n }\n .offset-lg-4 {\n margin-right: 33.33333333%;\n }\n .offset-lg-5 {\n margin-right: 41.66666667%;\n }\n .offset-lg-6 {\n margin-right: 50%;\n }\n .offset-lg-7 {\n margin-right: 58.33333333%;\n }\n .offset-lg-8 {\n margin-right: 66.66666667%;\n }\n .offset-lg-9 {\n margin-right: 75%;\n }\n .offset-lg-10 {\n margin-right: 83.33333333%;\n }\n .offset-lg-11 {\n margin-right: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-right: 0;\n }\n .offset-xl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xl-3 {\n margin-right: 25%;\n }\n .offset-xl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xl-6 {\n margin-right: 50%;\n }\n .offset-xl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xl-9 {\n margin-right: 75%;\n }\n .offset-xl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xl-11 {\n margin-right: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-right: 0;\n }\n .offset-xxl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-right: 25%;\n }\n .offset-xxl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-right: 50%;\n }\n .offset-xxl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-right: 75%;\n }\n .offset-xxl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-right: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.table {\n --bs-table-color: var(--bs-body-color);\n --bs-table-bg: transparent;\n --bs-table-border-color: var(--bs-border-color);\n --bs-table-accent-bg: transparent;\n --bs-table-striped-color: var(--bs-body-color);\n --bs-table-striped-bg: rgba(0, 0, 0, 0.05);\n --bs-table-active-color: var(--bs-body-color);\n --bs-table-active-bg: rgba(0, 0, 0, 0.1);\n --bs-table-hover-color: var(--bs-body-color);\n --bs-table-hover-bg: rgba(0, 0, 0, 0.075);\n width: 100%;\n margin-bottom: 1rem;\n color: var(--bs-table-color);\n vertical-align: top;\n border-color: var(--bs-table-border-color);\n}\n.table > :not(caption) > * > * {\n padding: 0.5rem 0.5rem;\n background-color: var(--bs-table-bg);\n border-bottom-width: var(--bs-border-width);\n box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);\n}\n.table > tbody {\n vertical-align: inherit;\n}\n.table > thead {\n vertical-align: bottom;\n}\n\n.table-group-divider {\n border-top: calc(var(--bs-border-width) * 2) solid currentcolor;\n}\n\n.caption-top {\n caption-side: top;\n}\n\n.table-sm > :not(caption) > * > * {\n padding: 0.25rem 0.25rem;\n}\n\n.table-bordered > :not(caption) > * {\n border-width: var(--bs-border-width) 0;\n}\n.table-bordered > :not(caption) > * > * {\n border-width: 0 var(--bs-border-width);\n}\n\n.table-borderless > :not(caption) > * > * {\n border-bottom-width: 0;\n}\n.table-borderless > :not(:first-child) {\n border-top-width: 0;\n}\n\n.table-striped > tbody > tr:nth-of-type(odd) > * {\n --bs-table-accent-bg: var(--bs-table-striped-bg);\n color: var(--bs-table-striped-color);\n}\n\n.table-striped-columns > :not(caption) > tr > :nth-child(even) {\n --bs-table-accent-bg: var(--bs-table-striped-bg);\n color: var(--bs-table-striped-color);\n}\n\n.table-active {\n --bs-table-accent-bg: var(--bs-table-active-bg);\n color: var(--bs-table-active-color);\n}\n\n.table-hover > tbody > tr:hover > * {\n --bs-table-accent-bg: var(--bs-table-hover-bg);\n color: var(--bs-table-hover-color);\n}\n\n.table-primary {\n --bs-table-color: #000;\n --bs-table-bg: #cfe2ff;\n --bs-table-border-color: #bacbe6;\n --bs-table-striped-bg: #c5d7f2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bacbe6;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfd1ec;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-secondary {\n --bs-table-color: #000;\n --bs-table-bg: #e2e3e5;\n --bs-table-border-color: #cbccce;\n --bs-table-striped-bg: #d7d8da;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #cbccce;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #d1d2d4;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-success {\n --bs-table-color: #000;\n --bs-table-bg: #d1e7dd;\n --bs-table-border-color: #bcd0c7;\n --bs-table-striped-bg: #c7dbd2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bcd0c7;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #c1d6cc;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-info {\n --bs-table-color: #000;\n --bs-table-bg: #cff4fc;\n --bs-table-border-color: #badce3;\n --bs-table-striped-bg: #c5e8ef;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #badce3;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfe2e9;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-warning {\n --bs-table-color: #000;\n --bs-table-bg: #fff3cd;\n --bs-table-border-color: #e6dbb9;\n --bs-table-striped-bg: #f2e7c3;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #e6dbb9;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #ece1be;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-danger {\n --bs-table-color: #000;\n --bs-table-bg: #f8d7da;\n --bs-table-border-color: #dfc2c4;\n --bs-table-striped-bg: #eccccf;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfc2c4;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5c7ca;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-light {\n --bs-table-color: #000;\n --bs-table-bg: #f8f9fa;\n --bs-table-border-color: #dfe0e1;\n --bs-table-striped-bg: #ecedee;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfe0e1;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5e6e7;\n --bs-table-hover-color: #000;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-dark {\n --bs-table-color: #fff;\n --bs-table-bg: #212529;\n --bs-table-border-color: #373b3e;\n --bs-table-striped-bg: #2c3034;\n --bs-table-striped-color: #fff;\n --bs-table-active-bg: #373b3e;\n --bs-table-active-color: #fff;\n --bs-table-hover-bg: #323539;\n --bs-table-hover-color: #fff;\n color: var(--bs-table-color);\n border-color: var(--bs-table-border-color);\n}\n\n.table-responsive {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 767.98px) {\n .table-responsive-md {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1399.98px) {\n .table-responsive-xxl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n.form-label {\n margin-bottom: 0.5rem;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + var(--bs-border-width));\n padding-bottom: calc(0.375rem + var(--bs-border-width));\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + var(--bs-border-width));\n padding-bottom: calc(0.5rem + var(--bs-border-width));\n font-size: 1.25rem;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + var(--bs-border-width));\n padding-bottom: calc(0.25rem + var(--bs-border-width));\n font-size: 0.875rem;\n}\n\n.form-text {\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: var(--bs-secondary-color);\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: var(--bs-body-color);\n background-color: var(--bs-form-control-bg);\n background-clip: padding-box;\n border: var(--bs-border-width) solid var(--bs-border-color);\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border-radius: 0.375rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n.form-control[type=file] {\n overflow: hidden;\n}\n.form-control[type=file]:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n.form-control:focus {\n color: var(--bs-body-color);\n background-color: var(--bs-form-control-bg);\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-control::-webkit-date-and-time-value {\n height: 1.5em;\n}\n.form-control::-webkit-datetime-edit {\n display: block;\n padding: 0;\n}\n.form-control::-moz-placeholder {\n color: var(--bs-secondary-color);\n opacity: 1;\n}\n.form-control::placeholder {\n color: var(--bs-secondary-color);\n opacity: 1;\n}\n.form-control:disabled {\n background-color: var(--bs-form-control-disabled-bg);\n opacity: 1;\n}\n.form-control::-webkit-file-upload-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n -webkit-margin-end: 0.75rem;\n margin-inline-end: 0.75rem;\n color: var(--bs-body-color);\n background-color: var(--bs-tertiary-bg);\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: var(--bs-border-width);\n border-radius: 0;\n -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n.form-control::file-selector-button {\n padding: 0.375rem 0.75r
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.bundle.js
SPDXID: SPDXRef-6ea98ef7ee92253218325c5f20c017ae
FileChecksum: SHA1: 934c7ac20185ee9083bf55bc3793086510fba13e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.bundle.js.map
SPDXID: SPDXRef-2f529bdb9c76146c645b79a05fac985d
FileChecksum: SHA1: 13b9b995237df9f0e7baec8e1ceb531406281e7d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.bundle.min.js
SPDXID: SPDXRef-47869719b71eaa11a39d3d586def22b6
FileChecksum: SHA1: bff78dd9c02a5008ab43642948739ce58c761b21
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.bundle.min.js.map
SPDXID: SPDXRef-b96f14fa9d2a38c4c32fec6fe9a8b2ad
FileChecksum: SHA1: aefb664f06667e0588345dd3075779e470a30cb4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.esm.js
SPDXID: SPDXRef-83379392e06c7994abcac5e7b488e4f6
FileChecksum: SHA1: 2bc9034f759810e842f5405239e349f5c1fb2029
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.esm.js.map
SPDXID: SPDXRef-473f4fe6a5205b3f0e97623b7234b973
FileChecksum: SHA1: 3c464e307f797e4a8169795eebe26206b35e9ec9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.esm.min.js
SPDXID: SPDXRef-a8d66d31e9308b472a042e172beab773
FileChecksum: SHA1: 159888e4677e9645615c1cb4e5ebf83aa2154410
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.esm.min.js.map
SPDXID: SPDXRef-c8958909a0972254d8b699f316c57ff8
FileChecksum: SHA1: 683673ac320973be4799cf0be0a4d4dcaaa94002
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.js
SPDXID: SPDXRef-6786a7ac2843c6a25f77a9d413ca9cc5
FileChecksum: SHA1: df87de6a3976bfdbb92c74018ccfcdcba4524f7b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.js.map
SPDXID: SPDXRef-d961b6f90b1a657ad66a19733b4c3f9a
FileChecksum: SHA1: 31e6cd326a2870b8c7773e732a6848d2ff2d5cf1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.min.js
SPDXID: SPDXRef-5a55be15fba326dda4970dcf4f5bf1ed
FileChecksum: SHA1: cff3e6242446b202dc3b343f3913e252e1cee244
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bootstrap-5.3.0-alpha1/js/bootstrap.min.js.map
SPDXID: SPDXRef-69cb306561d841b8ea3e416e77bca13a
FileChecksum: SHA1: 0a6b1f8b6fae07cf08b0b2cfaee73108362eed84
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bs5treeview/css/bstreeview.css
SPDXID: SPDXRef-58ba2a125767a5fdf55b037fa8f31c17
FileChecksum: SHA1: 03328978f1ef29ee6adbb63069d0f186fb62c525
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2020
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/bs5treeview/js/bstreeview.js
SPDXID: SPDXRef-cf3c56093a6d7a51aeea776c723c1333
FileChecksum: SHA1: f5e5fcd92338f3c9cedc9bc0b8416aae5c37e622
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2020
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/all.css
SPDXID: SPDXRef-aff2e6fc8fcad02b63862f8930d1a0a1
FileChecksum: SHA1: 8d4555c8a96b6494b3066f22c4adefbfc1d8cfe6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/all.min.css
SPDXID: SPDXRef-2a0aca85cfd4107661af9a824878de03
FileChecksum: SHA1: 8922f78fc464d96eafb41f27916e97b9a12f5e37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/brands.css
SPDXID: SPDXRef-9573620fb1ebae4e48ec8d49f10ccaf2
FileChecksum: SHA1: aad49865edff849521eb190a911807d88c6c21ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/brands.min.css
SPDXID: SPDXRef-381e73795cbc7be8c8a3afafd4feef52
FileChecksum: SHA1: d3ff4704bec52175d2d67053fdcc30c892f116f5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/fontawesome.css
SPDXID: SPDXRef-1f9e5311df7a62b7cfc0b6efeec59b81
FileChecksum: SHA1: ff1f0d74a2a19d768dcb86af9f0dd8b69d0526e3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/fontawesome.min.css
SPDXID: SPDXRef-9caaede3e98f2005117bce1c66c32f37
FileChecksum: SHA1: 7aa90d1ef3bcc08573ec413978308b96c851494c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/regular.css
SPDXID: SPDXRef-5b231c574181b604cf8916f382d98335
FileChecksum: SHA1: d836fb49fc5006f4b7ddefb80c1498959f1849be
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/regular.min.css
SPDXID: SPDXRef-f7f9bb75399c2e983508f09061c657f3
FileChecksum: SHA1: 112619f0e6cef6876e72546bb503546f4f460a3a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/solid.css
SPDXID: SPDXRef-4d41b3f5446bec9c3be7c64d2886e44d
FileChecksum: SHA1: 1807be0a69bb98aa2b5dbef4ceefcc7f3bf6a871
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/solid.min.css
SPDXID: SPDXRef-5db48848da76c06e9f6f8daf677203ac
FileChecksum: SHA1: 44ffbb93fb45aa01fa8ab8e4bac969cb00a35fac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/svg-with-js.css
SPDXID: SPDXRef-72e813078458874efa3d79b9d8b122e7
FileChecksum: SHA1: e7a488653c44704f0f1eff6a9b452ac6a0371131
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/svg-with-js.min.css
SPDXID: SPDXRef-a48fda6fe3bbbb9daecaf18a69dea7a6
FileChecksum: SHA1: b4d15bfde681b0de4f3672ae138ad560dd055d73
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/v4-font-face.css
SPDXID: SPDXRef-d2f5b1534e8b259846b57561717fea36
FileChecksum: SHA1: 2cd27902ed4f75f7ce2272431cfded92b92f9593
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/v4-font-face.min.css
SPDXID: SPDXRef-6729253e5b6ec615476368166bcb8399
FileChecksum: SHA1: b5797a81c1252c3ad3eb5cca3446ee33a8f7c6ee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/v4-shims.css
SPDXID: SPDXRef-d38c8e6acbeab26447ba2b03f08746fa
FileChecksum: SHA1: b34225697b04046d1d644dda995da117d8d18f45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/v4-shims.min.css
SPDXID: SPDXRef-111d0d3334293918b2fe3f5691352ec9
FileChecksum: SHA1: c35abf246c9c0e89c5c79fecca51fe5a49f874db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/v5-font-face.css
SPDXID: SPDXRef-dc4943dbff239ccb405d890dd1e77664
FileChecksum: SHA1: ac8048a89bf1570e14453131439495b80aa60fa4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/css/v5-font-face.min.css
SPDXID: SPDXRef-3453ef24b311cd7d50fcfa0961ed6f46
FileChecksum: SHA1: 019d55c8721524dc44325f75948a35d37edab954
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/all.js
SPDXID: SPDXRef-29fe29b13cac97c0f6057b0a8059c76c
FileChecksum: SHA1: e79bec30f699aeeb52be48960db5ae939fa7d136
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
Copyright Mathias Bynens
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/all.min.js
SPDXID: SPDXRef-a69f914ee0ec3250faedc23ced5c833d
FileChecksum: SHA1: 26b64ab5603c10c36eaf42f611062f3400f5f72c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/brands.js
SPDXID: SPDXRef-54b18a4d8430bcf2fdce4549ea57e9b6
FileChecksum: SHA1: ec3d4cdb823aac6d215dad17edfb0a505ec99f4d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/brands.min.js
SPDXID: SPDXRef-097cc8c11b0a951206b31957d15e7f5a
FileChecksum: SHA1: 7cbe2d67ac8d09d62379d40ba0fbdda103653bcd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/conflict-detection.js
SPDXID: SPDXRef-d66cfb41875ee910a67bbacac09a63f1
FileChecksum: SHA1: 9e6fb0bbbbb9cac345fb9d7a0aea7b56c22c1a5f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/conflict-detection.min.js
SPDXID: SPDXRef-8d6a5ab7b9142c6c72abb3ae32a6c519
FileChecksum: SHA1: 480829ab8a65bdae8b894b3b4e41275d38adb66e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/fontawesome.js
SPDXID: SPDXRef-c58400e64da523c258f131fb669e2af5
FileChecksum: SHA1: 6e9cdb657054249c349f76172dffb14694e594df
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
Copyright Mathias Bynens
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/fontawesome.min.js
SPDXID: SPDXRef-3db25756033e26ca84cee8ae58a9056b
FileChecksum: SHA1: 8af06b98020534e84087676799f73e420bf84a50
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/regular.js
SPDXID: SPDXRef-f7d2311bad31a5c54a056ff4155cda8e
FileChecksum: SHA1: 142b487eaecb1758346ad02e5a011b26a338cf03
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/regular.min.js
SPDXID: SPDXRef-0109ce1f91eb8a69759bfc287ec46117
FileChecksum: SHA1: 8c9514e9834c5902197a86924ee7bfda2760fed8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/solid.js
SPDXID: SPDXRef-0d40167fd274d8709701d538499fea5d
FileChecksum: SHA1: f846d20d91b574feeb87fefba354f68f4746f1b7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/solid.min.js
SPDXID: SPDXRef-c704dcccbcb05821d800c7869c8831af
FileChecksum: SHA1: aadf65aa4aca8fe6ee742e4106c080d0d527577f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/v4-shims.js
SPDXID: SPDXRef-dc059a34e038ac8a65cf5756da1e19a4
FileChecksum: SHA1: 0bfaf69c24a9d1991adfb04189a43c5fa791c2fc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/js/v4-shims.min.js
SPDXID: SPDXRef-f921923d592161591d200e954227ee00
FileChecksum: SHA1: 7acadd8cc05847e6b78993cb8b81a33b97371be7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_animated.less
SPDXID: SPDXRef-f8edd83a6c44023f0b7692ca9ef66907
FileChecksum: SHA1: 5eb7203beef3365eeb39f638af4bd946d75ad424
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_bordered-pulled.less
SPDXID: SPDXRef-53b715a196657bac4397dd8a165e9c39
FileChecksum: SHA1: 49f036e93019648c1692ea4f4f197dc1972c9345
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_core.less
SPDXID: SPDXRef-b600afe603c36437b86d1dfccc94e948
FileChecksum: SHA1: f87cbe4cec1f080c50ec78cc96c1b3f288321839
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_fixed-width.less
SPDXID: SPDXRef-3816c1b8ae8597c72ce43ca92c9f310e
FileChecksum: SHA1: 1d8eddb2ade95ae5bf8496978b967e5cbbba51e3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_icons.less
SPDXID: SPDXRef-997ae9a962f8cdc61503cd6f678826d2
FileChecksum: SHA1: 83e1d082455ade67c16f046bf6fd9dfd9dc649bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_list.less
SPDXID: SPDXRef-fdfbfc556e07f3c44dd54e01cfee610a
FileChecksum: SHA1: 470bd293fce3db2ae7a9660aa50b27675d26adb4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_mixins.less
SPDXID: SPDXRef-caa36f49f04009c760e9cf4c4ba90e42
FileChecksum: SHA1: db18615456c042303532fa415e62739ebad8839c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_rotated-flipped.less
SPDXID: SPDXRef-b49a466a66744a101c43acf749ba86f6
FileChecksum: SHA1: 18594fe397e935eb64a0395210f1df885a1ae4bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_screen-reader.less
SPDXID: SPDXRef-a47911b920d63d0a6229c9872b63e714
FileChecksum: SHA1: ae02d32e51cc5885e8eb6ae083b588add1551ee6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_shims.less
SPDXID: SPDXRef-e0e77fa7fc0b8a3fc45f33493d7306f0
FileChecksum: SHA1: 8cec0e9f69d9fdb513eb1019c9a45e9534c0d7f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_sizing.less
SPDXID: SPDXRef-627f816553887b582abfafa9871c014b
FileChecksum: SHA1: adb5be0fa83f97edd33ee9489a1d6ae6e3da4636
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_stacked.less
SPDXID: SPDXRef-78de57dbcc339d7f906634a27316df38
FileChecksum: SHA1: 0e7dff8028a4260712b0a13a898b2763560ab1ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/_variables.less
SPDXID: SPDXRef-e2e8b6c5983d2e42ee212e2d83b47caa
FileChecksum: SHA1: 358695afd9230a2f711ce75c91159434fab796e3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/brands.less
SPDXID: SPDXRef-37d02cf74d0928c790a75000851d7a7f
FileChecksum: SHA1: c346724b974b99d58ae439064a628dc16e4735c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/fontawesome.less
SPDXID: SPDXRef-59477e91eb0b727dd5a5bc9290028d60
FileChecksum: SHA1: 08e701eb04ad0e6413059eb38ebbde163cb24695
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/regular.less
SPDXID: SPDXRef-ee37aabeb3168dff7e2d5d3e295ce2df
FileChecksum: SHA1: a11adb787fbc819103585b9a0c8348dc6ddbea04
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/solid.less
SPDXID: SPDXRef-cbeef7ad2594ffdb19a9e4e475757cce
FileChecksum: SHA1: 0aa89f7625284a71a21b6a85e5fb443939fe708a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/less/v4-shims.less
SPDXID: SPDXRef-b2c915df353c32c87f6220dc9e92b85a
FileChecksum: SHA1: 57f1e597a779b87ff3a832ef421ea749e66822e5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/categories.yml
SPDXID: SPDXRef-a6e36b189bea829656084077ddb83c12
FileChecksum: SHA1: 88ef083aa9b22f52bbb133c10393ba9813613418
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/icon-families.json
SPDXID: SPDXRef-2b1a60d92ab6376c37ae3e6621108949
FileChecksum: SHA1: 2f754a30913b28695ce8e4372f5c38f734022cea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/icon-families.yml
SPDXID: SPDXRef-ffd624baacc4fd2055629828a3c3dd1e
FileChecksum: SHA1: fb8f63bcbd1a270e29c5148f37c65a44bdc7f0db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/icons.json
SPDXID: SPDXRef-1ba5c7eb900777ca771a9f6ba1f56531
FileChecksum: SHA1: e9a5f40507ec2f38cdb27095b3fa0648a8348aae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/icons.yml
SPDXID: SPDXRef-940bc38c846edfffaae7a78f1440d736
FileChecksum: SHA1: a50bd31beefd6610becd2bebc446ab7b4b36e9d1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/shims.json
SPDXID: SPDXRef-69f947cf9391dff22f54deb076f4d8a2
FileChecksum: SHA1: 6b8f6f8114246479d3a2bd6c911f058f03c990e3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/shims.yml
SPDXID: SPDXRef-f5eee6865415eb804a91f3b3d76f3d63
FileChecksum: SHA1: ac8d13ae44a37f2bc1f7da663fbe22b0e6b9cda9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/metadata/sponsors.yml
SPDXID: SPDXRef-e1098fe12102c70e96581e37743ac015
FileChecksum: SHA1: 151ca54635bc95facdd689972e4ea5528c1a9eda
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_animated.scss
SPDXID: SPDXRef-9e8a4a18c7a697597b13eed6373e6b6b
FileChecksum: SHA1: af0dc31bdccfe9c7c0136e8b256ceab34843a716
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_bordered-pulled.scss
SPDXID: SPDXRef-32516e080363300c6c3d957247926668
FileChecksum: SHA1: a2c5d08bf5b48ef8cd17584c3077c64ee0588185
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_core.scss
SPDXID: SPDXRef-d1b943d5eeb816cd3284d1320fd2bf01
FileChecksum: SHA1: 07297f0e0793ca048a99a11e9bdc92a2fd8c06de
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_fixed-width.scss
SPDXID: SPDXRef-017703d0e9deaa844b9a7b949e8d205f
FileChecksum: SHA1: f339bbb0325d00086b7cbee244b5ec9e09f24cda
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_functions.scss
SPDXID: SPDXRef-71d6e1a2b970910230c30b324fa8009d
FileChecksum: SHA1: 2b59d121a67a2143e00be1392ded06df72d31b16
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright (C) 2011-2021 The Bootstrap Authors
Copyright (C) 2011-2021 Twitter, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_icons.scss
SPDXID: SPDXRef-b24c7c5559e91ef669f09aaf272ed321
FileChecksum: SHA1: 67bf3c4e2984052d7b0ee095dde78c6ad9c2c837
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_list.scss
SPDXID: SPDXRef-28a5ad40842844f3d602744e10ae1084
FileChecksum: SHA1: 0a04501fa2e076ba963c0a22d0ab0834e6693e59
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_mixins.scss
SPDXID: SPDXRef-c38691af7f476fc9ab873bc7c6367ae9
FileChecksum: SHA1: 6c3a7782f35a65e17ef174f9250ef72b3dcfdc1c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_rotated-flipped.scss
SPDXID: SPDXRef-8f4ac0ef8a32df38195e6520d9bdbac2
FileChecksum: SHA1: 4b15b912a9f8625587dcf502d95e23bbfd1df808
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_screen-reader.scss
SPDXID: SPDXRef-9a0796d719263482e6338f026ac5a0dc
FileChecksum: SHA1: e49ec56638d1d788506f0dff5de56bde5041214b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_shims.scss
SPDXID: SPDXRef-42d5a2e5ceb2459b85e827939201b19e
FileChecksum: SHA1: 3fc2d87fccf64e8b836f5a891f2fd8f1b754858d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_sizing.scss
SPDXID: SPDXRef-a7208061a021e900071b61af33115597
FileChecksum: SHA1: 72ac705fa3914125b7c8ed4685df652950138d47
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_stacked.scss
SPDXID: SPDXRef-82383cb62c66fee00a5703276c0d0b07
FileChecksum: SHA1: ccddab09dc12a8c609f4288f996ce6145b8211e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/_variables.scss
SPDXID: SPDXRef-1fe30a66850d7c9afb0790efcd8fcc69
FileChecksum: SHA1: e55ff97957c3d52d7206fcf388582c3fac5b9233
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/brands.scss
SPDXID: SPDXRef-adcffeb4bd6ca77fd9d19903abdf4f98
FileChecksum: SHA1: d32b25e319a3e5fa2f6350d27031ddd12d9a1017
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/fontawesome.scss
SPDXID: SPDXRef-abf9fb675da86d7602e03816b419c1cb
FileChecksum: SHA1: df8a707eb4193b9c7889647d0cbde4ffa3f286e5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/regular.scss
SPDXID: SPDXRef-749f3919292530e41ccd032487a21b4c
FileChecksum: SHA1: b5a99dc702f574261bc5984dd837e86732c4a3d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/solid.scss
SPDXID: SPDXRef-7ee5e5adaa9ae59102d3737ee0041d9a
FileChecksum: SHA1: 6467f7c5586c616800405af4b44e0b611a91a143
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/scss/v4-shims.scss
SPDXID: SPDXRef-45583b8da9aa4777853093a5d4e51641
FileChecksum: SHA1: f4306663ba9c9b8b29968caf0ec81910d303f858
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/sprites/brands.svg
SPDXID: SPDXRef-7df0585325cc3d6fc8cae2eee2d371e8
FileChecksum: SHA1: b74a7e45348ffe9f5efd2aca3bb74bf58ad3a997
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/sprites/regular.svg
SPDXID: SPDXRef-618466736f84cc08a51c45074797b1da
FileChecksum: SHA1: 6e73ac1d7230d6535a5a85adbd49593fbee2870d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/sprites/solid.svg
SPDXID: SPDXRef-d9965feb013636fa15732deb10a01cff
FileChecksum: SHA1: e67bd3a7e0024e4e0b78696faa08184c3107a7fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc.
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/42-group.svg
SPDXID: SPDXRef-9b419dabe911d3ba01931375ce30df04
FileChecksum: SHA1: c85d5d3b2d90f86f56de504ccc187feb08ce13e7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/500px.svg
SPDXID: SPDXRef-3fb37a364b5b374afec7b7c67499fd21
FileChecksum: SHA1: 55a3f665af054f75e921c7c3a0eb97ce69da1069
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/accessible-icon.svg
SPDXID: SPDXRef-b707462c0408b9a50e2bfa252c15d29c
FileChecksum: SHA1: 1c960b57262cb340fce0961e899ccb578268a0e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/accusoft.svg
SPDXID: SPDXRef-345ec48040aa51fe25781e6aa3c3c5d1
FileChecksum: SHA1: 6c24ee86629b1c5ed2f39d53dfb97fb3fb2635c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/adn.svg
SPDXID: SPDXRef-186d9fabbf4d8a049aee3b0e406692ad
FileChecksum: SHA1: 9940d61c148ce6152c6792c252c7cf82dbd8e893
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/adversal.svg
SPDXID: SPDXRef-bc7d721d092f42831374252eec857376
FileChecksum: SHA1: 6fade8a482c70ca5a9c5fa1e9600a8bc78c8af85
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/affiliatetheme.svg
SPDXID: SPDXRef-67164b27f816e2180fea6f01944a0f76
FileChecksum: SHA1: 80061e4917c81560dd854d4ae17198155460084f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/airbnb.svg
SPDXID: SPDXRef-6f837314660ae1cc1e557830b69df4d8
FileChecksum: SHA1: 970191ea456d80daf1b26988afa2e87394a8f86d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/algolia.svg
SPDXID: SPDXRef-014283dcbca618b48a06583ffc63f7b5
FileChecksum: SHA1: ba6aa2bea305761b2a0b98e50efe3cff27174bcb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/alipay.svg
SPDXID: SPDXRef-970218d13e535640c39840541f2b7a01
FileChecksum: SHA1: 3a44329ddffd0800147f4519de8787184ab0dbc5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/amazon-pay.svg
SPDXID: SPDXRef-3845822943c040794c2ee895c2180b70
FileChecksum: SHA1: 4af5f0f1003700baf1baff33206ad0021e8a8ef9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/amazon.svg
SPDXID: SPDXRef-11ebbcc6331cc8d4108df300e6547ed8
FileChecksum: SHA1: b63a7996dae1347a771ad26c4e8acfba39c58633
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/amilia.svg
SPDXID: SPDXRef-b42ed822bd6a4fac45f38b66a60b975f
FileChecksum: SHA1: d1220db90cde8967aea8111693a7c777d807d6c8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/android.svg
SPDXID: SPDXRef-b59e8f1e4f7fee4755037b13c8fbdfd6
FileChecksum: SHA1: 77c2a6cdf7de0448213741e90487a83f919da6c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/angellist.svg
SPDXID: SPDXRef-52c6f94653a6456bb90bb7c9be499186
FileChecksum: SHA1: 0c3094abe297514aae1feedb23922bfbdd12fc84
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/angrycreative.svg
SPDXID: SPDXRef-0c43255d90c73bcb218da79cbcbdbc7f
FileChecksum: SHA1: a83d1c547237136ef9eb81e6a707a123babb7936
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/angular.svg
SPDXID: SPDXRef-ef3a6954500e0000ed1587492fa19c45
FileChecksum: SHA1: b99d1e00fc8c544be950f68611f483afb724695a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/app-store-ios.svg
SPDXID: SPDXRef-1b5831d0874fd09a11ba777568ec72f4
FileChecksum: SHA1: 21efea54f44f7f303c7d13bd7c62a36586ff91ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/app-store.svg
SPDXID: SPDXRef-53d07a170b429f7559b92deea46160bc
FileChecksum: SHA1: 1746d6b614e43ea60b52eca5ef23ec6da9dfa745
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/apper.svg
SPDXID: SPDXRef-f920a2e7e375166846bdfc2456f6d2c3
FileChecksum: SHA1: d4d4608589a31b552a1dae93194691814d7a39e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/apple-pay.svg
SPDXID: SPDXRef-a5e1c0eb5159500d0868a485614dd770
FileChecksum: SHA1: a0ae993dba84be2dc0d72d323c3daac5f6e436a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/apple.svg
SPDXID: SPDXRef-4fcfa09ee8eb9452b2c998b172f0ccc5
FileChecksum: SHA1: 33ecc7512360123775e9ad445cbd77dea08fa9e2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/artstation.svg
SPDXID: SPDXRef-0d4382561cc2be643b834500e55ae2bf
FileChecksum: SHA1: 84efaffa0a1432e624eae018d967a944d3e3d9f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/asymmetrik.svg
SPDXID: SPDXRef-ddaa8aed94d50c0f0292f6e5c83b8cf1
FileChecksum: SHA1: 742f9d1a5df7286dd4e740b1576dee79f13d6ac5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/atlassian.svg
SPDXID: SPDXRef-bf977d8770631a563c20c500e6c491a0
FileChecksum: SHA1: 65eda905a5a4c1f47b9cd7e0841decd4ef10d7c5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/audible.svg
SPDXID: SPDXRef-96f14d7693169798ed446718c27bdd1e
FileChecksum: SHA1: bb5ccfbe0bf8273c66b36143ed9474c807c1567c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/autoprefixer.svg
SPDXID: SPDXRef-f67767f2b1488650bd7613308027a943
FileChecksum: SHA1: 2871e9d38e2e82558696d940711ae919bf924b7d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/avianex.svg
SPDXID: SPDXRef-cd99f68ac86a1ce20b5e9f0805f880f0
FileChecksum: SHA1: 66bd701bee5774161f96d35c056bf15b3f87fe64
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/aviato.svg
SPDXID: SPDXRef-312ad093a9380428b8d2769752b34412
FileChecksum: SHA1: 9081a45a776605431742561121633dfa3233ffdf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/aws.svg
SPDXID: SPDXRef-a27f75abc1046145653aeb3718098abf
FileChecksum: SHA1: 395c34e6cdbe4ea612c11a947989501501f8be4c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bandcamp.svg
SPDXID: SPDXRef-ec79374764987a001d22688f8b23c222
FileChecksum: SHA1: 0ed600ee3ee760dbadeeec113165ff122656a870
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/battle-net.svg
SPDXID: SPDXRef-25dab5acd201655af25df8519568cbff
FileChecksum: SHA1: 199091e75902154d07c5257813e9b40fffe5e13c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/behance.svg
SPDXID: SPDXRef-ec8747a584912b66044ac30ede12f68b
FileChecksum: SHA1: 6e8dad0c87a4182af0a83a17d68899481bee0238
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bilibili.svg
SPDXID: SPDXRef-be75e65c18d7ba488b394928850b5852
FileChecksum: SHA1: c44766782a1771a4bcd2443d7b407750014afc80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bimobject.svg
SPDXID: SPDXRef-1d43c794718b237498dffe8d3ba8cb77
FileChecksum: SHA1: 31433d99f03a0dcc2e1c703fef628350fe660dff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bitbucket.svg
SPDXID: SPDXRef-c89be2ec8f3cf1f90a9b3f05f4803dec
FileChecksum: SHA1: b00768a51d86ea6fa74e242357b6b85b9fef8295
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bitcoin.svg
SPDXID: SPDXRef-06d8df40cf4e021529fe9aca7064562a
FileChecksum: SHA1: e7be74a9868ecb1572aa19752caa29df5108e882
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bity.svg
SPDXID: SPDXRef-cadbe00169788ccd1e4f55d58d88767d
FileChecksum: SHA1: 1682e65010de8e951541e46fa96116ff36374b34
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/black-tie.svg
SPDXID: SPDXRef-d19c15fe24cae819bc05c630aad76f3b
FileChecksum: SHA1: 964c9c49cf6aef246278eab6c50c15428537384d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/blackberry.svg
SPDXID: SPDXRef-ba5c514f4c2b3b59e4131e6a58e87bf9
FileChecksum: SHA1: 9f14d9abfa6b35bfc731f6df29ca4cd10473e6c4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/blogger-b.svg
SPDXID: SPDXRef-f9f835085d919f80e0b451488fc8edb8
FileChecksum: SHA1: 0d9e6c737b6a231892bce5545313d0516b599823
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/blogger.svg
SPDXID: SPDXRef-b1d9cd88b18b6a4f54390f3489dc42aa
FileChecksum: SHA1: 7a2a53a7dd7615e832d2b0a7c491b9c8b174db98
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bluetooth-b.svg
SPDXID: SPDXRef-7219214d7441ed2ed04a305bf5db53f6
FileChecksum: SHA1: b69c878bd8173c3c4251b78b11e7d4121335fdad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bluetooth.svg
SPDXID: SPDXRef-b5c0412817c310a1ebd72ab3dae898a0
FileChecksum: SHA1: 09ff45d9f082564e9977a548c9639bd26d121d25
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bootstrap.svg
SPDXID: SPDXRef-e8e8c36b247e89bb042ebec3205f34d2
FileChecksum: SHA1: aa450e2862706d3cc9e914f84d14d9ec94552eb8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/bots.svg
SPDXID: SPDXRef-63f01adf97fbc8b9375f35ce163fed6e
FileChecksum: SHA1: 5a31eb909078d450168a664ea429616d97354fa1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/btc.svg
SPDXID: SPDXRef-d4f836290130a9ef43ddb08190c8d9d1
FileChecksum: SHA1: 97ba3d88e099403e8d80aea8026290c5bd30fc73
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/buffer.svg
SPDXID: SPDXRef-21289af989c9c36240358200f27f4c50
FileChecksum: SHA1: 94ef605227667d314f8ef64d4a00ea7e4db9eda5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/buromobelexperte.svg
SPDXID: SPDXRef-cf336c9cb4b883a4b4248df3bb050f19
FileChecksum: SHA1: b9cfb1e996799c0ed2a21c188c85a8f32a91d779
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/buy-n-large.svg
SPDXID: SPDXRef-e16484d696085f31b06190891d1935bc
FileChecksum: SHA1: cfed75927d81d3c14aea1d930b00bf6cb03313a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/buysellads.svg
SPDXID: SPDXRef-ed8bd90ae15232b0da436d26f143eab5
FileChecksum: SHA1: 8b067fe0debe4835ec9fdfb60e7b08b1f025d5fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/canadian-maple-leaf.svg
SPDXID: SPDXRef-39fc09fcd1d187db741470d270f2194d
FileChecksum: SHA1: 34165e7512d161293e2ca1ae7d829159a5f87e42
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-amazon-pay.svg
SPDXID: SPDXRef-adba701723394341bee5c345f8c88742
FileChecksum: SHA1: 47fb18070d8d318394cfbed1c2434237204027b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-amex.svg
SPDXID: SPDXRef-d95cebc0210d5b63df0ef1f12935ac7b
FileChecksum: SHA1: 9fda5eedccd74690d24d250e60301f84d17dc0d9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-apple-pay.svg
SPDXID: SPDXRef-eac41b2f17d68020e991fd2e9c8ce5c0
FileChecksum: SHA1: 94dce99e0de770db74dfca5a67933ed4b8c2686c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-diners-club.svg
SPDXID: SPDXRef-4769a1090c1417cc28e2530711feee2e
FileChecksum: SHA1: a693b1ae90ff29748bdc88bf48caddde0228f71f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-discover.svg
SPDXID: SPDXRef-a4909ad35ff6e1223f27909b5f26a3a0
FileChecksum: SHA1: 94c65d538d343efca54976fbddad2d877dd0cabb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-jcb.svg
SPDXID: SPDXRef-d523a0d1163263e3655871b4cd5fe866
FileChecksum: SHA1: 4384b06113747990d64239ba233d73483104f4f5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-mastercard.svg
SPDXID: SPDXRef-4421b8154545e0d57af69761f8b229ea
FileChecksum: SHA1: 20493ddd62107b6c75c1c1a8aaba101577b7de80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-paypal.svg
SPDXID: SPDXRef-fac3981c50fdcac630e10448260a8e76
FileChecksum: SHA1: a3ea74266360c42c6e4d2224811c3a9d1bfa22fe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-stripe.svg
SPDXID: SPDXRef-b11ef904e0733cb40dbe9ba2e0ed6d6a
FileChecksum: SHA1: d90a0db653b21897180508186c73dc398f689132
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cc-visa.svg
SPDXID: SPDXRef-6aa94d807d1ff70778767065b78ae2b3
FileChecksum: SHA1: 182bdddd12eb90fba7b75c05f4db078007a60e29
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/centercode.svg
SPDXID: SPDXRef-8f0dc669a14c82facbccb52b8a511067
FileChecksum: SHA1: e5139c8c4c06d0ff642dad8aecbb9a52e19fa6fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/centos.svg
SPDXID: SPDXRef-ff90ee9e2807c92633f4b4d73e6e87f7
FileChecksum: SHA1: 590adff1ef1403dbfbd9629131ec0a2cab13f78a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/chrome.svg
SPDXID: SPDXRef-8179650017456c611621a0be97efec2c
FileChecksum: SHA1: 871d25c142986e6e3407f2e27df4768962a561e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/chromecast.svg
SPDXID: SPDXRef-8af5679b573a086ca55614b30d5f8ac4
FileChecksum: SHA1: fff25a58a00c5374a7b6034ae882230b65a3f24e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cloudflare.svg
SPDXID: SPDXRef-53939ebe40d76a8b589f981ced48a244
FileChecksum: SHA1: bb6eeecec6cc426436f2ee682d95812f6e852581
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cloudscale.svg
SPDXID: SPDXRef-17eaca096ad1848908a01508b2978e6d
FileChecksum: SHA1: b3dbccd4707862522473e62bae9c43f453520f72
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cloudsmith.svg
SPDXID: SPDXRef-c6d3237431fd97d102075bcfcdba07b4
FileChecksum: SHA1: 9e71f93b0414fb7fad0bc57e6fde99f0ff4a7590
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cloudversify.svg
SPDXID: SPDXRef-ce3682c346504adcf7a71795f2ad712e
FileChecksum: SHA1: 3c7eaa6d4324f98f8a4d1d9a97470377e8869889
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cmplid.svg
SPDXID: SPDXRef-e6bf3afff581a93493f20bbb1a0ed28a
FileChecksum: SHA1: 04ab82243325eb88dd07bd91617b43fd7994865b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/codepen.svg
SPDXID: SPDXRef-7476c7113ef0ab421af662d5910d9807
FileChecksum: SHA1: 9aa7ea0a6f1eaa3c6d947760f3a3940f52db5e3f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/codiepie.svg
SPDXID: SPDXRef-9eb72036de00c312f087db6e04bfb862
FileChecksum: SHA1: 220250e30352d1679e170e0e61ca30a22cbd8a4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/confluence.svg
SPDXID: SPDXRef-10dea2c171b2e4613de3a65266bd7cc0
FileChecksum: SHA1: 4e7ad970a7d0edf494a6623c35cdcf561cef30c4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/connectdevelop.svg
SPDXID: SPDXRef-ea2adfb63ebc9e89490ee258ca3a5078
FileChecksum: SHA1: 211f1e2ce165af3e5c46364e89805170f4dea08d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/contao.svg
SPDXID: SPDXRef-653bfd316a0eb397974fb5795ba99a9f
FileChecksum: SHA1: bfe2964cd78bdec7e3e40bddad0edfa73d3a7ca5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cotton-bureau.svg
SPDXID: SPDXRef-3c3604a14bf6141cdcdfdd490148b6d2
FileChecksum: SHA1: 94a320dc726d38d7f28b896b11b4738a94fd8790
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cpanel.svg
SPDXID: SPDXRef-258bf552b99ffd37a3a6ea247bcdf8a0
FileChecksum: SHA1: 18ada513ed01e2523691f197175601969eca17b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-by.svg
SPDXID: SPDXRef-67a59440c05fa6d383ca1cf48a0e6da1
FileChecksum: SHA1: af78c3a5227be1a39eb714b74b91db8cecdab617
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-nc-eu.svg
SPDXID: SPDXRef-3f53a26dbd25b55c37b0d07d294f9a99
FileChecksum: SHA1: 9e2958cc72d012878c557ac8ebb8381ca1e53a33
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-nc-jp.svg
SPDXID: SPDXRef-767a03adc7dbebc41275c0ef8981f3fa
FileChecksum: SHA1: 4866b242748512379452f7787301721f50cffca9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-nc.svg
SPDXID: SPDXRef-40c2d61b6338477b7c46434c45feab10
FileChecksum: SHA1: 30012efdc1a0d4a169323cfd4317d28533794714
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-nd.svg
SPDXID: SPDXRef-462018346ab4287c7feca6ecd144bfbd
FileChecksum: SHA1: 3c899e8a35a7a2f45ec884164a183fee543f76c8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-pd-alt.svg
SPDXID: SPDXRef-d1c5731abed24f3cb048d7f4b002cbf2
FileChecksum: SHA1: 3b3b4bc50e1a17098e278f8e71546395a97526a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-pd.svg
SPDXID: SPDXRef-e4d03bb0f47016f66d5bc8fd6402f8e5
FileChecksum: SHA1: c29314dfd9aab7eea5260306d984155de7082421
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-remix.svg
SPDXID: SPDXRef-521c782251d896b3388d3a810974f733
FileChecksum: SHA1: eed9fc520132a6e2653e9a94f560231872eb3415
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-sa.svg
SPDXID: SPDXRef-bd93ce715fc3d975c4398d1a068bcf67
FileChecksum: SHA1: a7491d5f15ace2579b9bbf6016a015d3372bbd1a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-sampling-plus.svg
SPDXID: SPDXRef-db5707c252437c60c00c3c47752c859f
FileChecksum: SHA1: f1560067dc7e999c89388075d293f7bde6b13ccf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-sampling.svg
SPDXID: SPDXRef-30627a37415e6a4b06918434ac0d521f
FileChecksum: SHA1: 3b8320c2d1152772a162c452ab78f950fc821420
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-share.svg
SPDXID: SPDXRef-7bea931b651e868e3e287adc197dce03
FileChecksum: SHA1: 64d774b2bd475d6926b1043638fd9bfc2bb2a83f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons-zero.svg
SPDXID: SPDXRef-dbb4da6bc056d4d667e7b110a4ea54b7
FileChecksum: SHA1: adbd824335e0b882f847356a779d0275a23ccf6b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/creative-commons.svg
SPDXID: SPDXRef-8e5f6a166a33115d3a97f1375e1f86e7
FileChecksum: SHA1: 3fb03d16eb0dbc81c1ab99f340a7285bb2897ae9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/critical-role.svg
SPDXID: SPDXRef-efac60aa5227f3db873c5290fd933168
FileChecksum: SHA1: 1cbfd56a6394199b666718848ff96a3f38292252
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/css3-alt.svg
SPDXID: SPDXRef-71428e0f7bf1fb57add1e2633da239a9
FileChecksum: SHA1: 6b5ca4b94126fffe6fb0144ebd81d7fa2ea18f0a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/css3.svg
SPDXID: SPDXRef-869392c6fb36b88b98426a3f01fb99ed
FileChecksum: SHA1: d3303b26bf8cef5fd550b5a2cc2a5df5d1400b2a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/cuttlefish.svg
SPDXID: SPDXRef-d6d747d4385f001e0d4fd1c5a7628d34
FileChecksum: SHA1: c2d80224fe36d11d845884ee817e1a3f71aaa180
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/d-and-d-beyond.svg
SPDXID: SPDXRef-8cdc177482e1e29665e585cac91f908b
FileChecksum: SHA1: 09e6ef732ad57594cf3678d85815d4a2c69983c8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/d-and-d.svg
SPDXID: SPDXRef-ee48ec64835216d5cdf741ef263b7428
FileChecksum: SHA1: 2085ee1522da8e2115ff73b729cf3bc36279da5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dailymotion.svg
SPDXID: SPDXRef-b7227367e3a1c7b7847627ff9c8f5f58
FileChecksum: SHA1: b09eb84f78efc16151021537f1e5d0e2551e3555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dashcube.svg
SPDXID: SPDXRef-3d5bdf4dbc51cc0df57f953d1414c052
FileChecksum: SHA1: 6f1c9220074f572e17bc199e0ed294b79e993d31
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/deezer.svg
SPDXID: SPDXRef-8a9ad3d515fc697f0fc90e87b214cea1
FileChecksum: SHA1: b22d12c5e4cdab2c68db25b3387bfb140200c993
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/delicious.svg
SPDXID: SPDXRef-2254029a2443739d2b5bf46ffe6d9ba7
FileChecksum: SHA1: 47e46f2ef5fe220b1782715ffcdf68b43f0fbda7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/deploydog.svg
SPDXID: SPDXRef-5a91d62952db7a47801c66391cde64f5
FileChecksum: SHA1: bba6f6fae1b3678f91aa01e432baa1a5836c7145
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/deskpro.svg
SPDXID: SPDXRef-854d81e328f16e731d033970d6aea91a
FileChecksum: SHA1: c773e8312f6db63537b19823d454fd19d9d4f155
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dev.svg
SPDXID: SPDXRef-861435e002872862f18a9a466599b0c1
FileChecksum: SHA1: 5b9570b58708cdfd68605e03af7edc8eecaa1394
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/deviantart.svg
SPDXID: SPDXRef-c4cd694120e9c76999d1394857564641
FileChecksum: SHA1: 9663f457f7fe2c5a41fa9c80d33b489bb4479cc1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dhl.svg
SPDXID: SPDXRef-b00a7fa1281685d1d3cec7853df971c7
FileChecksum: SHA1: 6defd7dca3a3e99a5db9d1b80d07de6bea13b86d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/diaspora.svg
SPDXID: SPDXRef-a78386c87f25ff64f2a32fc5a09cb4ed
FileChecksum: SHA1: 7bfcc4ef3074701f8220af650b6a28d1bf0cc00a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/digg.svg
SPDXID: SPDXRef-18c2a425cd9c8300dd6b202f2daff4e4
FileChecksum: SHA1: 367e503d2c4bfe2c0b61ca24830046f530628a6f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/digital-ocean.svg
SPDXID: SPDXRef-c25ce2b1b126752dfeb3d595dac1a951
FileChecksum: SHA1: a5b3c095df45d7ed92c3ba5c35063092aaa4ffdb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/discord.svg
SPDXID: SPDXRef-3469982af944bac935e4a1c585c12b7a
FileChecksum: SHA1: 88911c5adaec6707a3e8f8ba0dfb1c020b5214d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/discourse.svg
SPDXID: SPDXRef-49e25de77da3c521bfb860f847418bf2
FileChecksum: SHA1: b6f3d13795c77c32369bf0d4e22492187be7db85
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dochub.svg
SPDXID: SPDXRef-95d0869d7f03af8d9881e314056b802f
FileChecksum: SHA1: 2817794c53b50f88d964a88903c7fc2ac7a0fcba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/docker.svg
SPDXID: SPDXRef-2baf3a821b6eb9dfb71b098ac8eb1ca2
FileChecksum: SHA1: 6abdc4f7b08574916442007a0ff46d4043391634
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/draft2digital.svg
SPDXID: SPDXRef-2b0b878cfc4542b60196b75578d51b28
FileChecksum: SHA1: 5e84e2c52e8dcbaa99cd7b4c1aa39f7f490bea35
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dribbble.svg
SPDXID: SPDXRef-e9138bc3361543fd69c562d70b2e8eed
FileChecksum: SHA1: 414b9c2479ea4aa7e40bb4f6c7fa5687f2886028
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dropbox.svg
SPDXID: SPDXRef-a5f28d7672c4f5f17d9be9d59f0ec6b6
FileChecksum: SHA1: 3dc16b198dce16c77885792745db92c1307102ea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/drupal.svg
SPDXID: SPDXRef-356b90a2d35d131a18d9bc5095842b8c
FileChecksum: SHA1: d3c6f1c9dc44e27d174ecd67231069ef71a76d9c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/dyalog.svg
SPDXID: SPDXRef-ed38a898beeee6f59f599b1637a91bbc
FileChecksum: SHA1: 5cd5c37727873d51788e8f230c385a3bde923d5d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/earlybirds.svg
SPDXID: SPDXRef-9a66fee497a7bc479e71ae70556a8d22
FileChecksum: SHA1: 24f49449a754059749a8b3ac238ca398510534e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ebay.svg
SPDXID: SPDXRef-a20cf2181eb587e25ac9edb24949ad92
FileChecksum: SHA1: 5eff27c85ad1b423df132db66ad3df246436e14e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/edge-legacy.svg
SPDXID: SPDXRef-480551213026126907114879b71e2460
FileChecksum: SHA1: f91565afad62156bd3f9f51005d1b5fbb25dff8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/edge.svg
SPDXID: SPDXRef-a47bd4f40e8793b1f8a282b9640f1b97
FileChecksum: SHA1: d32e40503b052811f8de50c135a39bebc20dee6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/elementor.svg
SPDXID: SPDXRef-4f5ec4345d06019adf33a32c4115558f
FileChecksum: SHA1: 513b5ca0b2c96cf85f9438b8e241ee2673324bc2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ello.svg
SPDXID: SPDXRef-0b53d572ec691793e17a11d2c6c86dac
FileChecksum: SHA1: e1696297ca5294da6c8110537b67bde0b8e934a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ember.svg
SPDXID: SPDXRef-64c7b9f375bd4751721ac67cae64dd7b
FileChecksum: SHA1: cf5455c6bb22f693172ae7c0c2dc951f238e07b1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/empire.svg
SPDXID: SPDXRef-995c0f1d50d216ecd0c7b0abed2c649b
FileChecksum: SHA1: 13381157743a9974f48f14cc6ae59f9a191217e7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/envira.svg
SPDXID: SPDXRef-c61568395acc0a38b2e3edd2f6946e40
FileChecksum: SHA1: 83f2004099efd21df07b2401ece6ce52b5a5c316
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/erlang.svg
SPDXID: SPDXRef-a21a0758c5a77be6c10b9747668b07bb
FileChecksum: SHA1: 9a8a8adb006767804b86812257836ac45a142c6d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ethereum.svg
SPDXID: SPDXRef-d936517c6b28ab3c9648d779e2187f9e
FileChecksum: SHA1: 9de33ea23f4e115a8f1ea1ed571a6044194d4b19
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/etsy.svg
SPDXID: SPDXRef-78b3dbf83ea0ae93862a2df5862d3080
FileChecksum: SHA1: 7b8e2afa3e187a4f4966d5f11ce9d104d24751f5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/evernote.svg
SPDXID: SPDXRef-25c0239aa12d475e2634fe7b1ca7b879
FileChecksum: SHA1: 833b22145e7c977f5a3581730aa84e446f693119
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/expeditedssl.svg
SPDXID: SPDXRef-0ff4bf315f79765245cd03992e69c062
FileChecksum: SHA1: 7415bac059b94aee1821b1a14360693e9624812e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/facebook-f.svg
SPDXID: SPDXRef-aea85625c16d57a77e6e88bd09eeff79
FileChecksum: SHA1: a3d24c28fb6f0456fa06e72a2a904dba7504b5ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/facebook-messenger.svg
SPDXID: SPDXRef-237d2b46e0cc367f612d2bf5aaf34dff
FileChecksum: SHA1: b1e78a20dfceadf40815087fa16962d9f9d86095
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/facebook.svg
SPDXID: SPDXRef-3c6ad048f370c91fce263c4ac6fa23f9
FileChecksum: SHA1: 8c588cef2029b3ebf6744bf40b669c193be59be3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fantasy-flight-games.svg
SPDXID: SPDXRef-09a35022036bda427a126b9c75c5f814
FileChecksum: SHA1: af2b71deca927bca607215cd413443df9a520d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fedex.svg
SPDXID: SPDXRef-ab373255aaba56914c95dad2b11f5c15
FileChecksum: SHA1: 9884e2b1b35242b8a66218183de2efc5f493a5c3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fedora.svg
SPDXID: SPDXRef-b9a5f45930ed4754d693a1c981faba39
FileChecksum: SHA1: e13f9caec47b2f215b046a14cae2e8952af8ee63
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/figma.svg
SPDXID: SPDXRef-f3f9b1ad34333650272cd1634ae7c64d
FileChecksum: SHA1: e1b5754416bf9f11c15538be9097a87ccbc56609
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/firefox-browser.svg
SPDXID: SPDXRef-86ab405c883a6aa29be73f8d3e49ec5a
FileChecksum: SHA1: 250a3b9c8b73bfd17003dcefb57e29223233bfa8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/firefox.svg
SPDXID: SPDXRef-2efff9aac1daf057a37e78d2db9dd451
FileChecksum: SHA1: 5bc4e1858404864e8ac7bb306ca1e7ad93ef5f75
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/first-order-alt.svg
SPDXID: SPDXRef-4eeacd0f1ebef207cb8ba531d76ab72a
FileChecksum: SHA1: 37a982335017fe95f9c4dffe9e02e0126d54e866
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/first-order.svg
SPDXID: SPDXRef-c7130c5819d9d26198e584c2c3d13bba
FileChecksum: SHA1: 9cac8a9189923b0ee6763c1b575155d0fdb3d94d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/firstdraft.svg
SPDXID: SPDXRef-1b9ac09b57a5c2e4a8832a9cb6c85654
FileChecksum: SHA1: fa32f314b232505b77751b52a7d1d121c88b1f04
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/flickr.svg
SPDXID: SPDXRef-4b6e5deccbbf1c1fc6112ff3d722e7a1
FileChecksum: SHA1: cbfe6966376d790aaabeadc4cf389f55bf5c45ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/flipboard.svg
SPDXID: SPDXRef-8c2f2040bfd72a5aeb5b44ea278dab42
FileChecksum: SHA1: ac5fbee66d1d12b6882f274a0a27f265e4b277f3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fly.svg
SPDXID: SPDXRef-211d2233e4ad2870ce1fe82a1c401a0d
FileChecksum: SHA1: 84cfb724f7ae2a5e23485d65a7e8efb265d0b6a0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/font-awesome.svg
SPDXID: SPDXRef-ee3a247d171b984b9df778162c401cee
FileChecksum: SHA1: 93efd9fd7197655ace8e1b33dcae29c30eb2a583
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fonticons-fi.svg
SPDXID: SPDXRef-25426ceacd6ea82a86de3025c1ef4378
FileChecksum: SHA1: 809926a9c438fd2ef2df4ac21095d96d8ca80006
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fonticons.svg
SPDXID: SPDXRef-5b87e4929edfb7313b8a60475f7f7099
FileChecksum: SHA1: 15fd18aa77d010a8615299176c89f5a6c6d56554
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fort-awesome-alt.svg
SPDXID: SPDXRef-d61337e2a14ea63e0184131a1a121671
FileChecksum: SHA1: 7f1aca0cd7216c0a99632a7164b9e5fefeb2532b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fort-awesome.svg
SPDXID: SPDXRef-2e5b1e1cf89f03557625a9c45970979e
FileChecksum: SHA1: 1f9803d71ba7f0c354c33ee384691298a3a68f1d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/forumbee.svg
SPDXID: SPDXRef-c89f8603df6cb055613d0bc4084f2e33
FileChecksum: SHA1: c6e079e51af464831cdfcd3f7e9e0837e4b0d87a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/foursquare.svg
SPDXID: SPDXRef-0433162f2ffab17595d4f252db952e83
FileChecksum: SHA1: fba27fad51e84681cbb1d0320891e931fd1ab780
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/free-code-camp.svg
SPDXID: SPDXRef-b8e21136e184efa2e1f5063333d6fc03
FileChecksum: SHA1: b5fe998f2e0032f17b324f87858fc3d5dfec3662
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/freebsd.svg
SPDXID: SPDXRef-76be3e1849d100fbb2c7e926ccc07807
FileChecksum: SHA1: 8a8b1408b43d77f0d85eaf508ee154c288595f58
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/fulcrum.svg
SPDXID: SPDXRef-0dea54b0f081d5e744641c2ceb218ea8
FileChecksum: SHA1: 61b76942ff6ed30f7d818b07c246606743ffa747
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/galactic-republic.svg
SPDXID: SPDXRef-9894ec9be72a71cfde74e264ba4df752
FileChecksum: SHA1: db659b30affa03c0c43d7673c84f70987c99aeb1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/galactic-senate.svg
SPDXID: SPDXRef-b2f016c4026f3e71cc6925000846c556
FileChecksum: SHA1: 721c2aa705ea3c9c164f7b3209503f85d826495e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/get-pocket.svg
SPDXID: SPDXRef-d3a428303c7a54997eb16db3a2a63353
FileChecksum: SHA1: 0bc0c50f872c571c9a1fc1f1a2cc25b03860b595
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gg-circle.svg
SPDXID: SPDXRef-931951949c1553a2aacafdf5bd7a7cd1
FileChecksum: SHA1: 84b4b5af649e37686aea2e951f414b7e55a7e096
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gg.svg
SPDXID: SPDXRef-a1ed36ff70801ad5fe6c055489cfff56
FileChecksum: SHA1: 6e769f87d48bd8610f6ac886dc2d79e62e5aff56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/git-alt.svg
SPDXID: SPDXRef-979e5ce7aa2a403560e595cda846b5ba
FileChecksum: SHA1: 37530d2171fac970d3dd0b18b63334a9af173f5e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/git.svg
SPDXID: SPDXRef-d3d4ce5449d01d6336f5d2c6e1861807
FileChecksum: SHA1: 1f5f5613bd9559d81138d2033fb4c0645b2c587e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/github-alt.svg
SPDXID: SPDXRef-99a48e9a36fbc89e6a5b373f559ee98c
FileChecksum: SHA1: 7dc09b623b5e098e4950a138cd039bb74ccb4f3d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/github.svg
SPDXID: SPDXRef-c4473cf992211cd8bb658ca911f89aed
FileChecksum: SHA1: 32976ac42d287c25c99cbdb910cea2688b724c58
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gitkraken.svg
SPDXID: SPDXRef-5e372aa0d6a0f32cc8ea3f055eed2dfa
FileChecksum: SHA1: 67e23f553c32aa82355346d7117918710f7bbc7b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gitlab.svg
SPDXID: SPDXRef-c6d516b1815dfe5bf1c6b32b366280be
FileChecksum: SHA1: 15bc3cf1f47096042983ba99973646e8d46f4218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gitter.svg
SPDXID: SPDXRef-91466ffb6b2bc8aeeb3c21858da2e25a
FileChecksum: SHA1: dd6cf4f1799f33918419e171c4893cb2cea8b1e7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/glide-g.svg
SPDXID: SPDXRef-9034ec22339ed7e9cebadf6f2ee14b01
FileChecksum: SHA1: 979eb0c72c6b2bf110a835e8660c7a3e39ada219
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/glide.svg
SPDXID: SPDXRef-06dcd6bc9b2d06f384fbd62f0de8067c
FileChecksum: SHA1: 3dddb10b350519780f40a9ef4a594e6f2f84d5ea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gofore.svg
SPDXID: SPDXRef-8aef5af174bfc87dea9a4b23fc601b9d
FileChecksum: SHA1: d6ae0f8b7323f1f64e82c4c560518b1d2cdf9c29
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/golang.svg
SPDXID: SPDXRef-a2fdd9f0d7eff1f1b618b2ab006d56f5
FileChecksum: SHA1: 11b779cce6c209a3fbd85ab51a24548beb8619e2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/goodreads-g.svg
SPDXID: SPDXRef-a3995b7b53a061f37d7318758a780dc2
FileChecksum: SHA1: e132f6241b7dbeaf01367f943eabc30c8f7c4b56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/goodreads.svg
SPDXID: SPDXRef-5b647b5feae23b56730e670165154db5
FileChecksum: SHA1: db1caf826286491aadbbe9a00df8dbebe8a847f7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/google-drive.svg
SPDXID: SPDXRef-13e2f9c12a29d5fa43a3e971e88ed7a3
FileChecksum: SHA1: 42c50dfa12d68b4c1cbd50177455764d9bc836c3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/google-pay.svg
SPDXID: SPDXRef-4d2ea3eace195927367ba6afacdb2908
FileChecksum: SHA1: 88029dd96fb27eedb9b735974021d53d7048e5f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/google-play.svg
SPDXID: SPDXRef-cb057a436c1dd968de03f4d8960e9e07
FileChecksum: SHA1: f57b27e818f3cd3a3019937530cd2474c00dea7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/google-plus-g.svg
SPDXID: SPDXRef-46b9685a777e98783abd9df040564596
FileChecksum: SHA1: b0e1c47fa1869f54ac1bc6f3ffeefa7a644df3e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/google-plus.svg
SPDXID: SPDXRef-70d05f036906880bc0edb40b8d8ff760
FileChecksum: SHA1: 4b0ad7aaec8e1a5a42f7c9cf590cf05d276156aa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/google-wallet.svg
SPDXID: SPDXRef-1b75e70043ab654d8950f0d45bdaf32d
FileChecksum: SHA1: cd0ac58b77ba9a844168e08433f46c716d49554c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/google.svg
SPDXID: SPDXRef-5c8bb22eab7cb1b06ef55e95443f3aac
FileChecksum: SHA1: db5cc5db986fa62eb70897858b5b9e8cf9079383
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gratipay.svg
SPDXID: SPDXRef-815b9beaee8b51e1c2a25db60d9e6b75
FileChecksum: SHA1: e6a984ba02f1668a88decb6de5dde28180a4a0b9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/grav.svg
SPDXID: SPDXRef-0305c6926a90006bb22bdb2c46513a52
FileChecksum: SHA1: ff1ab168372e67fb597374fb93b855ca724f34d6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gripfire.svg
SPDXID: SPDXRef-263771165727923869dfe2838ba7cce8
FileChecksum: SHA1: 445a3c653571b3fabdc0f3e4514ec0be00c2afd3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/grunt.svg
SPDXID: SPDXRef-97431a75c27262b22c6f6cb32aacd014
FileChecksum: SHA1: 3441aacd99e65d1cc63d4be6b345dae07de5a622
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/guilded.svg
SPDXID: SPDXRef-ab4edd13fc10423e95228edac92298ad
FileChecksum: SHA1: 61bfe3d63b0bc1ec15f7e54d652a01d827868a24
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/gulp.svg
SPDXID: SPDXRef-208c92e29d97f3dc2931a90919674040
FileChecksum: SHA1: 1471daff387f7b584706f6407931fb4e0d9b8aeb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hacker-news.svg
SPDXID: SPDXRef-5fe62248456fe0783da5ca631c302397
FileChecksum: SHA1: 3b9890d84a13a6a456424fdf6d352ca172cdc055
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hackerrank.svg
SPDXID: SPDXRef-bdcb48e96b03de1c7fbc1a1c257daf29
FileChecksum: SHA1: f2fef19d2068941782659f95b6fbd597942b2500
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hashnode.svg
SPDXID: SPDXRef-1a7d2d966f026f695be568a5cd00cd7a
FileChecksum: SHA1: 9b2b32232d7b6b3556269e4d343a3c1176c57708
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hips.svg
SPDXID: SPDXRef-5b794164b0008c91ee5b5d7ad90daabf
FileChecksum: SHA1: d0f1683f0769146561fb626923d5b13a52b59ea0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hire-a-helper.svg
SPDXID: SPDXRef-70d6cacf27c3a8f20babd652c3f86587
FileChecksum: SHA1: 85c0efa4fe5e00dbdd4514040f416a4c2aa2522b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hive.svg
SPDXID: SPDXRef-898521cbd4a8f257248d3c5b39678181
FileChecksum: SHA1: d5670cebbad3f64062c413da44219a3208e0a16a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hooli.svg
SPDXID: SPDXRef-d74ee4b274f66739171ed32d1dcdbc16
FileChecksum: SHA1: b9c43154f680cb633b95161b01d3f899a6fd91ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hornbill.svg
SPDXID: SPDXRef-f54278aaaf3c5aec0c2e5f41a1b1512e
FileChecksum: SHA1: a6244e06df79395594de90e4ef656eff94fbf5ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hotjar.svg
SPDXID: SPDXRef-504facd6946f02c2312439ed94ca22d5
FileChecksum: SHA1: 4e7841f9151e57ff2c13f69567f7db747aaf206c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/houzz.svg
SPDXID: SPDXRef-c2e98db57c15201b9c4e99e36fad5b1d
FileChecksum: SHA1: 75c6f929a2552d0a1406667eaaad55d615bce987
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/html5.svg
SPDXID: SPDXRef-1d1cb172994a2c9ad8d1d0a4916e428f
FileChecksum: SHA1: cceafcdee5986ff6c3082adcab267b0794099967
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/hubspot.svg
SPDXID: SPDXRef-76452e36e9942e37bd51c93322fd4070
FileChecksum: SHA1: 58627c6b722faa6055d2d3aefb844126f596817e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ideal.svg
SPDXID: SPDXRef-f153ee6ee4cae5abcb6d1e1a584e6015
FileChecksum: SHA1: dc7e9a78ef9769b7978c99fd4bb776d9e04bdfb0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/imdb.svg
SPDXID: SPDXRef-f311b55fa798ac737eb80f52d554ea97
FileChecksum: SHA1: 34caf2b08262d0633caeb074fc1f7f884a50f893
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/instagram.svg
SPDXID: SPDXRef-fb95100e7e2268521a666554e6e47083
FileChecksum: SHA1: 436151ee266e3e2eb7e41923545ff951fe62e238
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/instalod.svg
SPDXID: SPDXRef-911a704477ccd2d2638a540fa10ac255
FileChecksum: SHA1: 3a52d6183b91112e20752f8e62d887a5423d8e6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/intercom.svg
SPDXID: SPDXRef-3a5183ebd43e81e2be274b5de51cbc09
FileChecksum: SHA1: 2bd4d96462fb08391fac7573227e83e027764d71
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/internet-explorer.svg
SPDXID: SPDXRef-ef428a3935c4607d20722b8de68255a6
FileChecksum: SHA1: 21c676cde888a03647e07ca950275bd2272f3a7a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/invision.svg
SPDXID: SPDXRef-65118fd357618cfb08e4d77943bc6d13
FileChecksum: SHA1: 0cd5a045828c342534edd5d9b0c6a15869f6b4b6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ioxhost.svg
SPDXID: SPDXRef-816e62705e431d27afd2aba4b463c36d
FileChecksum: SHA1: eeae73ba681454b76d1f0cdcbe36ae5dbf20922a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/itch-io.svg
SPDXID: SPDXRef-2c5a7fbaf3b59274b942084ef91d481e
FileChecksum: SHA1: 9d0e0fc4995ad44bb04f120b3fee11a819c84ee0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/itunes-note.svg
SPDXID: SPDXRef-cec09520da698190d709de548250038a
FileChecksum: SHA1: 9728323c074e969ce63c022a8b3f1a1f6165c031
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/itunes.svg
SPDXID: SPDXRef-79726cb3e67eac86de82d06a713f14af
FileChecksum: SHA1: d7ac768a681c7ee962dab1b185be6ba4cfc52571
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/java.svg
SPDXID: SPDXRef-b1b46a785929f20eaaf874e45e76027d
FileChecksum: SHA1: 07823e49f5f6e11e1eea875ab509ad9b4e7cf5af
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/jedi-order.svg
SPDXID: SPDXRef-2e15c5e7a451a34c8a132ee379e21abc
FileChecksum: SHA1: dcb8fbae581a63dcd2a4fa824ee73021d5c3bc58
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/jenkins.svg
SPDXID: SPDXRef-655d9bffac6c4fb82f3c75042456deb0
FileChecksum: SHA1: ca1a0330a17f63407303d4189a4bec57810a10a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/jira.svg
SPDXID: SPDXRef-0ddc9ec1a622d4c66606ea01c10d4f7b
FileChecksum: SHA1: 7b56a97e2d540d2a6d0a550d3a641c0b7901b91b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/joget.svg
SPDXID: SPDXRef-6e264626b4452488dea8d96c8963ccb9
FileChecksum: SHA1: 5d779cb0008ea4bc2c4aa4415b87475740a7a7ea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/joomla.svg
SPDXID: SPDXRef-321574c728da68be26f2e19163186f30
FileChecksum: SHA1: 52c0d8458561c3d3da9cf888e6e7dc3cae579541
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/js.svg
SPDXID: SPDXRef-5b660e10d658350464abf4e09a6949ee
FileChecksum: SHA1: 65692c8d00b52ea1a0858cd53cc12819cfd62e46
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/jsfiddle.svg
SPDXID: SPDXRef-d3e48a95d16480ebcacc1287f38833dd
FileChecksum: SHA1: 21870e34017b74d707a371554cf2cd5a55764255
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/kaggle.svg
SPDXID: SPDXRef-165e926c0631b89a002c46be850aefa1
FileChecksum: SHA1: 98ec8841d3013d16715ffe892f1563122e39c93f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/keybase.svg
SPDXID: SPDXRef-4be8e74a4825e746fd2b8fe0dbdcc54d
FileChecksum: SHA1: 296bf1991c8de2457553d67a20378d4a1e67d90c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/keycdn.svg
SPDXID: SPDXRef-59e2fb93ba05098bf4f2c10b45503c35
FileChecksum: SHA1: d4a499c7ddcf72e9b3dd235a8e2273ec896d034d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/kickstarter-k.svg
SPDXID: SPDXRef-4f959b2b911b8417ee626d52b4f7c65b
FileChecksum: SHA1: ade58ca71381224789b77abc3158aeb206736372
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/kickstarter.svg
SPDXID: SPDXRef-170e8415ecf1b9143b29a37339ccd344
FileChecksum: SHA1: ec5723d25c041f24aaaf6edfad824b2ba626c1dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/korvue.svg
SPDXID: SPDXRef-a938fa4f43388c89e1c70b25669aeb9e
FileChecksum: SHA1: f9538ade31b8572bc814bc1f4ab02bfa586fb70a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/laravel.svg
SPDXID: SPDXRef-0895d80b910e9871916bf99768825a11
FileChecksum: SHA1: 04ed5c1cc680b3cde395a4f12423c3bb24831a78
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/lastfm.svg
SPDXID: SPDXRef-2cadf126e15ec6bd70e6cd407f03aeb5
FileChecksum: SHA1: b3e4e233c6454737962e2e0b7e0bb253efc5a6cb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/leanpub.svg
SPDXID: SPDXRef-2ceb0cd4e162e56dc3dd96711c4f480a
FileChecksum: SHA1: 50a3bcc2c44fd0df1ecca646a4771822d4be113f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/less.svg
SPDXID: SPDXRef-838565b325ac24e383744225a66b252f
FileChecksum: SHA1: 6ed1a6bfa9be6e822e9bf92d1047246ed6a0df14
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/line.svg
SPDXID: SPDXRef-8ec505f9ff88cf18600a941e58db44b8
FileChecksum: SHA1: cd5150ddc5be183086f051620cdcbdd4e68460a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/linkedin-in.svg
SPDXID: SPDXRef-a480a05ac57656c98b05d4faca1a5d84
FileChecksum: SHA1: 5252750a99ee39558360271340e308594be69718
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/linkedin.svg
SPDXID: SPDXRef-76ebfcf3a5b2a9ae2721460a763b06eb
FileChecksum: SHA1: ce8ae497745af7b526575182620f40606deaf5f1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/linode.svg
SPDXID: SPDXRef-6ee3d307384517571efdb63ce15e8a37
FileChecksum: SHA1: 98180ba770aee33afc0e2dd982d7f72382f363a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/linux.svg
SPDXID: SPDXRef-a7e47ffa14bb17a106ddb217443b8499
FileChecksum: SHA1: f68bd9874ca8b5ba6b249d95b4b9d035b1ec184e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/lyft.svg
SPDXID: SPDXRef-0211985c9c9a1fc6a6fef9d88198ae48
FileChecksum: SHA1: cc62455a09fff9c4fe7357519b2113d0fccdfc26
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/magento.svg
SPDXID: SPDXRef-bcd9a950c557ee76a63d7fb7fee7befc
FileChecksum: SHA1: 1ec6730f1abdc1af36c82699e7845cd964770a78
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mailchimp.svg
SPDXID: SPDXRef-e632c21ba90d9509b724b8a7e93fbba5
FileChecksum: SHA1: f5e9a25b6dced4ff96d78de45d8140287457d8ac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mandalorian.svg
SPDXID: SPDXRef-e4ea77b36c157f1d591a7372f9892556
FileChecksum: SHA1: 9c56a5e7e760c51a0b2f29387e8eec86a40b3c5e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/markdown.svg
SPDXID: SPDXRef-119df149b9608c98e6acd979a46650ec
FileChecksum: SHA1: 16fddc670eef2c6b966617fe4518fb1db8237fee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mastodon.svg
SPDXID: SPDXRef-65292c3d6784d4638de7b0bbe4560390
FileChecksum: SHA1: 64abd2ced715a1d78efab83a8b8c1e8b9bb3665e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/maxcdn.svg
SPDXID: SPDXRef-19bd4cfa1705cd8603724240e9d356e7
FileChecksum: SHA1: f8f216706e273ce620442f96dd1470618d0a126a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mdb.svg
SPDXID: SPDXRef-ff6546590d059dc4ce7d83d4accecc96
FileChecksum: SHA1: d5a9597297960bf1125e1f953ded4b0ac3249393
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/medapps.svg
SPDXID: SPDXRef-81aa5141091871b8b03fa9c7cd7e5424
FileChecksum: SHA1: 2a6de671607579a943ca3f279195ab76003e2a81
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/medium.svg
SPDXID: SPDXRef-e3b17e21f250161c82e0e89c3cf618db
FileChecksum: SHA1: 33c95d3507b4a0bc549ef581131da36258ec9803
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/medrt.svg
SPDXID: SPDXRef-7f49f56f91d158cdba58a8b9d268b3ef
FileChecksum: SHA1: feb14a98f1b42d9e870482f79ede79a312357d8e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/meetup.svg
SPDXID: SPDXRef-4c3636cf621ba19f1999218b34b94624
FileChecksum: SHA1: ed2285d262023d4a073ae04fc4afac624c4ab53c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/megaport.svg
SPDXID: SPDXRef-889907d1305ebecf1a011ad829520046
FileChecksum: SHA1: a525f54d7074124d7e583a373f0e8b1faa6d283d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mendeley.svg
SPDXID: SPDXRef-3b57d0074385aa58d402c85be82726b7
FileChecksum: SHA1: 0e9c4772d2dc4a19edd0d3a8a9c2bec84d93089b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/meta.svg
SPDXID: SPDXRef-320eddb2c57c7c1bb9eaa85a4723f4d5
FileChecksum: SHA1: 8ef11b49c124fd25c2c347226be9b5580b762837
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/microblog.svg
SPDXID: SPDXRef-7b20e860756d8c56a94e8bf9230371c1
FileChecksum: SHA1: 0b7080b4d7b51a1a63b4c08ce72958bd575cfe5d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/microsoft.svg
SPDXID: SPDXRef-d88a03615a80c5b36d8a125c5f92501d
FileChecksum: SHA1: a702d6f0078d7bc18744104f8f9490ab33321fd7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mix.svg
SPDXID: SPDXRef-073d7328168fc128af0fc57fed76790f
FileChecksum: SHA1: 5b8cef84ba4e740b18ae6e31893c6ab26057df41
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mixcloud.svg
SPDXID: SPDXRef-ee66251ae411cbb238692238ca43fc6c
FileChecksum: SHA1: 2387dc744a69753b7dbdd985194d638ef944bbf2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mixer.svg
SPDXID: SPDXRef-4fd40599829ae0521034b9ef31efe867
FileChecksum: SHA1: 16a7f0a41852c7d23421f46b2691151b3559dcef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/mizuni.svg
SPDXID: SPDXRef-22bca4d14c2f2dccfa3af71b685b045e
FileChecksum: SHA1: a3340691ff455929f5cffdfa7692025ef30b2b85
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/modx.svg
SPDXID: SPDXRef-460857955bc8717187db69b9847564a5
FileChecksum: SHA1: 2d3bb4a6b7f676f588a3c51a56ddcde1c2a8d120
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/monero.svg
SPDXID: SPDXRef-9f716e5d20a796a7a22fbd9fc4998545
FileChecksum: SHA1: 57a80acf44ddfe1b6560733134a6de81c281413c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/napster.svg
SPDXID: SPDXRef-ee0cb5ecd9a482a5f24ec5800a1e36cf
FileChecksum: SHA1: 6d2575e8f0040d7d70ea4ca66b7a2183376acc37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/neos.svg
SPDXID: SPDXRef-1a60586ff4dd51af931503d3c192b8ec
FileChecksum: SHA1: 40dde8ef34682bd7f9c6c0f9867c120580289c21
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/nfc-directional.svg
SPDXID: SPDXRef-48428281221b58c743d252cfc919e7a6
FileChecksum: SHA1: 02eba635054168d2c7333dc7dd2699ffc6615593
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/nfc-symbol.svg
SPDXID: SPDXRef-464f12a8c911bb9aecd8b328cc54e24a
FileChecksum: SHA1: d0c7871542cbbba2407d8b19156983308272c8ba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/nimblr.svg
SPDXID: SPDXRef-811535caedcd143d6e0189ec9254b737
FileChecksum: SHA1: 2f9cbc7eccb5064c0423c2b7e75ff5e272e4718c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/node-js.svg
SPDXID: SPDXRef-1d1b42e418301fc34aafb09019add1b1
FileChecksum: SHA1: 85007d04a8b325f9058f076a50f6fc3f5a42628d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/node.svg
SPDXID: SPDXRef-44e0ee024f443d9663ed8ac915246d8b
FileChecksum: SHA1: 3c540a4579c49e02539f8c4c98f8fb3655b901ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/npm.svg
SPDXID: SPDXRef-167f4b50c81f303d105de85408c0ec43
FileChecksum: SHA1: 23145051fca69304cb20d55e9946ea0ca83b992c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ns8.svg
SPDXID: SPDXRef-b543b28eaf0ee7df5803577e5d828140
FileChecksum: SHA1: 742d0b572626f1d19cb4861153a6f15a0838fdf3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/nutritionix.svg
SPDXID: SPDXRef-76022801813344611e94cb1da9a94dba
FileChecksum: SHA1: c083d4f57c1d4e4e7e1eabe334fcbd72a18d6cc7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/octopus-deploy.svg
SPDXID: SPDXRef-993bb89946591184806055da2a0687af
FileChecksum: SHA1: fa64b30754a2d093c5fde5bb920667fd81c77874
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/odnoklassniki.svg
SPDXID: SPDXRef-2475928c227cafd171a591b48d54c7d7
FileChecksum: SHA1: 9e5684f855136d0baa5b26e9fa9404ab155db240
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/odysee.svg
SPDXID: SPDXRef-2599e7c41d92baf0af84d88ad64a3748
FileChecksum: SHA1: 00d297fd6bc89c71f09c73e8cebdcf164f2e28a3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/old-republic.svg
SPDXID: SPDXRef-e95f4d6cb932d4fcd7eb743daf2f2661
FileChecksum: SHA1: 3451d94c16f6232c3e142426dd969a2b6610677d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/opencart.svg
SPDXID: SPDXRef-725de5468c11f2f5800266f46b24a687
FileChecksum: SHA1: 677f8aa229464ff2fa6639d30f85753a60d8cf81
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/openid.svg
SPDXID: SPDXRef-848877d83c672c4100957d3e0b5dc151
FileChecksum: SHA1: f4d74e46b03c03227bd90cb7027bc9d3b1f25493
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/opera.svg
SPDXID: SPDXRef-fee6047eb1a790e23004a051ee423841
FileChecksum: SHA1: 5a9faec9f1bf85b158eb10aa061603dc2fdecdfd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/optin-monster.svg
SPDXID: SPDXRef-d90bbe4e80cb561e9f9a26258fcdd887
FileChecksum: SHA1: ee7e13bbd9d32ab6867a8eccb084830017371e01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/orcid.svg
SPDXID: SPDXRef-5c984fabc32b2ac8b592ea25b19dfd19
FileChecksum: SHA1: b90dd6789c9a7fce5080b85ca8b6a113ef2ab0d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/osi.svg
SPDXID: SPDXRef-e36c84eec4ca89e82aa28e557456fe72
FileChecksum: SHA1: 750aaa218a8511e5bd8d832db5eb83247e62bd2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/padlet.svg
SPDXID: SPDXRef-aa5bb2b0d1f74b112ec6ca4ddd856330
FileChecksum: SHA1: 2abb3da6de2746daa3d1e0585f8337f934856c4f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/page4.svg
SPDXID: SPDXRef-02c1c62dc165f11836357c55fdc6de9f
FileChecksum: SHA1: d7d11c32b00ca7daf775a98a8704c3797ef66b5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pagelines.svg
SPDXID: SPDXRef-79ba3094ad90d0e8cbb4022abe621cb5
FileChecksum: SHA1: 490611ba0e44357881228f3e79106f1b77f1243b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/palfed.svg
SPDXID: SPDXRef-bbf7199668cb2f4c8780558aeca1cdb9
FileChecksum: SHA1: 935402fd9a98cc646076b4d8d3bdc1278574b4c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/patreon.svg
SPDXID: SPDXRef-7833811993bba250351aceb21c86206c
FileChecksum: SHA1: 1062c8fd992e7c3f9b1a528265f4cbd4a481c67e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/paypal.svg
SPDXID: SPDXRef-3ea53665882209c4d7a5da1d3bc8c227
FileChecksum: SHA1: 5bea347fcda7b1692655fb18d7eb149da42889a4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/perbyte.svg
SPDXID: SPDXRef-8c74d2302455e265eb3f2c0a8726081d
FileChecksum: SHA1: db3c8f2928f3d9a3bc4d0575824a7fbb5d707afa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/periscope.svg
SPDXID: SPDXRef-f5129221040e95a2ca5124eb37d0e999
FileChecksum: SHA1: 8f1cf41b2af6a2908898da50def20808840dac8a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/phabricator.svg
SPDXID: SPDXRef-2347a16e1220589b50925de266089d26
FileChecksum: SHA1: 452f2b2e43d37e783540588ed3ba6ff1af422009
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/phoenix-framework.svg
SPDXID: SPDXRef-7e73d096601fa32de192512a03b24b8f
FileChecksum: SHA1: c19c98d4da9557c8f90e84bab7420565059e55fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/phoenix-squadron.svg
SPDXID: SPDXRef-f9deab7cdb58d930de450536e626e5ce
FileChecksum: SHA1: b47613b1dbc03e25967a607ad8fd705ebd9dc938
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/php.svg
SPDXID: SPDXRef-4dd04495b38abc92e26e1f4701d05fe8
FileChecksum: SHA1: 70119acf3e6c95d16a826434608ced35bc865ef3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pied-piper-alt.svg
SPDXID: SPDXRef-03a229aca82776c782a4ea1871c4bfda
FileChecksum: SHA1: 0b328304d732157da7987dffcc00762b9ceba01c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pied-piper-hat.svg
SPDXID: SPDXRef-6dba26649ed0363ca898592a2b02d287
FileChecksum: SHA1: db28ea1d4321bd8a6b1e027c3405617502d6cae0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pied-piper-pp.svg
SPDXID: SPDXRef-86707c6d7807d1a749e94f81c9a7ae58
FileChecksum: SHA1: 5597f222899515b29e4414ddaf46bc9c82834f75
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pied-piper.svg
SPDXID: SPDXRef-23564088747c880394fbe6bdebc9d835
FileChecksum: SHA1: f5b05137d44d929549ffa67f29f69a83eabb0fed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pinterest-p.svg
SPDXID: SPDXRef-bcf92c37abbadbcf914085260e6dc359
FileChecksum: SHA1: 4cb0be9e7aa907754b9c31b28f89babcd70c001b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pinterest.svg
SPDXID: SPDXRef-3b353069a77a56d5160f8beb409e9456
FileChecksum: SHA1: e82344477635e03c1dfe21d86089f830823388ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pix.svg
SPDXID: SPDXRef-5be9df97ab60d9bda69d1dfc7123f9e4
FileChecksum: SHA1: 79b47a56094fc1ad38aa7aae50c377ee462d1c53
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/playstation.svg
SPDXID: SPDXRef-c840f877faec8f1aba377929fa654328
FileChecksum: SHA1: 70e917837b92106843dbcce33eca3cde81cc7e05
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/product-hunt.svg
SPDXID: SPDXRef-da224d79f7d802f2e3d8939ba47f6555
FileChecksum: SHA1: 494c52a3926927cfbea6c3f12c12c3d1941c3126
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/pushed.svg
SPDXID: SPDXRef-d183ba93f75f453ae36e33a86ef56227
FileChecksum: SHA1: 35c013514e5b5677e3486dc2c33efb5569b34eb6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/python.svg
SPDXID: SPDXRef-104aa02cef0eee3bbd256208fe3b2af3
FileChecksum: SHA1: d8cc3e1e490da644d4cad37d97758fb883f3f6ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/qq.svg
SPDXID: SPDXRef-f8be27f7be5fc320b492668da581c30e
FileChecksum: SHA1: d848b3166b0ac73eff8c2dc71d9b54006c728789
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/quinscape.svg
SPDXID: SPDXRef-f5fc1f17323a983b3adf3089a043f2c7
FileChecksum: SHA1: 690cc5a58f494fe7a7f7a644c596791d9a7c275c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/quora.svg
SPDXID: SPDXRef-2a2d38fd55548c7f6e0b6fc8000bef74
FileChecksum: SHA1: 5887e80b0356fe23c868291cebd192eb615b8c46
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/r-project.svg
SPDXID: SPDXRef-303ff42af7b67a9a6f006cd7f8f692b4
FileChecksum: SHA1: e9e7f3658b8510d503533211f4583e5856ca4fb2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/raspberry-pi.svg
SPDXID: SPDXRef-3d1999694152d655ae510d07bc65e68e
FileChecksum: SHA1: 304e8d9dbdbb8f86c44d06df1ead21e2629a7064
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ravelry.svg
SPDXID: SPDXRef-081df2d90525a2952146a41624ff186c
FileChecksum: SHA1: f2480dd9036b97fd4c121c0015a69961a7f0ecde
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/react.svg
SPDXID: SPDXRef-54519ac2fd2f1d146f7390ed568b7140
FileChecksum: SHA1: 4b828c0f5dd603d6799c1c17c8f5ba4a2950dec7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/reacteurope.svg
SPDXID: SPDXRef-ec6bbcf366e2c69f3d12abe311e1e8e9
FileChecksum: SHA1: 5859e865ccb33d80e81766ec02d0969b1dafa614
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/readme.svg
SPDXID: SPDXRef-1bde7b731c87a2d31c73f2b11d97b2b1
FileChecksum: SHA1: 5bdc5221be296179252779c1de73b0fbc120f2e2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/rebel.svg
SPDXID: SPDXRef-47243ee0bfe66f2919e7410b8d6b6b1a
FileChecksum: SHA1: 2831691673ebfa88a5f688fd8d8a8dd25a9ee566
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/red-river.svg
SPDXID: SPDXRef-ec88cc3814b8306262e0e06a903cc1e4
FileChecksum: SHA1: 3949cc978b8c7cb86a260623eb510ee1720e979b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/reddit-alien.svg
SPDXID: SPDXRef-5bce94c0731a936ffa5de4d820a975d2
FileChecksum: SHA1: d5cc1c56d0696bb3c1242891aab45711ec74448d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/reddit.svg
SPDXID: SPDXRef-87ca3c7216b459caaf0cb7b3b212f6f8
FileChecksum: SHA1: 8f8019b917f3dfb197765b1c088e2ccc416e6505
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/redhat.svg
SPDXID: SPDXRef-d15c40e693c0a60a18fb4437c7f0eeaf
FileChecksum: SHA1: 448fbd285fa06b110d5d8b28bb9665d83d020e38
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/renren.svg
SPDXID: SPDXRef-52e0f1e2caa26694e0251a474c755602
FileChecksum: SHA1: 449a9e4c98c149b3a6d114df9822595e1a682f35
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/replyd.svg
SPDXID: SPDXRef-837221251907ae744057060faa63d7d4
FileChecksum: SHA1: 60cc18d9275cf74203b52b743805e56025731c09
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/researchgate.svg
SPDXID: SPDXRef-95d6b297e56cf36dd9e09011105e11c6
FileChecksum: SHA1: 264343505262f492eaf5e753fa15fd9fedeeb97e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/resolving.svg
SPDXID: SPDXRef-7f0bfc1e4840eef8d11a197b47cbc5cd
FileChecksum: SHA1: 6ce92f796f2095f2b607ea03141388cfcfc479b7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/rev.svg
SPDXID: SPDXRef-d767412a1879965637bf94c2bcda0ae4
FileChecksum: SHA1: afae2a6a0abd2fddac88925e3b5adbfb575c7cae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/rocketchat.svg
SPDXID: SPDXRef-efb3ef618aa8cec759b69df9fc634567
FileChecksum: SHA1: 2b4a4c5279ab0305ba131a7104ae6813e8f265a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/rockrms.svg
SPDXID: SPDXRef-4f214937005cc35ce866192b74838bab
FileChecksum: SHA1: 77d091a07b0dc4ddf75983216e996272ab58a705
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/rust.svg
SPDXID: SPDXRef-f642e27ba16f1358bfad60340d8849a3
FileChecksum: SHA1: 1d44fbf6a4c1a3905e02dc904c15f1732cda534e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/safari.svg
SPDXID: SPDXRef-801c59b3bbab6a41edefdc21707945ab
FileChecksum: SHA1: c5183ad9d45058dba9de27eaa016a2afeeacaf3e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/salesforce.svg
SPDXID: SPDXRef-31d9bf58fe9dffded1bbc6cd9a952390
FileChecksum: SHA1: dbe1624070248be0c51dcfbbc60d92fcccc36af9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sass.svg
SPDXID: SPDXRef-53833f7bc41d64f127f612d54b80f17b
FileChecksum: SHA1: 37f2b398966fb8b5b9965936bea37a92250e2ef7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/schlix.svg
SPDXID: SPDXRef-6ad6713cf0beed834921b9ffeed00d0d
FileChecksum: SHA1: 7c1c90591d618012aa611585eeb7a9c4d8e95b4d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/screenpal.svg
SPDXID: SPDXRef-231e6992d1072c8754056e8264572cf5
FileChecksum: SHA1: 7526dab536d95363a8997d1386179805f5206bb6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/scribd.svg
SPDXID: SPDXRef-5bb2c1cb7895b92c7b34de1dcd2dd496
FileChecksum: SHA1: 62f38a26e695d66c73e29463de3bd7ae293f7d5c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/searchengin.svg
SPDXID: SPDXRef-c2a09386db92e888f1dd550437d4df58
FileChecksum: SHA1: 0119111e63c6092ec86816779c0153a7233fb6ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sellcast.svg
SPDXID: SPDXRef-de6f9e0f7541e1282d3f589169532293
FileChecksum: SHA1: 4ab2c7616082f52627684a66b3af6aff02415d52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sellsy.svg
SPDXID: SPDXRef-b517e1d6bdae926d0193d3306f9a1a14
FileChecksum: SHA1: 1bf2bb1b2a4ee6ed422e097ccdde5d13bab07ca7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/servicestack.svg
SPDXID: SPDXRef-7f8eec46d201524cc2822c137dcacb5b
FileChecksum: SHA1: aa9cc3ccc8554502e28107f808d1ada874f83e54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/shirtsinbulk.svg
SPDXID: SPDXRef-155b8a7b958461381ca6fea86b24fa80
FileChecksum: SHA1: def3b11227af236c6cdd00ed77d3434054a2e9dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/shopify.svg
SPDXID: SPDXRef-22ac49c9b344fb4e0a0b7d15aaf78eb5
FileChecksum: SHA1: 0343bade2fd66832d5e0cf37a0faf7697dedf48f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/shopware.svg
SPDXID: SPDXRef-22c84a7b211062c57cd9911b470b8ff2
FileChecksum: SHA1: 6f2e7677c8ad0e9efdd7c7b91ee28cc1f29f601b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/simplybuilt.svg
SPDXID: SPDXRef-9c8101f3a09d2251a7c8bd5113fb4e2f
FileChecksum: SHA1: 555f06c881f79f6cd65d37b6870acc4cd9198f7c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sistrix.svg
SPDXID: SPDXRef-ba4329a5620b77c7b9c661006a9156f3
FileChecksum: SHA1: 95653a120bbdb822234f2d3de5859ef5ff8f6939
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sith.svg
SPDXID: SPDXRef-9771b3002f142cb8bc07220b40582198
FileChecksum: SHA1: 87eb1ba8ab04de283a4d46d59af3494ef4906ded
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sitrox.svg
SPDXID: SPDXRef-5e449d8c204a831d41158fd1c6638af9
FileChecksum: SHA1: 6099fd15519c34a1e29a98d6800438d4f25f9079
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sketch.svg
SPDXID: SPDXRef-d850ac82ef5051531850434e2e843350
FileChecksum: SHA1: 2df91abd20da512c08d4d2554bebb58ca9e0f96a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/skyatlas.svg
SPDXID: SPDXRef-c2abda8fe15e1d7429c737c92b716057
FileChecksum: SHA1: 7d3ef09478a934a0a2437d534438553a2777c616
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/skype.svg
SPDXID: SPDXRef-ace7292b02452a421a378038ee887aa1
FileChecksum: SHA1: 862f936319342cf45e1d94c9096aede0d9c6c590
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/slack.svg
SPDXID: SPDXRef-13f54b8703ef4c53046974e755ee7550
FileChecksum: SHA1: fd019ff6c9cc5bc01ac022d7dbb70dd7f6d58fd9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/slideshare.svg
SPDXID: SPDXRef-18e69e18db1c56368127cccb1ce81c67
FileChecksum: SHA1: f2adfed66edf3824cabb7b53fbd1f63e00d7a16c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/snapchat.svg
SPDXID: SPDXRef-f4715d5f16b652aceb2a5d96b0536fb5
FileChecksum: SHA1: fbcdb7119cdd8ee769b5b3a6f8bd376d7c9ac753
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/soundcloud.svg
SPDXID: SPDXRef-1779bd94b6165d5a37d7dac2bb1b967f
FileChecksum: SHA1: 46c96124772d06687774f32d1e104c14b5330dd6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sourcetree.svg
SPDXID: SPDXRef-9938d90912659a7adc94fcb02cb5ce40
FileChecksum: SHA1: 208498e0301c9a676049994130e740025a09e94e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/space-awesome.svg
SPDXID: SPDXRef-bd57714b54f2db96ca44977f0bef33a1
FileChecksum: SHA1: 08aa91c5cbd294bca8609d29c5acb426518231a4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/speakap.svg
SPDXID: SPDXRef-3b7f40f437598e34bb62bcc2f1d7cd32
FileChecksum: SHA1: 197d5aef70a5f7b3f7260f05038d158288d3bb28
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/speaker-deck.svg
SPDXID: SPDXRef-48d709d0a523734ebff03a5fbf1eff13
FileChecksum: SHA1: 90c49cc98906a11fc10b91dda3ddf659661b1acc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/spotify.svg
SPDXID: SPDXRef-253cdb2191d6b57e5e3f4c3d86197fe7
FileChecksum: SHA1: 42a0cd1017e12c1b8dfda1bf1d58837f1944a265
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-behance.svg
SPDXID: SPDXRef-b81f5363a7158f80006d2cc8abd0fc27
FileChecksum: SHA1: bb2cfe460158c97a8c6342e11901bed99b86dc5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-dribbble.svg
SPDXID: SPDXRef-091f775243160c3b1656c5ef5ba44137
FileChecksum: SHA1: 25765e2948971622d42f1efa955247ec08a4b0ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-facebook.svg
SPDXID: SPDXRef-87737f78aba2b2f80c2e51ff82d877f6
FileChecksum: SHA1: e7f7d3c41c2ddea59927e16a43d44356c1881db9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-font-awesome-stroke.svg
SPDXID: SPDXRef-6111fb05cf33658d235ad7a4b561c3c8
FileChecksum: SHA1: b95f45a8ce0dc44c8f44acb602b95e843f1f2690
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-font-awesome.svg
SPDXID: SPDXRef-f3b7931afa1fb5e8e85defd64de7e3ec
FileChecksum: SHA1: c908c1b5b23d48e125195f0bb717e99ce65a8e05
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-git.svg
SPDXID: SPDXRef-b931a34a8d580f6f0954768668d385d1
FileChecksum: SHA1: 6b511071bd4858b3d9a23c6988d34f61c441c1de
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-github.svg
SPDXID: SPDXRef-3d242f03fa03cb35d54d9ce2835d5422
FileChecksum: SHA1: 2ce5fda1f7a2fab8ab084244f4550cf0c48a9902
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-gitlab.svg
SPDXID: SPDXRef-e6272a1941600f6c96d327bca62f3f7a
FileChecksum: SHA1: bb1a9b6e6918220b99054f29783ffbe2d9a8da98
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-google-plus.svg
SPDXID: SPDXRef-81fadf080cd1ec9a6903701f52dbd0f0
FileChecksum: SHA1: b099e2a81d399047872ada4ac361605d64297bf8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-hacker-news.svg
SPDXID: SPDXRef-f3e06e5903bbc3c51d8a438eb00d50b2
FileChecksum: SHA1: 5686eb203b372d7b6cd14c9a8a355ed174453801
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-instagram.svg
SPDXID: SPDXRef-7357b0c7fc55aa2b4cd8b71ecd61fe20
FileChecksum: SHA1: eb9c8e090690f8fae60c205789e8537558dc299d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-js.svg
SPDXID: SPDXRef-8421c065ff7dd783808d9836e8ddf479
FileChecksum: SHA1: 5fb2ff0703a6fc9a924d11e4750ea06c7b6f5b9e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-lastfm.svg
SPDXID: SPDXRef-f350b46642cb62a8c94ac304bf156906
FileChecksum: SHA1: fe7f9083dffafb65929a0835d7d0a4b735ca6d4e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-odnoklassniki.svg
SPDXID: SPDXRef-8d1eaaf71fa7ebc1dda07c6358648900
FileChecksum: SHA1: 3ce55bbe93268bff7b61733f61673758428180da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-pied-piper.svg
SPDXID: SPDXRef-fdf9415643070c572cd8d9d04f20297c
FileChecksum: SHA1: af90fd7fe5aefad20569cbe5f29b670f103ee95e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-pinterest.svg
SPDXID: SPDXRef-81e98d94cf1037a12a95c266ebec043e
FileChecksum: SHA1: d58fbb2b72a56b38194cc3391b714ee239b95d3d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-reddit.svg
SPDXID: SPDXRef-98cf7bdfc4272999535425c5418c22bf
FileChecksum: SHA1: db21eb0b41e6eb0321e3ce667ae4209c48668cfd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-snapchat.svg
SPDXID: SPDXRef-fddfbd6314c9c796730837abfc5e5694
FileChecksum: SHA1: 9cff08562b7c586e3d708b11686e46e12effc85c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-steam.svg
SPDXID: SPDXRef-0abb8a43ef0d88d75f5974baa8a217dc
FileChecksum: SHA1: dfe666ce66222f0a7516d0bc3a0477e2b699e670
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-tumblr.svg
SPDXID: SPDXRef-798725924d62954237f205c858a88a25
FileChecksum: SHA1: 68e14e24ee38cfa167e2e92c53e289b2ba808988
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-twitter.svg
SPDXID: SPDXRef-18051f42ab284ad34cf8ac176d51da3c
FileChecksum: SHA1: 280655c65b7ef9728cfeb19fa4027ecb4d96b5db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-viadeo.svg
SPDXID: SPDXRef-7d9abf0d83246e43f523136b6006f784
FileChecksum: SHA1: 3c922999c7da31b2fb60a7e2247124e7307fd849
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-vimeo.svg
SPDXID: SPDXRef-63b469da81fbae9fb3d311c2f5ddcb01
FileChecksum: SHA1: 3153ad7379ea6ff62569c583bad45b8a4944d596
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-whatsapp.svg
SPDXID: SPDXRef-a828e42665cc1c25fa24fae7241bbcd1
FileChecksum: SHA1: ccf86c527077edcbfed1feafe8da5b70eb76e523
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-xing.svg
SPDXID: SPDXRef-75c99707982da7575422ad2123f7ba75
FileChecksum: SHA1: bff967cfb6273757e4e681d093f0e5b351089ada
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/square-youtube.svg
SPDXID: SPDXRef-a92282ad7d97659710343931c104bb17
FileChecksum: SHA1: 579571dcdad6a968a5d37e1254b6fc7b500df70f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/squarespace.svg
SPDXID: SPDXRef-36c41d7ca4fe69fb5c7a9ef32929bbd2
FileChecksum: SHA1: 1a8fe5868b1d4a861d5d095173674cfd0267d71b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stack-exchange.svg
SPDXID: SPDXRef-0c51593960638cb1ed30d6a0335dafcd
FileChecksum: SHA1: 2ae808f1097f93325db794361f985b70f25e6535
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stack-overflow.svg
SPDXID: SPDXRef-da94663991b41fc0224f7fbfae8ad045
FileChecksum: SHA1: 6469dd08f22195f2c47db8fbc190d76b0e987d80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stackpath.svg
SPDXID: SPDXRef-d263a18b6fb9f2d0cc8a8d87d7e09569
FileChecksum: SHA1: 73eb100519e4432d93f85385bd92adf35a355bf3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/staylinked.svg
SPDXID: SPDXRef-982b5d3b5d3e2e042268360bdc8187ae
FileChecksum: SHA1: 2d47c2f27e5e301fd43f9cfc552d3f64ff9aff78
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/steam-symbol.svg
SPDXID: SPDXRef-ce620c4f2aa57f07ccfd2dfb21dea2cd
FileChecksum: SHA1: 24ebb795b7faf2b1b32b1ddac58674ff1a80cd29
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/steam.svg
SPDXID: SPDXRef-dd3070e72fd6942f92098ef4baf132b7
FileChecksum: SHA1: 8a5a151879895a089b3a9793bb2e8af8616c7033
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/sticker-mule.svg
SPDXID: SPDXRef-e17daf30340b79287dc73a089ded267b
FileChecksum: SHA1: 0d40ef986d3b07a3e776f72d7d131046b49649be
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/strava.svg
SPDXID: SPDXRef-abd78fbeac8961c9e27bd0373759f418
FileChecksum: SHA1: 570a4cbf246949503700b902b6e23fc9bf40d09e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stripe-s.svg
SPDXID: SPDXRef-5de5ca4c3f852c7fd944bb5ac0477511
FileChecksum: SHA1: 405479d5630c2a6f9428b43fc0ecb07f8bb96ef4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stripe.svg
SPDXID: SPDXRef-0d685cb52a6e43995139076cb6e8978d
FileChecksum: SHA1: 1419ac6f5c072e75d61077f91e683dff7f353dad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stubber.svg
SPDXID: SPDXRef-dcc497492741cb39797d3826774447ee
FileChecksum: SHA1: f407b007e1f95d8d3ece23485a6b0570aa62a012
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/studiovinari.svg
SPDXID: SPDXRef-9814061cfaced6afa522e5d7c4d15e76
FileChecksum: SHA1: 52a754f961ea82aed2fb36805185548ddc71c82f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stumbleupon-circle.svg
SPDXID: SPDXRef-8b89a45951624b5adb80265eeb830b5d
FileChecksum: SHA1: 4e72674be59c8e1df25da63a55452eeffc294ddc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/stumbleupon.svg
SPDXID: SPDXRef-4bfa43f93c8273b11fbbfbb38ca72881
FileChecksum: SHA1: e782b03bbe37b0e87c0eb796cd263f04bfc0302a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/superpowers.svg
SPDXID: SPDXRef-13a448f357c736a3fb88b5f86931da24
FileChecksum: SHA1: 0587b1b6c22e2ea6e7f882fd900b7011efde665f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/supple.svg
SPDXID: SPDXRef-d85f032529faa02038d173220e57e308
FileChecksum: SHA1: df6d6f021d9c68e18a1adc00b9111f86eb189a82
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/suse.svg
SPDXID: SPDXRef-954c491e8b382f63791e545f26fdb7f4
FileChecksum: SHA1: 7118c6d9e53350cf6ca15ee813db9be4b422383c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/swift.svg
SPDXID: SPDXRef-e1f978b686978a7fb82e111d8903c8a6
FileChecksum: SHA1: c976f94b3959ac4630f9dbab91a8eafe47b7a7b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/symfony.svg
SPDXID: SPDXRef-ec9601ebc942aecbf145d94b0bd8299c
FileChecksum: SHA1: 36d39f3f397a25a9c7edb60bdf283fc16da43ff6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/teamspeak.svg
SPDXID: SPDXRef-1a8befbf983e55d4bae1b525d74b3094
FileChecksum: SHA1: 7b7492a2a2a2de5fe088eb46e800a6a5b167fdb1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/telegram.svg
SPDXID: SPDXRef-e86207f8c5c45ada9c16272e455d9160
FileChecksum: SHA1: 22373559cb10a610d133ad0d474d60a30f47eb30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/tencent-weibo.svg
SPDXID: SPDXRef-e716471b2108689d1ba26e52bdddea7f
FileChecksum: SHA1: db77ccb40aaa1f84bf7e3cdf8365e10816df9d37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/the-red-yeti.svg
SPDXID: SPDXRef-298b6ea9ba53a842970fedb6b224a311
FileChecksum: SHA1: 77211507ccd41c48a397ea2c1bf0e84c42cc20c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/themeco.svg
SPDXID: SPDXRef-768a79f9eb32bc5131232ca5f7452f43
FileChecksum: SHA1: c83338e44add9d28307795fce6d3e5362d4522de
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/themeisle.svg
SPDXID: SPDXRef-1c16d936da4566fd04f5d6469d3123e7
FileChecksum: SHA1: 448a2ac326641dcbc63cba3094a911eb1434d716
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/think-peaks.svg
SPDXID: SPDXRef-337afac6f2f1c51220bc1fc2b7259dde
FileChecksum: SHA1: c616c748eb2701cf12cf791f5ebbb8fd9a4a8993
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/tiktok.svg
SPDXID: SPDXRef-ddc6cd5b9c610d5f7fe75cbdc4a50d12
FileChecksum: SHA1: 3cb6aa4a34a17c5c506baa6faf19657d5e11657a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/trade-federation.svg
SPDXID: SPDXRef-9cda8dd85c1c22602fcc2108a8ec9318
FileChecksum: SHA1: deca3f17e1835c79f522cc1501d2ce2a54115790
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/trello.svg
SPDXID: SPDXRef-fa9a7a90b7202f70888af08e5dd24406
FileChecksum: SHA1: 8f9cf99e370f01c99e869ea186b1f67b93491683
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/tumblr.svg
SPDXID: SPDXRef-d3f4de089fc22eca69e02dea797013ec
FileChecksum: SHA1: 0c95f7c31ce67209b599452c6516c28e378f0087
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/twitch.svg
SPDXID: SPDXRef-a362045f634d1e742a692fd70f3442c4
FileChecksum: SHA1: 21636b01c1bd5386455d63cfb19ee7eb7f388256
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/twitter.svg
SPDXID: SPDXRef-da49107be250b74cf51ad04c25583a85
FileChecksum: SHA1: 3cb4c5c7fef689094a211f6dce0b8c2b7e843546
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/typo3.svg
SPDXID: SPDXRef-a740355db543f50ecdb0d3653c6ba203
FileChecksum: SHA1: 1e9c06ef1e22cec899a4ca0cf8bab01e328f5305
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/uber.svg
SPDXID: SPDXRef-3a08facc40466d907effc248e7d9f1c9
FileChecksum: SHA1: 81b5936178bf576ce20d634448abb58fe5900230
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ubuntu.svg
SPDXID: SPDXRef-4e97dd590bcfa5044cbde22259a56615
FileChecksum: SHA1: 91d5a0089325f9c9e651f14decab40564510055a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/uikit.svg
SPDXID: SPDXRef-14fac1d4534c4e6aefb9c7252fa4e1aa
FileChecksum: SHA1: 353b8197e9641edb9f7343b7831788404683b47c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/umbraco.svg
SPDXID: SPDXRef-f27cd95bddce019620cbad1ca1487f8a
FileChecksum: SHA1: ca76f6a95772ed29897a0768d1ff24df997acbec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/uncharted.svg
SPDXID: SPDXRef-a9d743f887422ab47b0aa98fecdff426
FileChecksum: SHA1: 7e1256fdc97cae9eab019c9f783cb36de5de7e5b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/uniregistry.svg
SPDXID: SPDXRef-17a136d661ff62885cefa7b290352d18
FileChecksum: SHA1: 10d8f28684b7c849205383955afef7b89b3b3126
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/unity.svg
SPDXID: SPDXRef-9d3655962eb6d8b3fce27dc1b279cefb
FileChecksum: SHA1: 5db38283de24f0f1d31f2091abea81bb6b9092c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/unsplash.svg
SPDXID: SPDXRef-3c11dfc466c273d68da19eeeee05b33c
FileChecksum: SHA1: ae67730f12a06f8e1db3b74067c1ddc120943e7d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/untappd.svg
SPDXID: SPDXRef-b98e79a38632d67bd24cb6d2568aa829
FileChecksum: SHA1: 37cb8cbf783e4e92445fcdbaf7a2020c4eaba5f1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ups.svg
SPDXID: SPDXRef-3a2d6846b970d81f39fe0d1dd181e545
FileChecksum: SHA1: efcf6d6567c4dac163e5f7f769c7100bb8a7e87d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/usb.svg
SPDXID: SPDXRef-5681f24d5befd844ddc738058ce4f5b1
FileChecksum: SHA1: 61a601ade1ca10c3eaedd03c7b9b38aef81cf42c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/usps.svg
SPDXID: SPDXRef-b57737d66c249201d6630c653ffdd09b
FileChecksum: SHA1: 3055d1831e71dc44984ef14b54728416a7d2322c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/ussunnah.svg
SPDXID: SPDXRef-96bf31ff296a34558dddb51b17b920f1
FileChecksum: SHA1: c63d7206aa170feb74a0ad44c58b27477a9873fd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/vaadin.svg
SPDXID: SPDXRef-1794e28f4736ce38569f71f154244f06
FileChecksum: SHA1: 93a9cb03c781b088e52a13ad0d1b2b9ed64e6b6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/viacoin.svg
SPDXID: SPDXRef-0c681c15c6bb0b8b1a9bc1d24d0cfa7f
FileChecksum: SHA1: 4899f41baa26e3b23204efd3988961c7e2353483
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/viadeo.svg
SPDXID: SPDXRef-5bdb40d729e3d0773bfd6efd426dfaab
FileChecksum: SHA1: db6fd884fcf6f2d3b234c010a3f6f6400f4893c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/viber.svg
SPDXID: SPDXRef-c600ee92cee3b084cd5f07e8eb151d0b
FileChecksum: SHA1: 833847dada6adc5ed3d22fd55084b4d8fbdcdcd0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/vimeo-v.svg
SPDXID: SPDXRef-68c521d6e6f89d2955ec68da8db59ffd
FileChecksum: SHA1: ef0367ec53a51b26efe8ad161fe5941fbe4616a0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/vimeo.svg
SPDXID: SPDXRef-6eb9a3f81b44047a83d5e7e3ae3538c0
FileChecksum: SHA1: 61c38e6ac493e17a2cb350280b68223aaea3ee4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/vine.svg
SPDXID: SPDXRef-a922409c05cdee892b76d0391efc8d92
FileChecksum: SHA1: b05fb48151c878348debca6d4d2c8e7418ddce8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/vk.svg
SPDXID: SPDXRef-1b18ef6b84010f2eeac1d5a3e6a9f7f2
FileChecksum: SHA1: 0e45eb8ff6e1609314bd4b42a909eeb4d8470b01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/vnv.svg
SPDXID: SPDXRef-e755d31a95cd50b98b751364f71bf999
FileChecksum: SHA1: adee9be7d69289cf74f04b9b0f6215889702bdf0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/vuejs.svg
SPDXID: SPDXRef-381236a4087c7fa1a1b6f0c77db876a3
FileChecksum: SHA1: 43586bad514629958b99bf6c3ac5e5f204b8c2de
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/watchman-monitoring.svg
SPDXID: SPDXRef-7bc506a1c79add11bdd7ad7070e438d5
FileChecksum: SHA1: c135ddd57174296d3b0545b63b86ff3de0113871
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/waze.svg
SPDXID: SPDXRef-d406cc6a645de40f12ca03dd2a07778d
FileChecksum: SHA1: f94e870dd82867343fa0673c512b5542a90fb6c9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/weebly.svg
SPDXID: SPDXRef-bee3a07ed9f4334463bbe59827973eec
FileChecksum: SHA1: 41e0b6a805e02d8b6165a1c8a9de1947f3437736
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/weibo.svg
SPDXID: SPDXRef-e6dc023c0242ede4411efb19d64b9961
FileChecksum: SHA1: c87fc80e71c5870719c7df275c4f50eaba67d1e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/weixin.svg
SPDXID: SPDXRef-206332da2b6a00c632dfe91218ac23b0
FileChecksum: SHA1: d9bb25601db1a7e89aff5225d783184e42ae6483
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/whatsapp.svg
SPDXID: SPDXRef-a84a5b99246ed0d151c61285c508905a
FileChecksum: SHA1: fb2b75ffa4bf37298033faf891e3a4f56af511ea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/whmcs.svg
SPDXID: SPDXRef-a7b83e66bf5e12e962f1788e3026ac42
FileChecksum: SHA1: 2ef0e868157d4080c510dd46aba69871d77663fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wikipedia-w.svg
SPDXID: SPDXRef-c5fcaf7c422c9a5234795b611bd168ff
FileChecksum: SHA1: 2c40055a2a73f3a07fc17b113555947cc7dafe37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/windows.svg
SPDXID: SPDXRef-1f8328e4964798e32c9863074558ffe1
FileChecksum: SHA1: 579254c72a2c4564713d4ece62c30e01ea84f531
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wirsindhandwerk.svg
SPDXID: SPDXRef-12d550d7ac4f0dd86f9b05162ce2f6e9
FileChecksum: SHA1: aa702fd8bcba2fa63c5f5976998cf415d5fdd182
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wix.svg
SPDXID: SPDXRef-1d9c964ef43791eaa3aa7601be552e49
FileChecksum: SHA1: 7d1439037cd2a2a0979a0af5798dbf9c4bdf0b7a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wizards-of-the-coast.svg
SPDXID: SPDXRef-a65430714f73a9c66847ff5bf1d99a26
FileChecksum: SHA1: f3b3c51f62c7ab76d446b6d3aceb1f193240185e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wodu.svg
SPDXID: SPDXRef-d114cb848e2e1e75d708e32f6dee9e55
FileChecksum: SHA1: 404fb55e82840c02d3fd6dd8788501de676f0555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wolf-pack-battalion.svg
SPDXID: SPDXRef-2d4141d950bdcec309c4063075ea13f3
FileChecksum: SHA1: cfe8a927b14ef6b7a504783b6b167673c910cdcf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wordpress-simple.svg
SPDXID: SPDXRef-3b599e9cbb19b531c575dfb8fef72a2b
FileChecksum: SHA1: f674c7d693e20777be06a3f2ab400e91e1b8b69c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wordpress.svg
SPDXID: SPDXRef-6adc05d52e319f761cdb959aae8ee82f
FileChecksum: SHA1: a7c2fea06d1926b03c47f5cfbc4b6510d2c6398c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wpbeginner.svg
SPDXID: SPDXRef-8e4202f81942af7755776a69b2f7603c
FileChecksum: SHA1: 513e964f2193e68b52a05e927db8f7503bca1638
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wpexplorer.svg
SPDXID: SPDXRef-613f0da2ec2f73cd6536296e2fd3f2d3
FileChecksum: SHA1: 6c90a07e500f90fcc330c5d5b1fb4ee97f27b5ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wpforms.svg
SPDXID: SPDXRef-d23b9eae84ed11022ecbaa7447caa457
FileChecksum: SHA1: 5d2cbfb4eca9fe8a5726b8956b74ef015efde2fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/wpressr.svg
SPDXID: SPDXRef-baa09d635dc8a127a744325a36048ea5
FileChecksum: SHA1: 23207cc91ac232b6ca023fb11bd93ab8464595c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/xbox.svg
SPDXID: SPDXRef-9f51c4c75585c0d9f40287887479f432
FileChecksum: SHA1: f51b878834a2c1a841ab3b3fe658186c1f99ed5b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/xing.svg
SPDXID: SPDXRef-3bcf6226536158eb9441d8f49d96d937
FileChecksum: SHA1: 52fed9dd0a5f77c4eea2310fb691478f00ae671c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/y-combinator.svg
SPDXID: SPDXRef-c68d58457d433dbc8d4db31922ff14c7
FileChecksum: SHA1: bb84a67ffcc43fde7b2f03dafa18ca0dc4533539
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/yahoo.svg
SPDXID: SPDXRef-56276f6c14edcf4919d6cbec481387a3
FileChecksum: SHA1: fd88d0946dac0bafbf608d16f69b4e164c079648
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/yammer.svg
SPDXID: SPDXRef-340a7109fa36eba4df4ddd7ab286eaed
FileChecksum: SHA1: 44d9f215287dc5f947d8ca89c68e90395b3b5e6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/yandex-international.svg
SPDXID: SPDXRef-605e3897869516a7a6697e25348438ef
FileChecksum: SHA1: e9d259b6341a9c7b30b76b30026d48b5f3c2dd97
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/yandex.svg
SPDXID: SPDXRef-3c6b808216a5367e37b9d39353cccd26
FileChecksum: SHA1: 839a168e6d8e81802022009a3aef163a1df8352c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/yarn.svg
SPDXID: SPDXRef-fcffd4e55979fe48682b020d10e13615
FileChecksum: SHA1: d0c67f266391170b7f50e728ef88c9c813bde945
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/yelp.svg
SPDXID: SPDXRef-142ea60d6390788ce61b589ef51c1782
FileChecksum: SHA1: b95716fe202d5be3ee26ed4aca0972c4fb1f68db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/yoast.svg
SPDXID: SPDXRef-e477826346ac81480fcefad8a06e9dab
FileChecksum: SHA1: 9beb392a5f0b9c9a4b5c4a637055931c154f425e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/youtube.svg
SPDXID: SPDXRef-badde49fced3908016a0dbfc5a12d8fc
FileChecksum: SHA1: 44fab7553b91eb2859ae3daeb02bdcca3eeb8e87
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/brands/zhihu.svg
SPDXID: SPDXRef-8accd4ee5041eb9a0af7752b4c487df3
FileChecksum: SHA1: 58292fcfbfaaf844d2308859eb3501b9a6345e53
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/address-book.svg
SPDXID: SPDXRef-4e7c9dfdff473e3aaed811ded05ddd6c
FileChecksum: SHA1: 8606a1ef72623dbb2b76c99a7a0125e4448bc52f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/address-card.svg
SPDXID: SPDXRef-5d877a6473e0b2ba0a10176eb775bd82
FileChecksum: SHA1: 548c73f54d2eeacb268bf6d4239d309e601baf07
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/bell-slash.svg
SPDXID: SPDXRef-83d3b3dc01f973ed0654d72e20f789da
FileChecksum: SHA1: 371801f9eb8aed38287d1128896e849ff3f890d3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/bell.svg
SPDXID: SPDXRef-d741158499d0393de37bde6d67127f7c
FileChecksum: SHA1: 3587e1ac37613f06a9b35ab2412a9160ae547707
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/bookmark.svg
SPDXID: SPDXRef-6f716c3b6eaa2bb1a73b865965946bdc
FileChecksum: SHA1: 9050e9d7a6810621585a5ac211a8a6a65d7c5ffb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/building.svg
SPDXID: SPDXRef-39441f21da29297c88ac6039190d5840
FileChecksum: SHA1: 94c6c2da4dba429ab8a75794cf07251dbb0a8480
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/calendar-check.svg
SPDXID: SPDXRef-8ddb1e13f5db82ef181215df605c5164
FileChecksum: SHA1: 47c506f314ba6f0d63b201c658f647978efcaa80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/calendar-days.svg
SPDXID: SPDXRef-21e19f84dd6af50cd1e30dfd165fefa1
FileChecksum: SHA1: 81f9ccd95ef04d5b148166f2525abcd5be20a1c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/calendar-minus.svg
SPDXID: SPDXRef-bd08fb0eaf92646e6a434b8db37ccf92
FileChecksum: SHA1: 6fed049ed649f7e010d89e74516aa8d2cdf28b93
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/calendar-plus.svg
SPDXID: SPDXRef-cab7e208b92befd9bba287e267146d3e
FileChecksum: SHA1: c32d0c222cbe7a62a33d141f86a5de68175cebbd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/calendar-xmark.svg
SPDXID: SPDXRef-ba2ddd98c249e1593a0fc7a6e316a366
FileChecksum: SHA1: c7a590274c9db0fa6ab56fa099fe59bd1d8f7bb2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/calendar.svg
SPDXID: SPDXRef-ad53ce85f1541ed066c817bf9959436d
FileChecksum: SHA1: f812f06c7f2c843c9afd5c42e03500b10481cb20
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/chart-bar.svg
SPDXID: SPDXRef-fbc96b2dfcffefd91442c1bf9530d9db
FileChecksum: SHA1: 881ad2cc4c6e0e618958553b16e2d69d9ff1e0f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/chess-bishop.svg
SPDXID: SPDXRef-7b4a03939a1f66918483327a3a6b5011
FileChecksum: SHA1: bcf1071eade2e77f3d39a0f114b10c8a8ba98272
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/chess-king.svg
SPDXID: SPDXRef-5d55dbe73b351bf41e94c7e05724752f
FileChecksum: SHA1: 67704bdf7b1e462503f57eb60be4008fdfc8d6a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/chess-knight.svg
SPDXID: SPDXRef-f651ea8f8092eefe2af4e3c91f899ae4
FileChecksum: SHA1: ea88ccb03445407355ec880dba25af6a9a3677ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/chess-pawn.svg
SPDXID: SPDXRef-f34793aa5b7ff8562babc32af6f0fa6a
FileChecksum: SHA1: e699c43b3e127510120115eaf22e7c4c3878cda8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/chess-queen.svg
SPDXID: SPDXRef-f0f10b5e8776785f76a6c78b883a8a38
FileChecksum: SHA1: 3fb39838577ec0f594834efcf1ad496b5a308714
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/chess-rook.svg
SPDXID: SPDXRef-9346b09fbf09e69593cf03b72908fadb
FileChecksum: SHA1: b439311523842fbb2e8ea0146522de27031552ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-check.svg
SPDXID: SPDXRef-a4ba0feb7d15ebcfa00e81581b5c3ed9
FileChecksum: SHA1: c7580ec395e8ecde292f86a7160142fccae40bff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-dot.svg
SPDXID: SPDXRef-7a1685f00a730ed8cf3941b17553911c
FileChecksum: SHA1: b81a43bf3644239b6d899b015af3e5c6c1fc24a4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-down.svg
SPDXID: SPDXRef-4fb5e50a0781e353258c8352848878a5
FileChecksum: SHA1: 05392625072e3077462f89a907a5345d82d5b1dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-left.svg
SPDXID: SPDXRef-2d6f743386dc1bb6900074953077c528
FileChecksum: SHA1: f5f8cc5f5eba154d6ce649e400403cf41d25a734
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-pause.svg
SPDXID: SPDXRef-d4fc9bea56047315ede0864c4c0288a2
FileChecksum: SHA1: 5d3a439b4c24daf9335b56e1ba62d268da0503b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-play.svg
SPDXID: SPDXRef-7ecd9756490ef8e43b3c39a9f0a44d4a
FileChecksum: SHA1: 5b1b5fd7dca6cb6e2da8e106aac3e4965cac74c4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-question.svg
SPDXID: SPDXRef-184853762f0463665dab3b28d9eb5ed1
FileChecksum: SHA1: 2699a1850d67beb18f87b4aea989a45a9c4e41f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-right.svg
SPDXID: SPDXRef-5ae1040bbc01768a076809f23c8828bd
FileChecksum: SHA1: ed0db2764227315a6a141444624ca87fb70c341f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-stop.svg
SPDXID: SPDXRef-471155fe36944b68bc100c40220c5b04
FileChecksum: SHA1: b5836b43eec2b9dccc29e4ed05499da01b0d406d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-up.svg
SPDXID: SPDXRef-fe52607dbf63be0d3d022626896a1d90
FileChecksum: SHA1: 25dcdc95eb7ea603c7878ec4558abae72465eaca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-user.svg
SPDXID: SPDXRef-ee3cab93b4a91b67a0d73f2719629e47
FileChecksum: SHA1: cc10e00f34d106ffc1118ab37fac9c81cab65c84
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle-xmark.svg
SPDXID: SPDXRef-64ee1cd5fdf0422fd3085f1448b8a095
FileChecksum: SHA1: 6057a19cc7b569dd0315aac67d81d3f144c7f657
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/circle.svg
SPDXID: SPDXRef-124644164f0486a0de4878ea540a0659
FileChecksum: SHA1: 800be77f0549eae8ef43328c8fc007e10c8b28ac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/clipboard.svg
SPDXID: SPDXRef-2f8e7c949b41a5daf70b08e09e3399eb
FileChecksum: SHA1: 03ffbea195a6d24ed90f243b14f32b787d91d6a0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/clock.svg
SPDXID: SPDXRef-2a9d0a2964e8d0304d3007461f345b8b
FileChecksum: SHA1: 86de2b99c1f92c9d52c24ae2295a301296a8409d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/clone.svg
SPDXID: SPDXRef-5355920bd3ffad5f32461c145c53aefa
FileChecksum: SHA1: df8ff170ce03f81700a7163f79aaa398012cab0c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/closed-captioning.svg
SPDXID: SPDXRef-21cc45aba4fc463652a89f0f5f9c511f
FileChecksum: SHA1: adc9b544b1bb8e5e3f0b23761bb601569dd64454
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/comment-dots.svg
SPDXID: SPDXRef-f7210ea700464e87859713f18ffbbefa
FileChecksum: SHA1: 1f198f871780972be98e53d83316945d40cb4784
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/comment.svg
SPDXID: SPDXRef-87489454ba0942abb815feba8891b435
FileChecksum: SHA1: cc788095f0efe2612da800ee97ab29e0b33b7c37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/comments.svg
SPDXID: SPDXRef-dc1bd9a97d9c5f900a02ac2a22d231c0
FileChecksum: SHA1: 3aaa8c1b7d24ae8aa5813dc7ab9e44fb66a2ef29
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/compass.svg
SPDXID: SPDXRef-50d694e3f4b28594620bbfc40a38b2e5
FileChecksum: SHA1: 9fe29ca28f494a74ec4f1e8604acb70547ea6ded
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/copy.svg
SPDXID: SPDXRef-392253b323ca4f22644ef6515795526d
FileChecksum: SHA1: c6fe0079e1e85e5628fe6c5d4e0e470537a8521e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/copyright.svg
SPDXID: SPDXRef-b72a7a6b2bfee259d140fc60fc33b796
FileChecksum: SHA1: f83db5d489d9e826fc37b2e0bdad8d9bc68850aa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/credit-card.svg
SPDXID: SPDXRef-253ec0b3835b52b959e11175f2f89972
FileChecksum: SHA1: 0fc1bcc9b5c5e9e8b0d99b0eb611da00bd9815cc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/envelope-open.svg
SPDXID: SPDXRef-9a4de8e6e3cb5548af4159a1b746fe0b
FileChecksum: SHA1: edf7fc384a5bb827e0cf2aa7d049b5e27415d647
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/envelope.svg
SPDXID: SPDXRef-3a785aade7af563e7a79e8e7f447f08c
FileChecksum: SHA1: aa33fecefdf18957ddd944a3357dd2319ec07dcf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/eye-slash.svg
SPDXID: SPDXRef-bfbae83625f393d943b4e60f1ac94467
FileChecksum: SHA1: fd512fa1ada161fd6aa0b11a1aac0362cd3af78d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/eye.svg
SPDXID: SPDXRef-691158476811d4a30c009d778b4543ae
FileChecksum: SHA1: 815d9c2dfc727b0d4549ae098b37643abb7d20b9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-angry.svg
SPDXID: SPDXRef-a2f472e66d63e7cd9caccb15f23768d1
FileChecksum: SHA1: 8fea3d75744d130bab95e73186d0512bad5706a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-dizzy.svg
SPDXID: SPDXRef-df95a68d53f7942a91d9f9c6f5c0bcfd
FileChecksum: SHA1: 25b735409a55c54f9767bcb29b2a7352a44e5596
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-flushed.svg
SPDXID: SPDXRef-be2942f7caea731857c802b4e4d91af3
FileChecksum: SHA1: 1764d6eb2276d473bbaccacdcd4595da8984dd22
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-frown-open.svg
SPDXID: SPDXRef-30f2cb8abb00ec8850a1b7cde616d6bb
FileChecksum: SHA1: 3dfac88221d790cffa56794e79ee4c134d8d3f28
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-frown.svg
SPDXID: SPDXRef-4c6a021a66ee8c65267eaff8a24e45d8
FileChecksum: SHA1: d52690d53b779a94602246ce3fbde522eeea6ab0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grimace.svg
SPDXID: SPDXRef-745da66e44d8a251e1a5ebb130b32673
FileChecksum: SHA1: 175f3af375e8229142a6b72414bfcbaa0d8de474
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-beam-sweat.svg
SPDXID: SPDXRef-c1845c75628c60df57dd806c65b0dc77
FileChecksum: SHA1: 49a8e8de02cfe5efd92bd48fc3e395c4b8c2fabc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-beam.svg
SPDXID: SPDXRef-6bebd643297d8a1bfe98c259042ca521
FileChecksum: SHA1: bba81e423c83e96fb23e86fe9a9937a3b2aac64b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-hearts.svg
SPDXID: SPDXRef-00ef156fd7aa3c16ef56af729d9d88f4
FileChecksum: SHA1: 99841b2d9381a1251175d0aba1b556794092ed0a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-squint-tears.svg
SPDXID: SPDXRef-b16e94bdee59c2bee0471ca639adee21
FileChecksum: SHA1: bd26696691cdc9d34991c4df894721c273baaee0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-squint.svg
SPDXID: SPDXRef-4b9742968463a87cb14d62ef978a133d
FileChecksum: SHA1: 0ba33ebb033566ff5bfa0afb5c105b78b02aa37c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-stars.svg
SPDXID: SPDXRef-a907afc4b6937eef9808a482d7713678
FileChecksum: SHA1: 79a93458ab33bbeb6a597331ac6ebee457d350e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-tears.svg
SPDXID: SPDXRef-5e6fdadfe5b34c1bd30cbc398dbebc03
FileChecksum: SHA1: 5c7f673e0fa834e8382522673fce24a5e2768f28
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-tongue-squint.svg
SPDXID: SPDXRef-9c767a1b07c99eae9a0ca495189216fc
FileChecksum: SHA1: 960c1e924f2936fec128d0098f582958a68d79eb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-tongue-wink.svg
SPDXID: SPDXRef-df2b66d99d3715443265868f4497edbb
FileChecksum: SHA1: 41ba0b4a1051b0d7432ffdd8fa9c6441b0da9695
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-tongue.svg
SPDXID: SPDXRef-409ebd016fef2bf8d0edc2df667af256
FileChecksum: SHA1: 60024956a19abe1a7d79e261ecc6b61044b511ac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-wide.svg
SPDXID: SPDXRef-59df890735ea0b23cd77215a2424c9d3
FileChecksum: SHA1: ab209a6fd6ed4a3fcf1fe7e102218ed1d8d7c700
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin-wink.svg
SPDXID: SPDXRef-b5a3c8a7c96cb311b760f3daa3523756
FileChecksum: SHA1: e97a374707b3824080f0ef468319f88fb6e7a7a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-grin.svg
SPDXID: SPDXRef-87fea9f6c897eab0a728e3f517edefe6
FileChecksum: SHA1: 5a7f96fb31605b1a8e95d07ea803d1483d083715
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-kiss-beam.svg
SPDXID: SPDXRef-ef50a33e88038dfb74afa04d12b0e619
FileChecksum: SHA1: 704925dd5eb20b0a2d17b8b54a821e4468aa94a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-kiss-wink-heart.svg
SPDXID: SPDXRef-360547bcee1d887d13339554d8ba21ba
FileChecksum: SHA1: cbddbd31dae12bb871d87e4e713314f6efd9ea32
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-kiss.svg
SPDXID: SPDXRef-73932b2926e990cbb64e520a0e453ae2
FileChecksum: SHA1: 85b9e8939ef74073e9603f082ba38f363bf909bd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-laugh-beam.svg
SPDXID: SPDXRef-2232a837ad38b504c9337d5a7236f78c
FileChecksum: SHA1: 6c4bfc86138b3bc0e74ca8cff59056a855a6b09d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-laugh-squint.svg
SPDXID: SPDXRef-8b52a89703a331ee1ca3d37bd59dc305
FileChecksum: SHA1: 753b0dd8f7fe0b1516a00f26665814a3339cf5e0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-laugh-wink.svg
SPDXID: SPDXRef-8609f3f3596cb6099717539e398ba3ba
FileChecksum: SHA1: 2d32547ddacd885a4ff11bf9c42f01834337e5b0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-laugh.svg
SPDXID: SPDXRef-74190c33148a23cfe6397fea6b2a846b
FileChecksum: SHA1: b0dd5ca23402889a7a03f4e8ba63aca0ca9f9bd2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-meh-blank.svg
SPDXID: SPDXRef-2260afa510b19937a3426d91c9248de1
FileChecksum: SHA1: 7b1320198119bf95adea29cf51ceea45e3c44127
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-meh.svg
SPDXID: SPDXRef-423d402e18786c6baea60bccf4d7e4d9
FileChecksum: SHA1: 5a4174d03c893f286ae9d5dd962636ea1a05041e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-rolling-eyes.svg
SPDXID: SPDXRef-18a0433348dcec748111ceb603fe1042
FileChecksum: SHA1: a72249e7c69f84945d62949589f3d254889a91cb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-sad-cry.svg
SPDXID: SPDXRef-87e123b9d86e4d02a253a62347260163
FileChecksum: SHA1: 71ee9b3841c6742d94852d36421c5bd340dd24e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-sad-tear.svg
SPDXID: SPDXRef-522e04eb46b9ad2946900cd93d89c8b0
FileChecksum: SHA1: 1addf952c320dc1958aeacc383ff5844481bfd08
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-smile-beam.svg
SPDXID: SPDXRef-2fa6cdaca005e28755eb76158b11bfae
FileChecksum: SHA1: b0a79c7f7c1f1d5de11db7273652c51db2232146
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-smile-wink.svg
SPDXID: SPDXRef-a007cc923ab65e484a385a94d0acca91
FileChecksum: SHA1: 2ee20cb86b1c41bdaed86704c0c1a3429d6fe922
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-smile.svg
SPDXID: SPDXRef-436109aca18c9ceab5c34b39762701f4
FileChecksum: SHA1: 7e03a0ef2bf1e55b73ad04791373e35bd527c6fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-surprise.svg
SPDXID: SPDXRef-ae0f67fca09648d0030599897b4923bb
FileChecksum: SHA1: 085d185dc1683e434d69eed9f31632449bb7c819
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/face-tired.svg
SPDXID: SPDXRef-b8a57160a1f3851b4b6745a5d08c7fde
FileChecksum: SHA1: 35cfcb0dd934b39b2c0a10c0dba04bd7889efd53
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-audio.svg
SPDXID: SPDXRef-9d88038ad8fadf36053bef3eed12337e
FileChecksum: SHA1: f4cb41296c18f4659e2d38fd079978c09deb95a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-code.svg
SPDXID: SPDXRef-1ddc08c3f15fa3bd97bd4758e9550689
FileChecksum: SHA1: d2cc60213cf72e3f1579ba6e9daa4aaa2a153684
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-excel.svg
SPDXID: SPDXRef-5a5170b25cd8323aa73fb242d3053a48
FileChecksum: SHA1: ed8f50f3f8a07463b3b75c49593b30cd67136baf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-image.svg
SPDXID: SPDXRef-262f598f484238465be22e9fecef58b9
FileChecksum: SHA1: c6e663a9481fecfdeab90feca1c967fe47798c3c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-lines.svg
SPDXID: SPDXRef-fa458951beb594388889cffaa397a0f5
FileChecksum: SHA1: a2b67c29388b213183dd0d4ccb32e0c09d0b7c8a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-pdf.svg
SPDXID: SPDXRef-d401e4be169ed7cf49774cda67efb989
FileChecksum: SHA1: 682f8477fc3fd448dad89d9ea8d2944e0c184017
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-powerpoint.svg
SPDXID: SPDXRef-cc56522eaaaf57e43247dcb3136e7c1b
FileChecksum: SHA1: ec4c38aa1f43c8790ce02f8b02c34babc511b026
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-video.svg
SPDXID: SPDXRef-6364c616c297c9b276c4f51828d50aea
FileChecksum: SHA1: 7a31765eaff47ddec578b1bac6bb88a375ce211b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-word.svg
SPDXID: SPDXRef-f9198e10de30fa3bfe39d6281c7d34c1
FileChecksum: SHA1: ce4cff3a66113d88e3b2ddf323ddf2add071e8f0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file-zipper.svg
SPDXID: SPDXRef-2dca9ace08f54a45d3a1a6475560d131
FileChecksum: SHA1: 654a07abe4468e3030e7e8373a07325373698b45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/file.svg
SPDXID: SPDXRef-09a5f7f785410c3c9fb4450d56cc50b9
FileChecksum: SHA1: fab153b302472f363b3c475ff81194f581656182
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/flag.svg
SPDXID: SPDXRef-6c06e359df80e0d4060c2f2b1ae1995f
FileChecksum: SHA1: 4784d390051349b2a7da2ec962f6749f01895262
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/floppy-disk.svg
SPDXID: SPDXRef-55aab87cfd77f4e9008177d948f08931
FileChecksum: SHA1: df376ef84ffca90ad7291e200c3dc383e42c0415
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/folder-closed.svg
SPDXID: SPDXRef-6606400cabd29c03a8261f399e7adea8
FileChecksum: SHA1: b0a7017f11b89c844a0c051f8f2000cf1f581e07
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/folder-open.svg
SPDXID: SPDXRef-b844340870a367e1e4034d0327ceb24e
FileChecksum: SHA1: 3d4ad4af4ac549ee58fba0bf09ecf638944ad30e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/folder.svg
SPDXID: SPDXRef-70257247481fee1ecfb03c1d1eb66451
FileChecksum: SHA1: 7d97a75d49cf12251460d4a96d58e9911e410509
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/font-awesome.svg
SPDXID: SPDXRef-910ce687765f59b3c95dcefc9e34321d
FileChecksum: SHA1: 0a244a7e36235ed75d51e0150ae40989800f07ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/futbol.svg
SPDXID: SPDXRef-30fc8657e57c60c87b0f5ba3d007778b
FileChecksum: SHA1: cc4061340dc57ef29777966b03fa4c985b06323f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/gem.svg
SPDXID: SPDXRef-03ed4011d16f6a6b531f739eed87d415
FileChecksum: SHA1: 48fe21c2de56e29b6de5462898925e49ac9eee46
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-back-fist.svg
SPDXID: SPDXRef-f64037f5776e35a1bc6bf2ea4272f080
FileChecksum: SHA1: 178379fbce0b6db50b2af9be30d28688bcf2c271
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-lizard.svg
SPDXID: SPDXRef-574f70df6b315176d2767e4d5986905d
FileChecksum: SHA1: 38d15883fdaada4ee64bf23038d13b0d611ce5d8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-peace.svg
SPDXID: SPDXRef-dfa44e5c657a88d91a1c99b8cc177958
FileChecksum: SHA1: 4ee9f348b2f7844ed70b24aa3cd2262316283018
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-point-down.svg
SPDXID: SPDXRef-6341b1f70bc6292e9c7ecd6bfd573558
FileChecksum: SHA1: ddf6d5cd8ee7c6bcec99a3675d631c3072f27eb2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-point-left.svg
SPDXID: SPDXRef-95ba30e96d6ff37907ad1f85a92b3c65
FileChecksum: SHA1: 0f723d953b462c613fc12d7f29950b3b82c28ab3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-point-right.svg
SPDXID: SPDXRef-6c03615bb132211131298d704e44cfa6
FileChecksum: SHA1: cc98939efeb627e9f6c277f4d0dcdf1ddb2a0df8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-point-up.svg
SPDXID: SPDXRef-b96ae702d70b5ac7a65a442de30d2e2f
FileChecksum: SHA1: 08b0f96b75fbe99c6f11e0551bd82433d7971424
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-pointer.svg
SPDXID: SPDXRef-33a4cbfce2bae056b2c409b74cc2b752
FileChecksum: SHA1: afc1b22547d15af115c868e2818e4f068f80ce89
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-scissors.svg
SPDXID: SPDXRef-82de912ecbe92fe1ee2c2b12c864ebee
FileChecksum: SHA1: fcde5eedf9f12d35900697e6137755748314e3d6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand-spock.svg
SPDXID: SPDXRef-5034dcb6349c76362774a17ffdc51afe
FileChecksum: SHA1: f9777e16e61ce329c872899efac3784752370a7a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hand.svg
SPDXID: SPDXRef-38d1f6a0fdb8e25076d051c8c6717167
FileChecksum: SHA1: e31b204243ea19e54abb7d86e8e2c4e38476b9f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/handshake.svg
SPDXID: SPDXRef-4cdb7e852cd9f9fbb1ce8eaba16a418b
FileChecksum: SHA1: 72a748372f1034ae06d5f64a740cde46e9198fd8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hard-drive.svg
SPDXID: SPDXRef-eb38fd8f2685d799e687d38e4b95dde7
FileChecksum: SHA1: 6e47de397c97cb59b9c9a6bf5475c4b296540267
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/heart.svg
SPDXID: SPDXRef-86aa61114d7b1f6fe8c314a2e07ea369
FileChecksum: SHA1: a5dca082e2b1923cef25d06a6a4fac8781311e4f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hospital.svg
SPDXID: SPDXRef-5fbbca181f2e68760569c50addb94197
FileChecksum: SHA1: 1c6a97b2510c5272ebec43e7c3b4e76ce2b48abb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hourglass-half.svg
SPDXID: SPDXRef-e25222ce565784dcd8f252005f51729c
FileChecksum: SHA1: ff68ecdf73772dd1735b8b703c3d8fce7dde0e96
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/hourglass.svg
SPDXID: SPDXRef-fd1bd0b0f34fb27ed0b59b444a35194e
FileChecksum: SHA1: 4d1e5f11412a9da56b6b17b6616b39d01c3265dc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/id-badge.svg
SPDXID: SPDXRef-7255f65199f0203b1470732670790d78
FileChecksum: SHA1: bcba44f44278a2cacaccb61bb6a16e4620355521
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/id-card.svg
SPDXID: SPDXRef-86f579d7b2b3c92ed6c7f79e42d887c7
FileChecksum: SHA1: 2e6b4f51b9231a4abd06f1774e6284c6c6583bc5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/image.svg
SPDXID: SPDXRef-a312204b08073e19106d5a11a3e406a0
FileChecksum: SHA1: 1c137120857b1c70113927acfe31782f20104bea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/images.svg
SPDXID: SPDXRef-213ac309d02c0d90a61ae8ba96f28ff7
FileChecksum: SHA1: 48d4e1e64c14527d9ad6414197367a396f9280de
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/keyboard.svg
SPDXID: SPDXRef-d33fda2812157adb72d854df4de03dbd
FileChecksum: SHA1: ded9f39b35354af9ee5ebb5596e44c27b05047c2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/lemon.svg
SPDXID: SPDXRef-15e83f2d835b8f7036ccfb7d9cb010c0
FileChecksum: SHA1: f09ab23e58967bd40bd0f80dac92dc3bd1a23570
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/life-ring.svg
SPDXID: SPDXRef-2d9fad40a5acb186b3f2d3173aa2da0d
FileChecksum: SHA1: ce527a882b3c6ff49456f7e19b92f0dc12fe43d7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/lightbulb.svg
SPDXID: SPDXRef-ecc8273d1964bf5b70436904aa42c362
FileChecksum: SHA1: 953a20afd59602cbb1d66a3508d85c79e3ae797d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/map.svg
SPDXID: SPDXRef-0b8277a7b0298369ded4ba852405172c
FileChecksum: SHA1: 55f7a7acfefae2a2d41d3b6771609949bcfe8e82
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/message.svg
SPDXID: SPDXRef-c61ba3b9eb73887ad776c8326f4f2744
FileChecksum: SHA1: 8df9a26d31d6346a4013c8c7d4903dd72307d7fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/money-bill-1.svg
SPDXID: SPDXRef-9ab40d18fef9a9d101d11f28eb6d6966
FileChecksum: SHA1: a1eb2e1929052c4427230f857597c46464582b8d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/moon.svg
SPDXID: SPDXRef-fe8e557abf58d5416cf58fd952c069b6
FileChecksum: SHA1: 0f6c9f98e1d06346b62f3735318f526c923a8720
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/newspaper.svg
SPDXID: SPDXRef-54d4cccbff3a6c5f1ef6e7f41368a302
FileChecksum: SHA1: df890cccd42d035030848bde4c7a0d1db144de55
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/note-sticky.svg
SPDXID: SPDXRef-8be33c1ea1b5b286abb190d5782568e3
FileChecksum: SHA1: e41897c0710126ea3799a6aa9154e8d2abf74b3c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/object-group.svg
SPDXID: SPDXRef-e87cae2a15680e27146b3922951e9182
FileChecksum: SHA1: 71c5942839888f27cf545cadeac37fc74a8cd8b1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/object-ungroup.svg
SPDXID: SPDXRef-f0e076fa0f2b63151504af670251daf1
FileChecksum: SHA1: ece6960327607f61edefe7ed9c1a703d60880ea9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/paper-plane.svg
SPDXID: SPDXRef-c72795280ca15288c7226b77fe1412a8
FileChecksum: SHA1: 3152d2d4099f48781a8ca898344abcd75758d42d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/paste.svg
SPDXID: SPDXRef-da2c8e7e490c4af8f601f6080d37c9ba
FileChecksum: SHA1: 4f353dd8ea6577b8a87fe6d52422394c6187a25f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/pen-to-square.svg
SPDXID: SPDXRef-937af732b10dcce99c328073dc7de9cc
FileChecksum: SHA1: 949bc371f66a5524180962f0e843ae2cf603d2ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/rectangle-list.svg
SPDXID: SPDXRef-1ee0ff403de116e249d59a309ddb2399
FileChecksum: SHA1: 42a57b576db6192f16bef64350fcc53fdb008d2e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/rectangle-xmark.svg
SPDXID: SPDXRef-9dd6a191f6eccf5be286137a8e8736df
FileChecksum: SHA1: a8757edd6ba662e4729fc9bf53990f44f866656d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/registered.svg
SPDXID: SPDXRef-f6838847e630d7fb3458e9a1f71da9a8
FileChecksum: SHA1: 7eac60eeab56850c0201ea25559f555815f033ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/share-from-square.svg
SPDXID: SPDXRef-227f610361c980b9fd3b8a9c33fd9913
FileChecksum: SHA1: 9d653f5aff84ed2af581fecc3fb59c8fcf42df6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/snowflake.svg
SPDXID: SPDXRef-173ec63e53b1f31d0a17b913dc6c1806
FileChecksum: SHA1: 96dd99bbcf212c16ce8786d492b9d38086ee1ca4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-caret-down.svg
SPDXID: SPDXRef-3c9b9e944c738f08d31395841999f1d4
FileChecksum: SHA1: 4a6cac073645e6f5155b0750768e04dd03837dbb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-caret-left.svg
SPDXID: SPDXRef-1e427a81577f35076cdbab4f64ac3ae4
FileChecksum: SHA1: 5711bb180bc4a63acbe8174d2338527c5fc31cd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-caret-right.svg
SPDXID: SPDXRef-a7490e5a74749c67974268aedbcd99f1
FileChecksum: SHA1: 9e1a6fdd00a585d9e06c72876c84f6ccbadbed27
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-caret-up.svg
SPDXID: SPDXRef-138ef0abd4656823d8f92801679f3f36
FileChecksum: SHA1: 90e5cb587308c0727457d9953bc561ba00769a82
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-check.svg
SPDXID: SPDXRef-6507254d9a21ceda656a0cb6f47e916d
FileChecksum: SHA1: cc53394a5ca3ad09ba426fea701fff4c6c69fe69
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-full.svg
SPDXID: SPDXRef-1a5c309ec1dd6527461caa9ac691b288
FileChecksum: SHA1: 30e8ce4062df026c44144b4e00fec892e538a980
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-minus.svg
SPDXID: SPDXRef-091485d392959e7b8400d8159758fd31
FileChecksum: SHA1: 251bf3707fa65621eec94793cfea8839e002b202
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square-plus.svg
SPDXID: SPDXRef-744c22135bf7dcf0bc317b5ad5c6dcc8
FileChecksum: SHA1: 8f7e2f1014d883181781909f52a57d58d361daa3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/square.svg
SPDXID: SPDXRef-045f6ed186ba558a871ccb4b0affe575
FileChecksum: SHA1: cf83936b799328c71a33358778888634d470d3ee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/star-half-stroke.svg
SPDXID: SPDXRef-cfbea63c3a0384c89ff7d6902cf55e3c
FileChecksum: SHA1: 88cdb0fcfefb5c0a7223edb833518c91b8b3e4c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/star-half.svg
SPDXID: SPDXRef-4cb96585ecbb93eaca29e7f395542ac9
FileChecksum: SHA1: b4007497fde74f81ce6f93bac96d5b9afc4288ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/star.svg
SPDXID: SPDXRef-fc01a6dbd02cea1a18da07a1e579ba16
FileChecksum: SHA1: 0955cdeed055c41e9cd657cad40dfe93b979e17d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/sun.svg
SPDXID: SPDXRef-6e55ed22a83332231f0ec70e56d8ddcc
FileChecksum: SHA1: 96af4b6c857645b431af382c987a5f6c4d216b5c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/thumbs-down.svg
SPDXID: SPDXRef-618bdf6d3659278840b3349fc977e920
FileChecksum: SHA1: df87ea909ff9336204768b441cb903adf14b1875
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/thumbs-up.svg
SPDXID: SPDXRef-98aa4f292d62e4e5265168720759b2dc
FileChecksum: SHA1: 17f47185f2df47c03d648992536f0443a51e8178
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/trash-can.svg
SPDXID: SPDXRef-edb7bad10670ea6046160c08023a828c
FileChecksum: SHA1: ef16eda110b2146d757b87d165666743ed3d01d6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/user.svg
SPDXID: SPDXRef-01fe134c6dcaefc2b91660f9a74a1e33
FileChecksum: SHA1: 64f4b48d988f34ec72ec4bc4bc54999539a64f9a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/window-maximize.svg
SPDXID: SPDXRef-0f5ec75b9741ca87b0df931bef8b763d
FileChecksum: SHA1: bc361514a4eeaf5da570032b2d8d0b2819c3f792
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/window-minimize.svg
SPDXID: SPDXRef-b561d7ee6a96e76c9a4c00559b41bc02
FileChecksum: SHA1: d95e078bcea95355a9611295e88be82f5c3ce2d7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/regular/window-restore.svg
SPDXID: SPDXRef-ba32071b225890fd02d17d21116b64ee
FileChecksum: SHA1: 0a5425969c6c4506b971e224364dc80504e5354c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/0.svg
SPDXID: SPDXRef-4b6cf7e4664c136793d6bfd0d7cba510
FileChecksum: SHA1: e2f3fdf6755a020c6e3a94eff8de067cb085ab3d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/1.svg
SPDXID: SPDXRef-d5ed3ab39452f8dd1b118d497978687a
FileChecksum: SHA1: 0c1552fdd2c8310f6e420e457b01846fb4a9542a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/2.svg
SPDXID: SPDXRef-84f292177c11d80214c5a06a7fd2bc5b
FileChecksum: SHA1: f88b4c645c859b4009eb04b031a16dd6a966e176
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/3.svg
SPDXID: SPDXRef-cd739f1942b48212d86fed78a4645ae8
FileChecksum: SHA1: e1c5b70b517de50f77b7848b42810e869d6420cf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/4.svg
SPDXID: SPDXRef-ea3876f6bc355bc5d597cd213b99a3b0
FileChecksum: SHA1: 9e745ffd14103b0508d736e509eeeb01e710dc46
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/5.svg
SPDXID: SPDXRef-5fc1090a75f4166d6b907f235fc60d8b
FileChecksum: SHA1: fc5dfbd165b143cad9f612cddfe5154de10bca0f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/6.svg
SPDXID: SPDXRef-c005687695bd0fb1b1e1c584540023c6
FileChecksum: SHA1: 094211aaa9255c9897305e2aba0bf902f64f8dcd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/7.svg
SPDXID: SPDXRef-2872f478b130592f9c944ca0f6bf2eb6
FileChecksum: SHA1: ab671ce1acafd18ac82982e1935f50b1d902100a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/8.svg
SPDXID: SPDXRef-fc2bd9dafcb4afef33a2d180c930ca13
FileChecksum: SHA1: 9b2711738bfba1c66eca55a59bede7976677a4bb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/9.svg
SPDXID: SPDXRef-6d2b242d2f5a7adcaa5b99f3c1a35e8c
FileChecksum: SHA1: 12d11b0d186e3fd3d516c4cce8a751fab00dbf77
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/a.svg
SPDXID: SPDXRef-b8dd29ba770e002115c52b62673867ea
FileChecksum: SHA1: f3d34b31ae57f2e9b60313088ba51e5e6da43398
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/address-book.svg
SPDXID: SPDXRef-0dcaa2b60bad773e869da46aad5dab57
FileChecksum: SHA1: 03cb56b65f95b4de668967bcaf277206f5e9debf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/address-card.svg
SPDXID: SPDXRef-380d0311a1ba392d7ae145f3c3163f44
FileChecksum: SHA1: b32b547a2e7c24f60306cd9038e00497f89cd3ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/align-center.svg
SPDXID: SPDXRef-f3a2f695fd29e17f25753c6de2bca125
FileChecksum: SHA1: 331c5fa53585464cdd0dc45004642c63df7193a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/align-justify.svg
SPDXID: SPDXRef-14b55915bcd30e95f55716682cff87ad
FileChecksum: SHA1: 43c163395489031c26d89f22af65482f3e1e0598
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/align-left.svg
SPDXID: SPDXRef-9feae12ee9cd5b03c48ba210849b1487
FileChecksum: SHA1: 559e25bb665a5c5192af57458afa12d93e117a1d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/align-right.svg
SPDXID: SPDXRef-ff987d36345a8c9c7d703a790d42d006
FileChecksum: SHA1: a932cc01e9577dd2f3519ecb9448d3e5215782d0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/anchor-circle-check.svg
SPDXID: SPDXRef-35b0e3f0fae5c8f9ea2658166f96c720
FileChecksum: SHA1: 62a69a9166af81539ddeed9980008bfb097c7e14
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/anchor-circle-exclamation.svg
SPDXID: SPDXRef-a68db5cf2d67229926c78fd6857392a6
FileChecksum: SHA1: 9172dc5cd5bd03e4deefa6dd1ce53d814091f344
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/anchor-circle-xmark.svg
SPDXID: SPDXRef-f62af8091fb17e41b2b546c852a5e56a
FileChecksum: SHA1: 71a27d1f568a90932967f2f16cc0f0da9ad53440
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/anchor-lock.svg
SPDXID: SPDXRef-563ab8a7d692da82c47d7c86f2960bea
FileChecksum: SHA1: fc49dad8e8ee009eff2a2b15c7eda34ae71b3122
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/anchor.svg
SPDXID: SPDXRef-01e145089b583578f5b998f8801df72b
FileChecksum: SHA1: 40817707ba56325ebccfa5f46b983b5f0e002408
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angle-down.svg
SPDXID: SPDXRef-08e54d72be1a4cd2e82db72c80740f9d
FileChecksum: SHA1: 76a32370b890fb3d30ba0844f74cb95b800bff44
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angle-left.svg
SPDXID: SPDXRef-c43d24421962106059c9cd7056210fed
FileChecksum: SHA1: 24c41110bfed275bfa22ac197d158aa3c62a39e0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angle-right.svg
SPDXID: SPDXRef-15af9b704794463d5d913f67d338b72b
FileChecksum: SHA1: 93ecbec23e1384e42228a6c281151ec7c7d1d3a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angle-up.svg
SPDXID: SPDXRef-6cf5e7c3fd12e8eb95283556134cd9c9
FileChecksum: SHA1: cdf46ea08cac4f30fa9c952ddc4b83e319a3272f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angles-down.svg
SPDXID: SPDXRef-2b4b63c0e2d98b97b45baa6cc692f112
FileChecksum: SHA1: 947c7a7eb6c0dba0448f684d689092629d76f206
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angles-left.svg
SPDXID: SPDXRef-c098f10d6d6b4902688024d23bee784b
FileChecksum: SHA1: 194b98f5bcf9ef9bb7b0beaff41ffaa76eaa143f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angles-right.svg
SPDXID: SPDXRef-cb4624299835c5428d1ba1b8046e82c3
FileChecksum: SHA1: 95923a20c615fd58e2c815684e51a6e6b60d1514
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/angles-up.svg
SPDXID: SPDXRef-6c727dd12d8020221e202bc4e20ee81e
FileChecksum: SHA1: 4e92d0a7ae26b2d1fd5c87d137e6c455cfd9a5b9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ankh.svg
SPDXID: SPDXRef-4b3b3a404f1b6fedd3a6a5ec817a84c0
FileChecksum: SHA1: ae040a99310051e5e2dd8c64f4721a113d991925
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/apple-whole.svg
SPDXID: SPDXRef-5128ff82b11642322743d40e3b01f5e0
FileChecksum: SHA1: 8f20a37110979e6b6af382de7643f0da8f751d44
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/archway.svg
SPDXID: SPDXRef-02bc276b5309a2a0595c9558117105f5
FileChecksum: SHA1: 1357728547f203131a520dede68db79d3ed43103
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-1-9.svg
SPDXID: SPDXRef-e2fb33c4a7ffe43433e324b262674da3
FileChecksum: SHA1: 1ec9f5d1a6ea30bdacd9f401c8f584e71fcc1162
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-9-1.svg
SPDXID: SPDXRef-b9e5282f6c2bf7250615da5dfd9a9ffd
FileChecksum: SHA1: 950f957b72661d20966aa2b1cfc095046a0788ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-a-z.svg
SPDXID: SPDXRef-97797e5042432ec1f6612dc98d745d13
FileChecksum: SHA1: 82ddf9688109e042e86d91cc7959d6cd0811b9a3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-long.svg
SPDXID: SPDXRef-f819ffd947d2b30efa1989634ea7d352
FileChecksum: SHA1: aba3c7130a0506449318bce3313efb8d3e483c30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-short-wide.svg
SPDXID: SPDXRef-cca95cc3a4f9b8c6a732ebdd0f11a0c5
FileChecksum: SHA1: 1a352ec116315bcb8812325da8d117b5d33df76f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-up-across-line.svg
SPDXID: SPDXRef-60232591f32b2df9740f874c6d419107
FileChecksum: SHA1: 49fcefde794ed17845b1bd66a4469e50a04d5ea5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-up-lock.svg
SPDXID: SPDXRef-d43a1b3600ac13cd61ee03766307fa76
FileChecksum: SHA1: 6ae9448e10c34ce469ce60d99c6665e082eed613
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-wide-short.svg
SPDXID: SPDXRef-a9dbc2e65a43b3f4b9698280fe68afe2
FileChecksum: SHA1: 0350af097c5da6644e8062770e7db9aa5ff56da7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down-z-a.svg
SPDXID: SPDXRef-54e60c4871ea0e2463a9122344575a4e
FileChecksum: SHA1: 3087464818997d40dc1eff4d736b67746f380a3b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-down.svg
SPDXID: SPDXRef-4b330074a8580fd601f256b033b77187
FileChecksum: SHA1: df0654291ddaf0077285b6155f03b11f9862205a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-left-long.svg
SPDXID: SPDXRef-5474e2df0bee9a45cab31035857a40d5
FileChecksum: SHA1: cf568e205a6633eb6cb9d5e66dd18d9bac00b3f7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-left.svg
SPDXID: SPDXRef-1d02d83711936fa2d25e7a7e4642156b
FileChecksum: SHA1: 4fe5ff0a8b075dc54700a5f9d8b1baf20274055f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-pointer.svg
SPDXID: SPDXRef-c6763b22bc5fb0d6b6a96f0013b3fd17
FileChecksum: SHA1: 78bc2f677d246046ca4eccf95d371dc1bf2480fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-right-arrow-left.svg
SPDXID: SPDXRef-91af717e6fa627f69c3f4ca4400b4129
FileChecksum: SHA1: 4686547f5bc8dac9d01a1f0da4839f11d834aa49
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-right-from-bracket.svg
SPDXID: SPDXRef-369990ec6e3472824cd3179d2ddd44a1
FileChecksum: SHA1: afc877601385a7938cc7baa3d6e7fc1537446ab8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-right-long.svg
SPDXID: SPDXRef-0622aca40393d743b300d0accf156381
FileChecksum: SHA1: 3ec62e0bcbcf632e36983538122076c4085c01be
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-right-to-bracket.svg
SPDXID: SPDXRef-e9a7a33376ae2c091add67d71a4d3aee
FileChecksum: SHA1: 9d0aa176fdee1ef43f0e432e9c1ca44ac4bfca34
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-right-to-city.svg
SPDXID: SPDXRef-fb560e15208c3c0d6282c8b331d5a3ff
FileChecksum: SHA1: e2fceb8cda4d9bda934d745cb51810351a1970f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-right.svg
SPDXID: SPDXRef-9db70b13e1e6a43c6be6271c6e7159cf
FileChecksum: SHA1: e66f16ba3d18590f88c3539b4327c34d60ec044f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-rotate-left.svg
SPDXID: SPDXRef-6b074e87d08754c79d1e2d2fe6139b01
FileChecksum: SHA1: cfcc4dde3122510096c750e3333d8eb235a2cf62
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-rotate-right.svg
SPDXID: SPDXRef-3eaa802005b0277d3ee44288cfcce21c
FileChecksum: SHA1: 2382257998b0488f19172fd6a45b26f1cc6209dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-trend-down.svg
SPDXID: SPDXRef-893612a80aa03c6b4343204118eba72f
FileChecksum: SHA1: 667ed839ceb6f7b4c327444c9e0bd78547bb9052
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-trend-up.svg
SPDXID: SPDXRef-d7523effd669c8102bef40c9bbc21d96
FileChecksum: SHA1: 14eb3d02823ab2fd887ade2e0f2b402f9e4d6c92
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-turn-down.svg
SPDXID: SPDXRef-7f03c8c993b23a624cac4b62841a5710
FileChecksum: SHA1: 72a85004101292d7f9acc6c141e95a4fb0a5a03b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-turn-up.svg
SPDXID: SPDXRef-7b72aac2a5d790d50584715b6954ec63
FileChecksum: SHA1: 11bfdff3bae09bfa9fca2a9f669c18147dcabcfd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-1-9.svg
SPDXID: SPDXRef-17c4a7a2737efd6375dd0fc10762429c
FileChecksum: SHA1: 47e01ff66ee2fb7e891f5fcd0f5515b0ff16cd84
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-9-1.svg
SPDXID: SPDXRef-7713365bf07e9d7dddd589dfc17a8e3a
FileChecksum: SHA1: afedaffea9397d33df83f7e56bc9f582068ccf76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-a-z.svg
SPDXID: SPDXRef-0f3debe11d951683acb1e254a3b26788
FileChecksum: SHA1: a445ce56869ca61c7e9bf0f6fa716b895e431b01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-from-bracket.svg
SPDXID: SPDXRef-b3f149e5d7c6fb9b947cc54bc5f24def
FileChecksum: SHA1: 00d5042b71ea7b133b34982550206e28b430a27c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-from-ground-water.svg
SPDXID: SPDXRef-640e9e894775f9a7ee87637e274a39c7
FileChecksum: SHA1: c3d526aff3959958855407cb36d7ebcbe85b8f42
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-from-water-pump.svg
SPDXID: SPDXRef-37e30d8bdc6773bae852828b01d085c2
FileChecksum: SHA1: 93e37b0fac0408a1fcfb0742a4706609e543bac8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-long.svg
SPDXID: SPDXRef-5780e47d19f03f03ee7851ee4ea9c490
FileChecksum: SHA1: eb8c83402441a9d8d7c3a8e4b1b15b4d3ea912d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-right-dots.svg
SPDXID: SPDXRef-18249990dcc63fa65a7e288192765356
FileChecksum: SHA1: eebee28447c4235e26a4aca96a4088e2fcb3f31e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-right-from-square.svg
SPDXID: SPDXRef-c6e715a803444491bea5fadf9503abd4
FileChecksum: SHA1: 8e1c87e52ed849e0edf019504894f08ad282c2ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-short-wide.svg
SPDXID: SPDXRef-07493ea09a727434e47921dd65b140db
FileChecksum: SHA1: 478acace191fc6f070c9daf5c3422a9dc97fde43
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-wide-short.svg
SPDXID: SPDXRef-6ab790f09c302de9afea42f19dc630fe
FileChecksum: SHA1: 33733e45f3d74ccbb2da84c9760ff823fc43d8e7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up-z-a.svg
SPDXID: SPDXRef-3eac9cad3cf153c62c66e5156860ae80
FileChecksum: SHA1: e632777a4400fa7a051b0ac52214a7c49dba7505
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrow-up.svg
SPDXID: SPDXRef-2ef12b79485cae79c7799609ba33926a
FileChecksum: SHA1: 7b2bececc973b2781e9956ff547aaefbd133d506
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-down-to-line.svg
SPDXID: SPDXRef-4895f9fb89eb494b1debdee2b7804493
FileChecksum: SHA1: ce4e25b0c4d5c754a7ce6ef5335f26ea74e71d12
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-down-to-people.svg
SPDXID: SPDXRef-e44b73f359ae01cee437a901b42785f5
FileChecksum: SHA1: 33525f14582a52f3bbae2b33004a0bfea47c9788
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-left-right-to-line.svg
SPDXID: SPDXRef-a8e690fdec13990ffec9a220ad99e964
FileChecksum: SHA1: fd26c6544d880ee23a82586030f556aa474327ae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-left-right.svg
SPDXID: SPDXRef-2de4af5d8359761d33a461dc3dbbfda0
FileChecksum: SHA1: fcd6e4ff3845dab525bcd539f6db8cbbad348f86
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-rotate.svg
SPDXID: SPDXRef-3a25ad5bdc5e846032e5c2476ebadd24
FileChecksum: SHA1: 5454b144c6fedbf71a238fa572a8cde7d75f5560
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-spin.svg
SPDXID: SPDXRef-5e1e49ad9fb1a271b1c2270321e7f267
FileChecksum: SHA1: 864e7e100508f83a3693ea72f9b8cc78a9c99326
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-split-up-and-left.svg
SPDXID: SPDXRef-0cfa7e0b5c1791b4bd90e1f394695f24
FileChecksum: SHA1: 24970f1d0eb82efad2b8d855fa9183dc48836722
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-to-circle.svg
SPDXID: SPDXRef-f7954c8b4528a6bbd1bd07885a84ed56
FileChecksum: SHA1: f1b76be9cca38004ea609a507020e8ba1e91012f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-to-dot.svg
SPDXID: SPDXRef-59420f1eef727f1d3b97920017d69a06
FileChecksum: SHA1: e713f63aba5cc83b3a7d71180a6fccd46429cdb2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-to-eye.svg
SPDXID: SPDXRef-1fe1894ff9f029d178887504fa72cb1b
FileChecksum: SHA1: 70f48b086c8813009fac3212eae60cca326222be
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-turn-right.svg
SPDXID: SPDXRef-7483752573d05e2e01ad5a1c19bf84fc
FileChecksum: SHA1: d9100b48888c9f093c20820bff9c3126f7ebfc49
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-turn-to-dots.svg
SPDXID: SPDXRef-694b69b387d232e1a7287ecbd8565d8d
FileChecksum: SHA1: 672dfde868f2458ab7a02e445a5a63f7d9817c61
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-up-down-left-right.svg
SPDXID: SPDXRef-5d2cf1a3249861da4cc65dd59967ada0
FileChecksum: SHA1: 08afccb84debe731df56dc330c4d00bc19ebcbc4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-up-down.svg
SPDXID: SPDXRef-640f95cc2ef318cc5d2dd2dcc43cecc0
FileChecksum: SHA1: a7250d2504a9696866da8f45f6a5374a75d6cf8e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/arrows-up-to-line.svg
SPDXID: SPDXRef-67b97e6d3be865ed39811109e75055af
FileChecksum: SHA1: f18d11d52ed2ef976bc2e139fbeab03cebdf81af
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/asterisk.svg
SPDXID: SPDXRef-863bad6b683973744d27780f783687d1
FileChecksum: SHA1: e52e6dca3098dfd6d6cbd92354b57c5f6ff4b490
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/at.svg
SPDXID: SPDXRef-85c0aca090b464089389e3460bd98408
FileChecksum: SHA1: d0c619b058f6057a47399269c83a0d793df11912
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/atom.svg
SPDXID: SPDXRef-e21d98bc6b57011eebd3fbebdcf441c5
FileChecksum: SHA1: fdf045d7edfa09122d36a34edad0f8920f35306f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/audio-description.svg
SPDXID: SPDXRef-76065faaa0e6882ab6da45331c494370
FileChecksum: SHA1: ef9be4d5f5d98b095a0e1228c373a8bf2bacd4e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/austral-sign.svg
SPDXID: SPDXRef-56e14157e81645d5fc52ad7c92a55461
FileChecksum: SHA1: 07488473dd8cad47f575c77d4cb85ffc24fbeac1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/award.svg
SPDXID: SPDXRef-65297f1a4f1940ebef9e44b60072631c
FileChecksum: SHA1: 33bc4e50db3d6b1695849d6a307d279c8cd6c68b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/b.svg
SPDXID: SPDXRef-65eb9fd57ec6286df2a74a0fcadc96c7
FileChecksum: SHA1: 2491582073e47c9f929c923afb4b2494ddf87408
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/baby-carriage.svg
SPDXID: SPDXRef-2632734c7aa877d5d505fbf4e18fa9ae
FileChecksum: SHA1: d3c6b4fa03ca9a7da0d411b41d9fd1948d1e7536
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/baby.svg
SPDXID: SPDXRef-53615ef92d296345e948345d047bec13
FileChecksum: SHA1: a8234c46c4acd5d0fc7f87fe6e1ad382a99e01f0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/backward-fast.svg
SPDXID: SPDXRef-3c54cf5a4900a771af9b35e4d753ef1d
FileChecksum: SHA1: cb313e6a49fd0cad71d44aa34cbd735bd2ed6cb4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/backward-step.svg
SPDXID: SPDXRef-ce591d2d52ab06ced03c65f36fdec5f7
FileChecksum: SHA1: 0daa85d591eb056461170d615e84b95f7c2d7450
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/backward.svg
SPDXID: SPDXRef-ae4c01a6df6fd73209bbb5e943f2c87c
FileChecksum: SHA1: 54f1c6dd6e701abbc9e62a0811e4efaafbb5953b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bacon.svg
SPDXID: SPDXRef-9c004a839ab58ade1448fd00fdbac57c
FileChecksum: SHA1: ce23c9defbb09d5e0d226aebceb5f914a08b650d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bacteria.svg
SPDXID: SPDXRef-09347b7a46f373633e921fdf37390da0
FileChecksum: SHA1: 39ee8fc63ea9acf145babb5eb2c7fede971db7a3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bacterium.svg
SPDXID: SPDXRef-2445e2b80f06f2f835f382366622967e
FileChecksum: SHA1: 0f0f0fbe5753545802f3ffd38150fbde6073cd48
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bag-shopping.svg
SPDXID: SPDXRef-4c2283d982c2d02caf570c72d13197ad
FileChecksum: SHA1: 9af341e2a23ebda0289f90e79d4c68542edfbbf1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bahai.svg
SPDXID: SPDXRef-af91e450096f910eeae0f23d15244086
FileChecksum: SHA1: a2ab6ed9d9d5465df754bd5ff853967ea8b751d5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/baht-sign.svg
SPDXID: SPDXRef-26b87c8962b9c88223458b74cfde5a77
FileChecksum: SHA1: 9e5fd73b4287199f063aa4622c6c82e33bf5ea7e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ban-smoking.svg
SPDXID: SPDXRef-52c2cfe9f7cb78497dea7376c7a2a4cc
FileChecksum: SHA1: 91955a6d1cf89892d92c27b99d8fc1b1f7b2d62b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ban.svg
SPDXID: SPDXRef-4eb70303c1a85b00c95afb9e0c1e6fc3
FileChecksum: SHA1: 2e809dcf3bb7e6e29504efdb14f9fb05bc652cfd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bandage.svg
SPDXID: SPDXRef-d45b607f05fe067c3a789f15dabddd5a
FileChecksum: SHA1: b5b561acf42ea6418b5bc53ba98f0adf6049b2a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bangladeshi-taka-sign.svg
SPDXID: SPDXRef-9a26b9c8574363a5050b2c7219c97e2a
FileChecksum: SHA1: 7c9432151f120e8571bfba684a35d0b7a8d72346
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/barcode.svg
SPDXID: SPDXRef-d1ad58b5149d5c3dab3ac48250f81a00
FileChecksum: SHA1: a689d3566864ad617f96f236efba3b83c35fbd73
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bars-progress.svg
SPDXID: SPDXRef-da0e46a46161da888584877c761772a3
FileChecksum: SHA1: 94005bd07b56854d77078a39f9920eff373b7a90
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bars-staggered.svg
SPDXID: SPDXRef-3634d014c67a9db961501600aae0ce55
FileChecksum: SHA1: 98c330db912f2a9a3654059e4366f89b4c004719
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bars.svg
SPDXID: SPDXRef-01a37ca7cf2b8e1fd05fff28e86d669d
FileChecksum: SHA1: 20e85122cb1baae79d418f3316f8c46b91c6d2e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/baseball-bat-ball.svg
SPDXID: SPDXRef-ef9ab009877da6ccef62043e9fedae97
FileChecksum: SHA1: d5b0d6d1506fd8fb131bd0631f6c1e5d81737834
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/baseball.svg
SPDXID: SPDXRef-f7e50aa475249a52b065f1ce78260ce7
FileChecksum: SHA1: 1e3e4a0cb8388ffaa6b078ee17e4122fd8f248eb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/basket-shopping.svg
SPDXID: SPDXRef-a07635d76dda3fed854cbf7f04a9669b
FileChecksum: SHA1: 66ddf28fbf2987eb9d83a4d7515d9607ff1f80b0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/basketball.svg
SPDXID: SPDXRef-03a1fc41441b75aafea84ad0c30b5fcf
FileChecksum: SHA1: 9c893cbc1dc8653b00d0fe06bb3daf57bd4ac8aa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bath.svg
SPDXID: SPDXRef-962fe6e9f571d42e7547dc9f284e2f71
FileChecksum: SHA1: 42e0dc825c4c2f6f91d3cdaa9184200902e29d07
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/battery-empty.svg
SPDXID: SPDXRef-c0cb960f39c561117dee99367d69aa96
FileChecksum: SHA1: 1a5c40b7623827f72623751ab213a2c56d20ee98
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/battery-full.svg
SPDXID: SPDXRef-0522702dfec035dadeeab7c6056ee4b3
FileChecksum: SHA1: b0814faa4d7c38461d4bd0e20fe87f3302f44e4f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/battery-half.svg
SPDXID: SPDXRef-5373bf73c476a902a591017bfedc2a71
FileChecksum: SHA1: fab61fb5f30bac702443513ca6f7b0ecb486820d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/battery-quarter.svg
SPDXID: SPDXRef-dfae414d9467834f895531adc8fb505d
FileChecksum: SHA1: 192b102a587eadbc8b0e8de2cb0883b4dc8796b9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/battery-three-quarters.svg
SPDXID: SPDXRef-5182db6b01636ad8d80c6f336a63873a
FileChecksum: SHA1: 0c773f01c59c87693b8ae1ca053ace52f37a811f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bed-pulse.svg
SPDXID: SPDXRef-0f16f22f16976aabe4212e388ad37e80
FileChecksum: SHA1: 703cf102ea1934b8b6ddfd417e6979f553bfab5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bed.svg
SPDXID: SPDXRef-184efacd650d3a1dd3441b67fc67d111
FileChecksum: SHA1: 429a089ed33c35f4490cc193c3327cbf51d61b58
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/beer-mug-empty.svg
SPDXID: SPDXRef-de166b4fd4d5409e8c2bf40094c60687
FileChecksum: SHA1: 776942f1f32534ced847556d9fe1cb7e2196961d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bell-concierge.svg
SPDXID: SPDXRef-6044ecad96f4a14e0fe1f25115207c1d
FileChecksum: SHA1: 0ef1d072eceadfdfadd2aa6b09653880ee527ba2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bell-slash.svg
SPDXID: SPDXRef-d0bdc40cc1d9396987f515188f62ddd1
FileChecksum: SHA1: 2cb4fbfa904601d376650b4b337541aecaded931
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bell.svg
SPDXID: SPDXRef-bd6c75518089ccad77d46dfd441e798a
FileChecksum: SHA1: 57d04a2daf2848b7e5388cd9ca10af7c5c934a99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bezier-curve.svg
SPDXID: SPDXRef-f58476eae7204f35dd720e961afc23c1
FileChecksum: SHA1: 8e15e3a46c575aeabcf7aa092ecff41cb25e363c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bicycle.svg
SPDXID: SPDXRef-7785aafb9d90810caa48bef35e6eeb69
FileChecksum: SHA1: 694693633eeb4a57d9fd47d4f2230b82dd2afa3d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/binoculars.svg
SPDXID: SPDXRef-ac6a4c8f1b89ec340d3606bb00221cf1
FileChecksum: SHA1: df899395d2a3f899c594da6b70d77868234bc79a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/biohazard.svg
SPDXID: SPDXRef-51aef6600f5f00e67966212ee5b6a08b
FileChecksum: SHA1: 82440c86ffde02ff348140d638954623fa296b16
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bitcoin-sign.svg
SPDXID: SPDXRef-cfd9e8a6b2f2d1aac1dc0812f92f7eb4
FileChecksum: SHA1: 25928b0eb55768220f9ec0e2c657c35d9d5bb86a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/blender-phone.svg
SPDXID: SPDXRef-d972a01624736e5eccba8b0cbbf2686d
FileChecksum: SHA1: c472038d77d0fe196d28262a45e527bbcbcbc8dc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/blender.svg
SPDXID: SPDXRef-8e7330b3ba29652ec299b5d4608f754e
FileChecksum: SHA1: bbb8b3d4b0f1080bbb10c44320adbab45d10a1e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/blog.svg
SPDXID: SPDXRef-5ce669b64f56c30f3a51b757afcf1fb9
FileChecksum: SHA1: 1993f4a65720cd6cd4c6f664318e2251a92ea03c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bold.svg
SPDXID: SPDXRef-2963f086c0a26062dc2343c48855c8da
FileChecksum: SHA1: e235ddc09a4f051afc3714adcbf8bf5a262d55d5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bolt-lightning.svg
SPDXID: SPDXRef-a4db2060d5a94455a53618a3cc51877e
FileChecksum: SHA1: 4546c9a323e6e77b73ee903a277d9f5a9c0be3e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bolt.svg
SPDXID: SPDXRef-610ab526e037024da4d1852576d206c4
FileChecksum: SHA1: 4fddd8ff247f0683d5d4004a71c8c78603dda684
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bomb.svg
SPDXID: SPDXRef-65a375686fc6b42aaad5f81b98041c36
FileChecksum: SHA1: 546ca6d2daab374f372b97b784d202bccae8a880
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bone.svg
SPDXID: SPDXRef-29c0ad0d898ae5a4bb49d86425bfd2c3
FileChecksum: SHA1: fa435d69173fa339ffb1703c0b778a1c25604acd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bong.svg
SPDXID: SPDXRef-8dab078f4887d19b77c41361e0d70415
FileChecksum: SHA1: 89e6836dba144c38bbb14deba774c164f6f3a192
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-atlas.svg
SPDXID: SPDXRef-8466179a9180504af420ad6b3b147f01
FileChecksum: SHA1: 772b32bfba9e4e36b96ce453916669f69bdcae72
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-bible.svg
SPDXID: SPDXRef-653b478e1cf26e008dac18112cf69d28
FileChecksum: SHA1: 6898d61cc1dfeb5e9ad0319b62aef9d3fe7550ba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-bookmark.svg
SPDXID: SPDXRef-fcdf7db3f651e394d23fb5011b7461e6
FileChecksum: SHA1: bc1e72452d48fd3ac0afa5f3a540cb104add8e87
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-journal-whills.svg
SPDXID: SPDXRef-ee5b9edd4b98f2fb6cc826ca057cd069
FileChecksum: SHA1: f4d6fa55df40cc25f2a8d5b25d9b75f8349a5a95
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-medical.svg
SPDXID: SPDXRef-0512375b6d5848819e48e13eb9a63504
FileChecksum: SHA1: 0ffb1e2a12456db34a1624397df1f82b32f42a2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-open-reader.svg
SPDXID: SPDXRef-41490661b23057acdf9b47eba4c06fe5
FileChecksum: SHA1: 72b23abb196d3f2a3a638f568980082a27f85305
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-open.svg
SPDXID: SPDXRef-53401d21bd0f47ad9c2395f3ce08cc47
FileChecksum: SHA1: a77466a5bc376b24491d331732c11cd0ff1551ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-quran.svg
SPDXID: SPDXRef-e8208468894370bb8dc888532df8286f
FileChecksum: SHA1: 27f2ee72a78c8e199cd9b6d8a39d4b1f2d7cd582
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-skull.svg
SPDXID: SPDXRef-52695e47f90770612b7d26bd86f388dc
FileChecksum: SHA1: 5f08d8f0ecd12703633f92c97d2959288eef009d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book-tanakh.svg
SPDXID: SPDXRef-7e510b14fa5a32af9b7a6d7b56e847e0
FileChecksum: SHA1: 9b57e29385a865fa9244734926eab8eb10bd6d8e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/book.svg
SPDXID: SPDXRef-5c7b1a7f68193ca0b267747b360ac1ee
FileChecksum: SHA1: f451145f3f2a6ed315410832bd3b6724862f8a3a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bookmark.svg
SPDXID: SPDXRef-7231442f2a2fe92dfa1a32f0046b0852
FileChecksum: SHA1: 28f200d25f817805a318ea9b8504650230cf4bbe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/border-all.svg
SPDXID: SPDXRef-8658e29dec69ebdbe39242d1ff51e1a9
FileChecksum: SHA1: c0e5c7b580206a2cf345743ac4fb5b88a67b7ee0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/border-none.svg
SPDXID: SPDXRef-0c943dac5b8c29f62d76ac1ca9e3c3ec
FileChecksum: SHA1: 5deef348c540b0730d440feac40fff423a093c45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/border-top-left.svg
SPDXID: SPDXRef-b8aed17aaca9df48fad92f6b5bff951f
FileChecksum: SHA1: 8417a91b4422ed6621cedd4c679a2d3ab1cbb550
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bore-hole.svg
SPDXID: SPDXRef-ccd08424bdd69748f134d3c812f8d888
FileChecksum: SHA1: 9894c4eec8d92bb5c6fa6d976347fca46f458f5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bottle-droplet.svg
SPDXID: SPDXRef-b94e171bc18e3da26bae190762e4f06e
FileChecksum: SHA1: e15fd62907407c1e96668abc8f37c30b2b3261b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bottle-water.svg
SPDXID: SPDXRef-c848829d1375097fb0cf704370183a26
FileChecksum: SHA1: 76dff81670ad5a11753126eb60975642ebb411d9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bowl-food.svg
SPDXID: SPDXRef-95dd40298377c8e181a70b5984c4b79e
FileChecksum: SHA1: f15ddf785e587a9e8d45b0980b0952d5cbbcf9fd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bowl-rice.svg
SPDXID: SPDXRef-6473693b61afc03f69287cbbddd09132
FileChecksum: SHA1: 1148cf607371af2000564f55e885d424e86d0453
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bowling-ball.svg
SPDXID: SPDXRef-4bfbbac4e42832ecb52a8b0f3564f3b8
FileChecksum: SHA1: 18263f0fb826d29379f25e78f7fe2282c7086f53
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/box-archive.svg
SPDXID: SPDXRef-f2aec78090d382939f4d137c8a249134
FileChecksum: SHA1: 29a0eb161a625117ffc81a0189b0482f034878d5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/box-open.svg
SPDXID: SPDXRef-2f1750daa3943ec0e4287a21778f4d63
FileChecksum: SHA1: 0289e7e1ec2819813d121363813e3c38840d2a97
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/box-tissue.svg
SPDXID: SPDXRef-f5e7d8102196be4b51709eec40c5c667
FileChecksum: SHA1: e0a7f95e532baa2791e6588e4f63c3a755c2144c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/box.svg
SPDXID: SPDXRef-964ec07fc0b4238ef1a5b346da9b5256
FileChecksum: SHA1: 884849975487d2fa2824a9040fee02fe3d602d30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/boxes-packing.svg
SPDXID: SPDXRef-16e6cbace484bb37d36f99331a568708
FileChecksum: SHA1: 4b1e60d4c00f43527d51638e2310ab6d16c0d185
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/boxes-stacked.svg
SPDXID: SPDXRef-d53edd553227e33d14cae74808154fd5
FileChecksum: SHA1: 9f39a253b33fd140dbe894c69a4c4f820b7b2067
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/braille.svg
SPDXID: SPDXRef-05b6cfe4b9045515cf6e67a88d6b5f69
FileChecksum: SHA1: ead58586fa6358198e00c1466d224cbe58fa804d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/brain.svg
SPDXID: SPDXRef-04eb38b3864d251e63c6cc9ddf1d0f86
FileChecksum: SHA1: 4e8844735d6f9531db54d2cb1bdbc75abf273b46
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/brazilian-real-sign.svg
SPDXID: SPDXRef-8085c72213ad876563d24ad4a7d895d1
FileChecksum: SHA1: 0c6c7de01f376513145b1a5c1ffad69829d5435b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bread-slice.svg
SPDXID: SPDXRef-a2f02ee3475a49e240830665c9679245
FileChecksum: SHA1: 01c87fc29558d81c4cd04b059299ed6bc922798c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bridge-circle-check.svg
SPDXID: SPDXRef-f6b1c1ddd91a1dc36af0d0402815f8b6
FileChecksum: SHA1: 3a914e1068d5af17bf59d2a9337fcf9828305702
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bridge-circle-exclamation.svg
SPDXID: SPDXRef-9205c55194cf3e6e966b467b98a07a4a
FileChecksum: SHA1: e6445bcfaa616987d1e2c4542d02d6be9c4c8473
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bridge-circle-xmark.svg
SPDXID: SPDXRef-331077ff44f798430d5dd1cca5d44794
FileChecksum: SHA1: ff2520811b50d9ee6bb69a354e96c77d54c976d5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bridge-lock.svg
SPDXID: SPDXRef-a77c694c603792805de10b108d5e9599
FileChecksum: SHA1: 5b17e8e6de099bb04750852fdd358f1102b36144
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bridge-water.svg
SPDXID: SPDXRef-e6abc3d28242afeae1379dc221172b96
FileChecksum: SHA1: 5a53b6f2480a8f7537101ada1bcde99fd82e7fcc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bridge.svg
SPDXID: SPDXRef-f32801d5d42d463b5e0abb4a2e66f64d
FileChecksum: SHA1: 94212d1679285beb67b1bd8cff474e042e3d3455
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/briefcase-medical.svg
SPDXID: SPDXRef-044aa08dd90bdb7e80896a8f92a8e063
FileChecksum: SHA1: 2f9bf71bf22a01f9a69b2de7004db5b96035b98e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/briefcase.svg
SPDXID: SPDXRef-edff6608fdff2674885fd39ddea2e11e
FileChecksum: SHA1: dfd85d064f3d5d672adc50857e4057a84a30f613
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/broom-ball.svg
SPDXID: SPDXRef-f11ce3c8d0bfba3a59de4ae4db2207fa
FileChecksum: SHA1: d1cf5d4bbed40bae6346153e0bc5bb5ccd08b28f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/broom.svg
SPDXID: SPDXRef-f6a93b42944dfb6d5ae84c200426d89b
FileChecksum: SHA1: f36f15dd40a42e7702c62909097cc7a9d5d768d3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/brush.svg
SPDXID: SPDXRef-57cf38bc87b63b53578bd2dd84b09788
FileChecksum: SHA1: e8779cf130d8cca726453bf3fcf52e86dcd9ffc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bucket.svg
SPDXID: SPDXRef-58ee95cece0abba8b7e0110c53a9cd09
FileChecksum: SHA1: 6f432b788701528f8c65337349a65f859dc747c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bug-slash.svg
SPDXID: SPDXRef-f87de5c8542bfd0d0c167f763b33c574
FileChecksum: SHA1: e99cfbc3a8f7edca199b3fb11d15b8acc64f4355
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bug.svg
SPDXID: SPDXRef-d6b146e18881adc1c63212964daab52b
FileChecksum: SHA1: b0d9ba8a01790c62d159dff88ac99e221b359250
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bugs.svg
SPDXID: SPDXRef-f4ae6ba54aa7a7912545ce0cf59dab75
FileChecksum: SHA1: 4e28ee5115b71fdbebc81157092a08a953b4d05e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-circle-arrow-right.svg
SPDXID: SPDXRef-c86f7f4b31c8ab15b47e3a98cbf2c018
FileChecksum: SHA1: 3660d4057e8e1053d3dbc0240b30963ac6de7638
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-circle-check.svg
SPDXID: SPDXRef-14c32b9aae86ba23509301c7482b9467
FileChecksum: SHA1: 610950264e3ec589db226365b964ccebb24c0eda
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-circle-exclamation.svg
SPDXID: SPDXRef-8dd7fa211dc31e4b488a68af1fa18a96
FileChecksum: SHA1: dc1781bc17cd35075892d3fbf65b7276faf5b003
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-circle-xmark.svg
SPDXID: SPDXRef-739a9fea1b4a02e84dae677194d0260d
FileChecksum: SHA1: 3104579ebe8dcd6dccc4b113fd8fc4488b39734b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-columns.svg
SPDXID: SPDXRef-7c170e695e47e2f600192b6c5b75e57d
FileChecksum: SHA1: 7bb21aaab6fe2f072d014eb56797b69e0e37b101
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-flag.svg
SPDXID: SPDXRef-e0cf01886371e53fc34f8d3a67fa9786
FileChecksum: SHA1: 58ba3133a15bf3e5908c644ae00ac815d93ed1bf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-lock.svg
SPDXID: SPDXRef-d2532c74b8d9192ae317538837f3bba1
FileChecksum: SHA1: 69b500fcb3d8da3f0ed6b136286e1351d1c11b95
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-ngo.svg
SPDXID: SPDXRef-1716a78f530cc902accf01277deca93b
FileChecksum: SHA1: 63d6601bca18df53cc853354191ce14910536e08
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-shield.svg
SPDXID: SPDXRef-d400bb85f5da385efe4df3f861a48425
FileChecksum: SHA1: 36671baaddb8bba633480102b42f3f522b5a995b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-un.svg
SPDXID: SPDXRef-769d7312432926aad1b8d2af1b08bdd9
FileChecksum: SHA1: b6ed828f1c04417ef60610b37c41df75c2d4d760
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-user.svg
SPDXID: SPDXRef-41b4519537069ccc640f59f5cbcd227a
FileChecksum: SHA1: 7cf64d62396763cd750631243c528a34981bc9a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building-wheat.svg
SPDXID: SPDXRef-0d3cc384df2c448e781da99c8729e99e
FileChecksum: SHA1: b9853718f9da0fe2bbc263a4c2155ff3d68ea223
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/building.svg
SPDXID: SPDXRef-8d91de6c1fedef9dc50f9ce4f5fb6dcc
FileChecksum: SHA1: 37e79b7055a52687940726b2c343d25b89d25daf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bullhorn.svg
SPDXID: SPDXRef-f723cfcf8761a0092f19f9521fa059c2
FileChecksum: SHA1: 8650dc8b4c2e281563b31abb6e2657b38a2d99bd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bullseye.svg
SPDXID: SPDXRef-b8acbf5c6a6679ba98b82394945501ea
FileChecksum: SHA1: 42725b3ab84554cd3325f0c5453dab27fdfb4d30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/burger.svg
SPDXID: SPDXRef-e6ec5d122696ff58a50c125ef7b5cde0
FileChecksum: SHA1: 63d1fb11166a34be0f67932eaf4fa3a3b7889650
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/burst.svg
SPDXID: SPDXRef-ae299aea857f6ebef1525f0940eaa089
FileChecksum: SHA1: ea39af35c9575aa700c69e50e5575c0420f403b6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bus-simple.svg
SPDXID: SPDXRef-dab25434e0aae37e7d86440e7cec896e
FileChecksum: SHA1: 217b2547a26bbc9686c201896f6cb2d1cb3f71aa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/bus.svg
SPDXID: SPDXRef-c692cc36737280d63779d9c4beaabb80
FileChecksum: SHA1: 66155e252eb747c2032405111d834b7970b1b7ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/business-time.svg
SPDXID: SPDXRef-9c7f6e094d674b879612b5d9ed851824
FileChecksum: SHA1: ed46fb2adf6926fa63d6fbdbef411bf9e86daaae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/c.svg
SPDXID: SPDXRef-928b60f6d9963f596711b27f10732162
FileChecksum: SHA1: 4d8e5c47a05ef26804031a1441d8512cd47c4723
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cable-car.svg
SPDXID: SPDXRef-1acadcb25f8a07564fa90bcc731a84cb
FileChecksum: SHA1: ec128c6a18b3cbcf839a478e32bb9cc4d0031306
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cake-candles.svg
SPDXID: SPDXRef-d2db6e8cd44f8859cfa6195bba3d29c5
FileChecksum: SHA1: f2c7c15adc613eb2fd096a796d3d544820b8b219
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calculator.svg
SPDXID: SPDXRef-6a2bde73c718c9e2067bff31bf4fc504
FileChecksum: SHA1: dd03b0add1ac8a43f2be9d55c54168936b371f3c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar-check.svg
SPDXID: SPDXRef-e07fbe3b1c6e50611a76ffa2fbe8ef5c
FileChecksum: SHA1: 66d5dd8e9071a2949545976b01cdb60d263a9fcd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar-day.svg
SPDXID: SPDXRef-5f0952a8280bae55e2afbd6f808c478c
FileChecksum: SHA1: 9e07735df2a91d4a60ec37453b1936bafa389373
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar-days.svg
SPDXID: SPDXRef-7a8a4bd11770e754b63b53a349666f4c
FileChecksum: SHA1: bc84b1933e22d537e5f30ee59dc0e04b495fdeb8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar-minus.svg
SPDXID: SPDXRef-3a925b6955a20ea0dd41ac1e5c22ac47
FileChecksum: SHA1: 047f1af3a644c1c28a16040f6ea48a200d5f9ae7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar-plus.svg
SPDXID: SPDXRef-07f69c7b3c2fd0f82f15943e69e76ce1
FileChecksum: SHA1: 97d910b53105dabdc66f2f1f607b354a09eaf9f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar-week.svg
SPDXID: SPDXRef-35d31b3120adcbfcccca18e270a06521
FileChecksum: SHA1: 8e8e74ff4fd073e12e983dd373840130ec066f1f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar-xmark.svg
SPDXID: SPDXRef-3eaffec2ce159633386cc1f4cda8d320
FileChecksum: SHA1: b4a58e504d5425df4b87ebbda0070bd5e361e2de
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/calendar.svg
SPDXID: SPDXRef-78ecd963d3eecbb5338876faae184f74
FileChecksum: SHA1: 0346554da7f4498d80d040cd10aad2f899f3fc16
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/camera-retro.svg
SPDXID: SPDXRef-5811608e28e9854889a2c34668d3e28c
FileChecksum: SHA1: b26f1629a9093d3bd8d952cbfc417a4799532af4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/camera-rotate.svg
SPDXID: SPDXRef-6af2461e58e2019749172f3674940a08
FileChecksum: SHA1: 98566dc60ffccb83a1eb437793711e9ea356509d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/camera.svg
SPDXID: SPDXRef-c343a2f67260269e940d621573eb4ef7
FileChecksum: SHA1: 7959ad55ff308414c2fff3e5232bc780879a3ccb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/campground.svg
SPDXID: SPDXRef-2362313ea90272d107f7a15fba1ad55e
FileChecksum: SHA1: 8602c3ed4d34fccbb94563632de6d1f147a673a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/candy-cane.svg
SPDXID: SPDXRef-da95d3c28ac99f80ad44769a6e564d24
FileChecksum: SHA1: 976d8e94dabf064c54695aad0518e3329b51249a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cannabis.svg
SPDXID: SPDXRef-51786ac8db8c5e0310f3cd3b39c01009
FileChecksum: SHA1: fa61b55345d42212a78ee07e8881879c06a310fe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/capsules.svg
SPDXID: SPDXRef-ab30c2f5588261cd00b092afbd6e7110
FileChecksum: SHA1: 5718509919c02719686ed284ff530f03a8008723
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/car-battery.svg
SPDXID: SPDXRef-f8ac2ae1ca247d909632b21e9676e577
FileChecksum: SHA1: e414bb95459fe0bd101ac08269ac52eef8765311
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/car-burst.svg
SPDXID: SPDXRef-b6dd0652f6a4ea08063b6f694f5f66bb
FileChecksum: SHA1: 0b2cafa3d39822445dc94657a675de50f65c1453
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/car-on.svg
SPDXID: SPDXRef-1ec504910e07972b8b1ff58beb154816
FileChecksum: SHA1: 508f5cc751a24a68f1809aa8122a985a6b2b9482
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/car-rear.svg
SPDXID: SPDXRef-d9b21aa47fde5a79469c9f906251873e
FileChecksum: SHA1: e641d1de0df3c3afdd043854f98e2b847909b2f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/car-side.svg
SPDXID: SPDXRef-39f8624fc60535b4140664c72e2b5180
FileChecksum: SHA1: 87c67c7d9862787470a03239fb9c5ed7c731e990
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/car-tunnel.svg
SPDXID: SPDXRef-ed0ff9d729be708affe6ec4b04b1d5ea
FileChecksum: SHA1: ab520b2ea38b11e0c95f14df2509df5d093dfd35
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/car.svg
SPDXID: SPDXRef-a069800e7b355719bb6427d053fa01e7
FileChecksum: SHA1: 854e00b13581a233533f2f5971babc1ee8a05d89
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/caravan.svg
SPDXID: SPDXRef-143b441f2c4dce896e8e58ebb5e938fe
FileChecksum: SHA1: 000c80eabc8d7bda88acf0d839278c458dc214b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/caret-down.svg
SPDXID: SPDXRef-ce20225eda1a13561a90c2a9f1aa6bc4
FileChecksum: SHA1: c71f85a94b90ce53b743ddc6cdfa33f31efbbbe0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/caret-left.svg
SPDXID: SPDXRef-d7f977627004660f8fe9afc058a4ab29
FileChecksum: SHA1: 4eb19ea14cb4d056b4f28e7363545722e4d72408
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/caret-right.svg
SPDXID: SPDXRef-abd56dce6710808ab5990d7bfac0447b
FileChecksum: SHA1: 9fe0c9c77d8f2ce876d3aa21e67bfadc9d933d15
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/caret-up.svg
SPDXID: SPDXRef-dc7f47987c4bbd99a4d047043f692ebf
FileChecksum: SHA1: 4cd135187f7cc8646ef4e8cacfd54ff1bbdc77c5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/carrot.svg
SPDXID: SPDXRef-8a4459937f741da8df95a52038495418
FileChecksum: SHA1: 0b2c0ba314805ab58c33dcd455a1e9184e656fd7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cart-arrow-down.svg
SPDXID: SPDXRef-8517a0a7ca5e7d48dc5288edd1e57d8b
FileChecksum: SHA1: c454e41e3cb836092a60f5b5fddc3f7381d0c9fb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cart-flatbed-suitcase.svg
SPDXID: SPDXRef-d9904e84f7fdab87bcc234f0b02a01ec
FileChecksum: SHA1: 440ca97a91e8c70245657748a7cc640ca750afbf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cart-flatbed.svg
SPDXID: SPDXRef-17adc3cc80033e3f476cb292481fc13a
FileChecksum: SHA1: 68f56b4ee7710abc91d9dd29348731590e6ad0a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cart-plus.svg
SPDXID: SPDXRef-6caa5efb5cbe620495b9dc1efa6e87f2
FileChecksum: SHA1: 5a9489577384155435cc479fd8cef3bb11ddc03e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cart-shopping.svg
SPDXID: SPDXRef-c6b98d9fae0c7d769a8b22a7e53c7ef1
FileChecksum: SHA1: 41ef3d7bbbdf94eb8e59a6d060e8fac0bf74f9ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cash-register.svg
SPDXID: SPDXRef-48c03aa9f0fda911a58d58f855de8816
FileChecksum: SHA1: d40255b4a383a1abe0290bed6f4267d13bf84c55
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cat.svg
SPDXID: SPDXRef-f0eb825ce0cbf0fd6527a7117f75670a
FileChecksum: SHA1: 6aee28519785a5ca6912559eb7980807ded014dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cedi-sign.svg
SPDXID: SPDXRef-33c0f22630d76129408cf69cb0109f5a
FileChecksum: SHA1: 59730a37c9c15be2c4fb6f9d3a726ce79c66bb22
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cent-sign.svg
SPDXID: SPDXRef-6827fa232fa4d2cdcb4e9bb95b399d2c
FileChecksum: SHA1: fc9d916e76ca3d579d9124d2563e2b0557717d26
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/certificate.svg
SPDXID: SPDXRef-fbc9e6479daf720170c502c35d9283ce
FileChecksum: SHA1: dd649af04faeffcc5b05edb078121b5a157887ac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chair.svg
SPDXID: SPDXRef-6cd73033aebd86db7aad34d860d91f39
FileChecksum: SHA1: 3c7e8980f08261b4432b9e09329130252d87bafb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chalkboard-user.svg
SPDXID: SPDXRef-ea10abf8ea650f0c68dece24e02d404c
FileChecksum: SHA1: 965a2e568b92ac6371f2ebb04ac1d90f32520e70
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chalkboard.svg
SPDXID: SPDXRef-92bcf736a623d96b7af84bab141335d4
FileChecksum: SHA1: 2fc670f52c443d974fdb3368e2e20fd355239c0f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/champagne-glasses.svg
SPDXID: SPDXRef-6557b98edb05278f098d2f19f8537879
FileChecksum: SHA1: c2c3de8b7be0f59d6f794e0135e2c77ecced3f28
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/charging-station.svg
SPDXID: SPDXRef-48935795f05cc80cbe97ed3d37e040f2
FileChecksum: SHA1: 82fe99f2b790ec390b7dfea8eacc166ff04a52db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chart-area.svg
SPDXID: SPDXRef-0c84b4b0b033e4f51b39d1cc8307c7cf
FileChecksum: SHA1: 74967c9f6cf011f483cc363cce5682c9a6d45905
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chart-bar.svg
SPDXID: SPDXRef-22dd0b624a93de75ef349b89b89f951a
FileChecksum: SHA1: 169ab376e43de2370a770a2f09f501c11a6e7a24
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chart-column.svg
SPDXID: SPDXRef-b77cf86962fdbb5ac22fa3787de842b1
FileChecksum: SHA1: 2a2f92b68b708c899905bbc6a2016909194d4e28
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chart-gantt.svg
SPDXID: SPDXRef-7bdb3f01d8ac21a61d8da6e44350697b
FileChecksum: SHA1: 230f910862523337d4bfbcf773ee456dd024d1f8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chart-line.svg
SPDXID: SPDXRef-a4b999a7030af899df9fb0c760a81d00
FileChecksum: SHA1: e3e6ea4f20c335ebcf71cc17218f9970af77e06e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chart-pie.svg
SPDXID: SPDXRef-cea24d4c66cedd5943d9e18b09b1015a
FileChecksum: SHA1: 92475882dc0add18ad62032c6bff5376a4735bdb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chart-simple.svg
SPDXID: SPDXRef-50e2f0cd24b9de60d04019473b8af4bd
FileChecksum: SHA1: ea7cd0efe46657be1f2c72516cf4e3375a28a785
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/check-double.svg
SPDXID: SPDXRef-171d99c1a0ab520438252096b4be6d1c
FileChecksum: SHA1: 0f9533313719fb90cdfdc8be4f38737e7303226f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/check-to-slot.svg
SPDXID: SPDXRef-154512624853374308d175b42770d4ea
FileChecksum: SHA1: 5c6baa0d76e60034f38c8495cb259bd9c36a4025
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/check.svg
SPDXID: SPDXRef-419e69f2f2442425916e719011f8b067
FileChecksum: SHA1: f78c18c09968a94aea2c4a862c769f6368347f9c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cheese.svg
SPDXID: SPDXRef-d334848fea05021b06c112ed9b612d97
FileChecksum: SHA1: 7a2566e7eabdaa0f333b378bb3c25e8c4bdc5a1e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess-bishop.svg
SPDXID: SPDXRef-c6ca349b5f4e34c170c3ec7a0f69bd56
FileChecksum: SHA1: 328893cf9fc2e81f87f0cd7999df2ab744478685
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess-board.svg
SPDXID: SPDXRef-47a943412b7ab6ee94d662cc61ef613a
FileChecksum: SHA1: 14f810fa078962c8862707f395f79e3c5f54373e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess-king.svg
SPDXID: SPDXRef-b3f5d812bba147d99444b986408c4fa4
FileChecksum: SHA1: c06ad65f68f8719416bb3b22303c7d925cf82371
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess-knight.svg
SPDXID: SPDXRef-fc7ba18231b0acb2c17afc61bd18f77d
FileChecksum: SHA1: 202463be2dfc854fe7ca41e6ed5e3d0abc066a71
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess-pawn.svg
SPDXID: SPDXRef-6fc98ccc07903a110862026b756d9541
FileChecksum: SHA1: 3a00a11f7cea81544d2303ad9435bd0a55314fdd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess-queen.svg
SPDXID: SPDXRef-5795abcc4917ff45b02ae2e15c99915d
FileChecksum: SHA1: aa64bd5d18d292e20914c0733226f4489ffa6341
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess-rook.svg
SPDXID: SPDXRef-28396ca14001f08a5cd8f44bf177f2da
FileChecksum: SHA1: 69befadc3d11bbbdb010a1dd1bbd5da4c631caca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chess.svg
SPDXID: SPDXRef-532ebd19c3515b43becb7ba82a37ca2c
FileChecksum: SHA1: 544c69fb8f86a5f2f699e914256e7938675fa88e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chevron-down.svg
SPDXID: SPDXRef-fccef9e5f103e046745eb9d84cf339a6
FileChecksum: SHA1: 22d82a1b47d0ac6231728a28edc5893bbc9c522c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chevron-left.svg
SPDXID: SPDXRef-7918f245ac66e3edb6ae3f808abbb3a4
FileChecksum: SHA1: 1c67e94ca23c06118642027a4dda3085f21e0bfe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chevron-right.svg
SPDXID: SPDXRef-29c46f8832903f610e546f4396fcbde1
FileChecksum: SHA1: 19d1c7d551b4ade68ebcf433c321ae940a4f9aee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/chevron-up.svg
SPDXID: SPDXRef-ed053dfe053fe82f0fa2aa8070ad061b
FileChecksum: SHA1: 38b6027275b7e1a646a8fb6d4f5e4b6b04deff87
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/child-combatant.svg
SPDXID: SPDXRef-4325d16dcaeb04ca4a384b4e9eb03ad7
FileChecksum: SHA1: 70800a8ed989c49dabc7373e87e8091ef6a2defd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/child-dress.svg
SPDXID: SPDXRef-d2ca986500a513c1ecd0deb94386a738
FileChecksum: SHA1: e371be690cbebc435411457a1f0c1a69de144e5d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/child-reaching.svg
SPDXID: SPDXRef-7de2c39d75548fb7f40bb6b99086125d
FileChecksum: SHA1: f4daa46ae2d9a5372aa77992eca37b5a90f84511
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/child.svg
SPDXID: SPDXRef-81fabc5fa1306f7b51c64c2149dcedc9
FileChecksum: SHA1: b48357c32cfdd45437d86138fc5da3d1ae8fc701
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/children.svg
SPDXID: SPDXRef-27d2568937c50cecc96ce42a85a1c7f0
FileChecksum: SHA1: 58b407ee1660364058a4e3b22566d88e988055b9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/church.svg
SPDXID: SPDXRef-ee31393af3ab67f7c69dcc666f74d3e3
FileChecksum: SHA1: 510766a49cdd8f579ee9f3a45009d7b91d80325e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-arrow-down.svg
SPDXID: SPDXRef-92a592ac9d08a4729d7fa12a7828df52
FileChecksum: SHA1: c10ed5cb9aab3541d703c391b0621d5910a267f8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-arrow-left.svg
SPDXID: SPDXRef-ea858cba030e2cb29f68e5b4b4de9bea
FileChecksum: SHA1: da00978101be964bcb01cdb2e097e1609058c040
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-arrow-right.svg
SPDXID: SPDXRef-217c716e0c673bf13f8c464542395405
FileChecksum: SHA1: 9602f05ce4b47f81dfadffb1a00f4ff91f35c707
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-arrow-up.svg
SPDXID: SPDXRef-c6a9c09413e097522ce8bf5fce2920e2
FileChecksum: SHA1: fd1063a7b5935ecd771452a919393b0570a1b079
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-check.svg
SPDXID: SPDXRef-5b6003d1aaa34274f983083c788dffb3
FileChecksum: SHA1: c37317659b32f939b02b26a0d510a75ab45ddaee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-chevron-down.svg
SPDXID: SPDXRef-1a5cc0023e4f406fe29fde01197b11fe
FileChecksum: SHA1: 9e63554bf6784709be3821dd0ba20bccfbb2ad70
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-chevron-left.svg
SPDXID: SPDXRef-8db58ce00e4e133993c375f3de48ec6c
FileChecksum: SHA1: 99eea961a685f58f7a2deec6d689ff4809e45257
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-chevron-right.svg
SPDXID: SPDXRef-12404ca3c1b869f697d18bb61f0056a0
FileChecksum: SHA1: 530e76c1f5ac90d4d04f2f9cf9a64926dbdab1ab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-chevron-up.svg
SPDXID: SPDXRef-27225361b23783ad0f1b7b0f7a592b47
FileChecksum: SHA1: 83a418d0271f10dc77e2ed21ffc00d3cfdadb7a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-dollar-to-slot.svg
SPDXID: SPDXRef-694ae580f861758b53a0f1d273e9b505
FileChecksum: SHA1: a9e224d494f5ca0485816bc8c1f69764965ac095
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-dot.svg
SPDXID: SPDXRef-4a60bdc241fa75c220ed34b77555bba3
FileChecksum: SHA1: 7a30325d36fd0a70828f0072ca877f1a6d0862f6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-down.svg
SPDXID: SPDXRef-521c4712c8fc65dfc197669721aad76f
FileChecksum: SHA1: feb6094398679d46dff44043e3ef815017b13de4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-exclamation.svg
SPDXID: SPDXRef-0a233fe1f7256c2153c5f6d047422e37
FileChecksum: SHA1: 030bacd9844b7918375d8d22d73aba3674787950
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-h.svg
SPDXID: SPDXRef-c996620461b836c85dcbfc4547e0bd2a
FileChecksum: SHA1: 02ff5619c28e234782c373270839495c0b241dae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-half-stroke.svg
SPDXID: SPDXRef-d96e5a9d7a3cc0b272cf522517f79bc5
FileChecksum: SHA1: a641fc042aa6527992ce87cae8026518d8f2384c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-info.svg
SPDXID: SPDXRef-96c7cc473bc5ed33785adb685ecf5f6a
FileChecksum: SHA1: 4f3afad64d8c2e753e04d8f65367c2f0f7de3988
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-left.svg
SPDXID: SPDXRef-7e141c42bc50270da5f1667197d8c836
FileChecksum: SHA1: f371fe2e40d44f0538a69d8ed6b14eb261d42422
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-minus.svg
SPDXID: SPDXRef-7a9f570688f4469e8f0b0362fbf2adc8
FileChecksum: SHA1: f1ab9567d0785d7e4b71306b412c89d8fffc7328
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-nodes.svg
SPDXID: SPDXRef-aa7228578c91561dd81e3fa4d19a7f06
FileChecksum: SHA1: c2f54a649cd90811a516829ae4e4305e604696ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-notch.svg
SPDXID: SPDXRef-b8992f6d0f600c81914e5e881366431d
FileChecksum: SHA1: 23a018c02d24ed9c598cbe9f0d2ecf23c0568ea1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-pause.svg
SPDXID: SPDXRef-5d05d85cef993b1c38ac0849492d26d4
FileChecksum: SHA1: 60dd76f43957597b15768c11d7c54d885ef0dd22
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-play.svg
SPDXID: SPDXRef-c6547801ace6ac2dfce1f767fdd23959
FileChecksum: SHA1: 0d447af6658013cf2562c38481658416b2550076
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-plus.svg
SPDXID: SPDXRef-99a66615e5fae28ddafab637a2fd6f44
FileChecksum: SHA1: 4ab41792a18e5ed5ab75e424267ec048f4609552
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-question.svg
SPDXID: SPDXRef-59626aa1145eb3dbb407c227e792efc2
FileChecksum: SHA1: e2aa1d4d2461834a8728489c29d381fea1406663
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-radiation.svg
SPDXID: SPDXRef-e05c5dc870714cee8ad262a38fffd8b7
FileChecksum: SHA1: 11614aeaf31238cc2c54b703090d331306b4ac4d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-right.svg
SPDXID: SPDXRef-800476812b4e43e822e1fab48f6a24de
FileChecksum: SHA1: 895db13f43b9c4cef2b0b90d4b93f837b733d727
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-stop.svg
SPDXID: SPDXRef-47dc2eeab8494ea113c3d003a5be38e8
FileChecksum: SHA1: 59f4d007d4774177cf2b34e489d64695e7048035
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-up.svg
SPDXID: SPDXRef-26a2956ab6d3ca5bbecf1e3d55e89e48
FileChecksum: SHA1: a8f324254e1fc15d9c4e2be38d5f8313d572605c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-user.svg
SPDXID: SPDXRef-693f98197682ab6f29ab45448a656bbd
FileChecksum: SHA1: 54afb08568518eb6b7607a64ac735c8dc390c43d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle-xmark.svg
SPDXID: SPDXRef-75c435ff0eae3f1498c29fd3d1191726
FileChecksum: SHA1: 1258b800f704d42bf29dcb3c51e48f3b1e11e34d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/circle.svg
SPDXID: SPDXRef-68d30a265b25cf49a2fa72e4ed755ffb
FileChecksum: SHA1: 4e4d8a6306f194c2efa0c5ed11a0340485ada895
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/city.svg
SPDXID: SPDXRef-5275ea66c2d956dff435b0a6c3cfc320
FileChecksum: SHA1: 6ee7324243d6bab79c1c7b8e6ad15e975fe01843
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clapperboard.svg
SPDXID: SPDXRef-55d3620b94bf203f6df42f1344a29379
FileChecksum: SHA1: ecafed7f7f3a7cc9f830704d38e2fee8f0722d07
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clipboard-check.svg
SPDXID: SPDXRef-2753be5c156e2471424c5b519503a06f
FileChecksum: SHA1: 66795a1c266b42fb6bd507db9e9a99d8e8040b94
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clipboard-list.svg
SPDXID: SPDXRef-cf6845ff8424229821e12cc3c819f16b
FileChecksum: SHA1: b58b59ab2e2f0a10712899e26a9b2c072dd3c4d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clipboard-question.svg
SPDXID: SPDXRef-2522ee8ef73edd8799a094b8a5c5b747
FileChecksum: SHA1: 7e5ba12dc46b1c4a206f498718e5cf1f2e6ca80a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clipboard-user.svg
SPDXID: SPDXRef-28c84a7ed89324ffae1010170e94fcde
FileChecksum: SHA1: 501e4ff33e84859458aca0af70e6a7d65aafb28d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clipboard.svg
SPDXID: SPDXRef-e08f71274530ece7de7b6a15cda74d61
FileChecksum: SHA1: 77ed4801c9a1d7a5a0a69a5d1141cee07230c6a4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clock-rotate-left.svg
SPDXID: SPDXRef-7c13b8ced2b456d77c56c5822164927d
FileChecksum: SHA1: e00fe60588801c36a519dc877f88c0c393af17a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clock.svg
SPDXID: SPDXRef-2e5d6eb80d11eeba4b7ea6f5f60a1a86
FileChecksum: SHA1: 7e4516f1cd27dabb9b88314080d3030a8c7cf5db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clone.svg
SPDXID: SPDXRef-bb97179b2a6c2256d373a188633b76cc
FileChecksum: SHA1: 5bfd211c21e4294f6257ec027d4777fc7c48c075
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/closed-captioning.svg
SPDXID: SPDXRef-1230a0358473c5840c162ff6d58e7b61
FileChecksum: SHA1: 47cc48eb31237abf77c1fbd842bbfa7173dd954c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-arrow-down.svg
SPDXID: SPDXRef-ed92aa179bd4546dcc5da95d9a83e16d
FileChecksum: SHA1: 7f1c7932de836b71838dc28a4415512c769146b2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-arrow-up.svg
SPDXID: SPDXRef-6d80d9bbc21a050d5e8b6dfb1e2672bd
FileChecksum: SHA1: 21f701d1cf7cab7240a4e066c354cff7b868e555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-bolt.svg
SPDXID: SPDXRef-0ab7087119208fddbc38ccf04c89a88e
FileChecksum: SHA1: 6f491b62b2d347d80f4bff5496f036f7b2a42797
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-meatball.svg
SPDXID: SPDXRef-bfbb7cd41450142b59e850b63689a562
FileChecksum: SHA1: 4922b6e9ddad42dff390bfc9ade9955ca548b92f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-moon-rain.svg
SPDXID: SPDXRef-2362ad3d70ede9dc6006e9666f122d1a
FileChecksum: SHA1: a994db0080461f583e63311a7bb008f0ddce3ffc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-moon.svg
SPDXID: SPDXRef-2a87fc6170ede36480c1ccc2e59ee0b4
FileChecksum: SHA1: 22d5193ab08ca9cc290948ea8e63bc89eb48dbe0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-rain.svg
SPDXID: SPDXRef-e02773bfef040149fd21cb7f264b4471
FileChecksum: SHA1: 3bcf5aa591ba6bd84008369160cf92b32a6a046f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-showers-heavy.svg
SPDXID: SPDXRef-763cafa6a19e348e144d593373bd6c5d
FileChecksum: SHA1: e7805573275a2670c336ec9c6c0593505bfe031e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-showers-water.svg
SPDXID: SPDXRef-f80f289312c2e8cee46969c327483865
FileChecksum: SHA1: 412eda610734da02101ea82fe256d8e5f8f1d16f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-sun-rain.svg
SPDXID: SPDXRef-fc2a272c796217fa3fdd7d7f3d7b1485
FileChecksum: SHA1: 222cc75f1fec6f30d3a1862ab3394cd2ea7d68e3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud-sun.svg
SPDXID: SPDXRef-990f73273e759782c72fda4cb8974189
FileChecksum: SHA1: 786a83f802e412cb2b8c705c588620a9affdef53
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cloud.svg
SPDXID: SPDXRef-6995f8e36020196ddc86ae31defea96e
FileChecksum: SHA1: 4bee27187682f47881c4158f0e07a6f91662100a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/clover.svg
SPDXID: SPDXRef-15e5559d77dae8a0052e4a9b5422e28d
FileChecksum: SHA1: 1610969532c4a3f92b58686dc1cad82ec65d062a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/code-branch.svg
SPDXID: SPDXRef-d512d6c073bf2ffd23bf282dc05b29d7
FileChecksum: SHA1: 3940f747ea697cc880439166d152aebd28bdb03c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/code-commit.svg
SPDXID: SPDXRef-d05fbfecac501928270de94ad794f251
FileChecksum: SHA1: 5a8f23ca4813be30c0226d3f139f8c63ffbd6486
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/code-compare.svg
SPDXID: SPDXRef-f6a452c8e571ca92f92d83caeb1d7057
FileChecksum: SHA1: decad669f983537a7f91a2bd2196454c08408286
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/code-fork.svg
SPDXID: SPDXRef-c356bf12e470dbdd2d4142d372d3ad1c
FileChecksum: SHA1: a80448ac4a0f8416790c382ce8213d533791a7bf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/code-merge.svg
SPDXID: SPDXRef-c65080a28193c25169c2757fadbfcdf1
FileChecksum: SHA1: f8cc09e0b183d91b8e91cc54480e671be7b99ec6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/code-pull-request.svg
SPDXID: SPDXRef-c4de3ff03a2f416ab392098391673266
FileChecksum: SHA1: a6ec17fd7d7cad1a056fc98096085085dc1cc9c5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/code.svg
SPDXID: SPDXRef-cbc6fb08bd2f2c9762976dbb2929e1fe
FileChecksum: SHA1: eeb56bca8fc006987d2b4f446f31960a96791140
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/coins.svg
SPDXID: SPDXRef-218fb50b36784624eb135ca7cb803ece
FileChecksum: SHA1: ce63f115e646adaff99b1af76e78ba8b89ad5daa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/colon-sign.svg
SPDXID: SPDXRef-64f80e5421a7b5d8d8c2e9c19eb28720
FileChecksum: SHA1: 9cbc024ce2c27774dc4437a9c52bb571f8063a15
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comment-dollar.svg
SPDXID: SPDXRef-1e9fda01cbef203918095e4abc6e6499
FileChecksum: SHA1: 498423349c2b8e7d053e79ece9261989ce03ac77
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comment-dots.svg
SPDXID: SPDXRef-0189096a9e078179f5e50cb92c4acb40
FileChecksum: SHA1: d91dd482bc26950126d5d5378366e3aef7a3357f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comment-medical.svg
SPDXID: SPDXRef-bd813837f65533c84270e9a8703b98ae
FileChecksum: SHA1: 4f1cbf6447cbe76002cc8c7cd0e0e09e038cbe42
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comment-slash.svg
SPDXID: SPDXRef-063ea4366ba48f29b7ff7a6c2ccd8143
FileChecksum: SHA1: 3771287db80ccdd953810db6109bd1d619f17ecd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comment-sms.svg
SPDXID: SPDXRef-d138133b410f612c6699f791277cc898
FileChecksum: SHA1: e8e16251f42fe81a767dc96ff3218f9b09101c81
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comment.svg
SPDXID: SPDXRef-aa0aad6935506a3bfe5a29fe422b300a
FileChecksum: SHA1: 443a02c0dc65ff44573c23fac0226512d96012f8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comments-dollar.svg
SPDXID: SPDXRef-1d0986de37de3121eeadf823e6ecf25d
FileChecksum: SHA1: 93d45c3a2c3fa381ea25e3a9974d50217e00a2b7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/comments.svg
SPDXID: SPDXRef-f37471fe15ef60af936033f20944d81b
FileChecksum: SHA1: 438ad6dc14d8e8fd7d304ec92d4a85a2cc7750db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/compact-disc.svg
SPDXID: SPDXRef-77d0fccc52a9f97aa291306f17c73f55
FileChecksum: SHA1: e337a3517d054ddff2b80f3ce8f3aec77560c15d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/compass-drafting.svg
SPDXID: SPDXRef-4b09fb7f4f20c2afc4b52d00277198c3
FileChecksum: SHA1: 456609a377adf578bda3da56d11bb4c207b3d945
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/compass.svg
SPDXID: SPDXRef-968e8aa8e1ac3bfe88622aed549125df
FileChecksum: SHA1: 6e058154072e949445f1f8e7b1e0247c4eee58e7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/compress.svg
SPDXID: SPDXRef-f52bc1f01405b3d81ad491feca23d302
FileChecksum: SHA1: 62a03332e8dc82091a2c6a2537981daa7385d758
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/computer-mouse.svg
SPDXID: SPDXRef-421b9fd91256b543af3a9219a49b3f53
FileChecksum: SHA1: b1c4653c62415fde5ff406a217fe58d30e63a591
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/computer.svg
SPDXID: SPDXRef-8a71f26bf37d2ab96b8f1fca00b5b4fd
FileChecksum: SHA1: e16ba5a26f7d702031145f0b93b8140fca9aabac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cookie-bite.svg
SPDXID: SPDXRef-736d8cb11d5a05838da16d9ae73df901
FileChecksum: SHA1: 90521189883d3ec95bf0d7458b0f0f8798c99dab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cookie.svg
SPDXID: SPDXRef-9db5f05ffd9f9f4c5d29b7eac960bf90
FileChecksum: SHA1: 6f909b788806c78b9edcc198f13fd24e521b2c93
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/copy.svg
SPDXID: SPDXRef-35a323f2d5bb1fcbc504d90c2c3a8e57
FileChecksum: SHA1: e227314d33c672f5742aa86608bf3fa790fc61e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/copyright.svg
SPDXID: SPDXRef-5c527cf383bdd6ed6e4a5d5efa8528eb
FileChecksum: SHA1: 1f0019e7abd3171bac3217289be882c09f9f3f92
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/couch.svg
SPDXID: SPDXRef-e9c6cbf4d3b3a6cf64ce448b4a89620e
FileChecksum: SHA1: 630f9950c7cfb222ffb0b1f93c922805285631b9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cow.svg
SPDXID: SPDXRef-9ead49ade34a135918161193374b21a6
FileChecksum: SHA1: 7e70717c017fe6ed516c6510ac96ccd689902b52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/credit-card.svg
SPDXID: SPDXRef-b5c24e24039cebfc3666ea92cf06616c
FileChecksum: SHA1: 0f48341dcd174433d6fec64981b913813da02929
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/crop-simple.svg
SPDXID: SPDXRef-dc0ab2feb9f0cab96435df6cea7aa08c
FileChecksum: SHA1: 1a3a054f89e6989fa19d3e9ffa5fdc46578691d6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/crop.svg
SPDXID: SPDXRef-1495abee021bf04a4d61a049f27c4eba
FileChecksum: SHA1: 831aa651df8bd303e61862d2c35b161adfabe1be
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cross.svg
SPDXID: SPDXRef-07114838e3ab6a7521f54e14b21a748a
FileChecksum: SHA1: c1604c0d8b6b106a7f81b5acf212947b31db1518
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/crosshairs.svg
SPDXID: SPDXRef-22125de05a6b7582178bc107671f15a3
FileChecksum: SHA1: 449e12d769cd5b6deda56ac24e1ac0c3315577f3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/crow.svg
SPDXID: SPDXRef-ef1829a1487bcd2990382a59435236c2
FileChecksum: SHA1: 888614af2440105e76d3149ce1b4e94a6fa77b95
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/crown.svg
SPDXID: SPDXRef-2f5e664cfa5d1eeead1c505e02d731e4
FileChecksum: SHA1: ff392f53eb0e208c8d8ecf1ad14e61278d38ed0d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/crutch.svg
SPDXID: SPDXRef-2ff23d8265ba454f53f609ac1d7921a0
FileChecksum: SHA1: 3ffecdf497f2d7ce0131596a26fe1ce428aada09
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cruzeiro-sign.svg
SPDXID: SPDXRef-17f387eefcfbbb6cafdd49fc7bb26a66
FileChecksum: SHA1: e91322d2a0247b9cabeac35c4cb9a36a76901785
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cube.svg
SPDXID: SPDXRef-c833f7bf3f860399d1f45cf10882ae5d
FileChecksum: SHA1: 187fbc951a7af68e7da601820e06201a8d2335bf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cubes-stacked.svg
SPDXID: SPDXRef-afc910f618dcf1ba4a0608ebc4961c2e
FileChecksum: SHA1: acdf3e478fb0179282a852b4ca1212fc4270b078
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/cubes.svg
SPDXID: SPDXRef-fc79ee24322969c35d5a59533ddf84d3
FileChecksum: SHA1: 4e83a421169c6538bad6b21a7496099b171e1a9d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/d.svg
SPDXID: SPDXRef-be50a2bb60af18906fff6a0514549ae7
FileChecksum: SHA1: 40f0a23bb6c81700d541af5b363de43c8d84a9e3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/database.svg
SPDXID: SPDXRef-f8eee885768509e8a04ab0386fd773f5
FileChecksum: SHA1: 66ab76f75cdc099f93403d3b4116052d23d37e80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/delete-left.svg
SPDXID: SPDXRef-a5bb73f0cb5bfd16bb8b93a0550ea949
FileChecksum: SHA1: 368bcb99a608a707df08465cc75ffb6f9e8b7845
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/democrat.svg
SPDXID: SPDXRef-c6bdda55854f27432e1dfeb0d498e3ee
FileChecksum: SHA1: 2f82e042ce546ba31500a6938635325c5313aef2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/desktop.svg
SPDXID: SPDXRef-3c404c7504d39adbf252a1e13909c98e
FileChecksum: SHA1: 5a872a774f0763f00afde434933fccc6ef3d758e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dharmachakra.svg
SPDXID: SPDXRef-563c7ea988dcc4aa0bf95e0ad6765381
FileChecksum: SHA1: bc44367940bbaf0f3a4caaed4af95df7a834033d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/diagram-next.svg
SPDXID: SPDXRef-f113b1011afde3ed6c3da5528c30d4cb
FileChecksum: SHA1: d98fc4d7028da2d0e1ae021176ed1237235e6c20
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/diagram-predecessor.svg
SPDXID: SPDXRef-6c255567237497d73426877febb87492
FileChecksum: SHA1: 09bca171777c754ee65574c44ad69ff6c3224744
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/diagram-project.svg
SPDXID: SPDXRef-cac96bf41aab37ac9d62c3f187ffeaa4
FileChecksum: SHA1: 6610070cb9bdb178797d5d3d153e0927f1e38f07
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/diagram-successor.svg
SPDXID: SPDXRef-5ddeda2759b05fb385d67d1a2941f923
FileChecksum: SHA1: 32b838743cfb101bdab605b8f692a17636e1eab8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/diamond-turn-right.svg
SPDXID: SPDXRef-95d4cee2a0425121b615ad6a17915e1e
FileChecksum: SHA1: 1a297332bdb09e57d61154523ede5ffa9973f289
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/diamond.svg
SPDXID: SPDXRef-9fd4ecdb87d630c91b71e30dee7da575
FileChecksum: SHA1: 281c3e4c9178385f01e8116693e6add2a5520982
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-d20.svg
SPDXID: SPDXRef-997506fdfc816085751d75bfe4d9aad5
FileChecksum: SHA1: 100cb0d0d1fd2d783a0297a4aaede1e6b628a749
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-d6.svg
SPDXID: SPDXRef-ef7602adda482dbb631e943e9df9c525
FileChecksum: SHA1: d5efe5416075d7867d7f4fafa71918b8246ce867
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-five.svg
SPDXID: SPDXRef-7baa3bbdfdbd12ecb3a920289b1d224d
FileChecksum: SHA1: 8626fd57dd27c157f56e3006ca47724a5be0e62e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-four.svg
SPDXID: SPDXRef-2b675585b27bf183fbc3e03bd540fadd
FileChecksum: SHA1: 4cd47f74f3d41a29a7d1dec14a478d50fee59fc2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-one.svg
SPDXID: SPDXRef-9d3dfaff85cb215f3fb8ef2bd3b6d1c0
FileChecksum: SHA1: 82d6f095f24bf57836bcb030db8a75a8baa0ecf5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-six.svg
SPDXID: SPDXRef-b9f5ac53d5348f36b2c37e5ef5e61e31
FileChecksum: SHA1: 83cc1110bcc57d05a24a81d3a8a7beae60f8cd4e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-three.svg
SPDXID: SPDXRef-3519a60e64c1219f17347844c709968e
FileChecksum: SHA1: 1e1564dbba34250787366f0378a8d7175e6434c9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice-two.svg
SPDXID: SPDXRef-e711d56b1aa89eb76b0e154ff51ed6ec
FileChecksum: SHA1: 149ac7538c4dd71081444bee75e5a819b739ddf6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dice.svg
SPDXID: SPDXRef-95397b51bbef4ec6c8e9ba9227b59aa6
FileChecksum: SHA1: 0052b5f88a44015e07f1f074d5713887ca4ba506
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/disease.svg
SPDXID: SPDXRef-4d66e79fa2fef26db2f2986fb68bc26a
FileChecksum: SHA1: e19699ae8a6701cfe9e8479fe681618a1cb93fc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/display.svg
SPDXID: SPDXRef-a7d022f3ada1e8d526d84ebd76527ad7
FileChecksum: SHA1: a598b68f2933dbd06aa9b6eeecf1eaa4d86dcb6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/divide.svg
SPDXID: SPDXRef-7c98f5e9edd98b2b9cf778656a2b37a2
FileChecksum: SHA1: 921493edd454bd89ef5c47c87e9141caf32d8cb3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dna.svg
SPDXID: SPDXRef-7222b72ed5144dc12ef62197c034a6ba
FileChecksum: SHA1: 607d58674ed15a33302951633c7e9d48ba76d10f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dog.svg
SPDXID: SPDXRef-db646c9d887ac9b2f731aaf4692b4909
FileChecksum: SHA1: 8188e02aa9e69f408b37d86ee9d9d8bccab21add
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dollar-sign.svg
SPDXID: SPDXRef-93243b13369cc6acd37ea856b5b121e5
FileChecksum: SHA1: d9312012f6fc04fe4a4c548f7eaefc02da3a554d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dolly.svg
SPDXID: SPDXRef-1495e79513eb16877e48e31782c7ca1d
FileChecksum: SHA1: 581539e0cdbe98d95e42e2b3881fb9fb5c7258ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dong-sign.svg
SPDXID: SPDXRef-9f99b5df562f09fa1820dbdebc391e0f
FileChecksum: SHA1: 56387382fdf9de4cce60ebe59ba3ded2c8254c83
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/door-closed.svg
SPDXID: SPDXRef-bc13bf200b9531dd5cd922a77c5b43b9
FileChecksum: SHA1: 8290bd15c352c96ffdb34467d10b5e828cd8c2c4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/door-open.svg
SPDXID: SPDXRef-a4357359d1ca5c667398c0a61dc9bb3c
FileChecksum: SHA1: 2fde161b5e2bd16dff32cf7ad9ee92be9602c091
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dove.svg
SPDXID: SPDXRef-9e3bbe7da8823b529c367329f4b20379
FileChecksum: SHA1: a6a689b0c99b5f60c63ea98f23d665a8ea042b73
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/down-left-and-up-right-to-center.svg
SPDXID: SPDXRef-f843d858437fc1555f5ad0d821a70323
FileChecksum: SHA1: 77db607bbdc11399fb5b11e5c29775224e91bb33
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/down-long.svg
SPDXID: SPDXRef-11e0de7ab6460eccdfe883d0347f7058
FileChecksum: SHA1: c8082b22ea4869ada721536b6b581a00c07081c2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/download.svg
SPDXID: SPDXRef-f79ee31cfb9b2ed84713731616aa2d82
FileChecksum: SHA1: c111d1b124a5f168e26807c87ca23b1c3802dd10
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dragon.svg
SPDXID: SPDXRef-5ec99f7dafcbd64b46443bab86397126
FileChecksum: SHA1: d563e0bd6553c8a9a5432d37774d5a51dc977908
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/draw-polygon.svg
SPDXID: SPDXRef-315845d5c557b616e09381746038df0d
FileChecksum: SHA1: 00acbdf9ed321a951299fbc67f7bdaf99a4a0e2c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/droplet-slash.svg
SPDXID: SPDXRef-5d1875e986bd51ba373b9cab393608bb
FileChecksum: SHA1: a963550cf5c4b74935537a619da606844d647a90
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/droplet.svg
SPDXID: SPDXRef-2d4b34f6fdfab1ae96af67f60d24cdfe
FileChecksum: SHA1: 15d2d117f0bf0fb75cbde699b5fb8131d0ec9281
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/drum-steelpan.svg
SPDXID: SPDXRef-e2023bc9a20fdddffbdb52fafc9bfd3d
FileChecksum: SHA1: 724e37cd9ec2a90f619914cb1045bf97fd7fce79
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/drum.svg
SPDXID: SPDXRef-27b2814adc3624c8d9a0d0a92bd4b248
FileChecksum: SHA1: bc9d0c52b0ed7f00a3da14fc85ca6325dd1947f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/drumstick-bite.svg
SPDXID: SPDXRef-1f7f1c241a512c031a05912a36523d2d
FileChecksum: SHA1: 5fd7b215aa23040e32e0a35567f80765739087e2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dumbbell.svg
SPDXID: SPDXRef-75285e0c96f8c84ac1a7c429dc747409
FileChecksum: SHA1: fb89024d5786b6f2a870a1e5fb5d8c06ffabd7a0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dumpster-fire.svg
SPDXID: SPDXRef-97f06fbc8e8fadef2935d1297f24df26
FileChecksum: SHA1: 2bf698e3dbc7c0583114cdb82e815c6efba7ad32
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dumpster.svg
SPDXID: SPDXRef-1722a91d8f7b6aef81aebe037ba37f09
FileChecksum: SHA1: 1e7986e0066cac36c695e64c3677f7e8a8a35379
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/dungeon.svg
SPDXID: SPDXRef-56ea1bb9b12a2655605d839ca87fc323
FileChecksum: SHA1: b5c0241208d57b0da738023f5ce2f9a57f92456a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/e.svg
SPDXID: SPDXRef-579388bff8525f0427b6bcc6ab539e39
FileChecksum: SHA1: 3aeb39144faf1ef376854bab2cbb9c36bbf7af85
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ear-deaf.svg
SPDXID: SPDXRef-5f33ae8e6642d95f457cf7771fe5c414
FileChecksum: SHA1: 05eab0c0e78c0820ef8055833eb1b4bfd26ebb0f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ear-listen.svg
SPDXID: SPDXRef-7e1196abc3351d61b27bf302f65e81c0
FileChecksum: SHA1: ca82e80e4400b772622e2fae591ab6e0827c959b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/earth-africa.svg
SPDXID: SPDXRef-2764153f2dfccb899d4cd696adad9b8f
FileChecksum: SHA1: 162af582d402bf6b9ee68e25f264f73746d1b096
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/earth-americas.svg
SPDXID: SPDXRef-1de59feceefc9710faafa82fd98a3e61
FileChecksum: SHA1: 73e6bf36e3056829951c5f436e4c203317495061
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/earth-asia.svg
SPDXID: SPDXRef-a0527fffad66263ec7a24bc1abe474b1
FileChecksum: SHA1: 5b04a93877899854cfd7cda2f623215b9a5aae9e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/earth-europe.svg
SPDXID: SPDXRef-76c4b8ea520d57e859bf975301723830
FileChecksum: SHA1: f4f1188db7009d1d068921e2daf33a188a88fc45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/earth-oceania.svg
SPDXID: SPDXRef-02c4a1c5ac097bf035a26d9126da0e9f
FileChecksum: SHA1: ad12c603a3363ac7087c6f919192860bb1d850ba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/egg.svg
SPDXID: SPDXRef-36d1d4b052d07b6598c1aaa83ff6f6d6
FileChecksum: SHA1: 3c3da5227280058379898ff078e535295bb2c63b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/eject.svg
SPDXID: SPDXRef-76857cdc27801808301ae4b04ca6c48a
FileChecksum: SHA1: 4b0d6ad887781d70eae5aa879d06fbc8304d2242
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/elevator.svg
SPDXID: SPDXRef-24e22fe641f6075d79b5d84e924c35db
FileChecksum: SHA1: 28f74cc874b2c70fcfb870353acd1408018ca7b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ellipsis-vertical.svg
SPDXID: SPDXRef-af8cdfdc2cd7c540c5517e2dac181f7d
FileChecksum: SHA1: 617f6c5fea36acf3e144446cc4f6b8e64d40602d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ellipsis.svg
SPDXID: SPDXRef-4b592ea5686830888ee94e1416b7eebb
FileChecksum: SHA1: d0c16c668c218500155bf6f53f110d89a5a12235
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/envelope-circle-check.svg
SPDXID: SPDXRef-72a86d69615526ecd792d13b7dfd26d5
FileChecksum: SHA1: 76d01f75b29dd6e7f5264a7c11ac6db1cc30e48a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/envelope-open-text.svg
SPDXID: SPDXRef-1f23a91189d3c2130e03f561ed3cafe7
FileChecksum: SHA1: d14c7af11096974a0f8a8ab2c719564ca1b4711b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/envelope-open.svg
SPDXID: SPDXRef-94e2b8b1dc70dcac5064c1702218ece9
FileChecksum: SHA1: dec9696c35e7701c951afa17dc598ad579420ccb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/envelope.svg
SPDXID: SPDXRef-aed526d2fc3920e81f0e264238a2b0f7
FileChecksum: SHA1: b9f12c0e0ec84bf6240e01199b1ee68ee84b5701
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/envelopes-bulk.svg
SPDXID: SPDXRef-adbd5f412d519dd73874b837e6307741
FileChecksum: SHA1: 59c5e70e0f0b2a1a6fdfc6d016422f7808a4abcf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/equals.svg
SPDXID: SPDXRef-50320733c6dccf360a8f1b8691fcc374
FileChecksum: SHA1: b140d0f3bc7ead8f4efece3810d87086ef930e24
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/eraser.svg
SPDXID: SPDXRef-778a0f1f5f89188716607d0b4073cb41
FileChecksum: SHA1: 97ebacb0fcaf694ed64e22dc3b0ee304d4fcb59e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ethernet.svg
SPDXID: SPDXRef-7e37dbfa21a505c37a50d9eb148bf833
FileChecksum: SHA1: fed002d259c36d3fcd83cafaa26d8dcef1c70eb7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/euro-sign.svg
SPDXID: SPDXRef-3572cf8e4b49c9d5cc5914d7eb5ca579
FileChecksum: SHA1: c890472d01a384ba8a3f927f7b9cdddd18864088
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/exclamation.svg
SPDXID: SPDXRef-ca209449d0fc9e7d38d39ba77db6f6e2
FileChecksum: SHA1: 4a826029bd11401b2d22a5288eb4d139be42d993
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/expand.svg
SPDXID: SPDXRef-4f3843950043ae522f426c624ecc7319
FileChecksum: SHA1: 7fcc0cf908ebaa46f35b6e92160d2aac9f7a029e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/explosion.svg
SPDXID: SPDXRef-039d74a0104dc4b9410f183f32b31e49
FileChecksum: SHA1: 84acbe31bd88918d1df9477025d9457f4032b686
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/eye-dropper.svg
SPDXID: SPDXRef-1e271ce6939aabf346c01d19041de6a9
FileChecksum: SHA1: b07bad464c77580944f185b56fd0470ea22d32df
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/eye-low-vision.svg
SPDXID: SPDXRef-212b84c5a9943788d66a6a3249d275a6
FileChecksum: SHA1: eae86563e51fb5497dbbc251b35a7b024c5cb710
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/eye-slash.svg
SPDXID: SPDXRef-7807dc755d0c81806212a6bf959a38dc
FileChecksum: SHA1: 919f5ec8077cc4cf7b415c15558380e917b698ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/eye.svg
SPDXID: SPDXRef-e884846913e0f0266a3177845839dbf0
FileChecksum: SHA1: d4464480d042f28b9b3677a6e38c706db7bcfdf5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/f.svg
SPDXID: SPDXRef-203a54618673722d0d13a60cd23fa83e
FileChecksum: SHA1: 5c7495d35dfb90cbb439be431a4ae969a6ce3cbf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-angry.svg
SPDXID: SPDXRef-b9bdae60f2a5b68f4a175b4699d70d23
FileChecksum: SHA1: 630e74951434b3cfb01566e9eb53540923d86ebb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-dizzy.svg
SPDXID: SPDXRef-a0268de203284be9e310c402f50c0887
FileChecksum: SHA1: 54032aee13e048cc70761c3010efa1228157faff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-flushed.svg
SPDXID: SPDXRef-12f1c7b297089f15032b8c6f13af56f5
FileChecksum: SHA1: a98b80bed9b9dc205a4f0949477c24d8d9643845
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-frown-open.svg
SPDXID: SPDXRef-710c309c3204b86267c0da6b1091b83c
FileChecksum: SHA1: 0e4aa8d371fbc53d9f37c9f6eddb8efa3a7249f7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-frown.svg
SPDXID: SPDXRef-3fbc9181c9dfe6d712ee25d3d2b73782
FileChecksum: SHA1: 1999e1fc21e70b0192e36b879f986e1071e0e2c4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grimace.svg
SPDXID: SPDXRef-eaade4f9e5ce7ce020f29a79fcc5ddc9
FileChecksum: SHA1: 4f531822f743d503bf97ca03e00f27c0805d618f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-beam-sweat.svg
SPDXID: SPDXRef-541b8fbf2ef5e8ef886c14eabaed8a20
FileChecksum: SHA1: 1eed97b858f550c0ea545df7ee3133cf969cc283
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-beam.svg
SPDXID: SPDXRef-d355da67659060d09c2a10389758500c
FileChecksum: SHA1: 151444d54ba14627332d3ce36b8fe293e17d16d9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-hearts.svg
SPDXID: SPDXRef-8774efb489386f26f9232e1c4a629901
FileChecksum: SHA1: 104afcce4505db014bc4b051df1a1fd140bd1e99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-squint-tears.svg
SPDXID: SPDXRef-8a4f99e0963496bdf48b83ed50a493d5
FileChecksum: SHA1: 1bc64728f2f9a47b76824e832da1a5ab70633a80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-squint.svg
SPDXID: SPDXRef-5f40ac90dcebe845e380d3b467f1c71f
FileChecksum: SHA1: 87a30a50a9261816c87d5fbd00551cee15eb4a6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-stars.svg
SPDXID: SPDXRef-e1a52d54ac48792a6714e32d7378e76a
FileChecksum: SHA1: b1167c47cd8e418951e5569e405e73e7dfe13d2f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-tears.svg
SPDXID: SPDXRef-8f86183e557bcee574251e22b0621ea7
FileChecksum: SHA1: ad5ff39e313a6620672b45029d04b422e88ae368
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-tongue-squint.svg
SPDXID: SPDXRef-3fec91699f91920c88ccdec58fb0e017
FileChecksum: SHA1: 82a906d6b994a73923be22a6bb24749c18d360b0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-tongue-wink.svg
SPDXID: SPDXRef-c409d2c846b6bdbc9edb588a9a3a979c
FileChecksum: SHA1: 10e367480d2fbe8a206951bc74fb74f33d2ee6ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-tongue.svg
SPDXID: SPDXRef-20fd7fbc7fcbdfd8a7ed44e41671f0d7
FileChecksum: SHA1: 0ffb7b811518e73ad67aff39295468fead128a03
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-wide.svg
SPDXID: SPDXRef-05d2050780160d7559b9d0bf20523802
FileChecksum: SHA1: c305a8ed1bbcf5e6eabed3f77c5c243835907d2f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin-wink.svg
SPDXID: SPDXRef-8eed9017b81c9e8229eb98e39a6cb52c
FileChecksum: SHA1: 76961f74f45f1b4ce6f168dfc136d7b1ff8b2d35
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-grin.svg
SPDXID: SPDXRef-8acec3366ccf6d67fe86b2c0a3e8744b
FileChecksum: SHA1: f6f4129398ae1e7ef7d0d1573cccd52fb7ba3745
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-kiss-beam.svg
SPDXID: SPDXRef-6d3b1a7df0d7b3aad51cb4cd22cc80e2
FileChecksum: SHA1: ef01a4dd624c943c70e9e510d553e2e39091dc93
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-kiss-wink-heart.svg
SPDXID: SPDXRef-208acf19a59bae0f475a943543244dca
FileChecksum: SHA1: d02c563391af97dd1835d51b73e44260f0fc7c76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-kiss.svg
SPDXID: SPDXRef-a20dc6931bf13b1fb44480408755bee4
FileChecksum: SHA1: f9f211c196097ecde908ef03901a55b6ad89c28f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-laugh-beam.svg
SPDXID: SPDXRef-a4224dd1193b5dca0381732dfff7ad9c
FileChecksum: SHA1: 1967a8e51dbac151302297e3880775012747de44
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-laugh-squint.svg
SPDXID: SPDXRef-f8ab6a1efddad6913a65a9214fd31388
FileChecksum: SHA1: 7bf64b25ac1628a1591705b399bb224fdc18c8bd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-laugh-wink.svg
SPDXID: SPDXRef-a81789eaa91ba634df0b37f88868499d
FileChecksum: SHA1: 3981fa3f966bef929ad2de373045233886f3b7dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-laugh.svg
SPDXID: SPDXRef-6b4e277e3ef75dd785d4466190a606f7
FileChecksum: SHA1: e901efe9750ad75262977a2b72e2ff788e0395ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-meh-blank.svg
SPDXID: SPDXRef-768a58dbe4596b724be9a1f9f61fc222
FileChecksum: SHA1: cedf4cbc846a12bd90637635c7019b3af57e8275
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-meh.svg
SPDXID: SPDXRef-67572250328a42682667c2cb727f7c7e
FileChecksum: SHA1: 3f5c25e66dad2cb285c183744f8a41a7edcccd68
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-rolling-eyes.svg
SPDXID: SPDXRef-46601a14a62f59b21b1227cf97d6b23a
FileChecksum: SHA1: 7297ca1d28fceb379bdc66a7f66cbea101e61a6d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-sad-cry.svg
SPDXID: SPDXRef-39f5951a31a60d4533e6d9b0a0b3f5ae
FileChecksum: SHA1: 4f7b791ac35e0e719323810bdce0910354571e2e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-sad-tear.svg
SPDXID: SPDXRef-d8db45a82d487e0302062aba99735a13
FileChecksum: SHA1: bd267cce0346a24c87125c70d20821236c410f4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-smile-beam.svg
SPDXID: SPDXRef-91a7443494bf769245280e94ce7060bf
FileChecksum: SHA1: 2872f8b8e61121b0a403c677960fea3b9f54351b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-smile-wink.svg
SPDXID: SPDXRef-2c4f4c7790171cff8f4b2aa620945be9
FileChecksum: SHA1: 55e32b81f2af5a8c372ca6267a0954277245b52f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-smile.svg
SPDXID: SPDXRef-7a321568b15db4c5a41ff151c6653f16
FileChecksum: SHA1: 681b2bdf3fb3366fcf413c8dd3abc8dd753d97b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-surprise.svg
SPDXID: SPDXRef-24735a017eff011afe4e6830b1130120
FileChecksum: SHA1: 4bd785289efe36565cffc836a57ab986597e73a0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/face-tired.svg
SPDXID: SPDXRef-f9d615ab4894b97e9088de419faf49c6
FileChecksum: SHA1: 4eefd784e13da61171d1bd0e0170340c5513171a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fan.svg
SPDXID: SPDXRef-63541d8cbb708e470d1b6c5c3ae40a41
FileChecksum: SHA1: b39e59e76c8fcd6bf816980db5e0d788f4c8ce70
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/faucet-drip.svg
SPDXID: SPDXRef-6cf4283e6a32c7611eb5cb6cc2f0f6e1
FileChecksum: SHA1: 4254e9a5833e2e4da2c404e0b59c540b256da2a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/faucet.svg
SPDXID: SPDXRef-ea85f746fe8709f6f6d75dc952b2d1bf
FileChecksum: SHA1: b036ea41d766f1e5cbaaafbc16592fd399723d8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fax.svg
SPDXID: SPDXRef-6fc7596552d4168c6d67c722cd93eaab
FileChecksum: SHA1: 1e8f89b9e33f3733c9bdec62830f6e375087b72e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/feather-pointed.svg
SPDXID: SPDXRef-44ec4656d6fd507aa6d61ff6f69fb8b3
FileChecksum: SHA1: 2a69f7554cebd51fef425a9a29c5f13ce9df8bb0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/feather.svg
SPDXID: SPDXRef-8022326a06893665e78ca1a9d98eb876
FileChecksum: SHA1: 0cfc3709c85451e4f3a720ee9406b557a02beeef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ferry.svg
SPDXID: SPDXRef-ea8a12e10ccb0998f96961c9794fb083
FileChecksum: SHA1: 806f519e4bea0dd05ed6c9c335f2febb47b592ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-arrow-down.svg
SPDXID: SPDXRef-ed422f12d5d5f9d5f08be7e92d81940f
FileChecksum: SHA1: bd9a2619f6e0915270cfa70eaba17cd8c24d069d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-arrow-up.svg
SPDXID: SPDXRef-8fd3f33dfa1c0aa99c7f4af58f0b162a
FileChecksum: SHA1: f3f8d83c51bfbc07419fdd225b4f88be3bf4df28
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-audio.svg
SPDXID: SPDXRef-47c52752589b9a6a02e869ab1684fc25
FileChecksum: SHA1: 91bcf23200abf38aaeb4625cd312a495ca890122
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-circle-check.svg
SPDXID: SPDXRef-f09d72424ccd175c50534aabdb88f41d
FileChecksum: SHA1: f25beae35dc6708676d672ac45dae8631668e073
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-circle-exclamation.svg
SPDXID: SPDXRef-ab82d9f8f6382f1dbd9a6ac68fdde3fd
FileChecksum: SHA1: f46fb3aed6e5b4380e1e21efbf1354708d78cfc2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-circle-minus.svg
SPDXID: SPDXRef-19145c0fee5e30f7d8f3b98319ac2fa9
FileChecksum: SHA1: 6f29d316d0d9baf2f985859d7628fe93760067f7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-circle-plus.svg
SPDXID: SPDXRef-2b44270c56e74b84e16d9686245f566b
FileChecksum: SHA1: f44176d8efbe85c3eb4ce72861f61a8373868e94
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-circle-question.svg
SPDXID: SPDXRef-1c071a1c41109f0b40fb781d1d0a0f63
FileChecksum: SHA1: a66cf5367df09f594640b3709a87c0c0b2d924fc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-circle-xmark.svg
SPDXID: SPDXRef-399cbfe1f2788510d2a1cc829ba78672
FileChecksum: SHA1: 524b7a0aca9d12ab34421d46f56a1037de29e431
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-code.svg
SPDXID: SPDXRef-8488b2c4cc1e965aed7423cecacdf979
FileChecksum: SHA1: a3fb4411fcd335e75f5c9ebb1100fda0e6a9963a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-contract.svg
SPDXID: SPDXRef-4c6f31ae0926de7834e561ddeebde4ec
FileChecksum: SHA1: 5e765f1a6470fa144a0ee9b5909932404a614db4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-csv.svg
SPDXID: SPDXRef-2d772562fe3bc3f18c6061685fb94295
FileChecksum: SHA1: 98c788cfc91ac388e149d69effb1bc7618b520ab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-excel.svg
SPDXID: SPDXRef-ed99ae72e3f9bca6a5d28fcaa86e4337
FileChecksum: SHA1: b0d4f9c6c91d108a8b0a9e55dff16076d1104816
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-export.svg
SPDXID: SPDXRef-1ba739e2481716c92703e7e2370e0a2e
FileChecksum: SHA1: 0dab312676c3fc329f3dc47483b99c2093b6ae2b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-image.svg
SPDXID: SPDXRef-002f7f69887bb8c6f4a7a8e6fcccde43
FileChecksum: SHA1: 2b2d73bd832b92a96f2d4f402270d03071ab98ba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-import.svg
SPDXID: SPDXRef-ac7a1bf640d0e1a3fdc9dd228bfa618c
FileChecksum: SHA1: 6c264098f37aeac54b3eb988e80008395e275e5d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-invoice-dollar.svg
SPDXID: SPDXRef-959461160345721b5ef341a5dcc6fa37
FileChecksum: SHA1: 7325ec43ba7ff4dcbabe9d99412152b5df17d40c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-invoice.svg
SPDXID: SPDXRef-8353a2251eb9fdd51a48685c301f3957
FileChecksum: SHA1: 84749cc605deb5e07b14af9e4e1c71eefcd82b80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-lines.svg
SPDXID: SPDXRef-da16e1b4e27a0b94c4c68b705afe660c
FileChecksum: SHA1: 5907ad8c8448616bf0a7c0393eded9daad6c8dd6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-medical.svg
SPDXID: SPDXRef-8875b7516f6ae8c82d3c00bd0780d396
FileChecksum: SHA1: 31d92d1fc9d7e132c0a4fc73a7fccc2630357242
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-pdf.svg
SPDXID: SPDXRef-1a59f4b77b49f7c5eea58204a851e66b
FileChecksum: SHA1: bc65b7f2323f853203517d2820c49a55f531500a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-pen.svg
SPDXID: SPDXRef-a3749631134d19f603720cbbc2c04ae8
FileChecksum: SHA1: 4d5a554b7a79907c867779c8d0281ae148ba8f4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-powerpoint.svg
SPDXID: SPDXRef-5326b11ee5833b6bc9e92706ebd60ce4
FileChecksum: SHA1: 5b2497a42aaf17c2ce93f7c4283ca40418ed373e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-prescription.svg
SPDXID: SPDXRef-7ddde7f20f71db5d3017ca6d57503e11
FileChecksum: SHA1: 17f7820c3dcd82be806317a8ba374c9477182ab5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-shield.svg
SPDXID: SPDXRef-ff5b065e6d0f1914843e395bc1091227
FileChecksum: SHA1: ab35ed45f721a2b933c634456417061ff5aed81a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-signature.svg
SPDXID: SPDXRef-6ef92974f709095cd29291f26fca46e9
FileChecksum: SHA1: 94192daba2ef3a8db8d37a2c6808b56f3b0d7dc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-video.svg
SPDXID: SPDXRef-5e8e675052e3015f718bcb1817255f2b
FileChecksum: SHA1: 1e8d08dc734379a647b18ca08d3ddd2673ba0477
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-waveform.svg
SPDXID: SPDXRef-0e67f5210d7f7602b058d8762c32a6e3
FileChecksum: SHA1: fabb8b74dd849178fc72b89f980503125f2cea61
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-word.svg
SPDXID: SPDXRef-0889cc23bbca6723a2179ecd76e38a48
FileChecksum: SHA1: 5b261daefe7051fff879d82d1fae267771aaded2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file-zipper.svg
SPDXID: SPDXRef-8bc64adead9a1b2b02356ff611a9e1bb
FileChecksum: SHA1: 8bebf37e31d565f93403448b6968de70f6177f1f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/file.svg
SPDXID: SPDXRef-2900149fb7bb5c304b1331546c3e8dbc
FileChecksum: SHA1: bfc0c02226bb643033da8027611a90b905eb41f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fill-drip.svg
SPDXID: SPDXRef-795bb2f84204a7fa8f442a5f0a599b9f
FileChecksum: SHA1: 20bd2d58b3ac4cb1ef030f4266877c434ec61768
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fill.svg
SPDXID: SPDXRef-e7f6aeb8aa88976361fa124384b213e0
FileChecksum: SHA1: 40a98c90a1995bd9c41ffad46010a2687356552e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/film.svg
SPDXID: SPDXRef-04905fe1207d4bdf63a25092611053cd
FileChecksum: SHA1: 8ff201553d5cd3717df7ca4c986af4158aad77f5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/filter-circle-dollar.svg
SPDXID: SPDXRef-93c4a22efa87468a01d94078d7cb060a
FileChecksum: SHA1: 48ae06a8ede15ed2721410f24340436d211450f0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/filter-circle-xmark.svg
SPDXID: SPDXRef-27610e6b709fc85d9a17df20820672c7
FileChecksum: SHA1: 651fbd1d735aa9060cd982dbc06b5726b24bd5e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/filter.svg
SPDXID: SPDXRef-27ba3f70390e455a02bb72a240f06505
FileChecksum: SHA1: bd620dbf15e9c32cc25be675624c265c036e45b1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fingerprint.svg
SPDXID: SPDXRef-d3c825da1670e660435959eed8a815e3
FileChecksum: SHA1: f71a40cce7d836067c2f3a4db9556e5c4428b198
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fire-burner.svg
SPDXID: SPDXRef-809bdf2d54a0a83f7d2a5387dd08e050
FileChecksum: SHA1: 45401c65f66ad7172de0d60c0f332b497884ac05
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fire-extinguisher.svg
SPDXID: SPDXRef-b75fd013c8999d312d9c8cbcdb139588
FileChecksum: SHA1: 9b140a3cff4b09b85ecaf9ef499f1006cc07a325
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fire-flame-curved.svg
SPDXID: SPDXRef-2525b263c52df5a9feaf7e2d54dd0e5a
FileChecksum: SHA1: 0a63635617c5a1ce91d920f876295bbbee7af4e4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fire-flame-simple.svg
SPDXID: SPDXRef-1bcf58ba67d7144257dd21f03b320245
FileChecksum: SHA1: 70a320ec29f0f201910a5bce56ed12879badd113
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fire.svg
SPDXID: SPDXRef-af13e286caf2e22803f83267f4902273
FileChecksum: SHA1: e648c296eec63982bf00b711af6e4f07dc0edf7c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fish-fins.svg
SPDXID: SPDXRef-b7551b08aa4e80b8de4de4deeb56a338
FileChecksum: SHA1: 09b39a774ec69c61eb542a82808a647b1bb07ec5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/fish.svg
SPDXID: SPDXRef-06c75f2008b823ad7439c0acee15850d
FileChecksum: SHA1: 4c697aa81b98163a9b102977c02b2a08efce0eec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/flag-checkered.svg
SPDXID: SPDXRef-51f52c76f03d1fd3f8db0e38cae7a560
FileChecksum: SHA1: c805dbec393aaf679e1cd69712e4be464f5c621c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/flag-usa.svg
SPDXID: SPDXRef-6007be4e081597c7689241677b4337c9
FileChecksum: SHA1: 349dd1436fd147f91dc397b116d9ac721a4d8b49
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/flag.svg
SPDXID: SPDXRef-a7119cf1e3c1535bc989da5c31fdefae
FileChecksum: SHA1: d5d5f67faa7ebb14a08237757d3033fde6cc9b55
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/flask-vial.svg
SPDXID: SPDXRef-25182344c5abb2554820318ed5ca0533
FileChecksum: SHA1: 188754cdd5119a775191c444727a16b522e40d3b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/flask.svg
SPDXID: SPDXRef-ce648673b38c44d4feaddc6ccefcdf32
FileChecksum: SHA1: 4fbc8d8b81a11b44e6d0466a4a4b78b085bd7c54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/floppy-disk.svg
SPDXID: SPDXRef-35bd98652f67c5b286b61143dd649134
FileChecksum: SHA1: 8a693392307dc1d6e920863229859176ee9a9f62
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/florin-sign.svg
SPDXID: SPDXRef-b2e76e5fc23dd82cf6501f4f29841b14
FileChecksum: SHA1: be74f57315bb3c21b52afdabae162c99b4d4addd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/folder-closed.svg
SPDXID: SPDXRef-89cdc849c13a482f0a142f8865413f2e
FileChecksum: SHA1: f24d70549e3a5d087a05809969e70d7a8fbb5b64
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/folder-minus.svg
SPDXID: SPDXRef-8322a017598b75cf037a7562ff209eed
FileChecksum: SHA1: b8a4a3551622efde2063e9418641ffe0ccfec606
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/folder-open.svg
SPDXID: SPDXRef-fd8ea97071b90d3eef1f9628036f9829
FileChecksum: SHA1: e13d6d8dae74300ed58b695bdf7e3a1ff1daada6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/folder-plus.svg
SPDXID: SPDXRef-33e48e9fed63eea3224c21f293ab6a07
FileChecksum: SHA1: 960633f0e5f96750695426e193d3aa0ec11eb6b0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/folder-tree.svg
SPDXID: SPDXRef-ea131d30366012dfa6146bd1b79eb90e
FileChecksum: SHA1: 21b13db037ef6bd62f863dfa9981b23b0c53ac4a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/folder.svg
SPDXID: SPDXRef-6d784e999b03e004f744d7853a99a8a2
FileChecksum: SHA1: 8f0e658af09b4c5047f1172b15644981d7a1c77e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/font-awesome.svg
SPDXID: SPDXRef-a95adb14d92461979dd0c17870d8817b
FileChecksum: SHA1: 3125b58622a92481dde303ce3a96f04cee100e5f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/font.svg
SPDXID: SPDXRef-59653ff6409da5c5b110d58f6f51f7a6
FileChecksum: SHA1: e1a7a10d51c05f7b6ba02f69094cb9f44574c1dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/football.svg
SPDXID: SPDXRef-e8e430d17fb1c4fd2864f8045499216d
FileChecksum: SHA1: 3074829c6f0cc8a1d4c05b6d866cde6d8eaf3edd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/forward-fast.svg
SPDXID: SPDXRef-baa09aae3861b9d29fca076bd83a7e4b
FileChecksum: SHA1: fb38f47f9a10cd3161a2439c381699bf9eecc5d6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/forward-step.svg
SPDXID: SPDXRef-bb22df523393be6444299e1f13da02ca
FileChecksum: SHA1: 1d2ff7a737c148370b10c8cbb618dd6234bb0aef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/forward.svg
SPDXID: SPDXRef-2dfb3c39d768c8f659579e7b9f07bfec
FileChecksum: SHA1: 5e7d15c3bbe608e9bc2f1b43299e138fab7b25d6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/franc-sign.svg
SPDXID: SPDXRef-1e0ff1f08672ccd3eb9f7e9c2dd4aeb0
FileChecksum: SHA1: 195e16ce0a95b83e8442d09b943cdf3e2c939b74
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/frog.svg
SPDXID: SPDXRef-d8544cdd17693224e90e619998dab185
FileChecksum: SHA1: 64a993b5853cca468aa2fb38ec22247cc7f3e792
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/futbol.svg
SPDXID: SPDXRef-93f857a61436e2266112fb0b71308fd9
FileChecksum: SHA1: 9df9b3ecc7f0e8dc980769181abd28a164b8fc8b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/g.svg
SPDXID: SPDXRef-9f15cd9de7b93e6bf53efdd011bbfaec
FileChecksum: SHA1: 89a0e53c850cc852b6005a2395bd0eb1ea894521
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gamepad.svg
SPDXID: SPDXRef-914a0cbb0d1d3e8f35a05019e151ef56
FileChecksum: SHA1: 4a318b9ac59bf1fe74762064534f6bfdc1fb0483
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gas-pump.svg
SPDXID: SPDXRef-8cf653e799940c6c215b6b926fde4e42
FileChecksum: SHA1: b06ebb8948e045795e55657f49396c06a67c2d71
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gauge-high.svg
SPDXID: SPDXRef-40663ad43b1d27ac7106aa546eeb4df8
FileChecksum: SHA1: a928975d72ed791eff8aac5124b121e4c4e6ba5b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gauge-simple-high.svg
SPDXID: SPDXRef-23e465819a4f0333fa86fde300a92252
FileChecksum: SHA1: bc55ef0d930a9a21003e20ded8d38fa0cb4b127e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gauge-simple.svg
SPDXID: SPDXRef-4d12682e7b84770532c3b226711f0d64
FileChecksum: SHA1: e80d4bcb1b120124dc747b7c9dd974252f2dbca3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gauge.svg
SPDXID: SPDXRef-e7baf26a148a2af02cb9465d8433ef54
FileChecksum: SHA1: dd5e612b836b82f2b67e234d14d180bd3b93b011
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gavel.svg
SPDXID: SPDXRef-8a73ebd61b5d00dc70e3a3c6adff1ef2
FileChecksum: SHA1: a5239eec488ad5e7cf517987fc191d86fab54686
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gear.svg
SPDXID: SPDXRef-f33612f73e40ff2ba1899798dc0cbe21
FileChecksum: SHA1: 9de4c04efe9e80ecdd445a694bbbcad2adbb837a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gears.svg
SPDXID: SPDXRef-f696c33b923ca3f5afb78e28f70bd4ad
FileChecksum: SHA1: 3576fec62a97d9283fd7265c6340a918b0ab56c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gem.svg
SPDXID: SPDXRef-b46edbd8229ce4484e6f71fca37ead1a
FileChecksum: SHA1: 5fc8b43b27b744d5675b63b6135ccd7434e06d2c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/genderless.svg
SPDXID: SPDXRef-eef6a278273699719bc61f77ac1c5f98
FileChecksum: SHA1: 4d724e754128f3e4c64017d41c014be1404dcd52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ghost.svg
SPDXID: SPDXRef-1b3c7fb017c95a722456684f0bf6d589
FileChecksum: SHA1: f09c396d574ef2f8f60ad8bc79c8b0d9b1ed27cf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gift.svg
SPDXID: SPDXRef-d77b7b8c6f5bb1bc3acc5e3808fd0c06
FileChecksum: SHA1: c030b2769142b98a6f68af8cccec37df3be01524
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gifts.svg
SPDXID: SPDXRef-bcdc9f3bb35e45e2767d3da76830f6f7
FileChecksum: SHA1: 4be68fd31375a86413117c77bdb767ffb7cffb41
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/glass-water-droplet.svg
SPDXID: SPDXRef-5b93252fac204a79dd913a5ebec29d2d
FileChecksum: SHA1: 5b8e8c79d307745382c863c96befd868713cc959
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/glass-water.svg
SPDXID: SPDXRef-2078ffb169cdfb661cb602c3aaaf2011
FileChecksum: SHA1: 5e29ec8fc2499f2d9c9e69da5e101737f9f0235a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/glasses.svg
SPDXID: SPDXRef-8968e9305ab97378cd3cd033d8a3071f
FileChecksum: SHA1: e04b36841c2477759924749e92f5ef60816cdc47
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/globe.svg
SPDXID: SPDXRef-6a01707f876aaec3703fadfe342c7bd5
FileChecksum: SHA1: b5247b83e18e1a663d0f8c918898fa01812dab19
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/golf-ball-tee.svg
SPDXID: SPDXRef-e3062e045016334105bf42501721f9b5
FileChecksum: SHA1: 8825ff362235401879d4874aec9c41008c9f66d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gopuram.svg
SPDXID: SPDXRef-a89da699de8a543b4e18f2cee052799d
FileChecksum: SHA1: f924d14fe54ff30a025facf5f079e793e61b7a52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/graduation-cap.svg
SPDXID: SPDXRef-d55f24b7d03891649f5674700d9942dc
FileChecksum: SHA1: 26c82eeaad96671807b250393b29ee60c9087dd9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/greater-than-equal.svg
SPDXID: SPDXRef-fb1c87e51d3435defd042c84cbdbb74c
FileChecksum: SHA1: f75a0078b45422fd4ff813c7853f43b84787b8bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/greater-than.svg
SPDXID: SPDXRef-faf8558656f4b43a49fe439559ef0b9c
FileChecksum: SHA1: 08c0c1edb3885d73efaf1409147ca40dde257944
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/grip-lines-vertical.svg
SPDXID: SPDXRef-a4293e2eac1c064c8ac165c6fbdd0f54
FileChecksum: SHA1: df3ad4935333fc0c5c14046644cbb94867ee43a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/grip-lines.svg
SPDXID: SPDXRef-d04dde96bf5eb685a048cb1909b58a88
FileChecksum: SHA1: 6dc739c38b1921dd4856b9ceaaf5ace9b35c4f78
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/grip-vertical.svg
SPDXID: SPDXRef-253c51d4b79585935127d4ef7644f317
FileChecksum: SHA1: a72a11ad2cdcfdabc4f5b52e8e2df02b211e97ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/grip.svg
SPDXID: SPDXRef-c75fecccee7512a65e3558326c20c4f6
FileChecksum: SHA1: 1575349f037c053eaccff4168553734da3031cc2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/group-arrows-rotate.svg
SPDXID: SPDXRef-025a54a204a6010b9018d62f5aaad322
FileChecksum: SHA1: 911fb5a9965cb34ce0aece1f44d9df00d7359e5d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/guarani-sign.svg
SPDXID: SPDXRef-f5d44424e75d6a871ef677fa478d65c5
FileChecksum: SHA1: 81a3177fc09db6f6b47d6a0e5266dea1dcf9f46c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/guitar.svg
SPDXID: SPDXRef-a56079b325ec8eba792595053fe04ccc
FileChecksum: SHA1: c8eb3ab5845953a466c1c5a18644292a717971ae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/gun.svg
SPDXID: SPDXRef-4de5dae788914c224e411ee9a1690d0b
FileChecksum: SHA1: 88aca8b72754c09631a897a4c3b900be75e91608
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/h.svg
SPDXID: SPDXRef-8ab07b4d4c4836fa6ba8747ca0e45b78
FileChecksum: SHA1: 7fd12acef12eb57c82d3eec332f3ce32cdebc55a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hammer.svg
SPDXID: SPDXRef-63cbbc58cdfd85180b4df6606c216eb8
FileChecksum: SHA1: a7ad8cdda9f6c8b274c8eaf86517c8b35a8a3b42
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hamsa.svg
SPDXID: SPDXRef-63c6dc3b3ea1a6b39284ad1cc9987afc
FileChecksum: SHA1: baf0b115382ef11da541c7832b59a6fc6b4e8c5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-back-fist.svg
SPDXID: SPDXRef-310944b64a9b346ad7bc79e6b30ce780
FileChecksum: SHA1: 930dd376579faf2bc793425c2a1db46a890bbe21
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-dots.svg
SPDXID: SPDXRef-38db81d0195f81041bb899b8132cca1f
FileChecksum: SHA1: 762353ab98eeacadcda725d160fe2f813760aae8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-fist.svg
SPDXID: SPDXRef-2236231d4471127340d475deca679e4d
FileChecksum: SHA1: 5e7ed79e7e0b339a1566d43bf37d4863e3e5fa76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-holding-dollar.svg
SPDXID: SPDXRef-964259cc2831aedb833945997936df1d
FileChecksum: SHA1: 897491481acff0389c05de078cc99af6c11a80b2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-holding-droplet.svg
SPDXID: SPDXRef-36f769c5eef43a074ca3120755809aa7
FileChecksum: SHA1: 9eebaa581d730f600d655994e19a3128b364f3f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-holding-hand.svg
SPDXID: SPDXRef-85f555135023e2221f2c88492d9e7f01
FileChecksum: SHA1: 2980aa1e0d23dedcb14d0aa313e5c2a7d64b9fd2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-holding-heart.svg
SPDXID: SPDXRef-2ba1e17a5d25dd0cc7c1779efebd32df
FileChecksum: SHA1: 892604c5a409669875b550007fd2543afa2b659e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-holding-medical.svg
SPDXID: SPDXRef-25e3a1d23a4f33ae8e03a2a6bc205c54
FileChecksum: SHA1: 971564140f22c5a189e71c0d5c3f47a214637a19
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-holding.svg
SPDXID: SPDXRef-3b07e40501b564dc05f2a66974391cc5
FileChecksum: SHA1: 3f61898191590f28cad0bce18277ab1ede531194
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-lizard.svg
SPDXID: SPDXRef-ce0e88cb1fd2a767532a925960baef4d
FileChecksum: SHA1: 8d7d879cae9e433537b01ac44a948cc66745a6d7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-middle-finger.svg
SPDXID: SPDXRef-3b59475fd17c67b8a74b5a9d92444271
FileChecksum: SHA1: f61657ea872a9a6ac32716362b9f1e7f0fb7a40c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-peace.svg
SPDXID: SPDXRef-8cd71a2375e64c57193f45fb344da366
FileChecksum: SHA1: 27b56828e855858ca654125d1bba71e86c68c456
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-point-down.svg
SPDXID: SPDXRef-b8b865ffc052cd7c83dbad538520db52
FileChecksum: SHA1: 3249b86ef3e340fcfcacea677ad3575ed6340e78
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-point-left.svg
SPDXID: SPDXRef-cb1187af75a7f4a92f1d7c21ea74c308
FileChecksum: SHA1: e86469673bef98a1db0d3b92ca6da309b5c01819
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-point-right.svg
SPDXID: SPDXRef-6ee8800c0fbd51833a6c1aeb56e4c2a3
FileChecksum: SHA1: 8cdf30025c32277e6cebde1d3a8a9f9fd753009b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-point-up.svg
SPDXID: SPDXRef-0f5cc77bc1bada3198d03c82c0d54e4b
FileChecksum: SHA1: 681da7b3b8a9e21bcdfdcce3451e141fa14bbd0c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-pointer.svg
SPDXID: SPDXRef-f8f4867f8b125a1793dbeb0f5b1eedf7
FileChecksum: SHA1: 274df40c8d63d45f2510ae100479823b51e2aaea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-scissors.svg
SPDXID: SPDXRef-dabebb94be69d44893504420a142d980
FileChecksum: SHA1: 0257841d4805fcade5030ed2579ce7e212f18f0c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-sparkles.svg
SPDXID: SPDXRef-64f67341e94443e9e313463f04ec431c
FileChecksum: SHA1: 82bad6ceb2c60f2b86dd5f8f77f39eb837483876
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand-spock.svg
SPDXID: SPDXRef-78eac6984aee7cecd94f94ce299d5ab2
FileChecksum: SHA1: bb68f944a8142afb85d281d272309ca31c458174
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hand.svg
SPDXID: SPDXRef-dac8baa15d5317dd0fa1e990162acb2e
FileChecksum: SHA1: eb198259a6d7885d82c1a0ccb6eb35fe28fdcf2c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/handcuffs.svg
SPDXID: SPDXRef-7591d2a1d773bebd17fef29f3d6bcbab
FileChecksum: SHA1: fa7d2b557993ae0e1f266b72fa6ad0706ad4a15c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-asl-interpreting.svg
SPDXID: SPDXRef-68c5fc29db00643b82096b2d5a18643a
FileChecksum: SHA1: c6075709afad6364551359ac949f03bd2a82502e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-bound.svg
SPDXID: SPDXRef-669e4f709ac8ee3e4e28b7aeaabc8d02
FileChecksum: SHA1: 0a40b9b5ce19440184e3de8ef191649a7959d24f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-bubbles.svg
SPDXID: SPDXRef-e48f0350068ae181c35ab474ec2998e1
FileChecksum: SHA1: 42ef2a60b288d5759d5fd52cf26ce07da15cd0b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-clapping.svg
SPDXID: SPDXRef-c37887935f7556d73b197f34701b978f
FileChecksum: SHA1: 90bf5d2a7ba56b42e4fa9da3e266a0760fe31ecb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-holding-child.svg
SPDXID: SPDXRef-281142002774d2ff3bd08e03b691833c
FileChecksum: SHA1: 982b9f2992f83aa04fb323a2f73bb620c80a7864
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-holding-circle.svg
SPDXID: SPDXRef-1d530d7fab304e685acc73f3c953798d
FileChecksum: SHA1: 6b1ce726b8c3673dfc5ba3267501f54c0b04d208
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-holding.svg
SPDXID: SPDXRef-270c72700ac979100cbc7b577b1bcd53
FileChecksum: SHA1: 6759a5cccd70fa827cca9e5c36a891980df789e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands-praying.svg
SPDXID: SPDXRef-89b0404d4f2fa05fef4b93edfb0e5c49
FileChecksum: SHA1: afd8d5eec59971865398d61a134df1a907af33f3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hands.svg
SPDXID: SPDXRef-66d23f6cccd05287225f256ebbb6d842
FileChecksum: SHA1: 8e5bd8ceeffea9cdc82b6831cbaac78dc526f2af
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/handshake-angle.svg
SPDXID: SPDXRef-7313898e428af39d82b3ef2682db6066
FileChecksum: SHA1: 2ce0790d65b9ecc58a94091c21fefb435f8a9cd5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/handshake-simple-slash.svg
SPDXID: SPDXRef-da542005f5ca71621958795464aa7022
FileChecksum: SHA1: c3054edfffc2ed527bdac1116ccc9673deb44620
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/handshake-simple.svg
SPDXID: SPDXRef-358c6b94746d06a8f33bf450cb998f68
FileChecksum: SHA1: 8464ceb1428728a0b0ac1c2d65ca3180dc0a77c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/handshake-slash.svg
SPDXID: SPDXRef-49365993b88ece6fcd9e04229b77d251
FileChecksum: SHA1: ea01d1beee647b51d0f691e7ec7c9f6cff8bf165
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/handshake.svg
SPDXID: SPDXRef-12918cfbfe38b2425cc78f5eacedf9f7
FileChecksum: SHA1: 8dbbc5df8d4b6f07fbac7c459de113a22963a38a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hanukiah.svg
SPDXID: SPDXRef-582904cc6528b9109b6f441e8f74f451
FileChecksum: SHA1: b3481dc51f92eedf3c3d0ac9daddc8a8509241ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hard-drive.svg
SPDXID: SPDXRef-b91f35719bd8caa1a8000fd0d53e4c47
FileChecksum: SHA1: eef0cb68d0d6139204b0534ff5b8a7e6c68fd01f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hashtag.svg
SPDXID: SPDXRef-f8d1ffc63585fe22da8f9bbea6919933
FileChecksum: SHA1: ffd16a3f53e17426d120f0948916654d1d602032
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hat-cowboy-side.svg
SPDXID: SPDXRef-4b2335004528bdfb2a46d8c3990ed58d
FileChecksum: SHA1: 0a7ea61b9ed73fc205c76b8433f547c69e58698b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hat-cowboy.svg
SPDXID: SPDXRef-be988f3abdeac3c8d9546534dd1f7aee
FileChecksum: SHA1: 6fdae99f65e795cd21fe40ee5d85d4243bba3e9b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hat-wizard.svg
SPDXID: SPDXRef-05b9c3478d0d2fe88d4ab0f7e7d08dc3
FileChecksum: SHA1: fadd4b47e95a5df19b68259fb3f1958377a8b9c9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/head-side-cough-slash.svg
SPDXID: SPDXRef-31123a565a052dd83ab70eeb54ddf78d
FileChecksum: SHA1: d6e5f238608f7c4d08b99f68c83682b6b8ecbbfa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/head-side-cough.svg
SPDXID: SPDXRef-a54749c56ef1ee1e4ea78b7ab1b43f9d
FileChecksum: SHA1: 7cb988086a55120a3366b13f046466f5292f084f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/head-side-mask.svg
SPDXID: SPDXRef-1ac6056f1f36d759d912ab10f0b3fd38
FileChecksum: SHA1: fd921f5a7eb9b98e78a664c7878373fa666fb9aa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/head-side-virus.svg
SPDXID: SPDXRef-93cc10bd517f37ca94bc874899ae24d8
FileChecksum: SHA1: 64573130de0bcea96cafc4c4ce0849b63839aac7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heading.svg
SPDXID: SPDXRef-e177fbf98eba419c65c3179b21f2fdf4
FileChecksum: SHA1: f624db62d3b028f2dba8012acd461255ae3550f5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/headphones-simple.svg
SPDXID: SPDXRef-6a61dd64eb34c2e95c068f657fd4f527
FileChecksum: SHA1: cac469d59814804daf4c424b3f8596e283280e7e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/headphones.svg
SPDXID: SPDXRef-2d05afab38bcc6a7e083a8816d489348
FileChecksum: SHA1: 5cb868243630b866a7f9ca51047a725612b61a59
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/headset.svg
SPDXID: SPDXRef-40ecfb325cfdf991417e8b3ae337b1e3
FileChecksum: SHA1: be4b7ced0063935a91b04ff1ed727238de8eb6b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-circle-bolt.svg
SPDXID: SPDXRef-f5cf4e8e965518fb05d061a4cff268e7
FileChecksum: SHA1: bca112cca9d1101bfc3a1e57d65203eeed338069
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-circle-check.svg
SPDXID: SPDXRef-b86f08c4ea51c486f4283d6be459b207
FileChecksum: SHA1: 14c41f9265cdc3cfee2119264afeea7209e29af7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-circle-exclamation.svg
SPDXID: SPDXRef-2fdc214bd9a063f7e020dd619f2fd5a1
FileChecksum: SHA1: ddf15dcf8e794c3bae14b15f6dd989a5acc41453
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-circle-minus.svg
SPDXID: SPDXRef-bf576b2bd3dbb3c9e4d04785cb652c08
FileChecksum: SHA1: 6dd35f9a9a32a7e4e6af29d79fe0ae946fb6e826
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-circle-plus.svg
SPDXID: SPDXRef-4e6c30e22a848ed74383e331afe635b4
FileChecksum: SHA1: 7e24eb3904f0cb78c4ec657ce0d6efa6459ba9c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-circle-xmark.svg
SPDXID: SPDXRef-1675e95fbef668bc369cbdeafc9b6d5a
FileChecksum: SHA1: 55b8be88e113c904586b9fe7b1448a856fe0878a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-crack.svg
SPDXID: SPDXRef-1be9c4e7cdae317c911d091e29dbaf99
FileChecksum: SHA1: f6f502d071cd31bbee3920e7333639110492774c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart-pulse.svg
SPDXID: SPDXRef-a92cbb0400d56a2e20db9ef474877b92
FileChecksum: SHA1: 6846bf3eed3e703de2514a7be4c75587b661ebd9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/heart.svg
SPDXID: SPDXRef-8ba0a8572d44e8e35dc5043ddea9619e
FileChecksum: SHA1: 5d7c8441d774d60557ff6bd6b46ad5194c76e6f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/helicopter-symbol.svg
SPDXID: SPDXRef-c8fd0d6bbea80853bfb5c16b64c7545c
FileChecksum: SHA1: ee4c4251facebfafbf6123f7d8fa71265e51c377
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/helicopter.svg
SPDXID: SPDXRef-bdd5204208ddecc85d0aca59b2d9499a
FileChecksum: SHA1: 5394264b8f2577d054abf0eb2bdc832fa3cb371e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/helmet-safety.svg
SPDXID: SPDXRef-5b81e1a7b402da6ef2ca9c748d1fe242
FileChecksum: SHA1: 15ec7496c61319ea56edf8385c16a6b508e983c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/helmet-un.svg
SPDXID: SPDXRef-0ab2280d26df71e72d8b2e5f6de46f80
FileChecksum: SHA1: 163c7a594f309c5a516ef88f7e0b8c4f106d0377
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/highlighter.svg
SPDXID: SPDXRef-46da8b675b5a597f71a6a04feb94df67
FileChecksum: SHA1: 9484f32e33929d83adcbab8785413dcafab628d6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hill-avalanche.svg
SPDXID: SPDXRef-afc9034cf64e4438dc8c46256bda7e03
FileChecksum: SHA1: c8b7a7443da4953fb5322fdd4d4c58da19dd24d0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hill-rockslide.svg
SPDXID: SPDXRef-14913da95f46563916ca179bcc117669
FileChecksum: SHA1: 006eaf456e6708ce22623652ad5503e9588e6179
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hippo.svg
SPDXID: SPDXRef-f64c42335b73571ef8570dc93a945f55
FileChecksum: SHA1: 31fa291bdd8a994674fbc2614917272b36217106
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hockey-puck.svg
SPDXID: SPDXRef-ad2df8e4da21f8a6390a9f5178a62863
FileChecksum: SHA1: 3f6e7bd5302368dca78a63a642659edc0425fae3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/holly-berry.svg
SPDXID: SPDXRef-dda1b86ab74c6aa8045cd9a81ff32b1b
FileChecksum: SHA1: fd98ad7d25e7fe02ad5d4b8c865462aa4926a5a4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/horse-head.svg
SPDXID: SPDXRef-d3472c5227da41db848f6fb6a354d00d
FileChecksum: SHA1: 1972ee0d8cc63852c03da5f0fca9af1f0cfec1e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/horse.svg
SPDXID: SPDXRef-eb670c19d9beaac370b4e6f64656af61
FileChecksum: SHA1: e3f32b8019fff7745d35ac119a7a0a415e26d113
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hospital-user.svg
SPDXID: SPDXRef-089233fa7b437c2c4064ef021b2467f6
FileChecksum: SHA1: 375b4097190f390e3b31c8181240e07b3df8ab11
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hospital.svg
SPDXID: SPDXRef-be74c85c934ce3f0fce416ba5adb612d
FileChecksum: SHA1: eb9b0a970d22f9844ff2a3172f700cc18c3e87c9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hot-tub-person.svg
SPDXID: SPDXRef-8da73f0153b1aa2721f8412fac2acd55
FileChecksum: SHA1: 6ab3d4f175dfbf3f2c1a915fd5bca25214883aa8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hotdog.svg
SPDXID: SPDXRef-3e41ea45bf2ded8d5526cbb405049d9c
FileChecksum: SHA1: d66d2c72d6b9175ec4f38e35e7d3e6b08df6d86f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hotel.svg
SPDXID: SPDXRef-b1e6c514df30868fb308a49ca963a26d
FileChecksum: SHA1: dcf07e433417797647f61a61f459c9804bd19759
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hourglass-end.svg
SPDXID: SPDXRef-1168142d1afe11bf2cbd41a1dc98d063
FileChecksum: SHA1: 38fe89eee194b1dce19759ef883537ca558cf5b7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hourglass-half.svg
SPDXID: SPDXRef-635024efc287c840a285310adc22509a
FileChecksum: SHA1: e25d561939d3bba211c90abef0270f69da9c5ae7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hourglass-start.svg
SPDXID: SPDXRef-91d27af157b8a971f2bed451719dc156
FileChecksum: SHA1: d4bd14dee1cac6dea8bb9764b9bab81ed735aec4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hourglass.svg
SPDXID: SPDXRef-aeaeedf9fd34474229010c273e5c8b86
FileChecksum: SHA1: f9a7e5efc33cfeda63276a06126c418df54cc6eb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-chimney-crack.svg
SPDXID: SPDXRef-8bd1bc82db2110b5fc803e52955c3b54
FileChecksum: SHA1: ca3f64491f6ff75ec226fb5046dc8997f7086824
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-chimney-medical.svg
SPDXID: SPDXRef-e7e06df8cc08d033a5a875d21f23fa90
FileChecksum: SHA1: a1d1fce726d5dba207867c19a186054d52edb552
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-chimney-user.svg
SPDXID: SPDXRef-a404ffeb6ac465aa1ea2f38008bbe716
FileChecksum: SHA1: 7bac7dfd35bd2620de52787f734d1b81b82fc687
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-chimney-window.svg
SPDXID: SPDXRef-2d808d59532d49c34a7257024f615dd8
FileChecksum: SHA1: 1996bf832c682bec1f81df3bd64ed8ee472d119e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-chimney.svg
SPDXID: SPDXRef-36c80152d8daafc211ee895ffc5ca407
FileChecksum: SHA1: 486dbdbc169b1fcdbd7bbac3681adba511212b88
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-circle-check.svg
SPDXID: SPDXRef-2648563e2595885557aadbd6d2591518
FileChecksum: SHA1: a1fdee816ba5b71fa3b468bb9ae6a518eedab9c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-circle-exclamation.svg
SPDXID: SPDXRef-29450c7faf8819ce32fe9ae6ee1b8ca2
FileChecksum: SHA1: b3a0785d8ddeeec013b2e12db3d125da7be62db6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-circle-xmark.svg
SPDXID: SPDXRef-8b7e675508339323772e0a39a6414157
FileChecksum: SHA1: ad2bb35d0b5008b44fa68ec91dddc6591676b3bd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-crack.svg
SPDXID: SPDXRef-42d9e04d18c6264760dea6f5be3ec17e
FileChecksum: SHA1: 94e56d743d91e722f78a8412e5f66456d74cc338
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-fire.svg
SPDXID: SPDXRef-314fba480c245422a4d31caad14dfbd4
FileChecksum: SHA1: df915ad69b9fe4a22916d349fc313288ca43a6d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-flag.svg
SPDXID: SPDXRef-b71e1a5ba658ecd6d24452e8fb54b9f7
FileChecksum: SHA1: 5e7782dec4c4a759ac4fa658d072220742dcaf48
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-flood-water-circle-arrow-right.svg
SPDXID: SPDXRef-2979e07ac4932d8f70a9cc803568c051
FileChecksum: SHA1: 57970d57fadf4c29001dc01b5da9a74e1afe465a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-flood-water.svg
SPDXID: SPDXRef-6d9a0013d98761bc0c056d473de726ac
FileChecksum: SHA1: 7671caf9e3e45ed5810027dbd31ecf66bfd192fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-laptop.svg
SPDXID: SPDXRef-8eff7be3d33ca14227b7e38fe3c5ca1e
FileChecksum: SHA1: c89ce1d76feca0e5c4fc7c49f020eeb850461ff1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-lock.svg
SPDXID: SPDXRef-edb2bc1203fa90eef0296aca6ecf5b36
FileChecksum: SHA1: 1744821e9d1ef37d940bb90bb2daa8b58a36b084
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-medical-circle-check.svg
SPDXID: SPDXRef-1569d58a65c60855a54248ee96f37a0e
FileChecksum: SHA1: 0ed92faf55496a2538f082d91365c25cc2f245da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-medical-circle-exclamation.svg
SPDXID: SPDXRef-8f0b87a4b0f94e1c730e813eb6876a4d
FileChecksum: SHA1: 413e7ea3a2203d1bd84633e0a759188fda8f0fb3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-medical-circle-xmark.svg
SPDXID: SPDXRef-91196441f9aedb4d59c29afc6a08f9a8
FileChecksum: SHA1: b77ab9603b6c9c1c018e748c87245adf9520805c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-medical-flag.svg
SPDXID: SPDXRef-9e909139fa280a6edc9f9985e3421474
FileChecksum: SHA1: cc72a9c853548dfb29656139071cec3b5891f36e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-medical.svg
SPDXID: SPDXRef-9c34ad18ee8e35059c9691ccfa6323a7
FileChecksum: SHA1: 4f3abbd867b223ce2c9f1d2c3955c32e1242fb52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-signal.svg
SPDXID: SPDXRef-634206185d8035e98bf2cf1c0fcc7fbe
FileChecksum: SHA1: d0e13cf7a3add7f6b1c99ce1354624850cfcfa4d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-tsunami.svg
SPDXID: SPDXRef-dd46dd1b3c908cdce78d972a84477fd6
FileChecksum: SHA1: e37741652aba0b49cf217f595da21dd479e47689
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house-user.svg
SPDXID: SPDXRef-2daf3d8e2dda6d4cb85251d9e63347a6
FileChecksum: SHA1: ed45da4fc05527680e966304c4693e6f7a95117e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/house.svg
SPDXID: SPDXRef-e377e4934a812ed67dea4c3cfa8a61b8
FileChecksum: SHA1: c2f469a2680132e320c400538770564bc68bc2e5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hryvnia-sign.svg
SPDXID: SPDXRef-9495be32be573d2d1749d395d673273d
FileChecksum: SHA1: 46e08da16dcf17469bc13a89fc5457687a4c7693
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/hurricane.svg
SPDXID: SPDXRef-6d53190f80251937d52719bd19511eba
FileChecksum: SHA1: e7861c9a0d3c5d53326e875790a01bf4fdf7fc8b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/i-cursor.svg
SPDXID: SPDXRef-54329d2831deebab3dd432e18ad09e88
FileChecksum: SHA1: 20d01c8c5942902eb6c02452856b1c5def5ba330
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/i.svg
SPDXID: SPDXRef-9b1d74a3641571010619f79590bd9c49
FileChecksum: SHA1: 61ec5c7dd7580051c00f0951a0116667860394d3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ice-cream.svg
SPDXID: SPDXRef-775e43cbcdf26e52f4018648ffaf7d10
FileChecksum: SHA1: 598506c5247f5ebea46ea4359a7c58b3e5998562
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/icicles.svg
SPDXID: SPDXRef-a83ce9af2acbed4c342f9e60151dd0c8
FileChecksum: SHA1: 0d9752bab655a40ac8706ceac8afcb3695ab5718
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/icons.svg
SPDXID: SPDXRef-71776d36f0c543446ca8e0b8da91edbe
FileChecksum: SHA1: bfad360d0a6d3311b8c3725d8c3dea75caa396fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/id-badge.svg
SPDXID: SPDXRef-a4714d094043fc095c32c6a14f611019
FileChecksum: SHA1: 792f065f5c3ef6d14c32c778287eee8bf7650c56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/id-card-clip.svg
SPDXID: SPDXRef-ad6afad5b91ac2c33a71ce5ec271bc36
FileChecksum: SHA1: 1c3f9468325e526bb12df4817755367a41af405e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/id-card.svg
SPDXID: SPDXRef-944ccd95c736346dae0e9086555e126f
FileChecksum: SHA1: 4551db2a9d11d3fbcd11b63bd09fcdb62a26deb8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/igloo.svg
SPDXID: SPDXRef-33ec9ba744bec4ab5bd0ce16b7d04404
FileChecksum: SHA1: 8078080304704bae1d25b8645e7c89c65a6ab570
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/image-portrait.svg
SPDXID: SPDXRef-3540da7b8be2cf791ba15987f6a61041
FileChecksum: SHA1: 7e0b5c86ac4c8546191a8f88e05a42053fd6fefe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/image.svg
SPDXID: SPDXRef-02b742f14c37bc3b5087fe0b3193a713
FileChecksum: SHA1: 423246e24355e61bb40bb0c27e060b3b14d8bfbd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/images.svg
SPDXID: SPDXRef-25c0ce92208070c34ca636fbfd4a7c61
FileChecksum: SHA1: 5b182a59b737f6bc707eab9bde37afdfb018978e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/inbox.svg
SPDXID: SPDXRef-0bb77dff79f7dcb7d386faa869ec74c4
FileChecksum: SHA1: cd92f8c3bec7f3d93dd941fac63b7468bbfcf36b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/indent.svg
SPDXID: SPDXRef-b1b572d0ec6d40a022b43cfaaddd85cb
FileChecksum: SHA1: 8497d1a676207bbfa3b2c7c208c7ed8924a5c9d3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/indian-rupee-sign.svg
SPDXID: SPDXRef-17b26d47c881857fb323b0b5389579ea
FileChecksum: SHA1: e6de5bab20b71506859a665c4629b1b6612e8831
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/industry.svg
SPDXID: SPDXRef-322d301795c9e04108c1b34ff8fc850a
FileChecksum: SHA1: 460efabfc3916ed247d3b2c1ced6cdd5a931e393
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/infinity.svg
SPDXID: SPDXRef-ed5bea74b707d2ab522114409eeecc4b
FileChecksum: SHA1: 8cc796eb51360e670d141fc78bb24b4c1282d699
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/info.svg
SPDXID: SPDXRef-8205d92eaf4e752bd66ec0038961cf5b
FileChecksum: SHA1: 8c5d528bc50be0c046b7c453d49e19595aadfefb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/italic.svg
SPDXID: SPDXRef-fa8c316efe7101576b3c394ba5886d6d
FileChecksum: SHA1: c3ccbdde144937d64079c05b74527561780de586
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/j.svg
SPDXID: SPDXRef-9fa1d0d17c250257831eea0667bd42c7
FileChecksum: SHA1: 9940988533c0c1f0d59716c9ab36aa99cea755f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/jar-wheat.svg
SPDXID: SPDXRef-7fc0985434dff5ae2c19632df6aed464
FileChecksum: SHA1: eb07edbd369dc3f7793e99073ae7d9df2101215e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/jar.svg
SPDXID: SPDXRef-c30d695fe69d79de5f6505493ea684e1
FileChecksum: SHA1: 297521c941e375e93f0d4d0cf5ec426188086f6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/jedi.svg
SPDXID: SPDXRef-53229ada0c1027985cd0b639fc1fbc65
FileChecksum: SHA1: f8ac00a0a6e83a296c36ec8019c9753293409a56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/jet-fighter-up.svg
SPDXID: SPDXRef-a68ae3a7438c4488f3030e716a209ef3
FileChecksum: SHA1: f2e0b4190bed20b52006ca8fc8a6f1d57228de3e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/jet-fighter.svg
SPDXID: SPDXRef-a0ff9578969c83ef08c9466a0876269b
FileChecksum: SHA1: 2eb04fe99328cd25b063c3781878d719bc4c1b86
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/joint.svg
SPDXID: SPDXRef-fad833bfaf273aaad09ce904e2fd424a
FileChecksum: SHA1: bd39f51cae19a4aa7a8f00f3d9618affc7b6503b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/jug-detergent.svg
SPDXID: SPDXRef-06149395f352d5b6f1bda5e4409eba48
FileChecksum: SHA1: 2c1cddc663441036368c33b6664513241bcf5402
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/k.svg
SPDXID: SPDXRef-af308280c3ec6e384f9d334433471579
FileChecksum: SHA1: 59ed70b490dcfa7d511147603630fcfe2524357e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/kaaba.svg
SPDXID: SPDXRef-c455b844491cbab08c904e8f214c5def
FileChecksum: SHA1: ca2c4eefbb41cd3e69c11fd6f99206a18f56da22
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/key.svg
SPDXID: SPDXRef-f36081638944b63eea3c39310769b8f1
FileChecksum: SHA1: 88a19c567ff3d870c42ed1bebab7695cd582b49d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/keyboard.svg
SPDXID: SPDXRef-b84e138da1fbd522b2696499e76fff5b
FileChecksum: SHA1: ff383fd399c7c3b0b8bc825f19a449d06cd68820
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/khanda.svg
SPDXID: SPDXRef-404f3adb2da8764bac91c2bb330bda72
FileChecksum: SHA1: f133b0f844f08aabfc2dda8fa6ef2c1e41230cd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/kip-sign.svg
SPDXID: SPDXRef-065c7573d5409702e9494cbe5fc5ca20
FileChecksum: SHA1: 473c8ace6f551475f129003f161b98b4ab64292b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/kit-medical.svg
SPDXID: SPDXRef-cc503c4df10fd50a4b7c04d99f6ca17f
FileChecksum: SHA1: 80f99a25602afe069c8978895c6720fb14578354
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/kitchen-set.svg
SPDXID: SPDXRef-a6bd882619a99c65afa077db6ea67e1a
FileChecksum: SHA1: 14a0815a200608e14fdb2115080b8f577693afd8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/kiwi-bird.svg
SPDXID: SPDXRef-c0bd5b76c86cf3239d0497ffd2779a68
FileChecksum: SHA1: e98e73e37c1f7e27cd61a991b0bf4191f07f24a9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/l.svg
SPDXID: SPDXRef-ad26db4f4ab3020648418b5edde93e39
FileChecksum: SHA1: 93221518cbe28fb9cb12fd4bc375299a838b0bce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/land-mine-on.svg
SPDXID: SPDXRef-1603ad981fd4f3305aa8c826966c8310
FileChecksum: SHA1: ef2b587bff4576090495c0fecfff4896d0ef3da4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/landmark-dome.svg
SPDXID: SPDXRef-a61d74d65d8118445815f9599dcc59e3
FileChecksum: SHA1: 9aa03fa8328d0204162547c36c3299985e4cbd84
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/landmark-flag.svg
SPDXID: SPDXRef-26fc5faa29e90ca2458baea090bb8fa5
FileChecksum: SHA1: 53b30a4062eb6c183763ddf7832ded852f410df8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/landmark.svg
SPDXID: SPDXRef-a36a4576056db6809a3843e48ff30b70
FileChecksum: SHA1: 2f07359ddbf48e14f34871d6cc3a0f61cc5d4db2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/language.svg
SPDXID: SPDXRef-75283454f2028bf381c1031bdac10864
FileChecksum: SHA1: d01c942eadcab63131bf5f27d37dbe7c06ab9c8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/laptop-code.svg
SPDXID: SPDXRef-338704a8a315b285b99068c43285b6bc
FileChecksum: SHA1: c9c8a0c57d802686ef1b65a2e0f0a0499e3b126f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/laptop-file.svg
SPDXID: SPDXRef-3ec5ca64db02efc7b5ba68c49aa1786e
FileChecksum: SHA1: 372c5f0452eca16b032c71fad59e81e9789ab5e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/laptop-medical.svg
SPDXID: SPDXRef-c547bbdcde244dda969af59197154c61
FileChecksum: SHA1: 8827590fc2478819d1c80bc632c05ec696468bd8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/laptop.svg
SPDXID: SPDXRef-ecc6aab24f8b3c7dd3aa3fb49b0595bc
FileChecksum: SHA1: 1361644aaf6c1d113513ade86eafae8734748601
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lari-sign.svg
SPDXID: SPDXRef-65f59d8f16c4487b2dba1e84659514c3
FileChecksum: SHA1: f92da66f70df5329a5182bb691a12ebc130585b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/layer-group.svg
SPDXID: SPDXRef-23cb272582b8652de0473b658394f142
FileChecksum: SHA1: e8b7c95df0cbfdddf17cf58f22cdcfafee63f8ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/leaf.svg
SPDXID: SPDXRef-cd1e3909d43823e4daba2a15e1ceb9aa
FileChecksum: SHA1: c1d6a751cf1edb610c487b71c6025bddcb3077df
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/left-long.svg
SPDXID: SPDXRef-a49bd7ad2f77522ba3495846a36bf438
FileChecksum: SHA1: b2f0014a9efec4549798dfff6628d7a3717fa4fc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/left-right.svg
SPDXID: SPDXRef-cf4cb912fa7d9ca38efb018d2be258cd
FileChecksum: SHA1: 5998732a2b552a298218c46585a2bacf9f48e67c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lemon.svg
SPDXID: SPDXRef-5455a5fc4ee24e2e9eb89496801a22ff
FileChecksum: SHA1: cb57c96b177db201a6e61a021502080368176432
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/less-than-equal.svg
SPDXID: SPDXRef-7f529241137ae655a703a1bed836c696
FileChecksum: SHA1: c667c6d5bfcc264101bceca8f5b5e21c897a1aae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/less-than.svg
SPDXID: SPDXRef-c9d97fe8765dea0296d018b686415503
FileChecksum: SHA1: 8d3f6c6b44b7497a2d0f52d7f51f0ac370523046
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/life-ring.svg
SPDXID: SPDXRef-98afb537f6001256e34729986d40cd4d
FileChecksum: SHA1: 7114f68b1ac9f18b939b409dcdd68524109e2268
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lightbulb.svg
SPDXID: SPDXRef-0bc2449bbcff68b6aedda36d68dcecc1
FileChecksum: SHA1: f079e764f924a333acb97184cc8154cd7bc31ada
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lines-leaning.svg
SPDXID: SPDXRef-1d6238a75f4fe0a7598c6baae7ee974a
FileChecksum: SHA1: 8a2020a535cc03f4eb3a4bbb680f799300aa59f3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/link-slash.svg
SPDXID: SPDXRef-2a2f9b3c670004d7085244ac4d4d844d
FileChecksum: SHA1: b9a7d6c6c4135da14a8d39968f774ef50593c023
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/link.svg
SPDXID: SPDXRef-8da01aeb920a82aa23a34083ca041162
FileChecksum: SHA1: d7a370e6b89be39f858041b4b3b05e9372afb542
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lira-sign.svg
SPDXID: SPDXRef-969f28560bc7dc9bba32440adb94185b
FileChecksum: SHA1: 7a52b52c19b1d821ac0831e9b3adf30ea0c71476
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/list-check.svg
SPDXID: SPDXRef-1375b2dc99f97980335f6a7ad77c9c03
FileChecksum: SHA1: 776cc62f261a49f6145ba50444f8980b290c6910
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/list-ol.svg
SPDXID: SPDXRef-dfe734872c175d5006391e72298d4b08
FileChecksum: SHA1: 30d9472f06688afd66c39fc1d16ef6c344a2538b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/list-ul.svg
SPDXID: SPDXRef-a8d8610bb2ce8e9af01b67fd038f0c86
FileChecksum: SHA1: 39df803621a5e8171758218d7d678a945c561693
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/list.svg
SPDXID: SPDXRef-c99ae6900967088626380df17a418f2a
FileChecksum: SHA1: 521b498c3a48c8ec11bc78b08da647e65f2a430f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/litecoin-sign.svg
SPDXID: SPDXRef-f72881f3adbb55488725d668936a9450
FileChecksum: SHA1: 57bc03c904e9b58a22bee18ab551a775e2246556
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/location-arrow.svg
SPDXID: SPDXRef-fdc9ee638d1351d352f3c2926db95fdc
FileChecksum: SHA1: 31200be1da1334659dbf0671a4b3ed1bced21d13
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/location-crosshairs.svg
SPDXID: SPDXRef-4dc1435f76ee59ba9b7c8da772067dfb
FileChecksum: SHA1: d8b843d2d75724009766f0d04d9916fc279e433d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/location-dot.svg
SPDXID: SPDXRef-3f9c905ef6f22937c68e88e580c1e222
FileChecksum: SHA1: ba2f7a92579feb896ff0130268aa08bee7ca606f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/location-pin-lock.svg
SPDXID: SPDXRef-b63560176d8f2cd2d1cbd35d2cb1f240
FileChecksum: SHA1: a2edaeb4b3d5e1fae4b474f7cb01175ad742e84e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/location-pin.svg
SPDXID: SPDXRef-d3deb23497e227f29dfa159051b693b6
FileChecksum: SHA1: b0d7aac7b0f4c20d00a24d004b9b9d548591d2ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lock-open.svg
SPDXID: SPDXRef-2357ff4b3b2819f23f974c78beae5688
FileChecksum: SHA1: c8f3adcfc7d81880bb3ceb1da4a636a9e906a683
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lock.svg
SPDXID: SPDXRef-41047ae0128117fbf81982dfde8cf7a6
FileChecksum: SHA1: 7de9dd6c6012c1d85905975e66f23c6c2e57148f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/locust.svg
SPDXID: SPDXRef-09d45309621b387c42b47b8e725dce4b
FileChecksum: SHA1: 3e4a348fb2cbfa114e83fe43156db9377743655a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lungs-virus.svg
SPDXID: SPDXRef-3d268b8db2a9d955d37f87c2b600f25c
FileChecksum: SHA1: c6ce90032cbad7f9dd934bc613c93fb3655a26ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/lungs.svg
SPDXID: SPDXRef-269ec43fa376b01fb12888ce32798896
FileChecksum: SHA1: 6044d2163d3b39d62f0c851c002d992ccc8f195f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/m.svg
SPDXID: SPDXRef-9d327bc8795f8f1d10afd2dcc67178a3
FileChecksum: SHA1: 0a2e620a1a9fbcda76e03379ea37ddc15c92c78b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnet.svg
SPDXID: SPDXRef-9bd1206bf66253ff2f5cc60ae9cfe926
FileChecksum: SHA1: 762cb32a6b2215ec6ec8aef1378fcc846e905a7a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnifying-glass-arrow-right.svg
SPDXID: SPDXRef-74d643787b861461b867503755afd02a
FileChecksum: SHA1: 8b4b707d56dfb1a220e6b8b71aa3a94377a624f6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnifying-glass-chart.svg
SPDXID: SPDXRef-89747c63d397c8ef19442fd99352c2dc
FileChecksum: SHA1: 7c19d80a4b5b7b09d94b43825431fe10c4615b8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnifying-glass-dollar.svg
SPDXID: SPDXRef-f953167ad5fd273eac7972f1f7d89ddd
FileChecksum: SHA1: 792e6b31a2a40dc34eaa5c347a77d153d534cf66
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnifying-glass-location.svg
SPDXID: SPDXRef-6e02a6f904c2733642db64893f6ef9af
FileChecksum: SHA1: eaee34c0814ae4fdb2c91887ed4950897df0f427
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnifying-glass-minus.svg
SPDXID: SPDXRef-3e01b4bc7a88ccd9b4eeaa91693bb089
FileChecksum: SHA1: 63aa776ef210f4317d8a83b970158363535b918b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnifying-glass-plus.svg
SPDXID: SPDXRef-b1521cd823c5b325972621f22e23f855
FileChecksum: SHA1: b5525a9c47d75d86be22d6da2ab55926998c4d59
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/magnifying-glass.svg
SPDXID: SPDXRef-5ef55ff4130dbb5944808f5edf93a768
FileChecksum: SHA1: e5702f2d9d8dde64612b403ccaa461b748674327
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/manat-sign.svg
SPDXID: SPDXRef-ef9f6163583e5d2a020d9f3fd03be131
FileChecksum: SHA1: 55ef39a3e5283bfa83f8bb9e6e921c62533d4877
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/map-location-dot.svg
SPDXID: SPDXRef-15d358c471c9f6f8a1462ae29ee8c485
FileChecksum: SHA1: 81167498ad06a9aa8e4705c4873cb9573b80b7f3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/map-location.svg
SPDXID: SPDXRef-69c35d39219c363f8e6f10b5b5359f3d
FileChecksum: SHA1: d2400e79b0558ea98bc119072c3a5a39fa2f6f32
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/map-pin.svg
SPDXID: SPDXRef-0ae5d099748a479d9880b6a5f60cf3b7
FileChecksum: SHA1: d5c55b3861a24d48423045d3f3ffc1384e9ee5f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/map.svg
SPDXID: SPDXRef-b358336aaf4c4e86cf48185617b8c783
FileChecksum: SHA1: 648ef0f3c0bdd4630095707ccd9510965548b622
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/marker.svg
SPDXID: SPDXRef-835641c0f156daa3e3da52ccc245fa07
FileChecksum: SHA1: 78d81a5e01b8528c5e066b39b2e514eebc7aebc4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mars-and-venus-burst.svg
SPDXID: SPDXRef-4f5978de6d11c043bee22004a2d0fbe1
FileChecksum: SHA1: 70773cb03b4889a393bb586a41cb8878c366ae65
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mars-and-venus.svg
SPDXID: SPDXRef-7a86e884be457aa0baa4de4684cf3c97
FileChecksum: SHA1: 79970c5b9509bc90644516b303774bed3ce72b66
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mars-double.svg
SPDXID: SPDXRef-ff19fc4e915af9b161c7667f50df2d56
FileChecksum: SHA1: 7aeec93e88f1e5e677a069599d532ece99601822
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mars-stroke-right.svg
SPDXID: SPDXRef-23d14fca90090c3593b70ddadb27c16b
FileChecksum: SHA1: 109aeff48cf285c25f538c98da0a688e95f2d1ea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mars-stroke-up.svg
SPDXID: SPDXRef-f4bf203a0b2ac9a6819b853b38acd27d
FileChecksum: SHA1: 74e05a934772d41ba7b71fd7caf2fc9f2af0d338
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mars-stroke.svg
SPDXID: SPDXRef-f5c909fe352c58355b01dd5eb97d2ebd
FileChecksum: SHA1: 6307bdf2ce7a938464061e0184474d95511100b6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mars.svg
SPDXID: SPDXRef-51760b8ca08f61f34db76426bf3cedd1
FileChecksum: SHA1: 319a9b6b0a0409b9ae0968f0f6a96eaa718d82f7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/martini-glass-citrus.svg
SPDXID: SPDXRef-0f7bef0d009a0840d1a1506aff61d665
FileChecksum: SHA1: 95fdb71b844d2603266b5892918ba10c71817bca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/martini-glass-empty.svg
SPDXID: SPDXRef-b5eb99ae1b4fce9b8c08b84a957e5e87
FileChecksum: SHA1: 10d9ec266e4e1040db5dff85146264b70e54f152
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/martini-glass.svg
SPDXID: SPDXRef-3743f305e7df6d8c876349d0056f800d
FileChecksum: SHA1: 29307e42ed89043ce9368800a39919489a2c5dc9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mask-face.svg
SPDXID: SPDXRef-fde210959dc3f3e5b4d066ec2df1d5b5
FileChecksum: SHA1: 8b66658974db7eebbe823cdcc243a6eee28f3a4f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mask-ventilator.svg
SPDXID: SPDXRef-d945ba52da4f9bf7c806a573f5e817f1
FileChecksum: SHA1: d92975bd13fdd2f85cd6db6abe1a62a069741689
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mask.svg
SPDXID: SPDXRef-1b87937f4db3ec227a4461364ece36df
FileChecksum: SHA1: ac14c8880ff9daa10a0867d4956b4a72793d51a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/masks-theater.svg
SPDXID: SPDXRef-8554f0326b8c2ebe24a9b3184a3eda30
FileChecksum: SHA1: 0e615b66b19498f456c645cb0cd36112aaf9e308
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mattress-pillow.svg
SPDXID: SPDXRef-a24aadba4e8bf2b69e5acf31e36ab627
FileChecksum: SHA1: 7bac5d75e1d284fadf5ee097dd6974248c356707
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/maximize.svg
SPDXID: SPDXRef-a1d07523bb71326dac0d7a516aaa73b5
FileChecksum: SHA1: e5c44c718cc364e86c6a94a661ce43d4c2674760
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/medal.svg
SPDXID: SPDXRef-c77dce13c9909e25751d0287ce9fea0c
FileChecksum: SHA1: 583d124f49c322a3dd9f3af88b6f55b0c747b777
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/memory.svg
SPDXID: SPDXRef-a5c5f4a5a257592a7afa88941fb7e697
FileChecksum: SHA1: 053e58b1baa9a9e277aa4963fbbc8af4519e21ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/menorah.svg
SPDXID: SPDXRef-668559097af272c6c0433b8f047e5151
FileChecksum: SHA1: c7a661c832fd46789f6d04dbd549b686e164a773
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mercury.svg
SPDXID: SPDXRef-f5596978c2cce7d4cb1d8a68701654b2
FileChecksum: SHA1: 4b759aa5aafdb5429d643de7808893c50936fe99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/message.svg
SPDXID: SPDXRef-0c9c01ffbd6513bac052fc9b719f8609
FileChecksum: SHA1: 24a93773d90e9ee311b3e104c24083731d66ee00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/meteor.svg
SPDXID: SPDXRef-f71430d3d8f2ef741408237e24924465
FileChecksum: SHA1: 725906744b27679cc6191153c874e54771efe72a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/microchip.svg
SPDXID: SPDXRef-a328a2d549948b848217fed8e8be7c99
FileChecksum: SHA1: 70420980ce4b0de73f44e4748618770dc3820067
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/microphone-lines-slash.svg
SPDXID: SPDXRef-db6f2e313a54f168287a354a85d2a63e
FileChecksum: SHA1: 950228d52ee0ba3d44c0a4734c46bc523a4c4196
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/microphone-lines.svg
SPDXID: SPDXRef-0227b3add0fc7dcf1ef25a5f9b60c308
FileChecksum: SHA1: beb13446882c766f44c9176712e053f0f6c34896
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/microphone-slash.svg
SPDXID: SPDXRef-3e92f15ff50f6f4d863ed4ffcbf76670
FileChecksum: SHA1: 382dd6335fd9965372b58c02853efe9d2d73977d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/microphone.svg
SPDXID: SPDXRef-cb7f28e0b934caa969aa8b3598912b52
FileChecksum: SHA1: 4981b4bf88b26413ba3dbe55f3b5c371fc9f47a9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/microscope.svg
SPDXID: SPDXRef-d6bb651aaee6dfd40c76373fc07e3483
FileChecksum: SHA1: f1bdfda78d4546677d98cfcbf8f191c0ef82a2d1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mill-sign.svg
SPDXID: SPDXRef-5b539d8202f045a9519dcebb246efb11
FileChecksum: SHA1: c88b636ee33791b88d6e4a9a62551aff5b2d9acf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/minimize.svg
SPDXID: SPDXRef-501472916a46d67b37afdfe85926211d
FileChecksum: SHA1: 3db6c6e3d477c0bae0303248d51643663dcc5a2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/minus.svg
SPDXID: SPDXRef-7bd4908fddba3a5de91a2fcbf81b86d6
FileChecksum: SHA1: 7d6181e8c0063792e2bff082ef5e528100ed0969
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mitten.svg
SPDXID: SPDXRef-c5fd716a3731ef61d92ebbc3b15e584e
FileChecksum: SHA1: bac755e703704eec0d14736a68bd830522a5f830
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mobile-button.svg
SPDXID: SPDXRef-a60f9f67f661336a843fcd047f9fda94
FileChecksum: SHA1: 53110666340558ae8ebe25c0a51685abdaf0b530
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mobile-retro.svg
SPDXID: SPDXRef-17302bd7b0bbeac46bcb152ffb05427e
FileChecksum: SHA1: 2cf29f968b4d0eaf3a08ab383b93687b1ba7c982
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mobile-screen-button.svg
SPDXID: SPDXRef-b8118f46ca52a91a2ca9d0d47bf686a4
FileChecksum: SHA1: 37d1a049dbc5d427306ab97c4fb734deedb944fe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mobile-screen.svg
SPDXID: SPDXRef-cf49203e78010ae4fc136e9f4926e7f2
FileChecksum: SHA1: d46cedafffb230ed247ed80a468fe4e07c0e5c21
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mobile.svg
SPDXID: SPDXRef-d767d4e3ad5806a29e8d1143a2f0f861
FileChecksum: SHA1: 1d5f12d97f8a092877e7486a79f42e65cf46f3ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bill-1-wave.svg
SPDXID: SPDXRef-7e59c7a580169ae671a2d47e40522481
FileChecksum: SHA1: c2e4fc7de774f7f8373ceb90a635ad8d502b553c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bill-1.svg
SPDXID: SPDXRef-e3e82630083b0869dff501fd1ae72ab1
FileChecksum: SHA1: 4b8557223c09b5ceac0c3b79fde2111aee31ea3a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bill-transfer.svg
SPDXID: SPDXRef-dc2943f1b83863f6c57c9b5336fa624f
FileChecksum: SHA1: f3cef5791175d237228d5dea5c973213b6374b45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bill-trend-up.svg
SPDXID: SPDXRef-15fc154131f271e332d836b8d4d17f3d
FileChecksum: SHA1: f3f0c32aa5b4dbadf6a6cd08b9b3bd247a3c0bf6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bill-wave.svg
SPDXID: SPDXRef-2e050c2547898bd29bcf57918b1c0cef
FileChecksum: SHA1: eebce13f4c1ada91f422b36423a8d1def198227f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bill-wheat.svg
SPDXID: SPDXRef-0840e6ed8ee55df2f8356b6794c5b7c2
FileChecksum: SHA1: 6747bb86a8468fc36d89aa1c762e76c42a354298
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bill.svg
SPDXID: SPDXRef-51d961f3bf2634990af39c70d76161b8
FileChecksum: SHA1: 46fd38f3e66a755affe4b2f12b3733dfbd655723
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-bills.svg
SPDXID: SPDXRef-165cfeeaf9302d4259bf3b3a8cc66b5c
FileChecksum: SHA1: 4374096fa5928e3af03cbb76de878e5bfd25f121
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-check-dollar.svg
SPDXID: SPDXRef-c4e4824a37bbb99638daf3a4f24264b7
FileChecksum: SHA1: 6588fff30b4ee9be2e20b0c422a34ee256067005
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/money-check.svg
SPDXID: SPDXRef-f41ea3a871be590e59b58986adcd8fad
FileChecksum: SHA1: dbc5d3b452436a033782de5e24ce1aadce727131
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/monument.svg
SPDXID: SPDXRef-48f4b50aef6f722a8dbb84d06cf4577b
FileChecksum: SHA1: 7ea6014232e69dcc95c7bc42b88bc47af464292c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/moon.svg
SPDXID: SPDXRef-cb386d0ea412c2eaa9c3a314da24cb6b
FileChecksum: SHA1: e7aa0a20f45f5ee6abc222e4cc4669440041dcbe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mortar-pestle.svg
SPDXID: SPDXRef-6f31e8ee6472e5af8f6dbb3182befa9e
FileChecksum: SHA1: 52d5ed3bc78c2f2aab058a2ee9bdac3ab9a2afcc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mosque.svg
SPDXID: SPDXRef-332a49b84e3b841fbb49f613bb00892f
FileChecksum: SHA1: ce2ad3d1ad3cdeea56f9ce09802e7650dfd172d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mosquito-net.svg
SPDXID: SPDXRef-51777466329068953cfea1fae3dec2bf
FileChecksum: SHA1: 5fffe2e6a2fc5c262d3d7725b985d1e1bc58ffb0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mosquito.svg
SPDXID: SPDXRef-79f72011cecb1ba8e72915e697a8d24f
FileChecksum: SHA1: 01ef21823f35735ff22542a970010705d581b090
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/motorcycle.svg
SPDXID: SPDXRef-307b15233eee21b85799b32d20722123
FileChecksum: SHA1: cf811acc25ecd6fdc2b191207a5f75d06afaaf52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mound.svg
SPDXID: SPDXRef-383909508b0a36b2554a2bc99bf9b770
FileChecksum: SHA1: d6a709c4069f38b7ee153aaeda6b339d6ee21f27
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mountain-city.svg
SPDXID: SPDXRef-b045303aae41b8bd500dbb4a4951133e
FileChecksum: SHA1: c68878c97dcce826d2e2d0d2d8c6ae8bda9838e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mountain-sun.svg
SPDXID: SPDXRef-f2996baeed9c4130693ed8a55c357ea0
FileChecksum: SHA1: 8200e8e718744f0a76c03f9e79c6433724e5fb09
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mountain.svg
SPDXID: SPDXRef-774fb3927ef5bceaf8a8b436d44ca810
FileChecksum: SHA1: b6daee37772e948d10d6c4989f9eef9c214e0133
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mug-hot.svg
SPDXID: SPDXRef-353198adf5db593a55087cb83f3cc603
FileChecksum: SHA1: d8c3add5f3ac846ea7580d59189b1c00274c3b1f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/mug-saucer.svg
SPDXID: SPDXRef-f4e3e8f396d02b7ffa3badbd6709c153
FileChecksum: SHA1: f79018e297c43f45144e3aff9335fb2a5f28614b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/music.svg
SPDXID: SPDXRef-c42072091dba78ed62f61abd5dec6dcf
FileChecksum: SHA1: ec73b45b9a2f5dde8bae43c9fe13c8f516170fe0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/n.svg
SPDXID: SPDXRef-24e1ab590e108283264cfb11f37b7336
FileChecksum: SHA1: ec3b08a8bc53bcd5fae9a906798775ac35d2d400
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/naira-sign.svg
SPDXID: SPDXRef-dbfe1ed2a07debf380cb43f6601a0436
FileChecksum: SHA1: 693c4d628e902844637f8ef6667e25620aa36e68
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/network-wired.svg
SPDXID: SPDXRef-7676bd73e2bfe68cd2f858a09c77145f
FileChecksum: SHA1: 29e66dc36429c552f57509eb7cd8de32214bd5d8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/neuter.svg
SPDXID: SPDXRef-b6315e03ad216844edb1fa74e31ed82a
FileChecksum: SHA1: 6eacb37609e1ba81412f0fbf20e2cc92468a434f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/newspaper.svg
SPDXID: SPDXRef-058eb2d421694acd19a2291a6606996b
FileChecksum: SHA1: 69ee134c9a1f854db88dd627fadd5b49e6616fc9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/not-equal.svg
SPDXID: SPDXRef-d128510fe83348c6bd52a6cb36d04f98
FileChecksum: SHA1: 5ff7e2c139064a078be4a1417f65fadc447ba245
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/notdef.svg
SPDXID: SPDXRef-6ea7be7f81a7409a298cf48d125fae91
FileChecksum: SHA1: 1ca1a9589f5ff70fd3fa5ca0771efa442858f7c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/note-sticky.svg
SPDXID: SPDXRef-c30c17af34f48fe2c1872ba41f06f7b1
FileChecksum: SHA1: 5bbaaee3a21a45c0b03595a1557d776d2804fc93
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/notes-medical.svg
SPDXID: SPDXRef-7f34a23937efa179ad94c3e6d7a1e8b1
FileChecksum: SHA1: 78783a1f8ed9c7b4e6d9ee53625f2bc377b65186
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/o.svg
SPDXID: SPDXRef-cf50f3f3a8bbcbf711a8b4e574665b8c
FileChecksum: SHA1: d1a55ade04eede7e07b7718cb8c9289e70d6d82a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/object-group.svg
SPDXID: SPDXRef-0d107b6700c47840802e30e5e945be3b
FileChecksum: SHA1: 2d66a9b7f2bc6ebdbe1a4990108165c25024da50
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/object-ungroup.svg
SPDXID: SPDXRef-62cd24f7bbbf366d0ceda9e508e52596
FileChecksum: SHA1: c609d9c81658038111d75a04a0a014f8f568f8ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/oil-can.svg
SPDXID: SPDXRef-028a219f423e61d56360d66e41816fe2
FileChecksum: SHA1: 3b961f375bab2aaad703cb662ea4f85f2d2ef01f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/oil-well.svg
SPDXID: SPDXRef-d1efabed9d630c1f989c8ebb71e48a1c
FileChecksum: SHA1: 8db2af718d93e315e4ba5824333c7265a020fd20
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/om.svg
SPDXID: SPDXRef-886c9294af01a73c81690fd526f295c9
FileChecksum: SHA1: 882e7cea61262e3a3a7602a195e3df9984eed58e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/otter.svg
SPDXID: SPDXRef-2d4cb55646b024ba8afa118785202a7b
FileChecksum: SHA1: 60755d9ee0f14f789aa7af2c84920f6209a3e393
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/outdent.svg
SPDXID: SPDXRef-236f9a9d15e5e5ce80ab133cac2d2c9e
FileChecksum: SHA1: dacd01051d6b6a3da22e6a07edb26ba305ccfc3e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/p.svg
SPDXID: SPDXRef-a17992f43fdbd66d6d0763e8d0117b92
FileChecksum: SHA1: ee042bfc206a38b34344b4a181e9a7f8c5e58d94
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pager.svg
SPDXID: SPDXRef-ff6b702b0c687044c3db6d39b703030c
FileChecksum: SHA1: 1c4ae90919d7a5dbb0dfc55a7060f252f17fbe38
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/paint-roller.svg
SPDXID: SPDXRef-64d2d1720c16a7207aabdefe08efe9c7
FileChecksum: SHA1: 9f83dc87cf9d4222f0e4f6f232b04d724959e866
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/paintbrush.svg
SPDXID: SPDXRef-b7ee5988752cbd82c2d840cee98576c8
FileChecksum: SHA1: 46ea0119265323a684c125a816469b9f53a847f0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/palette.svg
SPDXID: SPDXRef-a931010492ed576ec612c02d6bd0c169
FileChecksum: SHA1: bbb29d89547f49f6210f4232ca3a9ef31a3d7d30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pallet.svg
SPDXID: SPDXRef-e1d1cb3b454db715c5091934975192ec
FileChecksum: SHA1: 932f32203c0fd6477a9c8db49b044e2efc269f12
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/panorama.svg
SPDXID: SPDXRef-9892540c024cfafb07a755c3aa8e4d60
FileChecksum: SHA1: 026d9872aea24159ea2b10df145b6da232dfe82e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/paper-plane.svg
SPDXID: SPDXRef-c7aa8c47debcbde3f5a23f356a6cf0bb
FileChecksum: SHA1: 291b882ffa94b6731a62d0367005e2c298909abb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/paperclip.svg
SPDXID: SPDXRef-270a08fdc7bd8043cbfaaefe8e912aa1
FileChecksum: SHA1: ec41a4aae1406e1b5330c5316b465aa698870206
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/parachute-box.svg
SPDXID: SPDXRef-d3ebf13a504e3d1d82d4ea4f1dcb8823
FileChecksum: SHA1: df8291d32b6cbf6deef5b84e0360d854b9cb4242
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/paragraph.svg
SPDXID: SPDXRef-61f1cee05bf5f11e6fea0a17a2413562
FileChecksum: SHA1: 4de0f3dc6ba6849506e4764f30ff8e9bae8e6fd9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/passport.svg
SPDXID: SPDXRef-1b9988a5ddeb95cff78954dfb10b8791
FileChecksum: SHA1: c286e228c4e5dda17dc8537bc1e9fbd40268f168
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/paste.svg
SPDXID: SPDXRef-d265b81b0d3a938ff49008f20704e2fc
FileChecksum: SHA1: da5dca996b9c789488a14c49176ffefc9fac9d56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pause.svg
SPDXID: SPDXRef-0974338dfd3b2083c549870d700a320c
FileChecksum: SHA1: ac8ca51e177b11030653d5318702ad395965b1cc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/paw.svg
SPDXID: SPDXRef-9d3a2885f0dbc335aaf52ae42f4107e7
FileChecksum: SHA1: a97bc35c671ac0b9b20a4333370a7cebf0877d63
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/peace.svg
SPDXID: SPDXRef-bb161e1ad743ff4c5458710b51f2516e
FileChecksum: SHA1: 914f6318e786a7644c96e887ad415748d7bb8b21
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pen-clip.svg
SPDXID: SPDXRef-490a9398e965c171e7dc7f7a938eade4
FileChecksum: SHA1: 2142ea82e2507981b82aae9a166a94e657312530
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pen-fancy.svg
SPDXID: SPDXRef-841aa3db3ce76cf70a2562e38f7d17a1
FileChecksum: SHA1: 6793a21e55210a22931e65597035ee96e54778aa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pen-nib.svg
SPDXID: SPDXRef-b90814611360428d92409030b542115b
FileChecksum: SHA1: 63c537b54680c47e6a395ecf62d7401ca8511b57
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pen-ruler.svg
SPDXID: SPDXRef-3d92a74b52fdadaa2f3f0e89bb4df0fa
FileChecksum: SHA1: f3f7ad36a999d04874b375b92a6ad532a7e5017c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pen-to-square.svg
SPDXID: SPDXRef-dbfff44da14ff3e88580fd1a0e0d9be3
FileChecksum: SHA1: f2552e4527fbd0021627dde448b68ca0efe94bb0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pen.svg
SPDXID: SPDXRef-9cfa0fbe656f421c249711a2302d1a66
FileChecksum: SHA1: a21228484d8fe76b5ef1fb6786b7d17cd2a43863
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pencil.svg
SPDXID: SPDXRef-ed05a99e77d1a356e14df262c416b308
FileChecksum: SHA1: ee7eca662ecd213e0347f704e138d965c17dc7f1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/people-arrows.svg
SPDXID: SPDXRef-4d8926b90d2644604727dce3b1d34e60
FileChecksum: SHA1: 217e11c9f29f53dcc6a1e5f9448d2c890b5943a0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/people-carry-box.svg
SPDXID: SPDXRef-6dc21771ded99f1839f9bc18347e624e
FileChecksum: SHA1: 219d08f5ab1c7da59462cb348f5db802332795b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/people-group.svg
SPDXID: SPDXRef-2136cff67ebe4be6edab2368dc2aa873
FileChecksum: SHA1: d80f0e24a123ccfc6623d82fd2e0c7affac4309d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/people-line.svg
SPDXID: SPDXRef-7618e68def99a205daabe368784142c6
FileChecksum: SHA1: ea96a3f8b93082fde052ba6471d2b695d1792c94
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/people-pulling.svg
SPDXID: SPDXRef-881bd5e544ed2e441c2e8b9ccf04b985
FileChecksum: SHA1: 2027cbb2fe4f3215db1d3d468c9e0982f1aa0c9e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/people-robbery.svg
SPDXID: SPDXRef-c748b3efebdc01dde1c731007cd1a1d2
FileChecksum: SHA1: d2a6ecbe4a19c034e2119abf6b955c9305150085
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/people-roof.svg
SPDXID: SPDXRef-089d7a684e7e250032c57234d83b2fec
FileChecksum: SHA1: 8b320f188e0f2d840d1f45d62fc368d06833c92e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pepper-hot.svg
SPDXID: SPDXRef-e42f400e9673908e5bd09b8340b59006
FileChecksum: SHA1: 5569a8fb39fbd6c2ae20bfcf44b6012c520a4081
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/percent.svg
SPDXID: SPDXRef-73545d75d95cdeaf47a49312a0bce7c4
FileChecksum: SHA1: fc91fb1dc9ca541bbc33efd36eb90cb752f79fea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-arrow-down-to-line.svg
SPDXID: SPDXRef-ed87c519e9626fe3a7e64aac0cdd2d55
FileChecksum: SHA1: adbbce0a36d0a4db2f24ef9a2b42eaaa239c6da7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-arrow-up-from-line.svg
SPDXID: SPDXRef-0dcd88a3c2572f3ded953a52a2ba9559
FileChecksum: SHA1: df53c11d3fb006c9e321048473c7a1134938a2ae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-biking.svg
SPDXID: SPDXRef-5931cb65642388ec96963c98fc66b1e3
FileChecksum: SHA1: 3d3e41a82dd3b5f2dc8e856b6f5d3454ab85d89d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-booth.svg
SPDXID: SPDXRef-94842783306ea1f9c8e61ee875f72ab2
FileChecksum: SHA1: 523825eeadca99b6ab7d565482bebb9af6a2add9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-breastfeeding.svg
SPDXID: SPDXRef-54b21f6f9fc9b8deec35c4d49cb5d978
FileChecksum: SHA1: cf667c8c7235555276013d40d3d75f2840b13df4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-burst.svg
SPDXID: SPDXRef-b9c9ad8b45f5ea4cc2b953939d5f8e3c
FileChecksum: SHA1: faf04d1d6fa1599b399f85cb0dea0d1205827438
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-cane.svg
SPDXID: SPDXRef-ea56d26a4f720f45ae8767b5eddc0530
FileChecksum: SHA1: 9ebd496ab571e61a5dd8400b4844f67927c1c02b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-chalkboard.svg
SPDXID: SPDXRef-b153bfa19c88d3a10369a96488aea0f0
FileChecksum: SHA1: 373edf61924f85cc0b882585b0e0b4058f4ca260
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-circle-check.svg
SPDXID: SPDXRef-aa94a065629f6ae46daf332d39f5ac4a
FileChecksum: SHA1: f978d9bb26bd8cddcba75ab16910a73ea41c8791
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-circle-exclamation.svg
SPDXID: SPDXRef-070a6ba8a4ac01e49bbdc8c9a3c50146
FileChecksum: SHA1: c77d8d39da476c58fd0f56952e72adeee90949d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-circle-minus.svg
SPDXID: SPDXRef-d419742f82d785b5d29fcc9d5b24e155
FileChecksum: SHA1: 1f13c8a1a773af541b8386e64918cd2b9009bebb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-circle-plus.svg
SPDXID: SPDXRef-4cc4335c86e915d6df02b7cb726e7ad7
FileChecksum: SHA1: e3187757b5de9b80eaf02ec96edda85c0dcdc290
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-circle-question.svg
SPDXID: SPDXRef-85ceb686288bf0153cad65c3e8930c86
FileChecksum: SHA1: 76cf137a53f5103cc6bf913c6530bbe9719c1a58
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-circle-xmark.svg
SPDXID: SPDXRef-24d123cfc334e3dc771b31b7ce31fc20
FileChecksum: SHA1: 872bdee9c7ae7d3f156cf43b442bf6651fea3f6b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-digging.svg
SPDXID: SPDXRef-545a8823821a1422dcf1c0739ac1d0af
FileChecksum: SHA1: 8c2a8b4112ecb67235730201eb2e41ef2b820ab8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-dots-from-line.svg
SPDXID: SPDXRef-650accf83374b22a870d5acfd4dc993a
FileChecksum: SHA1: b59f02cfa78595381b862044ad61afd4e3748efe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-dress-burst.svg
SPDXID: SPDXRef-4124227879de7af9b481916726135423
FileChecksum: SHA1: 8bb152104008ebf5fc4d8f0ec0a0efddab8dc568
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-dress.svg
SPDXID: SPDXRef-e8764330865dc91bc2feae006349d6cf
FileChecksum: SHA1: 92a00aa161e06dd8608ee050698f05af442049b2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-drowning.svg
SPDXID: SPDXRef-e01e2c3281448b4bc2572ea0fc9bbc99
FileChecksum: SHA1: 69c80792c2b6ca2643683d4cd1ae97bc36727894
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-falling-burst.svg
SPDXID: SPDXRef-3a5428c8127cd1da96510a93e39a8cbb
FileChecksum: SHA1: 8f6a0e6e6df50a20620c415f2ec90293d69fa616
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-falling.svg
SPDXID: SPDXRef-6bcd1bfd4ec38e134ba2e287db6e253f
FileChecksum: SHA1: 602c830bff1f1b3bcc5e65b3bb3b916a1ecf6e9a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-half-dress.svg
SPDXID: SPDXRef-5374f4255ed4cf60e1483a23e69f2108
FileChecksum: SHA1: da8a9aaba6da9df0d6087125f46eba93223d0c0e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-harassing.svg
SPDXID: SPDXRef-81f2ae0fc3f5803632dec4d4e21e7e84
FileChecksum: SHA1: c06da57573a739ee0469baf5ad91eb459b07c9d5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-hiking.svg
SPDXID: SPDXRef-fbac094ad3c997c26213f2c57121a885
FileChecksum: SHA1: 5acabec94b63dd75d446ba5d1bab082461d8098b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-military-pointing.svg
SPDXID: SPDXRef-96a0cbb1248344996db034d859eaa2ee
FileChecksum: SHA1: 8ee430f130e5d89d9b9973318baf8929a3d7850b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-military-rifle.svg
SPDXID: SPDXRef-5c67c0065de84e6752d669a927cae1aa
FileChecksum: SHA1: 4617b860326b87393ed5d362a52d3b64400daae9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-military-to-person.svg
SPDXID: SPDXRef-160b69065cd13d777b0881ddb59f4120
FileChecksum: SHA1: 1a0679749e47dafe363281ce616394cddcad63ae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-praying.svg
SPDXID: SPDXRef-bfa3efdc0a6209a690e53e7ab0785cd4
FileChecksum: SHA1: 48dddbd9b726d408890f719c610f832d8b6f6ee0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-pregnant.svg
SPDXID: SPDXRef-ddce462270061b562722b4c526d5f334
FileChecksum: SHA1: 331f0ac9ae0f69ad2fda96e5d8c2b14bebeef964
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-rays.svg
SPDXID: SPDXRef-518ed177a318d3187951e31f3bbc9e6d
FileChecksum: SHA1: 52088c09a580dae58be6c031942d7584e5afb4fd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-rifle.svg
SPDXID: SPDXRef-721bd70657e38c9617bee169bb402f07
FileChecksum: SHA1: 96cf386ff229f455bef00c75e713c7da596cf22d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-running.svg
SPDXID: SPDXRef-d33b3779b97d4722fcffcb17f510f0fd
FileChecksum: SHA1: af7db47f97fa8add9aff858933a940ab393c8ab6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-shelter.svg
SPDXID: SPDXRef-e15b34ed1dec99f5d5f9cab55a0822d9
FileChecksum: SHA1: bb4f9ca8f22da3a7623e3fbb36d6acaac23af506
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-skating.svg
SPDXID: SPDXRef-11841faf6c12f41f6f99545dbd2228d1
FileChecksum: SHA1: b849ea0050969fca148acb4a16d7aacd77e50d91
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-skiing-nordic.svg
SPDXID: SPDXRef-07fa5ac6d57d558aacc8a7fe0a9318f3
FileChecksum: SHA1: b46491fbd0f6c11b829034bad59eb0d12892a2ea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-skiing.svg
SPDXID: SPDXRef-e09a00e9fec9bcfc8be684f7ff23d9e0
FileChecksum: SHA1: 3609914ce4c523617f77e712be0ebb96b6165a70
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-snowboarding.svg
SPDXID: SPDXRef-3397498bc36094106b35cc31dc07d717
FileChecksum: SHA1: 5dba814f91490672b6ae13651def5045172a72ab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-swimming.svg
SPDXID: SPDXRef-de9265ed758c5e98751701a67c186b6f
FileChecksum: SHA1: c9eabec881f8e96c763c753bef1a94f6a899e32f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-through-window.svg
SPDXID: SPDXRef-afb3da8d4a13aed2e1345b5cd7d93882
FileChecksum: SHA1: 00dea02109e0364046074ad95dca08be4f2909af
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-walking-arrow-loop-left.svg
SPDXID: SPDXRef-a85950b3946a622f36c9a36a6ad351d2
FileChecksum: SHA1: b9d9cf424ca28ca7308891346c273ca560ab8dfb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-walking-arrow-right.svg
SPDXID: SPDXRef-2dbffcb421b3145879ab3f69f4b479b7
FileChecksum: SHA1: be8f34262005d59758186d08820c418e79b4275c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-walking-dashed-line-arrow-right.svg
SPDXID: SPDXRef-7b86d5916087ee651a80f2961517604c
FileChecksum: SHA1: fe95dd4e5d63e8cafef744a532bef9dd0c6c95bb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-walking-luggage.svg
SPDXID: SPDXRef-b8236870736fb564c63de3287fd5990b
FileChecksum: SHA1: 9e0f91eda3b1aa2026faadd8f20448480d329347
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-walking-with-cane.svg
SPDXID: SPDXRef-63b1460a63dc36fbbcb0a936d4fd83e8
FileChecksum: SHA1: ad36e84d7651f48de19fbbd584715ece98d2cb46
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person-walking.svg
SPDXID: SPDXRef-ce86412a63f646547ba6a86217138f00
FileChecksum: SHA1: 5c3e66ba81ddb428e175a57f178874b0cee21357
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/person.svg
SPDXID: SPDXRef-9f8c39c2576ea3f1d32c7b92b9d70238
FileChecksum: SHA1: 374b04837feaaa509093898a4e8d6ef1aee35439
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/peseta-sign.svg
SPDXID: SPDXRef-ac3d1183e71371517198282f33d4df1b
FileChecksum: SHA1: 0a7b8e19cd1598cbc6967421b9139a634afe1c84
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/peso-sign.svg
SPDXID: SPDXRef-ca6e2660448e200a5f443a03637efc86
FileChecksum: SHA1: 747fc3e511160e6ee82214271940c1b9ae53eac6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/phone-flip.svg
SPDXID: SPDXRef-b392579db46c18bfb12d153b59622897
FileChecksum: SHA1: 43b6b48b9967fb4b4a19d0844ee978e2c66858b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/phone-slash.svg
SPDXID: SPDXRef-41cb1aa4e144eadeb2048bbef15029ad
FileChecksum: SHA1: fd831e528a8cfecbd77c22c49f1ccd6d9163a555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/phone-volume.svg
SPDXID: SPDXRef-0f9b45614dcade6ee152dcbc8b2109c2
FileChecksum: SHA1: 09e79b23ce3ed7fbedf4cfc91e80208dbfe0db29
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/phone.svg
SPDXID: SPDXRef-0c4828a7ffa5ca0863528ceee7d1063f
FileChecksum: SHA1: 5f850963fb3a4f0395b235a8178d2c95e35b5cd6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/photo-film.svg
SPDXID: SPDXRef-b7508ab40e21946115840d305443a538
FileChecksum: SHA1: ffa496e400ee20f36b7293ad04b6dd30e73f8dd2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/piggy-bank.svg
SPDXID: SPDXRef-4750ba1b0e7d47497c15377dd3ec9515
FileChecksum: SHA1: ee9a1a187ea6198acf2f60566b921476e317b93a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pills.svg
SPDXID: SPDXRef-f23c9caccaa35ce81230c32b780eeb86
FileChecksum: SHA1: f74000b19a5bd0264e42659aeaebf6962e7f36f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pizza-slice.svg
SPDXID: SPDXRef-25fe38e2003cf0d9e7767da79c3aa5fd
FileChecksum: SHA1: 78ef56eca13727c96bfcb7f93e29f4461cdcdc83
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/place-of-worship.svg
SPDXID: SPDXRef-09469a584bbe4ecfd72fdfafd6ccc1fa
FileChecksum: SHA1: 7aa94d094aba194910b372595ea470924f8e9f57
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-arrival.svg
SPDXID: SPDXRef-def3c508ea205167f11b545cfb1e5761
FileChecksum: SHA1: 1a3ff9c1401ae2cb2a36534d5d182935d109fc2e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-circle-check.svg
SPDXID: SPDXRef-e8a1b9fd2b0ee53f292831555fcc5be7
FileChecksum: SHA1: 276e27b89b244e705e8c0ab6f064340aef243366
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-circle-exclamation.svg
SPDXID: SPDXRef-a75dbf70911e7082c45a4e20219e0540
FileChecksum: SHA1: c147f3def3893bc051742b5bf47f0e34bd1e0e43
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-circle-xmark.svg
SPDXID: SPDXRef-9eb24fe892a2aad2935c824d16f2f8e5
FileChecksum: SHA1: c683dd608b7afdcd33cdf5644f8eeffc900c684d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-departure.svg
SPDXID: SPDXRef-a75f23435150bc593462667dc2160a8d
FileChecksum: SHA1: 6a3a04c3f3af020d9e782219fc188437f4918dcc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-lock.svg
SPDXID: SPDXRef-b8b60608b39fa27c966e835df63a9c59
FileChecksum: SHA1: be57cb5f88fbd34c488a22463c6f9363dc6d7733
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-slash.svg
SPDXID: SPDXRef-c0f761f6c0faaa96445a74bab409f810
FileChecksum: SHA1: bf05ab071fdb9ed0e1da245f7b93010e41d510d1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane-up.svg
SPDXID: SPDXRef-f6ede55a2c2471bca962bf68edc096dc
FileChecksum: SHA1: 9b9ff7138866e578a7692ba391bd317a609b3a65
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plane.svg
SPDXID: SPDXRef-4fedd170456cd4a2b89df40e2e17909a
FileChecksum: SHA1: 1bb4338b73940d840aff4a47e5508abadd632202
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plant-wilt.svg
SPDXID: SPDXRef-ee759476ee04d307bf2a25e2ea4c9859
FileChecksum: SHA1: e114de299ca8141ded75122301bfed4143d38f7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plate-wheat.svg
SPDXID: SPDXRef-d87447529868c9e83c052ebe1fd08a45
FileChecksum: SHA1: 3ccb52d2588545983dbe246f000227fd66c43ab1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/play.svg
SPDXID: SPDXRef-495002d847631b10df010a3092a9fa9b
FileChecksum: SHA1: 487efc21871ef2fae272070f0359d84d694c79c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plug-circle-bolt.svg
SPDXID: SPDXRef-e71aafde0963f3beba0dbdd0fad469e0
FileChecksum: SHA1: c0a87f8cd562e41d1bfc0bd879bf256d135c26cc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plug-circle-check.svg
SPDXID: SPDXRef-5a48c10d53ff90d0f8683d0ea6d36a5b
FileChecksum: SHA1: 64a32ce8e13f262f68a11da77da4a717efff83b6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plug-circle-exclamation.svg
SPDXID: SPDXRef-054ad289b118f197cc5f3d9054c9a875
FileChecksum: SHA1: 8653af724063448a538a2936fb4cd1f539c61f9e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plug-circle-minus.svg
SPDXID: SPDXRef-91d6b250ac850293c3a29393cda2a9cf
FileChecksum: SHA1: 31c16e0443ab29beaba545aa691bb23cd5d0fe8b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plug-circle-plus.svg
SPDXID: SPDXRef-ef8971c5c3881c63da83ec65e3264a45
FileChecksum: SHA1: c0563030c4d33d3f1feaaf17f3e96e0bc6302834
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plug-circle-xmark.svg
SPDXID: SPDXRef-57cb7353b4f481e0045d1d499ee8176d
FileChecksum: SHA1: fa544fe2b86f23e45ce650393c268e8895c948c8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plug.svg
SPDXID: SPDXRef-0963cd898484d4599bed9adab85f5b1d
FileChecksum: SHA1: 341cbe65682bab8939aace2134f650ff28b69d20
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plus-minus.svg
SPDXID: SPDXRef-cb9fa46eeff18c013cc4b996a1ff9ab1
FileChecksum: SHA1: 3de5c528ec37a36dd26dcc87d0d29947b14eaa52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/plus.svg
SPDXID: SPDXRef-7d54db6203857c7666330640d18611f8
FileChecksum: SHA1: f2b96ea666b5b17230b7f559db2f1c2ab586d5b0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/podcast.svg
SPDXID: SPDXRef-bf1573844ebf13f58206170736cad834
FileChecksum: SHA1: 552c60cc5fb430dc909375e141d3a030182fed4a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/poo-storm.svg
SPDXID: SPDXRef-fca5cf559ca82dc7b7e67eb6fa5bc9eb
FileChecksum: SHA1: 9f9a9d4297836c44f31c2376c61e9c1169c353e4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/poo.svg
SPDXID: SPDXRef-de89b15bfcfb1c0c2a55e0bf19dbbf2f
FileChecksum: SHA1: eceb8ccc682bba4cc8527ebb9e945bcf8b76ba04
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/poop.svg
SPDXID: SPDXRef-09c1a1d62a6aea40176d58da0f1dbf62
FileChecksum: SHA1: cbd70b8750aa01cae28e68e0c0130cddf4e7df47
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/power-off.svg
SPDXID: SPDXRef-05569dc7baa4f9c98b0ed04c6c882dcc
FileChecksum: SHA1: db514ce642cf7d627334e3e918d71be4f4ed99cb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/prescription-bottle-medical.svg
SPDXID: SPDXRef-917e1724a4bd76bf672e2b96970b39b7
FileChecksum: SHA1: 478a0059657a2bd3fed8ae6526cdd1d450207a2c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/prescription-bottle.svg
SPDXID: SPDXRef-3adfcb4b739362f4fae81a74f7cf4611
FileChecksum: SHA1: bb7f8742d65ce76513c26deddd0476dba2215ad0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/prescription.svg
SPDXID: SPDXRef-9f3e92beb544bc1c2e8f1989a95ee409
FileChecksum: SHA1: 1b2c32bdddd45030a7d0e739dfd05ddbb18a4f8d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/print.svg
SPDXID: SPDXRef-941d7aaea3f7e9a7cdf74deebad630d0
FileChecksum: SHA1: bc8ae4a0b863455b31b2520254dab943ac829697
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pump-medical.svg
SPDXID: SPDXRef-1fb6edecef089d4be337c3b5d07704ad
FileChecksum: SHA1: 1ff6ef8b426672aa2de58659c6c0a6094af63b33
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/pump-soap.svg
SPDXID: SPDXRef-a03dc350820ca054541c5325d0690d83
FileChecksum: SHA1: 1607fe7537161651dd1b0de41771f6c64aee7b13
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/puzzle-piece.svg
SPDXID: SPDXRef-03dfcd0f4f09c169a54264fc3c327df7
FileChecksum: SHA1: dd423c1ec9f383995b6cc70bc7d61b34d0ae03d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/q.svg
SPDXID: SPDXRef-6591f144368089eba35887873f3811f2
FileChecksum: SHA1: 31d1529f77afbb03f95c1953f7e4252f91ede8ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/qrcode.svg
SPDXID: SPDXRef-afa301584ff502a41087b7d85150b5dd
FileChecksum: SHA1: 47c87e5b4f7f347eaf9cc870e907b5ce760ee42c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/question.svg
SPDXID: SPDXRef-cece95b03b5d0b5591d2469f5443e3cb
FileChecksum: SHA1: cf5f18b0dafe0e46a3fa71925ae505b9bf0a7c77
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/quote-left.svg
SPDXID: SPDXRef-0f68e2bd01d913c719a7329db7389466
FileChecksum: SHA1: b2e4c37f381e34b83233c1ec5579d0c09dfd9a0b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/quote-right.svg
SPDXID: SPDXRef-308820c48b4236b1639bd19db7dc94fd
FileChecksum: SHA1: 7443484be1bf6018ca98d7b700a94f57f508bfaf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/r.svg
SPDXID: SPDXRef-3842987cdd4413324f66183ae9bedaad
FileChecksum: SHA1: 08093348a04f3d28f805b3fd55a5bd3e358e437e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/radiation.svg
SPDXID: SPDXRef-f2d5929f904260bb053387291e21dbe2
FileChecksum: SHA1: 1230ed3e3f0547be8972b17c31105530d60669cf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/radio.svg
SPDXID: SPDXRef-5f55b02d37a60d743e9386866fba206e
FileChecksum: SHA1: c5be65c0babc7ea689c8b6826232fe5bbbf18055
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rainbow.svg
SPDXID: SPDXRef-88c7aa0e0b932109f595dc6e657d7f6f
FileChecksum: SHA1: 977e0e045bea83c7f2a5b96732fc64c6d73cb425
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ranking-star.svg
SPDXID: SPDXRef-3ace98b34745bee90846bfec621d6d78
FileChecksum: SHA1: ecbd35abdbef5fb9292debcd79bfa9cfd2600e96
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/receipt.svg
SPDXID: SPDXRef-15cad75496c3ac6ceca284acc4b20bb1
FileChecksum: SHA1: 4415118707dde9f1f9f051d79b8416aeb0035b6c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/record-vinyl.svg
SPDXID: SPDXRef-c678de09c3918ef1d44c98f47920f623
FileChecksum: SHA1: ee74e15ad69ad472db74781ff2904b7eb9d389e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rectangle-ad.svg
SPDXID: SPDXRef-827a583e3477ed49da6020ac680bde8e
FileChecksum: SHA1: 42b2b4a835eaed16d40ecf63baefa7221c551ed9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rectangle-list.svg
SPDXID: SPDXRef-1ae2def0c659c7d7b2b1f8e7708125ee
FileChecksum: SHA1: 175668be10e5fe646de126209fe219c24220a853
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rectangle-xmark.svg
SPDXID: SPDXRef-1fc7684f1214e89725cbed7e31233750
FileChecksum: SHA1: ba014c951a48af28ae2cf2fa3d1ff5ff3d7c5872
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/recycle.svg
SPDXID: SPDXRef-47aa90c8025e1d8b5298e4c3bfb1d0c7
FileChecksum: SHA1: b8ff4f825e9e269cb4ba70a3ebccf4b7e6fa0727
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/registered.svg
SPDXID: SPDXRef-441b1b8cb05b5856476b0a72ebe7b486
FileChecksum: SHA1: d24550f83189e2e8dc73d261bd2846add3162567
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/repeat.svg
SPDXID: SPDXRef-dfb4a9a6dd6c49f8718e367e7c02a709
FileChecksum: SHA1: 3fb25d8b328737b66ca72c5ec4866dd243bcc74b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/reply-all.svg
SPDXID: SPDXRef-d476f817c2f89a67820cdf79206b3156
FileChecksum: SHA1: 4f4b49b4092dd294d35c04c4c78dad894c66b92e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/reply.svg
SPDXID: SPDXRef-4d75afc583643867fa136f62ceee76a2
FileChecksum: SHA1: 0dd2702faacd627bf4628a5261b08b494106dc8a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/republican.svg
SPDXID: SPDXRef-f91ce656677fbafa7bf694038c67d894
FileChecksum: SHA1: dc92d428495142b4ebd4c425fb25ae6c893afe47
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/restroom.svg
SPDXID: SPDXRef-09293faf47f6d1460cdbf4c5a644df03
FileChecksum: SHA1: 80d0acc2f08ba863cb0514e5cf0e03c384304e13
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/retweet.svg
SPDXID: SPDXRef-202a3123a30e55671795f3b79b5cfe8e
FileChecksum: SHA1: b832734f3827b3fbe49d07868f232a9e6d89e63f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ribbon.svg
SPDXID: SPDXRef-7f6c1db33947819fbce17557c018a3d3
FileChecksum: SHA1: 87736471438d0bde3ec68f94d4946dd0e659fece
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/right-from-bracket.svg
SPDXID: SPDXRef-19ce5e65dd88434c072659f42b578724
FileChecksum: SHA1: fefea0eee4a26dc43f38cb1cf9ed61005f66707d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/right-left.svg
SPDXID: SPDXRef-71ecfb73eecd83f029a81c43e31203d1
FileChecksum: SHA1: 45eb35813169ad0003d6d4a09fda47a5e921161e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/right-long.svg
SPDXID: SPDXRef-28ecca3c2b29f6d51a3455ed9045e8b9
FileChecksum: SHA1: d2a5b018ffbca83e427886368f108045189b4adc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/right-to-bracket.svg
SPDXID: SPDXRef-438e3897a315ccd65e545cd85524e42a
FileChecksum: SHA1: 1900a4b68d3e697caa37e6b05f25fe34001a520b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ring.svg
SPDXID: SPDXRef-298c3a5223512de22ed6826c80d66287
FileChecksum: SHA1: 9b2e1d488ebed3fc17c0355e66fb6552e99df88c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road-barrier.svg
SPDXID: SPDXRef-d56296ace3643db288f0dc10cf335d8e
FileChecksum: SHA1: 96322db378805a5ad9b39427b9a7b1215c2ee318
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road-bridge.svg
SPDXID: SPDXRef-57ffcd2118a4937bdf67cb314713f97a
FileChecksum: SHA1: 7a0d108ae010b4d3b8494d83aed461746fc8a0f7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road-circle-check.svg
SPDXID: SPDXRef-7902028c61a1beffb1874f3534d8562c
FileChecksum: SHA1: c45bac93210a0adb3ece8db9b6813e5497728edc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road-circle-exclamation.svg
SPDXID: SPDXRef-5b397875d701f3fcbd08b676fa7aeb70
FileChecksum: SHA1: 194abf521c659f5635b93ef25982fed5b3acd648
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road-circle-xmark.svg
SPDXID: SPDXRef-c74daae429962a6b25e70c2eed04f32b
FileChecksum: SHA1: 415a12459e85d27e755f485718ee4b74b23c9950
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road-lock.svg
SPDXID: SPDXRef-0b7597629dc68d09bd7ef81278ab1095
FileChecksum: SHA1: b76e7f0eef5dd6d103e3461683f36124fb1297bd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road-spikes.svg
SPDXID: SPDXRef-d79c10d2f635b049b59dba5a6475d5bb
FileChecksum: SHA1: 970a835712e3e5aaf466702e1186e1970126f0d7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/road.svg
SPDXID: SPDXRef-e7cfe06dcb30bbc795ffdeec766756f1
FileChecksum: SHA1: a9d92097b6ed72daf0e7ab4d1e407c22027793a4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/robot.svg
SPDXID: SPDXRef-08d92f5687e8091cf4a287b60253e53d
FileChecksum: SHA1: dfade5f67c6ee54744f2121554d3b67422578000
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rocket.svg
SPDXID: SPDXRef-b6fc60099fd0a63ecf143eb512e64fe1
FileChecksum: SHA1: b9489fea11f5c2f4686c57462b3edd196d474875
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rotate-left.svg
SPDXID: SPDXRef-3f0f9d0a23686473b841e1eba01748ed
FileChecksum: SHA1: 77f161af76d3e708d589c9e0fa7c47e01f2d4a3e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rotate-right.svg
SPDXID: SPDXRef-549867a89ec666021b54b8112d7e3bb5
FileChecksum: SHA1: 94307ab6568c35f88a61b5aa11948a2f22c8ea4e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rotate.svg
SPDXID: SPDXRef-81f69e0a57d0c7a81e9a630c98fe53e8
FileChecksum: SHA1: 8570dd6c3ceae169504246fe7372b5b651f95b59
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/route.svg
SPDXID: SPDXRef-0fc4acbdd0b63581ef6f52103b678dd4
FileChecksum: SHA1: 9ac14141ee17f0a87f6673313e16ede391c5aa00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rss.svg
SPDXID: SPDXRef-e60595c0dd00980dab52e8c90be4d7f0
FileChecksum: SHA1: a0c50a37d53e7d245e39a57935fb967d13c45131
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ruble-sign.svg
SPDXID: SPDXRef-61bfbe7ce047276fc88859753f2481df
FileChecksum: SHA1: d790d23c372ddd7edb59d368c3e8a587b2a65896
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rug.svg
SPDXID: SPDXRef-ccca58e56a2fe65e55d7e4d6c0bccb96
FileChecksum: SHA1: 16d20105ad273e86a6741745bf0852ab62d3109d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ruler-combined.svg
SPDXID: SPDXRef-e13d5f3071dcc7cfe25665938b37239c
FileChecksum: SHA1: f9b18083825218546adf74d9392530e470efe02c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ruler-horizontal.svg
SPDXID: SPDXRef-63c2d2963d6b3ebd43306519cdc003f0
FileChecksum: SHA1: 63aded1d80e3c4f668aca1a5f9adb8e386db5660
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ruler-vertical.svg
SPDXID: SPDXRef-c96ae13cdda5556ff57daf5723e48cb4
FileChecksum: SHA1: 35c754f69b2594ba835026eabecb1ea2e346f408
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ruler.svg
SPDXID: SPDXRef-8428b75419103afdcc43861bacb3758d
FileChecksum: SHA1: 65ed97715d774bfd090d1e2ab62d6377158a1de4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rupee-sign.svg
SPDXID: SPDXRef-d2b19c0df0c85f9b0a766e17cced7693
FileChecksum: SHA1: 492a7fb27d78d1d0faa62f0f1d8a75f03c326aeb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/rupiah-sign.svg
SPDXID: SPDXRef-d2438cf1fc06736e461b59c1c2dc2ea5
FileChecksum: SHA1: f1eda7cf6af29580f33e32b11f3faef2e7208867
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/s.svg
SPDXID: SPDXRef-c6caca81f9f9deeb167673e6bb469977
FileChecksum: SHA1: 874f5e9f16f7bfa7dd5518f85c2a664723eff696
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sack-dollar.svg
SPDXID: SPDXRef-882d59b76a5d4364d3159e783687ed4f
FileChecksum: SHA1: 41730477a7dbef75e6e042e34bfbd6b613ce506d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sack-xmark.svg
SPDXID: SPDXRef-47fa4ba6f321f8cc576eaed1cd82aa5b
FileChecksum: SHA1: 1d9667ff84331db2f812d9d8590ed6046c483616
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sailboat.svg
SPDXID: SPDXRef-de3730236ffa2d907e997a8e78c55b6e
FileChecksum: SHA1: a7bc5a7d457185a43ec836493b238ef70b9e37ab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/satellite-dish.svg
SPDXID: SPDXRef-6da7995071efb9fba976d41e4b1f4011
FileChecksum: SHA1: 48207e4d28be1860e548c94b27c049f5c8b86c35
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/satellite.svg
SPDXID: SPDXRef-520b3c3c25623bfd0af775478173d30f
FileChecksum: SHA1: 0c0721fad68e70d6c74b4c7168caa1f1d0cd8993
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/scale-balanced.svg
SPDXID: SPDXRef-855cb72c419d382800802b54fee1bfb5
FileChecksum: SHA1: 8d6172107f9415c05df7db0b4601d0ec97915675
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/scale-unbalanced-flip.svg
SPDXID: SPDXRef-0dca3b56294d8f624c0eff6334c08f7e
FileChecksum: SHA1: ee6330136fabb8c0235d1dcfcb4a066a23130ac9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/scale-unbalanced.svg
SPDXID: SPDXRef-f429b3f7f6bbfc2e13566107084c6d2c
FileChecksum: SHA1: 73fc0fefcac11437e3caa8cdf166f4144ea4e72f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/school-circle-check.svg
SPDXID: SPDXRef-8ef1b78e87376b9238191d05653ab46a
FileChecksum: SHA1: 160e941444e81a1389ae28bfa326e2e09e004dc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/school-circle-exclamation.svg
SPDXID: SPDXRef-4f4f3245b0e8518886527aa23c0e5338
FileChecksum: SHA1: 0d6ec117a9ef6848867247c3ed26acf23e97fc53
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/school-circle-xmark.svg
SPDXID: SPDXRef-339978cab817e5034c22f3a27e5825f6
FileChecksum: SHA1: 56e9ce141db1c680282233204bcab8310b468863
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/school-flag.svg
SPDXID: SPDXRef-2cc2bef61bac326c6d0ed379678b2080
FileChecksum: SHA1: 326f65c5db47220bebb1157b5eac74e80ea8edae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/school-lock.svg
SPDXID: SPDXRef-a4ed4c4cae055d5b8fe26337f84af155
FileChecksum: SHA1: c3620ad33bb897d11ce414fb1fea681177d548f7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/school.svg
SPDXID: SPDXRef-87387f2d8ff91e0f32db75109efe4810
FileChecksum: SHA1: 00496076be694d38c0cea27af58b92b8fa9abd9e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/scissors.svg
SPDXID: SPDXRef-d6d96fcd07d4c4a8af432edaeccb88d4
FileChecksum: SHA1: 37b9884b8bec0360a74cda31c9eed969ef0b97b1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/screwdriver-wrench.svg
SPDXID: SPDXRef-7dfe7b51cf1978769a54ca1ce8bc894b
FileChecksum: SHA1: 125c951cb1b7a064cdd1c1ac60d5f40f824a415b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/screwdriver.svg
SPDXID: SPDXRef-93f5c43576c3e146308b9ee251c04ca0
FileChecksum: SHA1: 1e425e7e33adb08d6ff8569aa329710107956e37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/scroll-torah.svg
SPDXID: SPDXRef-0073a2aa02593c94c39c02069710f1d2
FileChecksum: SHA1: 1fbcf164577c1584c9e5f242bd8ee1f93d6dcb1a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/scroll.svg
SPDXID: SPDXRef-a1a2d832cf28d9f588d7844fd630add6
FileChecksum: SHA1: 9f675b42e22ff73009b9f9e00959541bf75a04a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sd-card.svg
SPDXID: SPDXRef-7ba5a74fd249dd71c948d166a3965aa5
FileChecksum: SHA1: 19ae3360b1668af4de1ab8202de31047d2d3b726
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/section.svg
SPDXID: SPDXRef-7247a13507c4b145bf3ccf181ae14bb1
FileChecksum: SHA1: 42458769666dcfd4b89db1479ffae5c1108a099b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/seedling.svg
SPDXID: SPDXRef-d40b5707bb00751d3e4a5af6a103a5e4
FileChecksum: SHA1: 208d8fa488b37da3e3592d7267cfc9eec09fa003
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/server.svg
SPDXID: SPDXRef-0d972fec714a44ae10519f52e25c612b
FileChecksum: SHA1: a25d12f57fe1c1187a92df5babb1d2b24de49571
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shapes.svg
SPDXID: SPDXRef-eb6705402bceee4a5445c6378aac9924
FileChecksum: SHA1: b9dc171d143c0d99b81bc70b8bff43bf3d484d8a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/share-from-square.svg
SPDXID: SPDXRef-c4acea417b1d415b06c9bd3323c93c09
FileChecksum: SHA1: 70fb60c6e23fb7950c3d710ade29f0e5192a78a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/share-nodes.svg
SPDXID: SPDXRef-e6f68f3a5b7a900a1333f6d3753b8225
FileChecksum: SHA1: 4985b35ca89df951281480050434ac016a6c58a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/share.svg
SPDXID: SPDXRef-21c31993517ba4ef1c4ea0e32edba642
FileChecksum: SHA1: 3487276160ae00d6bac1ef03ab43d97f3d7ca30f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sheet-plastic.svg
SPDXID: SPDXRef-42360ee7932a4028efe227cc00bb51b2
FileChecksum: SHA1: 85afb66cf037fb233d3e4a2c2576d5cb9fd6549a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shekel-sign.svg
SPDXID: SPDXRef-2216af96dc018b9da27c1807b3b49754
FileChecksum: SHA1: 02e821a1c9d7bebc0f540872d1ab7dc4145d378b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shield-cat.svg
SPDXID: SPDXRef-8014dfc5049c8ef397618827dd684da5
FileChecksum: SHA1: 487b832ccc5a1a20be40e2b6a3cf7a4398d63d07
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shield-dog.svg
SPDXID: SPDXRef-7d074014a18f16c29fd6894f87aec16a
FileChecksum: SHA1: 56898c8f0d21cfcd5c914273604bbab7cd217c52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shield-halved.svg
SPDXID: SPDXRef-d2823461ff65f85d4bb6a24cddd9e357
FileChecksum: SHA1: cb141673545c96d8f4d1d9d364da9faef3ec8db0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shield-heart.svg
SPDXID: SPDXRef-0c2d2edf207520167004e383d2f695e6
FileChecksum: SHA1: 558c0f6d5e96910c4ee00e5629f75e59457892b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shield-virus.svg
SPDXID: SPDXRef-357b1074dc132550627cab43c86313dc
FileChecksum: SHA1: 4df2db5b402124e1f6e4aaefef45f261d1c127bb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shield.svg
SPDXID: SPDXRef-bd8c3a55e31ae7a6ece2cb0c44232013
FileChecksum: SHA1: a99ad8259b95decc1baa660acc66d93cd8fe29e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ship.svg
SPDXID: SPDXRef-67e31f80d392780c71979f1f1add373c
FileChecksum: SHA1: 119b34b55adff58ac8e0016b5bfaa59d11accc27
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shirt.svg
SPDXID: SPDXRef-2413703147f31cdf645e3774c69b13e2
FileChecksum: SHA1: 6e641e7ae97975bd0e32ed2396cce3b925807cd7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shoe-prints.svg
SPDXID: SPDXRef-3eb145c483137a08b82178aafc5421b2
FileChecksum: SHA1: 125018ee34f41b9410866067cde99d288f1cc40c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shop-lock.svg
SPDXID: SPDXRef-96ccb8ae68be93f7fc05caf9819c343d
FileChecksum: SHA1: 8711507831dd3aa04a470fdca83229014920a051
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shop-slash.svg
SPDXID: SPDXRef-68b341b2bbcdc137f67baa02d8e44e09
FileChecksum: SHA1: 7b8c8288c57034d0db3dca2e4a6b31e91079392e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shop.svg
SPDXID: SPDXRef-d8c1ff06a10acc7d58202f89aeb839fa
FileChecksum: SHA1: 867a121db5f420f6766207dfa0f24647cfea190b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shower.svg
SPDXID: SPDXRef-d00c439b0a9f3910e880c9806f7679e5
FileChecksum: SHA1: 4c17f9dbcb508c4f9016f607f317bd9a88614443
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shrimp.svg
SPDXID: SPDXRef-d260e8c1ccbd37c4b0da643e5946ecd1
FileChecksum: SHA1: 48ca4e75cf4bf307dc1c0bcd3bbe05d580ceaefa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shuffle.svg
SPDXID: SPDXRef-84ef7731476d769ac66c80c47f3c313d
FileChecksum: SHA1: 278b5986e289ec5ec4dfe16b85a0485b30924022
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/shuttle-space.svg
SPDXID: SPDXRef-939446b4cdb586c8828acf78aec8d01d
FileChecksum: SHA1: c0a2b8c8e6525d5fc7f00475ea0d63c2a1f00a6d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sign-hanging.svg
SPDXID: SPDXRef-a8688e072d75b5d4f5def0e96bcbb0eb
FileChecksum: SHA1: ed549b2221336328b1c724eb1d1a67a17833190c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/signal.svg
SPDXID: SPDXRef-42f5aa23517dc85bbc80fee99c629eb7
FileChecksum: SHA1: 442d4f8e5893a883dfdca1ed2d09f20bcada23b1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/signature.svg
SPDXID: SPDXRef-5ad6b6de1bb571ec9f1b18522a98114e
FileChecksum: SHA1: af80059dfe6057b24f7097902ef13d5d3e11eaec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/signs-post.svg
SPDXID: SPDXRef-e00a07e0623f5778b66036703d577cce
FileChecksum: SHA1: 4c33f7963c5e6d7178cc789558e93cd76caacab2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sim-card.svg
SPDXID: SPDXRef-a41418457d44ef18c5112fbaea24b5da
FileChecksum: SHA1: 40d7bc10506b13800d77ebbe1263801d47d18d0c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sink.svg
SPDXID: SPDXRef-5502baa454fb43650aa4b086cd675f5d
FileChecksum: SHA1: 714208e912ee3d8d4dd2a8e12268b7d32cf4acb1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sitemap.svg
SPDXID: SPDXRef-b8c83ad208d86ad00bb311edc4e69c75
FileChecksum: SHA1: a942a563573d9039d70a1cbb2b0935f0827011da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/skull-crossbones.svg
SPDXID: SPDXRef-1dec7bd6c1cc99d3bee545d3b97294b5
FileChecksum: SHA1: 042fea76d1c686be88845f47b2e46cbefade4346
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/skull.svg
SPDXID: SPDXRef-1b3f07590029aef418e895f73b22dd7f
FileChecksum: SHA1: 9f7db366312a5cdc182e82c573f1efee75c1131e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/slash.svg
SPDXID: SPDXRef-77884f12ad034196c9e75c60f4a2b55e
FileChecksum: SHA1: a364184ba17b6a9993e3341608f507f26692acbe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sleigh.svg
SPDXID: SPDXRef-60da9f7bd988a4e630c74aec00cf7654
FileChecksum: SHA1: 5be978a935c4d371a1d78a315a5badabfad8f9dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sliders.svg
SPDXID: SPDXRef-3333b556a8d5ba773b73b9638b68f4e1
FileChecksum: SHA1: 1cd680959297dc08b5e9542a8108950d61722d67
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/smog.svg
SPDXID: SPDXRef-646a234a603757e56db1437a77eda3a5
FileChecksum: SHA1: e8fc220980096f4fefc602801f5c0e3aa4595105
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/smoking.svg
SPDXID: SPDXRef-95fc264c76c2cc52c98e509f674dce18
FileChecksum: SHA1: 1991b0bcada24e1542ac043f47b49c29c0639b63
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/snowflake.svg
SPDXID: SPDXRef-a3c6eb9e137fc86a34ca03d2569fb4cb
FileChecksum: SHA1: 9339241a09f12a1b5c5f19304edccf236d5846ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/snowman.svg
SPDXID: SPDXRef-920e177d9356215cc73774d337985b62
FileChecksum: SHA1: 00ab922865324d698df15ed1accd05e036661498
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/snowplow.svg
SPDXID: SPDXRef-867872689dd42faed195cc9ecb537b3d
FileChecksum: SHA1: 5567304bd31af1359d58bd28f40eae5d2e9ad936
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/soap.svg
SPDXID: SPDXRef-be79d63d80c39f3d7991c1e65c230ab8
FileChecksum: SHA1: ec68739eaf260c18febcf8e20c0a1e1df103c06f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/socks.svg
SPDXID: SPDXRef-d752759764db6972cc2f093fe8a1b9be
FileChecksum: SHA1: 4cadd7134f80bd4614942b4b61c656e1c2755660
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/solar-panel.svg
SPDXID: SPDXRef-2857cc04713e24060ceaf43e40e84bcb
FileChecksum: SHA1: 7b90044184644a13ec6f9f4556ee641bc5796f49
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sort-down.svg
SPDXID: SPDXRef-e7eb711da7c987d2e33bf95924a9a82a
FileChecksum: SHA1: fcff5294076542f8768bab402cdab8c30a3d32c4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sort-up.svg
SPDXID: SPDXRef-4956f11aa961314f3ad27e858d77ef1d
FileChecksum: SHA1: 5c73474cb2dfe6121e35cad9b6b2e3fde785471c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sort.svg
SPDXID: SPDXRef-b74c9af9f75fa30089cd2ad1be793c19
FileChecksum: SHA1: ba90d088b83221b8c537b13fb34bcc0247390ed1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spa.svg
SPDXID: SPDXRef-d819b738c03d4fda4c596d6a41527fc8
FileChecksum: SHA1: e1a1ca9864b6e483f0891ca0ee9470daa7de5d27
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spaghetti-monster-flying.svg
SPDXID: SPDXRef-79c0cc409e479561a5ba28228adce0d8
FileChecksum: SHA1: c5534ad00eb5d16bb84af873cea7be812dc95167
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spell-check.svg
SPDXID: SPDXRef-c36254df7ddb17474d9f7a40227472fc
FileChecksum: SHA1: 352135b320c4c129e3c477574a46841c957d966a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spider.svg
SPDXID: SPDXRef-c8d6f420e83d825c2c92ad584aaa7355
FileChecksum: SHA1: 3d5b053a4599d015685e674aa00383f237ceb19c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spinner.svg
SPDXID: SPDXRef-edcef3fe336a638c38c80edeed30b05b
FileChecksum: SHA1: c02841397a0f3803f2ddfc068fe1e13cc9207234
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/splotch.svg
SPDXID: SPDXRef-d84901359ecbec2577e7af9e615c6860
FileChecksum: SHA1: 667b82b75cb4b4391f239522e9ed98859a4efca7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spoon.svg
SPDXID: SPDXRef-e6d18da59ae558dcf7858d570f0b8b1e
FileChecksum: SHA1: 3cf99faef29821cb52c53e38f0483373770de8db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spray-can-sparkles.svg
SPDXID: SPDXRef-2880a4f3d43157657c184f7a9cc72841
FileChecksum: SHA1: fc0a3fa81bcef8a185374e353cb4193ed357a7cb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/spray-can.svg
SPDXID: SPDXRef-52a2ac5f4bfe261bac38b1388481b4b8
FileChecksum: SHA1: 7792c648f823a753d71b0abc57e019551c291db2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-arrow-up-right.svg
SPDXID: SPDXRef-b523b574cdab3c56376e47a56716d2ed
FileChecksum: SHA1: 8335eb6d9931f1295858650636c017ceefbbf697
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-caret-down.svg
SPDXID: SPDXRef-51c527640312d904980ddb7baf365691
FileChecksum: SHA1: dff2519d599826673c88ceea52ea82113c0e0d30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-caret-left.svg
SPDXID: SPDXRef-53aa4195754c6aaa4ef9b898963ab37e
FileChecksum: SHA1: 9b77172059922819b2c9968ac03768ab60e596f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-caret-right.svg
SPDXID: SPDXRef-e824bf2bc80b4ea003c8a927a64bc790
FileChecksum: SHA1: 9c6f462fccffd47733c7d9d92040238d34a2fccd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-caret-up.svg
SPDXID: SPDXRef-c05848601c0a943e03e49f4212a8a667
FileChecksum: SHA1: b259c474fbd897522eb71c672431c5db33c5cb09
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-check.svg
SPDXID: SPDXRef-a7ca2646bd6b948be7646ca00f4def8d
FileChecksum: SHA1: 5c5f26fcb4e09b358929897e81185e2bc01b2366
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-envelope.svg
SPDXID: SPDXRef-7e5f6c0bd7b149e97b7d7df4a52be4de
FileChecksum: SHA1: 58e7ba0bb67efef6a113ea78b4cd6fc5af7786bd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-full.svg
SPDXID: SPDXRef-d5724038ac2e91f995a2e41ff7ea4995
FileChecksum: SHA1: 8157e45397964658970f1946d986ba5878440d22
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-h.svg
SPDXID: SPDXRef-7fa64c466d26baecb5e606675769f5bb
FileChecksum: SHA1: be2a979d7b517a3b5638599991ea2fd0d1b9d69c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-minus.svg
SPDXID: SPDXRef-fa5a7514bfe8e48f3d50adc34e20672d
FileChecksum: SHA1: 851979a15f8c42b3572a8d887a6ef5ccb767ae7a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-nfi.svg
SPDXID: SPDXRef-641c8bec4a7007012961674d1acae3c1
FileChecksum: SHA1: bb6d9ad06a5633794c1be90f54323b5e13bbb6ba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-parking.svg
SPDXID: SPDXRef-c6eb5b6474585c8c57d3d94460fa9711
FileChecksum: SHA1: 776ff81922d0c6e65569d4341e01d22059d437db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-pen.svg
SPDXID: SPDXRef-46a77412685ee99cf59a0da75c11af39
FileChecksum: SHA1: 70076c6a79b64000bde5292fd589b19068069062
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-person-confined.svg
SPDXID: SPDXRef-e9700f7a1f05ed7305ea5e560b590d67
FileChecksum: SHA1: 535b8a5f572fa8b5cbe99b1c23fef5ee463c7366
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-phone-flip.svg
SPDXID: SPDXRef-08df8c4cb6d7651ba2c1c188402450da
FileChecksum: SHA1: ff4af5fac3c91c2644faebc0262df7765fcea62f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-phone.svg
SPDXID: SPDXRef-eb3a8e28ec986163070fb1d93d0f80fc
FileChecksum: SHA1: 4fc88925ccbe691d29de3f725c464ae602ca2989
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-plus.svg
SPDXID: SPDXRef-bf435eb715ae4437fdb595d6587a62f3
FileChecksum: SHA1: 9e87071501701b63e20045753fbac9cf77e45e56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-poll-horizontal.svg
SPDXID: SPDXRef-2f75173920171cc54bb58b1f74137150
FileChecksum: SHA1: 7179a2c62647c5fd30c37394f635c4eadcda5fe7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-poll-vertical.svg
SPDXID: SPDXRef-fa591ca8aacf206385e413e1b03f8b9e
FileChecksum: SHA1: 04256217c3334ac7cda0d590f907826fc0dbefe8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-root-variable.svg
SPDXID: SPDXRef-e235c58e6e218f21c3ab948cd762f086
FileChecksum: SHA1: cb45cbb26aa5603bafdc2c9360ec4cecc8f832a3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-rss.svg
SPDXID: SPDXRef-e55d8f5e815e96a686074a5910435369
FileChecksum: SHA1: c09c6a9b25c2ae1184478e5bfcad300fac18a3d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-share-nodes.svg
SPDXID: SPDXRef-f41c233ed8c215800bf739360bdf4bac
FileChecksum: SHA1: 64364b07d1af1b36136f23525bff7a25012795a9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-up-right.svg
SPDXID: SPDXRef-09787b0fbd1a556b009322b2be5e7636
FileChecksum: SHA1: 606cafef913adb3e1a6b5b410f3734ca5c8a2a86
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-virus.svg
SPDXID: SPDXRef-cdb59d6500d973bc53dc6a4537e83166
FileChecksum: SHA1: 7b35f226017a720101968779ec80a2b7d6279e33
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square-xmark.svg
SPDXID: SPDXRef-19d660d053ebb1cdf1408b0b3c0cd787
FileChecksum: SHA1: 0002faebf99d4eac892e99bc3fbd8ff4e192befb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/square.svg
SPDXID: SPDXRef-6a56691ece894cddf7b08a89ef2a73f4
FileChecksum: SHA1: aa671644f7a00ab8a4f19451fe564ddcc861d3fe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/staff-snake.svg
SPDXID: SPDXRef-cbdd92cc355bf5c2d18ecea042c60cf6
FileChecksum: SHA1: f6855268ffd2b361b3ac2162413e25353f1faff6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stairs.svg
SPDXID: SPDXRef-9e8b65a15edbc544f3f8ffaab8b5f36b
FileChecksum: SHA1: 75f7ee03f69d494e6a8535b2827c78ba0d966e02
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stamp.svg
SPDXID: SPDXRef-a888e210640381cdafce3d37cd3d1358
FileChecksum: SHA1: d4e277a0f618298218d75993f103ad59ce0dfce9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stapler.svg
SPDXID: SPDXRef-405f363722f6b36ab6e8b422d13519bb
FileChecksum: SHA1: 5514679ef847c818827cfe9461ce9ac5b76431bb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/star-and-crescent.svg
SPDXID: SPDXRef-ee42dcb55822f4f087a4aca11b1fd587
FileChecksum: SHA1: 5f808e7882d4b5d6a038442935153a284bfc5799
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/star-half-stroke.svg
SPDXID: SPDXRef-6583777a6e4d040f01748188b78b8c89
FileChecksum: SHA1: a9f69597376defac927e450678935d8b06d7052f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/star-half.svg
SPDXID: SPDXRef-0f154f53d0d36af1dd15b9c52c8f045e
FileChecksum: SHA1: 6813e159deb4326138c940d385257ab1c8a9dc11
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/star-of-david.svg
SPDXID: SPDXRef-0197d4537457a69b82123f6492ecdc59
FileChecksum: SHA1: fe708d0f63dd39be71e1b937287d91fdeeaa5ce7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/star-of-life.svg
SPDXID: SPDXRef-61329c04e6db1895280665c845ffcde0
FileChecksum: SHA1: 6e8690abfea3f498f436040bacf5949aa0e2b33b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/star.svg
SPDXID: SPDXRef-9760c8a7afc76c7fcfa25b45fec1a4dd
FileChecksum: SHA1: e883a2855f58b94d7edb4ffa99fd8c89c3250978
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sterling-sign.svg
SPDXID: SPDXRef-9a2cd15d01da3a7d332075bdea5d680c
FileChecksum: SHA1: 75a6fdb4b76a3c4605d81d7fd9351ee4342aaa24
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stethoscope.svg
SPDXID: SPDXRef-0bc8205035358eb18cefd94e7fdbcb77
FileChecksum: SHA1: 3040154bb2fdd63bf279ef02e8a0348406b360f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stop.svg
SPDXID: SPDXRef-d16a9f81bc1f3910128010e011d3d519
FileChecksum: SHA1: 4adc681dbcba5108ebf93b8399653021f53e5974
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stopwatch-20.svg
SPDXID: SPDXRef-cb121570ebfe138c59a69db90f7a8381
FileChecksum: SHA1: 6a1b64f3a08b169c4959f305349861ab5fa56609
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stopwatch.svg
SPDXID: SPDXRef-e76af2ef878d1417fb0ca510a5e24a2b
FileChecksum: SHA1: 86030d921d51a7d939d802c89119a1ebd5e9752a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/store-slash.svg
SPDXID: SPDXRef-fe59f9f6fcd82955a1a4b8032727c335
FileChecksum: SHA1: abb22ece509a59bc8c9b37acc5642175fbecdfda
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/store.svg
SPDXID: SPDXRef-6c27997d80002cfae9b0f03acc511e2d
FileChecksum: SHA1: 834efe289ca39875d7af5674c8cf16b339d7d904
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/street-view.svg
SPDXID: SPDXRef-c3a81403e7e1d273371b879a712ea58c
FileChecksum: SHA1: 816cfc80aaa74e000f201f2a4dffcdd00845c978
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/strikethrough.svg
SPDXID: SPDXRef-7e9f679662e9130007dc64cf4dfec361
FileChecksum: SHA1: 9e3081a8e49a02bd09503bcce520dfbcb7c3cd70
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/stroopwafel.svg
SPDXID: SPDXRef-9227de5f1e72737cb154035ec7981e28
FileChecksum: SHA1: ddce4ff96a0e37886995c248b8e163bdfdfdbd11
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/subscript.svg
SPDXID: SPDXRef-b15159d07aadc8c3e459854d5e94bb46
FileChecksum: SHA1: 427bdd7a6d4c211321549dc6937ebfe431bce7f8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/suitcase-medical.svg
SPDXID: SPDXRef-6afd75b5115a6787b65d7d2d83537989
FileChecksum: SHA1: 78f1ce1fb2c34e10530ee50546160d4430b83875
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/suitcase-rolling.svg
SPDXID: SPDXRef-ad9964673fb34dd0a83e023b68f6ca4f
FileChecksum: SHA1: 5ecd823fe8cb0c263073dcf3852264a851e61dfe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/suitcase.svg
SPDXID: SPDXRef-fe759c1ba1e5dbe7a8b8dfea1060d96c
FileChecksum: SHA1: 9e388b8b79eedf0c61d60524059afa4b71e3b7b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sun-plant-wilt.svg
SPDXID: SPDXRef-dc4697f2d439c79e6823c53d2111ee78
FileChecksum: SHA1: bdc1ff76c7919832084a48dcdb3a5071d2fe4e87
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/sun.svg
SPDXID: SPDXRef-f030da2e40eee12ce45226e2bdb5b0e2
FileChecksum: SHA1: 7b2134d0ca25d78be856d328928a7d9b229e20ee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/superscript.svg
SPDXID: SPDXRef-797b48e54647dcf91f55be8fae1e4e9d
FileChecksum: SHA1: 27749045e84d9249408c17d8254ac247b6b94520
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/swatchbook.svg
SPDXID: SPDXRef-b2b7dbec699bb8fc8aa117b11b1e0c6c
FileChecksum: SHA1: 876e46dcb0415f17a0c1d631c412f5a2e3913989
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/synagogue.svg
SPDXID: SPDXRef-25033dea77f823404321d732a27aebdd
FileChecksum: SHA1: 6f00dec5bf48f1c613dc3c6d2b6fed2a0cf98d13
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/syringe.svg
SPDXID: SPDXRef-23f5d023417d24313f9f480a825239e4
FileChecksum: SHA1: 4395c93f032ab78f61da34ad08fb8e4e7e06ae5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/t.svg
SPDXID: SPDXRef-ccd54cc2d58687ce8ffd88f437690964
FileChecksum: SHA1: 6dfe037c8f8cd463626a4aadabe406f0f0df41aa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/table-cells-large.svg
SPDXID: SPDXRef-a84f11ac318a2e55e86db1126c378ce0
FileChecksum: SHA1: a288d5f87b39c6719d9af68de8fb71c410007e5e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/table-cells.svg
SPDXID: SPDXRef-ee7373d81c3d0232c737542c830e22cb
FileChecksum: SHA1: fa13179f569e583f0abf7fd1de2229c8b5baea29
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/table-columns.svg
SPDXID: SPDXRef-63b005f1226a5fa6c0dc06db14456857
FileChecksum: SHA1: 971e7a417019a31fe03ce0947aa9c16910e5209a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/table-list.svg
SPDXID: SPDXRef-e821c64904b5b78aa9d7c162988644d6
FileChecksum: SHA1: 755d727b602db8b6ede5881b99d478e6d00b8b54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/table-tennis-paddle-ball.svg
SPDXID: SPDXRef-c389386d115eeac1ae2354bb8c3d8505
FileChecksum: SHA1: a8516f01c605a444b8b3013dddd6dc3120ac52ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/table.svg
SPDXID: SPDXRef-4f9b1237df6c14e938e202fc8709e60c
FileChecksum: SHA1: 18296b0cf8765f91950237131d53a960e555e4eb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tablet-button.svg
SPDXID: SPDXRef-1aec9f91461db652bc916b85a42dfd2b
FileChecksum: SHA1: 2eeac9bb3f63ffad00508542f2fcde0249e77ca4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tablet-screen-button.svg
SPDXID: SPDXRef-cac41045cf4921a513707495ae9ddd86
FileChecksum: SHA1: 71d9cdf15535874840f8c65054c50f75bcae6eaa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tablet.svg
SPDXID: SPDXRef-c6a56148073128c242a803f694575739
FileChecksum: SHA1: f0d89aa835721762ef26ef581b4c436cd5f52a27
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tablets.svg
SPDXID: SPDXRef-117b4531dedfb69fae32ab2b1be4c1eb
FileChecksum: SHA1: bff242489b4a9a77d623a688996b804542de609e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tachograph-digital.svg
SPDXID: SPDXRef-5965010db2e34d86cbe823a38e03834f
FileChecksum: SHA1: aa43c77d6aa8d8fec80f91ea6b7bbf64b584b9f1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tag.svg
SPDXID: SPDXRef-3e5badd226f1cb30cef3a8b008aa3d71
FileChecksum: SHA1: a32abe45ce55176cfa95b695adbd33a8ab56fd4a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tags.svg
SPDXID: SPDXRef-27bde56ab15460f4e663cf21b7380d71
FileChecksum: SHA1: 8ccec9030dd6a5f122e95863219eb1cef632115f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tape.svg
SPDXID: SPDXRef-230c0783550e1563cc34ba8b9e63c5c1
FileChecksum: SHA1: 48f4ca43476ff26e73f152128a0d9f2f29cb060c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tarp-droplet.svg
SPDXID: SPDXRef-b2b90f6ce10dd5693dbd076a5ec92101
FileChecksum: SHA1: 7f055a0f8e9fd3b89840c654028ef81118f9dab1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tarp.svg
SPDXID: SPDXRef-2f942b066d9bdd379446b7ed74f81b06
FileChecksum: SHA1: 40ad12005296666ead8f9bb4cc8328fffda4cf08
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/taxi.svg
SPDXID: SPDXRef-a91d811312b1a53d26b4bf0a252fd8f2
FileChecksum: SHA1: 508e4747ccfe7997f49f7d00251d465611933eaa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/teeth-open.svg
SPDXID: SPDXRef-6f83f07c80655e80f1a7f7fdd6d52046
FileChecksum: SHA1: 8f11cbe321ff012282578859969b80b739d64735
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/teeth.svg
SPDXID: SPDXRef-f38a0e049711375fd73d0f01a1a8ce4c
FileChecksum: SHA1: 32446f6d633b37439b5f3b7a6a9f6a861f9d6487
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-arrow-down.svg
SPDXID: SPDXRef-d6fb7022af7b9b6c03b6b66a8e09de7e
FileChecksum: SHA1: 9d6242545c7f044c1f737888d099a22d93637634
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-arrow-up.svg
SPDXID: SPDXRef-07a19ce635ece93383d100ab3ce15ceb
FileChecksum: SHA1: 1cce0c1b21e002f454c2db6d5d0daf9b1c0b09e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-empty.svg
SPDXID: SPDXRef-5821dd8b2f1994b6113570d81a8fbf68
FileChecksum: SHA1: ef3c797ba0292a0d1b326832c6d296b253299965
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-full.svg
SPDXID: SPDXRef-98ed90d5c685b73d9442670fd672d5a2
FileChecksum: SHA1: 0a201018db48c7f90e69e33b7697169f2bae1ecd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-half.svg
SPDXID: SPDXRef-75ac16039a5ad23a945a680f005ae9cb
FileChecksum: SHA1: 9944343a82a8a3f29c770a71b0be3aaa1f836f49
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-high.svg
SPDXID: SPDXRef-251a57db04674290852a6583dcf184c2
FileChecksum: SHA1: 2e167f2428069a63f28ef7c4f17df5dfe863162f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-low.svg
SPDXID: SPDXRef-f1629a8e88b5eee7c5922f53e66cf13a
FileChecksum: SHA1: 64ae28c297236cc8de4353f111b49785655b317b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-quarter.svg
SPDXID: SPDXRef-4ccd62798597fb9e870d27d76b60733c
FileChecksum: SHA1: e93a25c15161a1047bad08cf5ac71d2c9583748b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/temperature-three-quarters.svg
SPDXID: SPDXRef-3d854a7c8a1d236b69645351ca9adfe2
FileChecksum: SHA1: 6e3a47c73f754a3b84bb279afbbb3e66ebdbb56e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tenge-sign.svg
SPDXID: SPDXRef-3912c40ed31725b6edf277160de47924
FileChecksum: SHA1: ff9c521d36375d697c7e29100a91801e5859dfab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tent-arrow-down-to-line.svg
SPDXID: SPDXRef-27d384986333081764a59be5102b5bcc
FileChecksum: SHA1: d90e491fe10b8902ca0e5d74f4c98b51eaba1683
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tent-arrow-left-right.svg
SPDXID: SPDXRef-3287caf52dec195d51a75db2b7f575e1
FileChecksum: SHA1: 076f27c36c28f43c1f3ab1d8699ccbcee37210d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tent-arrow-turn-left.svg
SPDXID: SPDXRef-dec17bf3cd3ba8556986278be702561c
FileChecksum: SHA1: cef4bdad95f8eae57bd2a14ec6d212b73ae55ca4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tent-arrows-down.svg
SPDXID: SPDXRef-e6b4ae173df0278414751a89c3de6965
FileChecksum: SHA1: 0a165ecda1c05ef9074ddddcf2be6014d45b265f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tent.svg
SPDXID: SPDXRef-ca9de2f3aa1f8e5d69ab1510f96c96bd
FileChecksum: SHA1: 45581df422875eb70af9b1201894ea24269c0695
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tents.svg
SPDXID: SPDXRef-bc751394374d1e26cb89612dcf83e33f
FileChecksum: SHA1: b1bc7045b86debf3440df80d62756258d429aea3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/terminal.svg
SPDXID: SPDXRef-669873b48672ccae0c6ed3f2d508ab6d
FileChecksum: SHA1: e9e4f348db530aafd6ac3b6d9407dbd023773ee5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/text-height.svg
SPDXID: SPDXRef-580cd85bed4853da3b0c6363ee7fedb1
FileChecksum: SHA1: d0d9392641280c1430ece0b8120fc96160ccf689
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/text-slash.svg
SPDXID: SPDXRef-60f8e7e28b665744e5c93193465150b8
FileChecksum: SHA1: 62905d9aae59badcae1c32ace06b0931445de42d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/text-width.svg
SPDXID: SPDXRef-dfe80c9188b5f007e38ad0aed56b6e6d
FileChecksum: SHA1: 68fde15d2a3b36c28155e5a9959c85eca0f5518e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/thermometer.svg
SPDXID: SPDXRef-5cdbda43299d17b55009dfa78b74f0b1
FileChecksum: SHA1: 99e2c8c3bf3cdc1e2fa904c1434525d31ad1507f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/thumbs-down.svg
SPDXID: SPDXRef-fc42bbc0e1945ee0bea2f6c0e0fd90fb
FileChecksum: SHA1: d1af7723370456a5d489e798f590996ff9c50877
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/thumbs-up.svg
SPDXID: SPDXRef-552c547c36f6594e538f1fb24ebfd250
FileChecksum: SHA1: e868c6a71107f5330fbc85fca3d39e40fb779f7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/thumbtack.svg
SPDXID: SPDXRef-069068ea89f7758f71476739488b2644
FileChecksum: SHA1: d2527cc0d31f59f049c85cef46e78e865969e624
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ticket-simple.svg
SPDXID: SPDXRef-e927b087789f374113934053418b310c
FileChecksum: SHA1: eb6779cacc849b9bff28ee099d84042a9a28ad27
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/ticket.svg
SPDXID: SPDXRef-e4162c7e6eb3686ad103d31a1d63c354
FileChecksum: SHA1: 6819e3bfc422635cd7b8ce7f9bca07b7881559e0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/timeline.svg
SPDXID: SPDXRef-52c44298ae8f83c4b81716bd94112dbc
FileChecksum: SHA1: ad19ae42c34ed6662b2bfb1420afa3fe0330a1b0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toggle-off.svg
SPDXID: SPDXRef-fc586b5cd8d9587c631c5c4666677754
FileChecksum: SHA1: 06d15ab240f535f1f62fd645ec925825d6af559b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toggle-on.svg
SPDXID: SPDXRef-06f3931e930681db6581020b97dd0650
FileChecksum: SHA1: 48c0d1a761d9d7e6cfd41ac0eb0e264a7309aae8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toilet-paper-slash.svg
SPDXID: SPDXRef-db47203d609fb58e40dde59122ae03ea
FileChecksum: SHA1: 47d296c8bd7170e5786e2d6e4fcf1575b090ddad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toilet-paper.svg
SPDXID: SPDXRef-d3194c0d7bcf4e914762a5cb4bb8bf37
FileChecksum: SHA1: 99cff79ed8f68629679f7c009d3689c215341ae7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toilet-portable.svg
SPDXID: SPDXRef-1f6d0339eb365140660aaa7f1ca9713f
FileChecksum: SHA1: eb8105ef236cc886f5cd108dfee5a45e428a051f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toilet.svg
SPDXID: SPDXRef-087181edfb9f2cc62836cacf4ca3a260
FileChecksum: SHA1: 7fb279cfd4e6058022e4fcf6f5b425937d9b9f74
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toilets-portable.svg
SPDXID: SPDXRef-4a2383094340ea5e4b8d69b58770caf1
FileChecksum: SHA1: 89b0e4a45c1c3470adb3e2d2115a898f41bb16eb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/toolbox.svg
SPDXID: SPDXRef-dd577ef09940f99c58fe0358e5a61ba5
FileChecksum: SHA1: e1129692bbb4a494ccd7e52679f1b45ec56a3e8a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tooth.svg
SPDXID: SPDXRef-c4a722d6c71946a9b8bf5d94535849b4
FileChecksum: SHA1: 231bd6de8d39c212578ce53ba47145d50f6c575d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/torii-gate.svg
SPDXID: SPDXRef-efe66f4d0a276abcd33760bea3f0f876
FileChecksum: SHA1: 3bf86f20fdea6275e49eb2f75f0a2425eeb555ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tornado.svg
SPDXID: SPDXRef-20aab876bab7cf3800cd4d2fb52f04f4
FileChecksum: SHA1: d1ba34ddd2651057011a8e3a3837abaf0d6e7349
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tower-broadcast.svg
SPDXID: SPDXRef-debf62da478435bddfbcab710d233017
FileChecksum: SHA1: 709375418fed1e1814d5c415f004b6f376aba0ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tower-cell.svg
SPDXID: SPDXRef-c12adcc14972af681c28766109b90df6
FileChecksum: SHA1: 881187b096d3749a17596c6caf25eab0b3b97633
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tower-observation.svg
SPDXID: SPDXRef-0a237dbcaef9db3f967e84ae44838ad0
FileChecksum: SHA1: 816a95748fb5600b1deed79a0f8d38dfd0178b03
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tractor.svg
SPDXID: SPDXRef-85d3ec6dfc24dfd64f81cd0d4bf6833e
FileChecksum: SHA1: 3eaad04884ed3d391ccb930e75f3251365832ad9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trademark.svg
SPDXID: SPDXRef-f2abc9e5683d65bae98f78ada266690f
FileChecksum: SHA1: 689ea4c3d13545dbc923eebcebba2cbd74815d65
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/traffic-light.svg
SPDXID: SPDXRef-0931d7aafdd7dbef26ba16f0a8f18498
FileChecksum: SHA1: eba33ac43bc80ce34b021d7591b1c2c8b1e1758b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trailer.svg
SPDXID: SPDXRef-4cf6530a398db0e61ade57a33e76a914
FileChecksum: SHA1: fc028bd36a93eced4c25e72addebcfdbc6968111
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/train-subway.svg
SPDXID: SPDXRef-fcb157b14eb9b55ea17209a06ef2e3d5
FileChecksum: SHA1: f36b9fe1859aea7701c5cc2ef17c6336d2459fe8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/train-tram.svg
SPDXID: SPDXRef-f44d1dc868cd660d301cec62b267b9ed
FileChecksum: SHA1: 53a4cf0c4ecb0c580a8eee21f4e846a218a49428
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/train.svg
SPDXID: SPDXRef-aed826edd56dab5338cfdfc6e7ad2834
FileChecksum: SHA1: 298bda5d510e10e709f21b7053a9a9b89eb121ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/transgender.svg
SPDXID: SPDXRef-c902361ec1bafe22b6dc0da10eed1e58
FileChecksum: SHA1: 4fcceb21eed79579b49cd55e2a202e63b6fcc942
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trash-arrow-up.svg
SPDXID: SPDXRef-9d72b59b65af629d4c3d8246dfe44366
FileChecksum: SHA1: 5a8509b191df7e823e4742bc31130d562b15b366
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trash-can-arrow-up.svg
SPDXID: SPDXRef-7fb8273e1750a2d22cc7284ae921c310
FileChecksum: SHA1: 301066ffcb50ea5948ab88fe98cc46161df54d0f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trash-can.svg
SPDXID: SPDXRef-f7403d85b6ca6c408ec0a797a0eb00e6
FileChecksum: SHA1: 8f7c3f48321bb123795904f9beebd943ebb336e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trash.svg
SPDXID: SPDXRef-8ec7b932f3d4f5444db29526a4382ba6
FileChecksum: SHA1: 239405349693bb4de998b5e993c94d4584308523
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tree-city.svg
SPDXID: SPDXRef-c0828cb1c58bbb8560f6c7964a19e072
FileChecksum: SHA1: 14d915bcdad28ab2fac107455420977766164456
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tree.svg
SPDXID: SPDXRef-5cd22a3940367e54af2d75faad6842bd
FileChecksum: SHA1: c6e310a00d88e9e5c0d421b2704674f9f5f305d3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/triangle-exclamation.svg
SPDXID: SPDXRef-29fbedde485f8c8859567ce065d4df63
FileChecksum: SHA1: 7175d61d21f6059f4f455b6c273285785c36e8fd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trophy.svg
SPDXID: SPDXRef-504fe96e0e0e8c1596d611e1d4679dd9
FileChecksum: SHA1: 4184d11f847fdf26568e96064a8e21c70ccab00f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trowel-bricks.svg
SPDXID: SPDXRef-043736ed7caf2e806deb2f3227c4678c
FileChecksum: SHA1: f8d0d5cfb21ad59ffacb3fd4b19a7793f5da05b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/trowel.svg
SPDXID: SPDXRef-4ee256d572870b2a6c9578b7ed4ab889
FileChecksum: SHA1: 84e106308630ad21f4a98ff06c1873d97f8f1a0b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-arrow-right.svg
SPDXID: SPDXRef-02071a0e76bc862691fee6f18b91dfa4
FileChecksum: SHA1: 340c651066b7330cb500c4ed7a0d6cd4cb4e4ebc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-droplet.svg
SPDXID: SPDXRef-c3025634bdeac3f355fb5bfe594133af
FileChecksum: SHA1: 551f200ecb984768571a1041f3a299cd699719fd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-fast.svg
SPDXID: SPDXRef-834952bc1d125980e5796cc32ac46806
FileChecksum: SHA1: 700a7bf98e1e0e0f708f5b5b4cf1b4c3e3244283
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-field-un.svg
SPDXID: SPDXRef-1d6568d5b6da0ea38e299514787001d0
FileChecksum: SHA1: c14774b7b0ab2743ecebdf6f89becb8d74e4e3d0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-field.svg
SPDXID: SPDXRef-c39e3fb3ab38436894ec1cade338d6ec
FileChecksum: SHA1: dd230bc89615b83b9fbc0f48f371661b9a8c6784
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-front.svg
SPDXID: SPDXRef-2ade9b81a57b13bbbd657bc808fbc6a5
FileChecksum: SHA1: d5aaef63cf7c4089aa7fe46fdf97a4f02ced4bb5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-medical.svg
SPDXID: SPDXRef-aa3dc3239a0786eb656d7d42a0089627
FileChecksum: SHA1: 59876d0c57b73b5bd13d0d36e73b2da2b51ffc37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-monster.svg
SPDXID: SPDXRef-676ec92d0a5b861da3a4e294c32534a2
FileChecksum: SHA1: cdc0273767a91ae7247f6816fa71264d95a34119
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-moving.svg
SPDXID: SPDXRef-5680711bcd0c4661536b8700c1d33a97
FileChecksum: SHA1: 5331b543c9efd616bd1e6f21ec8d86fc149e14d7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-pickup.svg
SPDXID: SPDXRef-386b01c32fa255d969a643bec4bcdd1e
FileChecksum: SHA1: 650105300893cfd540ebd9586c00f2e5ad756c25
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-plane.svg
SPDXID: SPDXRef-7a487c34b4321a4ac80dde943f927119
FileChecksum: SHA1: 1e81f90987d93da46cd2ca49e9fbcdee3eaeef65
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck-ramp-box.svg
SPDXID: SPDXRef-1251efa03cca02d32e6f9981fa4850fd
FileChecksum: SHA1: 7c0a1909a0288296c967a629f01059f25b17e9af
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/truck.svg
SPDXID: SPDXRef-3a657a69aa0ee956b34966cfa435cad9
FileChecksum: SHA1: 5c3f82012e68cfb5dce587d31e374c420d756d07
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tty.svg
SPDXID: SPDXRef-4173fffbfd493ed8ccda2a7f2d5cf988
FileChecksum: SHA1: 1101cde19a5fa8795ddafed7f02d42ba19d786ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/turkish-lira-sign.svg
SPDXID: SPDXRef-6a2df3b75b9f0fa83cd5e6a0b4d32e7f
FileChecksum: SHA1: 3f1a317b58f620d8bd687272bffbb4fca575c878
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/turn-down.svg
SPDXID: SPDXRef-9d25edf0cc02079dd6c1c0438de0e79d
FileChecksum: SHA1: b65cf449cdc8ae08f56f29a524ce21479021fc1b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/turn-up.svg
SPDXID: SPDXRef-d95df253a0b316ca5cf9dbb6cbfbe24d
FileChecksum: SHA1: d1604a51ff74628aea14747751849c3e7771ab9b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/tv.svg
SPDXID: SPDXRef-226bd546a734e5f00afbe59d225dd403
FileChecksum: SHA1: a77af7509730dd7ce1eb8eb0d923fe56143e19f0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/u.svg
SPDXID: SPDXRef-388bb038b6175d5911bd0b9883ce2160
FileChecksum: SHA1: a4354bea43eaea19c36892a27d54c5666a55e847
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/umbrella-beach.svg
SPDXID: SPDXRef-4f26529bd0ad765daed0f95b30fc536b
FileChecksum: SHA1: 98e604c676a6ce88db91ecccb5c66c8135494e04
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/umbrella.svg
SPDXID: SPDXRef-84170e9d1f1a9f23ac0ae36b67bf9e27
FileChecksum: SHA1: e357c9a38af61852552b08dab77826ebbd779fd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/underline.svg
SPDXID: SPDXRef-bc09798aaf923c788227c365edc02124
FileChecksum: SHA1: 80a5795833df9e3d2e2a453556e340a1084c6104
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/universal-access.svg
SPDXID: SPDXRef-218a46251d764bff750ac646a6382189
FileChecksum: SHA1: 9537745be39a72029027b4528740a3838c9f8893
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/unlock-keyhole.svg
SPDXID: SPDXRef-7791a934130e911e9e1299b98afb4ed0
FileChecksum: SHA1: b034c6025d5f045c32c20d7fe6b28dbfe727720d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/unlock.svg
SPDXID: SPDXRef-78d89d3e6e980509ad73f8c894e08133
FileChecksum: SHA1: 40c774008084e2622548c34ac7b8928cb4e829a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/up-down-left-right.svg
SPDXID: SPDXRef-6dfea0ef696197a4ad79e681859a6709
FileChecksum: SHA1: 98c0caae7a16b7b4425e802e8508565091be136c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/up-down.svg
SPDXID: SPDXRef-39dea75de69508f5d28ae829daf05bb4
FileChecksum: SHA1: e4be68199a253381ffbbf16b1b0e16a5ec66906f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/up-long.svg
SPDXID: SPDXRef-80e50fba997086464270e66850677229
FileChecksum: SHA1: 7704346d2719fd75e4214a06c26bc853fddd2f56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/up-right-and-down-left-from-center.svg
SPDXID: SPDXRef-439a0fe668e1f3d6ff3ec57860d89ce6
FileChecksum: SHA1: 82bc9812028ea931c24ffa4a9e41377d977682d7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/up-right-from-square.svg
SPDXID: SPDXRef-02805b1939ee74fa0bf3073dbe93b4ba
FileChecksum: SHA1: 2203ab390841c28a6751f47bd79caade24ef1da7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/upload.svg
SPDXID: SPDXRef-edcc5bc5bfc432daa1ea5de1a7f1882f
FileChecksum: SHA1: 580bce120110deafe9ae9b1d531a6e8c948a8bda
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-astronaut.svg
SPDXID: SPDXRef-3f392cea4e2c6093f2960eff15ba91bd
FileChecksum: SHA1: cdaa632a03eee743b8f0f67b93e635b9b0742a99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-check.svg
SPDXID: SPDXRef-249e1bf154f9505cbd8e71ccaca4aff0
FileChecksum: SHA1: 0313cbff5dbee77226fd8a3d5d38b0562d77eb39
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-clock.svg
SPDXID: SPDXRef-cf7608dbf3388439cf08ca8d7762c5dc
FileChecksum: SHA1: 697059e43397cb3913430abce5d52704a27b02d8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-doctor.svg
SPDXID: SPDXRef-564062d13d25d8d21b37d13e9389d9ee
FileChecksum: SHA1: 6bac7eaa9be5f71fda8ae35d2f9daaa57a875ba6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-gear.svg
SPDXID: SPDXRef-e5c3ca5d03f363ef9ad0677a2282932a
FileChecksum: SHA1: c68651b96167aa8b2ba32a5fc2f1de6f6fc1ae7c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-graduate.svg
SPDXID: SPDXRef-f6452389437231e8479e264a8cb3ac3b
FileChecksum: SHA1: 998bebd820fe9ce66226ed49e85b569dd7f1ac94
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-group.svg
SPDXID: SPDXRef-5dcb601d4373c972e9f2ddf427bc3af2
FileChecksum: SHA1: 909f513ce0789f0ac7790cac649d8546bd77331e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-injured.svg
SPDXID: SPDXRef-bac25549f579a9346afac22d15b21cbf
FileChecksum: SHA1: 5fc974e4ea2bfb622556ad8b111ebc21d728b00e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-large-slash.svg
SPDXID: SPDXRef-64b41355c2f94ed03b30727a96b2bf9c
FileChecksum: SHA1: f2f6dd63cb8998b778ed605b9fac420d04d34c63
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-large.svg
SPDXID: SPDXRef-25f370cc9c2f50684bdfdf5fc22a9f15
FileChecksum: SHA1: e677a9cacb1d08844e8625fcf6f4e75302e18508
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-lock.svg
SPDXID: SPDXRef-b6447290b065836ee054f879036b5747
FileChecksum: SHA1: 1b96f68e1e07330dcf7404e5ad460dc7848e28c2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-minus.svg
SPDXID: SPDXRef-ab9ca6d62393179ff86bbdb7e9c1d833
FileChecksum: SHA1: b542c800fdab7f90e996c7437fd60c0a0a4cf4c3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-ninja.svg
SPDXID: SPDXRef-a6ec064300e54bbba962fe0283ac3acc
FileChecksum: SHA1: f4d4637e73bdbb1cfcf1f00ba9a2632d79d43ea0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-nurse.svg
SPDXID: SPDXRef-b3d80431ccec51ef88294b7f6bca3352
FileChecksum: SHA1: f9a7c952f698decc23ddc473c01262479ace7c55
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-pen.svg
SPDXID: SPDXRef-4bec17b6f168d169f8b65f8e0c8049a2
FileChecksum: SHA1: 7b1ddeb5b253a74aa7e9ef2b784c16f3bda60636
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-plus.svg
SPDXID: SPDXRef-c148f5f68ba37de096138db6ebd9b9ea
FileChecksum: SHA1: 97311e82f5fdc84fa68c41c1455c115dde403bcd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-secret.svg
SPDXID: SPDXRef-a7c52edf672bf773f43bd2acf386b81a
FileChecksum: SHA1: d869447fe108fb087653a286eb8d8eddd2cc20a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-shield.svg
SPDXID: SPDXRef-51b1d357e33bc037bcdfa14734f3bf41
FileChecksum: SHA1: 39bd0ad04d261aed9e1f58a59d58ad874797b87a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-slash.svg
SPDXID: SPDXRef-004344e94e6c87524249430100f35123
FileChecksum: SHA1: 5fa9c1feb4853c005cae9b71c2e6575aea404001
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-tag.svg
SPDXID: SPDXRef-a1afc7ff806aefb28fd0ebd3aafd4e3e
FileChecksum: SHA1: 530db910e4b8fa140d64b0d9ba744ca3fe4baae1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-tie.svg
SPDXID: SPDXRef-5821d2987babf1b41e0bb030ed184b71
FileChecksum: SHA1: 5c4daf73fb8e46f7e5c0d1d83a340720453ec695
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user-xmark.svg
SPDXID: SPDXRef-11381696ba3aaad65308c119dff312cf
FileChecksum: SHA1: 851dd88732edd89f75997ad7cec206bd7c804bc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/user.svg
SPDXID: SPDXRef-39560686be8f1707d9bcce577c65d610
FileChecksum: SHA1: e4bae0ef104ce7a3cf6fbaac98a88f75f5d35679
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users-between-lines.svg
SPDXID: SPDXRef-b1d97c77903ecdb8898273e3f4d14de3
FileChecksum: SHA1: 60be6ca3f085da8c95ff4780a3a42a10de936872
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users-gear.svg
SPDXID: SPDXRef-b39437d57e14104736562895f0703b56
FileChecksum: SHA1: 7085190f2b2539fa2175c3c86dc546ba714349d5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users-line.svg
SPDXID: SPDXRef-97b4d571c640b790788ed40c96985d03
FileChecksum: SHA1: f61973f18361315f9e483191c43138627470f326
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users-rays.svg
SPDXID: SPDXRef-3dd487242b264660ada1c7f2c94e3b5f
FileChecksum: SHA1: 30572597610b4f2cae21e1e2d55a73ebd419564b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users-rectangle.svg
SPDXID: SPDXRef-1d9880915feed5108a7510da4d593c29
FileChecksum: SHA1: d2d54c9276551c943c5895ec72aaacfafd77c40a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users-slash.svg
SPDXID: SPDXRef-bf7ce6b833429be1d2f980b3a7efdb5a
FileChecksum: SHA1: 399fe55adb22d84b5926c2f5cdcf85b1d9c85185
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users-viewfinder.svg
SPDXID: SPDXRef-68443db7483dbdfe2935a06c57f54c0d
FileChecksum: SHA1: 3415a8d757db451848a2530ca111e0fffe94c720
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/users.svg
SPDXID: SPDXRef-5b13d61f7ea28bd1854d62fbf3f4be3c
FileChecksum: SHA1: 194ecae6a7b363dd4972a2379e1adebc9eff71a3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/utensils.svg
SPDXID: SPDXRef-9a2f8b675154ec21280ca56935012979
FileChecksum: SHA1: 3d514b6e7eb5eca7dad9356be5b019d9c4e2ebe5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/v.svg
SPDXID: SPDXRef-ac45c000856ab290b57111e3808c24e8
FileChecksum: SHA1: 47054aaa6cae6298b443686a062924a51514032b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/van-shuttle.svg
SPDXID: SPDXRef-b549427887625247dfcce8c3a00746b1
FileChecksum: SHA1: e5d85a191555037587c2a467ae6e62d920f7db2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vault.svg
SPDXID: SPDXRef-9c888dbf551c99c6a603027cc8cf5f94
FileChecksum: SHA1: e23e4dff8f9bacb319d54e42597b5585e69a1981
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vector-square.svg
SPDXID: SPDXRef-d8732e22c73616ed3eb6d62614459da8
FileChecksum: SHA1: 6dcf0686d1e7e0131b4bd7dd4d7813afc572a9a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/venus-double.svg
SPDXID: SPDXRef-f6ab258b5827e6315f8495cf9ee42542
FileChecksum: SHA1: c1199f79c434cd22c8195bb87d065793b06f7717
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/venus-mars.svg
SPDXID: SPDXRef-17bffa2b56e5d0497cac0bc6593ab30c
FileChecksum: SHA1: 2787271dc9a570d704e4afb16050be382cfdf4d0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/venus.svg
SPDXID: SPDXRef-aa3e179eade70fc1d0b8b1441c930943
FileChecksum: SHA1: 5659e93f0295ea1fc1b980813ff0b7d4192521c2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vest-patches.svg
SPDXID: SPDXRef-6916d34eed8a98075ef4ab54b48e04ef
FileChecksum: SHA1: 9fb7aa1a883bdb7ce01bd978bd968f7d6a333e3c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vest.svg
SPDXID: SPDXRef-d64021b30cc38a13b2b420e2cd88c566
FileChecksum: SHA1: 8ccb46e04ab3cf0ff646caf53a3d172d31151f23
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vial-circle-check.svg
SPDXID: SPDXRef-ebc7fa89e0b58c22b9a766e57a91288c
FileChecksum: SHA1: 8098607b128659778b161be40aadf65502bf21fc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vial-virus.svg
SPDXID: SPDXRef-91c48091eefb9441a3896cbc26a19aa4
FileChecksum: SHA1: 73a816a7a32aa84d68665cb86f9b5ae381c22a6b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vial.svg
SPDXID: SPDXRef-36c284045b0e5d1d00bd89ce7ed2c51c
FileChecksum: SHA1: 0ffb05919ed95defaadb85c332ef16aac37956db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vials.svg
SPDXID: SPDXRef-372e67ae8f7b6412e7536fef17890ef2
FileChecksum: SHA1: dfb55ab11358ea48e7bee9cc2c00b1d87a615319
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/video-slash.svg
SPDXID: SPDXRef-103a4b2324f7ea6ad541602d5f178f20
FileChecksum: SHA1: ba54ccb585bd85463c78e01b29fe52e4e6f7a90a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/video.svg
SPDXID: SPDXRef-72c647749f3fd03f9bc8e9ff865bf211
FileChecksum: SHA1: 681175d945a3de45288d454d994f777cb14bb9c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vihara.svg
SPDXID: SPDXRef-4189f0a0d13c6bacf252b3c8c99d1828
FileChecksum: SHA1: d440b50c7ad2309cb9bad58c9cc809e8e4dd6e78
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/virus-covid-slash.svg
SPDXID: SPDXRef-c8221e2ccfac39833990509d2569617b
FileChecksum: SHA1: 8491169c30782cd2fbcba28500e49aa11ef80d43
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/virus-covid.svg
SPDXID: SPDXRef-208db9f01956424e3bbf2ab8b20491ee
FileChecksum: SHA1: c4630ca00729579513740b613a7db2563bde9e2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/virus-slash.svg
SPDXID: SPDXRef-f10d4885761a4a83cdb8015023bfc0fe
FileChecksum: SHA1: 150a8201f5ac2537b7d6ae48f9b00581208b71c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/virus.svg
SPDXID: SPDXRef-c8e4a735f99d58e77213377d8d1bb274
FileChecksum: SHA1: f0ca6768bc2e1d73ba8aadf8d014a6fd771bd413
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/viruses.svg
SPDXID: SPDXRef-6517d3ab03cb08faeadff1a1acc7e645
FileChecksum: SHA1: 7e3db30ef3baaaa1b1670b85433d7411659c8887
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/voicemail.svg
SPDXID: SPDXRef-9755fab86b4b6e619fc53b99c69537f7
FileChecksum: SHA1: 23f6e29f018857ead9eaac74d437ad55758bc96a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/volcano.svg
SPDXID: SPDXRef-21031a018362cd31ee82423c015382e6
FileChecksum: SHA1: 1422a4ea9ed5d33d24dac240eb969707e840ddb9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/volleyball.svg
SPDXID: SPDXRef-66b120124e7a761652918b9668343206
FileChecksum: SHA1: 7af3ae746ce08b52195b86cd13fb5d95ea729a4a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/volume-high.svg
SPDXID: SPDXRef-0b5fd7d6982b92df3be6f22d98a26a7e
FileChecksum: SHA1: cddd6fa3f50e5204d889acb9916dfcfb4c8ef352
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/volume-low.svg
SPDXID: SPDXRef-4321804f94f86cb83b55c595526f0ea4
FileChecksum: SHA1: 59e65bc96f5365a4ec36ce3b0519e2765b6674e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/volume-off.svg
SPDXID: SPDXRef-78417c460970d565bb7503bc744d6564
FileChecksum: SHA1: 39822aa343d6426738a427c79619384757dcb256
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/volume-xmark.svg
SPDXID: SPDXRef-6081182c16d1990803f1e87120428227
FileChecksum: SHA1: e5f506a61254cd9b75171e36ae791d11624a17c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/vr-cardboard.svg
SPDXID: SPDXRef-d0d936f8a16dd05fd794f081aca203f6
FileChecksum: SHA1: f0cc65a9ce6e4b203f0d87b6267d1b177551f1ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/w.svg
SPDXID: SPDXRef-71b4cf9a89bebc98f38b3bc09ae4f56a
FileChecksum: SHA1: 4299f2bbeb9de5e5e8ec8d2edf364b57355664d8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/walkie-talkie.svg
SPDXID: SPDXRef-d9c9aa75402c80101eac5b003a639cd5
FileChecksum: SHA1: 4443bfe4d2bf223f066cb75feb74dd5d8b8a5069
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wallet.svg
SPDXID: SPDXRef-880cafebd4f46f041799a54b667d27db
FileChecksum: SHA1: e5f51288bfbb6cd1a0b0fdf2f5a26d99fedddd2e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wand-magic-sparkles.svg
SPDXID: SPDXRef-e3415d66e35fc8189ac55ba692496ce9
FileChecksum: SHA1: d1fdabdbf2ac0e51f15c040dace874834a48e7ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wand-magic.svg
SPDXID: SPDXRef-ebea3471d182c0e21373aa98d2983f73
FileChecksum: SHA1: 7b381092ce8e367bc79a0c341e97ab44e9bcb962
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wand-sparkles.svg
SPDXID: SPDXRef-8c6d30a11aad2b8c8312fffe97f35409
FileChecksum: SHA1: 3ce499c0b80dde706acbd892a9d408b02c813df7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/warehouse.svg
SPDXID: SPDXRef-780ba915d89345573fc8d55f129569d6
FileChecksum: SHA1: 81ba1c0aa6f403306078a1d304a43ee2f346c834
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/water-ladder.svg
SPDXID: SPDXRef-2cc288f797501b4565bf942949db37f9
FileChecksum: SHA1: 297ecbe224a1ec6992de37558092dcd4b0ea54ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/water.svg
SPDXID: SPDXRef-17dd1554959b4d6946266b6a55b36586
FileChecksum: SHA1: f5edc935bd5bed66ae36229b7bb3e6a3c65c7518
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wave-square.svg
SPDXID: SPDXRef-627fb9924ec53667406c48838209f939
FileChecksum: SHA1: 5db23b1f192cec629990671e3a5e3061da5db410
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/weight-hanging.svg
SPDXID: SPDXRef-3c61026e45718bd7cf2951ae3d99ef98
FileChecksum: SHA1: 22570d9bff78ee1b8d2352ffeb2c0f2943f0d896
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/weight-scale.svg
SPDXID: SPDXRef-980da85d099faeb225645ba291cdee2b
FileChecksum: SHA1: b1e9ac5d2597ef07bab439e0a02cbd6a6fbce0a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wheat-awn-circle-exclamation.svg
SPDXID: SPDXRef-d47690184f93ea1484648ced7b9405b9
FileChecksum: SHA1: ca48816be372c211531deaaa66af90b3a25f30ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wheat-awn.svg
SPDXID: SPDXRef-5e6ab8e07b5166765b1494f8cba69eb8
FileChecksum: SHA1: e4ac18a1f4dfe915fc4cecff3d510620456476eb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wheelchair-move.svg
SPDXID: SPDXRef-b575de64e49920fd74865128de3d7575
FileChecksum: SHA1: 4d7e4abf9db1fdfa8baafb6ef3e49467e47cec2b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wheelchair.svg
SPDXID: SPDXRef-b3a9c3bd4927a480ee0dced957e30ff6
FileChecksum: SHA1: e2abf0d34ba8edb6c98a74a1d89d07ee2f2f8985
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/whiskey-glass.svg
SPDXID: SPDXRef-ede3636b11c47068ae24b2052c89034c
FileChecksum: SHA1: 768b12a65d684b0efdc095a71b4f2f88f3321751
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wifi.svg
SPDXID: SPDXRef-29387e81ef609e6deeabcf16bceb852f
FileChecksum: SHA1: c62a52712f71b05f5f71064e5cf354fa854db953
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wind.svg
SPDXID: SPDXRef-3756b51a1ded39028401cbc665f6f68c
FileChecksum: SHA1: 737c3bae08b72aec032672cf95bb3e21acb15ff4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/window-maximize.svg
SPDXID: SPDXRef-fbe27d9e4c249acbe9c914fedf5bd78a
FileChecksum: SHA1: 476b0669301c8c565109b066a37152b3f0313df4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/window-minimize.svg
SPDXID: SPDXRef-d62cb770904496ec8784a89896d898d6
FileChecksum: SHA1: e9cfa8c59206f8eb5529e3fb4e71757affdb987b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/window-restore.svg
SPDXID: SPDXRef-96265d9f86fdc36636562b4589eb1a15
FileChecksum: SHA1: 7cca7152ff5359218b8bd04c4c9ba8013af2e0f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wine-bottle.svg
SPDXID: SPDXRef-f9a6d9e02f219a06fc51d4b4f6a4e122
FileChecksum: SHA1: 09d4b1fc5f6c0b55c3a7f6197e42b16486cd5598
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wine-glass-empty.svg
SPDXID: SPDXRef-a1972eabb51983c7408cc52e6a4d1b2d
FileChecksum: SHA1: 38d987acc5ee682f8589b02bed8a83a06f1f41e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wine-glass.svg
SPDXID: SPDXRef-f7688bd2cc5be250b868e18585ae81ed
FileChecksum: SHA1: 172c83e8254d2165c2673d03798385a73e3561db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/won-sign.svg
SPDXID: SPDXRef-f93b707c9ecd8235e1047165529c8c15
FileChecksum: SHA1: 6c2cda28773ae5739bdd790b1db3b1bd22477338
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/worm.svg
SPDXID: SPDXRef-6db505b88afb99fc385e0fa5ce6f6804
FileChecksum: SHA1: 35ded2b544302e53d16d3688d70bcd717afcfe54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/wrench.svg
SPDXID: SPDXRef-97d72ae7ca60078a14f36e9a7d817eb1
FileChecksum: SHA1: aff9277ac365ffc39e428706d9b06e97b5fdacfb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/x-ray.svg
SPDXID: SPDXRef-199641c27993a9ea47073c7e7726b7c4
FileChecksum: SHA1: c81daf8e3f14aaf432a4ea2f97dc0da749ced407
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/x.svg
SPDXID: SPDXRef-05ec11604f664fdc0eb153f5338b8e23
FileChecksum: SHA1: 4a78b0854bbe9dabf24a345d6cacba5ab8c06812
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/xmark.svg
SPDXID: SPDXRef-c1bc957c24ba71dd91aeb76c5d84d62f
FileChecksum: SHA1: 3bb84d3c1a18d85c4ec6e1c41c277cdde1712d68
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/xmarks-lines.svg
SPDXID: SPDXRef-9c52c311e44e12c54888fd6acd67e9ca
FileChecksum: SHA1: 28f0c998b31dc36fa63857a7dfa69c87cda913be
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/y.svg
SPDXID: SPDXRef-bc65e63d03a29fe4327bb32dfbce9388
FileChecksum: SHA1: f987726793509bb83d8424e7bf64e7cf2f41aa87
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/yen-sign.svg
SPDXID: SPDXRef-097b127463330749277cbdf2a92348dc
FileChecksum: SHA1: 6716d2608c2409c417e6a6053c71b5aa4adaffad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/yin-yang.svg
SPDXID: SPDXRef-43e231353a7846f4b84a18cfb1b0b7db
FileChecksum: SHA1: 1feee7813946cecd272dbac30acebb82de8c9716
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/svgs/solid/z.svg
SPDXID: SPDXRef-efad7d6d365c628229ff440b39ba6526
FileChecksum: SHA1: fe9acb2b738eff369ed7a9baf037a8621264647e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 Fonticons, Inc. -->
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-brands-400.ttf
SPDXID: SPDXRef-789caa2486a49909a36e8bbbe1ed7a3e
FileChecksum: SHA1: 04e58bdb86afc218a250948fd920cba85134ed78
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-brands-400.woff2
SPDXID: SPDXRef-d7c14eb16fc1f92bf079ecb34bc76f73
FileChecksum: SHA1: f1234dff4095688c945513d40751012b70462c03
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-regular-400.ttf
SPDXID: SPDXRef-d84fc53a659ff6701a531c8bf985cd83
FileChecksum: SHA1: 59589e2b771619f6fa6ec2939c9b6b15d32794c3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-regular-400.woff2
SPDXID: SPDXRef-b84b7938b7b6ce1df5aca158ee877cc1
FileChecksum: SHA1: 66085d2542ab75f524179a14f6ecd36a3f6f851b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-solid-900.ttf
SPDXID: SPDXRef-c955fa4c1af1c7e762812aa9ea5b7588
FileChecksum: SHA1: 0cd050f6e9b8becd75bd9edc86f5d5c00229ae0e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-solid-900.woff2
SPDXID: SPDXRef-dc9a88d78bac58936705ca2b001892a3
FileChecksum: SHA1: ec2f4e5f311462dce67b8f354e5bb9a68c12cf58
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-v4compatibility.ttf
SPDXID: SPDXRef-257905e7f720f71c3b9dc321478ca04b
FileChecksum: SHA1: bb11949937f5f6eb90210bb6947c479a00e418ab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/fontawesome-free-6.3.0/webfonts/fa-v4compatibility.woff2
SPDXID: SPDXRef-93e740f0bb03e96d08909e42bcf5a1fe
FileChecksum: SHA1: ba41d5ea9eadeea164740766516800b41f4830e7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/plugins/jquery/jquery-3.6.3.min.js
SPDXID: SPDXRef-ec77e6bde8fd008124d29a88202126bc
FileChecksum: SHA1: 832a6a4e86daf38b1975d705c5de5d9e5f5844bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/preview.css
SPDXID: SPDXRef-76dcf4ba0560233c5b28c5805b5b29e7
FileChecksum: SHA1: 0f902b56a128710a0b52c98b1b03988a9c92ed13
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/preview/preview.js
SPDXID: SPDXRef-064d82e276be21227ff6d76262fe4d44
FileChecksum: SHA1: 6a65b0551ac5da9d3e1a39a81c652f90386d5495
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
Copyright 2023 SAP SE or an SAP affiliate company and cdc-accelerator contributors
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/scripts/e2e.test.js
SPDXID: SPDXRef-eba804e363fc48842463a8aad4e48e8a
FileChecksum: SHA1: aa47a2d54149959fb3e643fffccc9e4fb074182a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/scripts/sapCdcToolkit.js
SPDXID: SPDXRef-4b8c727d6c29f5ed373665ea3636f205
FileChecksum: SHA1: 3c0bd7cc94cfd3f927eb36663aecb8e3e6b29145
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/scripts/updateSapCdcToolkit.js
SPDXID: SPDXRef-74ec6e2cb0cec8db50b3227177f8efec
FileChecksum: SHA1: c0edef93d454425aa7d5dde9bfe1b298433f5981
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/setup/__tests__/installer.test.js
SPDXID: SPDXRef-caf91ac0cf2232940152dc65499be11a
FileChecksum: SHA1: 045e380bc675b2309e52fb95ad7b0a080e351346
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/setup/__tests__/project.test.js
SPDXID: SPDXRef-f4f7b705af31fa8b4f44f3415b8fa88e
FileChecksum: SHA1: 3c1282438fa3a9dde0ee81ceb3140d87733bee30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/setup/__tests__/uninstaller.test.js
SPDXID: SPDXRef-8de092b2eda80f070026a2824883d234
FileChecksum: SHA1: 05fe8c550dea490afbaf0bc20182126eb6e57129
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/setup/constants.js
SPDXID: SPDXRef-a3defff190e85a256bad66fd92cba6df
FileChecksum: SHA1: 63ce1962bc5bac3d78277ad315c05c00b8f3877b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/setup/installer.js
SPDXID: SPDXRef-64c4b53f1ff9228df07695776f84f4a1
FileChecksum: SHA1: e51357825e887bb18eb33b7afe2a2b4189596dc0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/setup/project.js
SPDXID: SPDXRef-bd0d401938826b948f4c1cada0cbd2c4
FileChecksum: SHA1: 420e978acb4127868ebc2f33df7ca300388739ce
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/setup/uninstaller.js
SPDXID: SPDXRef-f31ab6f9f128ef3cd079aeb1668467eb
FileChecksum: SHA1: a60ae69255233255541888586986da03bb478bd5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/templates/defaultScreenSetJavaScript.js
SPDXID: SPDXRef-08adc2531e725433bad4682787e5db5a
FileChecksum: SHA1: 48b749951024de3dfa5b2720194e1404a7d7aab0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/templates/defaultWebSdk.js
SPDXID: SPDXRef-be78a392c8b2852fce0ea8c7abbaa4f0
FileChecksum: SHA1: f72bed99b6859637480e1e5dcd040cd18c4dc462
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/templates/gitignore
SPDXID: SPDXRef-516dd210adb27d828cd9e069a6125df5
FileChecksum: SHA1: a884738a73f003f3fad42ecab3ac509d9c18ef62
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cdc-accelerator/templates/preview/index.html
SPDXID: SPDXRef-54fc14affa615210df38b79511346ccc
FileChecksum: SHA1: e2dae57b5a4e95667e647d4dd6ff7e5f5614fdc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cypress.config.js
SPDXID: SPDXRef-52853bff7cf020a8ffb4e48994ca29d5
FileChecksum: SHA1: 39b482d8c5cff2282238aac9313623700bd70341
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cypress/e2e/EmailTemplateFeatureTest.cy.js
SPDXID: SPDXRef-583eeb6e34ba084f9a9718dd06480d73
FileChecksum: SHA1: 6706219fd4556cf16b5d670e40ade38ad6c1ff81
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cypress/e2e/WebScreenSetFeatureTest.cy.js
SPDXID: SPDXRef-36c3b70cfaa1cdb6e44b61d353313ea4
FileChecksum: SHA1: 048f7e7f79f08f2d3f7ee8df605f55fbd8e4cfea
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cypress/support/commands.js
SPDXID: SPDXRef-c928a1f649c3d0cc0551086132dd62ae
FileChecksum: SHA1: cbbb040083e15402fe3a2abf52439d5d8909608f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cypress/support/e2e.js
SPDXID: SPDXRef-30ac325e09ecb91daa5b1528677f8b71
FileChecksum: SHA1: 74a4936ebbca0b3c571b92c295c03ddca79c800a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./cypress/utils/utils.cy.js
SPDXID: SPDXRef-2317a42942f7c4b360541f9da92cee45
FileChecksum: SHA1: df36925f20bd03332f33f9be9bf9e657bccf0544
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/Customer Data Cloud Initializer - High Level Design.png
SPDXID: SPDXRef-48bbc33c1ff23c07cf40b9d94259e0a7
FileChecksum: SHA1: 116ff8146c5e7736c3ce6230d975ddcb5a032120
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/screenshots/preview-email-template.png
SPDXID: SPDXRef-8980e61a6b20a6fc1bd9f86a31dbb090
FileChecksum: SHA1: 5b9ba48834dfb76c8f86d3c73d1ff2a16c36021c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/screenshots/preview-screenset-1.png
SPDXID: SPDXRef-6813bcb11e992cd7093abe567a64288f
FileChecksum: SHA1: aa6da9642f52da55cf189632e51f9a1f4070e351
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/screenshots/preview-screenset-2.png
SPDXID: SPDXRef-f694d5e251a0e6dd7dac09d3955ebd4a
FileChecksum: SHA1: 0b40ce7d4166332db2568dedd1e21e73d24ea97a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/screenshots/vscode.png
SPDXID: SPDXRef-7e914aed082cb48903f1354337cdbff9
FileChecksum: SHA1: 3536064e4cd63aa2a8d9da1ea731db8d897edb50
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/EmailLocalesProjectStructureSrc.png
SPDXID: SPDXRef-3561cdb7f9601caeaf17db7ad5f1048e
FileChecksum: SHA1: d360f1cbaab83ce18b7cda495552277212af112c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/EmailTemplatesOnCdc.png
SPDXID: SPDXRef-01070362a764a93472efd20eb20aecbb
FileChecksum: SHA1: 5ea2fdf7d43f253545be0409b218dd8cff2f0dde
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/EmailTemplatesProjectStructureBuild.png
SPDXID: SPDXRef-80c3bb2f06c84b129a1e1b0e185d12e9
FileChecksum: SHA1: fbfd0ebe474a783145b4553c9480736bb52500a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/EmailTemplatesProjectStructureSrc.png
SPDXID: SPDXRef-1621bb9ce27149571a11e764db9933c5
FileChecksum: SHA1: 0a8e71fc6d149131bfc6259f1d01468611a75848
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/GlobalTemplates.png
SPDXID: SPDXRef-eaa0acbdae7816d1a9e32db17dc7e4af
FileChecksum: SHA1: 60111f5de09a19a20e1e2deee009670f495f9210
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/SmsTemplatesConsole.png
SPDXID: SPDXRef-b659544f6cf19bb2964795bf8477af32
FileChecksum: SHA1: 73753c90c2402bbeb6f7865e489691fea3fcfdc4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/SmsTemplatesDirectory.png
SPDXID: SPDXRef-efef0105e0905f79b010e2e99f6bd202
FileChecksum: SHA1: d97b629329e69b55f6ed27e2f0e8301d4ab895cc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/TemplatePerCountryCode.png
SPDXID: SPDXRef-d6ecf985ba6cff06d403285506d7149c
FileChecksum: SHA1: 1fc5a285b464149bb2ec1372cebd98a54d968552
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/accountsSchemaEditor.png
SPDXID: SPDXRef-91c2eae8fd6f52fea36d376f8d1ccd08
FileChecksum: SHA1: 353673b2e75b804c5cd688c2618f2e9ec3f11be8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/architecture/SAP Customer Data Cloud accelerator.epgz
SPDXID: SPDXRef-02138367ca4c511a035ce978de58a6af
FileChecksum: SHA1: 10e22e07c4fd7bce349f1dbf3b84dcfd35af2e39
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/architecture/detailed_block_diagram.png
SPDXID: SPDXRef-c2088f42de937d1ad6ac72fd97fb9356
FileChecksum: SHA1: 316e7907ffd93eafd293ca8769075a80649288f3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/architecture/general_block_diagram.png
SPDXID: SPDXRef-d12126445a97608a991f38bdce301de6
FileChecksum: SHA1: 6446dca3963416adbe7ae4540a416c9216c4449e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/architecture/sequence_deployment.png
SPDXID: SPDXRef-85dadda362571f1a95642c6a1e50ad1c
FileChecksum: SHA1: 5690284b2138fbda30509df68ffe3607f98d6475
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/architecture/sequence_development.png
SPDXID: SPDXRef-abd9603427ff2d2254bfff018573baaf
FileChecksum: SHA1: 7fc0f88721db2a2b97dcb5e6f238589bb551a1ac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/architecture/sequence_setup.png
SPDXID: SPDXRef-83c21c64b8805ff9535c8028451333c2
FileChecksum: SHA1: 32c71d9962e5dd77a91866ecf838872a9960dcd7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/directoryStructure.png
SPDXID: SPDXRef-7c002fd3cf559e9873492e877ee2cf54
FileChecksum: SHA1: 64329e75fda1f3235fef3aadbc73b1134e22add3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/preview/previewApiKeySelector.png
SPDXID: SPDXRef-c2eaa85464673f341c26a003f96dbf52
FileChecksum: SHA1: 4d84a4bf8b42275da1b4147ce15bb57de673b8df
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/preview/previewEmailTemplate.png
SPDXID: SPDXRef-ae6ecfef06769864c155f036501c8921
FileChecksum: SHA1: 1bbd4fc741b4a6d74d51e81f86803810fdcb89c0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/preview/previewMenu.png
SPDXID: SPDXRef-ca8bd90dd55f08eda1c857e475c689d8
FileChecksum: SHA1: e6a95e86aec3cb81a08c1a9ae9c882f2ceedfaac
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/preview/previewWebScreenSet.png
SPDXID: SPDXRef-6eb87f46abc4a856872a4001df006fdb
FileChecksum: SHA1: 289b58f04f5feba78e34f15de309f196700542b6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./docs/wiki/assets/technical-documentation/webScreeenSetJavascript.png
SPDXID: SPDXRef-8435fad3665ac30f51d795b624393eb5
FileChecksum: SHA1: 7d30eaa7e5cdc5abcb861405cea08271ef867a2e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./package-lock.json
SPDXID: SPDXRef-adef89567c9f6a94ecedb0dc1454e66f
FileChecksum: SHA1: 51acb5dab227c4cb0b4fc70fa10432259fe3929d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./package.json
SPDXID: SPDXRef-d23a43b9d59c48775c86ad54eda74172
FileChecksum: SHA1: 630499f2b370cefbdf9dcdaf11d0a20c68f09147
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./renovate.json
SPDXID: SPDXRef-04ab2632d412628a71ebcda20b21dea6
FileChecksum: SHA1: 8c89d0be8e01d32228161552f68a00e3b022f069
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./sonar-project.properties
SPDXID: SPDXRef-fe762c74e9fc2c526f90be0489038bc2
FileChecksum: SHA1: 1a4ab869f1ef705f0c43487584a257c691b8b53c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/PermissionGroups/ACL/testing_group.json
SPDXID: SPDXRef-219caa8d4c11aa90c5a2110c3fd4a9e8
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/PermissionGroups/PermissionGroups.json
SPDXID: SPDXRef-05bf1b2a2429a5a69b218457c65fc6ca
FileChecksum: SHA1: 075734828554bf005561c45ba2e4b135944c33f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/codeVerification/en.json
SPDXID: SPDXRef-f91c3edaf85e29e7e3c90873dfad185d
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/ar.json
SPDXID: SPDXRef-3637044c11764bd79dc9ba241071aca5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/bg.json
SPDXID: SPDXRef-11fb914189957583f2a390af7be88c7d
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/ca.json
SPDXID: SPDXRef-e47c98765ff6a51d608d01bbc8560175
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/cs.json
SPDXID: SPDXRef-c929a33d717f91717b980ba9ad3b243e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/da.json
SPDXID: SPDXRef-01c577ed0c8154046139bdd10e511056
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/de-inf.json
SPDXID: SPDXRef-391f777a135fd69bba8412d90159749f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/de.json
SPDXID: SPDXRef-620d86370d6b76db7c7e140e0579dc8f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/el.json
SPDXID: SPDXRef-008c3f15abf9e3524bd82676f5e44c4e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/en.json
SPDXID: SPDXRef-15a5ce20ce60a1a72b2f6d4c6d2a494f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/es-inf.json
SPDXID: SPDXRef-21b6b4f0264e3492afe2a8775b958a6b
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/es-mx.json
SPDXID: SPDXRef-d8b8013e61c7720649ff210b25988b8a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/es.json
SPDXID: SPDXRef-920d4ee732dd51816ae688d6a8474f03
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/fa.json
SPDXID: SPDXRef-3c77e60283269f9b203350f2098dd3bf
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/fi.json
SPDXID: SPDXRef-3cf21f89adc319b62e0a02e217d70359
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/fr-inf.json
SPDXID: SPDXRef-27abe5a7f286635e490ff541075ba87f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/fr.json
SPDXID: SPDXRef-9525435ff973ce1dc67f9ea2df57174e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/he.json
SPDXID: SPDXRef-2945778c277d8f8492b0e99a8ba7835a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/hr.json
SPDXID: SPDXRef-c11d0db51a826810be0c8af1d8173fd5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/hu.json
SPDXID: SPDXRef-282f08b4c5d494c82288c34451109b3b
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/id.json
SPDXID: SPDXRef-b2bdf897e677f4ae984221cd268da676
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/it.json
SPDXID: SPDXRef-1ed45b48df08a233e9d1ff7a464da09e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/ja.json
SPDXID: SPDXRef-a13ce83f284cb5653cbae0b2651aae21
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/ko.json
SPDXID: SPDXRef-0a13cee7a4b4243db01df28f19fc3e84
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/ms.json
SPDXID: SPDXRef-42d6f159342693523f153b1d93bce576
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/nl-inf.json
SPDXID: SPDXRef-193a8c0c72831b6e1d90e2dab131bdf9
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/nl.json
SPDXID: SPDXRef-6b71c7e6c16f5354c5c7a0eb231212c6
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/no.json
SPDXID: SPDXRef-e3e0929ce91c4ca039f72f1ee088bee6
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/pl.json
SPDXID: SPDXRef-a5bb4f01ae6b7900e1aab281d9be80e1
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/pt-br.json
SPDXID: SPDXRef-9c9d7fe72172742a24d3737def493c0e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/pt.json
SPDXID: SPDXRef-54c9fbf1ac39f4791f0614bebfe790ec
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/ro.json
SPDXID: SPDXRef-7854d610f3eaa04029349cb68250c7c5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/ru.json
SPDXID: SPDXRef-b7437c07f5e9d607edcd7603c420ffcf
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/sk.json
SPDXID: SPDXRef-38017ecaefd412e3dec9ddccd7ce45f6
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/sl.json
SPDXID: SPDXRef-75ea03a6f9688fff2b314785c962fc42
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/sr.json
SPDXID: SPDXRef-cea1e70c99012b0a2444a8b07026f94f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/sv.json
SPDXID: SPDXRef-e2c029a853f2f8b790be67083835423f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/th.json
SPDXID: SPDXRef-f385ebee4057bc44c522a0ff6480056d
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/tl.json
SPDXID: SPDXRef-a6f27df0cdecbcec9f72a3d0386a7622
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/tr.json
SPDXID: SPDXRef-3e5ec625610c4bdb4eca98b3567ff4c4
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/uk.json
SPDXID: SPDXRef-f5525b4deb3a0f518f83ec329a09eaa9
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/vi.json
SPDXID: SPDXRef-7d15cbe1094d4ed2b6e2812ae982299e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/zh-cn.json
SPDXID: SPDXRef-6a8f6ccba223131e9980c459848ef4dc
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/zh-hk.json
SPDXID: SPDXRef-8a533e94e494043e65d52461a4aefb03
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/doubleOptIn/zh-tw.json
SPDXID: SPDXRef-8e400497a42fff61c6ddbd92528621ba
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/emailVerification/en.json
SPDXID: SPDXRef-fd4573b416bd6f9e1b1a51cc909afbc6
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/impossibleTraveler/en.json
SPDXID: SPDXRef-caae6073bbef5b3307947eb75aa5c390
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/magicLink/en.json
SPDXID: SPDXRef-a25a97e7660ef2848db551b29fca6092
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/passwordReset/en.json
SPDXID: SPDXRef-00fbc917dc345e0d67dd20cfff8a770c
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/passwordResetNotification/en.json
SPDXID: SPDXRef-399426653619a1ac7bbafe3946a7fb2b
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/preferencesCenter/en.json
SPDXID: SPDXRef-abf68afc09787eac21de04dffa8d6b46
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/twoFactorAuth/en.json
SPDXID: SPDXRef-c402915bd7a3c11d89e129438521f2b2
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/locales/unknownLocationNotification/en.json
SPDXID: SPDXRef-79ff3487162d06bbb6b081a7d0a529d2
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/codeVerification.html
SPDXID: SPDXRef-b92a2cbf10d9710a520bcfcdb9468012
FileChecksum: SHA1: d13e45da9cc2827ddb900e863151fb812155cc18
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/doubleOptIn.html
SPDXID: SPDXRef-10b95c9d64573124a05573a4b7b1e46f
FileChecksum: SHA1: 5e33961d771158d68c1f97e886b2e23aa058a0a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/emailVerification.html
SPDXID: SPDXRef-ee5a70787b46aa19e24315c67658451e
FileChecksum: SHA1: 94b55278329caf5e4b1f4422a8150969580b0299
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/impossibleTraveler.html
SPDXID: SPDXRef-0881056a553eebb714321d27f54692f4
FileChecksum: SHA1: f674c33df15d6aa58f7bfa7a288baf55e5e78882
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/magicLink.html
SPDXID: SPDXRef-2ea99345457c2db1a142f24c914b3de5
FileChecksum: SHA1: 25487d5826741a841649abf198762bca2d9ae9f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/passwordReset.html
SPDXID: SPDXRef-1db937ed1711a903c64c1e6fc3f7b44f
FileChecksum: SHA1: cebb496d02cb690b618817ff6d5c63f66862915d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/passwordResetNotification.html
SPDXID: SPDXRef-71e8854f59fefcbb5b5bb05b26586d65
FileChecksum: SHA1: 9b98a275d09fe4a62dadb9b0c5d03a26d2ede054
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/preferencesCenter.html
SPDXID: SPDXRef-18f2adef9660dc417525bc5abd859159
FileChecksum: SHA1: 2b1cb41ef496b9517dbfbf57a63cca86c98904c9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/twoFactorAuth.html
SPDXID: SPDXRef-d251a04eeda92f27fe144c26d05832cc
FileChecksum: SHA1: 0b45d09eca578365ebcf3b9930f1b2d6e16f76f8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/EmailTemplates/templates/unknownLocationNotification.html
SPDXID: SPDXRef-9f82824db55f820330f97ef110954563
FileChecksum: SHA1: 47919499bce399123bdaf1347860f4e02f0432a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/Policies/policies.json
SPDXID: SPDXRef-730da17b35c45d1abc4e7ddcccb0241e
FileChecksum: SHA1: 0778a3555aab76db99e517fa7488484c8857622d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/ar.txt
SPDXID: SPDXRef-d1a6596dc3d0a304e6d408613e8f209e
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/br.txt
SPDXID: SPDXRef-2dce819ffab5e510f6b5aeeb7853a077
FileChecksum: SHA1: 1f670b82d7be8ae30d4edc90c25743fac61b5b2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/ca.txt
SPDXID: SPDXRef-a1ba3180112c960cf1a579c8980eeaa4
FileChecksum: SHA1: e3c6f406fcbf2540ae6233027427ae38846fc43a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/da.txt
SPDXID: SPDXRef-3527fda4abee24f5454c40bf854a63c3
FileChecksum: SHA1: 10679c7e3044697f9975e8b8b5d64cfb32b35ee8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/de.txt
SPDXID: SPDXRef-1382441740bfdb9f5b31128c877b9d27
FileChecksum: SHA1: 91c53d0c01314a9907663139c9580f4c06ba6a4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/el.txt
SPDXID: SPDXRef-0e25fe1ca38d673a1bb8b649fe9f8fc4
FileChecksum: SHA1: 9928b58e2888bc64c89e6ff7970ac6e8e678b4a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/en.default.txt
SPDXID: SPDXRef-96641ff5a9c5dc52d2bc97bd786acbcb
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/es-mx.txt
SPDXID: SPDXRef-b5d6b8b5b10ce9432f7c85ca608c9503
FileChecksum: SHA1: f33a0b1292b71ca5980ae6750471504a7a6b3f50
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/es.txt
SPDXID: SPDXRef-ee1181031bc0e6955399b96df656da2a
FileChecksum: SHA1: 59290f75763e497bb542fcdf0bb1041ca31178ee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/fi.txt
SPDXID: SPDXRef-a4aa0fc66de1a30ccfde0bdd9e000494
FileChecksum: SHA1: e87be7c0f6de3f1230a2eb0bbda9c50510e4a3b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/fr.txt
SPDXID: SPDXRef-900f3555630e68f5f6b937714cb2cac2
FileChecksum: SHA1: 992f7e60593cf0d2c099443ea30c01faee1a8ed1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/he.txt
SPDXID: SPDXRef-fc516afbe9d8a848c9fc539455a3f53a
FileChecksum: SHA1: 9a62c43bec668a3bb5dcc091d4dbf10024e41a45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/hi.txt
SPDXID: SPDXRef-c3049dc2fe8bc190948f1224bdf64f6a
FileChecksum: SHA1: 9d5d5525e077a83de9e3ddc65000fd6627e69903
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/hr.txt
SPDXID: SPDXRef-a7525f9cfff1f383df34608ae45fd917
FileChecksum: SHA1: b5e7d6d2e3d5de5cebe4b9f9372c31f8cd3a2621
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/hu.txt
SPDXID: SPDXRef-d15b9789239808422cc8bc692167374b
FileChecksum: SHA1: f69dc309927e549b29ba03ba53660ac5a16eba43
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/id.txt
SPDXID: SPDXRef-1af3251470b9e5f576f2668f910bc975
FileChecksum: SHA1: ba77b206440651c241a5596b446dd2549e7ae66d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/it.txt
SPDXID: SPDXRef-a0d295f48d07123e59016198a5e0e8de
FileChecksum: SHA1: 9feb53eda360489ea494072f6fd3cbdd59dbbe00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/ja.txt
SPDXID: SPDXRef-f0a9db95991224d8ff35ff508b105203
FileChecksum: SHA1: 69ebc160f79dea799f2214dcd5b9a1198d0dbf7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/kn.txt
SPDXID: SPDXRef-131aa580d2d1d385d391740c82e4adc6
FileChecksum: SHA1: 0d744641f0a5950dea88147e078216644c88ed00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/ko.txt
SPDXID: SPDXRef-626b76c973513f99e182337504761435
FileChecksum: SHA1: 67de58c8558aec440547888e23919ca2faab81d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/mr.txt
SPDXID: SPDXRef-180165adcc26bbb89d787a5fd2fdf911
FileChecksum: SHA1: c3a7ec54c81b77f4ad87193d82326242a762f37e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/ms.txt
SPDXID: SPDXRef-e1477651f931371570ef0c57649700cd
FileChecksum: SHA1: af9c12f43bb928efe89aa8dc846a03a6969bd347
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/nl.txt
SPDXID: SPDXRef-efebdaa33462b73757508f153ef1e216
FileChecksum: SHA1: c9b48e2635184e93a1ceffff16ddef5b768fddd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/pl.txt
SPDXID: SPDXRef-9af39d352f34194965dd4cb9cad3ad03
FileChecksum: SHA1: ebaa1163bf4646fb3f4dd989925fd9edc0638ca7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/pt-br.txt
SPDXID: SPDXRef-e439b185be2e90841406f0f47666d3fb
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/pt.txt
SPDXID: SPDXRef-e1c25d67630948f36dcc24be601115ae
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/ro.txt
SPDXID: SPDXRef-cd27d235417bf64b603293e4d0fd27c7
FileChecksum: SHA1: 11aa5d5b6f1b7423883c8114286ca7ab29577799
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/ru.txt
SPDXID: SPDXRef-63b285b08764e01e4e45240fcd8d8011
FileChecksum: SHA1: c8b6fd22ba030ab035f299a9d2a349bc98541e01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/sk.txt
SPDXID: SPDXRef-67043776604964e4e6a0274cdf811966
FileChecksum: SHA1: 680c12ca4f1064d648bc7b16d9e12800e0ac2ebe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/sl.txt
SPDXID: SPDXRef-bc1012f66150b90f5851e39176643d31
FileChecksum: SHA1: 7091e607c42bbc780e95735f93dc90dd375cda54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/sr.txt
SPDXID: SPDXRef-6676920d906cdd377c48477b5909f5d6
FileChecksum: SHA1: b0f3f653268f63b29de7874cc008bb1714fb72c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/sv.txt
SPDXID: SPDXRef-4d9ae30e026bd6d1b2180b7bd28180b9
FileChecksum: SHA1: a82702b05038460dffdb8d775da70989bdbf7092
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/th.txt
SPDXID: SPDXRef-c0dc8cf3809518084ed1e08004d33671
FileChecksum: SHA1: d69a51dd8c9324a5e3fdf8c8410eb54974a7bde3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/tl.txt
SPDXID: SPDXRef-8f545240b58cab0af9f6a075ef385044
FileChecksum: SHA1: 43dd0c41d3cfb7c99ffa5555dbdab3cb766711a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/tr.txt
SPDXID: SPDXRef-d3c1a3ff43a0257ee3b02b7f6b5b4b7e
FileChecksum: SHA1: 62a73298dea9afb490b38d458dc85e5ae1087623
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/uk.txt
SPDXID: SPDXRef-264ed7c3a79524b6cbd0fd2506a03c3c
FileChecksum: SHA1: 3d3b45a8ab1679ee1d0902ea1c89fb2fe26b3752
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/vi.txt
SPDXID: SPDXRef-5cef5f382389fe333d0df0283a04562f
FileChecksum: SHA1: 6447bf95e57bb6ae348ab45cb062f62444f3caf6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-50f91e849cbcdc9d84d7c693cab168c7
FileChecksum: SHA1: f487a871d30aeeb6b2501be69ee3063579b5a555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/zh-hk.txt
SPDXID: SPDXRef-a417b8a80ef0778b8d343f6c238a8f79
FileChecksum: SHA1: f49a69f8baf863e79aa13897dac0ef3b67ddaf76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/otp/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-c92d10e7a3e7baece47ec3a03a8bd6ba
FileChecksum: SHA1: 4dd351f32bcbab6f78040c7c779c696cb11381fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/ar.txt
SPDXID: SPDXRef-946a61cbf957ebb765840158da34a952
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/br.txt
SPDXID: SPDXRef-14af77a85b40145896b57af8f7c4a640
FileChecksum: SHA1: 93547294f4f227dfd80bb87f522cfeff78597518
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/ca.txt
SPDXID: SPDXRef-aba20d57795193d54063d16da5b85066
FileChecksum: SHA1: 89eabe7994199018dd62178f6602931d5f01c0e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/cs.txt
SPDXID: SPDXRef-34c5ccaaec91de6977e1c2b97b0dfcf2
FileChecksum: SHA1: 54e1fa0cf5024d4b5dc0ae5f631e222f18d08b1e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/da.txt
SPDXID: SPDXRef-571202dc14928ac9a23d5a79b95e3c2d
FileChecksum: SHA1: d192bd9a6f73cee7265dcc136a99593ca355318a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/de.txt
SPDXID: SPDXRef-7c31707ee56c034445b9e0b674dc9326
FileChecksum: SHA1: 89005ede0744297022e258d7d3f86ca0ebb176db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/el.txt
SPDXID: SPDXRef-3e01cbd2b5a466b2b97332147d8a5d7f
FileChecksum: SHA1: f65b091d649ac2d354a6e071327b5e2764d7c569
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/en.default.txt
SPDXID: SPDXRef-9d85d388be63956f483ebeb38c8aca41
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/es-mx.txt
SPDXID: SPDXRef-6a332eddab70ec9cf13f0a0f63c2a81e
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/es.txt
SPDXID: SPDXRef-177c527fd1cf02d402b02ee8021fea2c
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/fa.txt
SPDXID: SPDXRef-f8d8a0a4449f3a17c6080fa067bc7f4d
FileChecksum: SHA1: 08d1829e38be12d6f8bc96c913d57a35f2c6205f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/fi.txt
SPDXID: SPDXRef-83898251a85048b891d3bfc3e9eb8132
FileChecksum: SHA1: c6a6d3fd3437bf0cc916ad1cd2a7994e385367c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/fr.txt
SPDXID: SPDXRef-845429c8ea4abcd0db086a79cf9e38ea
FileChecksum: SHA1: 1c5a3dc5de362cbf121d0b382c32393249340717
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/he.txt
SPDXID: SPDXRef-0c5753231d3fe37bdee6b484e99e7a9b
FileChecksum: SHA1: e3a18c1c521f09463a9b779792fccd2aac6721b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/hi.txt
SPDXID: SPDXRef-30e6a1be9c2628d5f5c3e307b541599b
FileChecksum: SHA1: e230f4d7dde07d907dc21fa3314839f93d26d5bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/hr.txt
SPDXID: SPDXRef-564b1dde6f1046d1550f31ca8d9bc0ff
FileChecksum: SHA1: 47fdb8cec96507a99b2494f87351133ed5445403
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/hu.txt
SPDXID: SPDXRef-df49604fc6f995a05118b021452d9425
FileChecksum: SHA1: 8fb8b6cebefdae5e519435945f02d403d7710e38
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/id.txt
SPDXID: SPDXRef-da6397552dbccc8c1d0cc2039cad6b95
FileChecksum: SHA1: 57e66fe11e3cecbf40c288fa3e1f006eb5178d1d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/it.txt
SPDXID: SPDXRef-7ea045f1d8d2e7bc36fd8274be2f288b
FileChecksum: SHA1: 595c0427e419cd2a8ad552b0d3597bf15ed80866
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/ja.txt
SPDXID: SPDXRef-5dd6465ef094b8aec5f9b9a666c073f9
FileChecksum: SHA1: fc1cee8012d5a8ba673c6ba627d5ae3c5003e28a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/kn.txt
SPDXID: SPDXRef-e73f4ef89c26f0a982c723e88d3ba0a3
FileChecksum: SHA1: 39bb79e6b792685ba684fd0810fe2d702b2ddaaf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/ko.txt
SPDXID: SPDXRef-0d38ac6628167dbf9942c2f704dcf46a
FileChecksum: SHA1: b53780948f821eb4e4760fffe88c0dd9a7b00bbf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/mr.txt
SPDXID: SPDXRef-1c3099fa2a52e48852d0b398b16a4c24
FileChecksum: SHA1: c961d8a63234c098a2cc2e463924e9b1e8c24332
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/ms.txt
SPDXID: SPDXRef-0b8d3261d49c7b0cf0c6442cd04f47ef
FileChecksum: SHA1: 65e15950004b655982dd8b3b62cb739e9a7b5929
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/nl.txt
SPDXID: SPDXRef-3b71b7cf506970bcece2c5f1f15f2eb6
FileChecksum: SHA1: f242d96952bfe78400941287e4756ab826151516
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/no.txt
SPDXID: SPDXRef-66bcdf2d59ccffe2e637a8018c31e811
FileChecksum: SHA1: 1847defde681acd9173a38a134a29e0b8068ab8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/pl.txt
SPDXID: SPDXRef-34570ec5144be8b00f7124e0af072b3a
FileChecksum: SHA1: d7bebbc1d664a9c71e7e28f6944620530ed14470
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/pt-br.txt
SPDXID: SPDXRef-747c2802643a8583a810e4ec60d7e3c9
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/pt.txt
SPDXID: SPDXRef-da4485e8966eebcbfe5d2ff1c4a526ab
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/ro.txt
SPDXID: SPDXRef-9e0faf1c7e1c8201e62162468afd1927
FileChecksum: SHA1: 83f2bffd315e46e0bb0b81eb7b9f591a650a155e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/ru.txt
SPDXID: SPDXRef-8f29032d0e53fa910bbdfe8b2ccceb81
FileChecksum: SHA1: a5e603686a9de29bfbf43be52c85bc41ceb1a229
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/sk.txt
SPDXID: SPDXRef-441d00e173343ebb0513b27c80b952ef
FileChecksum: SHA1: fb4ce20588545fb1f5aebc169aa3cbc554c1a728
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/sl.txt
SPDXID: SPDXRef-1486ad0db1273adec61dc218b80728c9
FileChecksum: SHA1: a819534da5b669654f4ff98cb7740b22805766da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/sr.txt
SPDXID: SPDXRef-c744f0aa0c3a0fc41cc8f421eb0a6757
FileChecksum: SHA1: 42f16e28cc66bccdb1f373f50b0c5e66deb2a521
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/sv.txt
SPDXID: SPDXRef-e254d1714d692e55bd3432f2b5ad6a2b
FileChecksum: SHA1: f13f86655bcb206bc09c56668b8c69c57c66d580
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/th.txt
SPDXID: SPDXRef-c91236f9361a87085a7a584c6010a213
FileChecksum: SHA1: 10fd2c42a5907cb67ecaab1db7b10d20bc2f655b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/tl.txt
SPDXID: SPDXRef-2ed24d9f6f5074f7793b96a8dda1ab32
FileChecksum: SHA1: 88fc71cc09fd0e8ed4f9c2e5050e53ea860d5414
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/tr.txt
SPDXID: SPDXRef-1032ceb34ae8078e01078ffc08faf2ee
FileChecksum: SHA1: c05136cfcc00672ba8c5465ee6d71412374cb339
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/uk.txt
SPDXID: SPDXRef-2bbe32e1bea19b639bdfec1231b6765a
FileChecksum: SHA1: 108c4b7783faae3075d87a7a11c39128c7304460
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/vi.txt
SPDXID: SPDXRef-8082bab5f73563fbd0b080fd216f304f
FileChecksum: SHA1: fe2e61267b77c6c33b1ec5d2ff6ca142929ae6b8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/yyef.txt
SPDXID: SPDXRef-97e78ccd30cb282284699af6103a9f92
FileChecksum: SHA1: 83a30d6e2526aa9384634a30d7cc239c196991f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-2f6af954c35db3a5f40c114f36b7445e
FileChecksum: SHA1: 5cc27e86e9e4b21104783430ab2c8e2425c81704
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/SmsTemplates/tfa/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-a37da8504516e64756e9bdaea8870d47
FileChecksum: SHA1: 936b9a70b043bbfca4a19a6fff1901d51a43baf7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-LinkAccounts/ChildSite-LinkAccounts.default.css
SPDXID: SPDXRef-85e795522f101247b66a1a426f1b9865
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-LinkAccounts/ChildSite-LinkAccounts.js
SPDXID: SPDXRef-2a1b687e200dcc36512abdef4ca3c455
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-OrganizationRegistration/ChildSite-OrganizationRegistration.default.css
SPDXID: SPDXRef-f1226c128e7fdfcf66443aac16d738c4
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-OrganizationRegistration/ChildSite-OrganizationRegistration.js
SPDXID: SPDXRef-57c9940dbad4107a5988a6bbade6769a
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-PasswordlessLogin/ChildSite-PasswordlessLogin.default.css
SPDXID: SPDXRef-88a288e61b73a933c58d45d5a2ca8f8f
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-PasswordlessLogin/ChildSite-PasswordlessLogin.js
SPDXID: SPDXRef-fe755fbfc67ed9b8f343de56e3a79b4d
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-ProfileUpdate/ChildSite-ProfileUpdate.default.css
SPDXID: SPDXRef-1b5e6d773342c90863583d182e1c69ee
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-ProfileUpdate/ChildSite-ProfileUpdate.js
SPDXID: SPDXRef-c32b9a575e5826c5bf0e6681b1f5713d
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-ReAuthentication/ChildSite-ReAuthentication.default.css
SPDXID: SPDXRef-6874d4faa6b3acf4ac98b8d811cd4375
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-ReAuthentication/ChildSite-ReAuthentication.js
SPDXID: SPDXRef-05970a4dc9bd7baaacc6ee9bb40eb033
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-RegistrationLogin/ChildSite-RegistrationLogin.default.css
SPDXID: SPDXRef-2a1e8ef2663ea7e51d335ab52c6cc003
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-RegistrationLogin/ChildSite-RegistrationLogin.js
SPDXID: SPDXRef-796c4b386b1d6e4c92591e0874ce1110
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-Subscriptions/ChildSite-Subscriptions.default.css
SPDXID: SPDXRef-0cb5125e26ee683f529c9d255a190240
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebScreenSets/ChildSite-Subscriptions/ChildSite-Subscriptions.js
SPDXID: SPDXRef-b669b4436cb7ec5b824ce707d97d6ef6
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.child-site.com/WebSdk/WebSdk.js
SPDXID: SPDXRef-8a0357f6e11c806f0f7711beb563668f
FileChecksum: SHA1: b76b81bcdc0568003135b15b9ab621585683f635
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/codeVerification/en.json
SPDXID: SPDXRef-67b425c7e1e40775192558a2c9a9756f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/ar.json
SPDXID: SPDXRef-82da9df0a1613b60cde623dc6842b328
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/bg.json
SPDXID: SPDXRef-7ffd4f03f1fccaba93970dba624a9eb8
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/ca.json
SPDXID: SPDXRef-eb63d74c9758c8adb38dddc1744e4548
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/cs.json
SPDXID: SPDXRef-189d584947558c60c80e3749ef1fb558
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/da.json
SPDXID: SPDXRef-6457c4c752b49d540d03545d10e9f02e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/de-inf.json
SPDXID: SPDXRef-ef9c45a10fc03bdff6224cc1b2c7dd34
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/de.json
SPDXID: SPDXRef-7e159175dccf955dab0435d1cf618ee8
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/el.json
SPDXID: SPDXRef-3a5024817c55d90de7c2c739583622a7
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/en.json
SPDXID: SPDXRef-b01742e7f664a527110a052e8bf409a6
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/es-inf.json
SPDXID: SPDXRef-a86353e8f293b8e62fda1d68e6504241
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/es-mx.json
SPDXID: SPDXRef-13f6c93c58eb32de7fd81f7a8ecaefa3
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/es.json
SPDXID: SPDXRef-806e22e01a201bd18b232a1983f14514
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/fa.json
SPDXID: SPDXRef-9020eaad6cf736652971ff24884579a5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/fi.json
SPDXID: SPDXRef-2b92b51ed115001c4ae5b7af44aceeef
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/fr-inf.json
SPDXID: SPDXRef-436defad3731c13911e3816df0518993
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/fr.json
SPDXID: SPDXRef-1b5b06a811906bfff6da6436025d5a98
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/he.json
SPDXID: SPDXRef-173cbca3d6cade8f6bcecc6a967c6692
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/hr.json
SPDXID: SPDXRef-5b72efbbdfb86419c4d789c863822c76
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/hu.json
SPDXID: SPDXRef-4e36bd1b9ec1a6eb56a85408792114e3
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/id.json
SPDXID: SPDXRef-de91044d89e988bdb6596b557488cac7
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/it.json
SPDXID: SPDXRef-c9ffb92d0de28b37d286a5335dd87d7c
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/ja.json
SPDXID: SPDXRef-1de6da8f14dffe9796af185c714935ff
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/ko.json
SPDXID: SPDXRef-82d1511a186c3702c2b448866148c17b
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/ms.json
SPDXID: SPDXRef-33713b07194cabbd5c1b5583d55ffd87
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/nl-inf.json
SPDXID: SPDXRef-6867da6f304ae15f55a62bfda4812101
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/nl.json
SPDXID: SPDXRef-eed00eb5e6f9b8da9be67c69ec753099
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/no.json
SPDXID: SPDXRef-c12e933adc6e32426ce76b4a385aa7d3
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/pl.json
SPDXID: SPDXRef-ab963271f742c58a0ddc4c838eaad868
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/pt-br.json
SPDXID: SPDXRef-fb15f4168a14948655112604a4ea86c1
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/pt.json
SPDXID: SPDXRef-b24dbf90ab89ce253635320df8b0d7d7
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/ro.json
SPDXID: SPDXRef-f2a9245b7adafe72fb0501747160defe
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/ru.json
SPDXID: SPDXRef-67b9f1913d006ac0029614328a980513
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/sk.json
SPDXID: SPDXRef-9391f3eb2bb81e6c5c7844c90fa97638
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/sl.json
SPDXID: SPDXRef-23d573a660a452034279dd0eba1dcf1c
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/sr.json
SPDXID: SPDXRef-593d47be061e5c9caaaa0405be7739a8
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/sv.json
SPDXID: SPDXRef-04b0dcbc41fcd12c1261f117f4aa1959
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/th.json
SPDXID: SPDXRef-cc255452b29cf8786d012041edb706fd
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/tl.json
SPDXID: SPDXRef-0d54502a3d3a3e8acc83951bdbe1c6c4
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/tr.json
SPDXID: SPDXRef-bc64614a0e13f8f04a1ab6379c0c0032
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/uk.json
SPDXID: SPDXRef-e0c63c95c770e7f726dfdd0f5f3a589e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/vi.json
SPDXID: SPDXRef-7a36f5154ec425a9d10d2cf8c4a16453
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/zh-cn.json
SPDXID: SPDXRef-1137f3e268c176d22b9a766f7e81957a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/zh-hk.json
SPDXID: SPDXRef-5b8e24783e02407540dd405183e907f4
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/doubleOptIn/zh-tw.json
SPDXID: SPDXRef-cd2f4ca2a76f3655e32c69b1b8e40c4b
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/emailVerification/en.json
SPDXID: SPDXRef-cbd110deec9af0f8f64445c7b45415ba
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/impossibleTraveler/en.json
SPDXID: SPDXRef-e4b9a364325be36dd451427a9e82adeb
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/magicLink/en.json
SPDXID: SPDXRef-d2a44d45d014416eb8d3db0694ee0d38
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/passwordReset/en.json
SPDXID: SPDXRef-7100f54d3237bbd43a042af2d29b3f14
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/passwordResetNotification/en.json
SPDXID: SPDXRef-12fd609983d088d9d937cc9f7cd771fb
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/preferencesCenter/en.json
SPDXID: SPDXRef-6291eefdc9799b6236c50d67abda7b0c
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/twoFactorAuth/en.json
SPDXID: SPDXRef-1cf9a76a38147361548b9aad842870c1
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/locales/unknownLocationNotification/en.json
SPDXID: SPDXRef-914dcd97c01e08d9bbb3be923bae7957
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/codeVerification.html
SPDXID: SPDXRef-51d1dd11519d2f771d9bf22c515506a2
FileChecksum: SHA1: d13e45da9cc2827ddb900e863151fb812155cc18
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/doubleOptIn.html
SPDXID: SPDXRef-035f125f26e9ffc4fa140d6eeaa92db2
FileChecksum: SHA1: 5e33961d771158d68c1f97e886b2e23aa058a0a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/emailVerification.html
SPDXID: SPDXRef-896320eebf4a318fe1ac857a1263695b
FileChecksum: SHA1: 94b55278329caf5e4b1f4422a8150969580b0299
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/impossibleTraveler.html
SPDXID: SPDXRef-b3a0aa376cdb43c500fc33d40b4e8b8e
FileChecksum: SHA1: f674c33df15d6aa58f7bfa7a288baf55e5e78882
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/magicLink.html
SPDXID: SPDXRef-14ae9b16d14af53df918f47507afd271
FileChecksum: SHA1: 25487d5826741a841649abf198762bca2d9ae9f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/passwordReset.html
SPDXID: SPDXRef-56503a33974a2e146b0caaa103c9d043
FileChecksum: SHA1: cebb496d02cb690b618817ff6d5c63f66862915d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/passwordResetNotification.html
SPDXID: SPDXRef-d59d8e217d840b82d0131e113db1dc65
FileChecksum: SHA1: 9b98a275d09fe4a62dadb9b0c5d03a26d2ede054
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/preferencesCenter.html
SPDXID: SPDXRef-a7777a93c134f5f23e910130d23cd0ea
FileChecksum: SHA1: 2b1cb41ef496b9517dbfbf57a63cca86c98904c9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/twoFactorAuth.html
SPDXID: SPDXRef-5fd8a48203b1a9b51ce44d216b6730e5
FileChecksum: SHA1: 0b45d09eca578365ebcf3b9930f1b2d6e16f76f8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/EmailTemplates/templates/unknownLocationNotification.html
SPDXID: SPDXRef-61e5e3e81fd523a2f047a4856b3c1134
FileChecksum: SHA1: 47919499bce399123bdaf1347860f4e02f0432a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/Policies/policies.json
SPDXID: SPDXRef-c5c4cb22d1a2432d15fc9dc1541341de
FileChecksum: SHA1: 0778a3555aab76db99e517fa7488484c8857622d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/Schema/data.json
SPDXID: SPDXRef-bbfd6c6794647342d8f4632fd9320043
FileChecksum: SHA1: e802eeb533e39046ea478147d9eb8085e9c90122
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/Schema/profile.json
SPDXID: SPDXRef-9b3c12bac5a2dc401d2556a22043a4da
FileChecksum: SHA1: e0f04543b257141fccf8d0b9b00712e4e39e84e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/Schema/subscriptions.json
SPDXID: SPDXRef-03a871246db01ee3eededca0af3e073e
FileChecksum: SHA1: ddc64e9484b373ca99bd8866f6d814bd96c99d41
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/ar.txt
SPDXID: SPDXRef-61c0135863389ffffc4d46ed91071a15
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/br.txt
SPDXID: SPDXRef-c185c0501a50ca2b8aa5e826bacac9dc
FileChecksum: SHA1: 1f670b82d7be8ae30d4edc90c25743fac61b5b2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/ca.txt
SPDXID: SPDXRef-73e98244b147fed32e2ae8552a4f532c
FileChecksum: SHA1: e3c6f406fcbf2540ae6233027427ae38846fc43a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/da.txt
SPDXID: SPDXRef-74afda46bbeea404ce5ff95cabe5a50d
FileChecksum: SHA1: 10679c7e3044697f9975e8b8b5d64cfb32b35ee8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/de.txt
SPDXID: SPDXRef-bad335abca9b246cc78f6b381a9f9e3b
FileChecksum: SHA1: 91c53d0c01314a9907663139c9580f4c06ba6a4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/el.txt
SPDXID: SPDXRef-4e93cc2c8555d4225b6ffd80f1f41946
FileChecksum: SHA1: 9928b58e2888bc64c89e6ff7970ac6e8e678b4a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/en.default.txt
SPDXID: SPDXRef-5338af898b6ef980aed05f6ec17ce8fd
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/es-mx.txt
SPDXID: SPDXRef-c264dec7bcfb20fb5d8bcfb6ec15fa33
FileChecksum: SHA1: f33a0b1292b71ca5980ae6750471504a7a6b3f50
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/es.txt
SPDXID: SPDXRef-5a8bfebf7a704aa5afbf6356c38fcf16
FileChecksum: SHA1: 59290f75763e497bb542fcdf0bb1041ca31178ee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/fi.txt
SPDXID: SPDXRef-5da65fdffe15099f307d3f6e330fca43
FileChecksum: SHA1: e87be7c0f6de3f1230a2eb0bbda9c50510e4a3b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/fr.txt
SPDXID: SPDXRef-532101d730cab99c4e5fa587206a785a
FileChecksum: SHA1: 992f7e60593cf0d2c099443ea30c01faee1a8ed1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/he.txt
SPDXID: SPDXRef-36bb7023cbcc48801b3c95a9a94ccf7a
FileChecksum: SHA1: 9a62c43bec668a3bb5dcc091d4dbf10024e41a45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/hi.txt
SPDXID: SPDXRef-683e5dcb2df361daaf169b02b0f4b8bb
FileChecksum: SHA1: 9d5d5525e077a83de9e3ddc65000fd6627e69903
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/hr.txt
SPDXID: SPDXRef-e9ea3c856a5e579216ada051bad066bd
FileChecksum: SHA1: b5e7d6d2e3d5de5cebe4b9f9372c31f8cd3a2621
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/hu.txt
SPDXID: SPDXRef-45973df6d59b91148f7882b96eb74501
FileChecksum: SHA1: f69dc309927e549b29ba03ba53660ac5a16eba43
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/id.txt
SPDXID: SPDXRef-347775dfbebee5681ae53492eef09079
FileChecksum: SHA1: ba77b206440651c241a5596b446dd2549e7ae66d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/it.txt
SPDXID: SPDXRef-ebf9875dd2e1fbbc3c57c10f37657da6
FileChecksum: SHA1: 9feb53eda360489ea494072f6fd3cbdd59dbbe00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/ja.txt
SPDXID: SPDXRef-d07cdc12a69a7762d1ed20bb191687d5
FileChecksum: SHA1: 69ebc160f79dea799f2214dcd5b9a1198d0dbf7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/kn.txt
SPDXID: SPDXRef-7d043a715597eeeab80eac21cfd866ba
FileChecksum: SHA1: 0d744641f0a5950dea88147e078216644c88ed00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/ko.txt
SPDXID: SPDXRef-96c8ed837b021b619101877d821bf42d
FileChecksum: SHA1: 67de58c8558aec440547888e23919ca2faab81d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/mr.txt
SPDXID: SPDXRef-9f118a6ae6a9d3b9898e43194f4d55bd
FileChecksum: SHA1: c3a7ec54c81b77f4ad87193d82326242a762f37e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/ms.txt
SPDXID: SPDXRef-a7af4f85be8d5d63dbdf397bb67eaa09
FileChecksum: SHA1: af9c12f43bb928efe89aa8dc846a03a6969bd347
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/nl.txt
SPDXID: SPDXRef-bfc4da1f83812a7a441f87290ec0e0a2
FileChecksum: SHA1: c9b48e2635184e93a1ceffff16ddef5b768fddd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/pl.txt
SPDXID: SPDXRef-11274e51d66615081204ea40a38f6800
FileChecksum: SHA1: ebaa1163bf4646fb3f4dd989925fd9edc0638ca7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/pt-br.txt
SPDXID: SPDXRef-e93d17421864c6ff538f52095d6b0a7f
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/pt.txt
SPDXID: SPDXRef-612ec621014abaed9356c09b8b2c1db2
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/ro.txt
SPDXID: SPDXRef-77c8a426389ede9e153096f42621199d
FileChecksum: SHA1: 11aa5d5b6f1b7423883c8114286ca7ab29577799
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/ru.txt
SPDXID: SPDXRef-f1edcb0576c314080cee454850eb58f9
FileChecksum: SHA1: c8b6fd22ba030ab035f299a9d2a349bc98541e01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/sk.txt
SPDXID: SPDXRef-52c6c086cc2a2c938051408d85662fab
FileChecksum: SHA1: 680c12ca4f1064d648bc7b16d9e12800e0ac2ebe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/sl.txt
SPDXID: SPDXRef-f4d17278b6cb31401074e59ede8b5369
FileChecksum: SHA1: 7091e607c42bbc780e95735f93dc90dd375cda54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/sr.txt
SPDXID: SPDXRef-6a79a5b6993dc7afc891d3d927fd5b2c
FileChecksum: SHA1: b0f3f653268f63b29de7874cc008bb1714fb72c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/sv.txt
SPDXID: SPDXRef-a6eabff067214235c16616fd5b706ea9
FileChecksum: SHA1: a82702b05038460dffdb8d775da70989bdbf7092
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/th.txt
SPDXID: SPDXRef-0b78022cccd5cbf60adc5ba757879ace
FileChecksum: SHA1: d69a51dd8c9324a5e3fdf8c8410eb54974a7bde3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/tl.txt
SPDXID: SPDXRef-6eb7178125f0e9895e1842f46e3b47da
FileChecksum: SHA1: 43dd0c41d3cfb7c99ffa5555dbdab3cb766711a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/tr.txt
SPDXID: SPDXRef-5e5c57b3263bfd03d19315ed3b21fac7
FileChecksum: SHA1: 62a73298dea9afb490b38d458dc85e5ae1087623
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/uk.txt
SPDXID: SPDXRef-5283fdcb46bfabd9c77987ab7faf4f8e
FileChecksum: SHA1: 3d3b45a8ab1679ee1d0902ea1c89fb2fe26b3752
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/vi.txt
SPDXID: SPDXRef-b1bb2e565cbbc6a5be3a92083775267a
FileChecksum: SHA1: 6447bf95e57bb6ae348ab45cb062f62444f3caf6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-f5201bc90a887bac4df228cef5ebe5cf
FileChecksum: SHA1: f487a871d30aeeb6b2501be69ee3063579b5a555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/zh-hk.txt
SPDXID: SPDXRef-1fe4f0238b72a649c24185a042d56a0e
FileChecksum: SHA1: f49a69f8baf863e79aa13897dac0ef3b67ddaf76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/otp/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-dbcd39d4e14f16bb4743cc17ebad2e24
FileChecksum: SHA1: 4dd351f32bcbab6f78040c7c779c696cb11381fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/ar.txt
SPDXID: SPDXRef-d753351e2528f9370f6e25605fa3d3d0
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/br.txt
SPDXID: SPDXRef-f0c02942352d591424ef555a06e43da7
FileChecksum: SHA1: 93547294f4f227dfd80bb87f522cfeff78597518
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/ca.txt
SPDXID: SPDXRef-970ec0022f8fb414a6ac2321a3d3184f
FileChecksum: SHA1: 89eabe7994199018dd62178f6602931d5f01c0e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/cs.txt
SPDXID: SPDXRef-a47153f55bb96c04d96b1a846d50a0d3
FileChecksum: SHA1: 54e1fa0cf5024d4b5dc0ae5f631e222f18d08b1e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/da.txt
SPDXID: SPDXRef-01407c999c3fc58f4fa95211a3844493
FileChecksum: SHA1: d192bd9a6f73cee7265dcc136a99593ca355318a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/de.txt
SPDXID: SPDXRef-303248222fb5db150700e1c9d6f0e178
FileChecksum: SHA1: 89005ede0744297022e258d7d3f86ca0ebb176db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/el.txt
SPDXID: SPDXRef-a147d14f8b315c4d84e2df2e04a0d559
FileChecksum: SHA1: f65b091d649ac2d354a6e071327b5e2764d7c569
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/en.default.txt
SPDXID: SPDXRef-dff8195ea57b6bc36bcff91285c8bcf5
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/es-mx.txt
SPDXID: SPDXRef-747473cda5426ce889e240e0a6fbfcb9
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/es.txt
SPDXID: SPDXRef-55533d9f946b22db317412b1c894b436
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/fa.txt
SPDXID: SPDXRef-2ab0079687bbc940113c0f820a269357
FileChecksum: SHA1: 08d1829e38be12d6f8bc96c913d57a35f2c6205f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/fi.txt
SPDXID: SPDXRef-4c75c3b7b55ea837a0aa51b35ff1a9e5
FileChecksum: SHA1: c6a6d3fd3437bf0cc916ad1cd2a7994e385367c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/fr.txt
SPDXID: SPDXRef-26032bff4727453f7220025316515073
FileChecksum: SHA1: 1c5a3dc5de362cbf121d0b382c32393249340717
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/he.txt
SPDXID: SPDXRef-516c109bfa1c397452ba976510bdaa86
FileChecksum: SHA1: e3a18c1c521f09463a9b779792fccd2aac6721b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/hi.txt
SPDXID: SPDXRef-b222e4b2c581cbcda98d241f1d276b78
FileChecksum: SHA1: e230f4d7dde07d907dc21fa3314839f93d26d5bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/hr.txt
SPDXID: SPDXRef-0290bc309fb7958d0555225a50eb848f
FileChecksum: SHA1: 47fdb8cec96507a99b2494f87351133ed5445403
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/hu.txt
SPDXID: SPDXRef-a7f68343ffebb2ab1061497fdb430f05
FileChecksum: SHA1: 8fb8b6cebefdae5e519435945f02d403d7710e38
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/id.txt
SPDXID: SPDXRef-ed77136d9d34b2b5d6a8081e0226f808
FileChecksum: SHA1: 57e66fe11e3cecbf40c288fa3e1f006eb5178d1d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/it.txt
SPDXID: SPDXRef-04278fc741979bfb8808ca12bf348eed
FileChecksum: SHA1: 595c0427e419cd2a8ad552b0d3597bf15ed80866
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/ja.txt
SPDXID: SPDXRef-dec1c204cc5f6292af4361df9652dbfb
FileChecksum: SHA1: fc1cee8012d5a8ba673c6ba627d5ae3c5003e28a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/kn.txt
SPDXID: SPDXRef-dad10d2449feb37f91f181fa5f3632fb
FileChecksum: SHA1: 39bb79e6b792685ba684fd0810fe2d702b2ddaaf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/ko.txt
SPDXID: SPDXRef-38c034f86891ec7bd7bb9afc2c621f79
FileChecksum: SHA1: b53780948f821eb4e4760fffe88c0dd9a7b00bbf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/mr.txt
SPDXID: SPDXRef-3332e5baf42d0c5b7c8eee3854131e58
FileChecksum: SHA1: c961d8a63234c098a2cc2e463924e9b1e8c24332
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/ms.txt
SPDXID: SPDXRef-8bb1096be4ecb4707cb78c554ee7fa74
FileChecksum: SHA1: 65e15950004b655982dd8b3b62cb739e9a7b5929
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/nl.txt
SPDXID: SPDXRef-f0bda978312b2993c3ab81b78ea6a7e9
FileChecksum: SHA1: f242d96952bfe78400941287e4756ab826151516
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/no.txt
SPDXID: SPDXRef-77b4ccb789afd2a1dc00a96d5d344725
FileChecksum: SHA1: 1847defde681acd9173a38a134a29e0b8068ab8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/pl.txt
SPDXID: SPDXRef-b5973ddb24cc2fa17647a57c4051f498
FileChecksum: SHA1: d7bebbc1d664a9c71e7e28f6944620530ed14470
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/pt-br.txt
SPDXID: SPDXRef-8f13fbba678abe0b8528d7d10d486d9a
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/pt.txt
SPDXID: SPDXRef-a6248d6e771b0bcfba06523298085855
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/ro.txt
SPDXID: SPDXRef-21428fc7ca0febce4abdd4a10276f663
FileChecksum: SHA1: 83f2bffd315e46e0bb0b81eb7b9f591a650a155e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/ru.txt
SPDXID: SPDXRef-5fc09e00df0bbc2229f2392dfb8df22e
FileChecksum: SHA1: a5e603686a9de29bfbf43be52c85bc41ceb1a229
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/sk.txt
SPDXID: SPDXRef-6bcaf36e8fdec008db2f2c01a6472528
FileChecksum: SHA1: fb4ce20588545fb1f5aebc169aa3cbc554c1a728
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/sl.txt
SPDXID: SPDXRef-a5bcc0638bffeed312efbcaa04416fc5
FileChecksum: SHA1: a819534da5b669654f4ff98cb7740b22805766da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/sr.txt
SPDXID: SPDXRef-b47c8112eac283a46482c83d4174d6e0
FileChecksum: SHA1: 42f16e28cc66bccdb1f373f50b0c5e66deb2a521
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/sv.txt
SPDXID: SPDXRef-d296b846aa2f6935ebf40676f5327e5d
FileChecksum: SHA1: f13f86655bcb206bc09c56668b8c69c57c66d580
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/th.txt
SPDXID: SPDXRef-6eed5de77eec10eca35bb9ff08b11fe6
FileChecksum: SHA1: 10fd2c42a5907cb67ecaab1db7b10d20bc2f655b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/tl.txt
SPDXID: SPDXRef-0eb64b3ae31c54eca1b1afe2e240629c
FileChecksum: SHA1: 88fc71cc09fd0e8ed4f9c2e5050e53ea860d5414
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/tr.txt
SPDXID: SPDXRef-623422a4827b0f3efef82bebe115fa73
FileChecksum: SHA1: c05136cfcc00672ba8c5465ee6d71412374cb339
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/uk.txt
SPDXID: SPDXRef-48899aeaa47015809611ed9f789bd8b1
FileChecksum: SHA1: 108c4b7783faae3075d87a7a11c39128c7304460
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/vi.txt
SPDXID: SPDXRef-0562ef9180e60bf680a3502092089cb4
FileChecksum: SHA1: fe2e61267b77c6c33b1ec5d2ff6ca142929ae6b8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/yyef.txt
SPDXID: SPDXRef-ac1443a1c8b2213fd0b9117a82c28bcc
FileChecksum: SHA1: 83a30d6e2526aa9384634a30d7cc239c196991f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-6f3b5298c2c80be76a77c2594e1a6ecb
FileChecksum: SHA1: 5cc27e86e9e4b21104783430ab2c8e2425c81704
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/SmsTemplates/tfa/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-c373052baca018064e86d040cee26f88
FileChecksum: SHA1: 936b9a70b043bbfca4a19a6fff1901d51a43baf7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-LinkAccounts/Default-LinkAccounts.default.css
SPDXID: SPDXRef-0dd786a6f0e2b13f1883977f357d7d18
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-LinkAccounts/Default-LinkAccounts.js
SPDXID: SPDXRef-fbda18527b073df5390857f410e23399
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-LiteRegistration/Default-LiteRegistration.default.css
SPDXID: SPDXRef-8c25c24d039f61d1b1675276fdce0980
FileChecksum: SHA1: e1d63662618dc5222a9c028b8d2de543d24a7185
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-LiteRegistration/Default-LiteRegistration.js
SPDXID: SPDXRef-5aa1e8762099b54beba5ab1b311fa1c2
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-OrganizationRegistration/Default-OrganizationRegistration.default.css
SPDXID: SPDXRef-764e6fbab8c15ba163d576e736a4ace1
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-OrganizationRegistration/Default-OrganizationRegistration.js
SPDXID: SPDXRef-0adb9436c24afcfa4c7d31d231871542
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-PasswordlessLogin/Default-PasswordlessLogin.default.css
SPDXID: SPDXRef-a08ac2ea3b821a7f344b2410d056acf0
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-PasswordlessLogin/Default-PasswordlessLogin.js
SPDXID: SPDXRef-ee5a87b2f85af891536b49d1dceec9ff
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-ProfileUpdate/Default-ProfileUpdate.default.css
SPDXID: SPDXRef-09cd75f5cb0dc18ab5eb867863b26ccf
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-ProfileUpdate/Default-ProfileUpdate.js
SPDXID: SPDXRef-d402dd0e30b9e430ed461462d26e2cef
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-ReAuthentication/Default-ReAuthentication.default.css
SPDXID: SPDXRef-10a6388873e412f01e5d042b59f10b87
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-ReAuthentication/Default-ReAuthentication.js
SPDXID: SPDXRef-ff608e98d22891e214109c60f2cb85d8
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLogin.default.css
SPDXID: SPDXRef-5280a8b62311477873562493ee115b96
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLogin.js
SPDXID: SPDXRef-fa0dd7c99a1b8352df6ac9cbc83c3ea6
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-Subscriptions/Default-Subscriptions.default.css
SPDXID: SPDXRef-0d25c5c90f34099a38807bbc44320854
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebScreenSets/Default-Subscriptions/Default-Subscriptions.js
SPDXID: SPDXRef-3077970566b9ef769d19dbf8adef65cc
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.parent-site.com/WebSdk/WebSdk.js
SPDXID: SPDXRef-44a002ebb13e8cbc8beb38f10b8b7785
FileChecksum: SHA1: b76b81bcdc0568003135b15b9ab621585683f635
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/codeVerification/en.json
SPDXID: SPDXRef-ad9fd2a55b222e50fe65e8d58e90792b
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/ar.json
SPDXID: SPDXRef-f9904e11c4c2c7d4b7b7299546f3155f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/bg.json
SPDXID: SPDXRef-99a74dce63cb0e8ac2fc6cbc16cb92e5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/ca.json
SPDXID: SPDXRef-b78a781888d76d1c26db9253a1268009
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/cs.json
SPDXID: SPDXRef-9d2d5544f40cc6e76c9fef4a49d8e7bf
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/da.json
SPDXID: SPDXRef-9865a6504042550cb8ba015512ab498a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/de-inf.json
SPDXID: SPDXRef-1ba87149a9eee313216b78dda2eeb53b
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/de.json
SPDXID: SPDXRef-2ba7b737a620bd84bb3c62cd8e452bc6
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/el.json
SPDXID: SPDXRef-aedfb8374f5bc157268f6a48809b5bed
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/en.json
SPDXID: SPDXRef-28c1591071fc0a0f3d36d4d44a9aa0ce
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/es-inf.json
SPDXID: SPDXRef-9332e0c1c6c8e53954c7d21a3808dc15
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/es-mx.json
SPDXID: SPDXRef-e58ad22734aa76cb45ce8f1e43ad3837
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/es.json
SPDXID: SPDXRef-02c0192e249b3d3390e6f8db14e0c2a0
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/fa.json
SPDXID: SPDXRef-bc24a044dd6e0140cbb80fdcd4900772
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/fi.json
SPDXID: SPDXRef-ba68fbe1f4acc43a081d738d03a6415a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/fr-inf.json
SPDXID: SPDXRef-7eab6fd0e4fea21203ca380b8fa4ab2a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/fr.json
SPDXID: SPDXRef-06f1c9ebf0d6733605bf46485d461d8a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/he.json
SPDXID: SPDXRef-cd1ae2a6b869fc36f0ba6666c720b43e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/hr.json
SPDXID: SPDXRef-167cc22e1d202891d034efd4c183b9fc
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/hu.json
SPDXID: SPDXRef-502bca9d0947729a1a4cfe51ac2478d5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/id.json
SPDXID: SPDXRef-4e6e89ac7cc58c187594474abd51b579
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/it.json
SPDXID: SPDXRef-763416538a2eaa58004860e7c83527f0
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/ja.json
SPDXID: SPDXRef-c903a2ad60aaeb805835cbaa2e6f883d
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/ko.json
SPDXID: SPDXRef-37a8f7341efffd03086df251e0801b8d
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/ms.json
SPDXID: SPDXRef-f596e507715320a2cb3197fc20cbfe6f
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/nl-inf.json
SPDXID: SPDXRef-7d2e29eddfc68b00ec723c4555f6f02d
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/nl.json
SPDXID: SPDXRef-d21f99569f09ad40361c78e04db01c05
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/no.json
SPDXID: SPDXRef-c77812a113521c493d684ef09af0fcc9
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/pl.json
SPDXID: SPDXRef-bcd5395b729d6c47cb09a25be7ce8ed4
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/pt-br.json
SPDXID: SPDXRef-f7064d16ddf58fee9a0c1895c177d67e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/pt.json
SPDXID: SPDXRef-dee40865f0145e54ec505e24c683f505
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/ro.json
SPDXID: SPDXRef-ece034c1ef33c2a29fd2c04df1c32735
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/ru.json
SPDXID: SPDXRef-b9012bd049f575715071715ef9a14a12
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/sk.json
SPDXID: SPDXRef-cfcb683f64892d4d92110f296e93df98
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/sl.json
SPDXID: SPDXRef-13ec0603f594740b61d7bc2839a59251
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/sr.json
SPDXID: SPDXRef-a7c8752e1650bcb6398906b7bd253dde
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/sv.json
SPDXID: SPDXRef-6b5fee0cfd3abcab5cdd4b6100dc62c4
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/th.json
SPDXID: SPDXRef-03851c43c0dde716cd28c799a2a2082d
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/tl.json
SPDXID: SPDXRef-2af958dcd012bdcb4d36e2211bc05b61
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/tr.json
SPDXID: SPDXRef-7ad82d82998a7bc0a77eadf674a86779
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/uk.json
SPDXID: SPDXRef-7ac2ae02bb48d7d7d301aa3047b4184e
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/vi.json
SPDXID: SPDXRef-fa465279ea0117a6e02bb4e84dee0280
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/zh-cn.json
SPDXID: SPDXRef-1d4c0bfce9708ec123d0b476e5a20703
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/zh-hk.json
SPDXID: SPDXRef-a72f58c7f39d6cf896913dce954e46fc
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/doubleOptIn/zh-tw.json
SPDXID: SPDXRef-3fc30edcdaf8cf2c7b63b97e58c67350
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/emailVerification/en.json
SPDXID: SPDXRef-ed709b7fa91d33c4c97340eec6c6891a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/impossibleTraveler/en.json
SPDXID: SPDXRef-682f9c31017bcad0a805864eb2aac5eb
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/magicLink/en.json
SPDXID: SPDXRef-c68dd2d8c279eae3cf29e34a8086b7a5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/passwordReset/en.json
SPDXID: SPDXRef-dd54098cd155d6d5b9a88b2c0b63ed3a
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/passwordResetNotification/en.json
SPDXID: SPDXRef-fcab95959d401a0c89d72e13a9afb805
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/preferencesCenter/en.json
SPDXID: SPDXRef-cab6ee695032f73255792c6ad730c2c3
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/twoFactorAuth/en.json
SPDXID: SPDXRef-3563fb08ce26e3fcce7a6c77384239db
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/locales/unknownLocationNotification/en.json
SPDXID: SPDXRef-249821ec6783cf3d7e270f7d9d74bef5
FileChecksum: SHA1: bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/codeVerification.html
SPDXID: SPDXRef-b0090bcbef65cb847570687120372c73
FileChecksum: SHA1: d13e45da9cc2827ddb900e863151fb812155cc18
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/doubleOptIn.html
SPDXID: SPDXRef-b4d46f1281bf7c786d9c71fea2967135
FileChecksum: SHA1: 5e33961d771158d68c1f97e886b2e23aa058a0a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/emailVerification.html
SPDXID: SPDXRef-db7c0e4b06fb62d7a89ac91221049c54
FileChecksum: SHA1: 94b55278329caf5e4b1f4422a8150969580b0299
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/impossibleTraveler.html
SPDXID: SPDXRef-cae488ecf463b66d8e860ddf9d861a46
FileChecksum: SHA1: f674c33df15d6aa58f7bfa7a288baf55e5e78882
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/magicLink.html
SPDXID: SPDXRef-2bbf4f10cfb18415063c4cb938d0cab3
FileChecksum: SHA1: 25487d5826741a841649abf198762bca2d9ae9f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/passwordReset.html
SPDXID: SPDXRef-b962d708ba64159eac69619edbe7f79c
FileChecksum: SHA1: cebb496d02cb690b618817ff6d5c63f66862915d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/passwordResetNotification.html
SPDXID: SPDXRef-7ba101c5d3055f9ead08097e01b17026
FileChecksum: SHA1: 9b98a275d09fe4a62dadb9b0c5d03a26d2ede054
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/preferencesCenter.html
SPDXID: SPDXRef-11b6e8435f9f6d543b2fcb1dd073328f
FileChecksum: SHA1: 2b1cb41ef496b9517dbfbf57a63cca86c98904c9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/twoFactorAuth.html
SPDXID: SPDXRef-165d73706a8eafed3f7170c3cd54982e
FileChecksum: SHA1: 0b45d09eca578365ebcf3b9930f1b2d6e16f76f8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/EmailTemplates/templates/unknownLocationNotification.html
SPDXID: SPDXRef-60a253aec0266d7f1cd2d76c6b90890f
FileChecksum: SHA1: 47919499bce399123bdaf1347860f4e02f0432a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/Policies/policies.json
SPDXID: SPDXRef-97ed9efdd396a0da52ca29dee3babca3
FileChecksum: SHA1: 0778a3555aab76db99e517fa7488484c8857622d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/Schema/data.json
SPDXID: SPDXRef-d5116f9632f10bb20ae8122cd26fb894
FileChecksum: SHA1: e802eeb533e39046ea478147d9eb8085e9c90122
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/Schema/profile.json
SPDXID: SPDXRef-a95d0d8391ca195fb85869eec36348fd
FileChecksum: SHA1: e0f04543b257141fccf8d0b9b00712e4e39e84e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/Schema/subscriptions.json
SPDXID: SPDXRef-1b0064112da4efc4726492ad586b7293
FileChecksum: SHA1: ddc64e9484b373ca99bd8866f6d814bd96c99d41
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/ar.txt
SPDXID: SPDXRef-f097df997a2e3d3e039bdfba9b6bcb08
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/br.txt
SPDXID: SPDXRef-38d3d99370b863acf39feb4398461d57
FileChecksum: SHA1: 1f670b82d7be8ae30d4edc90c25743fac61b5b2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/ca.txt
SPDXID: SPDXRef-7f6a58f2a473028bb30699f92568c5f9
FileChecksum: SHA1: e3c6f406fcbf2540ae6233027427ae38846fc43a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/da.txt
SPDXID: SPDXRef-4447ad79627f6341e9639f391d355499
FileChecksum: SHA1: 10679c7e3044697f9975e8b8b5d64cfb32b35ee8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/de.txt
SPDXID: SPDXRef-64e79400cf19158b9cd3b0ae7a018903
FileChecksum: SHA1: 91c53d0c01314a9907663139c9580f4c06ba6a4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/el.txt
SPDXID: SPDXRef-a4929bb58e7fb16969831ded6152eb0a
FileChecksum: SHA1: 9928b58e2888bc64c89e6ff7970ac6e8e678b4a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/en.default.txt
SPDXID: SPDXRef-348e0d52a62b69bfe96c57cde4782971
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/es-mx.txt
SPDXID: SPDXRef-348d12bb53c2bcb1a43d00efcfe221c6
FileChecksum: SHA1: f33a0b1292b71ca5980ae6750471504a7a6b3f50
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/es.txt
SPDXID: SPDXRef-b873a152d8d6218f8d36c8c729546d51
FileChecksum: SHA1: 59290f75763e497bb542fcdf0bb1041ca31178ee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/fi.txt
SPDXID: SPDXRef-7741e62641c0612f1a2a63bb7267d260
FileChecksum: SHA1: e87be7c0f6de3f1230a2eb0bbda9c50510e4a3b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/fr.txt
SPDXID: SPDXRef-f7ec111c1ad5379781ee991a51e0fac6
FileChecksum: SHA1: 992f7e60593cf0d2c099443ea30c01faee1a8ed1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/he.txt
SPDXID: SPDXRef-ffa4527cc382255573bd8e1627be9fa8
FileChecksum: SHA1: 9a62c43bec668a3bb5dcc091d4dbf10024e41a45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/hi.txt
SPDXID: SPDXRef-0947c81fcae3e282d3ea46ca237f1765
FileChecksum: SHA1: 9d5d5525e077a83de9e3ddc65000fd6627e69903
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/hr.txt
SPDXID: SPDXRef-0caf80be7934d41d9b0870ae72587126
FileChecksum: SHA1: b5e7d6d2e3d5de5cebe4b9f9372c31f8cd3a2621
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/hu.txt
SPDXID: SPDXRef-ef32b58029d8140f6b97fd232588ffcc
FileChecksum: SHA1: f69dc309927e549b29ba03ba53660ac5a16eba43
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/id.txt
SPDXID: SPDXRef-5914ff5b93697cc9f1773b71c656ba2d
FileChecksum: SHA1: ba77b206440651c241a5596b446dd2549e7ae66d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/it.txt
SPDXID: SPDXRef-ad69019e510e4b7d85caba1445e25e7a
FileChecksum: SHA1: 9feb53eda360489ea494072f6fd3cbdd59dbbe00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/ja.txt
SPDXID: SPDXRef-f0b5b9d1e6088009c007cf8c1da5ef63
FileChecksum: SHA1: 69ebc160f79dea799f2214dcd5b9a1198d0dbf7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/kn.txt
SPDXID: SPDXRef-4ad920f9f80111d0b859d4069935ef3d
FileChecksum: SHA1: 0d744641f0a5950dea88147e078216644c88ed00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/ko.txt
SPDXID: SPDXRef-fbd45e88804e732825b0188e4317df76
FileChecksum: SHA1: 67de58c8558aec440547888e23919ca2faab81d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/mr.txt
SPDXID: SPDXRef-081bf5b543a6109b452e3f406ed924ea
FileChecksum: SHA1: c3a7ec54c81b77f4ad87193d82326242a762f37e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/ms.txt
SPDXID: SPDXRef-78fdf6560c1e72942d5e097c72cfc526
FileChecksum: SHA1: af9c12f43bb928efe89aa8dc846a03a6969bd347
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/nl.txt
SPDXID: SPDXRef-4048ad0e4ffbb2feacef7f354c1df5d8
FileChecksum: SHA1: c9b48e2635184e93a1ceffff16ddef5b768fddd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/pl.txt
SPDXID: SPDXRef-46f1ec14318608676b9471c698a671c9
FileChecksum: SHA1: ebaa1163bf4646fb3f4dd989925fd9edc0638ca7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/pt-br.txt
SPDXID: SPDXRef-90f28de339688dc0cf8e16c523ccde72
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/pt.txt
SPDXID: SPDXRef-f28eead3e57eb643310da53773799dd5
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/ro.txt
SPDXID: SPDXRef-38e148beb0962de1dd2f26dd09dea33e
FileChecksum: SHA1: 11aa5d5b6f1b7423883c8114286ca7ab29577799
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/ru.txt
SPDXID: SPDXRef-28b1cb8a0d614be058aa4970751c0eef
FileChecksum: SHA1: c8b6fd22ba030ab035f299a9d2a349bc98541e01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/sk.txt
SPDXID: SPDXRef-63bac7e81cc545ce64079702e85f16fe
FileChecksum: SHA1: 680c12ca4f1064d648bc7b16d9e12800e0ac2ebe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/sl.txt
SPDXID: SPDXRef-25ca96fb0d5e9184a632b886f1fe1330
FileChecksum: SHA1: 7091e607c42bbc780e95735f93dc90dd375cda54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/sr.txt
SPDXID: SPDXRef-bb4e2ee470016ded2e60f00dc7d74344
FileChecksum: SHA1: b0f3f653268f63b29de7874cc008bb1714fb72c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/sv.txt
SPDXID: SPDXRef-3cb1f1b946a967db4d04496b1d9d68c7
FileChecksum: SHA1: a82702b05038460dffdb8d775da70989bdbf7092
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/th.txt
SPDXID: SPDXRef-00fc194c23ab17358a9f376d90bc1a88
FileChecksum: SHA1: d69a51dd8c9324a5e3fdf8c8410eb54974a7bde3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/tl.txt
SPDXID: SPDXRef-b7c639275ec84e5ec2469fd1aac70256
FileChecksum: SHA1: 43dd0c41d3cfb7c99ffa5555dbdab3cb766711a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/tr.txt
SPDXID: SPDXRef-be97bd788c13334273cf58104c3f7b88
FileChecksum: SHA1: 62a73298dea9afb490b38d458dc85e5ae1087623
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/uk.txt
SPDXID: SPDXRef-a3116b3a71330e3248847c68bd32014f
FileChecksum: SHA1: 3d3b45a8ab1679ee1d0902ea1c89fb2fe26b3752
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/vi.txt
SPDXID: SPDXRef-f5846f155db6176bf5ea5095a6279ab8
FileChecksum: SHA1: 6447bf95e57bb6ae348ab45cb062f62444f3caf6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-a41aa658ba9b5dff0f234b10f4f928fd
FileChecksum: SHA1: f487a871d30aeeb6b2501be69ee3063579b5a555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/zh-hk.txt
SPDXID: SPDXRef-8c99e17deab2da5b9d75585e4e9e2efc
FileChecksum: SHA1: f49a69f8baf863e79aa13897dac0ef3b67ddaf76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/otp/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-7846c96a0e18514c37ea7ed069751069
FileChecksum: SHA1: 4dd351f32bcbab6f78040c7c779c696cb11381fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/ar.txt
SPDXID: SPDXRef-20cdb3bf89837f91b830fee5b1c563c1
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/br.txt
SPDXID: SPDXRef-249f55ae7ca3171286810c667f359eb8
FileChecksum: SHA1: 93547294f4f227dfd80bb87f522cfeff78597518
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/ca.txt
SPDXID: SPDXRef-ca7f38b392d290c36c202336bd35b031
FileChecksum: SHA1: 89eabe7994199018dd62178f6602931d5f01c0e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/cs.txt
SPDXID: SPDXRef-aa030c9ca0afbef234778b6eba4e35a5
FileChecksum: SHA1: 54e1fa0cf5024d4b5dc0ae5f631e222f18d08b1e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/da.txt
SPDXID: SPDXRef-686890c3cd1e51eafc17b2cd31033b0e
FileChecksum: SHA1: d192bd9a6f73cee7265dcc136a99593ca355318a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/de.txt
SPDXID: SPDXRef-e471b8d8ad9c1ff94b21d5686f1b841f
FileChecksum: SHA1: 89005ede0744297022e258d7d3f86ca0ebb176db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/el.txt
SPDXID: SPDXRef-f1f97ad4f30c668c0915ce3bc70a2fd1
FileChecksum: SHA1: f65b091d649ac2d354a6e071327b5e2764d7c569
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/en.default.txt
SPDXID: SPDXRef-748d806a1e6c6fd86d69f05486df9169
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/es-mx.txt
SPDXID: SPDXRef-56b11441b0adbff0a4a1a3ee965bd472
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/es.txt
SPDXID: SPDXRef-2a9069f341c9b78660bc6cdcded8a6fd
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/fa.txt
SPDXID: SPDXRef-18d2b51d00a1a4d72dc3ffad2a2d9614
FileChecksum: SHA1: 08d1829e38be12d6f8bc96c913d57a35f2c6205f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/fi.txt
SPDXID: SPDXRef-ba1e22bd6bde3c03b84a9e21beaa001c
FileChecksum: SHA1: c6a6d3fd3437bf0cc916ad1cd2a7994e385367c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/fr.txt
SPDXID: SPDXRef-eb6462bdf22658619bc04d6887c96f3e
FileChecksum: SHA1: 1c5a3dc5de362cbf121d0b382c32393249340717
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/he.txt
SPDXID: SPDXRef-3102f02629b6864f940d51791f1b8e1a
FileChecksum: SHA1: e3a18c1c521f09463a9b779792fccd2aac6721b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/hi.txt
SPDXID: SPDXRef-03e1ed6861997f2b5858556ecd4d48f6
FileChecksum: SHA1: e230f4d7dde07d907dc21fa3314839f93d26d5bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/hr.txt
SPDXID: SPDXRef-5d3ef7ac6dcafcc2e4a5adaf9ec5d60c
FileChecksum: SHA1: 47fdb8cec96507a99b2494f87351133ed5445403
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/hu.txt
SPDXID: SPDXRef-b7ff21647dfd89ef98ca63ffaa6f1363
FileChecksum: SHA1: 8fb8b6cebefdae5e519435945f02d403d7710e38
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/id.txt
SPDXID: SPDXRef-2d5b2289539b91e18279040b9ff10661
FileChecksum: SHA1: 57e66fe11e3cecbf40c288fa3e1f006eb5178d1d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/it.txt
SPDXID: SPDXRef-6375ecafd19879bdcf1783a54fb25199
FileChecksum: SHA1: 595c0427e419cd2a8ad552b0d3597bf15ed80866
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/ja.txt
SPDXID: SPDXRef-4f9c1f0b569530101484ca7b3965a0e4
FileChecksum: SHA1: fc1cee8012d5a8ba673c6ba627d5ae3c5003e28a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/kn.txt
SPDXID: SPDXRef-f0c5d1059705a0fcd619a5e76cef9de4
FileChecksum: SHA1: 39bb79e6b792685ba684fd0810fe2d702b2ddaaf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/ko.txt
SPDXID: SPDXRef-eacc213e530d3dabe9ad97f33c5cd87c
FileChecksum: SHA1: b53780948f821eb4e4760fffe88c0dd9a7b00bbf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/mr.txt
SPDXID: SPDXRef-cca6792fe4952288f2416280d92ec659
FileChecksum: SHA1: c961d8a63234c098a2cc2e463924e9b1e8c24332
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/ms.txt
SPDXID: SPDXRef-724c0da5826e8b2c10d820b4e4f0be64
FileChecksum: SHA1: 65e15950004b655982dd8b3b62cb739e9a7b5929
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/nl.txt
SPDXID: SPDXRef-2cda83b1f8607b11b5a3190c4bff93fa
FileChecksum: SHA1: f242d96952bfe78400941287e4756ab826151516
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/no.txt
SPDXID: SPDXRef-e19f40feb19817481cf6c25e96051f3b
FileChecksum: SHA1: 1847defde681acd9173a38a134a29e0b8068ab8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/pl.txt
SPDXID: SPDXRef-455fce186bd157ca60cb20fcc2b8672c
FileChecksum: SHA1: d7bebbc1d664a9c71e7e28f6944620530ed14470
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/pt-br.txt
SPDXID: SPDXRef-eadf97554042e5404baa5dd1a1894d32
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/pt.txt
SPDXID: SPDXRef-d3a6804473ec0204e96374ae2393a186
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/ro.txt
SPDXID: SPDXRef-f1a6ac7deae7a8929205d162ef1078a1
FileChecksum: SHA1: 83f2bffd315e46e0bb0b81eb7b9f591a650a155e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/ru.txt
SPDXID: SPDXRef-7d73297afa2124e0d1c1fb95904eb295
FileChecksum: SHA1: a5e603686a9de29bfbf43be52c85bc41ceb1a229
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/sk.txt
SPDXID: SPDXRef-9de3d324643cb66cbeeec13c9718c64a
FileChecksum: SHA1: fb4ce20588545fb1f5aebc169aa3cbc554c1a728
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/sl.txt
SPDXID: SPDXRef-f6a4ac0e6bdccf023db62bafb9d8cb7d
FileChecksum: SHA1: a819534da5b669654f4ff98cb7740b22805766da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/sr.txt
SPDXID: SPDXRef-50c131f00c8d9637a08803ec24415073
FileChecksum: SHA1: 42f16e28cc66bccdb1f373f50b0c5e66deb2a521
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/sv.txt
SPDXID: SPDXRef-31f5b21a91b64203c706fcf8d43dbff2
FileChecksum: SHA1: f13f86655bcb206bc09c56668b8c69c57c66d580
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/th.txt
SPDXID: SPDXRef-bf5f54561755e901a31355a74d1c416c
FileChecksum: SHA1: 10fd2c42a5907cb67ecaab1db7b10d20bc2f655b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/tl.txt
SPDXID: SPDXRef-136f0cff8584e25e40a0c6f137c228d8
FileChecksum: SHA1: 88fc71cc09fd0e8ed4f9c2e5050e53ea860d5414
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/tr.txt
SPDXID: SPDXRef-4991973e0bf3e724e01c64634deeef4e
FileChecksum: SHA1: c05136cfcc00672ba8c5465ee6d71412374cb339
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/uk.txt
SPDXID: SPDXRef-992bbac930bb8692c0f3f35cbd4eeccb
FileChecksum: SHA1: 108c4b7783faae3075d87a7a11c39128c7304460
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/vi.txt
SPDXID: SPDXRef-1cce45b4c8beca8c1b255e65e95d71bb
FileChecksum: SHA1: fe2e61267b77c6c33b1ec5d2ff6ca142929ae6b8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/yyef.txt
SPDXID: SPDXRef-b67c967b49d49e5d6fd8444965763c32
FileChecksum: SHA1: 83a30d6e2526aa9384634a30d7cc239c196991f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-e6bf41b2a1efd08eecfb7c9d0c9702f8
FileChecksum: SHA1: 5cc27e86e9e4b21104783430ab2c8e2425c81704
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/SmsTemplates/tfa/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-54239caf39ad9144c5d841b96cfedb9d
FileChecksum: SHA1: 936b9a70b043bbfca4a19a6fff1901d51a43baf7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-LinkAccounts/Default-LinkAccounts.default.css
SPDXID: SPDXRef-91571ee378a202b01845b9901a6d98fc
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-LinkAccounts/Default-LinkAccounts.js
SPDXID: SPDXRef-3c34c64fd2524645dc9e44ebdcb8f5fc
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-LiteRegistration/Default-LiteRegistration.default.css
SPDXID: SPDXRef-28c9844518cd0fcb8550a895f7f19600
FileChecksum: SHA1: e1d63662618dc5222a9c028b8d2de543d24a7185
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-LiteRegistration/Default-LiteRegistration.js
SPDXID: SPDXRef-819dd7e546a9f33a79a3401423d74cf4
FileChecksum: SHA1: bf91db04d13964c7b0da2bb792b2c568fae158e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-OrganizationRegistration/Default-OrganizationRegistration.default.css
SPDXID: SPDXRef-73baf51de7a6994c60f98dae4f35c729
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-OrganizationRegistration/Default-OrganizationRegistration.js
SPDXID: SPDXRef-ca25b644ac983f56a2a273bd2a80bc36
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-PasswordlessLogin/Default-PasswordlessLogin.default.css
SPDXID: SPDXRef-67b165fc8237088868ad75eb548a0d4b
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-PasswordlessLogin/Default-PasswordlessLogin.js
SPDXID: SPDXRef-b9ea56581efd88296a0c1208cb487f78
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-ProfileUpdate/Default-ProfileUpdate.default.css
SPDXID: SPDXRef-d2976bcab97137c4953b4a65003b4e61
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-ProfileUpdate/Default-ProfileUpdate.js
SPDXID: SPDXRef-87df94a600af825d4bb3367a622eff7c
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-ReAuthentication/Default-ReAuthentication.default.css
SPDXID: SPDXRef-aaa92f974ce242dce0642ffecfab762c
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-ReAuthentication/Default-ReAuthentication.js
SPDXID: SPDXRef-581d46a5b3aae8df733084165ad1e406
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLogin.default.css
SPDXID: SPDXRef-92151853d47d132747c4f7f569973854
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLogin.js
SPDXID: SPDXRef-c44d9e9505787b99d42ee079a381ed9a
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-Subscriptions/Default-Subscriptions.default.css
SPDXID: SPDXRef-cef6916059bae4d2383defe9aff1e20b
FileChecksum: SHA1: aed50886865309c53fc42fea9851a19fff110f52
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebScreenSets/Default-Subscriptions/Default-Subscriptions.js
SPDXID: SPDXRef-86dfd24fe6f1337cd5948fe7037675b1
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud B2B/Sites/cdc-accelerator.single-site.com/WebSdk/WebSdk.js
SPDXID: SPDXRef-96a84e75c3d940cd2b06a7534a2e14a4
FileChecksum: SHA1: b76b81bcdc0568003135b15b9ab621585683f635
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/Bruno.json
SPDXID: SPDXRef-f8e824e6c8b034cfc79f571ae606bc33
FileChecksum: SHA1: 4d42cb4a1d2479ac7e44bd1c14fc58387a1b3da9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/Dev CMS Portal.json
SPDXID: SPDXRef-7cb06b78ad27d53a461ba851979c879d
FileChecksum: SHA1: e1f657e7f8afc5f2c7759c276697ee2ebf124e62
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/H&M.json
SPDXID: SPDXRef-3f653d63cbb1f719cffd3d4af6426380
FileChecksum: SHA1: 6b7a7649029ba68bbece82163a937ece845d8bbd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/LGO_nonProd.json
SPDXID: SPDXRef-4b66f0234b87c754849398057f0e4273
FileChecksum: SHA1: cb88e76cacd19bc1ebf9fb00d57bc58bb3a2f7f6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/LGO_prod.json
SPDXID: SPDXRef-fd63477841822d6c6f51d312587752f9
FileChecksum: SHA1: dd81af12a3d1afa51036fd552393544d98a1e7ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/Luis_grupo.json
SPDXID: SPDXRef-0502109d1120d500b9c3d5c4c01cb077
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/NHS_UK.json
SPDXID: SPDXRef-1b2f6e09c8178f95ae283d92479e01ac
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/NHS_UK_purina.json
SPDXID: SPDXRef-67bb052b0d13ebbfd4b71e72362f0cf0
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/RuiTest Admin Permission Group.json
SPDXID: SPDXRef-7e3c035cdefc3e933bc00ce8bf9a4fdf
FileChecksum: SHA1: dbb3b9f98f3102bb212a310564b6a37352e2af6e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/RuiTest App Permission Group'.json
SPDXID: SPDXRef-a060d7dd402661c4e4d675ee4499f5d2
FileChecksum: SHA1: 42fcd60d79b03202c7abc7eb7c9064e195a98dbf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/StandardUser_dev.json
SPDXID: SPDXRef-ff3c0357666e77cbaa1fb5bcf40e353b
FileChecksum: SHA1: fde80b0755675f6c324becad4cd41e433a2dc95b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/StandardUser_prod.json
SPDXID: SPDXRef-2c97c795c0b920971c0f4a56dec30696
FileChecksum: SHA1: ba235d5b43ce8eac0499b7f4980ec4edb58841c8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/StandardUser_stag.json
SPDXID: SPDXRef-cc437c8ee234bd451b7f1f3c1fc695c1
FileChecksum: SHA1: 19e21f6413484176602c97561920f8a624d42ea8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/Test-permission-group-sprite-team.json
SPDXID: SPDXRef-a9f3b57c02ad25123529ce06f6eb319e
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/Test_permission-group-sprite-team-2.json
SPDXID: SPDXRef-6f4e72a3c4c6e75c21d8b474c58ff3de
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/Testing_permission_group.json
SPDXID: SPDXRef-e39bafeede4a9b75a881c9b86c52bde8
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/alexTestAdminPermissionGroup.json
SPDXID: SPDXRef-8af2a2b03f32b1041e6754459627f9c8
FileChecksum: SHA1: 926b7c255cb5d2f4f8ac02b4965259eb54888a01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/ato_poc_app.json
SPDXID: SPDXRef-8d617e664a51ba67f04f796d8c2e2302
FileChecksum: SHA1: e1f657e7f8afc5f2c7759c276697ee2ebf124e62
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/cdc_toolbox_e2e_test.json
SPDXID: SPDXRef-c9ee3942e7397ef0dd40f15e6b743734
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/cdc_toolkit_dataworkbench.json
SPDXID: SPDXRef-c87ec04a583b4de50263ddf6c6bcad99
FileChecksum: SHA1: c5aea708b0a51c0b7187c2b91e45ab8df487b2f0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/cpi.json
SPDXID: SPDXRef-702392b8b6d8b0bb5da7790c28e537b4
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/daniel_AdminGroup.json
SPDXID: SPDXRef-b9132322707a00160ad24d857714086e
FileChecksum: SHA1: 364834943f5b3391a0bef4bcd0584737e1baea4a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/daniel_flowbuilder_api.json
SPDXID: SPDXRef-25d888914dd66b914aa83b5b3b53d17c
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/daniel_testAppGroup.json
SPDXID: SPDXRef-787c8101890f6a8166e3614ac96c0310
FileChecksum: SHA1: 0b4d1070b0cdcce0ad2dce963294544ba848659f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/daniel_testGroup.json
SPDXID: SPDXRef-eecaa61e38364b6f682408d2bd2a2a2e
FileChecksum: SHA1: 871e509bbf379af138a4aaa4ae0b35df68cf0682
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/developers.json
SPDXID: SPDXRef-b22d6d8960bdec4b1cfc91c4d5898f26
FileChecksum: SHA1: 09a272223ffb39b17458178febba2752d17da851
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/duarteAuditTest.json
SPDXID: SPDXRef-3a7e450a8ba6a5ae85cd40d33534d343
FileChecksum: SHA1: 287aaac31a10836f50d2019f3f012f3fda36e417
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/e2e_testing.json
SPDXID: SPDXRef-525357544d8c4f084fab4820adbe8763
FileChecksum: SHA1: 67d1ec112ca695921f18a092e2fb9ac114c20f09
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/import_full_accounts_test.json
SPDXID: SPDXRef-77b55ea697ee9c49c873089c9a5c6575
FileChecksum: SHA1: 9a14643acaaca2ac13c91b9468bb63f5c4cc8507
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/integrator_admin_nonprod.json
SPDXID: SPDXRef-1d595728333a01314d570f746914b537
FileChecksum: SHA1: 90c4801b5054c5b79bd0e707dbcb261f19622869
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/integrator_admin_prod.json
SPDXID: SPDXRef-7f3e83125974c3bc13428ecf61052ac9
FileChecksum: SHA1: 137e0e5460d799d9e22f71086e1d150eb40d1032
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/integrator_nonprod.json
SPDXID: SPDXRef-12a83bc72322860c57f063da1bbfc756
FileChecksum: SHA1: 72733a6e21cf180d828c18cf9b3447899dc35f2a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/integrator_prod.json
SPDXID: SPDXRef-a7bc4c8ea61bb98acb2d429abdc109eb
FileChecksum: SHA1: 35d2baf5b66ef5206597852eed3ace666747caf3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/luis_group.json
SPDXID: SPDXRef-18432698f71b136fb47ef7058f75f09c
FileChecksum: SHA1: 64a366161db3c473b9ab917bf3207ff470864ec8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/luis_test_ACL.json
SPDXID: SPDXRef-ed307543804c1c8a44ad5ad39d340470
FileChecksum: SHA1: 5aa1934cf0e67829fb0a297247034bde7d194cf5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/meeting_group.json
SPDXID: SPDXRef-03e7d20670ae33c0fcb5c7b6ca987abd
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/newGroup.json
SPDXID: SPDXRef-39ce4036f17c07539ab01147f076bcde
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/personal_sites_admins.json
SPDXID: SPDXRef-9f628043abed1afeb0fbe7193f6d549d
FileChecksum: SHA1: 447a299683abc0e5f59fb1dc3497a52f03861536
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/prod.testNestle.json
SPDXID: SPDXRef-29d424b6cafaad949aeadf375e01e8b7
FileChecksum: SHA1: c7923f6117917a3d82c238f0d7be2ec3a2e3b332
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/ricNewPermissionGroup.json
SPDXID: SPDXRef-1e42e6f42e432872e6a9d2be5cafde8e
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/ricTestAdminPermissionGroup.json
SPDXID: SPDXRef-e241a257d039e679a028df5fc0dde35b
FileChecksum: SHA1: 0fd824fd625731714f4042309233216ca5d7ac2f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/ricardo_group.json
SPDXID: SPDXRef-d7f8665ce50f6557d828fa53c365eced
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/std_dev.parent.jovenesnestle.com.ve.json
SPDXID: SPDXRef-c790328e4ea80aecffe3db0405db368b
FileChecksum: SHA1: fde80b0755675f6c324becad4cd41e433a2dc95b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/teresa_pg.json
SPDXID: SPDXRef-b508bb537e4c82295eb4bc4752ca58c8
FileChecksum: SHA1: b966b3ec7003cee63c8de9d8c89c623744ce0360
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/teresa_testGroup1.json
SPDXID: SPDXRef-835836031ea8f9c8a2230832de8e1ac6
FileChecksum: SHA1: 8f7f1f7580ae99a2932e735c9c68f97528ed84cc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/teresa_testGroup2.json
SPDXID: SPDXRef-97e44a19faa68c3f004c3e5f9c6cb8ac
FileChecksum: SHA1: e1451d88e33f339479e18cc954321445e48ba6c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/test.json
SPDXID: SPDXRef-29eba3be25c5ddfc6fe45c558055ab25
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testDaniel_NestleUserRoles.json
SPDXID: SPDXRef-85efffdddb56d9acfc197a6f5744f62e
FileChecksum: SHA1: cb88e76cacd19bc1ebf9fb00d57bc58bb3a2f7f6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testGroup_issue2.json
SPDXID: SPDXRef-0d74c70cee0b55eba533baebe5407f5c
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testPermssionGroupDaniel.json
SPDXID: SPDXRef-ecac3ee66709fa4c9958dc5c0be5de93
FileChecksum: SHA1: b09cad034d13dd561370bdf5bc1f92a11b7292c0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/test_Teresa.json
SPDXID: SPDXRef-93895098d1526ca29c1c8595a1665adf
FileChecksum: SHA1: cc04b1b15c3ce9475b5466ae99e9834de2725e8e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/teste.json
SPDXID: SPDXRef-3c7e0b27d37c8686d1e72673423ed49a
FileChecksum: SHA1: b966b3ec7003cee63c8de9d8c89c623744ce0360
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testing tool.json
SPDXID: SPDXRef-2cca8f16eca88464a3f165b81d2ac96f
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testing.json
SPDXID: SPDXRef-848b61bcdd57ad812de96b20385b2fa6
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testing_new_code.json
SPDXID: SPDXRef-ece31c6a1fac610c787e5ac84aa8c076
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testing_slack.json
SPDXID: SPDXRef-5f31838c3baee037f5c7199af024e661
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/testing_tool_group.json
SPDXID: SPDXRef-7cc1c0f9b4c0e8649f2af4ad9dfe2b62
FileChecksum: SHA1: d55964e1fd3f0509f65c6107c44cdd28581c56a8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/tj_NHS_ES.json
SPDXID: SPDXRef-f0c1139268b827a1de85a12b3d570a1c
FileChecksum: SHA1: b966b3ec7003cee63c8de9d8c89c623744ce0360
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/ACL/tj_NHS_ES22.json
SPDXID: SPDXRef-8e599da9a9b540581514feb381d8c8ff
FileChecksum: SHA1: b966b3ec7003cee63c8de9d8c89c623744ce0360
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/PermissionGroups/permissionGroups.json
SPDXID: SPDXRef-5bdeee792b128f7e921bfc1a47263bb3
FileChecksum: SHA1: 37f2ed203d9bb43bf624cfea415c05d06fdb34b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/codeVerification/en.json
SPDXID: SPDXRef-893fe25e8c656507fe4295c3f932d2d1
FileChecksum: SHA1: 742ad8c2e1ebbace1db2218817330dd3222a5a15
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/confirmationEmailTemplates/en.json
SPDXID: SPDXRef-55b075fc647c4d0e25943e685255396c
FileChecksum: SHA1: 436b535abdd4c9bba856643cee4c374933aa5e51
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/confirmationEmailTemplates/es-mx.json
SPDXID: SPDXRef-9851ba7179a68a738924c2ffde5fa45a
FileChecksum: SHA1: b4261788d583337f22fc55da4a5afcdc1a9e5529
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/confirmationEmailTemplates/es.json
SPDXID: SPDXRef-ac300d88c033c998e82bd362a9d92c0e
FileChecksum: SHA1: b4261788d583337f22fc55da4a5afcdc1a9e5529
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/ar.json
SPDXID: SPDXRef-6971d05d897f3b71aab38e936aa8bd88
FileChecksum: SHA1: dd17708847205e1cb35ee2180cd923c9f84d6791
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/bg.json
SPDXID: SPDXRef-784f0c6caf9da2eac04d7908fb440f16
FileChecksum: SHA1: d75bf658e9e5faa5f38aecf03a0eef51ddd6d38f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/ca.json
SPDXID: SPDXRef-d80e4dd4c43c643c28985705b201f1dd
FileChecksum: SHA1: 820c6955679a5cc17442d045d288f63f3edaeb61
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/cs.json
SPDXID: SPDXRef-b56e9fe6685fb6b9121dbeea36be7496
FileChecksum: SHA1: 1b5985d573af03b22e3727f60201a0bcdf7a169b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/da.json
SPDXID: SPDXRef-dcd329c2e680fa356e638e9b640dfaaf
FileChecksum: SHA1: 047824839602a29119aa898991559627f70e5aca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/de-inf.json
SPDXID: SPDXRef-ae541e88161b9bdbce3880ed93914121
FileChecksum: SHA1: b9012e6a35607ff8a97a64800f00959f40b91b30
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/de.json
SPDXID: SPDXRef-c03bfa1e9f912199d325f11da82cc90e
FileChecksum: SHA1: 34326ec200dc875c4742f5225b96c73c8b61b50f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/el.json
SPDXID: SPDXRef-e1bcc7ae353a980280a62d83f1082c1d
FileChecksum: SHA1: fb83bd4ccaa19a1593cabaa41a4de5b82e2fbfde
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/en.json
SPDXID: SPDXRef-1fece4d97b77304d4de1589959f2cc6e
FileChecksum: SHA1: cb73bf0f3991ad3e0aaa448bf40f303985147576
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/es-inf.json
SPDXID: SPDXRef-03c9d3b4657de1a2d2a2b8d714116b8a
FileChecksum: SHA1: e9521836471cb137dfa881b46ebe74ccfec6ec2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/es-mx.json
SPDXID: SPDXRef-d2329c8b366a8b367056c8bb4fda15e2
FileChecksum: SHA1: e9521836471cb137dfa881b46ebe74ccfec6ec2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/es.json
SPDXID: SPDXRef-cd1652f676a17b314a58003467f785fe
FileChecksum: SHA1: c85559b0e45d295a7fd605212a2989cd51365bf9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/fa.json
SPDXID: SPDXRef-b79a88895024c9778c1c2179f300f0e0
FileChecksum: SHA1: d2fdc11fb21f34fc6d92a7e90e24adbf8eb99d08
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/fi.json
SPDXID: SPDXRef-89d4a9256feab76479bd0aeebeb41d22
FileChecksum: SHA1: 12ee28c5fc9094bc7007deda2d3cb2d677aab72a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/fr-inf.json
SPDXID: SPDXRef-1f0b2693ee4cec776f5c96f4e3389f15
FileChecksum: SHA1: ca138850a8b08e3e9a3209a4175105ba1fa2663a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/fr.json
SPDXID: SPDXRef-2952b45292096c9da0f6d8d3a92be232
FileChecksum: SHA1: 63048feb3f105a7898cbbab7a071b86fbf4c7cb0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/he.json
SPDXID: SPDXRef-0e237a02c55bfeef1d2ff05a5f74623c
FileChecksum: SHA1: d38166b06a8da1ae94413458bd5abb089a467c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/hr.json
SPDXID: SPDXRef-00e1a144c88888ede1715252da9d3fba
FileChecksum: SHA1: b86799735acd72cd9194b514a155ff0762bbfd20
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/hu.json
SPDXID: SPDXRef-4a9d6e80f53bac4a9623b2388acf4000
FileChecksum: SHA1: 88c0fffdbdbd265f357504ff5b18acf9431259b0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/id.json
SPDXID: SPDXRef-dc487076390a0303fb75713afcdcf80e
FileChecksum: SHA1: 736d86728356c6fd8f9e6634e6d5799553d6394f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/it.json
SPDXID: SPDXRef-98e15acc8e6cf04a2c286bd551c51b9d
FileChecksum: SHA1: c35cde28fc2e33d08bb5ff4cb71a1d342125c8e2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/ja.json
SPDXID: SPDXRef-6b28cb20be565162cf0c70f2d17f57da
FileChecksum: SHA1: b546a8cbbb5d2e9f97cdb1698c13df3537054376
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/ko.json
SPDXID: SPDXRef-9839965a9cd91386f2f0f97838559412
FileChecksum: SHA1: 6ac37fb0779bd26e4b94db73a605bd9d2a81712d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/ms.json
SPDXID: SPDXRef-fb9612aa7ead62c8bfc22561d683f180
FileChecksum: SHA1: b172628e6673a0f874e2e94caa78094bfc6d3237
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/nl-inf.json
SPDXID: SPDXRef-1e521fd9983374a8ced7a05ebb839990
FileChecksum: SHA1: 5de6f1e81b52d1a8e3ba08f2d05d33cf85d73613
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/nl.json
SPDXID: SPDXRef-2d193773b5ed91832b4de63ee14b3d21
FileChecksum: SHA1: 178fb8f20c4421df2010114ec70d7e4e31d0f26c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/no.json
SPDXID: SPDXRef-4ef5fd824ecd4238485e3bddd298eadd
FileChecksum: SHA1: cc4e233180632d2a884879ae2c9386f1fef4d058
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/pl.json
SPDXID: SPDXRef-22e441eba4ab8a48bb6aefe8a770a0c6
FileChecksum: SHA1: b1d3546ebc00b780fa6a6e7d70a0f7d127b29f3e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/pt-br.json
SPDXID: SPDXRef-63539f2f6a9ded108174a9b65616b2d5
FileChecksum: SHA1: a409842d25d6b4786dcf97d1f1fa3383388564f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/pt.json
SPDXID: SPDXRef-4035264240987977f4afcc2a1cc5c878
FileChecksum: SHA1: a409842d25d6b4786dcf97d1f1fa3383388564f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/ro.json
SPDXID: SPDXRef-3e60db29c4b4a738e98ac3662efe781d
FileChecksum: SHA1: 7f6e834381dfefb07d1aa3061294b74cf42b52a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/ru.json
SPDXID: SPDXRef-14211e1e3d486e121c9a97cf5612d327
FileChecksum: SHA1: d161c15656021d15ac2cf90e1fa697d8ef3a3e86
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/sk.json
SPDXID: SPDXRef-1b2147322f6c18c1b038db43c616c670
FileChecksum: SHA1: 99c6109137a591b7582d76cacf5633096332f72b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/sl.json
SPDXID: SPDXRef-f6899152173fa38b55cdcce0b202ee40
FileChecksum: SHA1: 600a017768f26104c1372c9e4e2d3d9fe1b93050
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/sr.json
SPDXID: SPDXRef-47be7e5e6a645cbe0695a1ca76b15397
FileChecksum: SHA1: 0b72795a6c47903cdfe65699e8a626d3a02a95a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/sv.json
SPDXID: SPDXRef-2bda87d6a65a91dc5793fbe0f7e6bdde
FileChecksum: SHA1: a4566fd182bb1fa2d7721398f6d0d1229d18b6a2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/th.json
SPDXID: SPDXRef-88faea5e40407911ffade2eb1f5e0f8a
FileChecksum: SHA1: ad1368a45c9208e8d24079e58a8b85b5af909415
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/tl.json
SPDXID: SPDXRef-9f5b2dcde7a2b2a7219f4e56d938fb3c
FileChecksum: SHA1: 669c97f7fe9a988da22eab10637c3bd255d6d3a3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/tr.json
SPDXID: SPDXRef-ce8bec45aa136c61c6c67c9829c82ac5
FileChecksum: SHA1: 4506126719ba96cbba180d257314da7e1771aa3b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/uk.json
SPDXID: SPDXRef-2ac8efe914f8dc4a591c8a71c6aac254
FileChecksum: SHA1: b06f1883c8dce647e5cbbeee58fdd9a7d41a50a5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/vi.json
SPDXID: SPDXRef-15d1e92aab329206f4b7c4e18613225e
FileChecksum: SHA1: 10a45f408ecd2bc039a8039a844867b2deea29d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/zh-cn.json
SPDXID: SPDXRef-853d843fa9f47ab16f5141ade535a7e5
FileChecksum: SHA1: 927938144730c38ed2f1168e87ce8b1fea5c243d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/zh-hk.json
SPDXID: SPDXRef-651217cc48d1d8563348cc8ac52832da
FileChecksum: SHA1: 927938144730c38ed2f1168e87ce8b1fea5c243d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/doubleOptIn/zh-tw.json
SPDXID: SPDXRef-3d743fcbc1561d35788e1baa1d85aaac
FileChecksum: SHA1: 927938144730c38ed2f1168e87ce8b1fea5c243d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/emailVerification/en.json
SPDXID: SPDXRef-312a18fa5d8fa08262022db41fd44ea5
FileChecksum: SHA1: 0dc5b029668afd7ea63b054ed71b58fbd98d54d2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/impossibleTraveler/en.json
SPDXID: SPDXRef-d98f9d771cde34308661665e0811bffa
FileChecksum: SHA1: f016060461d766660d8be7e8095a9bd014fd9461
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/magicLink/en.json
SPDXID: SPDXRef-3cfbde1b238b135859db5e3c63257309
FileChecksum: SHA1: e5901e8d2e64b3014ca80149a18297632360f6f1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/passwordReset/en.json
SPDXID: SPDXRef-a3020d960573d78a417166c0991e2bb1
FileChecksum: SHA1: d2cb7a462984d097c48e10025ec74817a7bba0e2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/passwordResetNotification/en.json
SPDXID: SPDXRef-774605d70bb6de31456389a2bb6dfedf
FileChecksum: SHA1: 3984e1c566e4ab000508e8927e42fafd260d2bae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/preferencesCenter/en.json
SPDXID: SPDXRef-438802f8e0df4b831f62dd12fdad7a6a
FileChecksum: SHA1: ebda740524bb3954bd16f6cdbc34f9ef88433402
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/twoFactorAuth/en.json
SPDXID: SPDXRef-37bc175329566b86c751d43a31f373f9
FileChecksum: SHA1: 9a94994051029a8610e95b83042fc99b9f74d9f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/locales/unknownLocationNotification/en.json
SPDXID: SPDXRef-1e3d2443caa3ba7ba31113b28b9816de
FileChecksum: SHA1: 5706d1207dc40d28f5f7baaff72a4e67766712cc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/codeVerification.html
SPDXID: SPDXRef-151afd7a19e45d729b9a4eb9838eb5b5
FileChecksum: SHA1: 6a3b44353772be89320d104e6d261a7cdb069836
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/confirmationEmailTemplates.html
SPDXID: SPDXRef-e0cba6eea422e1fa98848046d72359df
FileChecksum: SHA1: 98e3653f1beaa2eae992a0dfb924ba3f303abc20
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/doubleOptIn.html
SPDXID: SPDXRef-0d91328e3b7e4f484b335695fd2f4ea2
FileChecksum: SHA1: da6eebe85a4178a31ef5c329eb026aa908992f65
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/emailVerification.html
SPDXID: SPDXRef-cc67dd17a2233f0acfa04ed7dfd0b5f9
FileChecksum: SHA1: dd6819ceaad02a47526a0cb87c9c58ece1ccaa7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/impossibleTraveler.html
SPDXID: SPDXRef-d395138349173ae1fa1974f05585d451
FileChecksum: SHA1: 72e4ca092bc837a88e4b3b298b00fc6ee577e9ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/magicLink.html
SPDXID: SPDXRef-4d53875d6382c27164e793c660fa3d28
FileChecksum: SHA1: 7e05a68744062831a309efbe20621522927248c0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/passwordReset.html
SPDXID: SPDXRef-d640af158be9aaaa68c503968b103847
FileChecksum: SHA1: e535892db5e7c73374b280d81a52b13bff890349
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/passwordResetNotification.html
SPDXID: SPDXRef-a96a4fd916e2974e23a5d8a92a36b272
FileChecksum: SHA1: 3ec3480fa1851dcbc878d84884140d4306d3a05c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/preferencesCenter.html
SPDXID: SPDXRef-83112838e977a1a76764eb1e904cc68a
FileChecksum: SHA1: e545bd194fc1512d22ed403cd7dac4b39dd1861c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/twoFactorAuth.html
SPDXID: SPDXRef-df61fbd9ed6ad19465d4cc2bc2348b3c
FileChecksum: SHA1: 62845fab44325ff226e21846ab317f906c01a95c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/EmailTemplates/templates/unknownLocationNotification.html
SPDXID: SPDXRef-464c7c23dd8339679263057021a58b60
FileChecksum: SHA1: 3fccf2f6a3e9b967024fcd7a7f82d5b8997601f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/Policies/policies.json
SPDXID: SPDXRef-e2f194670d78f17e9aae91a222712585
FileChecksum: SHA1: 0778a3555aab76db99e517fa7488484c8857622d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/Schema/data.json
SPDXID: SPDXRef-97fb32678a4af64ed403494022153c2f
FileChecksum: SHA1: e802eeb533e39046ea478147d9eb8085e9c90122
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/Schema/profile.json
SPDXID: SPDXRef-176003d8266f2ec0fa99e078f259ba1b
FileChecksum: SHA1: e0f04543b257141fccf8d0b9b00712e4e39e84e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/Schema/subscriptions.json
SPDXID: SPDXRef-957ea86ac205b74380700dc6e4c9f73e
FileChecksum: SHA1: bc24811ef4cc5b5bd16140cd77162ad476509235
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/ar.txt
SPDXID: SPDXRef-adc22f59e354eb3a626b4d18232f09f1
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/br.txt
SPDXID: SPDXRef-06efa99625b51dedf65989efe7c399df
FileChecksum: SHA1: 1f670b82d7be8ae30d4edc90c25743fac61b5b2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/ca.txt
SPDXID: SPDXRef-a725e77739e2a0db92c9e3ae2b61d962
FileChecksum: SHA1: e3c6f406fcbf2540ae6233027427ae38846fc43a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/da.txt
SPDXID: SPDXRef-dde550c10bb1ef3a0a6cf8e5abe0944d
FileChecksum: SHA1: 10679c7e3044697f9975e8b8b5d64cfb32b35ee8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/de.txt
SPDXID: SPDXRef-17ea3fe44105068658a6bb8335fb14a3
FileChecksum: SHA1: 91c53d0c01314a9907663139c9580f4c06ba6a4b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/el.txt
SPDXID: SPDXRef-b1ecc5b72ae3417b4b4777430dfc8d2f
FileChecksum: SHA1: 9928b58e2888bc64c89e6ff7970ac6e8e678b4a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/en.default.txt
SPDXID: SPDXRef-b3a77bceb1d353f7be3db7c35d9d4d72
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/es-mx.txt
SPDXID: SPDXRef-0c9bcd7403ba496ac6169ac7b8cb2518
FileChecksum: SHA1: f33a0b1292b71ca5980ae6750471504a7a6b3f50
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/es.txt
SPDXID: SPDXRef-3399858878928de19f63f499c7e211c0
FileChecksum: SHA1: 59290f75763e497bb542fcdf0bb1041ca31178ee
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/fi.txt
SPDXID: SPDXRef-5c1deaaa2b23d66caf43de83303e4069
FileChecksum: SHA1: e87be7c0f6de3f1230a2eb0bbda9c50510e4a3b4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/fr.txt
SPDXID: SPDXRef-27a2bb558dffee35feceb9b5dbc0d0ac
FileChecksum: SHA1: 992f7e60593cf0d2c099443ea30c01faee1a8ed1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/he.txt
SPDXID: SPDXRef-1ea9fda31b8ad9bd43092d414c24bbb0
FileChecksum: SHA1: 9a62c43bec668a3bb5dcc091d4dbf10024e41a45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/hi.txt
SPDXID: SPDXRef-667f9573d616a2bd725db9376e3ad9ad
FileChecksum: SHA1: 9d5d5525e077a83de9e3ddc65000fd6627e69903
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/hr.txt
SPDXID: SPDXRef-54a8fec91de9c7e1933e4459cc198cc2
FileChecksum: SHA1: b5e7d6d2e3d5de5cebe4b9f9372c31f8cd3a2621
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/hu.txt
SPDXID: SPDXRef-472a216fbcc5726f11f5789ad3b0ca4e
FileChecksum: SHA1: f69dc309927e549b29ba03ba53660ac5a16eba43
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/id.txt
SPDXID: SPDXRef-905379e59b7e93e16448665fc0664240
FileChecksum: SHA1: ba77b206440651c241a5596b446dd2549e7ae66d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/it.txt
SPDXID: SPDXRef-068597ae0e3160e56b03812bc3fc0622
FileChecksum: SHA1: 9feb53eda360489ea494072f6fd3cbdd59dbbe00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/ja.txt
SPDXID: SPDXRef-e34f6df78b4be86961951f1e12ccf881
FileChecksum: SHA1: 69ebc160f79dea799f2214dcd5b9a1198d0dbf7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/kn.txt
SPDXID: SPDXRef-021136f71b0d36b767393c6da1bf8431
FileChecksum: SHA1: 0d744641f0a5950dea88147e078216644c88ed00
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/ko.txt
SPDXID: SPDXRef-d0fc41cd00ca5267a509a041b3e3f5b4
FileChecksum: SHA1: 67de58c8558aec440547888e23919ca2faab81d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/mr.txt
SPDXID: SPDXRef-b6a4c3a707b8fc15fdbd03d440bc7c81
FileChecksum: SHA1: c3a7ec54c81b77f4ad87193d82326242a762f37e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/ms.txt
SPDXID: SPDXRef-117530158b44355ae25f1583ae2c6400
FileChecksum: SHA1: af9c12f43bb928efe89aa8dc846a03a6969bd347
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/nl.txt
SPDXID: SPDXRef-70f3441899d4ac83a42a9e4c03d2bf14
FileChecksum: SHA1: c9b48e2635184e93a1ceffff16ddef5b768fddd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/pl.txt
SPDXID: SPDXRef-7f8ea979a012cb6bf2889b1928eb46f4
FileChecksum: SHA1: ebaa1163bf4646fb3f4dd989925fd9edc0638ca7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/pt-br.txt
SPDXID: SPDXRef-b280230f5c396ba36a03db79b2e71122
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/pt.txt
SPDXID: SPDXRef-93aba0cf95c5008361e376bf072738c0
FileChecksum: SHA1: 936a724242168bdfe54d179654c7874b363e24ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/ro.txt
SPDXID: SPDXRef-a54412e2102df6dbaff115df646c3fe8
FileChecksum: SHA1: 11aa5d5b6f1b7423883c8114286ca7ab29577799
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/ru.txt
SPDXID: SPDXRef-02e749f19f2ff927199b8cce9415356e
FileChecksum: SHA1: c8b6fd22ba030ab035f299a9d2a349bc98541e01
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/sk.txt
SPDXID: SPDXRef-1c01ed21be15dd75f131459ef01f0017
FileChecksum: SHA1: 680c12ca4f1064d648bc7b16d9e12800e0ac2ebe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/sl.txt
SPDXID: SPDXRef-b904d8526f448fe15da57094749b24d0
FileChecksum: SHA1: 7091e607c42bbc780e95735f93dc90dd375cda54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/sr.txt
SPDXID: SPDXRef-2ca3988ac077ba3d4ee6beee7b023049
FileChecksum: SHA1: b0f3f653268f63b29de7874cc008bb1714fb72c1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/sv.txt
SPDXID: SPDXRef-1dbce69f925c31e985fe295d95a7b074
FileChecksum: SHA1: a82702b05038460dffdb8d775da70989bdbf7092
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/th.txt
SPDXID: SPDXRef-fa4ee149d03ed885dc30803003c3f5a3
FileChecksum: SHA1: d69a51dd8c9324a5e3fdf8c8410eb54974a7bde3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/tl.txt
SPDXID: SPDXRef-9930bc0275d2e02e09b285375d16a1d2
FileChecksum: SHA1: 43dd0c41d3cfb7c99ffa5555dbdab3cb766711a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/tr.txt
SPDXID: SPDXRef-d1ef978600ae8437c5a4f1da89e76e3b
FileChecksum: SHA1: 62a73298dea9afb490b38d458dc85e5ae1087623
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/uk.txt
SPDXID: SPDXRef-adba3b340e8bfa2094fd927db516a09a
FileChecksum: SHA1: 3d3b45a8ab1679ee1d0902ea1c89fb2fe26b3752
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/vi.txt
SPDXID: SPDXRef-abb4959e8682bb2ce4614dc5a3af018f
FileChecksum: SHA1: 6447bf95e57bb6ae348ab45cb062f62444f3caf6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-5674187f096c42fa37ecec2f1e3e3bb1
FileChecksum: SHA1: f487a871d30aeeb6b2501be69ee3063579b5a555
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/zh-hk.txt
SPDXID: SPDXRef-998a99219d53f8be4a468f66548d4045
FileChecksum: SHA1: f49a69f8baf863e79aa13897dac0ef3b67ddaf76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-3f4c7dc858bb9308a082df93ab60dea9
FileChecksum: SHA1: 4dd351f32bcbab6f78040c7c779c696cb11381fa
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/otp/templatesPerCountryCode/351/pt.default.txt
SPDXID: SPDXRef-2df5555c818676e0ae11cae358d3d617
FileChecksum: SHA1: cc6c628b3c160a683d3da3b599112ae7a7a374e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/ar.txt
SPDXID: SPDXRef-10178644967739ffc509fd9279abcea0
FileChecksum: SHA1: b0ecae93a97fb04a542b0528004640a4dd55e575
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/br.txt
SPDXID: SPDXRef-da108f619a7a9cc8b0fefc8e4c236ff5
FileChecksum: SHA1: 93547294f4f227dfd80bb87f522cfeff78597518
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/ca.txt
SPDXID: SPDXRef-020b137686e82838760eacf12be4928e
FileChecksum: SHA1: 89eabe7994199018dd62178f6602931d5f01c0e1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/cs.txt
SPDXID: SPDXRef-001bf034c9ed64fefa04b57ea6dbc83a
FileChecksum: SHA1: 54e1fa0cf5024d4b5dc0ae5f631e222f18d08b1e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/da.txt
SPDXID: SPDXRef-bf6e7bc888c07037bcc324e1fcfba9a5
FileChecksum: SHA1: d192bd9a6f73cee7265dcc136a99593ca355318a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/de.txt
SPDXID: SPDXRef-bdf113f402a08a8dbbc30964c9b35ed8
FileChecksum: SHA1: 89005ede0744297022e258d7d3f86ca0ebb176db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/el.txt
SPDXID: SPDXRef-de5301e978030e24b4c53585a853db6e
FileChecksum: SHA1: f65b091d649ac2d354a6e071327b5e2764d7c569
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/en.default.txt
SPDXID: SPDXRef-2b3e09e2559a66ff11dba90c6bc99c1d
FileChecksum: SHA1: 9da5d47496dd0dd03b358df3fa5f49c362950465
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/es-mx.txt
SPDXID: SPDXRef-fd96becba27026b46ada88e879adaeca
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/es.txt
SPDXID: SPDXRef-e37d7d568770cd0bb20fec007da201bc
FileChecksum: SHA1: 998fa6375944e49273b5ad69f21c4c21eb385d6a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/fa.txt
SPDXID: SPDXRef-cfbae7ee6060a749a41be27c74031d97
FileChecksum: SHA1: 08d1829e38be12d6f8bc96c913d57a35f2c6205f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/fi.txt
SPDXID: SPDXRef-0bcc79bc10cf0cd6a68665951ffced9c
FileChecksum: SHA1: c6a6d3fd3437bf0cc916ad1cd2a7994e385367c7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/fr.txt
SPDXID: SPDXRef-b7c16858a6b5bf6f42100e72dcd162b8
FileChecksum: SHA1: 1c5a3dc5de362cbf121d0b382c32393249340717
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/he.txt
SPDXID: SPDXRef-664b377cd0844e3d7a1e7a9d3a389a1d
FileChecksum: SHA1: e3a18c1c521f09463a9b779792fccd2aac6721b5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/hi.txt
SPDXID: SPDXRef-f30f5d33f8ff56b3058f46a819d2448d
FileChecksum: SHA1: e230f4d7dde07d907dc21fa3314839f93d26d5bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/hr.txt
SPDXID: SPDXRef-53961412956bd86fbf628b526780476d
FileChecksum: SHA1: 47fdb8cec96507a99b2494f87351133ed5445403
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/hu.txt
SPDXID: SPDXRef-d11a5d9e464498ba6d3cadf758d19172
FileChecksum: SHA1: 8fb8b6cebefdae5e519435945f02d403d7710e38
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/id.txt
SPDXID: SPDXRef-2a2ae0eb28cd84a70a70b2d6ff157719
FileChecksum: SHA1: 57e66fe11e3cecbf40c288fa3e1f006eb5178d1d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/it.txt
SPDXID: SPDXRef-6fe2cf9c1ff5c715e56da2d10efc03ec
FileChecksum: SHA1: 595c0427e419cd2a8ad552b0d3597bf15ed80866
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/ja.txt
SPDXID: SPDXRef-9bf0cad24141de6f645cc3d4515b0156
FileChecksum: SHA1: fc1cee8012d5a8ba673c6ba627d5ae3c5003e28a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/kn.txt
SPDXID: SPDXRef-b45b16d0d8875f3d2b0face788cb35ca
FileChecksum: SHA1: 39bb79e6b792685ba684fd0810fe2d702b2ddaaf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/ko.txt
SPDXID: SPDXRef-3b5ad7ef7fdff47bc05ddf1d14571552
FileChecksum: SHA1: b53780948f821eb4e4760fffe88c0dd9a7b00bbf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/mr.txt
SPDXID: SPDXRef-0b5e4b4ab1e8cbb6e0c7d35575a3fa75
FileChecksum: SHA1: c961d8a63234c098a2cc2e463924e9b1e8c24332
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/ms.txt
SPDXID: SPDXRef-f2a5e59af092963542dcfc9d335ff298
FileChecksum: SHA1: 65e15950004b655982dd8b3b62cb739e9a7b5929
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/nl.txt
SPDXID: SPDXRef-1e2c4d50f9b8a320a796459de28b4406
FileChecksum: SHA1: f242d96952bfe78400941287e4756ab826151516
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/no.txt
SPDXID: SPDXRef-68f32c4778938edd50a24b64b051d9c7
FileChecksum: SHA1: 1847defde681acd9173a38a134a29e0b8068ab8c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/pl.txt
SPDXID: SPDXRef-4196b2289f3ccadb486c58f5e4c890ef
FileChecksum: SHA1: d7bebbc1d664a9c71e7e28f6944620530ed14470
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/pt-br.txt
SPDXID: SPDXRef-a7cb1dd0b6f28faecf45c04f9b207b52
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/pt.txt
SPDXID: SPDXRef-b3a8838c85f0f273a03a1cc197dbdd0d
FileChecksum: SHA1: 65e4c83e3825a79d940ecc308ed2a8e41a8ba218
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/ro.txt
SPDXID: SPDXRef-5a50c51582d9611e4afcd2634807262d
FileChecksum: SHA1: 83f2bffd315e46e0bb0b81eb7b9f591a650a155e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/ru.txt
SPDXID: SPDXRef-e56e213c3a6e137c106a7ff877d8baf2
FileChecksum: SHA1: a5e603686a9de29bfbf43be52c85bc41ceb1a229
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/sk.txt
SPDXID: SPDXRef-e51a223e19e7ec687dcc55a335f700f1
FileChecksum: SHA1: fb4ce20588545fb1f5aebc169aa3cbc554c1a728
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/sl.txt
SPDXID: SPDXRef-505b15202bf292b0fc2dd3a0cee3a475
FileChecksum: SHA1: a819534da5b669654f4ff98cb7740b22805766da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/sr.txt
SPDXID: SPDXRef-65f7730be6b0cbed018136505385cd53
FileChecksum: SHA1: 42f16e28cc66bccdb1f373f50b0c5e66deb2a521
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/sv.txt
SPDXID: SPDXRef-58fb85621572c684a5645fba9888226b
FileChecksum: SHA1: f13f86655bcb206bc09c56668b8c69c57c66d580
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/th.txt
SPDXID: SPDXRef-4f7febd815b7607ffc28fec0ff8a7076
FileChecksum: SHA1: 10fd2c42a5907cb67ecaab1db7b10d20bc2f655b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/tl.txt
SPDXID: SPDXRef-d86220f17c6fa3f78815ee8543a0a2db
FileChecksum: SHA1: 88fc71cc09fd0e8ed4f9c2e5050e53ea860d5414
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/tr.txt
SPDXID: SPDXRef-bb0080974cda7f2b7481c6623b7988c1
FileChecksum: SHA1: c05136cfcc00672ba8c5465ee6d71412374cb339
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/uk.txt
SPDXID: SPDXRef-4d5b8c923a9dcd3f9a97af92a40126be
FileChecksum: SHA1: 108c4b7783faae3075d87a7a11c39128c7304460
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/vi.txt
SPDXID: SPDXRef-c2def7fd7f41b72b754bceab3382ea2e
FileChecksum: SHA1: fe2e61267b77c6c33b1ec5d2ff6ca142929ae6b8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/yyef.txt
SPDXID: SPDXRef-18c7d09ca62c6e60fe65ae33e6a64ed7
FileChecksum: SHA1: 83a30d6e2526aa9384634a30d7cc239c196991f2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/zh-cn.txt
SPDXID: SPDXRef-d38e3dbfb512252d65a1faad6200eb6a
FileChecksum: SHA1: 5cc27e86e9e4b21104783430ab2c8e2425c81704
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/globalTemplates/zh-tw.txt
SPDXID: SPDXRef-14143f74d9cc78f419840ce5835a4a31
FileChecksum: SHA1: 936b9a70b043bbfca4a19a6fff1901d51a43baf7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/SmsTemplates/tfa/templatesPerCountryCode/351/pt.default.txt
SPDXID: SPDXRef-a97dd2d7bfcbf961e15c37ad4a7626f6
FileChecksum: SHA1: 02de631c02ae1a5afc7cf9615132e2544f3c17b6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-LinkAccounts/Default-LinkAccounts.default.css
SPDXID: SPDXRef-b8c2acde0da85480466a7aa4b8f282c4
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-LinkAccounts/Default-LinkAccounts.js
SPDXID: SPDXRef-801b47953c546e82967815d27ea91e4c
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-LiteRegistration/Default-LiteRegistration.default.css
SPDXID: SPDXRef-4ec06970d68a31e73406329f3384bf5c
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-LiteRegistration/Default-LiteRegistration.js
SPDXID: SPDXRef-338a05fb8b2dee5c276de4b0d966cb72
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-OrganizationRegistration/Default-OrganizationRegistration.default.css
SPDXID: SPDXRef-893be0a56c280cbdf1d456b897277fb5
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-OrganizationRegistration/Default-OrganizationRegistration.js
SPDXID: SPDXRef-47064496049a5a0b87b750d1ecc9c9f6
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-PasswordlessLogin/Default-PasswordlessLogin.default.css
SPDXID: SPDXRef-8ab56f8a1b2cc9342fb6f4eaec3f8941
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-PasswordlessLogin/Default-PasswordlessLogin.js
SPDXID: SPDXRef-a6e3a2038c4221415b46e9a359d47764
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-ProfileUpdate/Default-ProfileUpdate.default.css
SPDXID: SPDXRef-8e10d292f52177630e3ba9deca681280
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-ProfileUpdate/Default-ProfileUpdate.js
SPDXID: SPDXRef-fbf2c2099bf81f714d522d3f771d09fe
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-ReAuthentication/Default-ReAuthentication.default.css
SPDXID: SPDXRef-d4114ac40a5a3672ac05c52eafcb0e7c
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-ReAuthentication/Default-ReAuthentication.js
SPDXID: SPDXRef-e2e2e04a9ad65b46d0cd8b82e5b6aa45
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLogin.custom.css
SPDXID: SPDXRef-0c3125a5739c067308da076995df1b88
FileChecksum: SHA1: dee4d9bc75390e05ebf64bba0daa73fe436e4f39
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLogin.default.css
SPDXID: SPDXRef-6e9aab5a3705c3d11b5afe5f809239d7
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLogin.js
SPDXID: SPDXRef-e3d796cdf37fcdb0d4b0c90f0bd79bf7
FileChecksum: SHA1: 4a2fd8147a22447d9fc6c622266c79b9cd4318e4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-RegistrationLogin/Default-RegistrationLoginOnAfterScreenLoad.js
SPDXID: SPDXRef-9196f4982fd8f21bb830511b0bd9702b
FileChecksum: SHA1: 8b33d2b5e195e6d6bb2834b301b17167aeb268ba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-Subscriptions/Default-Subscriptions.default.css
SPDXID: SPDXRef-c2691971ce20df1bb872cb2a1e226bf7
FileChecksum: SHA1: 55e94c0a1d0bcae9452a0e9a03768128c14a0c99
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/Default-Subscriptions/Default-Subscriptions.js
SPDXID: SPDXRef-b8b4a4b254ac47b063201a6647e1dfac
FileChecksum: SHA1: 655fbb5e2c97fe120c30c652fd559c9a8003d12b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/utils/WebSdkConfig.test.js
SPDXID: SPDXRef-bca1f6583d94733c9c4c8b375b8ae723
FileChecksum: SHA1: 5300daba504ea019939a075de749c009ad41083e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/utils/uuid.js
SPDXID: SPDXRef-55be2a5251281ef8b2959f7f34042b9b
FileChecksum: SHA1: 20570c1bd0233a8126b753fe3557e39866f9e37c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/utils/uuid.test.js
SPDXID: SPDXRef-cdbd3a7549861b4fbdf01e84703d706a
FileChecksum: SHA1: 820c73f683d6f2fa1ce49f4ae8214de2250b27ed
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebScreenSets/utils/webSdkConfig.js
SPDXID: SPDXRef-694bc4fe80d523c513d412e7f519f978
FileChecksum: SHA1: 3547ebb0c3f07beb425288667e00005ee88f2546
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebSdk/WebSdk.js
SPDXID: SPDXRef-b20ca56e092a5e3a8084eebddf90d1f2
FileChecksum: SHA1: 83f1da91531545cd4524ecf3583fa04ee74f1167
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebSdk/calculator/calculator.js
SPDXID: SPDXRef-1ca0b714a8809ed585bd04857e3ca7d6
FileChecksum: SHA1: 3d39edd44d0cd31dfeae8140e4ba5c3b3c4dcc7d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebSdk/calculator/calculator.test.js
SPDXID: SPDXRef-c8988096b40cdbe901fc71fe8655fb3f
FileChecksum: SHA1: f879b2d03735fd31acfa6529d2ed650372d88764
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebSdk/customEventMap/customEventMap.js
SPDXID: SPDXRef-2ee6051849c162ab121f7a03367dca7f
FileChecksum: SHA1: 09e273a5dba2552d27cd6a1c60751dcc70826e45
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebSdk/customEventMap/customEventMap.test.js
SPDXID: SPDXRef-0271d2f141b8ff76a82bf0922cb33d2f
FileChecksum: SHA1: 7aab59e2427b32d9a98d9473784a3de41dc797df
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/SAP Customer Data Cloud/Sites/cdc-accelerator.demo-site.com/WebSdk/utils/http.js
SPDXID: SPDXRef-59f6472b370b1e2c37f2e1ea336499c9
FileChecksum: SHA1: ed291929e4c88813b8a5948c8926ebd333235c54
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors
FileName: ./src/index.html
SPDXID: SPDXRef-52d51e003efae5747ed6bfe8c880acec
FileChecksum: SHA1: e2dae57b5a4e95667e647d4dd6ff7e5f5614fdc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: Apache-2.0
FileCopyrightText:
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and sap-customer-data-cloud-accelerator contributors