New version for 2024

This commit is contained in:
Tom Hubrecht 2024-02-19 20:18:10 +01:00
parent 8d3713de58
commit e0625b4ec8
41 changed files with 4475 additions and 2384 deletions

View file

@ -1,26 +1,24 @@
/* Calendar */
#cal-container {
position: relative;
.cal-container {
position: relative;
width: 100%;
/* height: 1200px; */
padding: 0;
width: 100%;
/* height: 1200px; */
padding: 0;
font-size: 0.8rem;
line-height: 100%;
font-size: 0.8rem;
line-height: 100%;
}
#cal-container,
#cal-container * {
.cal-container,
.cal-container * {
box-sizing: border-box;
}
/* Time slots */
#cal-container .cal-time-slot-container {
.cal-container .cal-time-slot-container {
display: grid;
/* grid-template-columns: repeat(24, 1fr); */
grid-template-rows: 30px auto;
@ -31,65 +29,50 @@
width: 100%;
height: calc(100% + 30px);
padding: 0;
border-bottom: 2px solid rgba(0, 0, 0, 0.5);
border-bottom: 0px solid rgba(0, 0, 0, 0.5);
z-index: 10;
}
#cal-container .cal-time-slot {
.cal-container .cal-time-slot {
border-right: 1px solid rgba(0, 0, 0, 0.5);
background-color: rgba(255, 255, 255, 0.8);
}
/* #cal-container .cal-time-slot:hover {
/* .cal-container .cal-time-slot:hover {
background-color: red;
} */
#cal-container .cal-time-slot:nth-child(even) {
background-color: rgba(255, 255, 255, 0.9);
.cal-container .cal-time-slot:nth-child(even) {
background-color: rgba(71, 19, 43, 0);
}
/* #cal-container .cal-time-slot:nth-child(even):hover {
/* .cal-container .cal-time-slot:nth-child(even):hover {
background-color: #D9D9D9;
} */
#cal-container .cal-time-slot:last-child {
.cal-container .cal-time-slot:last-child {
border-right: 0;
}
#cal-container .cal-time-slot-hour {
.cal-container .cal-time-slot-hour {
padding: 0 0 0 calc(100% - 0.9rem + 7px);
background-color: none; /* rgba(255, 223, 165, 0.08); */
border-bottom: 2px solid rgba(0, 0, 0, 0.5);
font-size: 0.9rem;
border-bottom: 0px solid rgba(71, 19, 43, 0.25);
font-size: 1rem;
}
#cal-container .cal-time-slot-hour:nth-child(even) {
background-color: none;/* rgba(255, 223, 165, 0.05);*/
.cal-container .cal-time-slot-hour:nth-child(even) {
background-color: none; /* rgba(255, 223, 165, 0.05);*/
}
#cal-container .cal-time-slot-hour:first-child {
.cal-container .cal-time-slot-hour:first-child {
color: transparent;
border-right: 0;
}
#cal-container .cal-time-slot-hour.cal-last-hour {
padding: 0;
color: transparent;
}
#cal-container .cal-time-slot.cal-last-hour,
#cal-container .cal-time-slot-hour.cal-last-hour {
border-right: 1px solid rgba(0, 0, 0, 0.5);
}
#cal-container .cal-time-slot.cal-first-hour,
#cal-container .cal-time-slot-hour.cal-first-hour {
border-left: 1px solid rgba(0, 0, 0, 0.5);
}
/* Events */
#cal-container .cal-event-container {
.cal-container .cal-event-container {
display: grid;
/* grid-template-columns: repeat(24, 1fr); */
/* grid-template-rows: repeat(12, auto); */
@ -103,7 +86,7 @@
z-index: 100;
}
#cal-container .cal-event {
.cal-container .cal-event {
position: relative;
height: 42px;
margin: 2px 0;
@ -121,57 +104,59 @@
transition: 50ms ease-in;
}
#cal-container .cal-event > * {
.cal-container .cal-event > * {
display: none;
margin: 5px;
overflow: hidden;
}
#cal-container .cal-event > .cal-event-name,
#cal-container .cal-event > .cal-event-location,
#cal-container .cal-event > .cal-event-perm-count {
.cal-container .cal-event > .cal-event-name,
.cal-container .cal-event > .cal-event-location,
.cal-container .cal-event > .cal-event-perm-count {
display: block;
margin: 0;
}
#cal-container .cal-event > .cal-event-name {
.cal-container .cal-event > .cal-event-name {
font-weight: 700;
}
#cal-container .cal-event > .cal-event-location {
font-weight: 400;
.cal-container .cal-event > .cal-event-location {
font-weight: 300;
font-style: italic;
}
/*#cal-container .cal-event > .cal-event-location::before {
/*.cal-container .cal-event > .cal-event-location::before {
content: " · ";
}*/
#cal-container .cal-event > .cal-event-perm-count {
.cal-container .cal-event > .cal-event-perm-count {
position: absolute;
bottom: 0;
right: 0;
}
#cal-container .cal-event:not(.cal-event-subscribed) > .cal-event-perm-count.cal-perms-missing {
.cal-container
.cal-event:not(.cal-event-subscribed)
> .cal-event-perm-count.cal-perms-missing {
width: calc(100% - 10px);
right: auto;
margin: 5px;
padding: 5px;
background-color: #FFF;
border: 2px solid #E44;
color: #E44;
background-color: #fff;
border: 2px solid #e44;
color: #e44;
font-weight: bold;
border-radius: 3px;
overflow: hidden;
}
#cal-container .cal-event.cal-event-subscribed {
.cal-container .cal-event.cal-event-subscribed {
border-width: 3px;
border-color: #000;
}
#cal-container .cal-event.cal-event-subscribed::after {
.cal-container .cal-event.cal-event-subscribed::after {
content: "✔";
position: absolute;
left: 0;
@ -184,37 +169,36 @@
border-top-right-radius: 3px;
}
/* Event details popup */
#cal-container .cal-event-details {
.cal-container .cal-event-details {
position: absolute;
min-height: 100px;
/* min-width: 40%; */
max-width: 80%;
padding: 20px;
background-color: #333;
color: #FFF;
color: #fff;
border-radius: 4px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
z-index: 1000;
}
#cal-container .cal-event-details:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-bottom-color: #333;
border-width: 20px;
margin-left: -20px;
.cal-container .cal-event-details:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-bottom-color: #333;
border-width: 20px;
margin-left: -20px;
}
#cal-container .cal-event-details.above-event:after {
.cal-container .cal-event-details.above-event:after {
top: 100%;
left: 50%;
border: solid transparent;
@ -228,11 +212,11 @@
margin-left: -20px;
}
#cal-container .cal-event-details * {
.cal-container .cal-event-details * {
z-index: 1000;
}
#cal-container .cal-event-details .cal-detail-close-button {
.cal-container .cal-event-details .cal-detail-close-button {
width: 35px;
height: 35px;
position: absolute;
@ -244,107 +228,118 @@
border: none;
border-radius: 50%;
font-size: 1.2rem;
color: #BBB;
color: #bbb;
transition: 100ms ease-out;
}
#cal-container .cal-event-details .cal-detail-close-button:hover {
.cal-container .cal-event-details .cal-detail-close-button:hover {
background-color: #484848;
color: #EFEFEF;
color: #efefef;
}
#cal-container .cal-event-details a,
#cal-container .cal-event-details a:hover {
color: #FFF;
.cal-container .cal-event-details a,
.cal-container .cal-event-details a:hover {
color: #fff;
text-decoration: none;
}
#cal-container .cal-event-details .cal-detail-name {
.cal-container .cal-event-details .cal-detail-name {
padding: 10px;
border-radius: 4px;
font-size: 1rem;
color: #FFF;
color: #fff;
text-transform: uppercase;
text-align: center;
}
#cal-container .cal-event-details .cal-detail-name h3 {
.cal-container .cal-event-details .cal-detail-name h3 {
margin: 0 20px 20px 20px;
}
#cal-container .cal-event-details table {
.cal-container .cal-event-details table {
margin: 0 auto;
}
#cal-container .cal-event-details td.cal-detail-label {
.cal-container .cal-event-details td.cal-detail-label {
padding: 0 10px 10px 0;
font-weight: bold;
text-align: right;
}
#cal-container .cal-event-details td.cal-detail-value {
.cal-container .cal-event-details td.cal-detail-value {
padding: 0 0 10px 10px;
text-align: left;
}
#cal-container .cal-event-details .cal-detail-perm-area {
.cal-container .cal-event-details .cal-detail-perm-area {
margin: 10px 0;
padding: 10px;
background-color: #DFDFDF;
background-color: #dfdfdf;
color: #333;
text-align: center;
border-radius: 4px;
}
#cal-container .cal-event-details .cal-detail-perm-title {
.cal-container .cal-event-details .cal-detail-perm-title {
margin: 0 0 10px 0;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count {
.cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count {
margin: 0 10px 0 0;
font-size: 1.7rem;
vertical-align: middle;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count.cal-perms-missing {
color: #E44;
.cal-container
.cal-event-details
.cal-detail-perm-area
.cal-detail-perm-count.cal-perms-missing {
color: #e44;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count.cal-perms-full {
.cal-container
.cal-event-details
.cal-detail-perm-area
.cal-detail-perm-count.cal-perms-full {
color: #393;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-subscription-switch {
.cal-container
.cal-event-details
.cal-detail-perm-area
.cal-detail-perm-subscription-switch {
margin: 0 0 0 10px;
padding: 10px;
font-size: 1.35rem;
vertical-align: middle;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-nb-missing-perms {
.cal-container
.cal-event-details
.cal-detail-perm-area
.cal-detail-perm-nb-missing-perms {
margin: 20px 0 0 0;
padding: 5px;
background-color: #FFF;
background-color: #fff;
border-radius: 4px;
text-align: center;
font-size: 1.1rem;
color: #E44;
color: #e44;
font-weight: bold;
}
#cal-container .cal-event-details .cal-detail-description {
.cal-container .cal-event-details .cal-detail-description {
margin: 20px 0 0 0;
color: #DDD;
color: #ddd;
font-size: 0.9rem;
font-style: italic;
text-align: justify;
line-height: 130%;
}
#cal-container .cal-event-details .cal-detail-tag {
.cal-container .cal-event-details .cal-detail-tag {
display: inline-block;
margin: 5px;
padding: 5px;
border: 1px solid #DDD;
border: 1px solid #ddd;
}

View file

@ -174,7 +174,8 @@ textarea {
*/
button,
input { /* 1 */
input {
/* 1 */
overflow: visible;
}
@ -184,7 +185,8 @@ input { /* 1 */
*/
button,
select { /* 1 */
select {
/* 1 */
text-transform: none;
}

File diff suppressed because it is too large Load diff

View file

@ -1,18 +1,19 @@
/* Tipso Bubble Styles */
.tipso_bubble, .tipso_bubble > .tipso_arrow{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
.tipso_bubble,
.tipso_bubble > .tipso_arrow {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.tipso_bubble {
position: absolute;
text-align: center;
border-radius: 6px;
z-index: 9999;
text-align: center;
border-radius: 6px;
z-index: 9999;
}
.tipso_style{
/* cursor: help; */
/* border-bottom: 1px dotted; */
.tipso_style {
/* cursor: help; */
/* border-bottom: 1px dotted; */
}
.tipso_title {
padding: 0;
@ -27,17 +28,17 @@
/* Tipso Bubble size classes - Similar to Foundation's syntax*/
.tipso_bubble.tiny {
font-size: 0.6rem;
font-size: 0.6rem;
}
.tipso_bubble.small {
font-size: 0.8rem;
font-size: 0.8rem;
}
.tipso_bubble.default {
font-size: 1rem;
font-size: 1rem;
}
.tipso_bubble.large {
font-size: 1.2rem;
width: 100%;
font-size: 1.2rem;
width: 100%;
}
.tipso_bubble.cal_small {
@ -45,65 +46,66 @@
}
/* Tipso Bubble Div */
.tipso_bubble > .tipso_arrow{
position: absolute;
width: 0; height: 0;
border: 8px solid;
pointer-events: none;
.tipso_bubble > .tipso_arrow {
position: absolute;
width: 0;
height: 0;
border: 8px solid;
pointer-events: none;
}
.tipso_bubble.top > .tipso_arrow {
border-top-color: #000;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: transparent;
top: 100%;
left: 50%;
margin-left: -8px;
border-top-color: #000;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: transparent;
top: 100%;
left: 50%;
margin-left: -8px;
}
.tipso_bubble.bottom > .tipso_arrow {
border-bottom-color: #000;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
bottom: 100%;
left: 50%;
margin-left: -8px;
border-bottom-color: #000;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
bottom: 100%;
left: 50%;
margin-left: -8px;
}
.tipso_bubble.left > .tipso_arrow {
border-left-color: #000;
border-top-color: transparent;
border-bottom-color: transparent;
border-right-color: transparent;
top: 50%;
left: 100%;
margin-top: -8px;
border-left-color: #000;
border-top-color: transparent;
border-bottom-color: transparent;
border-right-color: transparent;
top: 50%;
left: 100%;
margin-top: -8px;
}
.tipso_bubble.right > .tipso_arrow {
border-right-color: #000;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
top: 50%;
right: 100%;
margin-top: -8px;
border-right-color: #000;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
top: 50%;
right: 100%;
margin-top: -8px;
}
.tipso_bubble .top_right_corner,
.tipso_bubble.top_right_corner {
border-bottom-left-radius: 0;
border-bottom-left-radius: 0;
}
.tipso_bubble .bottom_right_corner,
.tipso_bubble.bottom_right_corner {
border-top-left-radius: 0;
.tipso_bubble.bottom_right_corner {
border-top-left-radius: 0;
}
.tipso_bubble .top_left_corner,
.tipso_bubble.top_left_corner {
border-bottom-right-radius: 0;
border-bottom-right-radius: 0;
}
.tipso_bubble .bottom_left_corner,
.tipso_bubble.bottom_left_corner {
border-top-right-radius: 0;
.tipso_bubble.bottom_left_corner {
border-top-right-radius: 0;
}

View file

@ -0,0 +1,238 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 378.5 91.2"
style="enable-background:new 0 0 378.5 91.2;"
xml:space="preserve"
sodipodi:docname="inscriptions.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs54" /><sodipodi:namedview
id="namedview54"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="2.2735749"
inkscape:cx="149.54423"
inkscape:cy="12.095489"
inkscape:window-width="1920"
inkscape:window-height="1000"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1" />
<style
type="text/css"
id="style1">
.st0{fill:#FFCA0D;stroke:#FFCA0D;stroke-width:0.25;stroke-miterlimit:10;}
</style>
<g
id="g6"
transform="matrix(1.1577155,0,0,0.86159109,-15.188551,1.5089972)"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<g
id="g5"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
id="path4"
style="fill:#b35d24;fill-opacity:1;stroke:none" />
</g>
</g><g
id="g6-1"
transform="matrix(1.1577155,0,0,0.86159109,109.39671,0.37933523)"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<g
id="g5-02"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
id="path4-1"
style="fill:#b35d24;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g>
<g
id="g10"
transform="matrix(0.87110807,0,0,0.91317837,37.217796,-1.5382728)"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<g
id="g9"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 128.9,37.8 c -2.6,-1.7 -5.8,-2.6 -8.7,-1 -2.3,1.3 -3.8,4 -3,6.6 0.9,2.8 3.3,3.7 6,3.4 1.6,-0.2 3.5,-0.2 4.4,1.6 1,1.9 -0.5,3.6 -2.3,4.3 -2.5,0.9 -5.9,0.2 -7.9,-1.3 -1.6,-1.1 -3.1,1.5 -1.5,2.6 4.3,3.2 14.7,3.2 15.1,-3.9 0.1,-2.7 -1.7,-5.1 -4.2,-6 -1.6,-0.6 -3.3,-0.3 -4.9,-0.7 -2,0.1 -2.4,-1 -1.2,-3.2 0.5,-0.6 1.2,-1 2,-1 1.8,-0.5 3.3,0.3 4.7,1.2 1.6,1 3.1,-1.6 1.5,-2.6 z"
id="path8"
style="fill:#b35d24;fill-opacity:1;stroke:none" />
</g>
</g>
<g
id="g14-9-0"
transform="matrix(0.90435099,0,0,0.91458769,78.519367,-1.0211348)"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<g
id="g13-3-8"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 193.8,38.1 c -9.9,-7.4 -19,15.5 -6.6,17.9 5,1 10.9,-3.5 12.1,-8.3 1.4,-5.7 -2.5,-10.8 -7.9,-12.1 -1.9,-0.5 -2.7,2.4 -0.8,2.9 8,2 7.3,11.3 0.2,14.1 -11.3,4.4 -6.3,-17.6 1.4,-11.8 1.6,1 3.1,-1.6 1.6,-2.7 z"
id="path12-0-1"
style="fill:#b35d24;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g>
<g
id="g36"
style="fill:#b35d24;fill-opacity:1;stroke:none"
transform="translate(56.182932,-11.631864)">
<g
id="g35"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 66.7,60.5 c 0,-2.5 -0.3,-5 -0.9,-7.5 -0.2,-1 -0.7,-2 -0.8,-3 -0.5,-3.8 0.8,-0.7 1.4,0.3 1.7,3 4.3,8.8 7.9,10.3 7.7,3.1 2.2,-15.1 1.2,-17.5 -0.8,-1.8 -3.4,-0.2 -2.6,1.5 1.2,2.6 2,5.3 2.3,8.1 0.2,1.2 0.4,2.6 0.2,3.7 -0.3,1.6 -0.1,1.3 -1.3,0 -1.9,-2.1 -3.4,-4.3 -4.7,-6.8 -0.8,-1.5 -1.5,-3.2 -3,-4.2 -1.9,-1.2 -3.7,-0.4 -4.4,1.8 -0.5,1.5 -0.1,3.1 0.2,4.5 0.7,3 1.3,5.7 1.4,8.8 0.1,1.9 3.1,1.9 3.1,0 z"
id="path34"
style="fill:#b35d24;fill-opacity:1;stroke:none" />
</g>
</g><g
id="g10-5"
transform="matrix(0.87110807,0,0,0.91317837,181.30136,-0.98162877)"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<g
id="g9-0"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 128.9,37.8 c -2.6,-1.7 -5.8,-2.6 -8.7,-1 -2.3,1.3 -3.8,4 -3,6.6 0.9,2.8 3.3,3.7 6,3.4 1.6,-0.2 3.5,-0.2 4.4,1.6 1,1.9 -0.5,3.6 -2.3,4.3 -2.5,0.9 -5.9,0.2 -7.9,-1.3 -1.6,-1.1 -3.1,1.5 -1.5,2.6 4.3,3.2 14.7,3.2 15.1,-3.9 0.1,-2.7 -1.7,-5.1 -4.2,-6 -1.6,-0.6 -3.3,-0.3 -4.9,-0.7 -2,0.1 -2.4,-1 -1.2,-3.2 0.5,-0.6 1.2,-1 2,-1 1.8,-0.5 3.3,0.3 4.7,1.2 1.6,1 3.1,-1.6 1.5,-2.6 z"
id="path8-7"
style="fill:#b35d24;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g><g
id="g36-2"
style="fill:#b35d24;fill-opacity:1;stroke:none"
transform="translate(200.2665,-11.07522)">
<g
id="g35-7"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 66.7,60.5 c 0,-2.5 -0.3,-5 -0.9,-7.5 -0.2,-1 -0.7,-2 -0.8,-3 -0.5,-3.8 0.8,-0.7 1.4,0.3 1.7,3 4.3,8.8 7.9,10.3 7.7,3.1 2.2,-15.1 1.2,-17.5 -0.8,-1.8 -3.4,-0.2 -2.6,1.5 1.2,2.6 2,5.3 2.3,8.1 0.2,1.2 0.4,2.6 0.2,3.7 -0.3,1.6 -0.1,1.3 -1.3,0 -1.9,-2.1 -3.4,-4.3 -4.7,-6.8 -0.8,-1.5 -1.5,-3.2 -3,-4.2 -1.9,-1.2 -3.7,-0.4 -4.4,1.8 -0.5,1.5 -0.1,3.1 0.2,4.5 0.7,3 1.3,5.7 1.4,8.8 0.1,1.9 3.1,1.9 3.1,0 z"
id="path34-4"
style="fill:#b35d24;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g><g
id="g6-34"
transform="matrix(0.80210457,0,0,0.83438942,132.57794,2.4851152)"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<g
id="g5-01"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<path
class="st0"
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
id="path4-0"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-width:0.25;stroke-miterlimit:10;stroke-opacity:1" />
</g>
</g><g
id="g8-5"
transform="matrix(0.80210457,0,0,0.83438942,132.57794,2.4851152)"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<g
id="g7-7"
style="fill:#b35d24;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 101,40.9 c 5.6,-1 11.2,-2.1 16.8,-3.1 1.9,-0.3 1.1,-3.2 -0.8,-2.9 -5.6,1 -11.2,2.1 -16.8,3.1 -1.9,0.4 -1.1,3.2 0.8,2.9 z"
id="path6-0"
style="fill:#b35d24;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g><g
id="g12"
transform="matrix(0.77510059,0,0,0.74116811,-18.807316,11.102367)"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<g
id="g11"
transform="translate(59.234891,-3.5632275)"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<path
class="st0"
d="m 180,33.2 c -7.5,0.2 -15.9,5.1 -15.1,13.7 0.9,8.8 10.6,11.8 17.6,8.1 0.8,-0.4 1,-1.7 0.3,-2.4 -0.2,-0.1 -0.3,-0.3 -0.5,-0.4 -1.4,-1.3 -3.5,0.8 -2.1,2.1 0.2,0.1 0.3,0.3 0.5,0.4 0.1,-0.8 0.2,-1.6 0.3,-2.4 -5.5,2.9 -13.6,0.1 -13.2,-7.1 0.4,-6.2 6.7,-9 12.1,-9.2 2,0.2 2,-2.8 0.1,-2.8 z"
id="path10"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-width:0.25;stroke-miterlimit:10;stroke-opacity:1" />
</g>
</g><g
id="g28"
transform="matrix(0.78312633,0,0,0.82399249,-38.764586,5.2952322)"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<g
id="g27"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<path
class="st0"
d="m 273.5,53.3 c -0.1,-3.6 -0.2,-7.2 -0.3,-10.8 0,-1.2 -0.6,-3.5 -0.1,-4.7 3.2,-7.9 8.8,7 2.1,4.6 -0.1,1 -0.3,2 -0.4,2.9 4.2,0.1 7.6,3.1 8,7.3 0.2,1.9 3.2,1.9 3,0 -0.6,-5.8 -5.1,-10.1 -11,-10.3 -1.8,-0.1 -1.9,2.4 -0.4,2.9 7.5,2.8 9.1,-9 2.9,-11.9 -10.4,-4.9 -7,15.7 -6.8,20 0.1,1.9 3.1,2 3,0 z"
id="path26"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-width:0.25;stroke-miterlimit:10;stroke-opacity:1" />
</g>
</g><g
id="g38"
transform="matrix(0.78115032,0,0,0.81161725,-57.840564,3.5586032)"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<g
id="g37"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<path
class="st0"
d="m 317.9,36.7 c -0.4,6.2 0.2,12.1 -0.8,18.2 1,0 1.9,0 2.9,0 -0.1,-0.4 -0.1,-0.9 -0.2,-1.3 -0.3,-1.9 -3.2,-1.1 -2.9,0.8 0.1,0.4 0.1,0.9 0.2,1.3 0.2,1.4 2.7,1.4 2.9,0 1.1,-6.4 0.6,-12.6 0.9,-19 0.1,-2 -2.9,-2 -3,0 z"
id="path36"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-width:0.25;stroke-miterlimit:10;stroke-opacity:1" />
</g>
</g><g
id="g46-9"
transform="matrix(0.74832281,0,0,0.6697736,182.9076,10.368568)"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<g
id="g45-0"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-opacity:1">
<path
class="st0"
d="m 25.4,57.3 c -1,-4.3 -0.6,-9.3 -1,-13.7 -0.1,-1.4 -0.4,-3 -0.1,-4.4 -0.2,-1.5 0.5,-2.3 2.3,-2.5 1.3,-1.6 2.3,-1.6 3,0 3.5,3.6 -1.9,7.7 -5.4,5.5 -1.6,-1 -3.2,1.6 -1.5,2.6 4.2,2.6 8.1,1.5 10.5,-2.9 2,-3.6 -0.7,-8.1 -4.1,-9.9 -4.4,-2.3 -7.2,2.7 -7.8,6.5 -0.5,3.4 0.4,6.7 0.7,10 0.2,3.2 -0.2,6.3 0.5,9.5 0.5,2 3.4,1.2 2.9,-0.7 z"
id="path44-6"
style="fill:#b35d24;fill-opacity:1;stroke:#b35d24;stroke-width:0.25;stroke-miterlimit:10;stroke-opacity:1" />
</g>
</g></svg>

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -1,133 +1,293 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 314.1 83.8" style="enable-background:new 0 0 314.1 83.8;" xml:space="preserve">
<style type="text/css">
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 314.1 83.8"
style="enable-background:new 0 0 314.1 83.8;"
xml:space="preserve"
sodipodi:docname="nouscontacter.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs36" /><sodipodi:namedview
id="namedview36"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="4.1451766"
inkscape:cx="143.05784"
inkscape:cy="41.855877"
inkscape:window-width="1920"
inkscape:window-height="1000"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1" />
<style
type="text/css"
id="style1">
.st0{fill:#271A88;}
</style>
<g>
<g>
<path class="st0" d="M189.8,60.5c0-0.1,0-0.2,0-0.3c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5c0,0.1,0,0.2,0,0.3
c0,0.8,0.7,1.5,1.5,1.5S189.8,61.3,189.8,60.5L189.8,60.5z"/>
<g
id="g2"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g1"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 189.8,60.5 c 0,-0.1 0,-0.2 0,-0.3 0,-0.8 -0.7,-1.5 -1.5,-1.5 -0.8,0 -1.5,0.7 -1.5,1.5 0,0.1 0,0.2 0,0.3 0,0.8 0.7,1.5 1.5,1.5 0.8,0 1.5,-0.7 1.5,-1.5 z"
id="path1"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M238.3,54.7c2.4-0.3,4.8-0.7,7.1-1.3c1.9-0.5,1.1-3.4-0.8-2.9c-2.1,0.5-4.2,0.9-6.3,1.2
C236.4,51.9,236.4,54.9,238.3,54.7L238.3,54.7z"/>
<g
id="g4"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g3"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 238.3,54.7 c 2.4,-0.3 4.8,-0.7 7.1,-1.3 1.9,-0.5 1.1,-3.4 -0.8,-2.9 -2.1,0.5 -4.2,0.9 -6.3,1.2 -1.9,0.2 -1.9,3.2 0,3 z"
id="path2"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M247.7,45.4c-3.5-0.3-7.4-1.1-10,1.9c-2.1,2.4-2.3,6.1-1.8,9c0.6,2.9,2.7,4.7,5.6,5c2.2,0.3,7,0.2,6.9-2.9
c0-1.9-3-1.9-3,0c0.3-0.4,0.1-0.6-0.3-0.3c-0.6,0.1-1.2,0.2-1.8,0.2c-0.7,0-1.4,0-2.1-0.2c-2.5-0.7-2.6-3.6-2.4-5.8s1.2-4,3.6-4.4
c1.7-0.2,3.6,0.2,5.2,0.3C249.7,48.6,249.6,45.6,247.7,45.4L247.7,45.4z"/>
<g
id="g6"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g5"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 247.7,45.4 c -3.5,-0.3 -7.4,-1.1 -10,1.9 -2.1,2.4 -2.3,6.1 -1.8,9 0.6,2.9 2.7,4.7 5.6,5 2.2,0.3 7,0.2 6.9,-2.9 0,-1.9 -3,-1.9 -3,0 0.3,-0.4 0.1,-0.6 -0.3,-0.3 -0.6,0.1 -1.2,0.2 -1.8,0.2 -0.7,0 -1.4,0 -2.1,-0.2 -2.5,-0.7 -2.6,-3.6 -2.4,-5.8 0.2,-2.2 1.2,-4 3.6,-4.4 1.7,-0.2 3.6,0.2 5.2,0.3 2.1,0.4 2,-2.6 0.1,-2.8 z"
id="path4"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M253.9,58.6c-0.3-1.3,0.1-2.5,0-3.8c-0.1-1.2-0.4-2.5-0.5-3.7c-0.1-0.7,0-1.3,0.1-1.9
c1.7-1.3,2.7-1.1,2.9,0.4c0.1,1.8-1.5,1.8-3.1,1.6c0,1,0,2,0,3c3.2,0.2,4.6,3.8,6.2,6.1c1,1.4,3.1,0.6,2.7-1.2
c-0.2-0.8-0.5-1.2-1.2-1.6c-1.7-0.8-3.3,1.7-1.5,2.6c0-0.1-0.1-0.1-0.1-0.2c0.9-0.4,1.8-0.8,2.7-1.2c-2.3-3.4-4.2-7.3-8.8-7.6
c-2-0.1-1.9,2.8,0,3c2.5,0.3,6.5-0.4,6.3-3.6c-0.1-2.3-1.3-5.2-3.8-5.8c-2.8-0.7-5,1.9-5.4,4.4c-0.2,1.4,0,2.8,0.2,4.1
c0.3,2.1-0.2,4.2,0.3,6.2C251.4,61.3,254.3,60.5,253.9,58.6L253.9,58.6z"/>
<g
id="g8"
transform="translate(2.4124425,-20.988249)"
style="fill:#884578;fill-opacity:1">
<g
id="g7"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 253.9,58.6 c -0.3,-1.3 0.1,-2.5 0,-3.8 -0.1,-1.2 -0.4,-2.5 -0.5,-3.7 -0.1,-0.7 0,-1.3 0.1,-1.9 1.7,-1.3 2.7,-1.1 2.9,0.4 0.1,1.8 -1.5,1.8 -3.1,1.6 0,1 0,2 0,3 3.2,0.2 4.6,3.8 6.2,6.1 1,1.4 3.1,0.6 2.7,-1.2 -0.2,-0.8 -0.5,-1.2 -1.2,-1.6 -1.7,-0.8 -3.3,1.7 -1.5,2.6 0,-0.1 -0.1,-0.1 -0.1,-0.2 0.9,-0.4 1.8,-0.8 2.7,-1.2 -2.3,-3.4 -4.2,-7.3 -8.8,-7.6 -2,-0.1 -1.9,2.8 0,3 2.5,0.3 6.5,-0.4 6.3,-3.6 -0.1,-2.3 -1.3,-5.2 -3.8,-5.8 -2.8,-0.7 -5,1.9 -5.4,4.4 -0.2,1.4 0,2.8 0.2,4.1 0.3,2.1 -0.2,4.2 0.3,6.2 0.5,1.9 3.4,1.1 3,-0.8 z"
id="path6"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M220.3,49.6c3.7-0.3,7.4-0.6,11.1-0.8c1.8-0.1,3.6-0.1,3.8-2.2c0.2-1.9-2.8-1.9-3,0c0,0.1,0,0.2,0,0.3
c0.2-0.4,0.5-0.9,0.7-1.3c-0.6,0.4-2.5,0.3-3.1,0.4c-1.1,0.1-2.1,0.2-3.2,0.2c-2.1,0.2-4.2,0.3-6.4,0.5
C218.3,46.7,218.3,49.7,220.3,49.6L220.3,49.6z"/>
<g
id="g10"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g9"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 220.3,49.6 c 3.7,-0.3 7.4,-0.6 11.1,-0.8 1.8,-0.1 3.6,-0.1 3.8,-2.2 0.2,-1.9 -2.8,-1.9 -3,0 0,0.1 0,0.2 0,0.3 0.2,-0.4 0.5,-0.9 0.7,-1.3 -0.6,0.4 -2.5,0.3 -3.1,0.4 -1.1,0.1 -2.1,0.2 -3.2,0.2 -2.1,0.2 -4.2,0.3 -6.4,0.5 -1.9,0 -1.9,3 0.1,2.9 z"
id="path8"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M226.3,47.7c0.3,2.1,0.6,4.2,0.9,6.2c0.2,1.3,1.2,4.5,0.8,5.7c0.8-0.2,1.7-0.4,2.5-0.7l-0.1-0.1
c0,0.7,0,1.4,0,2.1c0,0,0,0,0.1-0.1c1.2-1.5-0.9-3.6-2.1-2.1c0,0,0,0-0.1,0.1c-0.5,0.6-0.7,1.6,0,2.1l0.1,0.1
c0.9,0.8,2.1,0.5,2.5-0.7c0.6-1.6-0.4-4.2-0.6-5.9c-0.4-2.6-0.7-5.1-1.1-7.7C228.9,45,226,45.8,226.3,47.7L226.3,47.7z"/>
<g
id="g12"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g11"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 226.3,47.7 c 0.3,2.1 0.6,4.2 0.9,6.2 0.2,1.3 1.2,4.5 0.8,5.7 0.8,-0.2 1.7,-0.4 2.5,-0.7 l -0.1,-0.1 c 0,0.7 0,1.4 0,2.1 0,0 0,0 0.1,-0.1 1.2,-1.5 -0.9,-3.6 -2.1,-2.1 0,0 0,0 -0.1,0.1 -0.5,0.6 -0.7,1.6 0,2.1 l 0.1,0.1 c 0.9,0.8 2.1,0.5 2.5,-0.7 0.6,-1.6 -0.4,-4.2 -0.6,-5.9 -0.4,-2.6 -0.7,-5.1 -1.1,-7.7 -0.3,-1.7 -3.2,-0.9 -2.9,1 z"
id="path10"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M218.7,44.9c-6.3-2-11.5,6-9,11.5c1.1,2.3,3.4,4,6,4.2c2.2,0.2,5.6-0.8,4.9-3.6c-0.4-1.9-3.3-1.1-2.9,0.8
c0-0.1-3.2-0.6-3.6-0.8c-1.2-0.7-2-2-2.1-3.4c-0.2-3,2.5-6.9,5.8-5.8C219.8,48.4,220.6,45.5,218.7,44.9L218.7,44.9z"/>
<g
id="g14"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g13"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 218.7,44.9 c -6.3,-2 -11.5,6 -9,11.5 1.1,2.3 3.4,4 6,4.2 2.2,0.2 5.6,-0.8 4.9,-3.6 -0.4,-1.9 -3.3,-1.1 -2.9,0.8 0,-0.1 -3.2,-0.6 -3.6,-0.8 -1.2,-0.7 -2,-2 -2.1,-3.4 -0.2,-3 2.5,-6.9 5.8,-5.8 2,0.6 2.8,-2.3 0.9,-2.9 z"
id="path12"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M202.3,56.6c1,0,2,0,3,0c1.9,0,1.9-3,0-3c-1,0-2,0-3,0C200.3,53.6,200.3,56.6,202.3,56.6L202.3,56.6z"/>
<g
id="g16"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g15"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 202.3,56.6 c 1,0 2,0 3,0 1.9,0 1.9,-3 0,-3 -1,0 -2,0 -3,0 -2,0 -2,3 0,3 z"
id="path14"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M199.7,61.7c2.7-4.7,1.1-10.8,4.4-15.1c-0.9,0-1.7,0-2.6,0c1.5,2.4,2.3,5,3.2,7.7c0.2,0.5,2.4,6.4,2.9,5.7
c0.4-0.2,0.9-0.5,1.3-0.7c-0.1,0-0.1,0-0.2,0c0.5,0.5,1,1,1.5,1.5c0-0.1,0-0.1,0-0.2c-0.4,0.5-0.7,1-1.1,1.4c0.1,0,0.1,0,0.2,0
c1.9-0.3,1.1-3.2-0.8-2.9c-0.1,0-0.1,0-0.2,0c-0.6,0.1-1.1,0.8-1.1,1.4c0,0.1,0,0.1,0,0.2c0,0.8,0.7,1.5,1.5,1.5
c3.3-0.2,0.8-3.8,0.2-5.3c-1.7-3.9-2.5-8.2-4.8-11.9c-0.6-1-1.9-0.9-2.6,0c-3.4,4.5-1.7,10.4-4.4,15.1
C196.2,61.9,198.8,63.4,199.7,61.7L199.7,61.7z"/>
<g
id="g18"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g17"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 199.7,61.7 c 2.7,-4.7 1.1,-10.8 4.4,-15.1 -0.9,0 -1.7,0 -2.6,0 1.5,2.4 2.3,5 3.2,7.7 0.2,0.5 2.4,6.4 2.9,5.7 0.4,-0.2 0.9,-0.5 1.3,-0.7 -0.1,0 -0.1,0 -0.2,0 0.5,0.5 1,1 1.5,1.5 0,-0.1 0,-0.1 0,-0.2 -0.4,0.5 -0.7,1 -1.1,1.4 0.1,0 0.1,0 0.2,0 1.9,-0.3 1.1,-3.2 -0.8,-2.9 -0.1,0 -0.1,0 -0.2,0 -0.6,0.1 -1.1,0.8 -1.1,1.4 0,0.1 0,0.1 0,0.2 0,0.8 0.7,1.5 1.5,1.5 3.3,-0.2 0.8,-3.8 0.2,-5.3 -1.7,-3.9 -2.5,-8.2 -4.8,-11.9 -0.6,-1 -1.9,-0.9 -2.6,0 -3.4,4.5 -1.7,10.4 -4.4,15.1 -0.9,1.8 1.7,3.3 2.6,1.6 z"
id="path16"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M179.5,49.2c5.1-0.6,10.2-1,15.3-1.2c1.9-0.1,1.9-3.1,0-3c-5.1,0.2-10.2,0.6-15.3,1.2
C177.6,46.4,177.6,49.4,179.5,49.2L179.5,49.2z"/>
<g
id="g20"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g19"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 179.5,49.2 c 5.1,-0.6 10.2,-1 15.3,-1.2 1.9,-0.1 1.9,-3.1 0,-3 -5.1,0.2 -10.2,0.6 -15.3,1.2 -1.9,0.2 -1.9,3.2 0,3 z"
id="path18"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M185.7,46.2c0.3,4.1,0.6,8.2,0.8,12.3c0.1,1.9,3.1,1.9,3,0c-0.3-4.1-0.6-8.2-0.8-12.3
C188.6,44.3,185.6,44.3,185.7,46.2L185.7,46.2z"/>
<g
id="g22"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g21"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 185.7,46.2 c 0.3,4.1 0.6,8.2 0.8,12.3 0.1,1.9 3.1,1.9 3,0 -0.3,-4.1 -0.6,-8.2 -0.8,-12.3 -0.1,-1.9 -3.1,-1.9 -3,0 z"
id="path20"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M169.2,60c-0.2-1.5-2.3-11.4-0.9-12.1c-0.5,0-1,0-1.5,0c2.5,1.2,3.4,5,4.3,7.4c0.8,2.3,1.7,4.4,3.2,6.3
c0.4,0.5,1.3,0.6,1.8,0.2c2.1-1.4,2.3-4,2.5-6.4c0.3-3.5-0.1-6.9-1-10.2c-0.5-1.9-3.4-1.1-2.9,0.8c0.6,2.2,1,4.4,1,6.7
c0,1.5,0.3,5.6-1.1,6.6c0.6,0.1,1.2,0.2,1.8,0.2c-2-2.6-2.6-5.8-3.9-8.8c-0.8-1.8-2.2-4.8-4.2-5.4c-5.9-1.9-2.4,12.4-2.1,14.7
C166.5,61.9,169.5,61.9,169.2,60L169.2,60z"/>
<g
id="g24"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g23"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 169.2,60 c -0.2,-1.5 -2.3,-11.4 -0.9,-12.1 -0.5,0 -1,0 -1.5,0 2.5,1.2 3.4,5 4.3,7.4 0.8,2.3 1.7,4.4 3.2,6.3 0.4,0.5 1.3,0.6 1.8,0.2 2.1,-1.4 2.3,-4 2.5,-6.4 0.3,-3.5 -0.1,-6.9 -1,-10.2 -0.5,-1.9 -3.4,-1.1 -2.9,0.8 0.6,2.2 1,4.4 1,6.7 0,1.5 0.3,5.6 -1.1,6.6 0.6,0.1 1.2,0.2 1.8,0.2 -2,-2.6 -2.6,-5.8 -3.9,-8.8 -0.8,-1.8 -2.2,-4.8 -4.2,-5.4 -5.9,-1.9 -2.4,12.4 -2.1,14.7 0.3,1.9 3.3,1.9 3,0 z"
id="path22"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M158.9,46.3c-3.8-2.9-10-0.4-10.9,4.2c-0.9,4.4,2,9.3,6.4,10.5s8.9-1.7,9.5-6.2s-2.3-9.8-7-10.4
c-1.9-0.3-2.7,2.6-0.8,2.9c5.7,0.8,7,11.2,0.2,11c-2.8-0.1-4.8-2.4-5.3-5c-0.4-2,0.3-3.7,2.1-4.6c1.4-0.7,3-0.7,4.3,0.3
C159,50,160.5,47.4,158.9,46.3L158.9,46.3z"/>
<g
id="g26"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g25"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 158.9,46.3 c -3.8,-2.9 -10,-0.4 -10.9,4.2 -0.9,4.4 2,9.3 6.4,10.5 4.4,1.2 8.9,-1.7 9.5,-6.2 0.6,-4.5 -2.3,-9.8 -7,-10.4 -1.9,-0.3 -2.7,2.6 -0.8,2.9 5.7,0.8 7,11.2 0.2,11 -2.8,-0.1 -4.8,-2.4 -5.3,-5 -0.4,-2 0.3,-3.7 2.1,-4.6 1.4,-0.7 3,-0.7 4.3,0.3 1.6,1 3.1,-1.6 1.5,-2.7 z"
id="path24"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M146.8,46.1c-5.5-2.2-11,2.6-10.1,8.3s8.3,8.8,12.8,5c1.5-1.2-0.7-3.4-2.1-2.1c-2.9,2.5-7.5-0.5-7.8-3.9
c-0.3-3.6,3.1-5.8,6.4-4.5C147.8,49.7,148.5,46.8,146.8,46.1L146.8,46.1z"/>
<g
id="g28"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g27"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 146.8,46.1 c -5.5,-2.2 -11,2.6 -10.1,8.3 0.9,5.7 8.3,8.8 12.8,5 1.5,-1.2 -0.7,-3.4 -2.1,-2.1 -2.9,2.5 -7.5,-0.5 -7.8,-3.9 -0.3,-3.6 3.1,-5.8 6.4,-4.5 1.8,0.8 2.5,-2.1 0.8,-2.8 z"
id="path26"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M122,44.1c-2.7-0.7-6-0.8-8.4,0.9c-2,1.3-2.5,3.8-1,5.7c0.7,0.9,1.8,1.5,2.9,1.8c1.6,0.5,5.8,0.3,4.6,3.2
c-0.6,1.5-3,2.1-4.4,2.1c-1.9,0.1-3.6-0.6-5.1-1.8s-3,1.4-1.5,2.6c3.9,3,11.4,3.3,13.8-1.8c1.1-2.3,0.3-4.8-1.9-6
c-1.3-0.8-2.9-0.5-4.2-1.1c-1.1-0.1-1.3-1-0.7-2.7c0.5-0.2,1-0.3,1.5-0.3c1.3-0.2,2.4,0,3.6,0.3C123,47.5,123.8,44.6,122,44.1
L122,44.1z"/>
<g
id="g30"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g29"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 122,44.1 c -2.7,-0.7 -6,-0.8 -8.4,0.9 -2,1.3 -2.5,3.8 -1,5.7 0.7,0.9 1.8,1.5 2.9,1.8 1.6,0.5 5.8,0.3 4.6,3.2 -0.6,1.5 -3,2.1 -4.4,2.1 -1.9,0.1 -3.6,-0.6 -5.1,-1.8 -1.5,-1.2 -3,1.4 -1.5,2.6 3.9,3 11.4,3.3 13.8,-1.8 1.1,-2.3 0.3,-4.8 -1.9,-6 -1.3,-0.8 -2.9,-0.5 -4.2,-1.1 -1.1,-0.1 -1.3,-1 -0.7,-2.7 0.5,-0.2 1,-0.3 1.5,-0.3 1.3,-0.2 2.4,0 3.6,0.3 1.8,0.5 2.6,-2.4 0.8,-2.9 z"
id="path28"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M95.7,45.5c-0.4,4.3,0.4,17.7,7.3,16.6c7.7-1.2,5.8-11.1,3.9-16c-0.7-1.8-3.6-1-2.9,0.8
c0.9,2.3,1.9,4.7,1.8,7.2c0,0.9-0.2,1.7-0.6,2.5c-0.7,1.7-1.3,2.4-3.1,1.7c-3.9-1.4-3.8-9.3-3.5-12.8
C98.9,43.5,95.9,43.6,95.7,45.5L95.7,45.5z"/>
<g
id="g32"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g31"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 95.7,45.5 c -0.4,4.3 0.4,17.7 7.3,16.6 7.7,-1.2 5.8,-11.1 3.9,-16 -0.7,-1.8 -3.6,-1 -2.9,0.8 0.9,2.3 1.9,4.7 1.8,7.2 0,0.9 -0.2,1.7 -0.6,2.5 -0.7,1.7 -1.3,2.4 -3.1,1.7 -3.9,-1.4 -3.8,-9.3 -3.5,-12.8 0.3,-2 -2.7,-1.9 -2.9,0 z"
id="path30"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M88.7,44.5c-3.6-3.2-8.3-0.1-9,4.1c-0.7,4.3,1.4,10.1,5.9,11.6c4.9,1.6,8.6-2.1,8.3-6.9
c-0.4-5.2-4.2-9.6-9.6-9.6c-1.9,0-1.9,3,0,3c2.9,0,5.2,1.8,6.2,4.5c0.9,2.7,0.7,7-3.2,6.3c-2.6-0.4-3.9-3.1-4.4-5.4
c-0.3-1.3-0.4-2.7,0.1-4s2.2-2.7,3.7-1.5C88.1,47.9,90.2,45.8,88.7,44.5L88.7,44.5z"/>
<g
id="g34"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g33"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 88.7,44.5 c -3.6,-3.2 -8.3,-0.1 -9,4.1 -0.7,4.3 1.4,10.1 5.9,11.6 4.9,1.6 8.6,-2.1 8.3,-6.9 -0.4,-5.2 -4.2,-9.6 -9.6,-9.6 -1.9,0 -1.9,3 0,3 2.9,0 5.2,1.8 6.2,4.5 0.9,2.7 0.7,7 -3.2,6.3 -2.6,-0.4 -3.9,-3.1 -4.4,-5.4 -0.3,-1.3 -0.4,-2.7 0.1,-4 0.5,-1.3 2.2,-2.7 3.7,-1.5 1.4,1.3 3.5,-0.8 2,-2.1 z"
id="path32"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M66.7,60.5c0-2.5-0.3-5-0.9-7.5c-0.2-1-0.7-2-0.8-3c-0.5-3.8,0.8-0.7,1.4,0.3c1.7,3,4.3,8.8,7.9,10.3
c7.7,3.1,2.2-15.1,1.2-17.5c-0.8-1.8-3.4-0.2-2.6,1.5c1.2,2.6,2,5.3,2.3,8.1c0.2,1.2,0.4,2.6,0.2,3.7c-0.3,1.6-0.1,1.3-1.3,0
c-1.9-2.1-3.4-4.3-4.7-6.8c-0.8-1.5-1.5-3.2-3-4.2c-1.9-1.2-3.7-0.4-4.4,1.8c-0.5,1.5-0.1,3.1,0.2,4.5c0.7,3,1.3,5.7,1.4,8.8
C63.7,62.4,66.7,62.4,66.7,60.5L66.7,60.5z"/>
<g
id="g36"
style="fill:#884578;fill-opacity:1"
transform="translate(2.4124425,-20.988249)">
<g
id="g35"
style="fill:#884578;fill-opacity:1">
<path
class="st0"
d="m 66.7,60.5 c 0,-2.5 -0.3,-5 -0.9,-7.5 -0.2,-1 -0.7,-2 -0.8,-3 -0.5,-3.8 0.8,-0.7 1.4,0.3 1.7,3 4.3,8.8 7.9,10.3 7.7,3.1 2.2,-15.1 1.2,-17.5 -0.8,-1.8 -3.4,-0.2 -2.6,1.5 1.2,2.6 2,5.3 2.3,8.1 0.2,1.2 0.4,2.6 0.2,3.7 -0.3,1.6 -0.1,1.3 -1.3,0 -1.9,-2.1 -3.4,-4.3 -4.7,-6.8 -0.8,-1.5 -1.5,-3.2 -3,-4.2 -1.9,-1.2 -3.7,-0.4 -4.4,1.8 -0.5,1.5 -0.1,3.1 0.2,4.5 0.7,3 1.3,5.7 1.4,8.8 0.1,1.9 3.1,1.9 3.1,0 z"
id="path34"
style="fill:#884578;fill-opacity:1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 10 KiB

185
www/img/content/photos.svg Normal file
View file

@ -0,0 +1,185 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 378.5 91.2"
style="enable-background:new 0 0 378.5 91.2;"
xml:space="preserve"
sodipodi:docname="photos.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs54" /><sodipodi:namedview
id="namedview54"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="3.4398943"
inkscape:cx="168.60983"
inkscape:cy="82.124616"
inkscape:window-width="1920"
inkscape:window-height="1000"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1" />
<style
type="text/css"
id="style1">
.st0{fill:#FFCA0D;stroke:#FFCA0D;stroke-width:0.25;stroke-miterlimit:10;}
</style>
<g
id="g6"
transform="translate(102.61943,-4.9420123)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g5"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
id="path4"
style="fill:#913c51;fill-opacity:1;stroke:none" />
</g>
</g><g
id="g6-4"
transform="translate(65.816306,-2.9109839)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g5-0"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
id="path4-8"
style="fill:#913c51;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g><g
id="g6-3"
transform="translate(56.29288,-2.5853299)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g5-6"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
id="path4-3"
style="fill:#913c51;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g>
<g
id="g8"
transform="translate(102.61943,-4.9420123)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g7"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 101,40.9 c 5.6,-1 11.2,-2.1 16.8,-3.1 1.9,-0.3 1.1,-3.2 -0.8,-2.9 -5.6,1 -11.2,2.1 -16.8,3.1 -1.9,0.4 -1.1,3.2 0.8,2.9 z"
id="path6"
style="fill:#913c51;fill-opacity:1;stroke:none" />
</g>
</g><g
id="g8-9"
transform="translate(61.315681,5.2814632)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g7-4"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 101,40.9 c 5.6,-1 11.2,-2.1 16.8,-3.1 1.9,-0.3 1.1,-3.2 -0.8,-2.9 -5.6,1 -11.2,2.1 -16.8,3.1 -1.9,0.4 -1.1,3.2 0.8,2.9 z"
id="path6-7"
style="fill:#913c51;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g>
<g
id="g10"
transform="translate(127.32949,-4.0698924)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g9"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 128.9,37.8 c -2.6,-1.7 -5.8,-2.6 -8.7,-1 -2.3,1.3 -3.8,4 -3,6.6 0.9,2.8 3.3,3.7 6,3.4 1.6,-0.2 3.5,-0.2 4.4,1.6 1,1.9 -0.5,3.6 -2.3,4.3 -2.5,0.9 -5.9,0.2 -7.9,-1.3 -1.6,-1.1 -3.1,1.5 -1.5,2.6 4.3,3.2 14.7,3.2 15.1,-3.9 0.1,-2.7 -1.7,-5.1 -4.2,-6 -1.6,-0.6 -3.3,-0.3 -4.9,-0.7 -2,0.1 -2.4,-1 -1.2,-3.2 0.5,-0.6 1.2,-1 2,-1 1.8,-0.5 3.3,0.3 4.7,1.2 1.6,1 3.1,-1.6 1.5,-2.6 z"
id="path8"
style="fill:#913c51;fill-opacity:1;stroke:none" />
</g>
</g>
<g
id="g14-9"
transform="translate(40.817366,-3.371879)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g13-3"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 193.8,38.1 c -9.9,-7.4 -19,15.5 -6.6,17.9 5,1 10.9,-3.5 12.1,-8.3 1.4,-5.7 -2.5,-10.8 -7.9,-12.1 -1.9,-0.5 -2.7,2.4 -0.8,2.9 8,2 7.3,11.3 0.2,14.1 -11.3,4.4 -6.3,-17.6 1.4,-11.8 1.6,1 3.1,-1.6 1.6,-2.7 z"
id="path12-0"
style="fill:#913c51;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g>
<g
id="g46"
transform="translate(124.13172,-3.1977727)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g45"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 25.4,57.3 c -1,-4.3 -0.6,-9.3 -1,-13.7 -0.1,-1.4 -0.4,-3 -0.1,-4.4 -0.2,-1.5 0.5,-2.3 2.3,-2.5 1.3,-1.6 2.3,-1.6 3,0 3.5,3.6 -1.9,7.7 -5.4,5.5 -1.6,-1 -3.2,1.6 -1.5,2.6 4.2,2.6 8.1,1.5 10.5,-2.9 2,-3.6 -0.7,-8.1 -4.1,-9.9 -4.4,-2.3 -7.2,2.7 -7.8,6.5 -0.5,3.4 0.4,6.7 0.7,10 0.2,3.2 -0.2,6.3 0.5,9.5 0.5,2 3.4,1.2 2.9,-0.7 z"
id="path44"
style="fill:#913c51;fill-opacity:1;stroke:none" />
</g>
</g>
<g
id="g50"
transform="translate(135.75998,-3.4884792)"
style="fill:#913c51;fill-opacity:1;stroke:none">
<g
id="g49"
style="fill:#913c51;fill-opacity:1;stroke:none">
<path
class="st0"
d="M 58.3,34.9 C 46,28.7 42.7,53.1 52.6,57.2 c 5.6,2.3 10,-3 10.9,-8 1.1,-6.3 -1.8,-12.5 -7.2,-15.9 -1.6,-1 -3.1,1.6 -1.5,2.6 3.3,2.1 5.6,5.4 5.9,9.4 0.3,3.4 -0.6,8.2 -4.4,9.2 -9.5,2.4 -8.2,-21.2 0.4,-16.9 1.8,0.7 3.3,-1.8 1.6,-2.7 z"
id="path48"
style="fill:#913c51;fill-opacity:1;stroke:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

View file

@ -1,144 +1,288 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 301.6 59.8" style="enable-background:new 0 0 301.6 59.8;" xml:space="preserve">
<style type="text/css">
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 301.6 59.8"
style="enable-background:new 0 0 301.6 59.8;"
xml:space="preserve"
sodipodi:docname="presentation.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs38" /><sodipodi:namedview
id="namedview38"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="4.316976"
inkscape:cx="150.8"
inkscape:cy="29.99785"
inkscape:window-width="1008"
inkscape:window-height="988"
inkscape:window-x="296"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Calque_1" />
<style
type="text/css"
id="style1">
.st0{fill:#271A88;}
</style>
<g>
<g>
<path class="st0" d="M231.3,21.5c3.5,4.1,4.9,9.6,9.9,12.3c0.9,0.5,1.8,0,2.2-0.9c0.8-2.1,0.5-4.3,0.5-6.5
c-0.1-2.9-0.3-5.8-0.6-8.7c-0.2-1.9-3.2-1.9-3,0c0.2,2.5,0.4,5,0.5,7.5c0.1,2.2,0.5,4.8-0.3,6.9c0.7-0.3,1.5-0.6,2.2-0.9
c-4.6-2.5-6-8.1-9.3-11.9C232.1,17.9,230,20,231.3,21.5L231.3,21.5z"/>
<g
id="g2"
style="fill:#76a053;fill-opacity:1">
<g
id="g1"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M231.3,21.5c3.5,4.1,4.9,9.6,9.9,12.3c0.9,0.5,1.8,0,2.2-0.9c0.8-2.1,0.5-4.3,0.5-6.5 c-0.1-2.9-0.3-5.8-0.6-8.7c-0.2-1.9-3.2-1.9-3,0c0.2,2.5,0.4,5,0.5,7.5c0.1,2.2,0.5,4.8-0.3,6.9c0.7-0.3,1.5-0.6,2.2-0.9 c-4.6-2.5-6-8.1-9.3-11.9C232.1,17.9,230,20,231.3,21.5L231.3,21.5z"
id="path1"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M230.1,19.3c-0.5,1.9-0.1,3.6,0.2,5.5c0.5,2.5,0.7,5,0.6,7.5c0,1.7,2.4,2,2.9,0.4c0.2-0.5,0.3-1,0.5-1.5
c0.6-1.8-2.3-2.6-2.9-0.8c-0.2,0.5-0.3,1-0.5,1.5c1,0.1,2,0.3,2.9,0.4c0-1.9,0-3.8-0.3-5.7c-0.3-2.1-1.2-4.4-0.7-6.5
C233.5,18.2,230.6,17.4,230.1,19.3L230.1,19.3z"/>
<g
id="g4"
style="fill:#76a053;fill-opacity:1">
<g
id="g3"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M230.1,19.3c-0.5,1.9-0.1,3.6,0.2,5.5c0.5,2.5,0.7,5,0.6,7.5c0,1.7,2.4,2,2.9,0.4c0.2-0.5,0.3-1,0.5-1.5 c0.6-1.8-2.3-2.6-2.9-0.8c-0.2,0.5-0.3,1-0.5,1.5c1,0.1,2,0.3,2.9,0.4c0-1.9,0-3.8-0.3-5.7c-0.3-2.1-1.2-4.4-0.7-6.5 C233.5,18.2,230.6,17.4,230.1,19.3L230.1,19.3z"
id="path2"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M223.7,19.8c-3-3.4-8.1-1.6-9.6,2.3c-1.5,3.9,0.7,10.4,5,11.7c4.2,1.3,8.8-2.5,8.7-6.8
c-0.2-4.5-4.3-9.9-9.2-8.3c-1.8,0.6-1.1,3.5,0.8,2.9c2.9-0.9,5.3,2.9,5.4,5.4c0.1,2.3-2.8,5.1-5.2,3.8c-1.8-1-3-4.1-3-6
c0.1-2.5,2.7-5.3,4.9-2.8C222.9,23.3,225,21.2,223.7,19.8L223.7,19.8z"/>
<g
id="g6"
style="fill:#76a053;fill-opacity:1">
<g
id="g5"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M223.7,19.8c-3-3.4-8.1-1.6-9.6,2.3c-1.5,3.9,0.7,10.4,5,11.7c4.2,1.3,8.8-2.5,8.7-6.8 c-0.2-4.5-4.3-9.9-9.2-8.3c-1.8,0.6-1.1,3.5,0.8,2.9c2.9-0.9,5.3,2.9,5.4,5.4c0.1,2.3-2.8,5.1-5.2,3.8c-1.8-1-3-4.1-3-6 c0.1-2.5,2.7-5.3,4.9-2.8C222.9,23.3,225,21.2,223.7,19.8L223.7,19.8z"
id="path4"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M207.4,19c-0.1,2.8-0.1,5.6-0.2,8.4c0,1.5-0.7,4.4,0.3,5.7c0.5,0.7,1.2,0.9,2.1,0.5c0.1,0,0.1-0.1,0.2-0.1
c0.6-0.3,0.9-1.1,0.7-1.7c0-0.1,0-0.1-0.1-0.2c-0.5-1.9-3.4-1.1-2.9,0.8c0,0.1,0,0.1,0.1,0.2c0.2-0.6,0.5-1.1,0.7-1.7
c-0.1,0-0.1,0.1-0.2,0.1c0.7,0.2,1.4,0.4,2.1,0.5c0,0.6,0,0.3,0-0.7c0-0.7,0-1.3,0-2c0-1,0-2,0.1-2.9c0.1-2.3,0.1-4.6,0.2-6.9
C210.4,17.1,207.4,17.1,207.4,19L207.4,19z"/>
<g
id="g8"
style="fill:#76a053;fill-opacity:1">
<g
id="g7"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M207.4,19c-0.1,2.8-0.1,5.6-0.2,8.4c0,1.5-0.7,4.4,0.3,5.7c0.5,0.7,1.2,0.9,2.1,0.5c0.1,0,0.1-0.1,0.2-0.1 c0.6-0.3,0.9-1.1,0.7-1.7c0-0.1,0-0.1-0.1-0.2c-0.5-1.9-3.4-1.1-2.9,0.8c0,0.1,0,0.1,0.1,0.2c0.2-0.6,0.5-1.1,0.7-1.7 c-0.1,0-0.1,0.1-0.2,0.1c0.7,0.2,1.4,0.4,2.1,0.5c0,0.6,0,0.3,0-0.7c0-0.7,0-1.3,0-2c0-1,0-2,0.1-2.9c0.1-2.3,0.1-4.6,0.2-6.9 C210.4,17.1,207.4,17.1,207.4,19L207.4,19z"
id="path6"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M194.7,30c0,1.2,0.4,2.4,1,3.5c0.4,0.7,1.4,0.9,2.1,0.5s0.9-1.3,0.5-2.1c-0.4-0.6-0.6-1.3-0.6-2
c0-0.8-0.7-1.5-1.5-1.5C195.4,28.5,194.7,29.2,194.7,30L194.7,30z"/>
<g
id="g10"
style="fill:#76a053;fill-opacity:1">
<g
id="g9"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M194.7,30c0,1.2,0.4,2.4,1,3.5c0.4,0.7,1.4,0.9,2.1,0.5s0.9-1.3,0.5-2.1c-0.4-0.6-0.6-1.3-0.6-2 c0-0.8-0.7-1.5-1.5-1.5C195.4,28.5,194.7,29.2,194.7,30L194.7,30z"
id="path8"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M187.3,20.4c3.4-0.2,6.7-0.3,10.1-0.3c1.7,0,4.7,0.8,6.1-0.6c0.5-0.5,0.6-1.6,0-2.1c-0.1,0-0.1-0.1-0.2-0.1
c-0.8-0.6-1.7-0.6-2.4,0.3l-0.1,0.1c-1.1,1.6,1.5,3.1,2.6,1.5l0.1-0.1c-0.8,0.1-1.6,0.2-2.4,0.3c0.1,0,0.1,0.1,0.2,0.1
c0-0.7,0-1.4,0-2.1c0.9-0.3,0.7-0.3-0.6-0.2c-0.7,0-1.5,0-2.2,0c-1.1,0-2.2,0-3.4,0c-2.6,0-5.2,0.1-7.8,0.3
C185.3,17.5,185.3,20.5,187.3,20.4L187.3,20.4z"/>
<g
id="g12"
style="fill:#76a053;fill-opacity:1">
<g
id="g11"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M187.3,20.4c3.4-0.2,6.7-0.3,10.1-0.3c1.7,0,4.7,0.8,6.1-0.6c0.5-0.5,0.6-1.6,0-2.1c-0.1,0-0.1-0.1-0.2-0.1 c-0.8-0.6-1.7-0.6-2.4,0.3l-0.1,0.1c-1.1,1.6,1.5,3.1,2.6,1.5l0.1-0.1c-0.8,0.1-1.6,0.2-2.4,0.3c0.1,0,0.1,0.1,0.2,0.1 c0-0.7,0-1.4,0-2.1c0.9-0.3,0.7-0.3-0.6-0.2c-0.7,0-1.5,0-2.2,0c-1.1,0-2.2,0-3.4,0c-2.6,0-5.2,0.1-7.8,0.3 C185.3,17.5,185.3,20.5,187.3,20.4L187.3,20.4z"
id="path10"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M193.1,19.4c0.7,3.7,1.3,7.4,1.5,11.1c0.1,1.6,2.5,2.1,2.9,0.4c0.3-0.9,0.1-1.4-0.5-2.2
c-1.2-1.5-3.3,0.6-2.1,2.1c0.1,0.1,0.2,0.2,0.2,0.3c-0.1-0.5-0.3-1-0.4-1.5c0,0.1-0.1,0.3-0.1,0.4c1,0.1,2,0.3,2.9,0.4
c-0.3-4-0.8-8-1.6-11.9C195.6,16.7,192.7,17.5,193.1,19.4L193.1,19.4z"/>
<g
id="g14"
style="fill:#76a053;fill-opacity:1">
<g
id="g13"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M193.1,19.4c0.7,3.7,1.3,7.4,1.5,11.1c0.1,1.6,2.5,2.1,2.9,0.4c0.3-0.9,0.1-1.4-0.5-2.2 c-1.2-1.5-3.3,0.6-2.1,2.1c0.1,0.1,0.2,0.2,0.2,0.3c-0.1-0.5-0.3-1-0.4-1.5c0,0.1-0.1,0.3-0.1,0.4c1,0.1,2,0.3,2.9,0.4 c-0.3-4-0.8-8-1.6-11.9C195.6,16.7,192.7,17.5,193.1,19.4L193.1,19.4z"
id="path12"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M177,27.7c2.7,0,5.3-0.3,7.9-0.9c1.9-0.4,1.1-3.3-0.8-2.9c-2.4,0.5-4.7,0.7-7.1,0.8
C175.1,24.7,175.1,27.7,177,27.7L177,27.7z"/>
<g
id="g16"
style="fill:#76a053;fill-opacity:1">
<g
id="g15"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M177,27.7c2.7,0,5.3-0.3,7.9-0.9c1.9-0.4,1.1-3.3-0.8-2.9c-2.4,0.5-4.7,0.7-7.1,0.8 C175.1,24.7,175.1,27.7,177,27.7L177,27.7z"
id="path14"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M176.3,32.6c0.8-3.8,1.3-9.6,4-12.7c1.2-1.4,1.4,0,2,1.2c0.5,1,0.9,2.1,1.3,3.2c0.8,2.5,1.6,5,2.3,7.5
c0.9-0.4,1.8-0.8,2.7-1.2c-0.2-0.4-0.3-0.8-0.5-1.2c-0.8-1.8-3.3-0.2-2.6,1.5c0.2,0.4,0.3,0.8,0.5,1.2c0.7,1.6,3.2,0.4,2.7-1.2
c-0.8-2.9-3.2-16.2-8.2-14.9c-5.3,1.4-6.3,11.5-7.1,15.7C173,33.7,175.9,34.5,176.3,32.6L176.3,32.6z"/>
<g
id="g18"
style="fill:#76a053;fill-opacity:1">
<g
id="g17"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M176.3,32.6c0.8-3.8,1.3-9.6,4-12.7c1.2-1.4,1.4,0,2,1.2c0.5,1,0.9,2.1,1.3,3.2c0.8,2.5,1.6,5,2.3,7.5 c0.9-0.4,1.8-0.8,2.7-1.2c-0.2-0.4-0.3-0.8-0.5-1.2c-0.8-1.8-3.3-0.2-2.6,1.5c0.2,0.4,0.3,0.8,0.5,1.2c0.7,1.6,3.2,0.4,2.7-1.2 c-0.8-2.9-3.2-16.2-8.2-14.9c-5.3,1.4-6.3,11.5-7.1,15.7C173,33.7,175.9,34.5,176.3,32.6L176.3,32.6z"
id="path16"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M157,19.5c5-0.2,10.1-0.5,15.1-0.7c1.9-0.1,1.9-3.1,0-3c-5,0.2-10.1,0.5-15.1,0.7
C155.1,16.6,155.1,19.6,157,19.5L157,19.5z"/>
<g
id="g20"
style="fill:#76a053;fill-opacity:1">
<g
id="g19"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M157,19.5c5-0.2,10.1-0.5,15.1-0.7c1.9-0.1,1.9-3.1,0-3c-5,0.2-10.1,0.5-15.1,0.7 C155.1,16.6,155.1,19.6,157,19.5L157,19.5z"
id="path18"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M162.9,17.3c-0.4,2.2,0.3,3.9,0.9,6c0.7,2.7,0.9,5.4,0.9,8.2c0,1.9,2.9,1.9,3,0c0-0.6-0.1-0.9-0.4-1.4
c-1.1-1.6-3.7-0.1-2.6,1.5v-0.1c1,0,2,0,3,0c0-2-0.1-4-0.4-6c-0.3-2.2-1.8-5.2-1.5-7.4C166.1,16.2,163.3,15.4,162.9,17.3
L162.9,17.3z"/>
<g
id="g22"
style="fill:#76a053;fill-opacity:1">
<g
id="g21"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M162.9,17.3c-0.4,2.2,0.3,3.9,0.9,6c0.7,2.7,0.9,5.4,0.9,8.2c0,1.9,2.9,1.9,3,0c0-0.6-0.1-0.9-0.4-1.4 c-1.1-1.6-3.7-0.1-2.6,1.5v-0.1c1,0,2,0,3,0c0-2-0.1-4-0.4-6c-0.3-2.2-1.8-5.2-1.5-7.4C166.1,16.2,163.3,15.4,162.9,17.3 L162.9,17.3z"
id="path20"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M146.2,32.5c0.6-5.5,1-10.9-0.6-16.3c-0.9,0.4-1.8,0.8-2.7,1.2c1.5,2.9,3.7,5.4,5.6,8
c1.4,1.9,2.8,4.7,4.9,5.9c-0.2-0.4-0.5-0.9-0.7-1.3c0,1.1,0.2,1.5,1,2.2c0.9,0.7,2.7,0.3,2.6-1.1c-0.3-2.4-0.7-4.9-0.9-7.4
c-0.1-2.3,0.6-4.6,0.7-6.9c0.1-1.9-2.9-1.9-3,0c-0.1,2.3-0.9,4.6-0.7,6.9c0.2,2.5,0.6,4.9,0.9,7.4c0.9-0.4,1.7-0.7,2.6-1.1
c-0.2-0.2-0.5-1-0.7-1.3c-1-1.5-2.5-3-3.7-4.4c-2.1-2.7-4.4-5.4-6-8.4c-0.8-1.5-3.2-0.5-2.7,1.2c1.4,5.1,1,10.3,0.5,15.5
C143,34.4,146,34.4,146.2,32.5L146.2,32.5z"/>
<g
id="g24"
style="fill:#76a053;fill-opacity:1">
<g
id="g23"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M146.2,32.5c0.6-5.5,1-10.9-0.6-16.3c-0.9,0.4-1.8,0.8-2.7,1.2c1.5,2.9,3.7,5.4,5.6,8 c1.4,1.9,2.8,4.7,4.9,5.9c-0.2-0.4-0.5-0.9-0.7-1.3c0,1.1,0.2,1.5,1,2.2c0.9,0.7,2.7,0.3,2.6-1.1c-0.3-2.4-0.7-4.9-0.9-7.4 c-0.1-2.3,0.6-4.6,0.7-6.9c0.1-1.9-2.9-1.9-3,0c-0.1,2.3-0.9,4.6-0.7,6.9c0.2,2.5,0.6,4.9,0.9,7.4c0.9-0.4,1.7-0.7,2.6-1.1 c-0.2-0.2-0.5-1-0.7-1.3c-1-1.5-2.5-3-3.7-4.4c-2.1-2.7-4.4-5.4-6-8.4c-0.8-1.5-3.2-0.5-2.7,1.2c1.4,5.1,1,10.3,0.5,15.5 C143,34.4,146,34.4,146.2,32.5L146.2,32.5z"
id="path22"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M130.6,27.7c2-0.4,4-0.5,6.1-0.4c1.9,0.1,1.9-2.9,0-3c-2.3-0.2-4.6,0-6.9,0.5C128,25.1,128.8,28,130.6,27.7
L130.6,27.7z"/>
<g
id="g26"
style="fill:#76a053;fill-opacity:1">
<g
id="g25"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M130.6,27.7c2-0.4,4-0.5,6.1-0.4c1.9,0.1,1.9-2.9,0-3c-2.3-0.2-4.6,0-6.9,0.5C128,25.1,128.8,28,130.6,27.7 L130.6,27.7z"
id="path24"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M139.4,15.9c-3.5-0.6-7.3-0.5-10,2.1c-2.4,2.3-2.8,6.1-2.1,9.3c0.8,3.3,3,5.5,6.3,6.2
c2.9,0.7,6.2,0.9,7.9-1.9c1-1.7-1.6-3.2-2.6-1.5c-0.9,1.5-3.6,0.8-4.9,0.4c-2.4-0.7-3.4-2.4-3.8-4.7c-0.9-5.7,3.4-7.9,8.5-7
C140.5,19.1,141.3,16.2,139.4,15.9L139.4,15.9z"/>
<g
id="g28"
style="fill:#76a053;fill-opacity:1">
<g
id="g27"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M139.4,15.9c-3.5-0.6-7.3-0.5-10,2.1c-2.4,2.3-2.8,6.1-2.1,9.3c0.8,3.3,3,5.5,6.3,6.2 c2.9,0.7,6.2,0.9,7.9-1.9c1-1.7-1.6-3.2-2.6-1.5c-0.9,1.5-3.6,0.8-4.9,0.4c-2.4-0.7-3.4-2.4-3.8-4.7c-0.9-5.7,3.4-7.9,8.5-7 C140.5,19.1,141.3,16.2,139.4,15.9L139.4,15.9z"
id="path26"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M124.5,17.3c-2.9-2.7-10.7-4.5-10.7,1.6c0,1.9,1,4.4,2.9,5.2c1.7,0.8,3.6,0.2,4.3,2.6
c1.1,3.8-4.5,5.2-5.8,1.4c-0.1,0.5-0.3,1-0.4,1.5c0.2-0.2,0.3-0.3,0.5-0.5c1.4-1.4-0.7-3.5-2.1-2.1c-0.2,0.2-0.3,0.3-0.5,0.5
c-0.4,0.4-0.6,1-0.4,1.5c1.8,5.3,9.2,6.4,11.5,0.8c1-2.4,0.2-5.2-1.8-6.8c-1.1-0.9-2.1-0.9-3.3-1.4c-1.7-0.6-2.2-1.5-0.7-2.8
c0.5-1,1.2-1.2,2-0.6c0.9,0.3,1.7,0.7,2.5,1.3C123.8,20.7,125.9,18.6,124.5,17.3L124.5,17.3z"/>
<g
id="g30"
style="fill:#76a053;fill-opacity:1">
<g
id="g29"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M124.5,17.3c-2.9-2.7-10.7-4.5-10.7,1.6c0,1.9,1,4.4,2.9,5.2c1.7,0.8,3.6,0.2,4.3,2.6 c1.1,3.8-4.5,5.2-5.8,1.4c-0.1,0.5-0.3,1-0.4,1.5c0.2-0.2,0.3-0.3,0.5-0.5c1.4-1.4-0.7-3.5-2.1-2.1c-0.2,0.2-0.3,0.3-0.5,0.5 c-0.4,0.4-0.6,1-0.4,1.5c1.8,5.3,9.2,6.4,11.5,0.8c1-2.4,0.2-5.2-1.8-6.8c-1.1-0.9-2.1-0.9-3.3-1.4c-1.7-0.6-2.2-1.5-0.7-2.8 c0.5-1,1.2-1.2,2-0.6c0.9,0.3,1.7,0.7,2.5,1.3C123.8,20.7,125.9,18.6,124.5,17.3L124.5,17.3z"
id="path28"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M97.8,27.1c2.6-0.2,5.3-0.4,7.9-0.6c1.4-0.1,1.9-1.5,1.1-2.6c-0.1-0.1-0.1-0.2-0.2-0.3
c0.1,0.4,0.3,0.7,0.4,1.1c0-0.1,0-0.2,0-0.3c0.1-1.9-2.9-1.9-3,0c0,0.7,0.2,1.1,0.6,1.6c0.4-0.9,0.7-1.7,1.1-2.6
c-2.6,0.2-5.3,0.4-7.9,0.6C95.8,24.3,95.8,27.3,97.8,27.1L97.8,27.1z"/>
<g
id="g32"
style="fill:#76a053;fill-opacity:1">
<g
id="g31"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M97.8,27.1c2.6-0.2,5.3-0.4,7.9-0.6c1.4-0.1,1.9-1.5,1.1-2.6c-0.1-0.1-0.1-0.2-0.2-0.3 c0.1,0.4,0.3,0.7,0.4,1.1c0-0.1,0-0.2,0-0.3c0.1-1.9-2.9-1.9-3,0c0,0.7,0.2,1.1,0.6,1.6c0.4-0.9,0.7-1.7,1.1-2.6 c-2.6,0.2-5.3,0.4-7.9,0.6C95.8,24.3,95.8,27.3,97.8,27.1L97.8,27.1z"
id="path30"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M106.7,16c-2.5-0.9-6,0-8.1,1.4c-2.7,1.8-3,5.2-2.9,8.2c0.2,7.1,7.3,9.4,13.3,7.6c-0.6-0.6-1.2-1.2-1.8-1.8
c-0.1,0.1-0.1,0.2-0.2,0.4c0.3-0.3,0.7-0.7,1-1c-0.1,0-0.3,0-0.4,0.1c-1.9,0.3-1.1,3.2,0.8,2.9c0.9-0.1,1.3-0.6,1.6-1.5
c0.4-1.1-0.8-2.1-1.8-1.8c-4,1.2-9.4,0.3-9.5-4.7c-0.1-2.1,0-4.7,2-5.9c1.4-0.8,3.8-1.4,5.3-0.8C107.7,19.6,108.5,16.7,106.7,16
L106.7,16z"/>
<g
id="g34"
style="fill:#76a053;fill-opacity:1">
<g
id="g33"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M106.7,16c-2.5-0.9-6,0-8.1,1.4c-2.7,1.8-3,5.2-2.9,8.2c0.2,7.1,7.3,9.4,13.3,7.6c-0.6-0.6-1.2-1.2-1.8-1.8 c-0.1,0.1-0.1,0.2-0.2,0.4c0.3-0.3,0.7-0.7,1-1c-0.1,0-0.3,0-0.4,0.1c-1.9,0.3-1.1,3.2,0.8,2.9c0.9-0.1,1.3-0.6,1.6-1.5 c0.4-1.1-0.8-2.1-1.8-1.8c-4,1.2-9.4,0.3-9.5-4.7c-0.1-2.1,0-4.7,2-5.9c1.4-0.8,3.8-1.4,5.3-0.8C107.7,19.6,108.5,16.7,106.7,16 L106.7,16z"
id="path32"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M83,33.4c-0.5-3.4-1.4-7.1-1.4-10.5c0-7.1,7.6-4.1,5.2-0.4c-1,1.4-3.2,2-4.7,2.1c0.1,1,0.3,2,0.4,2.9
c3.2-0.8,5.2,4.2,6.2,6.4c0.9-0.5,1.7-1,2.6-1.5c-0.4-0.6-0.8-1.2-1.3-1.7c-1.1-1.5-3.7,0-2.6,1.5c0.4,0.6,0.8,1.2,1.3,1.7
c1.1,1.6,3.4,0.3,2.6-1.5c-1.8-3.8-4.6-9-9.6-7.7c-1.6,0.4-1.3,3,0.4,2.9c3.4-0.2,6.9-1.9,8.4-5.1c1.3-3-1-5.7-3.8-6.7
c-3-1-6.6,0.2-7.7,3.4c-0.7,2-0.2,4.3,0.1,6.4c0.4,2.9,0.8,5.7,1.2,8.6C80.3,36.1,83.2,35.3,83,33.4L83,33.4z"/>
<g
id="g36"
style="fill:#76a053;fill-opacity:1">
<g
id="g35"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M83,33.4c-0.5-3.4-1.4-7.1-1.4-10.5c0-7.1,7.6-4.1,5.2-0.4c-1,1.4-3.2,2-4.7,2.1c0.1,1,0.3,2,0.4,2.9 c3.2-0.8,5.2,4.2,6.2,6.4c0.9-0.5,1.7-1,2.6-1.5c-0.4-0.6-0.8-1.2-1.3-1.7c-1.1-1.5-3.7,0-2.6,1.5c0.4,0.6,0.8,1.2,1.3,1.7 c1.1,1.6,3.4,0.3,2.6-1.5c-1.8-3.8-4.6-9-9.6-7.7c-1.6,0.4-1.3,3,0.4,2.9c3.4-0.2,6.9-1.9,8.4-5.1c1.3-3-1-5.7-3.8-6.7 c-3-1-6.6,0.2-7.7,3.4c-0.7,2-0.2,4.3,0.1,6.4c0.4,2.9,0.8,5.7,1.2,8.6C80.3,36.1,83.2,35.3,83,33.4L83,33.4z"
id="path34"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
<g>
<g>
<path class="st0" d="M66.6,33.6c-0.4-3.2-0.6-6.3-0.7-9.5c-0.1-3.1-0.4-7.3,4-6.8c3.7,0.4,5.9,3.6,2.2,6c-2.3,1.5-5,1.5-7.5,0.5
c-1.8-0.7-2.6,2.2-0.8,2.9c3.9,1.6,8.5,0.9,11.6-2.1c3-2.9,2.5-6.6-1-8.9c-2.8-1.8-8-2.4-10.3,0.7c-1.3,1.8-1.2,4.3-1.2,6.4
c0.1,3.6,0.3,7.2,0.7,10.8C63.8,35.5,66.8,35.5,66.6,33.6L66.6,33.6z"/>
<g
id="g38"
style="fill:#76a053;fill-opacity:1">
<g
id="g37"
style="fill:#76a053;fill-opacity:1">
<path
class="st0"
d="M66.6,33.6c-0.4-3.2-0.6-6.3-0.7-9.5c-0.1-3.1-0.4-7.3,4-6.8c3.7,0.4,5.9,3.6,2.2,6c-2.3,1.5-5,1.5-7.5,0.5 c-1.8-0.7-2.6,2.2-0.8,2.9c3.9,1.6,8.5,0.9,11.6-2.1c3-2.9,2.5-6.6-1-8.9c-2.8-1.8-8-2.4-10.3,0.7c-1.3,1.8-1.2,4.3-1.2,6.4 c0.1,3.6,0.3,7.2,0.7,10.8C63.8,35.5,66.8,35.5,66.6,33.6L66.6,33.6z"
id="path36"
style="fill:#76a053;fill-opacity:1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,292 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 400 84.3"
style="enable-background:new 0 0 400 84.3;"
xml:space="preserve"
sodipodi:docname="programme.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs40" /><sodipodi:namedview
id="namedview40"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="4.6032651"
inkscape:cx="232.22647"
inkscape:cy="14.22903"
inkscape:window-width="1920"
inkscape:window-height="1000"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1" />
<style
type="text/css"
id="style1">
.st0{fill:#271A88;stroke:#271A88;stroke-width:0.75;stroke-miterlimit:10;}
</style>
<g
id="g16"
style="fill:#b2803b;fill-opacity:1;stroke:none"
transform="matrix(1.1121608,0,0,1.3632921,-82.192259,-19.445088)">
<g
id="g15"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 171.7,51.9 c -0.8,-4.1 -2.4,-9.1 -1.7,-13.3 -0.3,-2.2 0.8,-3.7 3.3,-4.6 2.6,0.9 3.6,2.7 3.1,5.4 -1.2,3.9 -5.7,3.6 -8.7,2.8 -1.9,-0.5 -2.7,2.4 -0.8,2.9 4.2,1.2 9.4,0.9 11.8,-3.4 2,-3.5 0.5,-8.2 -3.1,-9.9 -12.3,-5.9 -7.7,16.1 -6.7,21 0.3,1.8 3.2,1 2.8,-0.9 z"
id="path14"
style="fill:#b2803b;fill-opacity:1;stroke:none" />
</g>
</g>
<g
id="g32"
style="fill:#b2803b;fill-opacity:1;stroke:none"
transform="matrix(1.159457,0,0,1.2216515,-12.737473,-14.706846)">
<g
id="g31"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 281.4,31.3 c -2.8,0 -5.6,-0.1 -8.4,0 -1.1,0 -2.4,-0.1 -3.4,0.6 -1.1,0.8 -1,1.6 -0.9,2.8 0.4,3.4 0.9,6.1 0.4,9.5 -0.3,2.3 -2.4,7.7 0.2,9.5 1.2,0.8 3.4,0.5 4.8,0.4 2.8,-0.1 5.6,-0.4 8.5,-0.7 1.3,-0.2 2.2,-2 0.8,-2.8 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -1.7,-0.9 -3.2,1.7 -1.5,2.6 0.1,0.1 0.2,0.1 0.3,0.2 0.3,-0.9 0.5,-1.9 0.8,-2.8 -2.5,0.3 -6.7,1.4 -9.2,0.7 -3.3,-0.8 -1.4,-5.5 -1.1,-8.2 0.1,-1.5 0.2,-2.9 0.1,-4.4 0,-0.4 -0.6,-2.8 -0.4,-3.3 0.7,-1.9 7.8,-0.9 9.4,-0.9 1.8,0 1.8,-3 -0.1,-3 z"
id="path30"
style="fill:#b2803b;fill-opacity:1;stroke:none" />
</g>
</g>
<g
id="g34"
style="fill:#b2803b;fill-opacity:1;stroke:none"
transform="matrix(1.159457,0,0,1.2216515,-12.737473,-14.706846)">
<g
id="g33"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 271.8,44.1 c 2.9,-0.1 5.8,-0.1 8.7,-0.2 1.9,0 1.9,-3 0,-3 -2.9,0.1 -5.8,0.1 -8.7,0.2 -2,0 -2,3 0,3 z"
id="path32"
style="fill:#b2803b;fill-opacity:1;stroke:none" />
</g>
</g>
<g
id="g36"
style="fill:#b2803b;fill-opacity:1;stroke:none"
transform="matrix(1.159457,0,0,1.2216515,-209.36428,-13.275259)">
<g
id="g35"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.4,51.5 c 0.2,-4.3 0.3,-8.6 0,-12.9 -0.1,-1.4 -1.5,-6.2 1.9,-5.5 2.5,1.4 2.8,3.6 0.7,6.7 -1,0.5 -2,0.8 -3,1 -1.4,0.3 -1.4,2.6 0,2.9 3,0.7 3.7,3.5 5,5.8 0.6,1.1 2.3,2.6 2.6,3.6 0.2,-0.6 0.5,-1.1 0.7,-1.7 -0.1,0.1 -0.2,0.1 -0.4,0.2 0.7,0.2 1.4,0.4 2.1,0.5 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 -1.2,-1.5 -3.8,0 -2.6,1.5 0.1,0.1 0.1,0.2 0.2,0.3 0.5,0.7 1.3,1 2.1,0.5 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.9,-1.1 0.7,-1.7 -0.2,-0.7 -0.5,-0.9 -0.9,-1.5 -1.3,-1.9 -2.3,-3.7 -3.4,-5.8 -1.2,-2.2 -2.9,-3.8 -5.4,-4.3 0,1 0,1.9 0,2.9 3.3,-0.8 6.9,-2.6 7.2,-6.4 0.3,-3.2 -2.7,-6.5 -5.6,-7.5 -2.7,-0.9 -4.9,0.6 -5.4,3.4 -0.4,2.7 0.4,5.9 0.4,8.6 0.1,3.2 0,6.4 -0.1,9.7 -0.1,2.1 2.9,2.1 3,0.2 z"
id="path34"
style="fill:#b2803b;fill-opacity:1;stroke:none" />
</g>
</g><g
id="g36-1"
style="fill:#b2803b;fill-opacity:1;stroke:none"
transform="matrix(1.159457,0,0,1.2216515,-138.18536,-11.685111)">
<g
id="g35-4"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.4,51.5 c 0.2,-4.3 0.3,-8.6 0,-12.9 -0.1,-1.4 -1.5,-6.2 1.9,-5.5 2.5,1.4 2.8,3.6 0.7,6.7 -1,0.5 -2,0.8 -3,1 -1.4,0.3 -1.4,2.6 0,2.9 3,0.7 3.7,3.5 5,5.8 0.6,1.1 2.3,2.6 2.6,3.6 0.2,-0.6 0.5,-1.1 0.7,-1.7 -0.1,0.1 -0.2,0.1 -0.4,0.2 0.7,0.2 1.4,0.4 2.1,0.5 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 -1.2,-1.5 -3.8,0 -2.6,1.5 0.1,0.1 0.1,0.2 0.2,0.3 0.5,0.7 1.3,1 2.1,0.5 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.9,-1.1 0.7,-1.7 -0.2,-0.7 -0.5,-0.9 -0.9,-1.5 -1.3,-1.9 -2.3,-3.7 -3.4,-5.8 -1.2,-2.2 -2.9,-3.8 -5.4,-4.3 0,1 0,1.9 0,2.9 3.3,-0.8 6.9,-2.6 7.2,-6.4 0.3,-3.2 -2.7,-6.5 -5.6,-7.5 -2.7,-0.9 -4.9,0.6 -5.4,3.4 -0.4,2.7 0.4,5.9 0.4,8.6 0.1,3.2 0,6.4 -0.1,9.7 -0.1,2.1 2.9,2.1 3,0.2 z"
id="path34-7"
style="fill:#b2803b;fill-opacity:1;stroke:none;stroke-width:0.75;stroke-miterlimit:10" />
</g>
</g>
<g
id="g38"
style="fill:#b2803b;fill-opacity:1;stroke:none"
transform="matrix(1.159457,0,0,1.2216515,-223.9688,-12.454954)">
<g
id="g37"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 326.6,31.5 c -5.9,-2.2 -10.4,3.8 -11.9,8.8 -1.9,6.2 2,11.5 8.3,12.3 5.8,0.7 10.7,-3.4 11.3,-9.2 0.5,-5.4 -3,-13 -9.3,-12.1 -1.9,0.3 -1.1,3.2 0.8,2.9 7.1,-1.1 8.2,18 -3.4,15.2 -4.5,-1.1 -6.1,-4.8 -4.7,-8.9 1.2,-3.3 4,-7.7 8.1,-6.1 1.8,0.6 2.6,-2.3 0.8,-2.9 z"
id="path36"
style="fill:#b2803b;fill-opacity:1;stroke:none" />
</g>
</g>
<g
id="g14"
style="fill:#b2803b;fill-opacity:1;stroke:none;stroke-width:0.998001;stroke-dasharray:none"
transform="matrix(1.6206455,0,0,1.6794475,-168.43061,-47.727334)">
<g
id="g12"
transform="matrix(0.65656627,0,0,0.65158114,98.497111,22.992122)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<g
id="g11"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 180,33.2 c -7.5,0.2 -15.9,5.1 -15.1,13.7 0.9,8.8 10.6,11.8 17.6,8.1 0.8,-0.4 1,-1.7 0.3,-2.4 -0.2,-0.1 -0.3,-0.3 -0.5,-0.4 -1.4,-1.3 -3.5,0.8 -2.1,2.1 0.2,0.1 0.3,0.3 0.5,0.4 0.1,-0.8 0.2,-1.6 0.3,-2.4 -5.5,2.9 -13.6,0.1 -13.2,-7.1 0.4,-6.2 6.7,-9 12.1,-9.2 2,0.2 2,-2.8 0.1,-2.8 z"
id="path10"
style="fill:#b2803b;stroke:none;stroke-width:0.25;stroke-miterlimit:10;fill-opacity:1" />
</g>
</g></g><g
id="g30"
transform="matrix(1.2099795,0,0,1.394129,-131.69399,-24.572096)"
style="fill:#b2803b;fill-opacity:1;stroke:none;stroke-opacity:1">
<g
id="g29"
style="fill:#b2803b;fill-opacity:1;stroke:none;stroke-opacity:1">
<path
class="st0"
d="m 289.7,54.8 c 1.9,-4.4 0.2,-8.6 0.9,-13.2 0,-0.8 0.3,-1.6 0.7,-2.3 2.2,-0.1 3.4,0.6 3.5,2.3 0.6,1.1 0.6,2.8 0.8,4 0.6,3.1 1.2,6.2 1.8,9.4 1,-0.3 1.9,-0.5 2.9,-0.8 -0.1,-0.3 -0.1,-0.6 -0.2,-0.9 -0.4,-1.9 -3.3,-1.1 -2.9,0.8 0.1,0.3 0.1,0.6 0.2,0.9 0.4,1.9 3.2,1.1 2.9,-0.8 -0.8,-4.8 -1.5,-9.7 -2.8,-14.4 -0.7,-2.4 -2.3,-4.9 -5.1,-4.6 -7.8,0.8 -3.3,13.7 -5.2,18.1 -0.8,1.7 1.8,3.3 2.5,1.5 z"
id="path28"
style="fill:#b2803b;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10;stroke-opacity:1" />
</g>
</g><g
id="g32-3"
transform="matrix(1.422737,0,0,1.487627,-192.40956,-29.06543)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<g
id="g31-7"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.7,48.5 c 2.2,-0.1 4.4,-0.2 6.7,-0.3 1.9,-0.1 1.9,-3.1 0,-3 -2.2,0.1 -4.4,0.2 -6.7,0.3 -2,0.1 -2,3.1 0,3 z"
id="path30-1"
style="fill:#b2803b;stroke:none;stroke-width:0.25;stroke-miterlimit:10;fill-opacity:1" />
</g>
</g><g
id="g32-3-0"
transform="matrix(0.05300132,-1.0563155,1.224694,0.04502007,111.48082,352.95259)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<g
id="g31-7-1"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.7,48.5 c 2.2,-0.1 4.4,-0.2 6.7,-0.3 1.9,-0.1 1.9,-3.1 0,-3 -2.2,0.1 -4.4,0.2 -6.7,0.3 -2,0.1 -2,3.1 0,3 z"
id="path30-1-5"
style="fill:#b2803b;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
</g><g
id="g32-3-0-6"
transform="matrix(0.0533311,-0.86466187,1.2323143,0.03685181,72.646329,288.90929)">
<g
id="g31-7-1-6"
transform="matrix(0.03586775,-0.65249442,1.1720194,-0.00837799,223.31189,268.21638)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.7,48.5 c 2.2,-0.1 4.4,-0.2 6.7,-0.3 1.9,-0.1 1.9,-3.1 0,-3 -2.2,0.1 -4.4,0.2 -6.7,0.3 -2,0.1 -2,3.1 0,3 z"
id="path30-1-5-1"
style="fill:#b2803b;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
</g>
<g
id="g32-3-0-1"
transform="matrix(3.5209509,-0.10447356,-0.10288684,1.1113477,-732.50429,104.84409)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<g
id="g31-7-1-3"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.7,48.5 c 2.2,-0.1 4.4,-0.2 6.7,-0.3 1.9,-0.1 1.9,-3.1 0,-3 -2.2,0.1 -4.4,0.2 -6.7,0.3 -2,0.1 -2,3.1 0,3 z"
id="path30-1-5-0"
style="fill:#b2803b;stroke:none;stroke-width:0.25;stroke-miterlimit:10;fill-opacity:1" />
</g>
</g><g
id="g32-3-0-1-4"
transform="matrix(3.5209509,-0.10447356,-0.10288684,1.1113477,-731.41994,119.39263)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<g
id="g31-7-1-3-1"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.7,48.5 c 2.2,-0.1 4.4,-0.2 6.7,-0.3 1.9,-0.1 1.9,-3.1 0,-3 -2.2,0.1 -4.4,0.2 -6.7,0.3 -2,0.1 -2,3.1 0,3 z"
id="path30-1-5-0-4"
style="fill:#b2803b;stroke:none;stroke-width:0.25;stroke-miterlimit:10;fill-opacity:1" />
</g>
</g><g
id="g32-3-0-1-4-4"
transform="matrix(1.2554614,-0.02755117,-0.02713274,0.62001462,-87.802895,75.325559)"
style="display:inline;fill:#b2803b;fill-opacity:1">
<g
id="g31-7-1-3-1-6"
transform="matrix(1.221537,-0.00268665,-0.00264585,1.1595715,-47.879511,71.304006)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 295.01891,31.590006 c 1.78278,-2.825189 3.56557,-5.650379 5.43216,-8.599912 1.53134,-2.452159 -0.30178,-5.141023 -1.83313,-2.688865 -1.78279,2.825189 -3.56557,5.65038 -5.43217,8.599913 -1.61516,2.576503 0.21797,5.265367 1.83314,2.688864 z"
id="path30-1-5-0-4-3"
style="fill:#b2803b;stroke:none;stroke-width:0.307602;stroke-miterlimit:10;stroke-dasharray:none;fill-opacity:1" /><path
class="st0"
d="m 293.15823,34.247923 c 2.14788,2.540348 4.29576,5.08071 6.53848,7.740469 1.86335,2.182104 3.70322,-0.420778 1.83986,-2.602896 -2.14788,-2.540363 -4.29577,-5.080711 -6.53849,-7.740484 -1.95819,-2.301528 -3.79804,0.301368 -1.83985,2.602911 z"
id="path30-1-5-0-4-3-4"
style="fill:#b2803b;stroke:none;stroke-width:0.312073;stroke-miterlimit:10;stroke-dasharray:none;fill-opacity:1" />
</g>
<g
id="g32-3-0-1-7"
transform="matrix(2.8035583,-0.04392194,-0.04325486,1.7905319,-511.46156,63.306516)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<g
id="g31-7-1-3-6"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.7,48.5 c 2.2,-0.1 4.4,-0.2 6.7,-0.3 1.9,-0.1 1.9,-3.1 0,-3 -2.2,0.1 -4.4,0.2 -6.7,0.3 -2,0.1 -2,3.1 0,3 z"
id="path30-1-5-0-2"
style="fill:#b2803b;stroke:none;stroke-width:0.25;stroke-miterlimit:10;fill-opacity:1" />
</g>
</g><g
id="g32-3-0-1-4-8"
transform="matrix(2.8035583,-0.04392194,-0.04325486,1.7905319,-510.08944,86.832334)"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<g
id="g31-7-1-3-1-0"
style="fill:#b2803b;fill-opacity:1;stroke:none">
<path
class="st0"
d="m 289.7,48.5 c 2.2,-0.1 4.4,-0.2 6.7,-0.3 1.9,-0.1 1.9,-3.1 0,-3 -2.2,0.1 -4.4,0.2 -6.7,0.3 -2,0.1 -2,3.1 0,3 z"
id="path30-1-5-0-4-7"
style="fill:#b2803b;stroke:none;stroke-width:0.25;stroke-miterlimit:10;fill-opacity:1" />
</g>
</g><path
class="st0"
d="m 313.93307,145.63438 c 2.18521,-3.2808 4.37043,-6.5616 6.65834,-9.98681 1.87708,-2.84756 -0.35503,-5.96057 -2.23212,-3.113 -2.18522,3.2808 -4.37043,6.56159 -6.65835,9.9868 -1.9798,2.99199 0.25233,6.10499 2.23213,3.11301 z"
id="path30-1-5-0-4-3-8"
style="fill:#b2803b;stroke:none;stroke-width:0.366092;stroke-miterlimit:10;stroke-dasharray:none;fill-opacity:1" /><path
class="st0"
d="m 311.65315,148.72142 c 2.61699,2.93995 5.23399,5.8799 7.96652,8.95806 2.27037,2.52531 4.52473,-0.49787 2.25434,-3.02318 -2.61699,-2.93997 -5.234,-5.87991 -7.96653,-8.95808 -2.38591,-2.66353 -4.64024,0.35966 -2.25433,3.0232 z"
id="path30-1-5-0-4-3-4-2"
style="fill:#b2803b;stroke:none;stroke-width:0.371413;stroke-miterlimit:10;stroke-dasharray:none;fill-opacity:1" /></g></g><g
id="g24"
style="fill:#76a053;fill-opacity:1;stroke:none"
transform="translate(57.183385,40.219334)">
</g></svg>

After

Width:  |  Height:  |  Size: 13 KiB

100
www/img/header/header.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.1 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 6.1 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 6.5 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 4.7 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 4.5 MiB

View file

@ -0,0 +1 @@
<svg fill="#FFFFFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px"><path d="M 16 3 C 8.8324839 3 3 8.8324839 3 16 L 3 34 C 3 41.167516 8.8324839 47 16 47 L 34 47 C 41.167516 47 47 41.167516 47 34 L 47 16 C 47 8.8324839 41.167516 3 34 3 L 16 3 z M 16 5 L 34 5 C 40.086484 5 45 9.9135161 45 16 L 45 34 C 45 40.086484 40.086484 45 34 45 L 16 45 C 9.9135161 45 5 40.086484 5 34 L 5 16 C 5 9.9135161 9.9135161 5 16 5 z M 37 11 A 2 2 0 0 0 35 13 A 2 2 0 0 0 37 15 A 2 2 0 0 0 39 13 A 2 2 0 0 0 37 11 z M 25 14 C 18.936712 14 14 18.936712 14 25 C 14 31.063288 18.936712 36 25 36 C 31.063288 36 36 31.063288 36 25 C 36 18.936712 31.063288 14 25 14 z M 25 16 C 29.982407 16 34 20.017593 34 25 C 34 29.982407 29.982407 34 25 34 C 20.017593 34 16 29.982407 16 25 C 16 20.017593 20.017593 16 25 16 z"/></svg>

After

Width:  |  Height:  |  Size: 832 B

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg fill="#000000" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="800px" height="800px" viewBox="0 0 169.063 169.063"
xml:space="preserve">
<g>
<path d="M122.406,0H46.654C20.929,0,0,20.93,0,46.655v75.752c0,25.726,20.929,46.655,46.654,46.655h75.752
c25.727,0,46.656-20.93,46.656-46.655V46.655C169.063,20.93,148.133,0,122.406,0z M154.063,122.407
c0,17.455-14.201,31.655-31.656,31.655H46.654C29.2,154.063,15,139.862,15,122.407V46.655C15,29.201,29.2,15,46.654,15h75.752
c17.455,0,31.656,14.201,31.656,31.655V122.407z"/>
<path d="M84.531,40.97c-24.021,0-43.563,19.542-43.563,43.563c0,24.02,19.542,43.561,43.563,43.561s43.563-19.541,43.563-43.561
C128.094,60.512,108.552,40.97,84.531,40.97z M84.531,113.093c-15.749,0-28.563-12.812-28.563-28.561
c0-15.75,12.813-28.563,28.563-28.563s28.563,12.813,28.563,28.563C113.094,100.281,100.28,113.093,84.531,113.093z"/>
<path d="M129.921,28.251c-2.89,0-5.729,1.17-7.77,3.22c-2.051,2.04-3.23,4.88-3.23,7.78c0,2.891,1.18,5.73,3.23,7.78
c2.04,2.04,4.88,3.22,7.77,3.22c2.9,0,5.73-1.18,7.78-3.22c2.05-2.05,3.22-4.89,3.22-7.78c0-2.9-1.17-5.74-3.22-7.78
C135.661,29.421,132.821,28.251,129.921,28.251z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 580 KiB

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
www/img/photos/team/noe.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 446 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 605 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 243 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 972 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 632 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 632 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.2 MiB

View file

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 595.3 34"
style="enable-background:new 0 0 595.3 34;"
xml:space="preserve"
sodipodi:docname="paint-green.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs1" /><sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="2.1871326"
inkscape:cx="297.64999"
inkscape:cy="17.145737"
inkscape:window-width="958"
inkscape:window-height="988"
inkscape:window-x="950"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Calque_1" />
<style
type="text/css"
id="style1">
.st0{fill:#271A88;}
</style>
<title
id="title1">Fichier 1</title>
<g
id="Calque_2_1_">
<g
id="Calque_1-2">
<path
class="st0"
d="M116.2,34.8l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.4c-1.7-0.2-3.5-0.1-5.3-0.4c-5.3-0.8-10.5-1.7-15.8-2.4 c-4.5-0.7-9-1.2-13.5-1.7c-6.7-0.9-13.7-1-20.6-0.4c-3.3,0.3-6.6,0-9.4-1.1c-3.8-1.5-8.2-1.7-11.6,0.1c-2.2,1.2-4.8,1.6-7.5,2.1 c-3,0.6-5.9,1.4-9.4,1.2C11.8,31.6,0,31.4,0,31.4L0,16.2l595.4-2.6l0.1,15.2c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-4.4-13.9-5.5 c-3-0.9-6.5-0.8-9.4,0.2c-0.9,0.3-2,0.5-3.1,0.5c-3.1-0.2-6.2-0.7-9.3-0.9c-4.3-0.3-8.7-0.6-13.1-0.6s-8.9-0.4-13.2-0.1 c-8.1,0.5-16.2,1.5-24.3,2.2c-3,0.4-6.1-0.3-8-1.7c-3.8-2.9-6.7-3.5-12.4-2.2c-2.3,0.5-4.7,0.9-7.2,1.1c-4.3,0.3-8.8,0.3-13.1,0.8 c-3.5,0.4-7.1,0.1-10.2-0.9c-4.3-1.3-8.8-2.2-13.9-1.9c-5.7,0.3-11.4,0.6-17.1,0.7c-4.3,0-8.6-0.5-12.8-0.5 c-4.2-0.1-8.9-0.1-13.3,0.1c-6.7,0-13.4,0.9-19.7,2.2c-7.6,1.7-8.2,1.6-13.6-1.5c-2.1-1.4-5.7-1.8-8.7-1.1c-3,0.6-4.5,1.9-4.8,3.7 c-0.1,0.6-0.6,1.2-1.4,1.6c-4.6,2.5-10.9,2.8-16.5,1c-4.3-1.4-8.6-2-13.3-0.7c-4.7,1.2-8.9,3.1-14.1,3.9c-4.5,0.7-9.2,1-13.8,1 c-2.5-0.2-4.9-0.4-7.3-0.8c-2.1-0.3-4.2-0.9-6.3-1c-5.4-0.3-11,0.5-16.3-0.6c-1.2-0.2-2.4-0.3-3.6-0.3c-9.8-0.2-19.5-0.3-29.3-0.6 c-5.2-0.1-10.3-0.2-15.5-0.2c-2.3-0.1-4.7-0.2-7-0.3c-7.2-0.5-14.4-0.4-21.4,0.8c-2.4,0.5-5.2,0-6.6-1.2c-3.8-2.8-11-3.4-16-1.1 c-1.5,0.6-2.6,1.4-3.4,2.4c-0.5,0.6-1.4,1.2-2.5,1.6c-2.4,0.8-4.2,2.1-5,3.6c-0.3,0.4-0.9,0.8-1.7,0.9c-2.6,0.2-5.2,0.2-7.8,0.4 c-2.5,0.1-4-0.5-5.2-1.7c-2.9-2.8-8.8-4.3-13.8-2.1C121.5,31.1,119.1,33.1,116.2,34.8z"
id="path1"
style="fill:#99cd6a;fill-opacity:1" />
</g>
</g>
<metadata
id="metadata1"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Fichier 1</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 595.3 22"
style="enable-background:new 0 0 595.3 22;"
xml:space="preserve"
sodipodi:docname="paint-magenta.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs1" /><sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="2.1871326"
inkscape:cx="297.64999"
inkscape:cy="11.201881"
inkscape:window-width="1920"
inkscape:window-height="1000"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1-2" />
<style
type="text/css"
id="style1">
.st0{fill:#FCC81C;}
</style>
<title
id="title1">Fichier 1xxx</title>
<g
id="g1">
<g
id="Calque_1-2">
<path
class="st0"
d="M116.2,18.6l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.4c-1.7-0.1-3.5-0.1-5.3-0.4c-5.3-0.7-10.5-1.5-15.8-2.2 c-4.5-0.6-9-1-13.5-1.6c-6.7-0.8-13.7-0.9-20.6-0.5c-3.3,0.3-6.6,0-9.4-0.9c-3.8-1.3-8.2-1.5-11.6,0c-2.2,1-4.8,1.5-7.5,1.9 c-3,0.5-5.9,1.2-9.4,1C11.8,15.2,0,15,0,15L0,1.4l595.4,0v13.7c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-3.9-13.9-5 c-3-0.8-6.5-0.7-9.4,0.2c-0.9,0.3-2,0.5-3.1,0.5c-3.1-0.2-6.2-0.6-9.3-0.8c-4.3-0.3-8.7-0.5-13.1-0.6c-4.4-0.1-8.9-0.4-13.2-0.1 c-8.1,0.5-16.2,1.2-24.3,1.9c-3,0.3-6.1-0.3-8-1.5c-3.8-2.5-6.7-3.1-12.4-2.1c-2.3,0.5-4.7,0.8-7.2,1c-4.3,0.3-8.8,0.2-13.1,0.6 c-3.5,0.4-7.1,0.1-10.2-0.8c-4.3-1.2-8.8-2-13.9-1.8c-5.7,0.2-11.4,0.5-17.1,0.5c-4.3,0-8.6-0.4-12.8-0.5c-4.2-0.1-8.9-0.1-13.3,0 c-6.7,0-13.4,0.7-19.7,1.9c-7.6,1.5-8.2,1.4-13.6-1.5c-2.1-1.2-5.7-1.6-8.7-1c-3,0.5-4.5,1.7-4.8,3.3c-0.1,0.6-0.6,1.1-1.4,1.5 c-4.6,2.2-10.9,2.5-16.5,0.8c-4.3-1.3-8.6-1.8-13.3-0.7s-8.9,2.7-14.1,3.4c-4.5,0.7-9.2,0.9-13.8,0.8c-2.5-0.2-4.9-0.4-7.3-0.7 c-2.1-0.3-4.2-0.8-6.3-0.9c-5.4-0.3-11,0.4-16.3-0.6c-1.2-0.2-2.4-0.3-3.6-0.3c-9.8-0.2-19.5-0.4-29.3-0.6 c-5.2-0.1-10.3-0.2-15.5-0.3c-2.3-0.1-4.7-0.2-7-0.3c-7.2-0.5-14.4-0.5-21.4,0.6c-2.4,0.4-5.2,0-6.6-1.1c-3.8-2.5-11-3-16-1.1 c-1.5,0.6-2.6,1.3-3.4,2.1c-0.5,0.6-1.4,1.1-2.5,1.4c-2.4,0.7-4.2,1.9-5,3.2c-0.3,0.4-0.9,0.7-1.7,0.8c-2.6,0.2-5.2,0.2-7.8,0.3 c-2.5,0.1-4-0.4-5.2-1.5c-2.9-2.5-8.8-3.8-13.8-2C121.5,15.3,119.1,17.1,116.2,18.6z"
id="path1"
style="fill:#913c51;fill-opacity:1" />
</g>
</g>
<metadata
id="metadata1"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Fichier 1xxx</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 595.3 22"
style="enable-background:new 0 0 595.3 22;"
xml:space="preserve"
sodipodi:docname="paint-orange.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs1" /><sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="2.1871326"
inkscape:cx="297.64999"
inkscape:cy="11.201881"
inkscape:window-width="1920"
inkscape:window-height="1000"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1-2" />
<style
type="text/css"
id="style1">
.st0{fill:#FCC81C;}
</style>
<title
id="title1">Fichier 1xxx</title>
<g
id="g1">
<g
id="Calque_1-2">
<path
class="st0"
d="M116.2,18.6l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.4c-1.7-0.1-3.5-0.1-5.3-0.4c-5.3-0.7-10.5-1.5-15.8-2.2 c-4.5-0.6-9-1-13.5-1.6c-6.7-0.8-13.7-0.9-20.6-0.5c-3.3,0.3-6.6,0-9.4-0.9c-3.8-1.3-8.2-1.5-11.6,0c-2.2,1-4.8,1.5-7.5,1.9 c-3,0.5-5.9,1.2-9.4,1C11.8,15.2,0,15,0,15L0,1.4l595.4,0v13.7c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-3.9-13.9-5 c-3-0.8-6.5-0.7-9.4,0.2c-0.9,0.3-2,0.5-3.1,0.5c-3.1-0.2-6.2-0.6-9.3-0.8c-4.3-0.3-8.7-0.5-13.1-0.6c-4.4-0.1-8.9-0.4-13.2-0.1 c-8.1,0.5-16.2,1.2-24.3,1.9c-3,0.3-6.1-0.3-8-1.5c-3.8-2.5-6.7-3.1-12.4-2.1c-2.3,0.5-4.7,0.8-7.2,1c-4.3,0.3-8.8,0.2-13.1,0.6 c-3.5,0.4-7.1,0.1-10.2-0.8c-4.3-1.2-8.8-2-13.9-1.8c-5.7,0.2-11.4,0.5-17.1,0.5c-4.3,0-8.6-0.4-12.8-0.5c-4.2-0.1-8.9-0.1-13.3,0 c-6.7,0-13.4,0.7-19.7,1.9c-7.6,1.5-8.2,1.4-13.6-1.5c-2.1-1.2-5.7-1.6-8.7-1c-3,0.5-4.5,1.7-4.8,3.3c-0.1,0.6-0.6,1.1-1.4,1.5 c-4.6,2.2-10.9,2.5-16.5,0.8c-4.3-1.3-8.6-1.8-13.3-0.7s-8.9,2.7-14.1,3.4c-4.5,0.7-9.2,0.9-13.8,0.8c-2.5-0.2-4.9-0.4-7.3-0.7 c-2.1-0.3-4.2-0.8-6.3-0.9c-5.4-0.3-11,0.4-16.3-0.6c-1.2-0.2-2.4-0.3-3.6-0.3c-9.8-0.2-19.5-0.4-29.3-0.6 c-5.2-0.1-10.3-0.2-15.5-0.3c-2.3-0.1-4.7-0.2-7-0.3c-7.2-0.5-14.4-0.5-21.4,0.6c-2.4,0.4-5.2,0-6.6-1.1c-3.8-2.5-11-3-16-1.1 c-1.5,0.6-2.6,1.3-3.4,2.1c-0.5,0.6-1.4,1.1-2.5,1.4c-2.4,0.7-4.2,1.9-5,3.2c-0.3,0.4-0.9,0.7-1.7,0.8c-2.6,0.2-5.2,0.2-7.8,0.3 c-2.5,0.1-4-0.4-5.2-1.5c-2.9-2.5-8.8-3.8-13.8-2C121.5,15.3,119.1,17.1,116.2,18.6z"
id="path1"
style="fill:#b35d24;fill-opacity:1" />
</g>
</g>
<metadata
id="metadata1"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Fichier 1xxx</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.2 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.2 MiB

View file

@ -1,25 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 595.3 22" style="enable-background:new 0 0 595.3 22;" xml:space="preserve">
<style type="text/css">
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 595.3 22"
style="enable-background:new 0 0 595.3 22;"
xml:space="preserve"
sodipodi:docname="paint-yellow.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs1" /><sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="2.1871326"
inkscape:cx="297.64999"
inkscape:cy="11.201881"
inkscape:window-width="1920"
inkscape:window-height="1000"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1-2" />
<style
type="text/css"
id="style1">
.st0{fill:#FCC81C;}
</style>
<title>Fichier 1xxx</title>
<g>
<g id="Calque_1-2">
<path class="st0" d="M116.2,18.6l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.4c-1.7-0.1-3.5-0.1-5.3-0.4c-5.3-0.7-10.5-1.5-15.8-2.2
c-4.5-0.6-9-1-13.5-1.6c-6.7-0.8-13.7-0.9-20.6-0.5c-3.3,0.3-6.6,0-9.4-0.9c-3.8-1.3-8.2-1.5-11.6,0c-2.2,1-4.8,1.5-7.5,1.9
c-3,0.5-5.9,1.2-9.4,1C11.8,15.2,0,15,0,15L0,1.4l595.4,0v13.7c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-3.9-13.9-5
c-3-0.8-6.5-0.7-9.4,0.2c-0.9,0.3-2,0.5-3.1,0.5c-3.1-0.2-6.2-0.6-9.3-0.8c-4.3-0.3-8.7-0.5-13.1-0.6c-4.4-0.1-8.9-0.4-13.2-0.1
c-8.1,0.5-16.2,1.2-24.3,1.9c-3,0.3-6.1-0.3-8-1.5c-3.8-2.5-6.7-3.1-12.4-2.1c-2.3,0.5-4.7,0.8-7.2,1c-4.3,0.3-8.8,0.2-13.1,0.6
c-3.5,0.4-7.1,0.1-10.2-0.8c-4.3-1.2-8.8-2-13.9-1.8c-5.7,0.2-11.4,0.5-17.1,0.5c-4.3,0-8.6-0.4-12.8-0.5c-4.2-0.1-8.9-0.1-13.3,0
c-6.7,0-13.4,0.7-19.7,1.9c-7.6,1.5-8.2,1.4-13.6-1.5c-2.1-1.2-5.7-1.6-8.7-1c-3,0.5-4.5,1.7-4.8,3.3c-0.1,0.6-0.6,1.1-1.4,1.5
c-4.6,2.2-10.9,2.5-16.5,0.8c-4.3-1.3-8.6-1.8-13.3-0.7s-8.9,2.7-14.1,3.4c-4.5,0.7-9.2,0.9-13.8,0.8c-2.5-0.2-4.9-0.4-7.3-0.7
c-2.1-0.3-4.2-0.8-6.3-0.9c-5.4-0.3-11,0.4-16.3-0.6c-1.2-0.2-2.4-0.3-3.6-0.3c-9.8-0.2-19.5-0.4-29.3-0.6
c-5.2-0.1-10.3-0.2-15.5-0.3c-2.3-0.1-4.7-0.2-7-0.3c-7.2-0.5-14.4-0.5-21.4,0.6c-2.4,0.4-5.2,0-6.6-1.1c-3.8-2.5-11-3-16-1.1
c-1.5,0.6-2.6,1.3-3.4,2.1c-0.5,0.6-1.4,1.1-2.5,1.4c-2.4,0.7-4.2,1.9-5,3.2c-0.3,0.4-0.9,0.7-1.7,0.8c-2.6,0.2-5.2,0.2-7.8,0.3
c-2.5,0.1-4-0.4-5.2-1.5c-2.9-2.5-8.8-3.8-13.8-2C121.5,15.3,119.1,17.1,116.2,18.6z"/>
<title
id="title1">Fichier 1xxx</title>
<g
id="g1">
<g
id="Calque_1-2">
<path
class="st0"
d="M116.2,18.6l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.4c-1.7-0.1-3.5-0.1-5.3-0.4c-5.3-0.7-10.5-1.5-15.8-2.2 c-4.5-0.6-9-1-13.5-1.6c-6.7-0.8-13.7-0.9-20.6-0.5c-3.3,0.3-6.6,0-9.4-0.9c-3.8-1.3-8.2-1.5-11.6,0c-2.2,1-4.8,1.5-7.5,1.9 c-3,0.5-5.9,1.2-9.4,1C11.8,15.2,0,15,0,15L0,1.4l595.4,0v13.7c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-3.9-13.9-5 c-3-0.8-6.5-0.7-9.4,0.2c-0.9,0.3-2,0.5-3.1,0.5c-3.1-0.2-6.2-0.6-9.3-0.8c-4.3-0.3-8.7-0.5-13.1-0.6c-4.4-0.1-8.9-0.4-13.2-0.1 c-8.1,0.5-16.2,1.2-24.3,1.9c-3,0.3-6.1-0.3-8-1.5c-3.8-2.5-6.7-3.1-12.4-2.1c-2.3,0.5-4.7,0.8-7.2,1c-4.3,0.3-8.8,0.2-13.1,0.6 c-3.5,0.4-7.1,0.1-10.2-0.8c-4.3-1.2-8.8-2-13.9-1.8c-5.7,0.2-11.4,0.5-17.1,0.5c-4.3,0-8.6-0.4-12.8-0.5c-4.2-0.1-8.9-0.1-13.3,0 c-6.7,0-13.4,0.7-19.7,1.9c-7.6,1.5-8.2,1.4-13.6-1.5c-2.1-1.2-5.7-1.6-8.7-1c-3,0.5-4.5,1.7-4.8,3.3c-0.1,0.6-0.6,1.1-1.4,1.5 c-4.6,2.2-10.9,2.5-16.5,0.8c-4.3-1.3-8.6-1.8-13.3-0.7s-8.9,2.7-14.1,3.4c-4.5,0.7-9.2,0.9-13.8,0.8c-2.5-0.2-4.9-0.4-7.3-0.7 c-2.1-0.3-4.2-0.8-6.3-0.9c-5.4-0.3-11,0.4-16.3-0.6c-1.2-0.2-2.4-0.3-3.6-0.3c-9.8-0.2-19.5-0.4-29.3-0.6 c-5.2-0.1-10.3-0.2-15.5-0.3c-2.3-0.1-4.7-0.2-7-0.3c-7.2-0.5-14.4-0.5-21.4,0.6c-2.4,0.4-5.2,0-6.6-1.1c-3.8-2.5-11-3-16-1.1 c-1.5,0.6-2.6,1.3-3.4,2.1c-0.5,0.6-1.4,1.1-2.5,1.4c-2.4,0.7-4.2,1.9-5,3.2c-0.3,0.4-0.9,0.7-1.7,0.8c-2.6,0.2-5.2,0.2-7.8,0.3 c-2.5,0.1-4-0.4-5.2-1.5c-2.9-2.5-8.8-3.8-13.8-2C121.5,15.3,119.1,17.1,116.2,18.6z"
id="path1"
style="fill:#d1ab5a;fill-opacity:1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff