@conduction/docusaurus-preset 3.27.1 → 3.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -0
- package/package.json +3 -2
- package/src/components/AiDisclosure/AiDisclosure.jsx +82 -0
- package/src/components/AiDisclosure/AiDisclosure.module.css +35 -0
- package/src/components/AiDisclosure/__tests__/AiDisclosure.render.test.js +127 -0
- package/src/components/AiDisclosure/__tests__/disclosure.test.js +218 -0
- package/src/components/AiDisclosure/disclosure.js +169 -0
- package/src/components/index.js +7 -0
- package/src/data/apps-registry.js +6 -0
- package/src/theme/BlogPostItem/Content/index.jsx +43 -0
- package/src/theme/DocItem/Content/index.jsx +15 -0
- package/static/img/ai-disclosure/PROVENANCE.md +87 -0
- package/static/img/ai-disclosure/ai-black-transparent.svg +20 -0
- package/static/img/ai-disclosure/ai-black.svg +19 -0
- package/static/img/ai-disclosure/ai-generated-black-transparent.svg +31 -0
- package/static/img/ai-disclosure/ai-generated-black.svg +30 -0
- package/static/img/ai-disclosure/ai-generated-white-transparent.svg +32 -0
- package/static/img/ai-disclosure/ai-generated-white.svg +31 -0
- package/static/img/ai-disclosure/ai-modified-black-transparent.svg +30 -0
- package/static/img/ai-disclosure/ai-modified-black.svg +29 -0
- package/static/img/ai-disclosure/ai-modified-white-transparent.svg +31 -0
- package/static/img/ai-disclosure/ai-modified-white.svg +30 -0
- package/static/img/ai-disclosure/ai-white-transparent.svg +21 -0
- package/static/img/ai-disclosure/ai-white.svg +20 -0
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* disclosure.js — pure resolver + copy/asset tables for AiDisclosure.
|
|
3
|
+
*
|
|
4
|
+
* No React and no webpack-only imports (no `?url` SVG imports) live
|
|
5
|
+
* here on purpose: this module is `require()`-able directly by
|
|
6
|
+
* Node's built-in test runner, and `import`-able from the JSX
|
|
7
|
+
* component via CommonJS/ESM interop. Keeping the decision logic and
|
|
8
|
+
* the copy register out of the component is what makes tasks 5.1-5.4
|
|
9
|
+
* testable without spinning up a bundler.
|
|
10
|
+
*
|
|
11
|
+
* @spec openspec/changes/ai-content-disclosure/tasks.md#task-1.2
|
|
12
|
+
* @spec openspec/changes/ai-content-disclosure/tasks.md#task-2.1
|
|
13
|
+
* @spec openspec/changes/ai-content-disclosure/tasks.md#task-2.2
|
|
14
|
+
* @spec openspec/changes/ai-content-disclosure/tasks.md#task-3.3
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
'use strict';
|
|
18
|
+
|
|
19
|
+
// The three values the `ai` frontmatter key accepts. Anything else -
|
|
20
|
+
// including an empty string - is an unrecognised value per the spec's
|
|
21
|
+
// "An unrecognised value fails loudly and renders nothing" requirement.
|
|
22
|
+
const AI_KINDS = ['generated', 'modified', 'assisted'];
|
|
23
|
+
|
|
24
|
+
// kind -> vendored icon filename prefix (see static/img/ai-disclosure/
|
|
25
|
+
// PROVENANCE.md). "assisted" maps to the Commission's Basic mark,
|
|
26
|
+
// whose vendored files carry no kind segment in the filename
|
|
27
|
+
// (`ai-black.svg`, not `ai-basic-black.svg`).
|
|
28
|
+
const KIND_TO_FILE_PREFIX = {
|
|
29
|
+
generated: 'ai-generated',
|
|
30
|
+
modified: 'ai-modified',
|
|
31
|
+
assisted: 'ai',
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const TREATMENTS = ['black', 'white', 'black-transparent', 'white-transparent'];
|
|
35
|
+
|
|
36
|
+
// Source viewBox dimensions per mark (icons/PROVENANCE.md). Each mark
|
|
37
|
+
// has its own aspect ratio; a single uniform box would stretch two of
|
|
38
|
+
// the three marks.
|
|
39
|
+
const VIEWBOX = {
|
|
40
|
+
assisted: {width: 566.93, height: 566.93},
|
|
41
|
+
modified: {width: 1700.79, height: 566.93},
|
|
42
|
+
generated: {width: 1789.84, height: 566.93},
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
// Three kinds x four locales. Every string states a fact about the
|
|
46
|
+
// page and stops - no compliance claim, no Code-of-Practice claim.
|
|
47
|
+
// See design.md "The thing most likely to be got wrong".
|
|
48
|
+
const COPY = {
|
|
49
|
+
nl: {
|
|
50
|
+
generated: 'Deze pagina is gegenereerd met AI.',
|
|
51
|
+
modified: 'Deze pagina is gedeeltelijk aangepast met AI.',
|
|
52
|
+
assisted: 'Deze pagina is geschreven met hulp van AI.',
|
|
53
|
+
},
|
|
54
|
+
en: {
|
|
55
|
+
generated: 'This page was generated with AI.',
|
|
56
|
+
modified: 'This page was partially modified with AI.',
|
|
57
|
+
assisted: 'This page was written with AI assistance.',
|
|
58
|
+
},
|
|
59
|
+
de: {
|
|
60
|
+
generated: 'Diese Seite wurde mit KI erstellt.',
|
|
61
|
+
modified: 'Diese Seite wurde teilweise mit KI bearbeitet.',
|
|
62
|
+
assisted: 'Diese Seite wurde mit KI-Unterstützung geschrieben.',
|
|
63
|
+
},
|
|
64
|
+
fr: {
|
|
65
|
+
generated: "Cette page a été générée avec l'IA.",
|
|
66
|
+
modified: "Cette page a été partiellement modifiée avec l'IA.",
|
|
67
|
+
assisted: "Cette page a été rédigée avec l'aide de l'IA.",
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
const LOCALES = Object.keys(COPY);
|
|
72
|
+
|
|
73
|
+
function isValidKind(value) {
|
|
74
|
+
return AI_KINDS.indexOf(value) !== -1;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Resolve a page's `ai` frontmatter value.
|
|
79
|
+
*
|
|
80
|
+
* Absence (`undefined`) is the normal opt-out case: no banner, no
|
|
81
|
+
* warning. A *present* but unrecognised value (unknown string, empty
|
|
82
|
+
* string) is a defect - it warns, naming the file, the offending
|
|
83
|
+
* value, and the permitted values, and still resolves to no kind. It
|
|
84
|
+
* never falls back to a mark: a typo must not become a published
|
|
85
|
+
* authorship claim.
|
|
86
|
+
*
|
|
87
|
+
* @param {string|undefined} rawValue - the page's frontmatter `ai` value
|
|
88
|
+
* @param {string} sourcePath - the doc/blog source file, for the warning
|
|
89
|
+
* @returns {{kind: string|null, warning: string|null}}
|
|
90
|
+
*/
|
|
91
|
+
function resolveAiFrontmatter(rawValue, sourcePath) {
|
|
92
|
+
if (rawValue === undefined) {
|
|
93
|
+
return {kind: null, warning: null};
|
|
94
|
+
}
|
|
95
|
+
if (isValidKind(rawValue)) {
|
|
96
|
+
return {kind: rawValue, warning: null};
|
|
97
|
+
}
|
|
98
|
+
const file = sourcePath || 'unknown file';
|
|
99
|
+
const shown = rawValue === '' ? '(empty)' : JSON.stringify(rawValue);
|
|
100
|
+
const warning =
|
|
101
|
+
`[ai-content-disclosure] ${file}: unrecognised "ai" frontmatter value ${shown} - ` +
|
|
102
|
+
`permitted values are ${AI_KINDS.join(', ')}. Rendering no disclosure banner.`;
|
|
103
|
+
return {kind: null, warning};
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
function getIconFilename(kind, treatment) {
|
|
107
|
+
if (!isValidKind(kind)) {
|
|
108
|
+
throw new Error(`getIconFilename: unknown kind "${kind}"`);
|
|
109
|
+
}
|
|
110
|
+
if (TREATMENTS.indexOf(treatment) === -1) {
|
|
111
|
+
throw new Error(`getIconFilename: unknown treatment "${treatment}"`);
|
|
112
|
+
}
|
|
113
|
+
return `${KIND_TO_FILE_PREFIX[kind]}-${treatment}.svg`;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Site-relative (no leading slash) path under `static/`. The marks are
|
|
117
|
+
// served as plain static files - not run through webpack's `.svg`
|
|
118
|
+
// pipeline - because this preset also enables @docusaurus/plugin-svgr
|
|
119
|
+
// (via the classic preset), which unconditionally turns any `.svg`
|
|
120
|
+
// imported from a JS/JSX/MDX file into a React component, regardless
|
|
121
|
+
// of a `?url` suffix. An inlined SVGR component would also reuse
|
|
122
|
+
// unscoped `.cls-N { fill: ... }` class names across every mark on the
|
|
123
|
+
// page (see static/img/ai-disclosure/PROVENANCE.md), so two different
|
|
124
|
+
// marks rendered together could bleed colours into each other. A
|
|
125
|
+
// plain `<img src>` pointed at an untouched static file avoids both
|
|
126
|
+
// problems and is the same mechanism this preset already uses for the
|
|
127
|
+
// favicon and the default og:image (see static/img/).
|
|
128
|
+
const ICONS_BASE_PATH = 'img/ai-disclosure';
|
|
129
|
+
|
|
130
|
+
function getIconPath(kind, treatment) {
|
|
131
|
+
return `${ICONS_BASE_PATH}/${getIconFilename(kind, treatment)}`;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
function getViewBox(kind) {
|
|
135
|
+
if (!isValidKind(kind)) {
|
|
136
|
+
throw new Error(`getViewBox: unknown kind "${kind}"`);
|
|
137
|
+
}
|
|
138
|
+
return VIEWBOX[kind];
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Copy for one kind in one locale. No fallback: every locale in
|
|
143
|
+
* LOCALES must carry all three kinds (asserted by the locale-coverage
|
|
144
|
+
* test), so an undefined return here means the COPY table itself is
|
|
145
|
+
* incomplete, not that a reader silently sees a leaked English string.
|
|
146
|
+
*/
|
|
147
|
+
function getCopy(kind, locale) {
|
|
148
|
+
if (!isValidKind(kind)) {
|
|
149
|
+
throw new Error(`getCopy: unknown kind "${kind}"`);
|
|
150
|
+
}
|
|
151
|
+
const table = COPY[locale];
|
|
152
|
+
return table ? table[kind] : undefined;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
module.exports = {
|
|
156
|
+
AI_KINDS,
|
|
157
|
+
TREATMENTS,
|
|
158
|
+
LOCALES,
|
|
159
|
+
KIND_TO_FILE_PREFIX,
|
|
160
|
+
VIEWBOX,
|
|
161
|
+
COPY,
|
|
162
|
+
ICONS_BASE_PATH,
|
|
163
|
+
isValidKind,
|
|
164
|
+
resolveAiFrontmatter,
|
|
165
|
+
getIconFilename,
|
|
166
|
+
getIconPath,
|
|
167
|
+
getViewBox,
|
|
168
|
+
getCopy,
|
|
169
|
+
};
|
package/src/components/index.js
CHANGED
|
@@ -142,3 +142,10 @@ export {default as Prerequisites, PrerequisiteItem} from './Prerequisites/Prereq
|
|
|
142
142
|
export {default as Troubleshooting, TroubleshootingItem} from './Troubleshooting/Troubleshooting.jsx';
|
|
143
143
|
export {default as NextSteps, NextStep} from './NextSteps/NextSteps.jsx';
|
|
144
144
|
export {default as ContactCta} from './ContactCta/ContactCta.jsx';
|
|
145
|
+
|
|
146
|
+
/* AiDisclosure — EU Article-50 AI-content disclosure banner/mark.
|
|
147
|
+
Frontmatter-driven at the top of docs/blog pages (see the
|
|
148
|
+
DocItem/Content and BlogPostItem/Content theme swizzles); exported
|
|
149
|
+
here so an author can also drop it inline in MDX, e.g. beside a
|
|
150
|
+
single AI-generated figure within an otherwise human-written page. */
|
|
151
|
+
export {default as AiDisclosure} from './AiDisclosure/AiDisclosure.jsx';
|
|
@@ -43,6 +43,12 @@ export const APPS_REGISTRY = {
|
|
|
43
43
|
openbuild: {slug: 'openbuild', name: 'OpenBuild', category: 'Processes', productHref: '/apps/openbuild', docsHref: 'https://openbuild.conduction.nl', academyHref: '/academy?app=openbuild'},
|
|
44
44
|
doriath: {slug: 'doriath', name: 'Doriath', category: 'Connectors', productHref: '/apps/doriath', docsHref: 'https://doriath.conduction.nl', academyHref: '/academy?app=doriath'},
|
|
45
45
|
'app-versions': {slug: 'app-versions', name: 'App Versions', category: 'Data', productHref: '/apps/app-versions', docsHref: 'https://app-versions.conduction.nl', academyHref: '/academy?app=app-versions'},
|
|
46
|
+
hermiq: {slug: 'hermiq', name: 'Hermiq', category: 'AI', productHref: '/apps/hermiq', docsHref: 'https://hermiq.conduction.nl', academyHref: '/academy?app=hermiq'},
|
|
47
|
+
hrmq: {slug: 'hrmq', name: 'HRMQ', category: 'Processes', productHref: '/apps/hrmq', docsHref: 'https://hrmq.conduction.nl', academyHref: '/academy?app=hrmq'},
|
|
48
|
+
openanonymiser: {slug: 'openanonymiser', name: 'OpenAnonymiser', category: 'Documents', productHref: '/apps/openanonymiser', docsHref: 'https://openanonymiser.conduction.nl', academyHref: '/academy?app=openanonymiser'},
|
|
49
|
+
planix: {slug: 'planix', name: 'Planix', category: 'Processes', productHref: '/apps/planix', docsHref: 'https://planix.conduction.nl', academyHref: '/academy?app=planix'},
|
|
50
|
+
portaliq: {slug: 'portaliq', name: 'Portaliq', category: 'Processes', productHref: '/apps/portaliq', docsHref: 'https://portaliq.conduction.nl', academyHref: '/academy?app=portaliq'},
|
|
51
|
+
scholiq: {slug: 'scholiq', name: 'Scholiq', category: 'Processes', productHref: '/apps/scholiq', docsHref: 'https://scholiq.conduction.nl', academyHref: '/academy?app=scholiq'},
|
|
46
52
|
};
|
|
47
53
|
|
|
48
54
|
/**
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Brand BlogPostItem/Content swizzle.
|
|
3
|
+
*
|
|
4
|
+
* Wraps Docusaurus's default BlogPostItem/Content to resolve the
|
|
5
|
+
* `ai` frontmatter key (ai-content-disclosure) the same way the
|
|
6
|
+
* DocItem/Content swizzle does for docs pages, and render the
|
|
7
|
+
* <AiDisclosure> banner above the post body.
|
|
8
|
+
*
|
|
9
|
+
* `BlogPostItem/Content` is reused for both the full post page AND
|
|
10
|
+
* truncated excerpts on the blog list/archive/tag pages, so this
|
|
11
|
+
* gates on `isBlogPostPage` (from `useBlogPost()`) - the banner is a
|
|
12
|
+
* per-page disclosure, not a per-excerpt one, and rendering it on
|
|
13
|
+
* every list-page card would repeat the same claim N times on a page
|
|
14
|
+
* that "was" not itself generated or modified with AI.
|
|
15
|
+
*
|
|
16
|
+
* Absence of the key is silent by design (design.md D2); an
|
|
17
|
+
* unrecognised value warns at build time and still renders nothing
|
|
18
|
+
* (D3) - see disclosure.js resolveAiFrontmatter.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import React from 'react';
|
|
22
|
+
import {useBlogPost} from '@docusaurus/plugin-content-blog/client';
|
|
23
|
+
import BlogPostItemContent from '@theme-init/BlogPostItem/Content';
|
|
24
|
+
import AiDisclosure from '../../../components/AiDisclosure/AiDisclosure.jsx';
|
|
25
|
+
import {resolveAiFrontmatter} from '../../../components/AiDisclosure/disclosure';
|
|
26
|
+
|
|
27
|
+
export default function BlogPostItemContentWithDisclosure(props) {
|
|
28
|
+
const {metadata, frontMatter, isBlogPostPage} = useBlogPost();
|
|
29
|
+
|
|
30
|
+
const {kind: aiKind, warning: aiWarning} = isBlogPostPage
|
|
31
|
+
? resolveAiFrontmatter(frontMatter.ai, metadata.source)
|
|
32
|
+
: {kind: null, warning: null};
|
|
33
|
+
if (aiWarning && typeof console !== 'undefined') {
|
|
34
|
+
console.warn(aiWarning);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<>
|
|
39
|
+
{aiKind && <AiDisclosure kind={aiKind} />}
|
|
40
|
+
<BlogPostItemContent {...props} />
|
|
41
|
+
</>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
@@ -25,6 +25,12 @@
|
|
|
25
25
|
*
|
|
26
26
|
* Sites that don't want the schema on a particular page set
|
|
27
27
|
* `frontMatter.techArticle: false` in the doc's frontmatter.
|
|
28
|
+
*
|
|
29
|
+
* Also resolves the `ai` frontmatter key (ai-content-disclosure) and,
|
|
30
|
+
* when present and valid, renders the <AiDisclosure> banner above the
|
|
31
|
+
* doc body. Absence of the key is silent by design (design.md D2); an
|
|
32
|
+
* unrecognised value warns at build time (SSR runs this component
|
|
33
|
+
* during `docusaurus build`) and still renders nothing (D3).
|
|
28
34
|
*/
|
|
29
35
|
|
|
30
36
|
import React from 'react';
|
|
@@ -32,6 +38,8 @@ import Head from '@docusaurus/Head';
|
|
|
32
38
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
33
39
|
import {useDoc} from '@docusaurus/plugin-content-docs/client';
|
|
34
40
|
import DocItemContent from '@theme-init/DocItem/Content';
|
|
41
|
+
import AiDisclosure from '../../../components/AiDisclosure/AiDisclosure.jsx';
|
|
42
|
+
import {resolveAiFrontmatter} from '../../../components/AiDisclosure/disclosure';
|
|
35
43
|
|
|
36
44
|
function buildTechArticleJsonLd(siteUrl, metadata, frontMatter) {
|
|
37
45
|
const url = siteUrl
|
|
@@ -89,6 +97,12 @@ export default function DocItemContentWithSchema(props) {
|
|
|
89
97
|
const schema = emitSchema
|
|
90
98
|
? buildTechArticleJsonLd(siteConfig.url, metadata, frontMatter)
|
|
91
99
|
: null;
|
|
100
|
+
|
|
101
|
+
const {kind: aiKind, warning: aiWarning} = resolveAiFrontmatter(frontMatter.ai, metadata.source);
|
|
102
|
+
if (aiWarning && typeof console !== 'undefined') {
|
|
103
|
+
console.warn(aiWarning);
|
|
104
|
+
}
|
|
105
|
+
|
|
92
106
|
return (
|
|
93
107
|
<>
|
|
94
108
|
{schema && (
|
|
@@ -98,6 +112,7 @@ export default function DocItemContentWithSchema(props) {
|
|
|
98
112
|
</script>
|
|
99
113
|
</Head>
|
|
100
114
|
)}
|
|
115
|
+
{aiKind && <AiDisclosure kind={aiKind} />}
|
|
101
116
|
<DocItemContent {...props} />
|
|
102
117
|
</>
|
|
103
118
|
);
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# EU icons for labelling AI-generated content
|
|
2
|
+
|
|
3
|
+
## Location
|
|
4
|
+
|
|
5
|
+
Served as plain static files from here (`static/img/ai-disclosure/`),
|
|
6
|
+
referenced by `<AiDisclosure>` via `useBaseUrl('img/ai-disclosure/<file>')`
|
|
7
|
+
rather than a webpack `.svg` import. This preset also enables
|
|
8
|
+
`@docusaurus/plugin-svgr` (via the classic preset), which unconditionally
|
|
9
|
+
turns any `.svg` imported from a JS/JSX/MDX file into an inlined React
|
|
10
|
+
component, regardless of a `?url` suffix. An inlined SVGR component would
|
|
11
|
+
also leak the unscoped `.cls-1`/`.cls-2` fill classes below across every
|
|
12
|
+
mark rendered on the same page (two different marks would fight over the
|
|
13
|
+
same class names). A plain `<img src>` pointed at an untouched static
|
|
14
|
+
file avoids both problems.
|
|
15
|
+
|
|
16
|
+
## Where these came from
|
|
17
|
+
|
|
18
|
+
Downloaded from the European Commission on 2026-07-29:
|
|
19
|
+
|
|
20
|
+
- Source page: https://digital-strategy.ec.europa.eu/en/policies/eu-icons-labelling-ai-generated-content
|
|
21
|
+
- SVG package: https://ec.europa.eu/newsroom/dae/redirection/document/129546
|
|
22
|
+
- Published 2026-06-10 as part of Section 2 of the Code of Practice on
|
|
23
|
+
Transparency of AI-Generated Content.
|
|
24
|
+
|
|
25
|
+
## Licence
|
|
26
|
+
|
|
27
|
+
The Commission makes these icons "publicly available for everyone to use freely,
|
|
28
|
+
without the need for attribution." They are vendored here rather than hot-linked
|
|
29
|
+
so the site builds offline and under a restricted egress policy — `ec.europa.eu`
|
|
30
|
+
is not on the pipeline's allowlist, so a build-time fetch would fail closed.
|
|
31
|
+
|
|
32
|
+
## What each icon means
|
|
33
|
+
|
|
34
|
+
| File prefix | Official name | Use for |
|
|
35
|
+
|-----------------|------------------------|---------|
|
|
36
|
+
| `ai-` | Basic | AI assisted the work, or a custom/interactive label is used |
|
|
37
|
+
| `ai-generated-` | Fully AI-Generated | Entirely AI-produced, no human-authored elements or editorial control (prompting excluded) |
|
|
38
|
+
| `ai-modified-` | Partially AI-Modified | Pre-existing human content partially altered with AI |
|
|
39
|
+
|
|
40
|
+
Each comes in four colour treatments: `black`, `white`, `black-transparent`,
|
|
41
|
+
`white-transparent`.
|
|
42
|
+
|
|
43
|
+
**Aspect ratios differ per icon** and must be preserved — the basic mark is
|
|
44
|
+
square, the two word-marks are wide:
|
|
45
|
+
|
|
46
|
+
| Icon | viewBox |
|
|
47
|
+
|---|---|
|
|
48
|
+
| `ai-*` | `0 0 566.93 566.93` (1:1) |
|
|
49
|
+
| `ai-modified-*` | `0 0 1700.79 566.93` (~3:1) |
|
|
50
|
+
| `ai-generated-*` | `0 0 1789.84 566.93` (~3.16:1) |
|
|
51
|
+
|
|
52
|
+
## Two things that are easy to get wrong
|
|
53
|
+
|
|
54
|
+
**1. These icons do not make you compliant.** Their use is *optional*; the
|
|
55
|
+
Article 50 labelling obligation is not. The Commission states plainly that using
|
|
56
|
+
them "does not establish legal compliance" on its own. Any copy rendered
|
|
57
|
+
alongside them must therefore not claim compliance.
|
|
58
|
+
|
|
59
|
+
**2. Do not imply Code-of-Practice adherence.** The Commission asks that
|
|
60
|
+
non-signatories' use of the icons not signal adherence to the Code. Unless
|
|
61
|
+
Conduction has signed it, the disclosure copy must stay factual ("this page was
|
|
62
|
+
generated with AI") and avoid wording that reads as conformity to the Code.
|
|
63
|
+
|
|
64
|
+
## Renaming, and one upstream typo
|
|
65
|
+
|
|
66
|
+
Files were renamed from the Commission's originals (which contain spaces and
|
|
67
|
+
inconsistent casing) to kebab-case for predictable imports. One original is
|
|
68
|
+
misspelled upstream — `LABEL_AI MOFIFIED_black.svg`, i.e. "MOFIFIED" — and is
|
|
69
|
+
vendored here as `ai-modified-black.svg`. If the package is ever re-downloaded,
|
|
70
|
+
check whether that typo has been corrected before assuming a mapping.
|
|
71
|
+
|
|
72
|
+
Original → vendored:
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
LABEL_AI_black.svg -> ai-black.svg
|
|
76
|
+
LABEL_AI_black transparent.svg -> ai-black-transparent.svg
|
|
77
|
+
LABEL_AI_white.svg -> ai-white.svg
|
|
78
|
+
LABEL_AI_white transparent.svg -> ai-white-transparent.svg
|
|
79
|
+
LABEL_AI GENERATED_black.svg -> ai-generated-black.svg
|
|
80
|
+
LABEL_AI GENERATED_black transparent.svg -> ai-generated-black-transparent.svg
|
|
81
|
+
LABEL_AI GENERATED_white.svg -> ai-generated-white.svg
|
|
82
|
+
LABEL_AI GENERATED_white transparent.svg -> ai-generated-white-transparent.svg
|
|
83
|
+
LABEL_AI MOFIFIED_black.svg -> ai-modified-black.svg (sic)
|
|
84
|
+
LABEL_AI MODIFIED_black transparent.svg -> ai-modified-black-transparent.svg
|
|
85
|
+
LABEL_AI MODIFIED_white.svg -> ai-modified-white.svg
|
|
86
|
+
LABEL_AI MODIFIED_white transparent.svg -> ai-modified-white-transparent.svg
|
|
87
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 566.93 566.93">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill-rule: evenodd;
|
|
7
|
+
opacity: .5;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cls-2 {
|
|
11
|
+
fill: #fff;
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
</defs>
|
|
15
|
+
<path class="cls-1" d="M272.03,100.72c100.92,0,182.74,81.82,182.74,182.75s-81.82,182.74-182.74,182.74-182.75-81.82-182.75-182.74,81.82-182.75,182.75-182.75"/>
|
|
16
|
+
<g>
|
|
17
|
+
<path class="cls-2" d="M170.79,353.74c-1.08,0-2.05-.43-2.92-1.31-.88-.87-1.31-1.84-1.31-2.92,0-.67.07-1.27.2-1.81l47.34-129.32c.4-1.48,1.24-2.79,2.52-3.93,1.27-1.14,3.05-1.71,5.34-1.71h29.81c2.28,0,4.06.57,5.34,1.71,1.27,1.14,2.11,2.45,2.52,3.93l47.14,129.32c.27.54.4,1.14.4,1.81,0,1.08-.44,2.05-1.31,2.92s-1.91,1.31-3.12,1.31h-24.78c-2.01,0-3.52-.5-4.53-1.51-1.01-1.01-1.65-1.91-1.91-2.72l-7.86-20.55h-53.78l-7.65,20.55c-.27.81-.88,1.71-1.81,2.72-.94,1.01-2.55,1.51-4.83,1.51h-24.78ZM218.13,299.96h37.47l-18.93-53.18-18.53,53.18Z"/>
|
|
18
|
+
<path class="cls-2" d="M328.11,353.74c-1.48,0-2.69-.47-3.63-1.41-.94-.94-1.41-2.15-1.41-3.63v-130.93c0-1.48.47-2.68,1.41-3.63s2.15-1.41,3.63-1.41h26.99c1.48,0,2.68.47,3.63,1.41.94.94,1.41,2.15,1.41,3.63v130.93c0,1.48-.47,2.69-1.41,3.63-.94.94-2.15,1.41-3.63,1.41h-26.99Z"/>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 566.93 566.93">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill-rule: evenodd;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cls-2 {
|
|
10
|
+
fill: #fff;
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
13
|
+
</defs>
|
|
14
|
+
<path class="cls-1" d="M272.03,100.72c100.92,0,182.74,81.82,182.74,182.75s-81.82,182.74-182.74,182.74-182.75-81.82-182.75-182.74,81.82-182.75,182.75-182.75"/>
|
|
15
|
+
<g>
|
|
16
|
+
<path class="cls-2" d="M170.79,353.74c-1.08,0-2.05-.43-2.92-1.31-.88-.87-1.31-1.84-1.31-2.92,0-.67.07-1.27.2-1.81l47.34-129.32c.4-1.48,1.24-2.79,2.52-3.93,1.27-1.14,3.05-1.71,5.34-1.71h29.81c2.28,0,4.06.57,5.34,1.71,1.27,1.14,2.11,2.45,2.52,3.93l47.14,129.32c.27.54.4,1.14.4,1.81,0,1.08-.44,2.05-1.31,2.92s-1.91,1.31-3.12,1.31h-24.78c-2.01,0-3.52-.5-4.53-1.51-1.01-1.01-1.65-1.91-1.91-2.72l-7.86-20.55h-53.78l-7.65,20.55c-.27.81-.88,1.71-1.81,2.72-.94,1.01-2.55,1.51-4.83,1.51h-24.78ZM218.13,299.96h37.47l-18.93-53.18-18.53,53.18Z"/>
|
|
17
|
+
<path class="cls-2" d="M328.11,353.74c-1.48,0-2.69-.47-3.63-1.41-.94-.94-1.41-2.15-1.41-3.63v-130.93c0-1.48.47-2.68,1.41-3.63s2.15-1.41,3.63-1.41h26.99c1.48,0,2.68.47,3.63,1.41.94.94,1.41,2.15,1.41,3.63v130.93c0,1.48-.47,2.69-1.41,3.63-.94.94-2.15,1.41-3.63,1.41h-26.99Z"/>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1789.84 566.93">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill-rule: evenodd;
|
|
7
|
+
opacity: .5;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cls-2 {
|
|
11
|
+
fill: #fff;
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
</defs>
|
|
15
|
+
<path class="cls-1" d="M352.84,410.77h1093.16c85.55,0,145.54-59.94,145.54-133.2h0c0-73.27-59.99-133.21-145.54-133.21H352.84c-85.55,0-145.54,59.94-145.54,133.2h0c0,73.26,64.99,133.2,150.54,133.2"/>
|
|
16
|
+
<g>
|
|
17
|
+
<path class="cls-2" d="M326.09,341c-.98,0-1.87-.4-2.66-1.19-.8-.79-1.19-1.68-1.19-2.66,0-.61.06-1.16.18-1.65l43.18-117.96c.37-1.35,1.13-2.54,2.3-3.58,1.16-1.04,2.79-1.56,4.87-1.56h27.19c2.08,0,3.7.52,4.87,1.56,1.16,1.04,1.93,2.24,2.3,3.58l42.99,117.96c.24.49.37,1.04.37,1.65,0,.98-.4,1.87-1.19,2.66-.8.8-1.75,1.19-2.85,1.19h-22.6c-1.84,0-3.22-.46-4.13-1.38-.92-.92-1.5-1.75-1.75-2.48l-7.17-18.74h-49.06l-6.98,18.74c-.25.74-.8,1.56-1.65,2.48-.86.92-2.33,1.38-4.41,1.38h-22.6ZM369.27,291.94h34.18l-17.27-48.51-16.9,48.51Z"/>
|
|
18
|
+
<path class="cls-2" d="M469.58,341c-1.35,0-2.45-.43-3.31-1.29-.86-.86-1.29-1.96-1.29-3.31v-119.43c0-1.35.43-2.45,1.29-3.31s1.96-1.29,3.31-1.29h24.62c1.35,0,2.45.43,3.31,1.29.86.86,1.29,1.96,1.29,3.31v119.43c0,1.35-.43,2.45-1.29,3.31s-1.96,1.29-3.31,1.29h-24.62Z"/>
|
|
19
|
+
</g>
|
|
20
|
+
<g>
|
|
21
|
+
<path class="cls-2" d="M639.25,325.87c-8.43,0-15.63-1.41-21.59-4.24-5.97-2.83-10.58-6.95-13.86-12.38-3.27-5.42-5.04-11.99-5.31-19.71-.09-3.86-.13-7.98-.13-12.38s.04-8.56.13-12.51c.27-7.53,2.04-13.94,5.31-19.24,3.27-5.29,7.94-9.35,13.99-12.17,6.05-2.83,13.2-4.24,21.46-4.24,6.64,0,12.46.85,17.49,2.56,5.02,1.7,9.24,3.92,12.65,6.66,3.41,2.74,6.01,5.72,7.8,8.95,1.79,3.23,2.74,6.32,2.83,9.28,0,.81-.27,1.5-.81,2.08-.54.58-1.26.87-2.15.87h-16.68c-.9,0-1.59-.18-2.08-.54-.49-.36-.92-.9-1.28-1.61-.63-1.61-1.64-3.25-3.03-4.91-1.39-1.66-3.25-3.07-5.58-4.24-2.33-1.16-5.38-1.75-9.15-1.75-5.65,0-10.11,1.48-13.39,4.44-3.27,2.96-5.04,7.8-5.31,14.53-.27,7.71-.27,15.56,0,23.54.27,7,2.08,12.02,5.45,15.07,3.36,3.05,7.87,4.57,13.52,4.57,3.68,0,6.97-.65,9.89-1.95,2.91-1.3,5.22-3.34,6.93-6.12,1.7-2.78,2.56-6.32,2.56-10.63v-3.36h-14.66c-.9,0-1.66-.34-2.29-1.01-.63-.67-.94-1.46-.94-2.35v-8.61c0-.99.31-1.79.94-2.42.63-.63,1.39-.94,2.29-.94h32.96c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v14.66c0,7.71-1.68,14.31-5.04,19.78-3.36,5.47-8.16,9.66-14.39,12.58-6.23,2.92-13.52,4.37-21.86,4.37Z"/>
|
|
22
|
+
<path class="cls-2" d="M710.73,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
23
|
+
<path class="cls-2" d="M805.88,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h12.24c1.34,0,2.33.32,2.96.94.63.63,1.03,1.12,1.21,1.48l35.92,56.1v-55.15c0-.99.31-1.79.94-2.42s1.39-.94,2.29-.94h13.72c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v87.44c0,.9-.32,1.68-.94,2.35-.63.67-1.44,1.01-2.42,1.01h-12.38c-1.35,0-2.31-.34-2.89-1.01-.58-.67-1.01-1.14-1.28-1.41l-35.78-54.35v53.41c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-13.59Z"/>
|
|
24
|
+
<path class="cls-2" d="M912.19,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
25
|
+
<path class="cls-2" d="M1007.35,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h35.65c11.21,0,20.04,2.58,26.5,7.74,6.46,5.16,9.69,12.58,9.69,22.26,0,6.55-1.57,12.02-4.71,16.41-3.14,4.4-7.35,7.67-12.65,9.82l18.97,33.63c.27.54.4,1.03.4,1.48,0,.72-.27,1.37-.81,1.95-.54.58-1.21.88-2.02.88h-14.93c-1.61,0-2.82-.42-3.63-1.28-.81-.85-1.39-1.63-1.75-2.35l-16.41-30.8h-16.28v31.07c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-14.66ZM1025.38,273h17.22c4.93,0,8.59-1.12,10.96-3.36,2.38-2.24,3.56-5.38,3.56-9.42s-1.17-7.22-3.5-9.55c-2.33-2.33-6.01-3.5-11.03-3.5h-17.22v25.83Z"/>
|
|
26
|
+
<path class="cls-2" d="M1100.62,324.52c-.81,0-1.48-.29-2.02-.88-.54-.58-.81-1.23-.81-1.95,0-.45.04-.85.13-1.21l32.02-86.5c.27-.99.81-1.84,1.61-2.56.81-.72,1.93-1.08,3.36-1.08h17.22c1.43,0,2.56.36,3.36,1.08.81.72,1.35,1.57,1.61,2.56l32.02,86.5c.09.36.13.76.13,1.21,0,.72-.27,1.37-.81,1.95-.54.58-1.21.88-2.02.88h-13.99c-1.35,0-2.33-.31-2.96-.94-.63-.63-1.03-1.21-1.21-1.75l-5.78-15.07h-37.94l-5.78,15.07c-.18.54-.58,1.12-1.21,1.75-.63.63-1.61.94-2.96.94h-13.99ZM1129.54,289.41h27.85l-13.86-38.74-13.99,38.74Z"/>
|
|
27
|
+
<path class="cls-2" d="M1225.64,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-72.1h-24.48c-.9,0-1.66-.31-2.29-.94-.63-.63-.94-1.39-.94-2.29v-12.11c0-.99.31-1.79.94-2.42s1.39-.94,2.29-.94h70.49c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v12.11c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-24.35v72.1c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-14.93Z"/>
|
|
28
|
+
<path class="cls-2" d="M1298.32,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
29
|
+
<path class="cls-2" d="M1393.48,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h33.77c8.97,0,16.46,1.41,22.46,4.24,6.01,2.83,10.6,6.95,13.79,12.38,3.18,5.43,4.86,12.13,5.04,20.11.09,3.95.13,7.4.13,10.36s-.05,6.37-.13,10.22c-.27,8.34-1.93,15.25-4.98,20.72-3.05,5.47-7.53,9.53-13.45,12.17-5.92,2.65-13.32,3.97-22.2,3.97h-34.44ZM1411.51,307.17h15.74c4.48,0,8.16-.67,11.03-2.02,2.87-1.35,5-3.47,6.39-6.39,1.39-2.91,2.13-6.7,2.22-11.37.09-2.6.16-4.93.2-7,.04-2.06.04-4.12,0-6.19-.05-2.06-.11-4.35-.2-6.86-.18-6.73-1.91-11.68-5.18-14.87-3.27-3.18-8.32-4.78-15.13-4.78h-15.07v59.46Z"/>
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1789.84 566.93">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill-rule: evenodd;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cls-2 {
|
|
10
|
+
fill: #fff;
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
13
|
+
</defs>
|
|
14
|
+
<path class="cls-1" d="M352.84,410.77h1093.16c85.55,0,145.54-59.94,145.54-133.2h0c0-73.27-59.99-133.21-145.54-133.21H352.84c-85.55,0-145.54,59.94-145.54,133.2h0c0,73.26,64.99,133.2,150.54,133.2"/>
|
|
15
|
+
<g>
|
|
16
|
+
<path class="cls-2" d="M326.09,341c-.98,0-1.87-.4-2.66-1.19-.8-.8-1.19-1.68-1.19-2.66,0-.61.06-1.16.18-1.65l43.18-117.96c.37-1.35,1.13-2.54,2.3-3.58,1.16-1.04,2.79-1.56,4.87-1.56h27.19c2.08,0,3.7.52,4.87,1.56,1.16,1.04,1.93,2.24,2.3,3.58l42.99,117.96c.24.49.37,1.04.37,1.65,0,.98-.4,1.87-1.19,2.66-.8.8-1.75,1.19-2.85,1.19h-22.6c-1.84,0-3.22-.46-4.13-1.38-.92-.92-1.5-1.75-1.75-2.48l-7.17-18.74h-49.06l-6.98,18.74c-.25.73-.8,1.56-1.65,2.48-.86.92-2.33,1.38-4.41,1.38h-22.6ZM369.27,291.94h34.18l-17.27-48.51-16.9,48.51Z"/>
|
|
17
|
+
<path class="cls-2" d="M469.58,341c-1.35,0-2.45-.43-3.31-1.29-.86-.86-1.29-1.96-1.29-3.31v-119.43c0-1.35.43-2.45,1.29-3.31s1.96-1.29,3.31-1.29h24.62c1.35,0,2.45.43,3.31,1.29.86.86,1.29,1.96,1.29,3.31v119.43c0,1.35-.43,2.45-1.29,3.31s-1.96,1.29-3.31,1.29h-24.62Z"/>
|
|
18
|
+
</g>
|
|
19
|
+
<g>
|
|
20
|
+
<path class="cls-2" d="M639.25,325.87c-8.43,0-15.63-1.41-21.59-4.24-5.97-2.83-10.58-6.95-13.86-12.38-3.27-5.43-5.04-11.99-5.31-19.71-.09-3.85-.13-7.98-.13-12.38s.04-8.56.13-12.51c.27-7.53,2.04-13.94,5.31-19.24,3.27-5.29,7.94-9.35,13.99-12.17,6.05-2.83,13.2-4.24,21.46-4.24,6.64,0,12.46.85,17.49,2.56,5.02,1.7,9.24,3.92,12.65,6.66,3.41,2.74,6.01,5.72,7.8,8.95,1.79,3.23,2.74,6.32,2.83,9.28,0,.81-.27,1.5-.81,2.08-.54.58-1.26.87-2.15.87h-16.68c-.9,0-1.59-.18-2.08-.54-.49-.36-.92-.9-1.28-1.61-.63-1.61-1.64-3.25-3.03-4.91-1.39-1.66-3.25-3.07-5.58-4.24-2.33-1.16-5.38-1.75-9.15-1.75-5.65,0-10.11,1.48-13.39,4.44-3.27,2.96-5.04,7.8-5.31,14.53-.27,7.71-.27,15.56,0,23.54.27,7,2.08,12.02,5.45,15.07,3.36,3.05,7.87,4.57,13.52,4.57,3.68,0,6.97-.65,9.89-1.95,2.91-1.3,5.22-3.34,6.93-6.12,1.7-2.78,2.56-6.32,2.56-10.63v-3.36h-14.66c-.9,0-1.66-.34-2.29-1.01-.63-.67-.94-1.46-.94-2.35v-8.61c0-.99.31-1.79.94-2.42.63-.63,1.39-.94,2.29-.94h32.96c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v14.66c0,7.71-1.68,14.31-5.04,19.77-3.36,5.47-8.16,9.66-14.39,12.58-6.23,2.92-13.52,4.37-21.86,4.37Z"/>
|
|
21
|
+
<path class="cls-2" d="M710.73,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42.63-.63,1.43-.94,2.42-.94h60.94c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.8-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
22
|
+
<path class="cls-2" d="M805.88,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42.63-.63,1.43-.94,2.42-.94h12.24c1.34,0,2.33.31,2.96.94.63.63,1.03,1.12,1.21,1.48l35.92,56.1v-55.15c0-.99.31-1.79.94-2.42.63-.63,1.39-.94,2.29-.94h13.72c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v87.44c0,.9-.32,1.68-.94,2.35-.63.67-1.44,1.01-2.42,1.01h-12.38c-1.35,0-2.31-.34-2.89-1.01-.58-.67-1.01-1.14-1.28-1.41l-35.78-54.35v53.41c0,.99-.32,1.8-.94,2.42s-1.44.94-2.42.94h-13.59Z"/>
|
|
23
|
+
<path class="cls-2" d="M912.19,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42.63-.63,1.43-.94,2.42-.94h60.94c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.8-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
24
|
+
<path class="cls-2" d="M1007.35,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42.63-.63,1.43-.94,2.42-.94h35.65c11.21,0,20.04,2.58,26.5,7.73,6.46,5.16,9.69,12.58,9.69,22.26,0,6.55-1.57,12.02-4.71,16.41-3.14,4.4-7.35,7.67-12.65,9.82l18.97,33.63c.27.54.4,1.03.4,1.48,0,.72-.27,1.37-.81,1.95-.54.58-1.21.87-2.02.87h-14.93c-1.61,0-2.82-.42-3.63-1.28-.81-.85-1.39-1.64-1.75-2.35l-16.41-30.81h-16.28v31.07c0,.99-.32,1.8-.94,2.42s-1.44.94-2.42.94h-14.66ZM1025.38,273h17.22c4.93,0,8.59-1.12,10.96-3.36,2.38-2.24,3.56-5.38,3.56-9.42s-1.17-7.22-3.5-9.55c-2.33-2.33-6.01-3.5-11.03-3.5h-17.22v25.83Z"/>
|
|
25
|
+
<path class="cls-2" d="M1100.62,324.52c-.81,0-1.48-.29-2.02-.87-.54-.58-.81-1.23-.81-1.95,0-.45.04-.85.13-1.21l32.02-86.5c.27-.99.81-1.84,1.61-2.56.81-.72,1.93-1.08,3.36-1.08h17.22c1.43,0,2.56.36,3.36,1.08.81.72,1.35,1.57,1.61,2.56l32.02,86.5c.09.36.13.76.13,1.21,0,.72-.27,1.37-.81,1.95-.54.58-1.21.87-2.02.87h-13.99c-1.35,0-2.33-.31-2.96-.94-.63-.63-1.03-1.21-1.21-1.75l-5.78-15.07h-37.94l-5.78,15.07c-.18.54-.58,1.12-1.21,1.75-.63.63-1.61.94-2.96.94h-13.99ZM1129.54,289.41h27.85l-13.86-38.74-13.99,38.74Z"/>
|
|
26
|
+
<path class="cls-2" d="M1225.64,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-72.1h-24.48c-.9,0-1.66-.31-2.29-.94-.63-.63-.94-1.39-.94-2.29v-12.11c0-.99.31-1.79.94-2.42.63-.63,1.39-.94,2.29-.94h70.49c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v12.11c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-24.35v72.1c0,.99-.32,1.8-.94,2.42s-1.44.94-2.42.94h-14.93Z"/>
|
|
27
|
+
<path class="cls-2" d="M1298.32,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42.63-.63,1.43-.94,2.42-.94h60.94c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.8-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
28
|
+
<path class="cls-2" d="M1393.48,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42.63-.63,1.43-.94,2.42-.94h33.77c8.97,0,16.46,1.41,22.46,4.24,6.01,2.83,10.6,6.95,13.79,12.38,3.18,5.43,4.86,12.13,5.04,20.11.09,3.95.13,7.4.13,10.36s-.05,6.37-.13,10.22c-.27,8.34-1.93,15.25-4.98,20.72-3.05,5.47-7.53,9.53-13.45,12.17-5.92,2.65-13.32,3.97-22.2,3.97h-34.44ZM1411.51,307.17h15.74c4.48,0,8.16-.67,11.03-2.02,2.87-1.35,5-3.47,6.39-6.39,1.39-2.91,2.13-6.7,2.22-11.37.09-2.6.16-4.93.2-7,.04-2.06.04-4.12,0-6.19-.05-2.06-.11-4.35-.2-6.86-.18-6.73-1.91-11.68-5.18-14.86-3.27-3.18-8.32-4.78-15.13-4.78h-15.07v59.46Z"/>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1789.84 566.93">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #1d1d1b;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cls-2 {
|
|
10
|
+
fill: #fff;
|
|
11
|
+
fill-rule: evenodd;
|
|
12
|
+
opacity: .5;
|
|
13
|
+
}
|
|
14
|
+
</style>
|
|
15
|
+
</defs>
|
|
16
|
+
<path class="cls-2" d="M352.84,410.77h1093.16c85.55,0,145.54-59.94,145.54-133.2h0c0-73.27-59.99-133.21-145.54-133.21H352.84c-85.55,0-145.54,59.94-145.54,133.2h0c0,73.26,64.99,133.2,150.54,133.2"/>
|
|
17
|
+
<g>
|
|
18
|
+
<path class="cls-1" d="M326.09,341c-.98,0-1.87-.4-2.66-1.19-.8-.79-1.19-1.68-1.19-2.66,0-.61.06-1.16.18-1.65l43.18-117.96c.37-1.35,1.13-2.54,2.3-3.58,1.16-1.04,2.79-1.56,4.87-1.56h27.19c2.08,0,3.7.52,4.87,1.56,1.16,1.04,1.93,2.24,2.3,3.58l42.99,117.96c.24.49.37,1.04.37,1.65,0,.98-.4,1.87-1.19,2.66-.8.8-1.75,1.19-2.85,1.19h-22.6c-1.84,0-3.22-.46-4.13-1.38-.92-.92-1.5-1.75-1.75-2.48l-7.17-18.74h-49.06l-6.98,18.74c-.25.74-.8,1.56-1.65,2.48-.86.92-2.33,1.38-4.41,1.38h-22.6ZM369.27,291.94h34.18l-17.27-48.51-16.9,48.51Z"/>
|
|
19
|
+
<path class="cls-1" d="M469.58,341c-1.35,0-2.45-.43-3.31-1.29-.86-.86-1.29-1.96-1.29-3.31v-119.43c0-1.35.43-2.45,1.29-3.31s1.96-1.29,3.31-1.29h24.62c1.35,0,2.45.43,3.31,1.29.86.86,1.29,1.96,1.29,3.31v119.43c0,1.35-.43,2.45-1.29,3.31s-1.96,1.29-3.31,1.29h-24.62Z"/>
|
|
20
|
+
</g>
|
|
21
|
+
<g>
|
|
22
|
+
<path class="cls-1" d="M639.25,325.87c-8.43,0-15.63-1.41-21.59-4.24-5.97-2.83-10.58-6.95-13.86-12.38-3.27-5.42-5.04-11.99-5.31-19.71-.09-3.86-.13-7.98-.13-12.38s.04-8.56.13-12.51c.27-7.53,2.04-13.94,5.31-19.24,3.27-5.29,7.94-9.35,13.99-12.17,6.05-2.83,13.2-4.24,21.46-4.24,6.64,0,12.46.85,17.49,2.56,5.02,1.7,9.24,3.92,12.65,6.66,3.41,2.74,6.01,5.72,7.8,8.95,1.79,3.23,2.74,6.32,2.83,9.28,0,.81-.27,1.5-.81,2.08-.54.58-1.26.87-2.15.87h-16.68c-.9,0-1.59-.18-2.08-.54-.49-.36-.92-.9-1.28-1.61-.63-1.61-1.64-3.25-3.03-4.91-1.39-1.66-3.25-3.07-5.58-4.24-2.33-1.16-5.38-1.75-9.15-1.75-5.65,0-10.11,1.48-13.39,4.44-3.27,2.96-5.04,7.8-5.31,14.53-.27,7.71-.27,15.56,0,23.54.27,7,2.08,12.02,5.45,15.07,3.36,3.05,7.87,4.57,13.52,4.57,3.68,0,6.97-.65,9.89-1.95,2.91-1.3,5.22-3.34,6.93-6.12,1.7-2.78,2.56-6.32,2.56-10.63v-3.36h-14.66c-.9,0-1.66-.34-2.29-1.01-.63-.67-.94-1.46-.94-2.35v-8.61c0-.99.31-1.79.94-2.42.63-.63,1.39-.94,2.29-.94h32.96c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v14.66c0,7.71-1.68,14.31-5.04,19.78-3.36,5.47-8.16,9.66-14.39,12.58-6.23,2.92-13.52,4.37-21.86,4.37Z"/>
|
|
23
|
+
<path class="cls-1" d="M710.73,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
24
|
+
<path class="cls-1" d="M805.88,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h12.24c1.34,0,2.33.32,2.96.94.63.63,1.03,1.12,1.21,1.48l35.92,56.1v-55.15c0-.99.31-1.79.94-2.42s1.39-.94,2.29-.94h13.72c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v87.44c0,.9-.32,1.68-.94,2.35-.63.67-1.44,1.01-2.42,1.01h-12.38c-1.35,0-2.31-.34-2.89-1.01-.58-.67-1.01-1.14-1.28-1.41l-35.78-54.35v53.41c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-13.59Z"/>
|
|
25
|
+
<path class="cls-1" d="M912.19,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
26
|
+
<path class="cls-1" d="M1007.35,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h35.65c11.21,0,20.04,2.58,26.5,7.74,6.46,5.16,9.69,12.58,9.69,22.26,0,6.55-1.57,12.02-4.71,16.41-3.14,4.4-7.35,7.67-12.65,9.82l18.97,33.63c.27.54.4,1.03.4,1.48,0,.72-.27,1.37-.81,1.95-.54.58-1.21.88-2.02.88h-14.93c-1.61,0-2.82-.42-3.63-1.28-.81-.85-1.39-1.63-1.75-2.35l-16.41-30.8h-16.28v31.07c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-14.66ZM1025.38,273h17.22c4.93,0,8.59-1.12,10.96-3.36,2.38-2.24,3.56-5.38,3.56-9.42s-1.17-7.22-3.5-9.55c-2.33-2.33-6.01-3.5-11.03-3.5h-17.22v25.83Z"/>
|
|
27
|
+
<path class="cls-1" d="M1100.62,324.52c-.81,0-1.48-.29-2.02-.88-.54-.58-.81-1.23-.81-1.95,0-.45.04-.85.13-1.21l32.02-86.5c.27-.99.81-1.84,1.61-2.56.81-.72,1.93-1.08,3.36-1.08h17.22c1.43,0,2.56.36,3.36,1.08.81.72,1.35,1.57,1.61,2.56l32.02,86.5c.09.36.13.76.13,1.21,0,.72-.27,1.37-.81,1.95-.54.58-1.21.88-2.02.88h-13.99c-1.35,0-2.33-.31-2.96-.94-.63-.63-1.03-1.21-1.21-1.75l-5.78-15.07h-37.94l-5.78,15.07c-.18.54-.58,1.12-1.21,1.75-.63.63-1.61.94-2.96.94h-13.99ZM1129.54,289.41h27.85l-13.86-38.74-13.99,38.74Z"/>
|
|
28
|
+
<path class="cls-1" d="M1225.64,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-72.1h-24.48c-.9,0-1.66-.31-2.29-.94-.63-.63-.94-1.39-.94-2.29v-12.11c0-.99.31-1.79.94-2.42s1.39-.94,2.29-.94h70.49c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v12.11c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-24.35v72.1c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-14.93Z"/>
|
|
29
|
+
<path class="cls-1" d="M1298.32,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
30
|
+
<path class="cls-1" d="M1393.48,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h33.77c8.97,0,16.46,1.41,22.46,4.24,6.01,2.83,10.6,6.95,13.79,12.38,3.18,5.43,4.86,12.13,5.04,20.11.09,3.95.13,7.4.13,10.36s-.05,6.37-.13,10.22c-.27,8.34-1.93,15.25-4.98,20.72-3.05,5.47-7.53,9.53-13.45,12.17-5.92,2.65-13.32,3.97-22.2,3.97h-34.44ZM1411.51,307.17h15.74c4.48,0,8.16-.67,11.03-2.02,2.87-1.35,5-3.47,6.39-6.39,1.39-2.91,2.13-6.7,2.22-11.37.09-2.6.16-4.93.2-7,.04-2.06.04-4.12,0-6.19-.05-2.06-.11-4.35-.2-6.86-.18-6.73-1.91-11.68-5.18-14.87-3.27-3.18-8.32-4.78-15.13-4.78h-15.07v59.46Z"/>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1789.84 566.93">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #fff;
|
|
7
|
+
fill-rule: evenodd;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cls-2 {
|
|
11
|
+
fill: #1d1d1b;
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
</defs>
|
|
15
|
+
<path class="cls-1" d="M352.84,410.77h1093.16c85.55,0,145.54-59.94,145.54-133.2h0c0-73.27-59.99-133.21-145.54-133.21H352.84c-85.55,0-145.54,59.94-145.54,133.2h0c0,73.26,64.99,133.2,150.54,133.2"/>
|
|
16
|
+
<g>
|
|
17
|
+
<path class="cls-2" d="M326.09,341c-.98,0-1.87-.4-2.66-1.19-.8-.79-1.19-1.68-1.19-2.66,0-.61.06-1.16.18-1.65l43.18-117.96c.37-1.35,1.13-2.54,2.3-3.58,1.16-1.04,2.79-1.56,4.87-1.56h27.19c2.08,0,3.7.52,4.87,1.56,1.16,1.04,1.93,2.24,2.3,3.58l42.99,117.96c.24.49.37,1.04.37,1.65,0,.98-.4,1.87-1.19,2.66-.8.8-1.75,1.19-2.85,1.19h-22.6c-1.84,0-3.22-.46-4.13-1.38-.92-.92-1.5-1.75-1.75-2.48l-7.17-18.74h-49.06l-6.98,18.74c-.25.74-.8,1.56-1.65,2.48-.86.92-2.33,1.38-4.41,1.38h-22.6ZM369.27,291.94h34.18l-17.27-48.51-16.9,48.51Z"/>
|
|
18
|
+
<path class="cls-2" d="M469.58,341c-1.35,0-2.45-.43-3.31-1.29-.86-.86-1.29-1.96-1.29-3.31v-119.43c0-1.35.43-2.45,1.29-3.31s1.96-1.29,3.31-1.29h24.62c1.35,0,2.45.43,3.31,1.29.86.86,1.29,1.96,1.29,3.31v119.43c0,1.35-.43,2.45-1.29,3.31s-1.96,1.29-3.31,1.29h-24.62Z"/>
|
|
19
|
+
</g>
|
|
20
|
+
<g>
|
|
21
|
+
<path class="cls-2" d="M639.25,325.87c-8.43,0-15.63-1.41-21.59-4.24-5.97-2.83-10.58-6.95-13.86-12.38-3.27-5.42-5.04-11.99-5.31-19.71-.09-3.86-.13-7.98-.13-12.38s.04-8.56.13-12.51c.27-7.53,2.04-13.94,5.31-19.24,3.27-5.29,7.94-9.35,13.99-12.17,6.05-2.83,13.2-4.24,21.46-4.24,6.64,0,12.46.85,17.49,2.56,5.02,1.7,9.24,3.92,12.65,6.66,3.41,2.74,6.01,5.72,7.8,8.95,1.79,3.23,2.74,6.32,2.83,9.28,0,.81-.27,1.5-.81,2.08-.54.58-1.26.87-2.15.87h-16.68c-.9,0-1.59-.18-2.08-.54-.49-.36-.92-.9-1.28-1.61-.63-1.61-1.64-3.25-3.03-4.91-1.39-1.66-3.25-3.07-5.58-4.24-2.33-1.16-5.38-1.75-9.15-1.75-5.65,0-10.11,1.48-13.39,4.44-3.27,2.96-5.04,7.8-5.31,14.53-.27,7.71-.27,15.56,0,23.54.27,7,2.08,12.02,5.45,15.07,3.36,3.05,7.87,4.57,13.52,4.57,3.68,0,6.97-.65,9.89-1.95,2.91-1.3,5.22-3.34,6.93-6.12,1.7-2.78,2.56-6.32,2.56-10.63v-3.36h-14.66c-.9,0-1.66-.34-2.29-1.01-.63-.67-.94-1.46-.94-2.35v-8.61c0-.99.31-1.79.94-2.42.63-.63,1.39-.94,2.29-.94h32.96c.99,0,1.79.31,2.42.94.63.63.94,1.44.94,2.42v14.66c0,7.71-1.68,14.31-5.04,19.78-3.36,5.47-8.16,9.66-14.39,12.58-6.23,2.92-13.52,4.37-21.86,4.37Z"/>
|
|
22
|
+
<path class="cls-2" d="M710.73,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
23
|
+
<path class="cls-2" d="M805.88,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h12.24c1.34,0,2.33.32,2.96.94.63.63,1.03,1.12,1.21,1.48l35.92,56.1v-55.15c0-.99.31-1.79.94-2.42s1.39-.94,2.29-.94h13.72c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v87.44c0,.9-.32,1.68-.94,2.35-.63.67-1.44,1.01-2.42,1.01h-12.38c-1.35,0-2.31-.34-2.89-1.01-.58-.67-1.01-1.14-1.28-1.41l-35.78-54.35v53.41c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-13.59Z"/>
|
|
24
|
+
<path class="cls-2" d="M912.19,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
25
|
+
<path class="cls-2" d="M1007.35,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h35.65c11.21,0,20.04,2.58,26.5,7.74,6.46,5.16,9.69,12.58,9.69,22.26,0,6.55-1.57,12.02-4.71,16.41-3.14,4.4-7.35,7.67-12.65,9.82l18.97,33.63c.27.54.4,1.03.4,1.48,0,.72-.27,1.37-.81,1.95-.54.58-1.21.88-2.02.88h-14.93c-1.61,0-2.82-.42-3.63-1.28-.81-.85-1.39-1.63-1.75-2.35l-16.41-30.8h-16.28v31.07c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-14.66ZM1025.38,273h17.22c4.93,0,8.59-1.12,10.96-3.36,2.38-2.24,3.56-5.38,3.56-9.42s-1.17-7.22-3.5-9.55c-2.33-2.33-6.01-3.5-11.03-3.5h-17.22v25.83Z"/>
|
|
26
|
+
<path class="cls-2" d="M1100.62,324.52c-.81,0-1.48-.29-2.02-.88-.54-.58-.81-1.23-.81-1.95,0-.45.04-.85.13-1.21l32.02-86.5c.27-.99.81-1.84,1.61-2.56.81-.72,1.93-1.08,3.36-1.08h17.22c1.43,0,2.56.36,3.36,1.08.81.72,1.35,1.57,1.61,2.56l32.02,86.5c.09.36.13.76.13,1.21,0,.72-.27,1.37-.81,1.95-.54.58-1.21.88-2.02.88h-13.99c-1.35,0-2.33-.31-2.96-.94-.63-.63-1.03-1.21-1.21-1.75l-5.78-15.07h-37.94l-5.78,15.07c-.18.54-.58,1.12-1.21,1.75-.63.63-1.61.94-2.96.94h-13.99ZM1129.54,289.41h27.85l-13.86-38.74-13.99,38.74Z"/>
|
|
27
|
+
<path class="cls-2" d="M1225.64,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-72.1h-24.48c-.9,0-1.66-.31-2.29-.94-.63-.63-.94-1.39-.94-2.29v-12.11c0-.99.31-1.79.94-2.42s1.39-.94,2.29-.94h70.49c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v12.11c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-24.35v72.1c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-14.93Z"/>
|
|
28
|
+
<path class="cls-2" d="M1298.32,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h60.94c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.76c0,.9-.32,1.66-.94,2.29-.63.63-1.44.94-2.42.94h-43.59v21.12h40.63c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v9.95c0,.9-.32,1.66-.94,2.29s-1.44.94-2.42.94h-40.63v21.79h44.66c.99,0,1.79.32,2.42.94.63.63.94,1.44.94,2.42v10.63c0,.99-.32,1.79-.94,2.42s-1.44.94-2.42.94h-62.02Z"/>
|
|
29
|
+
<path class="cls-2" d="M1393.48,324.52c-.99,0-1.79-.31-2.42-.94-.63-.63-.94-1.43-.94-2.42v-87.44c0-.99.31-1.79.94-2.42s1.43-.94,2.42-.94h33.77c8.97,0,16.46,1.41,22.46,4.24,6.01,2.83,10.6,6.95,13.79,12.38,3.18,5.43,4.86,12.13,5.04,20.11.09,3.95.13,7.4.13,10.36s-.05,6.37-.13,10.22c-.27,8.34-1.93,15.25-4.98,20.72-3.05,5.47-7.53,9.53-13.45,12.17-5.92,2.65-13.32,3.97-22.2,3.97h-34.44ZM1411.51,307.17h15.74c4.48,0,8.16-.67,11.03-2.02,2.87-1.35,5-3.47,6.39-6.39,1.39-2.91,2.13-6.7,2.22-11.37.09-2.6.16-4.93.2-7,.04-2.06.04-4.12,0-6.19-.05-2.06-.11-4.35-.2-6.86-.18-6.73-1.91-11.68-5.18-14.87-3.27-3.18-8.32-4.78-15.13-4.78h-15.07v59.46Z"/>
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1700.79 566.93">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill-rule: evenodd;
|
|
7
|
+
opacity: .5;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cls-2 {
|
|
11
|
+
fill: #fff;
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
</defs>
|
|
15
|
+
<path class="cls-1" d="M376.65,410.77h939.48c85.55,0,145.54-59.94,145.54-133.2h0c0-73.27-59.99-133.21-145.54-133.21H381.65c-85.55,0-150.54,59.94-150.54,133.2h0c0,73.26,64.99,133.2,150.54,133.2"/>
|
|
16
|
+
<g>
|
|
17
|
+
<path class="cls-2" d="M626.46,325.63c-.92,0-1.72-.32-2.4-.96-.69-.64-1.03-1.46-1.03-2.47v-89.25c0-1.01.34-1.83,1.03-2.47.69-.64,1.49-.96,2.4-.96h12.77c1.37,0,2.4.37,3.09,1.1.69.73,1.17,1.28,1.44,1.65l25.27,46.55,25.54-46.55c.18-.37.62-.91,1.3-1.65.69-.73,1.72-1.1,3.09-1.1h12.77c1.01,0,1.83.32,2.47.96.64.64.96,1.46.96,2.47v89.25c0,1.01-.32,1.83-.96,2.47-.64.64-1.47.96-2.47.96h-14.01c-.92,0-1.69-.32-2.33-.96-.64-.64-.96-1.46-.96-2.47v-55.47l-17.44,32.68c-.46.82-1.05,1.56-1.79,2.2-.73.64-1.69.96-2.88.96h-6.45c-1.19,0-2.15-.32-2.88-.96-.73-.64-1.33-1.37-1.79-2.2l-17.44-32.68v55.47c0,1.01-.32,1.83-.96,2.47-.64.64-1.42.96-2.33.96h-14.01Z"/>
|
|
18
|
+
<path class="cls-2" d="M784.28,327c-8.33,0-15.52-1.37-21.56-4.12-6.04-2.75-10.76-6.89-14.14-12.43-3.39-5.54-5.22-12.52-5.49-20.94-.09-3.93-.14-7.85-.14-11.74s.04-7.85.14-11.88c.27-8.24,2.13-15.17,5.56-20.8,3.43-5.63,8.19-9.86,14.28-12.7,6.09-2.84,13.2-4.26,21.35-4.26s15.13,1.42,21.21,4.26c6.09,2.84,10.87,7.07,14.35,12.7,3.48,5.63,5.31,12.56,5.49,20.8.18,4.03.28,7.99.28,11.88s-.09,7.81-.28,11.74c-.27,8.42-2.11,15.4-5.49,20.94-3.39,5.54-8.1,9.68-14.14,12.43-6.04,2.75-13.18,4.12-21.42,4.12ZM784.28,309.29c5.31,0,9.68-1.62,13.11-4.88,3.43-3.25,5.24-8.44,5.42-15.58.18-4.03.27-7.8.27-11.33s-.09-7.25-.27-11.19c-.09-4.76-.96-8.65-2.61-11.67-1.65-3.02-3.82-5.24-6.52-6.66-2.7-1.42-5.84-2.13-9.41-2.13s-6.73.71-9.47,2.13c-2.75,1.42-4.92,3.64-6.52,6.66-1.6,3.02-2.5,6.91-2.68,11.67-.09,3.94-.14,7.67-.14,11.19s.04,7.3.14,11.33c.27,7.14,2.1,12.34,5.49,15.58,3.39,3.25,7.78,4.88,13.18,4.88Z"/>
|
|
19
|
+
<path class="cls-2" d="M856.69,325.63c-1.01,0-1.83-.32-2.47-.96-.64-.64-.96-1.46-.96-2.47v-89.25c0-1.01.32-1.83.96-2.47.64-.64,1.46-.96,2.47-.96h34.47c9.15,0,16.8,1.44,22.93,4.33,6.13,2.88,10.82,7.09,14.07,12.63,3.25,5.54,4.96,12.38,5.15,20.53.09,4.03.14,7.55.14,10.57s-.05,6.5-.14,10.44c-.27,8.51-1.97,15.56-5.08,21.15-3.11,5.58-7.69,9.73-13.73,12.43-6.04,2.7-13.59,4.05-22.66,4.05h-35.15ZM875.09,307.92h16.07c4.58,0,8.33-.69,11.26-2.06,2.93-1.37,5.1-3.55,6.52-6.52,1.42-2.97,2.17-6.84,2.27-11.6.09-2.65.16-5.03.21-7.14.04-2.11.04-4.21,0-6.32-.05-2.1-.12-4.44-.21-7-.18-6.87-1.95-11.92-5.29-15.17-3.34-3.25-8.49-4.88-15.45-4.88h-15.38v60.69Z"/>
|
|
20
|
+
<path class="cls-2" d="M964.67,325.63c-1.01,0-1.83-.32-2.47-.96-.64-.64-.96-1.46-.96-2.47v-89.25c0-1.01.32-1.83.96-2.47.64-.64,1.46-.96,2.47-.96h15.52c1.01,0,1.83.32,2.47.96.64.64.96,1.46.96,2.47v89.25c0,1.01-.32,1.83-.96,2.47-.64.64-1.46.96-2.47.96h-15.52Z"/>
|
|
21
|
+
<path class="cls-2" d="M1018,325.63c-1.01,0-1.83-.32-2.47-.96-.64-.64-.96-1.46-.96-2.47v-89.25c0-1.01.32-1.83.96-2.47.64-.64,1.46-.96,2.47-.96h61.24c1.01,0,1.83.32,2.47.96.64.64.96,1.46.96,2.47v11.67c0,1.01-.32,1.83-.96,2.47-.64.64-1.47.96-2.47.96h-43.25v23.21h40.51c1.01,0,1.83.32,2.47.96.64.64.96,1.47.96,2.47v11.67c0,.92-.32,1.7-.96,2.33s-1.46.96-2.47.96h-40.51v32.54c0,1.01-.32,1.83-.96,2.47-.64.64-1.46.96-2.47.96h-14.56Z"/>
|
|
22
|
+
<path class="cls-2" d="M1112.25,325.63c-1.01,0-1.83-.32-2.47-.96-.64-.64-.96-1.46-.96-2.47v-89.25c0-1.01.32-1.83.96-2.47.64-.64,1.46-.96,2.47-.96h15.52c1.01,0,1.83.32,2.47.96.64.64.96,1.46.96,2.47v89.25c0,1.01-.32,1.83-.96,2.47-.64.64-1.46.96-2.47.96h-15.52Z"/>
|
|
23
|
+
<path class="cls-2" d="M1165.57,325.63c-1.01,0-1.83-.32-2.47-.96-.64-.64-.96-1.46-.96-2.47v-89.25c0-1.01.32-1.83.96-2.47.64-.64,1.46-.96,2.47-.96h62.2c1.01,0,1.83.32,2.47.96.64.64.96,1.46.96,2.47v10.99c0,.92-.32,1.69-.96,2.33s-1.47.96-2.47.96h-44.49v21.56h41.47c1.01,0,1.83.32,2.47.96.64.64.96,1.47.96,2.47v10.16c0,.92-.32,1.7-.96,2.33-.64.64-1.47.96-2.47.96h-41.47v22.25h45.59c1.01,0,1.83.32,2.47.96.64.64.96,1.47.96,2.47v10.85c0,1.01-.32,1.83-.96,2.47-.64.64-1.47.96-2.47.96h-63.3Z"/>
|
|
24
|
+
<path class="cls-2" d="M1262.7,325.63c-1.01,0-1.83-.32-2.47-.96-.64-.64-.96-1.46-.96-2.47v-89.25c0-1.01.32-1.83.96-2.47.64-.64,1.46-.96,2.47-.96h34.47c9.15,0,16.8,1.44,22.93,4.33,6.13,2.88,10.82,7.09,14.07,12.63,3.25,5.54,4.96,12.38,5.15,20.53.09,4.03.14,7.55.14,10.57s-.05,6.5-.14,10.44c-.27,8.51-1.97,15.56-5.08,21.15-3.11,5.58-7.69,9.73-13.73,12.43-6.04,2.7-13.59,4.05-22.66,4.05h-35.15ZM1281.1,307.92h16.07c4.58,0,8.33-.69,11.26-2.06,2.93-1.37,5.1-3.55,6.52-6.52,1.42-2.97,2.17-6.84,2.27-11.6.09-2.65.16-5.03.21-7.14.04-2.11.04-4.21,0-6.32-.05-2.1-.12-4.44-.21-7-.18-6.87-1.95-11.92-5.29-15.17-3.34-3.25-8.49-4.88-15.45-4.88h-15.38v60.69Z"/>
|
|
25
|
+
</g>
|
|
26
|
+
<g>
|
|
27
|
+
<path class="cls-2" d="M349.9,341c-.98,0-1.87-.4-2.66-1.19-.8-.79-1.19-1.68-1.19-2.66,0-.61.06-1.16.18-1.65l43.18-117.96c.37-1.35,1.13-2.54,2.3-3.58,1.16-1.04,2.78-1.56,4.87-1.56h27.19c2.08,0,3.7.52,4.87,1.56,1.16,1.04,1.93,2.24,2.3,3.58l42.99,117.96c.24.49.37,1.04.37,1.65,0,.98-.4,1.87-1.19,2.66-.8.8-1.75,1.19-2.85,1.19h-22.6c-1.84,0-3.22-.46-4.13-1.38-.92-.92-1.5-1.75-1.75-2.48l-7.17-18.74h-49.06l-6.98,18.74c-.25.74-.8,1.56-1.65,2.48-.86.92-2.33,1.38-4.41,1.38h-22.6ZM393.08,291.94h34.18l-17.27-48.51-16.9,48.51Z"/>
|
|
28
|
+
<path class="cls-2" d="M493.39,341c-1.35,0-2.45-.43-3.31-1.29-.86-.86-1.29-1.96-1.29-3.31v-119.43c0-1.35.43-2.45,1.29-3.31s1.96-1.29,3.31-1.29h24.62c1.35,0,2.45.43,3.31,1.29.86.86,1.29,1.96,1.29,3.31v119.43c0,1.35-.43,2.45-1.29,3.31s-1.96,1.29-3.31,1.29h-24.62Z"/>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|