@osfarm/itineraire-technique 1.1.4 → 1.1.6
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/.github/copilot-instructions.md +56 -0
- package/README.md +16 -2
- package/css/styles-editor.css +1 -1
- package/css/styles-editor.css.map +1 -1
- package/editor.html +13 -0
- package/images/Logo Triple Performance - blanc - vectoriel.svg +1 -0
- package/images/Tika.svg +7 -0
- package/index.html +353 -0
- package/js/chart-render.js +177 -103
- package/js/editor-crops.js +1 -0
- package/js/editor-interventions.js +63 -3
- package/package.json +1 -1
- package/scss/styles-editor.scss +10 -0
- package/test/test donut no transcript.json +324 -0
- package/test/test horizontal no transcript.json +324 -0
- package/test/test.json +424 -320
- package/images/rendu_frise.png +0 -0
- package/images/rendu_rotation.png +0 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Copilot Instructions for TIKA Itineraire Technique
|
|
2
|
+
|
|
3
|
+
## Project Overview
|
|
4
|
+
This project visualizes agricultural technical itineraries (sequences of interventions on a plot) for analysis and documentation. It provides both a visualizer and an editor, designed for easy integration into web pages and use on Triple Performance.
|
|
5
|
+
|
|
6
|
+
## Architecture & Key Components
|
|
7
|
+
- **HTML files**: Main entry points (`visualisateur.html`, `editor.html`, etc.)
|
|
8
|
+
- **JS directory**: Core logic for rendering charts, editing, exporting, and managing interventions. Key files:
|
|
9
|
+
- `chart-render.js`: Main chart rendering logic (frise and rotation views)
|
|
10
|
+
- `editor-attributes.js`, `editor-crops.js`, `editor-export.js`, `editor-interventions.js`, `editor-wiki-editor.js`: Editor and data manipulation modules
|
|
11
|
+
- **CSS/SCSS**: Styling for both editor and rendering views
|
|
12
|
+
- **test/**: Contains example JSON data and templates for validation and development
|
|
13
|
+
|
|
14
|
+
## Data Flow & Integration
|
|
15
|
+
- Input data is provided as JSON, following the format in `test/test.json` and `test.after.json`
|
|
16
|
+
- Rendering is performed by instantiating `RotationRenderer` with a target div and JSON data
|
|
17
|
+
- External dependencies: Apache Echarts, JQuery, Bootstrap, Underscore (included via CDN in HTML)
|
|
18
|
+
|
|
19
|
+
## Developer Workflows
|
|
20
|
+
- **Build**: No complex build system; use npm to install and copy files as needed
|
|
21
|
+
- Example: `npm i @osfarm/itineraire-technique`
|
|
22
|
+
- Copy JS/CSS from `node_modules` to local `js/` and `css/` folders
|
|
23
|
+
- **Testing**: Use the sample JSON files in `test/` for manual validation; no automated test runner
|
|
24
|
+
- **Debugging**: Open HTML files in browser, use browser dev tools; inspect JSON format and rendering
|
|
25
|
+
|
|
26
|
+
## Project-Specific Conventions
|
|
27
|
+
- All rendering logic expects a specific JSON schema (see `test/test.json`)
|
|
28
|
+
- Editor modules are split by concern (attributes, crops, interventions, etc.)
|
|
29
|
+
- No framework; vanilla JS modules and direct DOM manipulation
|
|
30
|
+
- CSS/SCSS files are mapped 1:1 to editor and rendering views
|
|
31
|
+
|
|
32
|
+
## Integration Points
|
|
33
|
+
- Designed for easy embedding in any HTML page
|
|
34
|
+
- Used on Triple Performance and Google Spreadsheet add-on
|
|
35
|
+
- Can be extended by adding new JS modules or updating JSON schema
|
|
36
|
+
|
|
37
|
+
## Example Usage
|
|
38
|
+
```js
|
|
39
|
+
let renderer = new RotationRenderer('uneDIVID', jsonData);
|
|
40
|
+
renderer.render();
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Key Files & Directories
|
|
44
|
+
- `js/chart-render.js`: Main chart logic
|
|
45
|
+
- `test/test.json`: Example data format
|
|
46
|
+
- `editor.html`, `visualisateur.html`: Entry points
|
|
47
|
+
- `css/styles-rendering.css`, `css/styles-editor.css`: Styling
|
|
48
|
+
|
|
49
|
+
## Tips for AI Agents
|
|
50
|
+
- Always validate JSON input against `test/test.json`
|
|
51
|
+
- When adding features, follow the modular JS file structure
|
|
52
|
+
- Reference CDN links for dependencies in HTML
|
|
53
|
+
- Prefer direct DOM manipulation and vanilla JS patterns
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
For questions about unclear conventions or missing documentation, ask the user for clarification or examples from their workflow.
|
package/README.md
CHANGED
|
@@ -57,6 +57,20 @@ Dans votre HTML, inclure les fichiers d'echarts :
|
|
|
57
57
|
|
|
58
58
|
Puis appeler la fonction de rendu sur votre JSON (vous devez avoir deux div dans votre html, un pour le graphique et un pour la liste textuelle des étapes) :
|
|
59
59
|
```
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
fetch('ma_rotation.json')
|
|
61
|
+
.then(response => {
|
|
62
|
+
if (!response.ok) {
|
|
63
|
+
throw new Error("Erreur HTTP " + response.status);
|
|
64
|
+
}
|
|
65
|
+
return response.json();
|
|
66
|
+
})
|
|
67
|
+
.then(data => {
|
|
68
|
+
let renderer = new RotationRenderer('rotation-chart-id', data);
|
|
69
|
+
renderer.render();
|
|
70
|
+
})
|
|
71
|
+
.catch(error => {
|
|
72
|
+
console.error("Impossible de charger le JSON :", error);
|
|
73
|
+
});
|
|
62
74
|
```
|
|
75
|
+
|
|
76
|
+
Le JSON doit respecter le format que vous pourrez trouver dans les différents [exemples de test](https://osfarm.github.io/itineraire-technique/test/test.json).
|
package/css/styles-editor.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.main-header{background-color:green;color:#fff;height:3rem;display:flex;align-items:center}.editor-view{overflow-y:auto;height:calc(100vh - 4rem)}.rotation_item .step-edit{color:#878787;cursor:pointer;display:none;margin-left:10px;font-size:70%;vertical-align:super}.rotation_item:hover .step-edit{display:inline !important}.welcome-view{background-color:#a9e9a9;color:green;padding:1rem;margin-top:1rem;border-radius:1rem}.card-white{background-color:#fff;padding:1rem;border-radius:1rem}.card-holder{background-color:#f5f5f5;padding:1rem;border-radius:1rem;margin:auto}.editable-row{background-color:#f7f7f7;min-height:3rem;display:flex;align-items:center;border-radius:.5rem}.editable-row .edit-buttons{visibility:hidden}.editable-row:hover>.edit-buttons{visibility:visible}.primary-button{color:#fff;background-color:green;border:green}.primary-button:hover{background-color:#026602}.close-step-times{background:none;border:none;color:#878787;font-size:120%}.close-step-times:hover{color:#494949}#cropsContainer .drag-handle{color:#ccc;font-weight:normal;font-size:86%;margin-right:10px;vertical-align:middle;cursor:grab}/*# sourceMappingURL=styles-editor.css.map */
|
|
1
|
+
.main-header{background-color:green;color:#fff;height:3rem;display:flex;align-items:center}.editor-view{overflow-y:auto;height:calc(100vh - 4rem)}.rotation_item .step-edit{color:#878787;cursor:pointer;display:none;margin-left:10px;font-size:70%;vertical-align:super}.rotation_item:hover .step-edit{display:inline !important}.welcome-view{background-color:#a9e9a9;color:green;padding:1rem;margin-top:1rem;border-radius:1rem}.card-white{background-color:#fff;padding:1rem;border-radius:1rem}.card-holder{background-color:#f5f5f5;padding:1rem;border-radius:1rem;margin:auto}.editable-row{background-color:#f7f7f7;min-height:3rem;display:flex;align-items:center;border-radius:.5rem}.editable-row .edit-buttons{visibility:hidden}.editable-row:hover>.edit-buttons{visibility:visible}.intervention-row{background:#e0e0e0}.primary-button{color:#fff;background-color:green;border:green}.primary-button:hover{background-color:#026602}.close-step-times{background:none;border:none;color:#878787;font-size:120%}.close-step-times:hover{color:#494949}#cropsContainer .drag-handle{color:#ccc;font-weight:normal;font-size:86%;margin-right:10px;vertical-align:middle;cursor:grab}.form-control.text-right{text-align:right}/*# sourceMappingURL=styles-editor.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../scss/styles-editor.scss"],"names":[],"mappings":"AAKA,aACI,uBACA,WACA,OALY,KAOZ,aACA,mBAGJ,aACI,gBAGA,0BAKA,0BACI,cACA,eACA,aACA,iBACA,cACA,qBAGJ,gCACI,0BAIR,cACI,yBACA,YACA,aACA,gBACA,mBAGJ,YACI,sBACA,aACA,mBAGJ,aACI,yBACA,aACA,mBACA,YAGJ,cACI,yBACA,gBAEA,aACA,mBAEA,oBAEA,4BACI,kBAGJ,kCACI,mBAIR,gBACI,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../scss/styles-editor.scss"],"names":[],"mappings":"AAKA,aACI,uBACA,WACA,OALY,KAOZ,aACA,mBAGJ,aACI,gBAGA,0BAKA,0BACI,cACA,eACA,aACA,iBACA,cACA,qBAGJ,gCACI,0BAIR,cACI,yBACA,YACA,aACA,gBACA,mBAGJ,YACI,sBACA,aACA,mBAGJ,aACI,yBACA,aACA,mBACA,YAGJ,cACI,yBACA,gBAEA,aACA,mBAEA,oBAEA,4BACI,kBAGJ,kCACI,mBAIR,kBACI,mBAGJ,gBACI,MA/EgB,KAgFhB,iBAlFW,MAmFX,OAnFW,MAqFX,sBACI,iBArFa,QA0FrB,kBACI,gBACA,YACA,cACA,eAEA,wBACI,cAIR,6BACI,WACA,mBACA,cACA,kBACA,sBACA,YAIA,yBACI","file":"styles-editor.css"}
|
package/editor.html
CHANGED
|
@@ -124,6 +124,16 @@
|
|
|
124
124
|
<input type="color" id="cropColor" class="form-control form-control-color w-100">
|
|
125
125
|
</div>
|
|
126
126
|
</div>
|
|
127
|
+
<div class="row mb-2">
|
|
128
|
+
<div class="col-12">
|
|
129
|
+
<div class="form-check">
|
|
130
|
+
<input class="form-check-input" type="checkbox" id="cropSecondary">
|
|
131
|
+
<label class="form-check-label" for="cropSecondary">
|
|
132
|
+
Culture secondaire
|
|
133
|
+
</label>
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
</div>
|
|
127
137
|
<div class="row"><div id="itk-api-comment" class="col text-center text-muted small"></div></div>
|
|
128
138
|
</form>
|
|
129
139
|
</div>
|
|
@@ -401,6 +411,7 @@
|
|
|
401
411
|
this.step.description = step.description ?? "";
|
|
402
412
|
this.step.interventions = step.interventions?.map(i => new Intervention(i.day, i.name, i.type, i.description)) || [];
|
|
403
413
|
this.step.attributes = step.attributes?.map(a => new Attribute(a.name, a.value)) || [];
|
|
414
|
+
this.step.secondary_crop = step.secondary_crop ?? false;
|
|
404
415
|
|
|
405
416
|
this.step.useDefaultColor = step.useDefaultColor ?? true;
|
|
406
417
|
this.step.useDefaultStartDate = step.useDefaultStartDate ?? true;
|
|
@@ -481,6 +492,7 @@
|
|
|
481
492
|
this.step.startDate = new Date(getInputValue("cropStartDate"));
|
|
482
493
|
this.step.endDate = new Date(getInputValue("cropEndDate"));
|
|
483
494
|
this.step.color = getInputValue("cropColor");
|
|
495
|
+
this.step.secondary_crop = document.getElementById("cropSecondary").checked;
|
|
484
496
|
}
|
|
485
497
|
}
|
|
486
498
|
|
|
@@ -722,6 +734,7 @@
|
|
|
722
734
|
$("#cropStartDate").on("change", _.debounce(updateSelectedStepStartDate, 500));
|
|
723
735
|
$("#cropEndDate").on("change", _.debounce(updateSelectedStepEndDate, 500));
|
|
724
736
|
$("#cropColor").on("input", _.debounce(updateSelectedStepColor, 500));
|
|
737
|
+
$("#cropSecondary").on("change", _.debounce(updateSelectedStep, 500));
|
|
725
738
|
}
|
|
726
739
|
|
|
727
740
|
function enableTitleEditing() {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1199.12 293.78"><defs><style>.cls-1{font-size:153.96px;}.cls-1,.cls-5,.cls-6{fill:#fff;}.cls-2,.cls-3{font-family:PermanentMarker-Regular, Permanent Marker;font-weight:400;font-style:normal;}.cls-2{letter-spacing:-0.03em;}.cls-4,.cls-7{fill:none;}.cls-4{font-size:12px;}.cls-6{fill-rule:evenodd;}</style></defs><g id="Calque_2" data-name="Calque 2"><g id="Layer_1" data-name="Layer 1"><text class="cls-1" transform="translate(440.34 129.88) scale(0.72 0.7)"><tspan class="cls-2">R</tspan><tspan class="cls-3" x="94.87" y="0">IPLE</tspan><tspan class="cls-4"></tspan></text><path class="cls-5" d="M348.15,49.16a9.94,9.94,0,0,0-.54-2.18c-.26-.65-.54-1.37-.84-2.18a33,33,0,0,1-1.39-3.91,17.75,17.75,0,0,1-.61-5,6.12,6.12,0,0,1,.77-2.18,6.8,6.8,0,0,1,.92-1.12l.61-2.71h2.31a20.85,20.85,0,0,0,2.53.15h2.54q5.83,0,12-.45T379,28.57q7.07-.91,15.21-1.36c.51-1.1.85-1.8,1-2.1s.33-.65.54-1.05l1.69-.91c2.36-.09,4,.18,4.92.83a12,12,0,0,1,2.15,1.88c2.66-.2,5.38-.47,8.14-.83s5.63-.72,8.61-1.12q6.13-.77,12.44-1.51A104,104,0,0,1,446,21.65q2.61,0,4.92.15c1.54.1,3,.25,4.46.45l1.84,1.35a8.93,8.93,0,0,0,1.54,2,19.43,19.43,0,0,0,2.15,1.8,30.54,30.54,0,0,1,4.53,4.51c1.48,1.81,2,4.46,1.61,8l-.76,1.51a10.32,10.32,0,0,1-1.54,1.2l-1.54,2h-1.69a8.72,8.72,0,0,0-2.3.23,15.83,15.83,0,0,0-1.85.68,8.84,8.84,0,0,1-1.38.52l-1.69.53q-1.69-.15-2.61-.15h-2.15a90.48,90.48,0,0,0-10,.6q-5.38.6-10.45,1.35c-2.46.3-4.81.58-7.07.83l-6.14.68c-1,2.6-2,4.91-2.77,6.91s-1.69,4-2.61,6-1.79,4-2.61,6.08-1.59,4.34-2.31,6.84a44.62,44.62,0,0,0-3.07,5.19,27,27,0,0,0-2,5.64,15.71,15.71,0,0,0-3.3,5.56q-1,3-1.77,5.11l-.61,2.26a5.67,5.67,0,0,0-1.31,1.65,5.13,5.13,0,0,1-.84,1.36,24,24,0,0,1-1.23,3.76c-.21.5-.41,1-.62,1.57a2.06,2.06,0,0,0-.15,1.28,6.82,6.82,0,0,1-.92,2.56,11,11,0,0,1-.16,1.8l-.3,1.81a17.47,17.47,0,0,0-.46,1.88,2.62,2.62,0,0,0,.15,1.57l.92,1.21a5.27,5.27,0,0,1,.77,1.5,1.89,1.89,0,0,0,.77.45,2,2,0,0,1,.77.45,4.57,4.57,0,0,0,2.3,1.21l1.54,1.8q.92,5.42-1.69,8.42-2.77,3.45-9.22,3.46L383,137a8.54,8.54,0,0,1-1.23-1.36c-.92-.4-1.69-.72-2.31-1a4.13,4.13,0,0,1-1.69-1.43,1.37,1.37,0,0,0-.77-.38,1.37,1.37,0,0,1-.76-.37,8.92,8.92,0,0,1-2.46-1.06l-1.69-.9q.15-1.5.15-2.1a13.77,13.77,0,0,1-1.92-3.61,34.62,34.62,0,0,1-1.15-4.06c-.31-1.1-.59-2.11-.85-3a7.41,7.41,0,0,0-1.15-2.4q-.31-10.53,2-17.67t5.07-13.91c1-2.4,2-4.86,2.92-7.36s1.74-5.06,2.46-7.67l1.69-1.65A9.19,9.19,0,0,1,382.72,66a9.89,9.89,0,0,1,.77-3.83c.51-1.25,1.07-2.53,1.69-3.84.41-.8.79-1.6,1.15-2.4a8.7,8.7,0,0,0,.69-2.11c-.72,0-1.36,0-1.92.08s-1.15.13-1.77.23a17.44,17.44,0,0,1-3.84.45,9.24,9.24,0,0,1-2-.15,6.34,6.34,0,0,1-2.31.67c-.72,0-1.43.08-2.15.08h-3.69a7.74,7.74,0,0,0-2.92.45H358.6a19.33,19.33,0,0,1-2.77-.23,10.05,10.05,0,0,1-3.23-1.12l-1.07-1.21c-.62-1.1-1.18-1.7-1.69-1.8l-1.69-.45Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M443.35,124.91c-.36.07-.68-.19-1-.79a17.48,17.48,0,0,0-1-1.74h1.19a8.4,8.4,0,0,1-.38-4.26c.25-1.3.56-2.56.91-3.79s.67-2.42.92-3.58a6.18,6.18,0,0,0-.38-3.63.5.5,0,0,0,.81-.26,6.32,6.32,0,0,0,.43-1.47,8.42,8.42,0,0,0,.11-1.9c0-.66-.09-1.21-.16-1.63a40.23,40.23,0,0,0,2.2-6.74q.81-3.47,1.45-6.89T450,81.6a34.77,34.77,0,0,1,2.09-6,6.74,6.74,0,0,1,3.18.37,4.11,4.11,0,0,1,2.2,1.42,28.85,28.85,0,0,0,5.92-6.1q2.58-3.58,5.21-7a35,35,0,0,1,6-6.06A15.75,15.75,0,0,1,482.82,55q2.58,1.78,5.81,3.84A17.7,17.7,0,0,1,493.9,64c.57.36,1.13.72,1.67,1.11s1.09.75,1.67,1.1v1.58A12.61,12.61,0,0,1,499.76,71a33.25,33.25,0,0,1,1.83,3.9c.54,1.36,1.06,2.75,1.56,4.15a28.48,28.48,0,0,0,1.72,3.9,2.55,2.55,0,0,0-.16,1.1,4.66,4.66,0,0,0,.22,1,9,9,0,0,1,.26,1,7.24,7.24,0,0,1,.11,1.42,14.11,14.11,0,0,1-3.71,9,26,26,0,0,1-8,5.58,69.29,69.29,0,0,1-9.95,3.68,92.26,92.26,0,0,0-9.57,3.32q0,.42.48.42t.27.63q3.22,1.89,5,3.05a36.35,36.35,0,0,0,3.33,1.95,19.36,19.36,0,0,0,3.44,1.31c1.26.36,3,.78,5.22,1.27s4,.89,5.21,1.21,2.39.56,3.39.73,2.08.34,3.23.48,2.69.31,4.62.52a9.64,9.64,0,0,1,1.94,2.74,14.07,14.07,0,0,1,1.08,3.16,9.94,9.94,0,0,1,.16,3,4,4,0,0,1-.92,2.26.48.48,0,0,0,.59.37,3.29,3.29,0,0,1,1,0,5.15,5.15,0,0,0-1.29,1.26l-1.08,1.48a9.36,9.36,0,0,1-1.24,1.37,3,3,0,0,1-1.77.73q-3.87,1.47-9.9.11a128.41,128.41,0,0,1-15.38-4.84c-3.08-1.13-5.59-2.14-7.53-3.06a52.26,52.26,0,0,1-5.05-2.68,33,33,0,0,1-4-2.84q-1.83-1.53-4.2-3.63a.5.5,0,0,0-.37.42.51.51,0,0,1-.38.42,25.69,25.69,0,0,1-1.67,6.84,24.16,24.16,0,0,1-3.28,5.37c-1.14-.21-1.92-.11-2.31.31a6.9,6.9,0,0,1-1.45,1.16,2.68,2.68,0,0,1-1.61-.05,6.38,6.38,0,0,1-1-.58c-.29-.21-.61-.42-1-.63a3,3,0,0,0-1.72-.21c-.22-.63-.43-1.25-.65-1.84s-.79-.86-1.72-.79a3.44,3.44,0,0,0,.22-1.63,6.74,6.74,0,0,0-.32-1.27,10.7,10.7,0,0,1-.38-1.21A2.37,2.37,0,0,1,443.35,124.91Zm35.92-48.1a22.77,22.77,0,0,1-3.12,3.63q-1.71,1.64-3.38,3.37a23.13,23.13,0,0,0-3,3.79A14.06,14.06,0,0,0,468,92.49,37.84,37.84,0,0,0,477.45,90q4.94-2,9.35-3.73A11,11,0,0,0,484,80,12.07,12.07,0,0,0,479.27,76.81Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M510,135.22a7.46,7.46,0,0,1-2.42-2.42,16.1,16.1,0,0,1-1.5-3.16,27.09,27.09,0,0,1-1-3.52c-.25-1.23-.52-2.4-.81-3.53a3,3,0,0,1,.65-2.15,16,16,0,0,1,1.4-1.32,41.6,41.6,0,0,0,4.62-.42l4-.63c1.29-.21,2.58-.4,3.87-.58a32.2,32.2,0,0,1,4.2-.26c1.07-2.18,2.08-4.27,3-6.27s1.83-3.91,2.69-5.73a27.66,27.66,0,0,1,1.67-4.9q1-2.25,2-4.31c.64-1.37,1.21-2.74,1.72-4.1a17.26,17.26,0,0,0,1-4.37q1.3-3.69,2.32-6.79A39.82,39.82,0,0,0,539,73.34c-2.73.42-4.92.83-6.56,1.21a17.75,17.75,0,0,0-3.55,1.11,7.32,7.32,0,0,1-3.39-.85,6.28,6.28,0,0,1-2-1.79,11.07,11.07,0,0,1-1.29-2.42c-.36-.91-.79-1.85-1.29-2.84a5.47,5.47,0,0,0,.21-2.79,3.77,3.77,0,0,0-1.29-2.68,1.93,1.93,0,0,0,1.29-1.42,2.36,2.36,0,0,0,.11-1.84,19.79,19.79,0,0,1,3.87-.69l4-.31q2-.16,3.81-.42a7.71,7.71,0,0,0,3.12-1.11l11.67-.42q6.07-.21,11.24-.53a14.43,14.43,0,0,0,4.47.64,40.75,40.75,0,0,1,5,.31A13.06,13.06,0,0,1,573,57.87a5.69,5.69,0,0,1,2.74,3.68,5,5,0,0,1,2.42.84,2.75,2.75,0,0,1,1,1.53,6.71,6.71,0,0,1,.16,2c0,.74-.05,1.46-.05,2.16a14.37,14.37,0,0,1-4.36,2,40.45,40.45,0,0,1-5.75,1.26,60.36,60.36,0,0,1-6.51.63q-3.39.17-6.61.27a69.34,69.34,0,0,1-1.88,8.15q-1.35,4.69-2.75,9.16t-2.42,8a16.23,16.23,0,0,0-.91,4.58c-.72,1.61-1.31,3-1.78,4.1L545,109.44c-.39,1-.79,1.94-1.18,2.89s-.88,2-1.45,3.21h7.31a2.13,2.13,0,0,0,1,1.58,11.29,11.29,0,0,0,1.61.74,6.71,6.71,0,0,1,1.56.79,1.69,1.69,0,0,1,.7,1.52,3.81,3.81,0,0,1,2.58,1.58,3.25,3.25,0,0,1,.27,2.26,7.67,7.67,0,0,1-1.07,2.48c-.54.84-1.06,1.58-1.56,2.21a2.12,2.12,0,0,0-1.83.47,12.91,12.91,0,0,0-1.61,1.53,25.74,25.74,0,0,0-6.13-.11q-3,.32-5.6.53c-.36.07-.5.26-.43.58a.59.59,0,0,1-.21.68,18.82,18.82,0,0,0-6.83-.84,45.59,45.59,0,0,0-7.1,1q-3.6.79-7.37,1.68A37,37,0,0,1,510,135.22Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M569.84,104.28c.07-.28.23-.4.48-.37a1.49,1.49,0,0,0,.7,0,3.89,3.89,0,0,1-1.08-2.26,4.4,4.4,0,0,0-1.07-2.37,11,11,0,0,0,.37-1c.11-.35.42-.49.92-.42a12.16,12.16,0,0,1,.11-4.32,15.26,15.26,0,0,1,1.34-3.79,28.38,28.38,0,0,1,2.15-3.52c.83-1.16,1.63-2.34,2.42-3.53.65-.14,1-.09,1.18.16s.4.19.76-.16A6.4,6.4,0,0,0,580.48,80a7.39,7.39,0,0,0,.65-3.1c.64-1.83,1.38-3.63,2.2-5.42a33.28,33.28,0,0,1,2.85-5,26.29,26.29,0,0,1,3.45-4,13.65,13.65,0,0,1,4-2.69,16.56,16.56,0,0,1,3.81-2.31,24.56,24.56,0,0,1,5-1.63,27.05,27.05,0,0,1,5.43-.63,18.51,18.51,0,0,1,5.17.57c.35.15.57.06.64-.26a.52.52,0,0,1,.54-.47,46,46,0,0,1,9.63,2.1A21.64,21.64,0,0,1,631,61.24,69.38,69.38,0,0,1,634.91,68a38.37,38.37,0,0,1,2.85,7.57,29.5,29.5,0,0,1,.91,8.16,23.64,23.64,0,0,1-1.83,8.42,28.55,28.55,0,0,1-9.14,7.42,66.24,66.24,0,0,1-11.56,4.63,112.67,112.67,0,0,1-12.8,3q-6.62,1.15-12.85,2.52.1,2.85,0,6.06a45.17,45.17,0,0,1-.7,6.42,38.66,38.66,0,0,1-1.72,6.26,23.3,23.3,0,0,1-3.07,5.68,16.47,16.47,0,0,0-4.46.42q-2.32.53-4.14,1l-1.67-1a4.66,4.66,0,0,0-2-.57,3.24,3.24,0,0,0-.59-2.64c-.61-.91-1.22-1.8-1.83-2.68a7,7,0,0,1-1.18-2.63,2.29,2.29,0,0,1,1.23-2.37,2.89,2.89,0,0,1-.86-2.31,1.49,1.49,0,0,0,1.08.42,12.47,12.47,0,0,1,.48-4.53c.47-1.75.86-3.49,1.19-5.21a14.42,14.42,0,0,0,.16-4.73A3.9,3.9,0,0,0,569.84,104.28Zm28-24.63c-.29.78-.52,1.46-.7,2.06a16.08,16.08,0,0,1-.59,1.63c-.22.49-.45,1-.7,1.47s-.52,1-.81,1.69a1.62,1.62,0,0,0,.86.94,1.6,1.6,0,0,1,.86,1,15.36,15.36,0,0,1,3-1.11c1-.24,2-.43,3-.57s2-.32,3-.53a15.08,15.08,0,0,0,3.12-1.05,20.62,20.62,0,0,1,3.39-1.21c1.18-.32,2.34-.65,3.49-1s2.26-.76,3.34-1.21a9.09,9.09,0,0,0,2.79-1.84,13.22,13.22,0,0,0-4.51-2.43,25.32,25.32,0,0,0-6.51-1.31,24.6,24.6,0,0,0-7,.47A13,13,0,0,0,597.8,79.65Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M641.58,130.07a4.54,4.54,0,0,1-.76-1,6.4,6.4,0,0,1-.54-1.53,13.73,13.73,0,0,1-2.36-4.1,21.24,21.24,0,0,1-1.18-4.79,22.57,22.57,0,0,1-.11-5,30.72,30.72,0,0,1,.75-4.74,20.4,20.4,0,0,0,.54-2.21c.36-1.33.71-2.65,1.07-4a8.37,8.37,0,0,1,1.62-3.21,3.46,3.46,0,0,1,.1-2.52c.36-.91.72-1.75,1.08-2.53a3.42,3.42,0,0,0,.32-.57c.07-.18.15-.34.22-.48q1.29-3.68,2.53-7.1c.82-2.28,1.63-4.48,2.42-6.58q2.15-5.79,4.14-11.37T655,56.5a5.6,5.6,0,0,1,1.51-.84,4.18,4.18,0,0,1,.53-.21,2.49,2.49,0,0,1,.76-.11,36,36,0,0,0,5.32,2.16,17.2,17.2,0,0,0,5.22,1l1.82,1.58a21.6,21.6,0,0,1,2.43,3.31,6.69,6.69,0,0,1,.59,4.48A3.61,3.61,0,0,1,672.12,69a36.12,36.12,0,0,1-1.4,4.26c-.5,1.23-1,2.4-1.5,3.52s-1.12,2.53-1.62,3.79a26.89,26.89,0,0,0-1.29,4.63,3.55,3.55,0,0,0-.8,1.27c-.11.35-.24.7-.38,1a10.7,10.7,0,0,1-.54,1.31,3.38,3.38,0,0,1-1,1.21,20.6,20.6,0,0,1-1.29,5.32c-.57,1.37-1.14,2.72-1.72,4-1,2.46-1.93,4.89-2.79,7.31a28.52,28.52,0,0,0-1.51,8.27,10.07,10.07,0,0,1,2.37-.32,8.65,8.65,0,0,1,2.69.42,24.06,24.06,0,0,1,8.44-2.31q4.58-.42,9.09-.53,3.76,0,7-.32a4.67,4.67,0,0,0,1.4.79,6.55,6.55,0,0,0,1.07.06H689a4.71,4.71,0,0,1,.86.1,9.37,9.37,0,0,0,2.9,2c.93.39,1.94.76,3,1.11s1.85.72,2.75,1.1a13.9,13.9,0,0,1,2.63,1.53l1,5.37c.57.77.82,1.3.75,1.58a2.52,2.52,0,0,1-.43,1.47l.22,1.37a7.88,7.88,0,0,0-2.69.89,13.73,13.73,0,0,0-1.4,1.21c-.79.07-1.54.11-2.26.11a16.42,16.42,0,0,0-4.41.63,20.94,20.94,0,0,0-7.1-1.16c-1,0-2,0-3.06.11s-2.06.17-3.07.31-2.15.27-3.22.37a31.89,31.89,0,0,1-3.23.16l-1.83.31a6.31,6.31,0,0,0-1.08.32c-2.43.77-5.07,1.54-7.9,2.32a32.43,32.43,0,0,1-8.55,1.15q-6.35,0-10.22-3.15a10.69,10.69,0,0,0-.64-1.27A5.42,5.42,0,0,1,641.58,130.07Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M711.16,130.38a4.81,4.81,0,0,1-1.23-2,3.38,3.38,0,0,0-1.78-1.89c-.14-1-.34-2.27-.59-3.63s-.5-2.77-.75-4.21-.43-2.88-.54-4.32a15.74,15.74,0,0,1,.16-3.94,6.29,6.29,0,0,1,.7-1.79c.32-.56.65-1.11,1-1.64a7.27,7.27,0,0,0,.75-1.63,3,3,0,0,0,.06-1.68.91.91,0,0,0,.8-.68c.11-.39.45-.51,1-.37.5-1.55,1-3,1.62-4.32s1.18-2.63,1.83-3.89,1.3-2.54,2-3.84a35.18,35.18,0,0,0,1.88-4.37,10.34,10.34,0,0,1-2.64-3.63,22.81,22.81,0,0,1-1.23-4,36.34,36.34,0,0,1-.65-4,21.85,21.85,0,0,0-.86-4.16,11.36,11.36,0,0,1,3.12-3.1,18.7,18.7,0,0,1,4-2A29.62,29.62,0,0,1,724.61,64q2.58-.48,5.48-1.11c3.45-1.05,6.53-1.88,9.25-2.47s5.38-1.09,8-1.48,5.27-.73,8.07-1,6-.79,9.68-1.42a.4.4,0,0,0,.38.32h.7a1.16,1.16,0,0,0,1.18.73,2.65,2.65,0,0,0-.06-.58,2.79,2.79,0,0,1,0-.47,2.42,2.42,0,0,1,.59.11c.25.07.47.14.65.21a.46.46,0,0,0,.48-.06c.14-.1.18-.33.11-.68a11.37,11.37,0,0,0,3.33,3.63,24.73,24.73,0,0,0,4.52,2.47,6.24,6.24,0,0,1,0,1.37,4.6,4.6,0,0,1-.16.79,3.12,3.12,0,0,0-.1.84,5.82,5.82,0,0,0,.21,1.32A14.85,14.85,0,0,1,773,70.92a18.12,18.12,0,0,1-4.68,2.42,30.62,30.62,0,0,1-5.22,1.26q-2.74.42-5.59.9a49.55,49.55,0,0,0-5.76,1.31,24.69,24.69,0,0,0-5.7,2.53,3.65,3.65,0,0,0-1.56-.26,7.16,7.16,0,0,0-1.45.26c-.5.14-1.06.28-1.67.42a5.77,5.77,0,0,1-2.2,0,5.22,5.22,0,0,1-2,1l-2.31.63a5,5,0,0,1,.48,2.32,4.79,4.79,0,0,0,.27,2,56.79,56.79,0,0,0,10-.05c3.66-.32,7.24-.55,10.76-.69a.8.8,0,0,1-.11.74,1,1,0,0,0-.21.74,9.44,9.44,0,0,1,1.82,1.57c.58.64,1.17,1.25,1.78,1.85a10.81,10.81,0,0,0,1.88,1.47,3.69,3.69,0,0,0,2.26.47,7.91,7.91,0,0,1,.75,2.21,4.16,4.16,0,0,1-.32,2.42c-1.44.92-2.83,1.84-4.2,2.79a39,39,0,0,1-4.24,2.58,25.15,25.15,0,0,1-4.79,1.89,17.74,17.74,0,0,1-5.59.64h-.92a1.61,1.61,0,0,1-.91-.42,5.39,5.39,0,0,1-2.85.36,6,6,0,0,0-3,.37,10.65,10.65,0,0,0-3.5-.52,10.58,10.58,0,0,1-3.49-.53q-1.93,2.75-3.66,5.74a45.9,45.9,0,0,0-3,6.36,42.66,42.66,0,0,0,7.31.53q2.91-.11,5.49-.42l5.32-.63a49.07,49.07,0,0,1,6.73-.21,21,21,0,0,1,6.18-1.74,39.92,39.92,0,0,0,6.51-1.42,3.76,3.76,0,0,1,1.83,1.21c.5.6,1,1.19,1.45,1.79a9.62,9.62,0,0,0,1.45,1.52,2.23,2.23,0,0,0,1.94.43,2.45,2.45,0,0,1,.69,1.26c.11.49.22,1,.33,1.37a2.52,2.52,0,0,0,.48,1,1.34,1.34,0,0,0,1.19.26,20.22,20.22,0,0,1-4.58,6.31,18.35,18.35,0,0,1-5.7,3.42,33.1,33.1,0,0,1-7.09,1.79q-3.93.59-8.77,1.42a4,4,0,0,1-2,0,5.5,5.5,0,0,0-1.67-.26q-3,.53-7.15,1a55.23,55.23,0,0,1-8.34.42,37.91,37.91,0,0,1-8.06-1.05A14.1,14.1,0,0,1,711.16,130.38Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M351.68,237.9c.1-.4.33-.57.69-.52a2.2,2.2,0,0,0,1-.08,5.49,5.49,0,0,1-1.53-3.23,6.37,6.37,0,0,0-1.54-3.39q.3-.75.54-1.5c.15-.5.59-.7,1.3-.6a17.75,17.75,0,0,1,.16-6.16,21.71,21.71,0,0,1,1.92-5.42,39.87,39.87,0,0,1,3.07-5q1.77-2.49,3.46-5c.92-.2,1.48-.13,1.69.22s.56.28,1.07-.22a9.09,9.09,0,0,0,3.38-3.68,10.54,10.54,0,0,0,.93-4.44c.92-2.6,2-5.19,3.15-7.74a45.14,45.14,0,0,1,4.07-7.14,36.84,36.84,0,0,1,4.91-5.79,19.9,19.9,0,0,1,5.69-3.84,23.75,23.75,0,0,1,5.45-3.3,35.52,35.52,0,0,1,7.07-2.33,40.45,40.45,0,0,1,7.76-.91,26.72,26.72,0,0,1,7.38.83c.51.2.81.08.92-.38a.74.74,0,0,1,.77-.67,65.43,65.43,0,0,1,13.75,3,31.12,31.12,0,0,1,10.37,5.87,104.81,104.81,0,0,1,5.53,9.7,53.84,53.84,0,0,1,4.07,10.82A42.23,42.23,0,0,1,450,208.58a34,34,0,0,1-2.61,12,40.9,40.9,0,0,1-13.06,10.6,94.61,94.61,0,0,1-16.52,6.62,162.05,162.05,0,0,1-18.29,4.28q-9.45,1.65-18.36,3.61c.1,2.7.1,5.59,0,8.64a60.92,60.92,0,0,1-1,9.18,54,54,0,0,1-2.45,8.94,33,33,0,0,1-4.38,8.12,23.56,23.56,0,0,0-6.38.6q-3.3.75-5.92,1.5c-.82-.5-1.61-1-2.38-1.42a6.69,6.69,0,0,0-2.84-.83,4.61,4.61,0,0,0-.84-3.76q-1.32-1.95-2.62-3.83a10.34,10.34,0,0,1-1.69-3.76c-.25-1.25.33-2.38,1.77-3.39a4.11,4.11,0,0,1-1.23-3.3,2.11,2.11,0,0,0,1.54.6,17.65,17.65,0,0,1,.69-6.47c.66-2.5,1.23-5,1.69-7.44a20.27,20.27,0,0,0,.23-6.76A5.55,5.55,0,0,0,351.68,237.9Zm39.95-35.18c-.41,1.1-.74,2.08-1,2.93a20.87,20.87,0,0,1-.84,2.33c-.31.7-.64,1.41-1,2.11s-.75,1.5-1.15,2.4a2.26,2.26,0,0,0,1.23,1.35,2.32,2.32,0,0,1,1.22,1.36,21.43,21.43,0,0,1,4.31-1.58c1.43-.35,2.86-.62,4.3-.83s2.87-.45,4.3-.75a21.49,21.49,0,0,0,4.46-1.5,30.49,30.49,0,0,1,4.84-1.73q2.54-.67,5-1.43a47.92,47.92,0,0,0,4.76-1.73,12.82,12.82,0,0,0,4-2.63,19.2,19.2,0,0,0-6.45-3.46,36.45,36.45,0,0,0-9.3-1.88,35.44,35.44,0,0,0-10,.68A18.49,18.49,0,0,0,391.63,202.72Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M451.43,276.72a4.87,4.87,0,0,1-1.23-2,3.42,3.42,0,0,0-1.78-1.89c-.14-1.06-.34-2.27-.59-3.63s-.5-2.78-.75-4.21a42.48,42.48,0,0,1-.54-4.32,15.84,15.84,0,0,1,.16-3.95,6.35,6.35,0,0,1,.7-1.78c.32-.57.64-1.11,1-1.64a7.27,7.27,0,0,0,.75-1.63,2.92,2.92,0,0,0,.05-1.68.92.92,0,0,0,.81-.69q.16-.57,1-.36c.5-1.55,1-3,1.62-4.32s1.18-2.63,1.82-3.89,1.31-2.55,2-3.84a35.16,35.16,0,0,0,1.89-4.37,10.34,10.34,0,0,1-2.64-3.63,23.13,23.13,0,0,1-1.24-3.95,38.8,38.8,0,0,1-.64-4.05,22.65,22.65,0,0,0-.86-4.16,11.22,11.22,0,0,1,3.12-3.1,18.26,18.26,0,0,1,4-2,30.68,30.68,0,0,1,4.79-1.27q2.58-.47,5.48-1.1c3.44-1,6.53-1.88,9.25-2.47s5.38-1.09,8-1.48,5.27-.73,8.07-1.05,6-.79,9.68-1.42c.07.21.19.32.37.32h.7a1.19,1.19,0,0,0,1.19.73,2.65,2.65,0,0,0-.06-.58,2.79,2.79,0,0,1,0-.47,2.42,2.42,0,0,1,.59.11c.25.07.47.14.65.21a.46.46,0,0,0,.48-.06c.14-.1.18-.33.11-.68a11.37,11.37,0,0,0,3.33,3.63,24.73,24.73,0,0,0,4.52,2.47,6.23,6.23,0,0,1,.05,1.37,4.6,4.6,0,0,1-.16.79,3.11,3.11,0,0,0-.11.84,5.4,5.4,0,0,0,.22,1.32,14.73,14.73,0,0,1-3.93,4.42,18,18,0,0,1-4.68,2.42,30.51,30.51,0,0,1-5.21,1.26c-1.83.28-3.7.58-5.59.9a49.09,49.09,0,0,0-5.76,1.31,24.09,24.09,0,0,0-5.7,2.53,3.83,3.83,0,0,0-1.56-.27,7.83,7.83,0,0,0-1.45.27c-.5.14-1.06.28-1.67.42a5.77,5.77,0,0,1-2.2,0,5.22,5.22,0,0,1-2,1.05l-2.32.63a5,5,0,0,1,.49,2.32,4.79,4.79,0,0,0,.27,2,55.9,55.9,0,0,0,10-.06c3.66-.31,7.24-.54,10.76-.68a.8.8,0,0,1-.11.74,1,1,0,0,0-.22.73,9.26,9.26,0,0,1,1.83,1.58c.57.63,1.17,1.25,1.78,1.84a9.77,9.77,0,0,0,1.88,1.48,3.74,3.74,0,0,0,2.26.47,8.24,8.24,0,0,1,.75,2.21,4.17,4.17,0,0,1-.32,2.42c-1.44.92-2.84,1.84-4.2,2.79A39.1,39.1,0,0,1,496,248.2a25.05,25.05,0,0,1-4.78,1.89,17.77,17.77,0,0,1-5.6.64h-.91a1.54,1.54,0,0,1-.91-.43,5.29,5.29,0,0,1-2.85.37,6,6,0,0,0-3,.37,10.64,10.64,0,0,0-3.5-.53A10.59,10.59,0,0,1,471,250q-1.93,2.73-3.66,5.73a45.43,45.43,0,0,0-3,6.37,42.66,42.66,0,0,0,7.31.53q2.91-.11,5.49-.42l5.32-.63a49,49,0,0,1,6.72-.21,20.86,20.86,0,0,1,6.19-1.74,39.92,39.92,0,0,0,6.51-1.42,3.69,3.69,0,0,1,1.82,1.21c.51.59,1,1.19,1.46,1.79a10.07,10.07,0,0,0,1.45,1.52,2.21,2.21,0,0,0,1.93.42,2.47,2.47,0,0,1,.7,1.27c.11.49.22.94.33,1.37a2.39,2.39,0,0,0,.48,1,1.32,1.32,0,0,0,1.18.26,20.17,20.17,0,0,1-4.57,6.31,18.35,18.35,0,0,1-5.7,3.42,33,33,0,0,1-7.1,1.79q-3.93.58-8.76,1.42a4.08,4.08,0,0,1-2-.05,5.55,5.55,0,0,0-1.67-.26q-3,.52-7.15,1.05a55.23,55.23,0,0,1-8.34.42,37.91,37.91,0,0,1-8.06-1.05A14.14,14.14,0,0,1,451.43,276.72Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M516.4,271.25c-.36.07-.69-.19-1-.79a16.42,16.42,0,0,0-1-1.74h1.18a8.39,8.39,0,0,1-.37-4.26c.25-1.3.55-2.56.91-3.79s.66-2.42.91-3.58a6.08,6.08,0,0,0-.37-3.63.51.51,0,0,0,.81-.26,6.85,6.85,0,0,0,.43-1.47,8.43,8.43,0,0,0,.1-1.9,14,14,0,0,0-.16-1.63,40.26,40.26,0,0,0,2.21-6.74c.53-2.31,1-4.61,1.45-6.89s.91-4.49,1.45-6.63a35.64,35.64,0,0,1,2.1-6.05,6.7,6.7,0,0,1,3.17.37,4.14,4.14,0,0,1,2.21,1.42,28.62,28.62,0,0,0,5.91-6.11q2.58-3.57,5.22-7a34.26,34.26,0,0,1,6-6.06,15.75,15.75,0,0,1,8.28-3.15q2.58,1.78,5.81,3.84a17.82,17.82,0,0,1,5.27,5.1c.57.35,1.13.72,1.66,1.11s1.1.75,1.67,1.1v1.58a12.47,12.47,0,0,1,2.53,3.21,33.25,33.25,0,0,1,1.83,3.9c.54,1.36,1.05,2.75,1.56,4.15a27.31,27.31,0,0,0,1.72,3.9,2.39,2.39,0,0,0-.16,1.1,4.05,4.05,0,0,0,.21.95,7,7,0,0,1,.27,1.05,8.11,8.11,0,0,1,.11,1.42,14.16,14.16,0,0,1-3.71,9,26,26,0,0,1-8,5.58,71,71,0,0,1-9.95,3.68,89.2,89.2,0,0,0-9.57,3.32q0,.42.48.42t.27.63q3.23,1.89,5,3a36.43,36.43,0,0,0,3.34,2,18.79,18.79,0,0,0,3.44,1.31q1.88.54,5.21,1.27c2.23.49,4,.89,5.22,1.21s2.38.56,3.39.73,2.08.34,3.22.48,2.69.31,4.63.52a9.84,9.84,0,0,1,1.94,2.74,13.4,13.4,0,0,1,1.07,3.16,9.33,9.33,0,0,1,.16,3,3.94,3.94,0,0,1-.91,2.26.48.48,0,0,0,.59.37,3.24,3.24,0,0,1,1,.05,5.51,5.51,0,0,0-1.29,1.26c-.36.49-.72,1-1.07,1.48a9.35,9.35,0,0,1-1.24,1.36,3,3,0,0,1-1.78.74q-3.87,1.47-9.89.11a129.7,129.7,0,0,1-15.38-4.84c-3.09-1.13-5.59-2.14-7.53-3.06a52.52,52.52,0,0,1-5.06-2.68,33.81,33.81,0,0,1-4-2.84c-1.22-1-2.61-2.23-4.19-3.63a.53.53,0,0,0-.38.42.5.5,0,0,1-.37.42,26.08,26.08,0,0,1-1.67,6.84,24.54,24.54,0,0,1-3.28,5.37c-1.15-.21-1.92-.11-2.31.31a7.17,7.17,0,0,1-1.45,1.16,2.72,2.72,0,0,1-1.62-.05,6.91,6.91,0,0,1-1-.58,11.43,11.43,0,0,0-1-.63,3,3,0,0,0-1.72-.21l-.65-1.84c-.22-.6-.79-.86-1.72-.79a3.59,3.59,0,0,0,.21-1.64,6.83,6.83,0,0,0-.32-1.26c-.14-.38-.27-.79-.38-1.21A2.46,2.46,0,0,1,516.4,271.25Zm35.92-48.1a22.77,22.77,0,0,1-3.12,3.63q-1.73,1.64-3.39,3.37a24.27,24.27,0,0,0-3,3.79,13.86,13.86,0,0,0-1.82,4.89,37.77,37.77,0,0,0,9.46-2.47q4.95-2,9.36-3.74a11,11,0,0,0-2.8-6.26A11.87,11.87,0,0,0,552.32,223.15Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M589.32,258.93a12.11,12.11,0,0,1-5-5.05,15.69,15.69,0,0,1-1.93-6.21,8.5,8.5,0,0,1,1.34-3.94,8.88,8.88,0,0,1,2.42-2.32,12.56,12.56,0,0,1,2.9-1.37c1-.31,2-.58,2.91-.79l1.61.53a10,10,0,0,0,1.13.95c.39.28.77.56,1.13.84a2.06,2.06,0,0,0,1.34-1.26c.18-.56.38-1.13.6-1.69q.31-1.16.75-2.31a16,16,0,0,1,1.07-2.32,4.35,4.35,0,0,1,.11-1.68c.14-.49.29-.91.43-1.27a2.61,2.61,0,0,0-.91-.57c-.18,0-.49-.13-.92-.27a3.45,3.45,0,0,1-.64,0A7.34,7.34,0,0,1,597,230a8,8,0,0,1-2.1-1.94l-1-1.64c-.36-.56-.69-1-1-1.47a7.75,7.75,0,0,0-1-1.16l-1.29-.84.64-1.26a.75.75,0,0,0,.22-.58A2.54,2.54,0,0,0,591,220a3.9,3.9,0,0,1-.11-2l.22-1.27c.71-.91,1.11-1.44,1.18-1.58l1.08-1.05c1.64-.42,3.33-.89,5.05-1.42s3.41-1.07,5.06-1.63,3.33-1.12,5.05-1.69,3.44-1.05,5.16-1.47a3.71,3.71,0,0,1,1.89-.89c.68-.11,1.3-.2,1.88-.27a8.78,8.78,0,0,0,1.4-.1,1.43,1.43,0,0,0,1-.53c1.22-.42,2.41-.77,3.55-1,2.15-.56,5-1.23,8.5-2a88.55,88.55,0,0,1,11.83-1.68l2.26-.11a5.07,5.07,0,0,0,1.29.05c.43,0,.86-.05,1.29-.05q5.59,0,7.42,3.37a8.37,8.37,0,0,1,1.94,1.31c.57.53,1.11,1,1.61,1.53s.68.65,1,.9a9.39,9.39,0,0,0,.75.57l.86.85a6.64,6.64,0,0,1,.43,4.94c-.43.84-.89,1.34-1.39,1.48l-1.51.42-1.4.73c-.93-.07-1.63-.1-2.1-.1H654.6q-3.23,0-7.47.37t-8.66,1.05q-4.41.69-8.6,1.68a64.57,64.57,0,0,0-7.32,2.16,9.28,9.28,0,0,1-2.26,1.16,4.79,4.79,0,0,0-1,.52,6.35,6.35,0,0,1,0,1.63,10.64,10.64,0,0,1-.33,1.53c-.07.35-.12.72-.16,1.11s-.09.79-.16,1.21a8.82,8.82,0,0,0-2.15,6.21l-.54,1.05a3,3,0,0,0-.7,1.21,2.74,2.74,0,0,0,0,1.63l.43,1.26c1.43-.14,2.85-.29,4.25-.47s2.88-.37,4.46-.58q3-.53,6.08-.89a52.6,52.6,0,0,1,6.4-.37h4.19l-1,.94,1.19.11-.65,1.68,1.13.48a3.87,3.87,0,0,1,.7.37l.75,1.05a2.91,2.91,0,0,1,1,1,4.13,4.13,0,0,1,.54,1.84l-.32,1.05-5.06,6.32-.64.84-1.08-.32a11.75,11.75,0,0,0-3.87.42l-1.83.48a7.55,7.55,0,0,1-1.94.26c-1.72.28-3.15.51-4.3.68s-2.29.34-3.44.48l-4.57.79a21.3,21.3,0,0,0-4.14,1.1,8,8,0,0,1-1.4.06,1.59,1.59,0,0,0-.43-.06,7.62,7.62,0,0,0-2.15.32q-1.08.31-2,.63a2.74,2.74,0,0,0-.87,1.11c-.14.38-.28.78-.43,1.21a7,7,0,0,1-.59,1.42,13.34,13.34,0,0,1-.91,1.42l.11,1.89a4.14,4.14,0,0,0-1,.26s0,.06-.11.06a4.56,4.56,0,0,1-.27,1.58c-.18.49-.34.94-.48,1.36a4.72,4.72,0,0,0-.32.74,1.74,1.74,0,0,0-.11.63,6,6,0,0,1,.54,4.32,8.62,8.62,0,0,1-1.62,3.52,8.5,8.5,0,0,1-2.79,2.37,5.61,5.61,0,0,1-2.53-.1l-1.67-.64c-.36-.14-.72-.26-1.07-.36a10.65,10.65,0,0,0-1.08-.27l-1.29-1a10.12,10.12,0,0,0-.75-1.21c-.29-.39-.58-.79-.86-1.21l-1.08-1.47a9.72,9.72,0,0,1-1-1.69,16.1,16.1,0,0,1-.27-6.15,34.63,34.63,0,0,1,1.35-4.9c.14-.56.28-1.09.43-1.58S589.17,259.5,589.32,258.93Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M673.86,280.72a21.77,21.77,0,0,1-8.61-.42,21.27,21.27,0,0,1-6.93-3.26,22.92,22.92,0,0,1-5.27-5.27,30.13,30.13,0,0,1-3.61-6.52,33.74,33.74,0,0,1,.54-13,41.62,41.62,0,0,1,4.41-10.79A64.56,64.56,0,0,1,661,232.2l7.16-8.31a1.27,1.27,0,0,0,1.23,0,3.11,3.11,0,0,0,.86-.84,12.92,12.92,0,0,1,.86-1.06,2.66,2.66,0,0,1,1.13-.73,4.87,4.87,0,0,1,1.13-1.58,16.66,16.66,0,0,1,1.51-1.21,16.84,16.84,0,0,0,1.5-1.21,6.25,6.25,0,0,0,1.24-1.58,5.18,5.18,0,0,0,1.88-.74,12.26,12.26,0,0,0,1.51-1.15,14.17,14.17,0,0,1,1.45-1.16,6.2,6.2,0,0,1,1.83-.84v-1.37a9.6,9.6,0,0,0,3.44-2.32c.72-.84,1.58-1.93,2.58-3.26.79-.07,1.42-.11,1.89-.11a16,16,0,0,0,2.2-.21,11.4,11.4,0,0,1,1.83-2.63A16.55,16.55,0,0,1,698.7,200a9.17,9.17,0,0,0,3.44,1,5.37,5.37,0,0,1,3.34,1.63,3.15,3.15,0,0,0,.75,2,13,13,0,0,0,1.4,1.26c.5.39,1,.79,1.51,1.21a2.93,2.93,0,0,1,1,1.79c.36,0,.6-.07.7-.21s.34-.18.7-.11a10.82,10.82,0,0,0,.43,1.37,6.49,6.49,0,0,0,.49,1c.17.28.35.6.53.95a7.72,7.72,0,0,1,.49,1.26,27.13,27.13,0,0,0-1,2.68,2.89,2.89,0,0,1-1.72,2c0,.56.21.86.64.89a.81.81,0,0,1,.76.79,2.26,2.26,0,0,1-.33,1.58,99.16,99.16,0,0,1,5.49,10.37,87.19,87.19,0,0,0,5.59,10.36,7.25,7.25,0,0,0,.16,2.9,20,20,0,0,0,1,2.79c.4.91.77,1.82,1.13,2.73a12.87,12.87,0,0,1,.75,2.74,16.42,16.42,0,0,1,0,3.84,17.81,17.81,0,0,1-.86,3.95,15.13,15.13,0,0,1-1.72,3.52,7.79,7.79,0,0,1-2.47,2.48,13.35,13.35,0,0,1-4.3,3.42,26,26,0,0,0-4.74,3.1,11.08,11.08,0,0,1-3.22,1.21l-3.55.79a23.17,23.17,0,0,1-3.34,1.63c-1.29.53-2.61,1-4,1.42a31.91,31.91,0,0,1-4.08,1,11.89,11.89,0,0,1-3.66.16,40.35,40.35,0,0,1-7.53,1.9A24.89,24.89,0,0,1,673.86,280.72Zm1.4-38.31a22.62,22.62,0,0,1-2.53,4.37c-1,1.3-1.92,2.61-2.85,3.95a26.18,26.18,0,0,0-2.42,4.26,14,14,0,0,0-1.13,5.31,9.62,9.62,0,0,0,5.11,2.16,29.19,29.19,0,0,0,6.07.11q3.12-.27,6.24-.79a34.17,34.17,0,0,1,5.59-.53c0-.63.29-.95.87-.95a22,22,0,0,0,8.38-2.47q3.88-2.06,8.07-4.16a7.92,7.92,0,0,1,1.4-2.21,4.34,4.34,0,0,0,1-2.73,7,7,0,0,1-.7-1.58,8.18,8.18,0,0,1-.16-1.9,45.54,45.54,0,0,1-4.84-8.26,58.76,58.76,0,0,0-4.74-8.47,2.66,2.66,0,0,1-.86,1c-.43.35-.89.28-1.39-.21a2.33,2.33,0,0,1-1,1.42,2.85,2.85,0,0,1-1.45.37,4.45,4.45,0,0,1-1.62-.32,5.5,5.5,0,0,1-1.45-.84q-3.76,3-7.47,5.69a36.76,36.76,0,0,0-6.73,6.42c-.36.21-.57.28-.64.21S675.69,242.27,675.26,242.41Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M732.91,271.25c-.36.07-.69-.19-1-.79a16.42,16.42,0,0,0-1-1.74h1.18a8.39,8.39,0,0,1-.37-4.26c.25-1.3.55-2.56.91-3.79s.66-2.42.92-3.58a6.17,6.17,0,0,0-.38-3.63.51.51,0,0,0,.81-.26,6.85,6.85,0,0,0,.43-1.47,8.43,8.43,0,0,0,.1-1.9,14,14,0,0,0-.16-1.63,40.26,40.26,0,0,0,2.21-6.74c.53-2.31,1-4.61,1.45-6.89s.91-4.49,1.45-6.63a35.64,35.64,0,0,1,2.1-6.05,6.7,6.7,0,0,1,3.17.37,4.14,4.14,0,0,1,2.21,1.42,28.62,28.62,0,0,0,5.91-6.11q2.58-3.57,5.22-7a34.26,34.26,0,0,1,6-6.06,15.75,15.75,0,0,1,8.28-3.15q2.58,1.78,5.81,3.84a17.82,17.82,0,0,1,5.27,5.1c.57.35,1.13.72,1.66,1.11s1.1.75,1.67,1.1v1.58a12.26,12.26,0,0,1,2.53,3.21,33.25,33.25,0,0,1,1.83,3.9c.54,1.36,1.05,2.75,1.56,4.15a27.31,27.31,0,0,0,1.72,3.9,2.39,2.39,0,0,0-.16,1.1,4.05,4.05,0,0,0,.21.95,7,7,0,0,1,.27,1.05,8.11,8.11,0,0,1,.11,1.42,14.16,14.16,0,0,1-3.71,9,26,26,0,0,1-8,5.58,71,71,0,0,1-10,3.68,89.2,89.2,0,0,0-9.57,3.32q0,.42.48.42t.27.63q3.23,1.89,5,3a36.43,36.43,0,0,0,3.34,2,18.79,18.79,0,0,0,3.44,1.31q1.88.54,5.21,1.27t5.22,1.21c1.25.31,2.38.56,3.39.73s2.08.34,3.23.48,2.68.31,4.62.52a9.84,9.84,0,0,1,1.94,2.74,13.4,13.4,0,0,1,1.07,3.16,9.33,9.33,0,0,1,.16,3,4,4,0,0,1-.91,2.26.48.48,0,0,0,.59.37,3.24,3.24,0,0,1,1,.05,5.51,5.51,0,0,0-1.29,1.26c-.36.49-.72,1-1.07,1.48a9.35,9.35,0,0,1-1.24,1.36,3,3,0,0,1-1.78.74q-3.87,1.47-9.89.11a129.7,129.7,0,0,1-15.38-4.84c-3.08-1.13-5.59-2.14-7.53-3.06a52.52,52.52,0,0,1-5.06-2.68,33.81,33.81,0,0,1-4-2.84c-1.22-1-2.61-2.23-4.19-3.63a.53.53,0,0,0-.38.42.5.5,0,0,1-.37.42,26.08,26.08,0,0,1-1.67,6.84,24.54,24.54,0,0,1-3.28,5.37c-1.15-.21-1.92-.11-2.31.31a7.17,7.17,0,0,1-1.45,1.16,2.72,2.72,0,0,1-1.62-.05,6.91,6.91,0,0,1-1-.58,11.43,11.43,0,0,0-1-.63,3,3,0,0,0-1.73-.21c-.21-.63-.42-1.25-.64-1.84s-.79-.86-1.72-.79a3.59,3.59,0,0,0,.21-1.64,6.83,6.83,0,0,0-.32-1.26,10.69,10.69,0,0,1-.37-1.21A2.37,2.37,0,0,1,732.91,271.25Zm35.92-48.1a22.77,22.77,0,0,1-3.12,3.63q-1.73,1.64-3.39,3.37a23.63,23.63,0,0,0-3,3.79,13.68,13.68,0,0,0-1.83,4.89,37.77,37.77,0,0,0,9.46-2.47q4.95-2,9.36-3.74a11,11,0,0,0-2.8-6.26A11.87,11.87,0,0,0,768.83,223.15Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M810.78,281.77a26.69,26.69,0,0,1-3.34-.31,16.36,16.36,0,0,1-3.06-4.9,32.61,32.61,0,0,1-2-6.63,33.64,33.64,0,0,1-.64-7.05,16.13,16.13,0,0,1,1.23-6.26c0-.07.34-.91,1-2.53s1.56-3.66,2.63-6.15,2.3-5.27,3.66-8.32,2.72-6.05,4.09-9,2.67-5.63,3.92-8.05a53.91,53.91,0,0,1,3.28-5.63c.65-1,1.24-1.93,1.78-2.84s1.05-1.75,1.56-2.52c.78-1.27,1.52-2.44,2.2-3.53a18.7,18.7,0,0,1,2.26-3,16,16,0,0,1,2.74-2.31,15.78,15.78,0,0,1,3.66-1.74,16.43,16.43,0,0,1,2.26,1.11,7.32,7.32,0,0,1,1.72,1.42l.32,1.47a1.55,1.55,0,0,0,.7,1,1.71,1.71,0,0,0,.81.26A20.18,20.18,0,0,1,844,207a9,9,0,0,0,2.2.47q.44.63.81,1.26a10.28,10.28,0,0,0,.8,1.16,43.86,43.86,0,0,1,3.55,5.89,7.18,7.18,0,0,1,0,6.21l.11,1.16a2.37,2.37,0,0,1,.54,1.37,10.79,10.79,0,0,1-.21,1.79c-.08.56-.13,1.17-.17,1.84a7,7,0,0,0,.27,2.16l.76.84A7.53,7.53,0,0,0,856,232a7.82,7.82,0,0,0,3.87-1c1.15-.63,2.22-1.26,3.23-1.89a18.6,18.6,0,0,1,2.2-1.37,8.19,8.19,0,0,1,2-.73c1.51-1.41,2.89-2.65,4.14-3.74s2.57-2.19,3.93-3.32q3.87-3,7.53-6.57a25.5,25.5,0,0,0,5.81-8.79,5,5,0,0,1,2.69-.74,8.5,8.5,0,0,1,3,.58c1,.39,2,.83,3,1.32a3.08,3.08,0,0,0,.59.31,3.17,3.17,0,0,1,.59.32,2.87,2.87,0,0,0,1,2.1,5.94,5.94,0,0,0,.75.53l.43.21c.58.35,1.06.67,1.45,1a2.71,2.71,0,0,1,.92,1.15,8.52,8.52,0,0,0,3.23,4.42,4.83,4.83,0,0,0,.1,2.27c.22.73.47,1.45.76,2.16a4.77,4.77,0,0,1,.32.78,9.3,9.3,0,0,0,.32.9l-2.36-.21.32,2.31a9.31,9.31,0,0,1-.27,4,14.35,14.35,0,0,1-1.35,3.48c.15,2.1.22,3.77.22,5a24.52,24.52,0,0,1-.22,3.43,15,15,0,0,1-.7,3,27.23,27.23,0,0,1-1.23,3,38,38,0,0,1-1.88,14.63c-1.55,4.42-3.21,8.56-5,12.42-.21.49-.43.95-.64,1.37a8.53,8.53,0,0,0-.54,1.26,15.42,15.42,0,0,0-2.15.74,15,15,0,0,0-1.83.95,16,16,0,0,1-2.36,1.21,6.75,6.75,0,0,1-2.48.47q-5.16-3.68-5.32-12.73t3.92-23a1.59,1.59,0,0,0,.65-1.58v-1.16l-1.08-.1a4,4,0,0,0-1,.1c-.29.07-.51.39-.65,1q-3.45,2.41-7.48,5a88.47,88.47,0,0,1-8.33,4.73,60.49,60.49,0,0,1-8.77,3.58,28.35,28.35,0,0,1-8.65,1.42q-10.75,0-16.25-10.73l-1-1.9-1.08,1.69c-.21.35-.59,1-1.13,2a41.55,41.55,0,0,0-3,7.63,9.32,9.32,0,0,0-.38,3.68,26.46,26.46,0,0,0-2.52,2.63,9,9,0,0,0-1.78,3.37,1.69,1.69,0,0,0-.11,1,5.56,5.56,0,0,0,.33,1,1.9,1.9,0,0,1-.43,1.05,7.29,7.29,0,0,1-.76.64c-.36.35-.71.72-1.07,1.1a7.75,7.75,0,0,0-1,1.32,8.08,8.08,0,0,0-.32,1.31c-.07.46-.15.86-.22,1.21a2.78,2.78,0,0,1-.32,1.58c-.72,1.47-1.35,2.68-1.88,3.63a9.91,9.91,0,0,1-1.56,2.16,4.09,4.09,0,0,1-1.56,1A6.28,6.28,0,0,1,810.78,281.77Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M905.53,270.3l1.4-1.05L907,267q2.69-6.42,5.54-12.32t6-12.1q1-2,2-4t2-4.1a3.27,3.27,0,0,1-.11-.9,3.57,3.57,0,0,1,.21-1.1,36,36,0,0,0,2.42-3.79c.61-1.12,1.2-2.28,1.78-3.47q1-2.12,2.1-4.21a22.68,22.68,0,0,1,2.85-4.11l.75-1.05,1.18.11a6.31,6.31,0,0,1,.92-.37,3.86,3.86,0,0,1,1.23-.16l1.94.31a18.76,18.76,0,0,0,6.29-4.57,60.38,60.38,0,0,0,5.54-7.21l1.29-1.79,1.72,1a7.39,7.39,0,0,0,1.72.63c.79.21,1.62.46,2.48.74,1.5.35,3,.75,4.41,1.21a8.36,8.36,0,0,1,3.33,1.84l.54.95c.14.77.27,1.47.38,2.1s.23,1.27.37,1.9c.29,1.47.54,2.93.75,4.37a43.05,43.05,0,0,1,.43,4.78c.36,1.41.7,2.83,1,4.27s.62,2.86.91,4.26q.54,3,1.18,5.84a32.32,32.32,0,0,0,1.72,5.31,4.34,4.34,0,0,1,1.3.11,9.49,9.49,0,0,1,3-.63l1.39-.11.44,1.27a4.22,4.22,0,0,0,.53.63,7.27,7.27,0,0,0,.76.63,4.94,4.94,0,0,1,2.52.68,12.16,12.16,0,0,1,1.35,1.11,5.68,5.68,0,0,0,.54.47,2.73,2.73,0,0,0,.53.37l1.94.74-1.08,2a15.66,15.66,0,0,1-3.6,4.31,21.86,21.86,0,0,1-5.43,3.47,7.86,7.86,0,0,1,.27,1.37,8.24,8.24,0,0,0,.27,1.48c.28,1.4.52,2.85.7,4.36a18.94,18.94,0,0,1-.06,4.69,26.09,26.09,0,0,1-2.52,4.89,19.6,19.6,0,0,1-3.45,3.89,17.66,17.66,0,0,1-4.46,2.85,14,14,0,0,1-5.16,1.21,7.47,7.47,0,0,1-2.21-.74,11.91,11.91,0,0,1-1.23-.84,7.14,7.14,0,0,0-1.4-.84l-1.4-.64.43-1.57a1.62,1.62,0,0,0-.06-1.48,8.46,8.46,0,0,0-1.55-1.68,4.59,4.59,0,0,1-.76-.69c-.21-.24-.46-.5-.75-.79l-2.15-2.42,3.55-.94q3.23-.84,4.3-2.16c.72-.88,1-2.44.86-4.68a11.23,11.23,0,0,0-4.41-.16c-1.15.25-2.29.51-3.44.79-1.65.42-3.26.79-4.84,1.1a26,26,0,0,1-5.16.48,25.66,25.66,0,0,1-3.88-.32l-1.18-.1-.32-1.16a.74.74,0,0,0-.27-.48l-.48-.47q-.54-.63-1.29-1.68a3,3,0,0,1-.33-2.63,5.24,5.24,0,0,1-.86-2.43,12.4,12.4,0,0,0-.7,1.64c-.18.52-.34,1-.48,1.52l-.43,1.37-1.4.21a1.84,1.84,0,0,0-.38.63.84.84,0,0,0-.05.63l.43,1.16-1.08.95a1.87,1.87,0,0,1-.53.52,3.77,3.77,0,0,0-.54.43,14,14,0,0,1-.59,2.21q-.37,1-.81,2.1c-.36,1.12-.7,2.21-1,3.26a10.87,10.87,0,0,0-.48,3.16l-.44,1.37a3.44,3.44,0,0,1-1.34,1.26c-.54.28-1.06.53-1.56.74a4.5,4.5,0,0,0-1.5.84l-.33,1.37-1.61.21c-.93.21-1.6.35-2,.42a7.72,7.72,0,0,1-1.34.11l-1.4-.11q-1.29-1.26-2.1-2a9.49,9.49,0,0,0-1.88-1.21l-.65-.84a5.33,5.33,0,0,1-.54-1.53,10.53,10.53,0,0,0-.32-1.42,4.17,4.17,0,0,0-.64-1.89Zm34.31-27.36c-1,1.4-2,2.88-2.9,4.42a10.45,10.45,0,0,1,1.45-.11,10.4,10.4,0,0,0,1.45-.1q3.76-.21,7-.53c2.16-.21,4.48-.56,7-1.05q-.87-3.9-1.89-7.95t-2.2-8.15l-.54,1.05a74,74,0,0,0-5.16,6.1,51.85,51.85,0,0,0-4.09,6.21Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M1005.13,270.41a3.31,3.31,0,0,0-1.29,2.15c-.15.88-.32,1.74-.54,2.58a5,5,0,0,1-1.13,2.16,3.46,3.46,0,0,1-2.85.79c-.29.35-.34.56-.16.63s.34.39.48.95a3.27,3.27,0,0,0-2.15.21,4.84,4.84,0,0,1-1.61.63,8.58,8.58,0,0,1-4.14-2.68,24,24,0,0,1-2.91-4.27,40.92,40.92,0,0,1-2.15-4.73,33.36,33.36,0,0,0-1.88-4.21c0-.28.13-.41.38-.37a4.35,4.35,0,0,0,.7.05,9.18,9.18,0,0,1-.81-2.37,4.54,4.54,0,0,0-1-2.15q3.12-6.52,6.67-13.63t7.15-14.42q3.6-7.32,7.21-14.73t6.93-14.58a49.41,49.41,0,0,1,5.86,2.47,29,29,0,0,1,5.22,3.32,19.6,19.6,0,0,1,4,4.36,14.28,14.28,0,0,1,2.21,5.64c-.15.42-.32.56-.54.42s-.39-.07-.54.21a2.6,2.6,0,0,1,.59.89.88.88,0,0,1,0,.53,1.82,1.82,0,0,0-.11.68,2.25,2.25,0,0,0,.54,1.16c-.36-.07-.61,0-.75.16s-.4.19-.75.05a4.22,4.22,0,0,1,.32,2.31,5.27,5.27,0,0,1-.65,1.53,7.63,7.63,0,0,0-.7,1.47,3.64,3.64,0,0,0,.16,2.16.83.83,0,0,0-.59.16,1.77,1.77,0,0,0-.27.37,1.64,1.64,0,0,1-.26.37.67.67,0,0,1-.6,0,35,35,0,0,1,.22,5.52c-.07,1.86-.14,3.76-.22,5.69s-.07,3.91,0,5.94a34.19,34.19,0,0,0,.86,6.32,21.9,21.9,0,0,0,7.48-6.84A37.13,37.13,0,0,0,1038,238a71.81,71.81,0,0,0,2.58-11.05q.92-5.9,1.88-12a8.34,8.34,0,0,0,1.88-2.84,28.94,28.94,0,0,0,1.19-3.47q.48-1.78,1-3.63a13.35,13.35,0,0,1,1.35-3.32,7.22,7.22,0,0,1,3.28,1.11,18.69,18.69,0,0,1,2.53,2,28.25,28.25,0,0,0,2.47,2.05,7.4,7.4,0,0,0,3.23,1.26q1.5,2.11,2.79,4.05a11.38,11.38,0,0,1,1.72,4.37,8.23,8.23,0,0,0-1,2.32c-.22.84-.45,1.68-.7,2.52a10.14,10.14,0,0,1-1,2.32,5.51,5.51,0,0,1-1.83,1.79,47,47,0,0,1-1,5.89c-.43,1.83-.83,3.61-1.18,5.37s-.69,3.58-1,5.47a34.11,34.11,0,0,0-.33,6.21c-.64,2-1.36,4.12-2.15,6.26a39.07,39.07,0,0,0-1.72,6,11.45,11.45,0,0,0-3.22,3.89q-1.18,2.33-2.48,4.63c-.36.28-.57.34-.64.16s-.4-.3-1-.37c.07.63,0,1-.38,1.21s-.3.69.06,1.53a11.36,11.36,0,0,0-3.23,2.21,23.89,23.89,0,0,1-3.07,2.53,9.33,9.33,0,0,1-3.87,1.52,12,12,0,0,1-5.75-.89,52.71,52.71,0,0,1-9.47-8.74,38.21,38.21,0,0,1-6.66-11.68,2.59,2.59,0,0,0-1.62,1.37,21.07,21.07,0,0,0-1,2.21c-.28.77-.57,1.47-.86,2.1a1.37,1.37,0,0,1-1.29.95,4.6,4.6,0,0,1-.8,1.74c-.4.52-.78,1.05-1.13,1.57a6,6,0,0,0-.81,1.74A3,3,0,0,0,1005.13,270.41Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M1071.06,271.14a18.63,18.63,0,0,1-5.11-5.79,33.71,33.71,0,0,1-3.12-7.36,42.86,42.86,0,0,1-1.5-8.05,65.59,65.59,0,0,1-.27-7.95,27.87,27.87,0,0,1,2.36-5.21,40,40,0,0,1,3.12-4.53q1.73-2.15,3.61-4.1c1.25-1.3,2.49-2.61,3.71-4a2.3,2.3,0,0,1,1.18.32,5.47,5.47,0,0,1,1.29-2,14.84,14.84,0,0,1,1.83-1.53l1.93-1.36a6.43,6.43,0,0,0,1.62-1.63,19,19,0,0,0,4.78-1.79,45,45,0,0,0,4-2.53c1.29-.91,2.61-1.75,4-2.53a18.19,18.19,0,0,1,4.73-1.79,8.31,8.31,0,0,1,2.42-1.78c1-.49,1.94-1,2.9-1.37s1.9-.88,2.8-1.37a6.33,6.33,0,0,0,2.21-2,1.66,1.66,0,0,0,1.82.58c.79-.18,1.51-.37,2.16-.58a1.38,1.38,0,0,1,1.07.21,7.67,7.67,0,0,1,.81.68,2.06,2.06,0,0,0,.64.48c.18.07.38-.14.59-.63.58.07.74.31.49.73s-.42.71-.49.85a2.06,2.06,0,0,1,1.78.36,4.36,4.36,0,0,0,2.2.79c.36.36.47.63.33.84a2.59,2.59,0,0,0-.33,1.06q3.87,1.15,4.95,3.63a7.11,7.11,0,0,1,.22,5.16,12.23,12.23,0,0,1-3.18,4.94,11.37,11.37,0,0,1-5.11,3q-3.33.84-6.18,1.68t-5.49,1.9a32.08,32.08,0,0,0-4.94,2.47,18.28,18.28,0,0,0-4,3.32,21.77,21.77,0,0,0-5.43,2.31,34.63,34.63,0,0,0-4.51,3.27q-2.1,1.79-4,3.73t-3.87,3.84a4.84,4.84,0,0,1-.65,2.74c-.43.63-.89,1.26-1.39,1.89a9.94,9.94,0,0,0,.91,3.42c.47.95.95,1.92,1.45,2.9a81.91,81.91,0,0,0,18.23,3.1q9.63.58,19.09.69a16.91,16.91,0,0,0,2.21,2.36,28.42,28.42,0,0,1,2.26,2.27,8.82,8.82,0,0,1,1.61,2.68,7.13,7.13,0,0,1,.27,3.63,40.32,40.32,0,0,1-4,3.42q-2.16,1.63-4.3,3.21a12.65,12.65,0,0,1-2.31,0c-.9-.07-1.83-.1-2.8-.1a25.49,25.49,0,0,0-2.9.16,10,10,0,0,0-2.75.68,83.6,83.6,0,0,1-13.87-1.63,111.53,111.53,0,0,1-13.12-3.42,35.67,35.67,0,0,0-2.48-2.58A7.52,7.52,0,0,0,1071.06,271.14Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M1133.34,276.72a4.79,4.79,0,0,1-1.24-2,3.35,3.35,0,0,0-1.78-1.89c-.14-1.06-.34-2.27-.59-3.63s-.5-2.78-.75-4.21-.43-2.88-.54-4.32a15.84,15.84,0,0,1,.16-3.95,6.67,6.67,0,0,1,.7-1.78c.33-.57.65-1.11,1-1.64a7.27,7.27,0,0,0,.75-1.63,3,3,0,0,0,.06-1.68.9.9,0,0,0,.8-.69c.11-.38.45-.5,1-.36.5-1.55,1-3,1.61-4.32s1.18-2.63,1.83-3.89,1.3-2.55,2-3.84a35.18,35.18,0,0,0,1.88-4.37,10.34,10.34,0,0,1-2.64-3.63,23.09,23.09,0,0,1-1.23-3.95,36.34,36.34,0,0,1-.65-4.05,21.85,21.85,0,0,0-.86-4.16,11.22,11.22,0,0,1,3.12-3.1,18.26,18.26,0,0,1,4-2,30.68,30.68,0,0,1,4.79-1.27q2.58-.47,5.49-1.1c3.44-1,6.52-1.88,9.25-2.47s5.37-1.09,8-1.48,5.27-.73,8.07-1.05,6-.79,9.68-1.42a.4.4,0,0,0,.38.32h.7a1.17,1.17,0,0,0,1.18.73,3.48,3.48,0,0,0,0-.58,2.09,2.09,0,0,1-.06-.47,2.42,2.42,0,0,1,.59.11c.25.07.47.14.65.21a.46.46,0,0,0,.48-.06c.15-.1.18-.33.11-.68a11.29,11.29,0,0,0,3.34,3.63,24.64,24.64,0,0,0,4.51,2.47,7.15,7.15,0,0,1,.06,1.37,4.59,4.59,0,0,1-.17.79,3.12,3.12,0,0,0-.1.84,5.82,5.82,0,0,0,.21,1.32,14.85,14.85,0,0,1-3.92,4.42,18,18,0,0,1-4.68,2.42,30.62,30.62,0,0,1-5.22,1.26q-2.74.42-5.59.9a49.55,49.55,0,0,0-5.76,1.31,24.27,24.27,0,0,0-5.7,2.53,3.83,3.83,0,0,0-1.56-.27,8,8,0,0,0-1.45.27c-.5.14-1.06.28-1.66.42a5.83,5.83,0,0,1-2.21,0,5.15,5.15,0,0,1-2,1.05l-2.31.63a4.87,4.87,0,0,1,.48,2.32,5.13,5.13,0,0,0,.27,2,55.9,55.9,0,0,0,10-.06q5.49-.47,10.76-.68a.8.8,0,0,1-.11.74,1,1,0,0,0-.21.73,9.5,9.5,0,0,1,1.82,1.58c.58.63,1.17,1.25,1.78,1.84a10.42,10.42,0,0,0,1.88,1.48,3.76,3.76,0,0,0,2.26.47,7.91,7.91,0,0,1,.75,2.21,4.09,4.09,0,0,1-.32,2.42c-1.43.92-2.83,1.84-4.19,2.79a40.08,40.08,0,0,1-4.25,2.58,25.15,25.15,0,0,1-4.79,1.89,17.71,17.71,0,0,1-5.59.64h-.92a1.57,1.57,0,0,1-.91-.43,5.29,5.29,0,0,1-2.85.37,6,6,0,0,0-3,.37,10.58,10.58,0,0,0-3.49-.53,10.61,10.61,0,0,1-3.5-.52q-1.94,2.73-3.66,5.73a46.58,46.58,0,0,0-3,6.37,42.71,42.71,0,0,0,7.32.53c1.93-.07,3.76-.21,5.48-.42l5.33-.63a48.86,48.86,0,0,1,6.72-.21,20.71,20.71,0,0,1,6.18-1.74,39.92,39.92,0,0,0,6.51-1.42,3.68,3.68,0,0,1,1.83,1.21c.5.59,1,1.19,1.45,1.79a10.59,10.59,0,0,0,1.45,1.52,2.23,2.23,0,0,0,1.94.42,2.54,2.54,0,0,1,.7,1.27c.1.49.21.94.32,1.37a2.52,2.52,0,0,0,.48,1,1.34,1.34,0,0,0,1.19.26,20.49,20.49,0,0,1-4.57,6.31,18.58,18.58,0,0,1-5.7,3.42,33.35,33.35,0,0,1-7.1,1.79q-3.93.58-8.77,1.42a4.08,4.08,0,0,1-2-.05,5.5,5.5,0,0,0-1.67-.26c-2,.35-4.39.7-7.15,1.05a55.16,55.16,0,0,1-8.33.42,37.92,37.92,0,0,1-8.07-1.05A14.16,14.16,0,0,1,1133.34,276.72Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M149.24,143.56v14.22a26.72,26.72,0,0,1,4-7.46,25.1,25.1,0,0,1,18.86-10.18,25.51,25.51,0,0,1-4.9,21,25.23,25.23,0,0,1-17.93,10.11v9.26c-1,.88-2,1.78-3,2.69l-.1.09c-.9-.84-1.83-1.68-2.76-2.5v-9.54a25.25,25.25,0,0,1-17.94-10.11,25.58,25.58,0,0,1-4.9-21,25.09,25.09,0,0,1,18.81,10.16,26.86,26.86,0,0,1,4,7.46v-14.2a25.25,25.25,0,0,1-17.94-10.11,25.58,25.58,0,0,1-4.9-21,25.09,25.09,0,0,1,18.81,10.16,26.86,26.86,0,0,1,4,7.46V115.9a25.23,25.23,0,0,1-17.89-10.12,25.62,25.62,0,0,1-4.9-21,25,25,0,0,1,18.81,10.16,26.86,26.86,0,0,1,4,7.46V93.65A24.52,24.52,0,0,1,146.28,57a24.5,24.5,0,0,1,2.93,36.7v8.81a26.72,26.72,0,0,1,4-7.46A25,25,0,0,1,172.1,84.84a25.51,25.51,0,0,1-4.9,21,25.18,25.18,0,0,1-17.93,10.1v14.21a26.72,26.72,0,0,1,4-7.46,25.09,25.09,0,0,1,18.83-10.2,25.51,25.51,0,0,1-4.9,21,25.21,25.21,0,0,1-18,10.07Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M199.79,137.7v10.43a19.88,19.88,0,0,1,17.6-12.93,17.83,17.83,0,0,1-2.9,14.2,148.91,148.91,0,0,0-25.08,7.17,20.08,20.08,0,0,1-7.91-6,18.13,18.13,0,0,1-3.78-15.39,19.87,19.87,0,0,1,17.61,12.93V137.7a19.7,19.7,0,0,1-13.83-7.42,18.13,18.13,0,0,1-3.78-15.39,19.88,19.88,0,0,1,17.61,12.94V117.39A19.7,19.7,0,0,1,181.5,110a18.13,18.13,0,0,1-3.78-15.39,19.88,19.88,0,0,1,17.61,12.94v-6.47a17.44,17.44,0,0,1,2.25-26.95,17.46,17.46,0,0,1,2.25,27v6.47a19.39,19.39,0,0,1,3.1-5.48,19.64,19.64,0,0,1,14.5-7.46A18,18,0,0,1,213.65,110a19.66,19.66,0,0,1-13.82,7.42v10.44a19.39,19.39,0,0,1,3.1-5.48,19.64,19.64,0,0,1,14.5-7.46,18,18,0,0,1-3.78,15.39,19.67,19.67,0,0,1-13.86,7.37ZM97,137.7v10.43a19.88,19.88,0,0,1,17.6-12.93,18,18,0,0,1-3.78,15.39,20,20,0,0,1-7.9,6,148.17,148.17,0,0,0-25.14-7.19,18.06,18.06,0,0,1-2.89-14.19,19.92,19.92,0,0,1,17.61,12.93V137.7a19.7,19.7,0,0,1-13.83-7.42,18.13,18.13,0,0,1-3.78-15.39,19.57,19.57,0,0,1,14.5,7.46,19.18,19.18,0,0,1,3.11,5.48V117.39A19.7,19.7,0,0,1,78.71,110a18.13,18.13,0,0,1-3.78-15.39A19.57,19.57,0,0,1,89.43,102a19.18,19.18,0,0,1,3.11,5.48v-6.47A17.44,17.44,0,0,1,94.79,74.1a17.46,17.46,0,0,1,2.25,27v6.47a19.91,19.91,0,0,1,17.6-12.94A18,18,0,0,1,110.86,110,19.66,19.66,0,0,1,97,117.44v10.44a19.91,19.91,0,0,1,17.6-12.94,18,18,0,0,1-3.78,15.39A19.67,19.67,0,0,1,97,137.7Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M172.82,250.08c-.84-21.67-10.14-41.55-25.32-57.67-22.69-24.07-58.51-39.72-98.88-40a2.35,2.35,0,0,0,0,.59c-.07,1.22-.07,2.44-.07,3.67q0,3.77.29,7.47c.12,1.64.29,3.27.5,4.89s.45,3.23.74,4.82a97.55,97.55,0,0,0,96.13,79.93,99.18,99.18,0,0,0,11.17-.63l-.05,0h.05l-.09,0c-52.83-23.85-80-70.5-80-70.5,53.21,48.1,91.21,65.79,95.21,67.61l.28.13h.07Z" transform="translate(0 -4.08)"/><path class="cls-5" d="M243.71,152.92v-.53c-37.39.26-70.88,13.7-93.64,34.83.58.54,1.06,1.09,1.58,1.64,1.67,1.76,3.26,3.57,4.78,5.41a98.84,98.84,0,0,1,14.84,24.16,553,553,0,0,0,43.79-35.86c-.21.36-13.81,23.55-40.29,45.5a87.92,87.92,0,0,1,3.56,20.29,97.17,97.17,0,0,0,65.5-91.69C243.83,155.41,243.8,154.16,243.71,152.92Z" transform="translate(0 -4.08)"/><path class="cls-6" d="M73.88,67.7,57.27,45.78A142.37,142.37,0,0,0,34.58,68.6,140.8,140.8,0,0,0,12.24,109l26.34,8.22A114.69,114.69,0,0,1,73.88,67.7ZM31.77,155.78a113.37,113.37,0,0,1,4-30L9.38,117.56A141.48,141.48,0,0,0,8,188.9l32.13,9.7A112.87,112.87,0,0,1,31.77,155.78Z" transform="translate(0 -4.08)"/><path class="cls-6" d="M146.2,269.55a114.46,114.46,0,0,1-89.45-42.77l5.18-4.71A5,5,0,0,0,60,213.64L19.93,201.47a5,5,0,0,0-6.32,5.95L23.44,247a5,5,0,0,0,8.24,2.48l4.6-4.18A142.7,142.7,0,0,0,244,258.26l-7.51-32.59a114.53,114.53,0,0,1-90.3,43.88Z" transform="translate(0 -4.08)"/><path class="cls-6" d="M285.35,207.93,279.22,206q2.07-5.43,3.69-11h-.16a140.65,140.65,0,0,0,5.54-39.21c0-63.87-42.65-117.83-101.18-135.3L162.74,43.26c55.36,8,97.88,55.32,97.88,112.52a112.71,112.71,0,0,1-8,41.76l.24.07-6.59-2.09a5,5,0,0,0-6.4,5.86l9.4,40.58a5,5,0,0,0,8.34,2.48l29.65-28.21a5,5,0,0,0-1.91-8.3Z" transform="translate(0 -4.08)"/><path class="cls-6" d="M81.1,62.25a114.23,114.23,0,0,1,48.6-19l1.45,6.69a5,5,0,0,0,8.3,2.6l30.73-28.3a5,5,0,0,0-2-8.42L128.84,4.29a5,5,0,0,0-6.31,5.83l1.35,6.18a141.81,141.81,0,0,0-59.41,24Z" transform="translate(0 -4.08)"/><rect class="cls-7" y="0.81" width="292.96" height="292.96"/></g></g></svg>
|
package/images/Tika.svg
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="110" height="135" xmlns="http://www.w3.org/2000/svg" version="1.1">
|
|
2
|
+
|
|
3
|
+
<g>
|
|
4
|
+
<title>Layer 1</title>
|
|
5
|
+
<path fill="#ffffff" id="svg_1" d="m85.238,37.211l5.3789,-8.9609c1.5391,-2.5703 0.89844,-5.8711 -1.5,-7.6719c-1.3594,-1.0195 -3.1016,-1.3984 -4.7695,-1.0312c-1.6602,0.37109 -3.0781,1.4492 -3.8789,2.9492l-4.8398,9.0781c-7.2383,-2.9453 -16.289,-4.5742 -25.629,-4.5742c-22.609,0 -41,9.4219 -41,21c0,23.711 18.391,43 41,43s41,-19.289 41,-43c0,-3.8398 -2,-7.5508 -5.7617,-10.789l0,-0.0001zm-3.0078,-13.762c0.53125,-0.98828 1.4609,-1.6992 2.5508,-1.9414c1.0898,-0.23828 2.2383,0 3.1289,0.67188c1.5781,1.1797 2,3.3516 0.98828,5.0391l-15.129,25.23c-0.83984,-1.6992 -1.5312,-3.4609 -2.0391,-5.2695c-0.14844,-0.53125 -0.69922,-0.83984 -1.2305,-0.69141l-0.64844,0.17969l12.37906,-23.21836zm-3.8516,29.449c0.69922,0.51953 1.5586,0.78906 2.4219,0.78906c0.51953,0 1.0391,-0.10156 1.5195,-0.30078c0.67188,-0.28125 1.25,-0.76172 1.6914,-1.3398c0.64844,1.2812 0.98828,2.6133 0.98828,3.9531c0,0.10938 0.03125,0.21094 0.05859,0.30859c-1.5117,1.5 -3.4219,2.8906 -5.6484,4.1406c-1.75,-1.8203 -3.2812,-3.8203 -4.5391,-5.9609l4.5586,-7.6016c1.3398,1.0195 2.4609,2.0781 3.3203,3.1914c-0.14062,0.62891 -0.58984,1.2109 -1.1914,1.4609c-0.62891,0.26172 -1.4297,0.16016 -1.9805,-0.25c-0.44141,-0.32812 -1.0703,-0.23828 -1.3984,0.19922c-0.32813,0.45312 -0.23828,1.082 0.19922,1.4102l0.00001,0.00001zm-29.059,14.09c-0.41016,-0.75 -0.37109,-1.8008 0.16016,-2.6211c0.55078,-0.87109 1.5898,-1.5391 2.8398,-1.8398c1.3008,-0.30859 2.6914,-0.21875 3.8789,-0.10156c0.89844,0.10156 1.8516,0.23828 2.6484,0.60156c0.78125,0.35156 1.3594,0.91016 1.6016,1.5312c0.23047,0.60938 0.08984,1.3203 -0.32812,1.6602c-0.03906,0.03906 -0.07031,0.08984 -0.10156,0.12891c-3.2109,0.43359 -6.5586,0.65234 -10.02,0.65234c-0.23047,0 -0.44922,-0.01172 -0.67969,-0.01172l0.00051,-0.00003zm12.988,-3.1172c-0.42969,-1.1289 -1.3594,-2.0703 -2.6406,-2.6484c-1.0703,-0.48047 -2.1992,-0.66016 -3.2695,-0.76953c-1.3594,-0.14062 -2.9609,-0.23828 -4.5508,0.14062c-1.7812,0.42188 -3.2188,1.3906 -4.0586,2.7109c-0.71094,1.1094 -0.89844,2.4609 -0.62109,3.6484c-3.5391,-0.12109 -6.9492,-0.48047 -10.16,-1.0312c-0.01172,-1.0898 0.46094,-2.1914 1.3008,-3.0391c0.33984,-0.33984 0.64062,-0.55078 0.96094,-0.64062c0.32031,-0.08984 0.62891,-0.03125 0.73047,0.05078c0.42188,0.35938 1.0508,0.30859 1.4102,-0.12109c0.35938,-0.42188 0.30078,-1.0508 -0.12109,-1.4102c-0.64062,-0.53906 -1.6484,-0.71875 -2.5781,-0.44922c-0.64063,0.19141 -1.2383,0.55859 -1.8203,1.1484c-1.1094,1.1289 -1.7812,2.5898 -1.8711,4.0781c-5.8594,-1.1914 -11.012,-3.0586 -15.012,-5.4102c0.39844,-0.30859 0.78906,-0.67969 1.0703,-1.1719c0.48047,-0.82812 0.58984,-1.8594 0.35156,-3.1484c-0.05078,-0.26953 -0.10938,-0.53906 -0.17188,-0.80859c-0.12109,-0.53125 -0.23828,-1.0391 -0.25,-1.5195c-0.01172,-0.55078 -0.48828,-0.96875 -1.0195,-0.98047c-0.55078,0.01172 -0.98828,0.46875 -0.98047,1.0195c0.01172,0.69141 0.16016,1.3203 0.30078,1.9297c0.05859,0.23828 0.10938,0.48047 0.16016,0.73047c0.14844,0.80078 0.10938,1.3789 -0.12109,1.7812c-0.23047,0.39844 -0.71094,0.71094 -1.1914,0.98828c-1.2109,-0.82812 -2.3008,-1.7188 -3.2188,-2.6406c0.03125,-0.09766 0.0625,-0.19922 0.0625,-0.30859c0,-9.3711 15.699,-17 35,-17c3.7617,0 7.4297,0.28906 10.922,0.85938c-0.19922,0.19141 -0.39062,0.37891 -0.55078,0.60156c-0.89062,1.1602 -1.25,2.6992 -0.98047,4.1289c0.08984,0.48047 0.51172,0.80859 0.98047,0.80859c0.05859,0 0.12891,-0.01172 0.19141,-0.01953c0.53906,-0.10156 0.89844,-0.62891 0.78906,-1.1719c-0.17187,-0.87891 0.05859,-1.8203 0.60156,-2.5312c0.51953,-0.67969 1.3281,-1.1211 2.1719,-1.2109c2.0508,0.44922 4.0195,1 5.8906,1.6406l-2.8281,5.3008l-2.25,0.62891c-0.37891,0.10938 -0.94922,0.26172 -1.3789,0.71875c-0.94922,1 -0.41016,2.4414 -0.23047,2.9102l4.9609,13.109c-1.8594,0.48047 -3.8008,0.89062 -5.8203,1.2188c0.15234,-0.67188 0.10938,-1.4219 -0.16016,-2.1211l-0.00011,0.0004zm7.9023,0.37891l0,-0.03125l-5.0117,-13.25c-0.25,-0.64844 -0.19922,-0.82812 -0.19922,-0.82812c0.07031,-0.05859 0.35156,-0.14062 0.46875,-0.17188l4.6211,-1.2891c1.4883,4.7109 4.0703,9.0703 7.4883,12.75c-2.207,1.0703 -4.6875,2.0195 -7.3672,2.8203l-0.00003,0.00005zm-20.211,-35.25c9.0117,0 17.711,1.5508 24.68,4.3594l-3.7109,6.9609c-6.1797,-2.1719 -13.398,-3.3203 -20.969,-3.3203c-19.578,0 -35.148,7.4297 -36.84,17.219c-1.3906,-1.9492 -2.1602,-4.0391 -2.1602,-6.2188c0,-10.48 17.5,-19 39,-19l0.0001,-0.0002zm0,60c-19.09,0 -35.02,-14.5 -38.352,-33.578c5.8711,7.9297 20.84,13.578 38.352,13.578s32.48,-5.6484 38.352,-13.578c-3.332,19.078 -19.262,33.578 -38.352,33.578zm36.84,-34.781c-0.57031,-3.2812 -2.7383,-6.3789 -6.3711,-9.0703l3.7188,-6.1992c3.1406,2.7891 4.8125,5.9023 4.8125,9.0508c0,2.1797 -0.76953,4.2695 -2.1602,6.2188l0,-0.0001zm-42.988,-37.59c-1.6406,-2.0312 -1.6406,-5.2188 0,-7.25c0.35156,-0.42969 0.98047,-0.5 1.4102,-0.14844c0.42969,0.35156 0.5,0.98047 0.14844,1.4102c-1.0391,1.2891 -1.0391,3.4609 0,4.75c1.6406,2.0312 1.6406,5.2188 0,7.25c-0.19922,0.25 -0.48828,0.37109 -0.78125,0.37109c-0.21875,0 -0.44141,-0.07031 -0.62891,-0.21875c-0.42969,-0.35156 -0.5,-0.98047 -0.14844,-1.4102c1.0391,-1.293 1.0391,-3.4727 0,-4.7539l-0.00004,0zm-21.633,4c-1.6406,-2.0312 -1.6406,-5.2188 0,-7.25c0.35156,-0.42969 0.98047,-0.5 1.4102,-0.14844c0.42969,0.35156 0.5,0.98047 0.14844,1.4102c-1.0391,1.2891 -1.0391,3.4609 0,4.75c1.6406,2.0312 1.6406,5.2188 0,7.25c-0.19922,0.23047 -0.48828,0.35938 -0.77734,0.35938c-0.21875,0 -0.44141,-0.07031 -0.62891,-0.21875c-0.42969,-0.35156 -0.5,-0.98047 -0.14844,-1.4102c1.0391,-1.2812 1.0391,-3.4609 -0.00391,-4.7422l-0.00004,0.00001zm42,-2c-1.6406,-2.0312 -1.6406,-5.2188 0,-7.25c0.35156,-0.42969 0.98047,-0.5 1.4102,-0.14844c0.42969,0.35156 0.5,0.98047 0.14844,1.4102c-1.0391,1.2891 -1.0391,3.4609 0,4.75c1.6406,2.0312 1.6406,5.2188 0,7.25c-0.19922,0.23047 -0.48828,0.35938 -0.77734,0.35938c-0.21875,0 -0.44141,-0.07031 -0.62891,-0.21875c-0.42969,-0.35156 -0.5,-0.98047 -0.14844,-1.4102c1.0391,-1.2812 1.0391,-3.4609 -0.00391,-4.7422l-0.00004,0.00001zm-30.98,27.391c-1.6406,-0.75 -3.8086,-0.44141 -5.2695,0.75c-1.3086,1.0586 -2.0391,2.75 -1.9492,4.5117c0.08984,1.8906 1.0898,3.6602 2.6797,4.75c1.0781,0.73828 2.4219,1.1289 3.7383,1.1289c0.69141,0 1.3711,-0.10938 2,-0.32031c2.0195,-0.69141 3.4609,-2.4492 3.5703,-4.3711c0.07031,-1.2812 -0.41016,-2.6094 -1.4102,-3.8398c-0.91797,-1.1484 -2.0195,-2 -3.3594,-2.6094l0,0.00001zm0.55078,8.9297c-1.2695,0.42969 -2.8203,0.21094 -3.9609,-0.55859c-1.0703,-0.73828 -1.75,-1.9297 -1.8086,-3.1992c-0.05859,-1.1289 0.39844,-2.1992 1.2188,-2.8711c0.57031,-0.46094 1.3281,-0.71094 2.0586,-0.71094c0.39844,0 0.78125,0.07031 1.1211,0.23047c1.0586,0.48047 1.8984,1.1289 2.6289,2.0391c0.67188,0.82812 1.0117,1.7109 0.96875,2.4688c-0.06641,1.1133 -0.98438,2.1836 -2.2266,2.6016l-0.00005,-0.00014zm20.98,-9.1484c-0.46875,-0.85156 -1.0508,-1.8008 -2.0312,-2.3516c-1.1797,-0.64844 -2.7188,-0.60156 -4.3398,0.16016c-0.42969,0.19922 -0.83984,0.42969 -1.2617,0.67188c-0.62109,0.35156 -1.1992,0.67969 -1.8086,0.87109c-1.0312,0.32812 -2.4492,0.89062 -2.7812,2.0781c-0.23047,0.85156 0.08984,1.6289 0.30859,2.1406l2.4492,5.8398c0.17969,0.42969 0.48047,1.1406 1.1797,1.5312c0.33984,0.19141 0.69141,0.26172 1.0195,0.26172c0.69141,0 1.3281,-0.30078 1.6602,-0.46094l7.7891,-3.7109c0.46875,-0.23047 0.69141,-0.78125 0.5,-1.2695c-0.76172,-1.9609 -1.6719,-3.9023 -2.6836,-5.7617l-0.00019,0.00009zm-6.4609,8.9297c-0.67969,0.32812 -0.82812,0.26953 -0.83984,0.26172c-0.08984,-0.05078 -0.25,-0.42969 -0.30078,-0.55078l-2.4492,-5.8398c-0.10156,-0.23828 -0.26953,-0.64844 -0.23047,-0.80859c0,0 0.19141,-0.32812 1.4609,-0.71875c0.80859,-0.25 1.5117,-0.64844 2.1914,-1.0391c0.37109,-0.21094 0.73828,-0.42188 1.1211,-0.60156c0.48047,-0.21875 1.6797,-0.69141 2.5195,-0.23047c0.51953,0.28906 0.89844,0.92969 1.25,1.5703c0.82812,1.5117 1.5781,3.0703 2.2305,4.6602l-6.95311,3.29683z"/>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
package/index.html
ADDED
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="fr">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
<title>Projet TIKA - Visualisation d'itinéraires techniques</title>
|
|
8
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
9
|
+
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
|
10
|
+
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet"
|
|
11
|
+
integrity="sha512-Avb2QiuDEEvB4bZJYdft2mNjVShBftLdPG8FJ0V7irTLQ8Uo0qcPxh4Plq7G5tGm0rU+1SPhVotteLpBERwTkw==" crossorigin="anonymous">
|
|
12
|
+
<link href="./css/styles-rendering.css" rel="stylesheet">
|
|
13
|
+
|
|
14
|
+
<link href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css" rel="stylesheet">
|
|
15
|
+
|
|
16
|
+
<style>
|
|
17
|
+
.hero-section {
|
|
18
|
+
background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
|
|
19
|
+
color: white;
|
|
20
|
+
padding: 4rem 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.demo-image {
|
|
24
|
+
border-radius: 8px;
|
|
25
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
26
|
+
margin: 1rem 0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.code-block {
|
|
30
|
+
background-color: #f8f9fa;
|
|
31
|
+
border: 1px solid #e9ecef;
|
|
32
|
+
border-radius: 6px;
|
|
33
|
+
padding: 1rem;
|
|
34
|
+
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
|
|
35
|
+
font-size: 0.875rem;
|
|
36
|
+
overflow-x: auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.btn-demo {
|
|
40
|
+
background-color: #28a745;
|
|
41
|
+
border-color: #28a745;
|
|
42
|
+
font-weight: 500;
|
|
43
|
+
padding: 0.75rem 1.5rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.btn-demo:hover {
|
|
47
|
+
background-color: #218838;
|
|
48
|
+
border-color: #1e7e34;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.section-header {
|
|
52
|
+
border-bottom: 3px solid #4CAF50;
|
|
53
|
+
padding-bottom: 0.5rem;
|
|
54
|
+
margin-bottom: 1.5rem;
|
|
55
|
+
}
|
|
56
|
+
</style>
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
60
|
+
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
|
61
|
+
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.1/dist/echarts.js"></script>
|
|
62
|
+
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script>
|
|
63
|
+
<script src="https://cdn.jsdelivr.net/npm/underscore@1.13.7/underscore-umd-min.js"></script>
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
<link href="./css/styles-rendering.css" rel="stylesheet">
|
|
67
|
+
<script src="./js/chart-render.js"></script>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</head>
|
|
71
|
+
|
|
72
|
+
<body>
|
|
73
|
+
<!-- Hero Section -->
|
|
74
|
+
<div class="hero-section">
|
|
75
|
+
<div class="container">
|
|
76
|
+
<div class="row">
|
|
77
|
+
<div class="col-lg-10 mx-auto">
|
|
78
|
+
<img align="right" src="images/Tika.svg" width="200">
|
|
79
|
+
<h1 class="display-4 fw-bold mb-4">TIKA</h1>
|
|
80
|
+
<h2 class="h3 mb-4">Visualisation d'itinéraires techniques</h2>
|
|
81
|
+
<p class="lead mb-4">
|
|
82
|
+
Une solution moderne pour visualiser et éditer les itinéraires techniques agricoles,
|
|
83
|
+
de la préparation du sol à la récolte.
|
|
84
|
+
</p>
|
|
85
|
+
<div class="d-flex gap-3">
|
|
86
|
+
<a href="visualisateur.html" class="btn btn-light btn-lg">
|
|
87
|
+
<i class="fas fa-chart-line me-2"></i>Voir la démo
|
|
88
|
+
</a>
|
|
89
|
+
<a href="editor.html" class="btn btn-outline-light btn-lg">
|
|
90
|
+
<i class="fas fa-edit me-2"></i>Accéder à l'éditeur
|
|
91
|
+
</a>
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
</div>
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
<!-- Main Content -->
|
|
99
|
+
<div class="container my-5">
|
|
100
|
+
<!-- Introduction -->
|
|
101
|
+
<div class="row mb-5">
|
|
102
|
+
<div class="col-lg-10 mx-auto">
|
|
103
|
+
<p class="fs-5 text-muted">
|
|
104
|
+
Les itinéraires techniques désignent l'ensemble des interventions qui sont opérées sur une parcelle
|
|
105
|
+
donnée, de la préparation du sol à la récolte. Les itinéraires techniques sont intéressants à étudier, en
|
|
106
|
+
particulier quand il s'agit de successions de cultures sur plusieurs années, afin de comprendre la stratégie
|
|
107
|
+
d'un agriculteur
|
|
108
|
+
ou bien d'expliciter le bénéfice de telle ou telle rotation.
|
|
109
|
+
</p>
|
|
110
|
+
<p class="fs-5 text-muted">
|
|
111
|
+
En revanche, la visualisation d'un itinéraire technique (aussi appelé schémas décisionnel) se fait
|
|
112
|
+
souvent aujourd'hui avec des outils tels que PowerPoint à défaut d'autre chose. Outre le fait que ces outils
|
|
113
|
+
ne gèrent pas bien les proportionalités entre les séquences de temps, ils sont rapidement limités dans leur
|
|
114
|
+
capacité d'afficher beaucoup d'information.
|
|
115
|
+
</p>
|
|
116
|
+
<p class="fs-5 text-muted">
|
|
117
|
+
Ce projet vise à proposer une alternative, pour décrire un itinéraire technique complet, avec un
|
|
118
|
+
maximum d'interventions et d'informations annexes (par exemple l'écartement du rang, la variété ou la
|
|
119
|
+
densité de semis).
|
|
120
|
+
</p>
|
|
121
|
+
</div>
|
|
122
|
+
</div>
|
|
123
|
+
|
|
124
|
+
<!-- Demo Images -->
|
|
125
|
+
<div class="row mb-5">
|
|
126
|
+
<div class="col-md-6">
|
|
127
|
+
<div class="card">
|
|
128
|
+
|
|
129
|
+
<div id="rotation-chart-horizontal"></div>
|
|
130
|
+
|
|
131
|
+
<div class="card-body">
|
|
132
|
+
<h5 class="card-title">Format Frise</h5>
|
|
133
|
+
<p class="card-text">
|
|
134
|
+
Le rendu peut se faire au format frise, avec un zoom temporel, et la possibilité de cliquer
|
|
135
|
+
sur chaque étape de la rotation ou chaque intervention pour en savoir plus.
|
|
136
|
+
</p>
|
|
137
|
+
</div>
|
|
138
|
+
</div>
|
|
139
|
+
</div>
|
|
140
|
+
<div class="col-md-6">
|
|
141
|
+
<div class="card">
|
|
142
|
+
|
|
143
|
+
<div id="rotation-chart-donut"></div>
|
|
144
|
+
<div class="card-body">
|
|
145
|
+
<h5 class="card-title">Format Rotation</h5>
|
|
146
|
+
<p class="card-text">
|
|
147
|
+
L'utilisateur peut passer au format rotation pour voir l'ensemble de la rotation sur un
|
|
148
|
+
cercle.
|
|
149
|
+
</p>
|
|
150
|
+
</div>
|
|
151
|
+
</div>
|
|
152
|
+
</div>
|
|
153
|
+
</div>
|
|
154
|
+
|
|
155
|
+
<!-- Demo and Editor Links -->
|
|
156
|
+
<div class="row mb-5">
|
|
157
|
+
<div class="col-md-6 mb-3">
|
|
158
|
+
<div class="card border-success">
|
|
159
|
+
<div class="card-header bg-success text-white">
|
|
160
|
+
<h4 class="card-title mb-0">Démo Interactive</h4>
|
|
161
|
+
</div>
|
|
162
|
+
<div class="card-body">
|
|
163
|
+
<p class="card-text">Découvrez les fonctionnalités du visualisateur avec des données d'exemple.
|
|
164
|
+
</p>
|
|
165
|
+
<a href="visualisateur.html" class="btn btn-success btn-demo"><i class="fas fa-chart-line me-2"></i>Accéder à la démo</a>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
168
|
+
</div>
|
|
169
|
+
|
|
170
|
+
<div class="col-md-6">
|
|
171
|
+
<div class="card border-primary">
|
|
172
|
+
<div class="card-header bg-primary text-white">
|
|
173
|
+
<h4 class="card-title mb-0">Éditeur</h4>
|
|
174
|
+
</div>
|
|
175
|
+
<div class="card-body">
|
|
176
|
+
<p class="card-text">Créez votre propre itinéraire technique et intégrez-le facilement dans
|
|
177
|
+
n'importe quel contexte.</p>
|
|
178
|
+
<a href="editor.html" class="btn btn-primary btn-demo"><i class="fas fa-edit me-2"></i>Accéder à l'éditeur</a>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
</div>
|
|
183
|
+
|
|
184
|
+
<!-- Triple Performance Section -->
|
|
185
|
+
<div class="row mb-5">
|
|
186
|
+
<div class="col-12">
|
|
187
|
+
<h2 class="section-header">Triple Performance</h2>
|
|
188
|
+
<p class="fs-5">
|
|
189
|
+
Ce visualisateur est avant tout conçu pour être utilisé sur
|
|
190
|
+
<a href="https://wiki.tripleperformance.fr/" class="text-decoration-none">Triple Performance</a>.
|
|
191
|
+
Vous y trouverez de
|
|
192
|
+
<a href="https://wiki.tripleperformance.fr/wiki/Retours_d%27exp%C3%A9rience"
|
|
193
|
+
class="text-decoration-none">nombreux</a>
|
|
194
|
+
<a href="https://wiki.tripleperformance.fr/wiki/Ferme_de_Longueil"
|
|
195
|
+
class="text-decoration-none">retours d'expérience</a>
|
|
196
|
+
documentés avec des données technico-économiques ainsi que les itinéraires techniques associés.
|
|
197
|
+
</p>
|
|
198
|
+
<p class="fs-5">
|
|
199
|
+
Les itinéraires peuvent être créés directement dans
|
|
200
|
+
<a href="https://wiki.tripleperformance.fr/wiki/Aide:Ins%C3%A9rer_des_graphiques_dans_une_page"
|
|
201
|
+
class="text-decoration-none">Google Spreadsheet</a>
|
|
202
|
+
grâce à l'<a href="https://workspace.google.com/marketplace/app/triple_performance/427792115089"
|
|
203
|
+
class="text-decoration-none">add-on</a>
|
|
204
|
+
spécifiquement conçu pour Google Workspace.
|
|
205
|
+
</p>
|
|
206
|
+
</div>
|
|
207
|
+
</div>
|
|
208
|
+
|
|
209
|
+
<!-- Integration Section -->
|
|
210
|
+
<div class="row mb-5">
|
|
211
|
+
<div class="col-12">
|
|
212
|
+
<h2 class="section-header">Utilisation dans un autre contexte / logiciel</h2>
|
|
213
|
+
<p class="fs-5 mb-4">
|
|
214
|
+
Il est possible d'utiliser cette librairie très facilement dans n'importe quel outil. Le
|
|
215
|
+
visualisateur a été conçu pour être très facile à intégrer dans une page HTML, il ne dépend que de briques
|
|
216
|
+
Javascript (Apache Echarts, JQuery et Bootstrap). N'hésitez pas à nous contacter si vous décidez de l'utiliser
|
|
217
|
+
et à contribuer si vous faites des évolutions !
|
|
218
|
+
</p>
|
|
219
|
+
|
|
220
|
+
<h3 class="h4 mb-3">Installation via npm</h3>
|
|
221
|
+
<div class="code-block mb-4">
|
|
222
|
+
npm i @osfarm/itineraire-technique
|
|
223
|
+
</div>
|
|
224
|
+
|
|
225
|
+
<h3 class="h4 mb-3">Configuration du build</h3>
|
|
226
|
+
<div class="code-block mb-4">
|
|
227
|
+
<pre>
|
|
228
|
+
{
|
|
229
|
+
"private": true,
|
|
230
|
+
"dependencies": {
|
|
231
|
+
"@osfarm/itineraire-technique": "^1.0.0"
|
|
232
|
+
},
|
|
233
|
+
"scripts": {
|
|
234
|
+
"build": "cp node_modules/@osfarm/itineraire-technique/js/chart-render.js js/ && cp node_modules/@osfarm/itineraire-technique/css/styles-rendering.css css"
|
|
235
|
+
}
|
|
236
|
+
}</pre>
|
|
237
|
+
</div>
|
|
238
|
+
|
|
239
|
+
<h3 class="h4 mb-3">Inclusion des dépendances HTML</h3>
|
|
240
|
+
<div class="code-block mb-4">
|
|
241
|
+
<pre>
|
|
242
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
|
243
|
+
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.1/dist/echarts.js"></script>
|
|
244
|
+
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script>
|
|
245
|
+
<script src="https://cdn.jsdelivr.net/npm/underscore@1.13.7/underscore-umd-min.js"></script>
|
|
246
|
+
<br>
|
|
247
|
+
<link href="./css/styles-rendering.css" rel="stylesheet">
|
|
248
|
+
<script src="./js/chart-render.js"></script>
|
|
249
|
+
</pre>
|
|
250
|
+
</div>
|
|
251
|
+
|
|
252
|
+
<h3 class="h4 mb-3">Utilisation</h3>
|
|
253
|
+
<div class="code-block mb-4">
|
|
254
|
+
<pre>
|
|
255
|
+
fetch('ma_rotation.json')
|
|
256
|
+
.then(response => {
|
|
257
|
+
if (!response.ok) {
|
|
258
|
+
throw new Error("Erreur HTTP " + response.status);
|
|
259
|
+
}
|
|
260
|
+
return response.json();
|
|
261
|
+
})
|
|
262
|
+
.then(data => {
|
|
263
|
+
let renderer = new RotationRenderer('rotation-chart-id', data);
|
|
264
|
+
renderer.render();
|
|
265
|
+
})
|
|
266
|
+
.catch(error => {
|
|
267
|
+
console.error("Impossible de charger le JSON :", error);
|
|
268
|
+
});</pre>
|
|
269
|
+
</div>
|
|
270
|
+
|
|
271
|
+
<p class="text-muted">
|
|
272
|
+
Le JSON doit respecter le format que vous pourrez trouver dans les différents
|
|
273
|
+
<a href="https://osfarm.github.io/itineraire-technique/test/test.json"
|
|
274
|
+
class="text-decoration-none">exemples de test</a>.
|
|
275
|
+
</p>
|
|
276
|
+
</div>
|
|
277
|
+
</div>
|
|
278
|
+
</div>
|
|
279
|
+
|
|
280
|
+
<!-- Footer -->
|
|
281
|
+
<footer class="bg-dark text-light py-4">
|
|
282
|
+
<div class="container">
|
|
283
|
+
<div class="row">
|
|
284
|
+
<div class="col-md-4 mb-4 text-center text-md-start">
|
|
285
|
+
<h5>Projet TIKA</h5>
|
|
286
|
+
<p class="mb-0">Visualisation d'itinéraires techniques agricoles</p>
|
|
287
|
+
</div>
|
|
288
|
+
<div class="col-md-4 text-center mb-4">
|
|
289
|
+
<a href="https://github.com/osfarm/itineraire-technique" class="text-light text-decoration-none">
|
|
290
|
+
<i class="fa-brands fa-github me-2"></i>Voir sur GitHub
|
|
291
|
+
</a>
|
|
292
|
+
</div>
|
|
293
|
+
<div class="col-md-4 text-center text-md-end mb-4">
|
|
294
|
+
<p>Fait avec ♡ par <a target="_blank" href="https://neayi.com/">Neayi</a> pour <a href="https://tripleperformance.fr">Triple Performance</a></p>
|
|
295
|
+
</div>
|
|
296
|
+
</div>
|
|
297
|
+
|
|
298
|
+
<div class="row">
|
|
299
|
+
<div class="col-md-6 mb-4 text-center text-md-start">
|
|
300
|
+
<a href="https://tripleperformance.fr" target="_blank"><img src="images/Logo Triple Performance - blanc - vectoriel.svg" width="300" alt="Logo Triple Performance"></a>
|
|
301
|
+
</div>
|
|
302
|
+
<div class="col-md-3 mb-4 text-md-end text-center">
|
|
303
|
+
<a href="https://ademe.fr" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/fr/6/67/Logo_ADEME.svg" width="200" alt="Logo ADEME"></a>
|
|
304
|
+
</div>
|
|
305
|
+
<div class="col-md-3 mb-4 text-center text-md-start">
|
|
306
|
+
<p class="mb-4">Opération réalisée avec le soutien financier de l'ADEME.</p>
|
|
307
|
+
</div>
|
|
308
|
+
</div>
|
|
309
|
+
|
|
310
|
+
</div>
|
|
311
|
+
</footer>
|
|
312
|
+
|
|
313
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
|
|
314
|
+
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
|
|
315
|
+
crossorigin="anonymous"></script>
|
|
316
|
+
|
|
317
|
+
<script>
|
|
318
|
+
|
|
319
|
+
fetch('test/test horizontal no transcript.json')
|
|
320
|
+
.then(response => {
|
|
321
|
+
if (!response.ok) {
|
|
322
|
+
throw new Error("Erreur HTTP " + response.status);
|
|
323
|
+
}
|
|
324
|
+
return response.json();
|
|
325
|
+
})
|
|
326
|
+
.then(data => {
|
|
327
|
+
let renderer = new RotationRenderer('rotation-chart-horizontal', data);
|
|
328
|
+
renderer.render();
|
|
329
|
+
})
|
|
330
|
+
.catch(error => {
|
|
331
|
+
console.error("Impossible de charger le JSON :", error);
|
|
332
|
+
});
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
fetch('test/test donut no transcript.json')
|
|
336
|
+
.then(response => {
|
|
337
|
+
if (!response.ok) {
|
|
338
|
+
throw new Error("Erreur HTTP " + response.status);
|
|
339
|
+
}
|
|
340
|
+
return response.json();
|
|
341
|
+
})
|
|
342
|
+
.then(data => {
|
|
343
|
+
let renderer = new RotationRenderer('rotation-chart-donut', data);
|
|
344
|
+
renderer.render();
|
|
345
|
+
})
|
|
346
|
+
.catch(error => {
|
|
347
|
+
console.error("Impossible de charger le JSON :", error);
|
|
348
|
+
});
|
|
349
|
+
|
|
350
|
+
</script>
|
|
351
|
+
</body>
|
|
352
|
+
|
|
353
|
+
</html>
|