Init copy
1
README.md
Normal file
|
@ -0,0 +1 @@
|
|||
Site des interq
|
350
www/css/calendar.css
Normal file
|
@ -0,0 +1,350 @@
|
|||
/* Calendar */
|
||||
|
||||
#cal-container {
|
||||
position: relative;
|
||||
|
||||
width: 100%;
|
||||
/* height: 1200px; */
|
||||
padding: 0;
|
||||
|
||||
font-size: 0.8rem;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
#cal-container,
|
||||
#cal-container * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Time slots */
|
||||
|
||||
#cal-container .cal-time-slot-container {
|
||||
display: grid;
|
||||
/* grid-template-columns: repeat(24, 1fr); */
|
||||
grid-template-rows: 30px auto;
|
||||
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: calc(100% + 30px);
|
||||
padding: 0;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.5);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
#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 {
|
||||
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):hover {
|
||||
background-color: #D9D9D9;
|
||||
} */
|
||||
|
||||
#cal-container .cal-time-slot:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
#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;
|
||||
}
|
||||
|
||||
#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 {
|
||||
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 {
|
||||
display: grid;
|
||||
/* grid-template-columns: repeat(24, 1fr); */
|
||||
/* grid-template-rows: repeat(12, auto); */
|
||||
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
/* height: 100%; */
|
||||
padding: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
#cal-container .cal-event {
|
||||
position: relative;
|
||||
height: 42px;
|
||||
margin: 2px 0;
|
||||
padding: 5px;
|
||||
/* background-color: #EFEFEF; */
|
||||
border-radius: 3px;
|
||||
/* border: 1px solid #CCC; */
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
/* z-index: 500; */
|
||||
transition: 50ms ease-in;
|
||||
}
|
||||
|
||||
#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 {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#cal-container .cal-event > .cal-event-name {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
#cal-container .cal-event > .cal-event-location {
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/*#cal-container .cal-event > .cal-event-location::before {
|
||||
content: " · ";
|
||||
}*/
|
||||
|
||||
#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 {
|
||||
width: calc(100% - 10px);
|
||||
right: auto;
|
||||
margin: 5px;
|
||||
padding: 5px;
|
||||
background-color: #FFF;
|
||||
border: 2px solid #E44;
|
||||
color: #E44;
|
||||
font-weight: bold;
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#cal-container .cal-event.cal-event-subscribed {
|
||||
border-width: 3px;
|
||||
border-color: #000;
|
||||
}
|
||||
|
||||
#cal-container .cal-event.cal-event-subscribed::after {
|
||||
content: "✔";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 1px;
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
|
||||
|
||||
/* Event details popup */
|
||||
|
||||
#cal-container .cal-event-details {
|
||||
position: absolute;
|
||||
min-height: 100px;
|
||||
/* min-width: 40%; */
|
||||
max-width: 80%;
|
||||
padding: 20px;
|
||||
background-color: #333;
|
||||
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.above-event:after {
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
border-top-color: #333;
|
||||
border-width: 20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details * {
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details .cal-detail-close-button {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
font-size: 1.2rem;
|
||||
color: #BBB;
|
||||
transition: 100ms ease-out;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details .cal-detail-close-button:hover {
|
||||
background-color: #484848;
|
||||
color: #EFEFEF;
|
||||
}
|
||||
|
||||
#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 {
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
color: #FFF;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details .cal-detail-name h3 {
|
||||
margin: 0 20px 20px 20px;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details table {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#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 {
|
||||
padding: 0 0 10px 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details .cal-detail-perm-area {
|
||||
margin: 10px 0;
|
||||
padding: 10px;
|
||||
background-color: #DFDFDF;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
#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 {
|
||||
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-full {
|
||||
color: #393;
|
||||
}
|
||||
|
||||
|
||||
#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 {
|
||||
margin: 20px 0 0 0;
|
||||
padding: 5px;
|
||||
background-color: #FFF;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
font-size: 1.1rem;
|
||||
color: #E44;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details .cal-detail-description {
|
||||
margin: 20px 0 0 0;
|
||||
color: #DDD;
|
||||
font-size: 0.9rem;
|
||||
font-style: italic;
|
||||
text-align: justify;
|
||||
line-height: 130%;
|
||||
}
|
||||
|
||||
#cal-container .cal-event-details .cal-detail-tag {
|
||||
display: inline-block;
|
||||
margin: 5px;
|
||||
padding: 5px;
|
||||
border: 1px solid #DDD;
|
||||
}
|
349
www/css/normalize.css
vendored
Normal file
|
@ -0,0 +1,349 @@
|
|||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/* Document
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the line height in all browsers.
|
||||
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the `main` element consistently in IE.
|
||||
*/
|
||||
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background on active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Chrome 57-
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change the font styles in all browsers.
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE 10+.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10.
|
||||
* 2. Remove the padding in IE 10.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Add the correct display in Edge, IE 10+, and Firefox.
|
||||
*/
|
||||
|
||||
details {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the correct display in all browsers.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Misc
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10+.
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
747
www/css/style.css
Normal file
|
@ -0,0 +1,747 @@
|
|||
/*--------------------------------------------------------*/
|
||||
/* FONTS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
/* fira-sans-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Fira Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local("Fira Sans Regular"), local("FiraSans-Regular"),
|
||||
url("../fonts/fira-sans-v10-latin-regular.woff2") format("woff2"),
|
||||
url("../fonts/fira-sans-v10-latin-regular.woff") format("woff");
|
||||
}
|
||||
|
||||
/* fira-sans-700 - latin */
|
||||
@font-face {
|
||||
font-family: "Fira Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local("Fira Sans Bold"), local("FiraSans-Bold"),
|
||||
url("../fonts/fira-sans-v10-latin-700.woff2") format("woff2"),
|
||||
url("../fonts/fira-sans-v10-latin-700.woff") format("woff");
|
||||
}
|
||||
|
||||
/* fira-mono-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Fira Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Fira Mono Regular'), local('FiraMono-Regular'),
|
||||
url('../fonts/fira-mono-v8-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
||||
url('../fonts/fira-mono-v8-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
|
||||
/* permanent-marker-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Permanent Marker";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local("Permanent Marker Regular"), local("PermanentMarker-Regular"),
|
||||
url("../fonts/permanent-marker-v9-latin-regular.woff2") format("woff2"),
|
||||
url("../fonts/permanent-marker-v9-latin-regular.woff") format("woff");
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* GENERAL RULES
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html, body {
|
||||
font-family: "Fira Sans", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 180%;
|
||||
color: #000000;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #fbfbfb;
|
||||
|
||||
}
|
||||
|
||||
a,
|
||||
a:hover,
|
||||
a:active,
|
||||
a:visited {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
html, body {
|
||||
font-size: 16px;
|
||||
line-height: 160%;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* HEADER
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#main-header {
|
||||
position: relative;
|
||||
height: 750px;
|
||||
margin-bottom: 40px;
|
||||
background-color: #fbfbfb;
|
||||
background-image: url("../img/header/interq2.svg");
|
||||
background-position: top center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 1200px) {
|
||||
#main-header {
|
||||
height: 600px;
|
||||
/* margin-bottom: 30px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 960px) {
|
||||
#main-header {
|
||||
height: 460px;
|
||||
/* margin-bottom: 30px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#main-header {
|
||||
height: 420px;
|
||||
/* margin-bottom: 20px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 640px) {
|
||||
#main-header {
|
||||
height: 320px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#main-header {
|
||||
height: 250px;
|
||||
/* margin-bottom: 20px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
#main-header {
|
||||
height: 150px;
|
||||
/* margin-bottom: 15px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 220px) {
|
||||
#main-header {
|
||||
height: 120px;
|
||||
/* margin-bottom: 15px; */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* CONTENT
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
section {
|
||||
padding: 0 0 100px 0;
|
||||
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom center;
|
||||
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
section > * {
|
||||
max-width: 960px;
|
||||
|
||||
margin-left: calc(50% - 480px);
|
||||
padding-left: 60px;
|
||||
padding-right: 60px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
margin-bottom: 25px;
|
||||
padding: 40px 60px 30px 60px;
|
||||
|
||||
color: #000000;
|
||||
font-family: "Permanent Marker";
|
||||
font-size: 3.2rem;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
section:nth-child(2) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-red.svg), url(../img/theme/elements/main.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0% 100%, 0% 0%;
|
||||
|
||||
}
|
||||
section:nth-child(3) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-yellow.svg), url(../img/theme/elements/visage.svg), url(../img/theme/elements/bouche.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0% 100%, center left, bottom right;
|
||||
}
|
||||
|
||||
section:nth-child(4) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-blue.svg), url(../img/theme/elements/pinceau.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0% 100%, 100% 0%;
|
||||
}
|
||||
|
||||
section:nth-child(5) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/elements/guitare.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
}
|
||||
|
||||
section p {
|
||||
padding-bottom: 20px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
section p.stand-out {
|
||||
/* font-weight: 700; */
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section p a,
|
||||
section p a:visited {
|
||||
padding: 0px 2px;
|
||||
color: #000000;
|
||||
/* text-decoration: underline; */
|
||||
border-bottom: 3px solid #000;
|
||||
}
|
||||
|
||||
section p a:hover,
|
||||
section p a:active {
|
||||
background-color: #000000;
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
section > * {
|
||||
max-width: 960px;
|
||||
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 40px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
font-size: 2.6rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 580px) {
|
||||
section h2 {
|
||||
padding: 40px 40px 30px 40px;
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
|
||||
section {
|
||||
background-image: none
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 380px) {
|
||||
section > * {
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
padding: 40px 20px 30px 20px;
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
section h2 {
|
||||
padding: 30px 20px 20px 20px;
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* BUTTONS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
.button {
|
||||
display: block;
|
||||
/* width: 80%; */
|
||||
|
||||
margin: 20px auto 0 auto;
|
||||
padding: 15px 20px;
|
||||
|
||||
background-color: transparent;
|
||||
|
||||
border: 3px solid #000000;
|
||||
|
||||
color: #000000;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 400;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #000000;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
#facebook-button > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/facebook.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#facebook-button:hover > span::before {
|
||||
background-image: url("../img/icons/facebook-white.svg");
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.button > span {
|
||||
line-height: 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
.button {
|
||||
width: 100%;
|
||||
padding: 10px 15px;
|
||||
|
||||
font-size: 1.1rem;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.button img {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* INTERQ 2016
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
.interq2016 img {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
.interq2016 img {
|
||||
width: 60%;
|
||||
height: 60%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* PRICE TABLE
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#calendar {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#calendar {
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
#cal-container {
|
||||
min-width: 1800px;
|
||||
margin: 0 0 40px 0; /* Fix the weird y-overflow of the calendar root */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* LOCATION
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#mailing-address {
|
||||
margin: 0 0 20px 0;
|
||||
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
line-height: 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#mailing-address > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/location.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#interactive-map {
|
||||
width: 100%;
|
||||
|
||||
margin: 20px 0;
|
||||
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
#public-transport-info {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
grid-template-rows: 1fr 1fr 1fr;
|
||||
|
||||
margin-left: calc(50% - 480px - 50px);
|
||||
|
||||
font-size: 1.5rem;
|
||||
|
||||
line-height: 48px;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#public-transport-info > * {
|
||||
margin: 5px;
|
||||
|
||||
justify-self: left;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
|
||||
margin: 0 5px 0 0;
|
||||
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-metro-stop,
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-1-stop {
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#transport-rer-icon,
|
||||
#transport-rer-stop,
|
||||
#transport-bus-2-icon,
|
||||
#transport-bus-2-stop {
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
#transport-noctilien-icon,
|
||||
#transport-noctilien-stop {
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-rer-icon {
|
||||
grid-column: 1;
|
||||
justify-self: end;
|
||||
|
||||
}
|
||||
|
||||
#transport-metro-stop,
|
||||
#transport-rer-stop {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-2-icon,
|
||||
#transport-noctilien-icon {
|
||||
grid-column: 3;
|
||||
justify-self: end;
|
||||
|
||||
}
|
||||
|
||||
#transport-bus-1-stop,
|
||||
#transport-bus-2-stop,
|
||||
#transport-noctilien-stop {
|
||||
grid-column: 4;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#public-transport-info {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-rows: auto auto auto auto auto;
|
||||
align-items: center;
|
||||
|
||||
margin: 0;
|
||||
|
||||
line-height: 48px;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-metro-stop {
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#transport-rer-icon,
|
||||
#transport-rer-stop {
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-1-stop {
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
#transport-bus-2-icon,
|
||||
#transport-bus-2-stop {
|
||||
grid-row: 4;
|
||||
}
|
||||
|
||||
#transport-noctilien-icon,
|
||||
#transport-noctilien-stop {
|
||||
grid-row: 5;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-rer-icon,
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-2-icon,
|
||||
#transport-noctilien-icon {
|
||||
grid-column: 1;
|
||||
justify-self: end;
|
||||
|
||||
}
|
||||
|
||||
#transport-metro-stop,
|
||||
#transport-rer-stop,
|
||||
#transport-bus-1-stop,
|
||||
#transport-bus-2-stop,
|
||||
#transport-noctilien-stop {
|
||||
grid-column: 2;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 580px) {
|
||||
#mailing-address {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
#public-transport-info {
|
||||
grid-template-columns: 4fr 6fr;
|
||||
|
||||
line-height: 32px;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 380px) {
|
||||
#public-transport-info {
|
||||
row-gap: 16px;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* SPONSORS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#sponsors {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sponsors img {
|
||||
height: 100px;
|
||||
object-fit: cover;
|
||||
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc {
|
||||
height: 155px;
|
||||
border-radius: 78px;
|
||||
transition: 100ms ease-in;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc:hover {
|
||||
border: 5px solid #7b79b8
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#sponsors img {
|
||||
height: 60px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc {
|
||||
height: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* CONTACT
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#contact-email {
|
||||
font-family: "Fira Mono";
|
||||
font-size: 1.5rem;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#contact-email > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/email.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#contact-email {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
#contact-email > span::before {
|
||||
content: "";
|
||||
height: 0;
|
||||
width: 0;
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* EQUIPE INTERQ
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#team h3 {
|
||||
margin: 0 0 10px 0;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.team-group {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.team-group figure {
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.team-group figure img {
|
||||
width: 260px;
|
||||
}
|
||||
|
||||
.team-group figcaption {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
.team-group {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.team-group figure {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
|
||||
.team-group figure img {
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* SIGNATURE
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#signature {
|
||||
text-align: right;
|
||||
|
||||
}
|
109
www/css/tipso.css
Normal file
|
@ -0,0 +1,109 @@
|
|||
/* 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 {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
z-index: 9999;
|
||||
}
|
||||
.tipso_style{
|
||||
/* cursor: help; */
|
||||
/* border-bottom: 1px dotted; */
|
||||
}
|
||||
.tipso_title {
|
||||
padding: 0;
|
||||
border-radius: 6px 6px 0 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
.tipso_content {
|
||||
word-wrap: break-word;
|
||||
padding: 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Tipso Bubble size classes - Similar to Foundation's syntax*/
|
||||
.tipso_bubble.tiny {
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
.tipso_bubble.small {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
.tipso_bubble.default {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.tipso_bubble.large {
|
||||
font-size: 1.2rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tipso_bubble.cal_small {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
/* Tipso Bubble Div */
|
||||
.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;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
|
||||
.tipso_bubble .top_right_corner,
|
||||
.tipso_bubble.top_right_corner {
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.tipso_bubble .bottom_right_corner,
|
||||
.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;
|
||||
}
|
||||
|
||||
.tipso_bubble .bottom_left_corner,
|
||||
.tipso_bubble.bottom_left_corner {
|
||||
border-top-right-radius: 0;
|
||||
}
|
BIN
www/fonts/fira-mono-v8-latin-regular.woff
Normal file
BIN
www/fonts/fira-mono-v8-latin-regular.woff2
Normal file
BIN
www/fonts/fira-sans-v10-latin-700.woff
Normal file
BIN
www/fonts/fira-sans-v10-latin-700.woff2
Normal file
BIN
www/fonts/fira-sans-v10-latin-regular.woff
Normal file
BIN
www/fonts/fira-sans-v10-latin-regular.woff2
Normal file
BIN
www/fonts/permanent-marker-v9-latin-regular.woff
Normal file
BIN
www/fonts/permanent-marker-v9-latin-regular.woff2
Normal file
140
www/img/content/appelaprojets.svg
Normal file
|
@ -0,0 +1,140 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 305.1 88.8" style="enable-background:new 0 0 305.1 88.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#D2646D;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M259.9,36.4c-3.6-1.5-11.7-1.5-10,4.6c0.7,2.6,2.4,3.3,4.7,4.2c1.3,0.5,1-0.5,1.5,1.4
|
||||
c0.5,1.5,0.3,1.5-0.8,2.3c-2.5,2.1-4.4,1.1-6-1.5c-1-1.6-3.6-0.1-2.6,1.5c1.3,2.2,3.2,4.4,6,4.4c2.5-0.1,5.5-2.5,6.7-4.5
|
||||
s1-4.7-1.3-5.9c-1.4-0.7-3.2-0.3-4.4-1.4c-1.5-1.5-0.5-3.1,1.5-3.1c1.3,0,2.5,0.4,3.7,0.9C260.9,40,261.7,37.1,259.9,36.4
|
||||
L259.9,36.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M232.8,39.8c4.8,0.1,9.7,0.2,14.5,0.3c1.9,0,1.9-3,0-3c-4.8-0.1-9.7-0.2-14.5-0.3
|
||||
C230.8,36.7,230.8,39.7,232.8,39.8L232.8,39.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M238.8,38.5c0,4.6,0,9.3,0,13.9c0,1.7,2.4,2,2.9,0.4c0.3-0.8,0.3-1,0.2-1.8c-0.1-1.9-3.1-1.9-3,0
|
||||
c0,0.3-0.1,0.7-0.1,1c1,0.1,2,0.3,2.9,0.4c0-4.6,0-9.3,0-13.9C241.8,36.6,238.8,36.6,238.8,38.5L238.8,38.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M220.6,46c2.3,0.4,4.6,0.5,6.9,0.2c1.9-0.2,1.9-3.2,0-3c-2,0.3-4.1,0.3-6.1-0.1
|
||||
C219.5,42.8,218.7,45.7,220.6,46L220.6,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M231,35.3c-2.6-0.1-7.7-1.2-9.8,0.8c-1.9,1.9-1.4,6.8-1.5,9.2c-0.1,2.9,0.6,6.1,3.4,7.6s6.3,0.5,9-0.7
|
||||
c1.8-0.8,0.2-3.4-1.5-2.6c-2.2,1-5.6,1.8-7.2-0.7c-1.1-1.7-0.6-4.5-0.4-6.5c0.1-1.9-0.2-3.9,2-4.3c1.8-0.3,4.3,0.1,6.1,0.1
|
||||
C232.9,38.4,232.9,35.4,231,35.3L231,35.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M205.6,41c4-1.1,8-2,12.1-2.5c0.8-0.1,1.6-0.6,1.5-1.5v-0.1c-0.1-1.1-0.9-1.6-1.9-1.4h-0.1
|
||||
c-1.9,0.3-1.1,3.2,0.8,2.9h0.1c-0.6-0.5-1.3-1-1.9-1.4v0.1c0.5-0.5,1-1,1.5-1.5c-4.4,0.5-8.6,1.4-12.9,2.6
|
||||
C203,38.7,203.7,41.6,205.6,41L205.6,41z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M211.7,40.1c0.9,1.9,1.9,3.9,2,6.1c0.1,1,0,1.9-0.4,2.8c-0.2,0.6-0.5,1-0.9,1.4c-2,0.6-2.8,0.1-2.6-1.4
|
||||
c0.1-1.9-2.9-1.9-3,0c-0.3,4.6,5,6.4,8,3.2c3.7-3.9,1.5-9.6-0.4-13.7C213.5,36.8,210.9,38.3,211.7,40.1L211.7,40.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M199.1,37.6c-4.4-1.7-7.5,2.7-7.1,6.7c0.4,3.7,2.9,9.1,7,9.5c9.9,0.9,8.6-20.3-1.1-17.2
|
||||
c-1.8,0.6-1.1,3.5,0.8,2.9c5.7-1.8,5.6,13.2,0,11c-3.5-1.4-5.4-11.9-0.3-10C200.1,41.2,200.9,38.3,199.1,37.6L199.1,37.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M181.4,52.4c-0.5-3.3-0.7-6.7-0.8-10c0-1.4-0.6-3.4,1.3-3.9c4.4-1,3.8,7.8,0.2,5.7c-0.4,0.9-0.8,1.8-1.2,2.7
|
||||
c3.1,1,5.5,3.1,7.1,6c0.9,1.7,3.4,0.2,2.6-1.5c-0.1-0.3-0.3-0.6-0.4-0.8c-0.9-1.7-3.4-0.2-2.6,1.5c0.1,0.3,0.3,0.6,0.4,0.8
|
||||
c0.9-0.5,1.7-1,2.6-1.5c-2-3.6-5-6.1-8.9-7.3c-1.6-0.5-2.6,1.9-1.2,2.7c6.6,3.8,10.3-7.1,4.2-10.5c-2.6-1.4-6.1-1-7,2.2
|
||||
c-0.6,2.1-0.2,4.8-0.1,6.9c0.1,2.6,0.4,5.2,0.8,7.7C178.8,55.1,181.7,54.2,181.4,52.4L181.4,52.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M170.2,53c0.1-3.4-1.4-6.5-1.5-9.8c-0.1-2.2,0.9-6,3.6-4.2c3.2,2.1-0.5,6.8-2.9,3.9c-1.2-1.5-3.3,0.6-2.1,2.1
|
||||
c5.1,6.3,13.4-3.6,7.2-8.5c-2.6-2.1-6.4-1.3-8,1.7c-2.5,4.7,0.9,10,0.7,14.8C167.1,55,170.1,54.9,170.2,53L170.2,53z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M142.2,48.5c1.1-0.2,2.2-0.4,3.3-0.6c0.9-0.1,2.1-0.1,2.6-0.9c0.4-0.5,0.6-1.2,0.2-1.8
|
||||
c-0.4-0.5-0.8-0.8-1.5-0.8s-1.3,0.5-1.4,1.1v0.1c-0.6,1.8,2.3,2.6,2.9,0.8v-0.1c-0.5,0.4-1,0.7-1.4,1.1h0.1
|
||||
c-0.4-0.2-0.9-0.5-1.3-0.7c0,0,0,0.1,0.1,0.1c0.1-0.6,0.2-1.2,0.2-1.8c0.5-0.2,0.5-0.2-0.1-0.1c-0.1,0-0.3,0-0.4,0.1
|
||||
c-0.5,0.1-1,0.2-1.5,0.2c-0.9,0.2-1.8,0.3-2.7,0.5C139.5,45.9,140.3,48.8,142.2,48.5L142.2,48.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M139.4,52.9c0.8-2.1,1.1-4.2,1.3-6.5c0.1-1.5-0.2-6.7,1.1-7c2.1-0.6,5,11.4,5.5,13.3c0.3,1.2,2.1,1.5,2.7,0.4
|
||||
c0.4-0.8,0.5-1.4,0-2.2c-1-1.7-3.6-0.2-2.6,1.5c0.1,0.1,0.1,0.2,0.2,0.3c0-0.5,0-1,0-1.5c-0.1,0.1-0.1,0.2-0.2,0.3
|
||||
c0.9,0.1,1.8,0.2,2.7,0.4c-0.9-3.5-1.9-7.1-3.4-10.4c-0.9-1.9-2.5-6.1-5.1-6.2c-2.6,0-3.3,3.6-3.5,5.5c-0.6,3.8-0.2,7.7-1.6,11.3
|
||||
C135.8,53.9,138.7,54.7,139.4,52.9L139.4,52.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M107.1,38.2c0.2,2.6,0.3,5.3,0.3,7.9c-0.1,2-0.8,4.7-0.4,6.6c0.3,1.2,0.9,1.8,2.1,2c2.3,0.5,5.3,0.1,7.7,0.2
|
||||
c0.6,0,1.3-0.5,1.4-1.1c0.1-0.9,0.1-1.3-0.3-2.1c-0.8-1.8-3.4-0.2-2.6,1.5c0-0.1,0-0.2,0-0.2c0.5-0.4,1-0.7,1.4-1.1
|
||||
c-1.8,0-3.6,0-5.5-0.1c-1.1,0-1,0.2-1.2-0.6c-0.2-0.6,0.2-2.3,0.2-2.8c0.2-3.4,0.1-6.8-0.2-10.2C109.9,36.3,106.9,36.3,107.1,38.2
|
||||
L107.1,38.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M92.8,47.8c2.4,0.6,4.7,0.6,7.1,0.3c1.9-0.3,1.1-3.2-0.8-2.9c-1.8,0.3-3.7,0.2-5.5-0.3S91,47.3,92.8,47.8
|
||||
L92.8,47.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M103.6,37.9c-6.3-2.6-12.6,2.5-11.8,9.2c0.4,2.8,1.1,5.6,3.8,6.8c2.4,1.1,6.6,1.1,8.9-0.2
|
||||
c0.6-0.3,0.8-1,0.7-1.7c0-0.1,0-0.2-0.1-0.3c-0.1-0.5-0.6-1-1-1c-0.1,0-0.2,0-0.2,0c-1.9-0.3-2.7,2.6-0.8,2.9c0.1,0,0.2,0,0.2,0
|
||||
c-0.3-0.3-0.7-0.7-1-1c0,0.1,0,0.2,0.1,0.3c0.2-0.6,0.5-1.1,0.7-1.7c-1.3,0.8-4.7,0.7-6,0.1c-1.7-0.8-2.1-3.2-2.3-4.9
|
||||
c-0.3-4.6,4-7.1,8.1-5.4C104.6,41.5,105.4,38.6,103.6,37.9L103.6,37.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M85.4,53.8c-0.6-3.4-2.1-7-1.9-10.6c0.1-1.7,0.2-2.3,1.6-3.3c0.7-1.1,1.5-1.2,2.4-0.3
|
||||
c0.9,0.2,1.4,0.7,1.7,1.5c0.7,1.4,0,3.1-1.5,3.6c-1.4,0.5-3-0.1-4.1-0.8c-1.7-0.9-3.2,1.7-1.5,2.6c2.9,1.6,7.7,2.2,10-1
|
||||
c2.1-2.9,0-7-2.7-8.7c-2.9-1.7-6.5-0.9-7.9,2.2c-2.3,4.8,0.3,10.6,1.2,15.5C82.9,56.5,85.8,55.7,85.4,53.8L85.4,53.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M72.2,53c-0.2-3.8-2.7-8.1-1.5-11.8c0.9-2.9,5.3-3.8,6.7-0.6c0.8,1.7-0.4,3.3-1.9,4c-1.6,0.7-3.3,0.4-4.9,0.1
|
||||
c-1.9-0.4-2.7,2.5-0.8,2.9c3.9,0.9,8.9,0.5,10.5-3.8c1.2-3.1-0.8-6.2-3.6-7.5c-3.3-1.5-7-0.3-8.5,3.1c-2.1,4.6,0.8,9.2,1,13.8
|
||||
C69.3,54.9,72.3,54.9,72.2,53L72.2,53z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M57.2,49.1c1.9-0.1,3.8-0.3,5.8-0.4c1.9-0.1,1.9-3.1,0-3s-3.8,0.3-5.8,0.4C55.3,46.3,55.3,49.3,57.2,49.1
|
||||
L57.2,49.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M55.4,53.7c0.9-1.8,1.4-3.7,1.6-5.8c0.2-2-0.1-4.9,0.9-6.7c0-1.2,0.5-1.4,1.4-0.6c0.3,0.5,0.6,1,0.8,1.5
|
||||
c0.6,1.1,1.1,2.2,1.6,3.3c1,2.5,1.7,5.1,2.3,7.8c0.3,1.8,2.8,1.2,2.9-0.4c0-0.3,0.1-0.7,0.1-1c0.2-1.9-2.8-1.9-3,0
|
||||
c0,0.3-0.1,0.7-0.1,1c1-0.1,2-0.3,2.9-0.4c-0.7-3.6-1.8-7.1-3.4-10.4c-1-2-2.3-5.1-5.1-5.1c-2.4,0.1-3.2,2.5-3.6,4.4
|
||||
c-0.8,3.6-0.3,7.5-2,10.9C52,53.9,54.6,55.4,55.4,53.7L55.4,53.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
1
www/img/content/contact-email.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 259.2 32.27"><defs><style>.a{font-size:24px;font-family:FiraMono-Regular, Fira Mono;}.b{fill:#72560f;}</style></defs><title>Fichier 1</title><text class="a" transform="translate(0 20.27)">respointerq<tspan class="b" x="158.4" y="0">@</tspan><tspan x="172.8" y="0">ens</tspan><tspan class="b" x="216" y="0">.</tspan><tspan x="230.4" y="0">fr</tspan></text></svg>
|
After Width: | Height: | Size: 414 B |
147
www/img/content/equipe.svg
Normal file
|
@ -0,0 +1,147 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 400 84.3" style="enable-background:new 0 0 400 84.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#271A88;stroke:#271A88;stroke-width:0.75;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M94,33.5c0.1,1.9,0.1,3.7-0.1,5.6c-0.2,1.9,2.8,1.9,3,0c0.2-1.9,0.2-3.7,0.1-5.6C96.9,31.6,93.9,31.6,94,33.5
|
||||
L94,33.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M116.2,32.3c-2.9-0.6-5.7-0.1-8,1.8c-3.1,2.5-3.3,5.8-2.9,9.5c0.4,3.3,0.5,7.1,3.2,9.4
|
||||
c2.9,2.6,7.1,1.5,10.5,0.5c1.9-0.5,1.1-3.4-0.8-2.9c-2.5,0.7-5.7,1.7-8-0.1c-1.7-1.3-1.7-5.1-1.9-6.9c-0.5-4.7,1.4-9.5,7.1-8.3
|
||||
C117.2,35.6,118,32.7,116.2,32.3L116.2,32.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M107.4,45c2.5,0.1,5,0.2,7.5,0.3c1.9,0.1,1.9-2.9,0-3c-2.5-0.1-5-0.2-7.5-0.3C105.5,41.9,105.5,44.9,107.4,45
|
||||
L107.4,45z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M132,33.2c-11.6-5.7-17.7,22-1.2,20.1c5.4-0.6,10.5-4.9,10-10.7c-0.5-5.6-6.1-10-11.6-8.1
|
||||
c-1.8,0.6-1,3.5,0.8,2.9c3.5-1.2,7,1.2,7.7,4.8c0.7,3.7-2,6.7-5.3,7.8c-13.9,4.5-8.6-17.5-1.9-14.2
|
||||
C132.2,36.6,133.7,34.1,132,33.2L132,33.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M132.1,48.7c1.7,2.6,3.1,5.3,4.2,8.2c0.9-0.4,1.8-0.8,2.7-1.2c-0.2-0.3-0.3-0.5-0.5-0.8
|
||||
c-1-1.7-3.6-0.1-2.6,1.5c0.2,0.3,0.3,0.5,0.5,0.8c0.8,1.4,3.4,0.5,2.7-1.2c-1.2-3.1-2.7-6.1-4.5-8.9
|
||||
C133.7,45.5,131.1,47,132.1,48.7L132.1,48.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M141.8,33.5c-0.6,5.8-2.3,23.2,8.7,19.3c8.3-2.9,9.4-13.6,4.2-19.6c-1.3-1.5-3.4,0.7-2.1,2.1
|
||||
c2.2,2.5,3.1,5.8,2,9c-0.7,2.2-3.2,5.9-5.9,5.9c-1.2-0.7-2.4-1.3-3.6-2c-0.2-0.9-0.4-1.9-0.4-2.8c-0.1-1.3-0.2-2.7-0.2-4
|
||||
c-0.1-2.7,0.1-5.3,0.4-8C145,31.6,142,31.6,141.8,33.5L141.8,33.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M159.5,33.8c-0.4,6-0.3,12,0.2,18c0.9-0.4,1.7-0.7,2.6-1.1c-0.1-0.1-0.3-0.2-0.4-0.4
|
||||
c-1.5-1.2-3.6,0.9-2.1,2.1c0.1,0.1,0.3,0.2,0.4,0.4c0.9,0.8,2.7,0.3,2.6-1.1c-0.5-6-0.5-12-0.2-18
|
||||
C162.6,31.9,159.6,31.9,159.5,33.8L159.5,33.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M171.7,51.9c-0.8-4.1-2.4-9.1-1.7-13.3c-0.3-2.2,0.8-3.7,3.3-4.6c2.6,0.9,3.6,2.7,3.1,5.4
|
||||
c-1.2,3.9-5.7,3.6-8.7,2.8c-1.9-0.5-2.7,2.4-0.8,2.9c4.2,1.2,9.4,0.9,11.8-3.4c2-3.5,0.5-8.2-3.1-9.9c-12.3-5.9-7.7,16.1-6.7,21
|
||||
C169.2,54.6,172.1,53.8,171.7,51.9L171.7,51.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M190.9,32.1c-3.2,0-6.8,0.2-9.3,2.4c-2.5,2.2-3.1,5.8-3.4,8.9c-0.2,3,0.4,6.2,3.2,7.8
|
||||
c3.2,1.9,8.1,1.3,11.6,1.5c1.9,0.1,1.9-2.9,0-3c-2.3-0.1-4.7-0.1-7-0.3c-3.6-0.3-5-2.5-4.8-6c0.2-2.5,0.7-5.6,2.9-7.1
|
||||
c1.9-1.3,4.5-1.2,6.7-1.2C192.8,35.1,192.8,32.1,190.9,32.1L190.9,32.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M180.2,44.5c2.9,0,5.8,0,8.7-0.1c1.9,0,1.9-3,0-3c-2.9,0-5.8,0-8.7,0.1C178.2,41.5,178.2,44.5,180.2,44.5
|
||||
L180.2,44.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M77.4,33.5c0.3,3.3-1.1,6.9-1.2,10.2c-0.1,2.6-0.1,5.4,0.8,7.9c0.5,1.6,1,2.3,2.5,2.8
|
||||
c0.9,0.3,3.2-0.4,3.8-0.4c2.2-0.2,4.3-0.1,6.5,0.2c1.9,0.3,2.7-2.6,0.8-2.9C88.4,51,86.2,50.8,84,51c-0.8,0.1-1.7,0.3-2.5,0.3
|
||||
c-1.1,0.6-1.6,0.4-1.6-0.6c-0.3-0.9-0.5-1.9-0.6-2.8c-0.2-2.2-0.1-4.5,0.1-6.7c0.2-2.5,1.2-5,1-7.5C80.2,31.6,77.2,31.6,77.4,33.5
|
||||
L77.4,33.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M224.8,33.4l0.1-0.1c0.5-0.6,0.7-1.5,0-2.1l-0.1-0.1c-0.7-0.6-1.9-0.6-2.4,0.3c-1.1,2.5-0.4,6.2-0.4,8.9
|
||||
c0,4.1,0,8.2,0,12.3c0,1.9,3,1.9,3,0c0-3.3,0-6.7,0-10c0-1.5,0-3.1,0-4.6c0-1.3-0.6-3.9,0-5c-0.8,0.1-1.6,0.2-2.4,0.3l0.1,0.1
|
||||
c0-0.7,0-1.4,0-2.1l-0.1,0.1C221.5,32.8,223.6,35,224.8,33.4L224.8,33.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M234.3,51.8c-0.3-0.3,0.1-7.7,0-8.7c-0.4-3.4-0.8-6.6-0.3-10c-0.9,0.4-1.7,0.7-2.6,1.1
|
||||
c2.6,3.1,4.1,6.7,6.1,10.1c1.9,3.2,4.2,6.2,6.4,9.2c0.7,0.9,2.5,1.1,2.7-0.4c1.1-7.3,1.1-14.4-0.2-21.6c-0.3-1.9-3.2-1.1-2.9,0.8
|
||||
c1.2,6.7,1.2,13.3,0.2,20c0.9-0.1,1.8-0.2,2.7-0.4c-2.6-3.3-5.1-6.7-7.1-10.4c-1.8-3.3-3.4-6.6-5.9-9.5c-0.9-1.1-2.4-0.1-2.6,1.1
|
||||
c-0.5,4.4,0.4,8.6,0.6,12.9c0.1,2.3-1.4,6.3,0.6,8C233.6,55.2,235.8,53.1,234.3,51.8L234.3,51.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M256.5,33.9c0.9,6.1,1,12.2,0.3,18.3c1,0,2,0,3,0c0.1-1.1-0.2-1.4-0.8-2.2c-1.2-1.5-3.3,0.6-2.1,2.1
|
||||
c0,0,0,0.1-0.1,0.1c-0.2,1.9,2.8,1.9,3,0c0.7-6.4,0.5-12.7-0.4-19.1C259.1,31.2,256.2,32,256.5,33.9L256.5,33.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M249,35.5c6.2,0.1,12.3-0.7,18.4-2.4c1.9-0.5,1.1-3.4-0.8-2.9c-5.8,1.6-11.6,2.3-17.6,2.3
|
||||
C247.1,32.5,247.1,35.5,249,35.5L249,35.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M281.4,31.3c-2.8,0-5.6-0.1-8.4,0c-1.1,0-2.4-0.1-3.4,0.6c-1.1,0.8-1,1.6-0.9,2.8c0.4,3.4,0.9,6.1,0.4,9.5
|
||||
c-0.3,2.3-2.4,7.7,0.2,9.5c1.2,0.8,3.4,0.5,4.8,0.4c2.8-0.1,5.6-0.4,8.5-0.7c1.3-0.2,2.2-2,0.8-2.8c-0.1-0.1-0.2-0.1-0.3-0.2
|
||||
c-1.7-0.9-3.2,1.7-1.5,2.6c0.1,0.1,0.2,0.1,0.3,0.2c0.3-0.9,0.5-1.9,0.8-2.8c-2.5,0.3-6.7,1.4-9.2,0.7c-3.3-0.8-1.4-5.5-1.1-8.2
|
||||
c0.1-1.5,0.2-2.9,0.1-4.4c0-0.4-0.6-2.8-0.4-3.3c0.7-1.9,7.8-0.9,9.4-0.9C283.3,34.3,283.3,31.3,281.4,31.3L281.4,31.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M271.8,44.1c2.9-0.1,5.8-0.1,8.7-0.2c1.9,0,1.9-3,0-3c-2.9,0.1-5.8,0.1-8.7,0.2
|
||||
C269.8,41.1,269.8,44.1,271.8,44.1L271.8,44.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M289.4,51.5c0.2-4.3,0.3-8.6,0-12.9c-0.1-1.4-1.5-6.2,1.9-5.5c2.5,1.4,2.8,3.6,0.7,6.7c-1,0.5-2,0.8-3,1
|
||||
c-1.4,0.3-1.4,2.6,0,2.9c3,0.7,3.7,3.5,5,5.8c0.6,1.1,2.3,2.6,2.6,3.6c0.2-0.6,0.5-1.1,0.7-1.7c-0.1,0.1-0.2,0.1-0.4,0.2
|
||||
c0.7,0.2,1.4,0.4,2.1,0.5c-0.1-0.1-0.1-0.2-0.2-0.3c-1.2-1.5-3.8,0-2.6,1.5c0.1,0.1,0.1,0.2,0.2,0.3c0.5,0.7,1.3,1,2.1,0.5
|
||||
c0.1-0.1,0.2-0.1,0.4-0.2c0.6-0.3,0.9-1.1,0.7-1.7c-0.2-0.7-0.5-0.9-0.9-1.5c-1.3-1.9-2.3-3.7-3.4-5.8c-1.2-2.2-2.9-3.8-5.4-4.3
|
||||
c0,1,0,1.9,0,2.9c3.3-0.8,6.9-2.6,7.2-6.4c0.3-3.2-2.7-6.5-5.6-7.5c-2.7-0.9-4.9,0.6-5.4,3.4c-0.4,2.7,0.4,5.9,0.4,8.6
|
||||
c0.1,3.2,0,6.4-0.1,9.7C286.3,53.4,289.3,53.4,289.4,51.5L289.4,51.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M326.6,31.5c-5.9-2.2-10.4,3.8-11.9,8.8c-1.9,6.2,2,11.5,8.3,12.3c5.8,0.7,10.7-3.4,11.3-9.2
|
||||
c0.5-5.4-3-13-9.3-12.1c-1.9,0.3-1.1,3.2,0.8,2.9c7.1-1.1,8.2,18-3.4,15.2c-4.5-1.1-6.1-4.8-4.7-8.9c1.2-3.3,4-7.7,8.1-6.1
|
||||
C327.6,35,328.4,32.1,326.6,31.5L326.6,31.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M325.7,46.3c2.2,2.8,4.3,5.6,6.2,8.6c1.1,1.6,3.7,0.1,2.6-1.5c-2.1-3.2-4.3-6.2-6.7-9.2
|
||||
C326.6,42.7,324.5,44.8,325.7,46.3L325.7,46.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
133
www/img/content/nouscontacter.svg
Normal file
|
@ -0,0 +1,133 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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">
|
||||
.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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
144
www/img/content/presentation.svg
Normal file
|
@ -0,0 +1,144 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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">
|
||||
.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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
193
www/img/content/projetscollaboratifs.svg
Normal file
|
@ -0,0 +1,193 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 378.5 91.2" style="enable-background:new 0 0 378.5 91.2;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFCA0D;stroke:#FFCA0D;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M99.1,34.9c-3.3-0.6-6.9-1.1-9.8,1s-3.7,5.7-4,9c-0.3,3-0.9,8.2,1.7,10.6c2.9,2.6,9,0.8,12.4,0.6
|
||||
c1.9-0.2,1.9-3.2,0-3c-2.2,0.2-5.2,1-7.3,0.6c-4.1-0.7-4-4-3.9-7.3c0.1-2.3,0.3-4.9,1.7-6.8c2-2.8,5.4-2.3,8.3-1.8
|
||||
C100.2,38.2,101,35.3,99.1,34.9L99.1,34.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M86.7,46.6c2.7,0,5.3,0,8,0c1.9,0,1.9-3,0-3c-2.7,0-5.3,0-8,0C84.8,43.6,84.8,46.6,86.7,46.6L86.7,46.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M110.8,38.6c0-0.4,0.1-0.8,0.1-1.3c-1,0-2,0-3,0c0.2,4,0.2,7.9,0,11.9c-0.1,2-1.4,5.9,0,7.5
|
||||
c0.3,0.4,1,0.6,1.5,0.4c0.1,0,0.1,0,0.2-0.1c0.8-0.3,1.2-1,1-1.8c-0.1-0.7-0.6-1.1-1.3-1.3c-1.8-0.7-2.6,2.2-0.8,2.9
|
||||
c0.1,0,0.1,0,0.2,0.1c-0.3-0.3-0.7-0.7-1-1c0,0.1,0,0.1,0,0.2c0.3-0.6,0.7-1.2,1-1.8c-0.1,0-0.1,0-0.2,0.1c0.5,0.1,1,0.3,1.5,0.4
|
||||
c0.3,0.3,0.7-2.8,0.7-3.2c0.1-1.6,0.2-3.3,0.2-4.9c0.1-3,0-6-0.1-9.1c-0.1-1.9-2.8-1.9-3,0c0,0.4-0.1,0.8-0.1,1.3
|
||||
C107.6,40.5,110.6,40.5,110.8,38.6L110.8,38.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M101,40.9c5.6-1,11.2-2.1,16.8-3.1c1.9-0.3,1.1-3.2-0.8-2.9c-5.6,1-11.2,2.1-16.8,3.1
|
||||
C98.3,38.4,99.1,41.2,101,40.9L101,40.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M128.9,37.8c-2.6-1.7-5.8-2.6-8.7-1c-2.3,1.3-3.8,4-3,6.6c0.9,2.8,3.3,3.7,6,3.4c1.6-0.2,3.5-0.2,4.4,1.6
|
||||
c1,1.9-0.5,3.6-2.3,4.3c-2.5,0.9-5.9,0.2-7.9-1.3c-1.6-1.1-3.1,1.5-1.5,2.6c4.3,3.2,14.7,3.2,15.1-3.9c0.1-2.7-1.7-5.1-4.2-6
|
||||
c-1.6-0.6-3.3-0.3-4.9-0.7c-2,0.1-2.4-1-1.2-3.2c0.5-0.6,1.2-1,2-1c1.8-0.5,3.3,0.3,4.7,1.2C129,41.4,130.5,38.8,128.9,37.8
|
||||
L128.9,37.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M180,33.2c-7.5,0.2-15.9,5.1-15.1,13.7c0.9,8.8,10.6,11.8,17.6,8.1c0.8-0.4,1-1.7,0.3-2.4
|
||||
c-0.2-0.1-0.3-0.3-0.5-0.4c-1.4-1.3-3.5,0.8-2.1,2.1c0.2,0.1,0.3,0.3,0.5,0.4c0.1-0.8,0.2-1.6,0.3-2.4c-5.5,2.9-13.6,0.1-13.2-7.1
|
||||
c0.4-6.2,6.7-9,12.1-9.2C181.9,36.2,181.9,33.2,180,33.2L180,33.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M193.8,38.1c-9.9-7.4-19,15.5-6.6,17.9c5,1,10.9-3.5,12.1-8.3c1.4-5.7-2.5-10.8-7.9-12.1
|
||||
c-1.9-0.5-2.7,2.4-0.8,2.9c8,2,7.3,11.3,0.2,14.1c-11.3,4.4-6.3-17.6,1.4-11.8C193.8,41.8,195.3,39.2,193.8,38.1L193.8,38.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M199.9,36c-1.5,5.7-2.4,11.5-2.8,17.4c-0.1,0.8,0.7,1.6,1.5,1.5c3.2-0.2,6.3-0.1,9.5,0.5
|
||||
c1.6,0.3,2.6-1.8,1.2-2.7c-0.1-0.1-0.3-0.2-0.4-0.3c-1.6-1-3.1,1.6-1.5,2.6c0.1,0.1,0.3,0.2,0.4,0.3c0.4-0.9,0.8-1.8,1.2-2.7
|
||||
c-3.4-0.7-6.8-0.9-10.3-0.6c0.5,0.5,1,1,1.5,1.5c0.4-5.6,1.3-11.2,2.7-16.6C203.3,34.9,200.4,34.1,199.9,36L199.9,36z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M209.9,37.6c-0.7,5.5-1.2,10.9-1.3,16.4c0,1.1,1,1.6,1.9,1.4c1.9-0.3,3.9-0.3,5.8,0.2
|
||||
c1.9,0.6,2.6-2.3,0.8-2.9c-2.4-0.7-4.9-0.6-7.4-0.2c0.6,0.5,1.3,1,1.9,1.4c0.2-5.5,0.6-11,1.3-16.4
|
||||
C213.2,35.7,210.1,35.7,209.9,37.6L209.9,37.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M222.1,54c0.3-2.5,0.5-5,0.8-7.6c0.1-1.1,0.2-2.3,0.4-3.4c0.1-0.6,0.2-1.3,0.3-1.9c0.2-2,1.2-2.6,2.9-1.6
|
||||
c2.1,0.4,2.2,0.7,3.1,2.3c0.6,1.2,1.2,2.6,1.6,3.9c0.3,1.1,0.6,2.2,0.8,3.4c0.1,0.5,0.7,3.5,0.5,3.7c0.6-0.1,1.2-0.2,1.8-0.2
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2c0.2,0.7,0.4,1.4,0.5,2.1c0-0.1,0.1-0.1,0.1-0.2c1-1.7-1.6-3.2-2.6-1.5c0,0.1-0.1,0.1-0.1,0.2
|
||||
c-0.4,0.7-0.1,1.6,0.5,2.1c0.1,0.1,0.1,0.1,0.2,0.2c0.5,0.4,1.4,0.2,1.8-0.2c1.9-2.1,0.2-7.6-0.5-10c-1-3.1-2.7-8.2-6.2-9.4
|
||||
c-8.9-3.2-8.4,14.2-8.8,18.5C218.9,55.9,221.9,55.9,222.1,54L222.1,54z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M222.7,48.2c3.2,0,6.3-0.3,9.4-0.8c1.9-0.3,1.1-3.2-0.8-2.9c-2.8,0.5-5.7,0.7-8.6,0.7
|
||||
C220.7,45.2,220.7,48.2,222.7,48.2L222.7,48.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M240.1,54c-0.7-2.8-1.6-5.6-2.2-8.4c-0.4-1.8-1-3.9-0.3-5.6c0.6-0.9,1.2-1.8,1.9-2.7c4.1-0.2,5.1,1.5,2.8,4.9
|
||||
c0.3,0.9,0.5,1.9,0.8,2.8c2.8-1.7,6.3,0,6.6,3.2c0.1,1.3-0.2,2.7-1,3.8c-1.1,1.6-5.1,4.4-6.4,0.7c-0.7-1.8-3.6-1-2.9,0.8
|
||||
c2.7,7.4,11.9,3,13.2-3.1c1.3-6.3-5.5-11.4-11-8c-1.2,0.7-0.8,2.9,0.8,2.8c7.3-0.5,4.9-11.7-1.6-11.3c-10.3,0.7-4.9,15.5-3.5,20.9
|
||||
C237.7,56.6,240.5,55.8,240.1,54L240.1,54z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M261.4,36.7c-4.8-2.9-9.7,2.3-10.5,6.9c-0.9,5.1,3.8,11.4,9.2,11c12.3-0.7,13-22.5-0.5-21.2
|
||||
c-1.9,0.2-1.9,3.2,0,3c7.6-0.7,8.8,8.7,4.3,13.1c-3.1,3-7,2.3-9-1.3c-0.9-1.6-1.2-3-0.7-4.8c0.5-2,2.8-6,5.7-4.2
|
||||
C261.6,40.3,263.1,37.7,261.4,36.7L261.4,36.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M273.5,53.3c-0.1-3.6-0.2-7.2-0.3-10.8c0-1.2-0.6-3.5-0.1-4.7c3.2-7.9,8.8,7,2.1,4.6c-0.1,1-0.3,2-0.4,2.9
|
||||
c4.2,0.1,7.6,3.1,8,7.3c0.2,1.9,3.2,1.9,3,0c-0.6-5.8-5.1-10.1-11-10.3c-1.8-0.1-1.9,2.4-0.4,2.9c7.5,2.8,9.1-9,2.9-11.9
|
||||
c-10.4-4.9-7,15.7-6.8,20C270.6,55.2,273.6,55.3,273.5,53.3L273.5,53.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M289.7,54.8c1.9-4.4,0.2-8.6,0.9-13.2c0-0.8,0.3-1.6,0.7-2.3c2.2-0.1,3.4,0.6,3.5,2.3c0.6,1.1,0.6,2.8,0.8,4
|
||||
c0.6,3.1,1.2,6.2,1.8,9.4c1-0.3,1.9-0.5,2.9-0.8c-0.1-0.3-0.1-0.6-0.2-0.9c-0.4-1.9-3.3-1.1-2.9,0.8c0.1,0.3,0.1,0.6,0.2,0.9
|
||||
c0.4,1.9,3.2,1.1,2.9-0.8c-0.8-4.8-1.5-9.7-2.8-14.4c-0.7-2.4-2.3-4.9-5.1-4.6c-7.8,0.8-3.3,13.7-5.2,18.1
|
||||
C286.4,55,289,56.6,289.7,54.8L289.7,54.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M289.7,48.5c2.2-0.1,4.4-0.2,6.7-0.3c1.9-0.1,1.9-3.1,0-3c-2.2,0.1-4.4,0.2-6.7,0.3
|
||||
C287.7,45.6,287.7,48.6,289.7,48.5L289.7,48.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M305.3,37.9c0.1,5.2,0.4,10.4,0.8,15.6c0.2,1.9,3.1,1.9,3,0c0-1-0.1-1.3-0.4-2.3c-0.5-1.9-3.4-1.1-2.9,0.8
|
||||
c0.1,0.5,0.2,1,0.2,1.5c1,0,2,0,3,0c-0.4-5.2-0.7-10.4-0.8-15.6C308.2,36,305.2,36,305.3,37.9L305.3,37.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M297,39.2c5.8-0.3,11.6-0.7,17.3-1c1.9-0.1,1.9-3.1,0-3c-5.8,0.3-11.6,0.7-17.3,1
|
||||
C295.1,36.4,295.1,39.4,297,39.2L297,39.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M317.9,36.7c-0.4,6.2,0.2,12.1-0.8,18.2c1,0,1.9,0,2.9,0c-0.1-0.4-0.1-0.9-0.2-1.3c-0.3-1.9-3.2-1.1-2.9,0.8
|
||||
c0.1,0.4,0.1,0.9,0.2,1.3c0.2,1.4,2.7,1.4,2.9,0c1.1-6.4,0.6-12.6,0.9-19C321,34.7,318,34.7,317.9,36.7L317.9,36.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M327.1,54.2c-0.1-3.7-0.3-7.3-0.3-11c0-2.8-0.2-6,3.7-6.4c1.8-0.2,3.8,0.8,5.4,1.4c1.8,0.7,2.6-2.2,0.8-2.9
|
||||
c-3.9-1.6-9.2-2.8-11.8,1.6c-1.1,1.9-1.1,4.2-1.1,6.3c0,3.7,0.2,7.3,0.3,11C324.2,56.1,327.2,56.1,327.1,54.2L327.1,54.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M326.3,46.8c2.3-0.2,4.7-0.3,7-0.5c1.9-0.1,1.9-3.1,0-3c-2.3,0.2-4.7,0.3-7,0.5
|
||||
C324.4,43.9,324.4,46.9,326.3,46.8L326.3,46.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M352.2,34.5c-4.7-1.3-12.7,1.4-12.5,7.4c0.1,2.6,2.2,3.6,4.5,4c1.9,0.3,3.4-0.3,4.6,1.4
|
||||
c1.4,1.9,0.5,4.1-1.3,5.4c-2.7,1.9-6.4,1-9.2-0.1c-1.8-0.7-2.6,2.2-0.8,2.9c5.4,2,15.6,1.5,15.1-6.7c-0.1-2.5-1.7-4.9-4.2-5.7
|
||||
c-0.7-0.2-1.6-0.1-2.3-0.2c-2.3-0.6-3.4-1.8-2-3.6c1.7-2.1,4.9-2.5,7.3-1.8C353.3,37.9,354.1,35,352.2,34.5L352.2,34.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M25.4,57.3c-1-4.3-0.6-9.3-1-13.7c-0.1-1.4-0.4-3-0.1-4.4c-0.2-1.5,0.5-2.3,2.3-2.5c1.3-1.6,2.3-1.6,3,0
|
||||
c3.5,3.6-1.9,7.7-5.4,5.5c-1.6-1-3.2,1.6-1.5,2.6c4.2,2.6,8.1,1.5,10.5-2.9c2-3.6-0.7-8.1-4.1-9.9c-4.4-2.3-7.2,2.7-7.8,6.5
|
||||
c-0.5,3.4,0.4,6.7,0.7,10c0.2,3.2-0.2,6.3,0.5,9.5C23,60,25.9,59.2,25.4,57.3L25.4,57.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M36.5,58.3c0.4-4.2-0.3-8.4-0.6-12.6c-0.1-1.4-1-4.7-0.4-6.1c2.9-2.6,4.6-2.5,5.1,0.5c0.9,3.1-0.5,5-4.2,5.6
|
||||
c0,1,0,2,0,3c3.9-0.5,6.6,5.8,7.8,8.5c0.8,1.8,3.4,0.2,2.6-1.5c-1.8-4-5.2-10.7-10.4-10c-1.9,0.2-2,2.8,0,3
|
||||
c8.6,0.7,10.1-13.3,2.4-15.2c-3.1-0.8-5.6,2-6.1,4.8c-1.2,6.5,1.4,13.4,0.8,20C33.3,60.2,36.3,60.2,36.5,58.3L36.5,58.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M58.3,34.9C46,28.7,42.7,53.1,52.6,57.2c5.6,2.3,10-3,10.9-8c1.1-6.3-1.8-12.5-7.2-15.9
|
||||
c-1.6-1-3.1,1.6-1.5,2.6c3.3,2.1,5.6,5.4,5.9,9.4c0.3,3.4-0.6,8.2-4.4,9.2c-9.5,2.4-8.2-21.2,0.4-16.9
|
||||
C58.5,38.3,60,35.8,58.3,34.9L58.3,34.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M72.9,38.5c1.6,3.6,3.8,7.5,3.9,11.5c0.1,2.6-0.8,4.6-3.8,4.7c-1.9,0.1-3.7-0.9-4.7-2.5s-3.6-0.1-2.6,1.5
|
||||
c2.2,3.7,9.3,6.1,12.4,2.3c4.4-5.3-0.5-13.8-2.7-19C74.7,35.2,72.2,36.8,72.9,38.5L72.9,38.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M65.5,40c3.4-0.6,6.7-1.1,10.1-1.7c3.1-0.5,7.1-1.8,10.2-1.4c1,0.1,1.7-1.1,1.4-1.9c0-0.1-0.1-0.2-0.1-0.3
|
||||
c-0.2-0.7-0.8-1.1-1.4-1.1c-0.1,0-0.2,0-0.3,0c-1.9-0.1-1.9,2.9,0,3c0.1,0,0.2,0,0.3,0c-0.5-0.4-1-0.7-1.4-1.1
|
||||
c0,0.1,0.1,0.2,0.1,0.3c0.5-0.6,1-1.3,1.4-1.9c-3.1-0.4-6.5,0.7-9.5,1.2c-3.9,0.7-7.7,1.3-11.6,2C62.9,37.4,63.7,40.3,65.5,40
|
||||
L65.5,40z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.9 KiB |
461
www/img/header/interq.svg
Normal file
|
@ -0,0 +1,461 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 2048 987" style="enable-background:new 0 0 2048 987;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#D63F52;}
|
||||
.st1{fill:#FF0000;}
|
||||
.st2{fill:#271A88;}
|
||||
.st3{fill:#FFCA0D;}
|
||||
.st4{fill:#940001;}
|
||||
.st5{fill:#FBFBFB;}
|
||||
.st6{fill:#EFEFF0;}
|
||||
.st7{fill:#7B79B8;}
|
||||
.st8{fill:#D2646D;}
|
||||
.st9{fill:#991C1F;}
|
||||
.st10{fill:#FCC81C;}
|
||||
.st11{fill:#7D8CC4;}
|
||||
.st12{fill:none;stroke:#570001;stroke-width:6;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st13{fill:none;stroke:#570001;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M1725.4,489.1c-10.4-3.1-20.8-6.4-31.3-9.1c-10.9-2.8-21.8-5.6-32.8-7.5c-12.4-2.1-25-3.2-37.5-4.5
|
||||
c-8.2-0.9-16.5-1.3-24.7-2c-0.7-2.9-1.5-5.7-2.1-8.6c-12-55.4-45.3-91.2-99-108.5c-19.3-6.2-39.2-7-59.3-5.6
|
||||
c-1.8-5.4-3.3-10.8-5.3-16.1c-8.4-22.9-16.2-46-28.6-67.3c-13-22.3-29.3-41.6-49.2-58c-21.7-18-46-31.2-72.7-40.4
|
||||
c-4.8-1.6-9.4-3.5-14.1-5.3c9-6.1,12.6-15.6,15.1-25.4c3.3-13.2,3.5-26.6,2-40.1c-1.3-11.2-3.1-22.4-8.7-32.5
|
||||
c-2.7-4.9-5.4-9.9-3.3-16c0.5-1.6,0.2-3.8-0.5-5.3c-5-10.5-2.3-20.7,0.6-31c0.5-1.9,0.7-3.9,1-5.8c174,0,348,0,522,0
|
||||
c-2,6.3-4.4,12.5-5.8,18.9c-2.1,9.2-7.7,13.9-17.3,12.9c-5.1-0.5-10-2.1-15.1-2.9c-9-1.4-18.1-3.1-27.1-3.6
|
||||
c-7.3-0.4-14.8,0.3-21.1,4.7c-3.1,2.2-6.7,4.8-8.2,8.1c-3.2,7,2.9,17.6,11.1,19.5c18.7,4.3,37.3,3.1,55.5-3
|
||||
c5-1.7,10.1-3.5,15.2-4.5c5-0.9,8.2,2.6,9.9,6.7c0.7,1.8,0.1,5.4-1.3,6.6c-11.6,9.8-22.8,20.4-35.7,28.3
|
||||
c-13.8,8.4-27.8,16-38.7,28.2c-13.8,15.5-23.3,32.7-22.3,54.3c0.4,9.4,6.2,16.4,15.3,18c12.3,2.2,23.2-1.6,33.6-7.8
|
||||
c17-10.1,26.3-26.2,33.8-43.7c6-14,12-28.1,18.6-41.9c1.8-3.8,4.9-7.3,8.3-9.7c2.3-1.7,6.8-2.6,9.1-1.4c4.6,2.3,9.4,5.9,9.2,12
|
||||
c-0.3,12.3-0.9,24.6-2.1,36.9c-1.4,14.4-3.9,28.7-5.2,43.1c-1.6,18-2.9,36.1-3.6,54.2c-0.4,10.4,4.6,19.2,12.2,26.1
|
||||
c9.2,8.4,22.8,5.7,30.6-5.5c7.4-10.7,11-22.7,9.1-35.5c-2.2-14.6-5.4-29-9.1-43.3c-5.7-21.8-10.6-43.8-10.6-66.4
|
||||
c0-14.5,1.8-15.4,14.9-13.7c5,0.7,9.9,2.5,14.7,4.2c6.8,2.5,13.3,6.3,20.4,7.9c18.2,4.1,34.6,11.9,48.1,24.6
|
||||
c18.6,17.6,36.4,35.9,54.6,54c0.8,0.8,1.4,1.9,2,2.8c1.7,2.7,2.7,6.1,5,8.1c5,4.1,10.5,7.6,16,11c8.9,5.4,18,10.4,27.1,15.6
|
||||
c0,117.3,0,234.7,0,352c-4.8-0.4-9.7-0.3-14.3-1.2c-12.8-2.4-25.6-5.1-38.4-7.8c-25.5-5.3-51-6.4-76.4,0.8c-4.3-2.3-8.5-4.8-13-6.9
|
||||
c-23.4-10.7-46.9-21.3-70.4-31.9c-3.8-1.7-7.7-3.1-11.5-4.6c-0.6-5.2-0.3-10.8-2.1-15.6c-2.7-7.3-6.3-14.4-10.6-20.9
|
||||
c-10.2-15.6-19.2-18.5-37-13.3C1757.9,479.6,1741.7,484.3,1725.4,489.1z M1768.7,371.3c-1.4-3.3-3.5-9-6.4-14.3
|
||||
c-0.9-1.7-4.4-3.1-6.3-2.8c-8,1.3-16.5,1.9-23.6,5.3c-12.7,6-24.6,13.9-36.8,21c-4,2.3-6.3,5.6-4.5,10.4c1.8,5,6.2,4.8,10.5,4.5
|
||||
c5.8-0.4,11.6-0.9,17.4-1.2c11.1-0.7,22.3-1.2,33.4-2.2C1764.1,390.7,1768.2,385.9,1768.7,371.3z M1623.1,54.5
|
||||
c-0.7,8.2,2.4,16.4,9.1,22.8c8.7,8.3,21.1,9.6,28.4-3c5.8-9.9,2.7-27.1-6.2-34.3c-2.8-2.3-5.9-4.5-9.3-5.8
|
||||
C1632.9,29.4,1622.9,38.2,1623.1,54.5z M1680.2,218.1c-0.2-14.4-6.4-23.2-16.7-29c-6.5-3.6-17.8-3.1-22.8,6.5
|
||||
c-5.5,10.6-1.3,27.9,8.9,34.7c5.6,3.7,11.3,7.2,18.5,4.8C1675.5,232.5,1680.9,225.7,1680.2,218.1z M1801.2,272.2
|
||||
c-0.2-1.8-0.4-3.7-0.7-5.5c-0.8-5-3.3-9-8.1-10.4c-5.4-1.6-10,0.6-13.5,5.1c-5.7,7.6-7.1,16-3.7,24.9c2.1,5.6,8.2,8.2,13.7,5.9
|
||||
C1797.9,288.5,1800.1,280.7,1801.2,272.2z M1658.9,274.7c0.1-8.8-6.9-16.2-15.3-16.3c-9-0.1-16.3,7.3-16.3,16.5
|
||||
c0,7.5,6.3,15.5,15.4,15.3C1652.6,289.9,1659.2,283.3,1658.9,274.7z M1838.4,320c8.3-0.1,15.4-7.5,15.3-15.8
|
||||
c-0.2-8.3-7.2-14.8-15.8-14.6c-8.5,0.2-14.4,6.4-14.4,15.1C1823.6,313.3,1830.1,320,1838.4,320z M1597.4,79.8
|
||||
c0.1-6.3-4.9-13.3-9.6-13.4c-5.3-0.2-9.9,5.5-9.9,12.2c-0.1,6.7,4.8,12.8,10,12.8C1592.6,91.5,1597.4,85.6,1597.4,79.8z
|
||||
M1843.1,347.6c-0.1,5.9,4.3,10.3,10.3,10.4c5.4,0,10.2-4.6,10.4-10c0.2-5.6-4.6-10.5-10.3-10.6
|
||||
C1847.5,337.3,1843.3,341.5,1843.1,347.6z"/>
|
||||
<path class="st1" d="M330,0c164.7,0,329.3,0,494,0c0.7,19.6-8.5,33.7-24.4,44.4c-6.7,4.5-12.9,9.9-18.5,15.7
|
||||
c-7.2,7.2-8.1,16.1-4,25.4c5.6,12.7,14.4,23,27.1,28.1c15,6,30.7,10.8,46.5,14.4c18.1,4,34.9,9.9,47.7,23.9
|
||||
c8.9,9.8,17.5,19.9,25.9,30.3c8.1,10.1,17.3,18.7,29.9,22.3c13.7,3.9,27.8,6.6,41.6,9.8c-0.3,0.5-0.6,1.2-1.1,1.5
|
||||
c-14,9-28.6,17.1-41.9,27c-19.5,14.6-39.1,29.3-56.6,46.2c-24.3,23.5-46.6,49-69.7,73.6c-10.7,0.5-21.3,1-31.9,1.5
|
||||
c-18.3,0.9-36.6,1.3-54.8,3c-19.4,1.8-28.3,11.2-30.6,30.6c-0.4,3.1-1,6.3-1,9.4c0,3.2-1.5,4.1-4.2,4c-1.3-0.2-2.6-0.6-3.9-0.6
|
||||
c-37.6-0.8-75.1-1.6-112.7-2.3c-1.9,0-4,0.4-5.8,1.2c-10.3,4.4-12.2,16.2-4.4,26.4c1.3,1.5,2.6,3,3.9,4.5
|
||||
c-6.4-0.7-12.8-1.4-19.2-2.2c0.6-4.1,1.1-8.2,1.7-12.4c1.2-8.9,2.9-17.8,3.3-26.7c0.4-8.3-5.6-14.5-13-15c-9.4-0.6-15.6,4-17,12.9
|
||||
c-2.1,13-4.1,26-6.1,39c-7.3-1.2-14.5-2.2-21.7-3.8c-10.1-2.1-20-4.7-30-7.1c-6.4-1.5-12.7-3.3-19-4.9c-0.7-1.7-1.5-3.4-2-5.1
|
||||
c-3.2-10.2-6.3-20.4-9.5-30.5c-2.4-7.5-9-12-16.2-11.4c-7.6,0.7-12.9,5.9-14.1,13.9c-0.8,5.1-1.7,10.2-2.5,15.3
|
||||
c-5.9-2.7-12-5.2-17.8-8.1c-12.5-6.2-25.4-12-35-22.3c-5.4-5.7-9.4-12.7-13.9-19.2c-5.2-7.5-10.9-9.4-19.4-6.7
|
||||
c-10.3,3.3-20.5,7.1-31.6,6.5c-6.5-0.4-8-2.2-6.1-8.6c0.4-1.4,0.8-3,1.8-4.1c5.2-5.7,10.6-11.2,15.8-17c1.6-1.8,3.3-3.8,3.9-6.1
|
||||
c3.6-13.8-7.1-27.1-20.5-28.4c-7.1-0.7-14.3,0-21.5-0.2c-9.5-0.4-19.1-0.7-28.6-1.9c-7.1-0.9-12-9.8-10.6-17.1
|
||||
c2.3-12,8.6-21.5,18.2-28.5c8-5.9,16.6-10.9,25.5-15.2c10.4-5.1,21.3-9.1,32-13.4c7.5-3,15.3-5.5,22.7-8.9c2.3-1,5.3-4.3,5.1-6.1
|
||||
c-0.4-2.5-3.2-5.4-5.6-6.5c-6.1-2.6-12.6-4.5-19-6.2c-7.5-1.9-10.6-10.9-6.1-14.5c3.1-2.6,7.2-4.6,11.2-5.5
|
||||
c8.2-1.8,16.5-2.7,24.9-3.9c4-0.6,4-3.2,2.8-5.9c-3.7-8.9-9.5-12.9-19.4-12.1c-9.8,0.7-19.6,3.1-29.4,3.4
|
||||
c-10.9,0.4-21.9,0-32.6-1.5c-11.2-1.6-13.9-7.2-10.6-18.3c5.2-17.6,18-27.5,34.4-33.9c10.2-3.9,20.3-8.8,25.4-19.1
|
||||
c3.8-7.6,6.8-15.8,8.7-24.1C323.9,32.6,326.8,16.3,330,0z M507.1,249.2c12.3-1.8,24-3.5,35.7-5.1c12.4-1.7,24.4-4.9,35.7-10.2
|
||||
c17.9-8.2,33.7-19.8,49.1-31.8c4.8-3.7,4.1-6.4-1.5-9c-8.9-4.1-17.8-8.1-26.6-12.5c-12.3-6.1-24.5-12.7-38.1-15.6
|
||||
c-4.6-1-9.5-1.4-14.2-1.5c-9.5-0.3-16.7,4.7-23.2,11c-5.5,5.3-11.8,7.2-19.2,4.1c-4.8-2.1-9.5-4.8-14.5-6
|
||||
c-6.4-1.6-13.1-3.1-19.4,0.9c-3.4,2.1-6.8,4.1-9.9,6.6c-11.2,9-22.4,18.1-33.4,27.4c-3.9,3.3-3.7,7.2,0.1,10.6
|
||||
c3.5,3.2,7.4,6.2,11.5,8.6c9.9,5.8,19.4,12.9,30.1,16.3C481.4,246.9,494.6,247.3,507.1,249.2z M593.8,406.3c0,0.1,0,0.2,0,0.4
|
||||
c17.4,0,34.8,0,52.2,0c0-0.1,0-0.2,0-0.4C628.6,406.3,611.2,406.3,593.8,406.3z"/>
|
||||
<path class="st2" d="M322.1,501.4c-11.8,3.5-23.8,5.7-36.2,5.8c-18.5,0.1-36.2-4.2-53.5-10.1c-16.5-5.6-33-11.5-49.4-17.4
|
||||
c-2.8-1-5.5-2.3-8.2-3.4c-1.6-2.5-3.3-5-4.7-7.6c-8.6-16.6-12.9-34.4-15-52.9c-1.4-12.1-4.6-23.8-11.6-34
|
||||
c-8-11.5-17.7-21.6-29.2-29.3c-10-6.7-20.8-12.3-31.8-17.2c-7.9-3.5-16.6-5-24.9-7.7c-11.3-3.8-22.7-1.9-34-1
|
||||
c-7.9,0.6-15.6,3.5-23.5,5.4C0,221.4,0,110.8,0,0c110,0,220,0,330,0c-3.2,16.3-6.1,32.6-9.9,48.8c-2,8.3-4.9,16.5-8.7,24.1
|
||||
c-5.1,10.2-15.2,15.1-25.4,19c-16.4,6.3-29.1,16.2-34.4,33.9c-3.3,11.1-0.6,16.7,10.6,18.3c10.8,1.5,21.8,1.8,32.6,1.5
|
||||
c9.8-0.3,19.6-2.6,29.4-3.4c10-0.7,15.7,3.2,19.4,12.1c1.1,2.7,1.2,5.3-2.8,5.9c-8.3,1.2-16.7,2.1-24.9,3.9c-4,0.9-8,2.9-11.2,5.5
|
||||
c-4.4,3.7-1.3,12.6,6.1,14.5c6.5,1.7,12.9,3.6,19,6.2c2.5,1.1,5.3,4,5.6,6.5c0.3,1.8-2.8,5-5.1,6.1c-7.4,3.3-15.1,5.9-22.7,8.9
|
||||
c-10.7,4.3-21.6,8.3-32,13.4c-8.9,4.3-17.6,9.4-25.5,15.2c-9.5,7-15.9,16.6-18.2,28.5c-1.4,7.3,3.5,16.3,10.6,17.1
|
||||
c9.5,1.2,19.1,1.5,28.6,1.9c7.1,0.3,14.4-0.4,21.5,0.2c13.4,1.3,24.2,14.6,20.5,28.4c-0.6,2.2-2.3,4.3-3.9,6.1
|
||||
c-5.2,5.7-10.6,11.2-15.8,17c-0.9,1-1.3,2.7-1.8,4.1c-1.9,6.4-0.4,8.3,6.1,8.6c11.1,0.6,21.3-3.2,31.6-6.5
|
||||
c8.4-2.7,14.1-0.8,19.4,6.7c4.5,6.5,8.5,13.5,13.9,19.2c9.7,10.3,22.5,16.1,35,22.3c5.8,2.9,11.9,5.4,17.8,8.1
|
||||
c-0.5,2.7-1,5.4-1.5,8.1c-8,0.4-16,0.5-23.9,1.4c-23.2,2.4-46.3,5-69.5,7.5c-9.6,1-19.2,1.7-28.8,2.9c-8.7,1.1-14.5,8-13.6,15.6
|
||||
c1,8.6,7.9,13.9,16.8,13.1c8-0.8,15.9-1.6,23.9-2.4c7.2-0.7,14.4-1.3,22.8-2c0,15.7,0,30.6,0,45.6
|
||||
C335.3,495.1,328.6,498.2,322.1,501.4z"/>
|
||||
<path class="st1" d="M1918.8,567.9c25.4-7.3,50.9-6.2,76.4-0.8c12.8,2.7,25.6,5.4,38.4,7.8c4.7,0.9,9.6,0.8,14.3,1.2
|
||||
c0,88.7,0,177.3,0,266c-8.7,3.6-17.5,7.2-26.2,10.9c-39.7,16.8-79.3,33.7-119,50.3c-18.1,7.6-37.2,8.5-56.5,6.8
|
||||
c-2.1-0.2-4.9-2.3-5.8-4.2c-3.8-8.3-6.6-17.1-10.6-25.3c-2.2-4.4-5.6-8.6-9.3-11.8c-5.7-4.9-6.3-8.5-0.5-13.3c3.7-3,8-5.4,11.8-8.4
|
||||
c10.7-8.4,10.4-27.3-0.7-35.5c-7.7-5.7-16.5-7.6-25.9-7.3c-6.3,0.2-6.5-0.2-5.1-6.5c1.2-5.5,2.2-11,3.1-16.6c0.6-4-1.3-6.7-4.9-8.3
|
||||
s-7.4-3.1-10.9-4.9c-2.7-1.3-5.5-2.7-7.6-4.7c-5.4-5.1-5.1-9.8,0.5-14.6c7.4-6.4,14.8-12.9,22.4-19.1
|
||||
c12.8-10.3,16.6-24.6,19.2-39.9c2.7-16,5.8-32.1,9.9-47.8c6.5-24.9,22.7-42.9,44.7-55.2C1889.9,579.1,1904.7,574.1,1918.8,567.9z
|
||||
M1865.1,705.5c-0.3-1.5-0.5-3.4-1-5.4c-1-4.2-3.6-7.2-7.9-8c-4.6-0.8-8.5,1-10.4,5.1c-2,4.3-3.7,8.9-4.4,13.5
|
||||
c-0.7,4.5,1.4,8.5,5.8,10.6c3.9,1.8,7.8,1.7,11.1-1.3C1862.6,716.2,1864.8,711.6,1865.1,705.5z"/>
|
||||
<path class="st3" d="M995.8,214.2c-13.9-3.2-27.9-5.9-41.6-9.8c-12.5-3.6-21.8-12.3-29.9-22.3c-8.3-10.3-17-20.4-25.9-30.3
|
||||
c-12.8-14-29.6-19.9-47.7-23.9c-15.8-3.5-31.5-8.4-46.5-14.4c-12.7-5.1-21.5-15.4-27.1-28c-4.1-9.3-3.2-18.1,4-25.4
|
||||
c5.7-5.7,11.9-11.2,18.5-15.7C815.5,33.7,824.7,19.6,824,0c127,0,254,0,381,0c2.9,2.9,5.8,5.9,8.9,8.6c11.7,10.4,21.6,21.6,22,38.5
|
||||
c0.2,9,1.1,18-3.8,26.2c-11,18.3-22.4,36-42.2,46.5c-12,6.3-19.6,17.2-24.6,29.7c-1.8,4.5-3.9,8.8-5.2,13.4
|
||||
c-3.1,10.6-7.4,20.2-16,27.5c-3.7,3.1-7.4,6.1-10.9,9.4c-15.1,14.3-33.3,20.7-53.8,19.9c-17.8-0.7-35.5-2-53.2-3.2
|
||||
C1016,215.9,1005.9,215,995.8,214.2z M1064.2,171.7c3.9-0.8,8.4-1.4,12.6-2.7c4-1.3,6.8-4.2,7.2-8.7c0.4-4.8-2.2-8.3-6.1-10
|
||||
s-8.2-2.8-12.4-3.2c-12.6-1.1-25.2-2.2-37.9-2.6c-17.8-0.6-34.8-5.6-52-9.2c-9.8-2.1-19.7-3.7-29.7-1.2c-5.7,1.5-9.3,5.9-9.3,10.9
|
||||
c0,5.1,3.6,9.7,9.3,10.9c7,1.6,14,3,21.1,3.9c23.5,2.8,47,5.2,70.4,8C1046.1,168.8,1054.8,170.3,1064.2,171.7z M985.4,103.4
|
||||
c0,0.2,0,0.4,0,0.6c-2.8-0.2-5.7-0.5-8.5-0.4c-6.3,0.2-12.6,0.3-18.9,0.8c-3.6,0.3-7.3,1.6-7.4,5.9c-0.2,4.3,1.9,7.8,6.2,9.2
|
||||
c2.5,0.8,5.2,1.3,7.8,1.4c18.8,0.9,37.5,1.7,56.3,2.7c12.4,0.7,24.8,1.8,37.3,2.3c4.2,0.2,8.7-0.7,12.7-2.1
|
||||
c2.1-0.7,4.8-3.4,4.9-5.4s-2.1-5.2-4-6.1c-4.3-2-9-3.4-13.7-4c-6.1-0.8-12.3-0.3-18.4-0.7C1021.5,106.3,1003.5,104.8,985.4,103.4z
|
||||
M1049.2,92.5c0.9-0.1,2.3-0.3,3.6-0.4c4-0.5,6.5-2.8,6.9-6.7c0.5-4.3-2.8-5.6-6.1-6.8c-1.1-0.4-2.3-0.5-3.4-0.6
|
||||
c-17.1-1.6-34.1-3.6-51.2-4.7c-6.6-0.4-13.5,1.2-20.1,2.4c-1.8,0.3-4.6,2.8-4.6,4.2c0.1,2,2.1,4.2,3.8,5.8c1.2,1.2,3.3,1.8,5,2.1
|
||||
c6.9,0.9,13.8,1.7,20.8,2.2c7.6,0.5,15.3,0.5,22.9,0.9C1034.2,91.2,1041.5,91.9,1049.2,92.5z"/>
|
||||
<path class="st2" d="M2048,224c-9-5.2-18.1-10.3-27.1-15.6c-5.5-3.4-11-6.9-16-11c-2.3-1.9-3.4-5.3-5-8.1c-0.6-1-1.2-2-2-2.8
|
||||
c-18.1-18.1-36-36.4-54.6-54c-13.5-12.8-29.8-20.5-48.1-24.6c-7-1.6-13.5-5.4-20.4-7.9c-4.8-1.7-9.7-3.6-14.7-4.2
|
||||
c-13.1-1.7-14.9-0.9-14.9,13.7c0,22.6,5,44.5,10.6,66.4c3.7,14.3,6.9,28.8,9.1,43.3c1.9,12.7-1.6,24.7-9.1,35.5
|
||||
c-7.8,11.2-21.4,13.9-30.6,5.5c-7.6-6.9-12.6-15.7-12.2-26.1c0.7-18.1,2-36.2,3.6-54.2c1.3-14.4,3.8-28.7,5.2-43.1
|
||||
c1.2-12.3,1.7-24.6,2.1-36.9c0.2-6-4.6-9.7-9.2-12c-2.3-1.2-6.8-0.2-9.1,1.4c-3.4,2.4-6.5,5.9-8.3,9.7
|
||||
c-6.5,13.8-12.6,27.8-18.6,41.9c-7.5,17.5-16.8,33.6-33.8,43.7c-10.4,6.2-21.3,10.1-33.6,7.8c-9-1.6-14.8-8.6-15.3-18
|
||||
c-1-21.6,8.5-38.8,22.3-54.3c10.9-12.2,25-19.8,38.7-28.2c12.8-7.9,24-18.5,35.7-28.3c1.4-1.2,2-4.8,1.3-6.6
|
||||
c-1.7-4.1-4.9-7.6-9.9-6.7c-5.2,0.9-10.2,2.8-15.2,4.5c-18.3,6-36.8,7.2-55.5,3c-8.1-1.8-14.3-12.4-11.1-19.5
|
||||
c1.5-3.3,5.1-5.9,8.2-8.1c6.3-4.4,13.8-5.1,21.1-4.7c9.1,0.5,18.1,2.2,27.1,3.6c5.1,0.8,10,2.3,15.1,2.9c9.6,1,15.2-3.7,17.3-12.9
|
||||
c1.4-6.4,3.8-12.6,5.8-18.9c83.7,0,167.3,0,251,0C2048,74.7,2048,149.3,2048,224z"/>
|
||||
<path class="st4" d="M0,332c7.8-1.9,15.6-4.8,23.5-5.4c11.3-0.9,22.7-2.8,34,1c8.2,2.8,17,4.2,24.9,7.7c11,4.9,21.8,10.5,31.8,17.2
|
||||
c11.5,7.8,21.3,17.9,29.2,29.3c7.1,10.2,10.2,21.8,11.6,34c2.1,18.5,6.4,36.3,15,52.9c1.4,2.6,3.1,5.1,4.7,7.6
|
||||
c4.1,5.4,8.3,10.7,12.3,16.2c4.8,6.6,9.8,13,13.9,20c4.4,7.5,2.4,13.1-5.9,15.6c-6.1,1.8-12.7,2.5-19.1,2.7
|
||||
c-11.1,0.3-17.9,6.3-17.8,17.5c0.1,10.8,1.2,21.6,1.4,32.4c0.2,12.3,1.6,24.8-0.4,36.8c-3.4,21.1-18.3,33.8-40.1,37.4
|
||||
c-11.6,2-22.8,1-34.1-1.7c-29-6.9-57.1-16.6-84.9-27.3C0,528,0,430,0,332z"/>
|
||||
<path class="st1" d="M1165.2,149.6c5-12.5,12.6-23.4,24.6-29.7c19.9-10.5,31.2-28.3,42.2-46.5c4.9-8.2,4-17.2,3.8-26.2
|
||||
c-0.3-16.9-10.3-28.1-22-38.5c-3.1-2.7-5.9-5.7-8.9-8.6c23.3,0,46.7,0,70,0c-0.3,2-0.5,4-1,5.8c-2.9,10.3-5.6,20.5-0.6,31
|
||||
c0.7,1.5,1.1,3.8,0.5,5.3c-2.1,6.1,0.6,11,3.3,16c5.6,10.1,7.4,21.3,8.7,32.5c1.5,13.4,1.3,26.9-2,40.1
|
||||
c-2.5,9.9-6.1,19.3-15.1,25.4c-2.2-0.2-4.3-0.2-6.4-0.7c-11-2.4-21.9-5.3-33-7.1c-9-1.4-18.2-1.9-27.3-2c-9.9,0-19.8,1-29.6,1.7
|
||||
C1170,148.4,1167.6,149.1,1165.2,149.6z"/>
|
||||
<path class="st2" d="M1165.2,149.6c2.4-0.5,4.8-1.2,7.2-1.4c9.9-0.7,19.8-1.7,29.6-1.7c9.1,0,18.3,0.5,27.3,2
|
||||
c11.1,1.8,22,4.7,33,7.1c2.1,0.4,4.3,0.5,6.4,0.7c4.7,1.8,9.4,3.6,14.1,5.3c26.6,9.1,51,22.4,72.7,40.4
|
||||
c19.8,16.4,36.1,35.8,49.2,58c12.4,21.2,20.2,44.4,28.6,67.3c1.9,5.3,3.5,10.7,5.3,16.1c-1.5,0.3-2.9,0.6-4.4,0.8
|
||||
c-20.5,2.8-40,9.1-58.2,18.5c-23.3,12.1-41,30.9-53.3,53.9c-25.8,48.5-24.5,97.7-1.9,146.9c9.5,20.8,23.8,37.9,41.3,52.5
|
||||
c-14.4,12.3-29.8,23.1-47.2,30.8c-0.9,0.4-1.8,0.9-2.7,1.2c-15.1,5-22.9,17.4-18.9,32.9c2.9,11.5,7.3,22.7,12.1,33.6
|
||||
c6.7,15.1,11,30.4,11,47.2c0,16.2-7.2,26.8-20.5,34.7c-6,3.5-11.9,6.1-18.8,3.8c-3.8-1.3-7.4-3.6-10.8-5.8
|
||||
c-11.5-7.7-17.9-17.7-16.9-32.4c1-13.7,1.2-27.4,8.3-39.6c2.9-5,6.3-9.7,9.9-14.3c8.7-11.4,11.4-23.3,6.2-37.3
|
||||
c-5.2-14.1-21.8-18.3-32.4-7.5c-7.2,7.4-14.2,15.2-21.8,22.1c-11.1,10.1-23.9,16.3-39.6,15c-5.6-0.5-11.4,0.7-17,1.8
|
||||
c-1.9,0.4-4.2,3-4.8,5c-1.3,4.2-2.3,8.8-2,13.2c1.2,21.6,2.5,43.2,4.3,64.8c2,24.8,7.4,49,14.4,72.8c3.9,13.2,4.1,26.7-1.7,39.6
|
||||
c-5.1,11.5-14.4,18.1-26.6,20c-7.3,1.1-13.6-2.9-18.7-7.7c-13.1-12.4-17.6-27.8-14.7-45.4c4.7-29.4,9.8-58.8,14.2-88.2
|
||||
c3.5-23.7,3.4-47.5-3.2-70.8c-4-14.2-13.7-21.9-27.3-25.2c-11.8-2.8-28.4,8.6-28.9,26.6c-0.3,11-0.8,22-1.3,33
|
||||
c-0.6,12.6-10.4,19-22.8,14.1c-11.4-4.5-14-10-11.1-21c2.9-11.3,6.9-22.2,10.2-33.4c1.7-6.1,3-12.3,4.1-18.5c0.9-5.3-1.9-9-8.4-11
|
||||
c-3.5-1-7.2-1.7-10.8-1.8c-8.3-0.2-16.7,0-25,0.1c-35,2.3-70.1,4.9-104.6-4.3c-18.2-4.8-35-12.6-49.4-25c4.4-3.7,6-8.5,6-14.1
|
||||
c0-25.5,0.3-51,0.5-76.5c0-2.4,0-4.8,0-7.6c1.6,0.4,2.3,0.5,2.9,0.7c3.6,1.3,7.2,2.5,10.8,4c41.7,17.5,73.8,45.8,96.7,84.7
|
||||
c5.2,8.8,13.2,11.3,21.5,6.3c8.3-4.9,10.3-13.1,5.2-21.9c-13.7-23.8-31-44.6-52.4-61.8c-10-8.1-20.8-15.3-30.6-22.4
|
||||
c8.2-3.6,17.4-6.7,25.7-11.5c17.2-10,29.1-24.5,29.8-45.1c0.8-24-12.7-40.1-33-50.5c-19.9-10.2-41.6-9.4-63.2-7.9
|
||||
c-3.1,0.2-6.3,0.9-9.4,1.5c-21.4,4-32.6,16.7-33.1,38.6c-0.7,28.1-0.9,56.3-1.4,84.5c0,3-0.5,5.9-0.7,8.9c-2-0.3-4-0.6-5.9-0.8
|
||||
c-11.6-0.9-23.2-1.7-34.8-2.6c-2.5-10.6-5.3-21.2-7.5-31.9c-1.4-6.8-1.9-13.8-2.8-20.6c3.3,0,6.6,0,10,0.1
|
||||
c8.7,0.2,15.3-5.3,16.3-13.5c0.9-8.2-4-15-12.4-16.6c-4.2-0.8-8.6-1-12.8-1.5c0-1.3,0-2.5-0.1-3.8c1.8-6.8,3.4-13.6,5.5-20.4
|
||||
c4.4-14,10.9-27.1,19.5-39.1c0.6-0.8,0.6-2.1,0.8-3.2c10.1-0.6,20.3-1,30.4-1.9c10.2-0.9,16.7-10.2,13.9-19.5
|
||||
c-2.3-7.4-7.6-10.9-17.4-11.2c23.1-24.6,45.4-50.1,69.7-73.6c17.5-16.9,37.1-31.6,56.6-46.2c13.3-9.9,27.9-18.1,41.9-27
|
||||
c0.5-0.3,0.7-1,1.1-1.5c10.1,0.8,20.2,1.7,30.3,2.4c17.7,1.2,35.5,2.5,53.2,3.2c20.6,0.8,38.7-5.6,53.8-19.9
|
||||
c3.5-3.3,7.3-6.3,10.9-9.4c8.6-7.3,12.9-17,16-27.5C1161.3,158.4,1163.4,154,1165.2,149.6z M1101.7,504.8c-0.4,8,0.6,16,8.7,19.7
|
||||
c4.6,2,10.3,2.3,15.5,1.9c7.8-0.5,15.5-1.8,23.1-3.5c14.1-3.1,28.2-6.5,42.1-10.1c6.8-1.8,11.3-8.3,10.9-14.4
|
||||
c-0.3-6-3.4-8.9-11.9-10.4c-11.8-2.1-23.6-4.2-35.4-5.6c-11.4-1.3-22.9-2.2-34.3-2.3c-10.7-0.1-16.1,5.3-17.8,15.8
|
||||
C1102.1,498.8,1102,501.8,1101.7,504.8z M1189.8,397.7c11.5-1,20.4-1.7,29.3-2.7c1.6-0.2,3.4-1.3,4.4-2.5c3.5-4.8,1.7-9.3-4.5-12.2
|
||||
c-6.9-3.2-13.9-6.2-20.8-9.5c-8.7-4.2-17.1-9-25.8-12.9c-6.1-2.7-12.3-1.9-16.8,3.6c-3.7,4.6-7.1,9.7-10,14.9
|
||||
c-3.3,5.9-1.5,10.9,4.6,14.1c2,1.1,4.2,2.1,6.4,2.5C1168.6,394.8,1180.4,396.4,1189.8,397.7z M1161.8,649.4
|
||||
c2.5-1.2,7.9-2.7,12.2-5.8c10-7.2,19.5-15,29.1-22.8c2.3-1.9,4.9-4,5.9-6.6s1.3-6.3,0.1-8.7c-1.5-3-5-3-8.4-2
|
||||
c-13.7,4-27.5,7.8-41.3,11.8c-3,0.9-6,2-8.8,3.5c-7.2,3.9-10.3,10.9-8.5,17.9C1144.1,644,1151.1,649.4,1161.8,649.4z"/>
|
||||
<path class="st5" d="M1362.2,616c-17.5-14.5-31.8-31.7-41.3-52.5c-22.6-49.2-23.9-98.5,1.9-147c12.3-23.1,29.9-41.8,53.3-53.9
|
||||
c18.2-9.5,37.7-15.7,58.2-18.5c1.5-0.2,2.9-0.5,4.4-0.8c20.1-1.4,40-0.6,59.3,5.6c53.7,17.3,87,53.1,99,108.5
|
||||
c0.6,2.9,1.4,5.8,2.1,8.6c3,19.3,4.8,38.9,0.4,58c-2.9,12.8-7.7,25.4-13.2,37.4c-8,17.5-18.1,33.9-32.3,47.3
|
||||
c-2.3,2.2-2,4.1,0.2,6.3c6,6.2,10.3,13.3,12.6,21.7c4.1,14.8-3.6,25.5-18.9,26.2c-12.8,0.5-23.4-5.3-32-13.8
|
||||
c-7.4-7.3-13.7-10.4-25.1-7.9c-15.2,3.3-31.4,2.8-47.1,2.3c-10.6-0.3-21.1-3.5-31.7-5.3c-14.7-2.4-27.9-8.5-40.5-16.3
|
||||
C1368.2,620,1365.2,618,1362.2,616z M1449.7,395.9c-6.1,0.7-12.3,1-18.2,2.3c-33.2,6.9-58.1,25-68.9,57.6
|
||||
c-11.2,33.5-7.4,66.4,12.1,96.7c5.8,9,12.6,17.1,21.7,23.1c1.4,0.9,2.7,1.8,4.2,2.6c16.8,9.4,35.3,11.8,53.9,13.8
|
||||
c4.4,0.5,8.8,0.1,13.8,0.1c-1.2-2.3-2.1-3.9-2.9-5.5c-6.2-12.6-13-25-18.4-37.9c-5.5-13.3,2.7-24.6,16.8-26.2
|
||||
c8.6-1,15.5,3.7,20.6,10.8c4.7,6.4,9.2,13,14,19.3c5.3,7.1,10.9,14,16.6,21.2c1.5-1.3,2.6-2,3.2-2.9c5.7-8.3,11.7-16.4,17-25
|
||||
c13-20.8,16.7-43.5,12.6-67.6c-0.6-3.6-1.9-7-2.9-10.5c0.1-0.6,0.3-1.3,0.1-1.9c-6-25.5-19.4-45.6-42.6-58.7
|
||||
C1485.9,397.9,1468.4,393.8,1449.7,395.9z"/>
|
||||
<path class="st1" d="M1799.6,821.7c-3.5,3.7-6.1,7-9.3,9.7c-15.3,13-33,20.7-52.7,24.8c-17.7,3.7-35.8,6.6-52,15.3
|
||||
c-2.8,1.5-5.6,3.1-7.8,5.3c-14.5,14.1-32.4,21.1-51.8,25.1c-25.8,5.4-51.9,8.3-78.3,8.5c-29.2,0.3-57.9-2-85-14.3
|
||||
c-26.7-12.1-41.5-36.6-38.9-65.8c2.9-33.1,17.6-59,47.1-75.4c16.2-9,33.9-13.8,52.1-16.5c13.9-2.1,28.1-4,42.2-3.8
|
||||
c26.6,0.3,52.5,5.5,75.5,19.7c17,10.5,30.3,25.4,43.1,40.6c4.9,5.8,9.9,11.8,14,18.2c11.4,18,28.7,22.5,48.4,21.8
|
||||
c16.7-0.7,32.5-4.8,47.5-12.1c1-0.5,2.2-0.8,3.3-1.1C1797.3,821.3,1797.8,821.5,1799.6,821.7z M1479.5,843.4c1.6-1.7,2.2-2.5,2.9-3
|
||||
c5.2-4.1,10.6-8.1,15.6-12.4c5.3-4.5,9.3-10.1,10.8-17c1.3-6.1,0.2-11.8-4.8-15.9c-5.1-4.1-11-3.5-16.5-0.8
|
||||
c-5.8,2.7-9.8,7.1-9.9,13.8c-0.1,3,0.4,6.5,4.4,6.7c3.8,0.1,3.6-2.8,4.2-5.8c0.5-2.8,2.9-5.8,5.4-7.4c1.7-1.1,6.2-0.8,7.1,0.5
|
||||
c1.5,2.2,2.1,5.9,1.4,8.5c-1.7,7.2-7.5,11.5-12.9,15.9c-5,4.1-10.1,8.2-14.3,13c-1.8,2.1-2.8,6.3-2.1,8.9c1.1,4,5.5,3.7,9,3.2
|
||||
c8.4-1,16.8-2.3,25.2-3.3c3.3-0.4,5.6-1.4,5.2-5.1c-0.5-4-3.5-3.3-6.1-3C1496.3,841.2,1488.6,842.2,1479.5,843.4z M1573.6,843.8
|
||||
c5.5-6.5,10.8-12.3,15.4-18.6c2.4-3.2,4.3-7.2,5.3-11.1c1.4-5.4-0.5-10.4-5.3-13.5c-5.5-3.6-11.6-4.1-17.5-0.9
|
||||
c-4.9,2.7-7.6,7-7.7,12.6c0,1.2,1.4,3.5,2.3,3.5c1.7,0.1,3.6-0.8,5-1.8c0.8-0.5,0.7-2.1,1.2-3.2c1.7-4.1,6.3-5.9,10.4-4.1
|
||||
c4.2,2,5.1,5.4,2.5,9.9c-1.1,1.8-2.5,3.6-3.9,5.2c-6.4,7.4-13,14.7-19.3,22.3c-1.3,1.5-1.9,4.2-1.6,6.1c0.2,1,3.2,2.1,4.9,2.1
|
||||
c11.3,0,22.6-0.3,33.9-0.4c3.1,0,5.4-1.2,5.4-4.5c0-3.7-2.7-3.8-5.7-3.8C1590.9,843.9,1582.6,843.8,1573.6,843.8z M1643.4,827.7
|
||||
c-0.8-8.4-3.1-15.6-9-21.5c-6.8-6.6-17-5.7-22.5,2c-7.4,10.4-5.2,29.6,4.3,38.2c8,7.3,18.6,5.7,23.2-4.1
|
||||
C1641.5,837.9,1642.1,832.6,1643.4,827.7z M1553.4,828.3c-0.6-3.3-0.7-6.6-1.7-9.8c-2.3-7-6.4-12.4-14.3-13.6
|
||||
c-7-1.1-12.3,2.3-16.3,7.6c-6.6,8.7-6.2,23.4,0.3,32.3c4.6,6.3,11.1,8.2,18.5,5.6C1548,847.4,1552.9,839.2,1553.4,828.3z"/>
|
||||
<path class="st5" d="M1725.4,489.1c16.3-4.7,32.6-9.4,48.8-14.2c17.8-5.3,26.8-2.4,37,13.3c4.3,6.5,7.8,13.6,10.6,20.9
|
||||
c1.8,4.8,1.5,10.4,2.1,15.6c-2.3,4.9-6.8,7.2-11.7,6.9c-12.3-0.7-24.5-1.9-36.7-3.2c-10.9-1.2-21.7-2.7-32.5-4.4
|
||||
c-11.1-1.7-22.3-3.4-33.2-5.9c-8.6-2-9.9-9.1-4-15.8C1711.2,496.1,1718.3,492.6,1725.4,489.1z"/>
|
||||
<path class="st5" d="M1779.8,624.6c-0.6,8.3-4.4,17.9-12.2,25.4c-3.3,3.2-7.7,5.4-12.6,2.2c-10-6.6-20.2-12.9-29.9-19.9
|
||||
c-6.3-4.5-12.3-9.4-17.7-14.8c-5.5-5.5-5-12.3-0.1-17.2c3-3,6.3-2.2,9.8-1.7c13.4,1.9,26.9,3.6,40.3,5.6c4.2,0.6,8.4,1.6,12.5,2.9
|
||||
C1777,609.5,1780,614.8,1779.8,624.6z"/>
|
||||
<path class="st5" d="M1768.7,371.3c-0.4,14.6-4.6,19.4-16.5,20.5c-11.1,1-22.3,1.5-33.4,2.2c-5.8,0.4-11.6,0.8-17.4,1.2
|
||||
c-4.3,0.3-8.6,0.5-10.5-4.5c-1.8-4.7,0.5-8,4.5-10.4c12.2-7.1,24.1-14.9,36.8-21c7.1-3.4,15.6-4,23.6-5.3c2-0.3,5.4,1.1,6.3,2.8
|
||||
C1765.1,362.2,1767.2,368,1768.7,371.3z"/>
|
||||
<path class="st2" d="M1623.1,54.5c-0.2-16.3,9.7-25.1,22-20.3c3.3,1.3,6.4,3.5,9.3,5.8c9,7.2,12,24.4,6.2,34.3
|
||||
c-7.3,12.6-19.7,11.3-28.4,3C1625.5,70.9,1622.4,62.7,1623.1,54.5z"/>
|
||||
<path class="st2" d="M1680.2,218.1c0.7,7.6-4.6,14.4-12.2,16.9c-7.1,2.4-12.8-1.1-18.5-4.8c-10.2-6.8-14.4-24.1-8.9-34.6
|
||||
c5-9.6,16.3-10.1,22.8-6.5C1673.7,194.8,1680,203.7,1680.2,218.1z"/>
|
||||
<path class="st2" d="M1801.2,272.2c-1.1,8.5-3.3,16.4-12.2,20.1c-5.5,2.3-11.6-0.3-13.7-5.9c-3.3-8.9-2-17.3,3.7-24.9
|
||||
c3.4-4.6,8-6.8,13.5-5.1c4.8,1.4,7.3,5.5,8.1,10.4C1800.8,268.5,1801,270.4,1801.2,272.2z"/>
|
||||
<path class="st2" d="M1658.9,274.7c0.3,8.6-6.3,15.3-16.2,15.5c-9.1,0.2-15.4-7.8-15.4-15.3c0-9.3,7.3-16.6,16.3-16.5
|
||||
C1652.1,258.5,1659,265.9,1658.9,274.7z"/>
|
||||
<path class="st2" d="M1838.4,320c-8.3,0.1-14.8-6.7-14.9-15.4c-0.1-8.6,5.9-14.9,14.4-15.1c8.6-0.2,15.6,6.3,15.8,14.6
|
||||
C1853.8,312.5,1846.7,319.9,1838.4,320z"/>
|
||||
<path class="st2" d="M1597.4,79.8c-0.1,5.8-4.8,11.6-9.5,11.6c-5.3,0-10.1-6.2-10-12.8c0.1-6.8,4.7-12.4,9.9-12.2
|
||||
C1592.6,66.6,1597.5,73.5,1597.4,79.8z"/>
|
||||
<path class="st2" d="M1843.1,347.6c0.1-6.1,4.4-10.3,10.5-10.2c5.7,0.1,10.5,5,10.3,10.6c-0.2,5.4-5.1,10-10.4,10
|
||||
C1847.4,358,1843,353.6,1843.1,347.6z"/>
|
||||
<path class="st6" d="M414.1,410.3c0.5-2.7,1-5.4,1.5-8.1c0.9-5.1,1.8-10.2,2.5-15.3c1.2-7.9,6.5-13.1,14.1-13.9
|
||||
c7.2-0.7,13.8,3.9,16.2,11.4c3.2,10.1,6.3,20.4,9.5,30.5c0.5,1.7,1.3,3.4,2,5.1c0.2,1,0.3,2,0.6,2.9
|
||||
c14.5,42.9,31.7,84.7,51.9,125.2c0.3,0.6,0.3,1.3,0.5,1.9c1.5-1.8,1.8-2.8,1.9-3.7c2.3-16,4.4-31.9,6.7-47.9
|
||||
c3-20.9,6.1-41.8,9.1-62.6c2-13,4-26,6.1-39c1.4-8.9,7.7-13.5,17-12.9c7.4,0.5,13.4,6.7,13,15c-0.5,8.9-2.2,17.8-3.3,26.7
|
||||
c-0.5,4.1-1.1,8.2-1.7,12.4c-2.6,17.1-5.1,34.2-7.9,51.3c-4.9,30.4-9.8,60.8-15,91.1c-1,5.5-3.2,10.9-5.1,16.2
|
||||
c-2.5,6.8-7.3,11-14.7,11.7c-7.4,0.8-11.7-3.3-15-9.3c-24-44.1-45-89.6-62.4-136.6c-0.5-1.4-1.1-2.7-1.6-4.1c-0.4,0-0.9,0-1.3,0
|
||||
c-2.9,27.4-5.8,54.7-8.7,82.2c3,0.7,5.1,1.1,7.1,1.6c-6.9,0.3-6.8,0.4-7.3,7.1c-0.6,7.1-1.3,14.2-1.9,21.3
|
||||
c-0.5,6.8-0.5,13.6-1.5,20.3c-0.7,4.5-2.6,8.8-4,13.1c-8.2,5.7-14.9,6.2-21,1.4c-4.2-3.3-6.3-7.6-6-13c0.3-5.5,0.4-11,0.7-16.5
|
||||
c0.2-2.6-1-3.6-3.4-3.6c1.3-1.1,3.6-2,3.8-3.3c0.9-8.6,1.4-17.2,2-25.9c0.3-2,0.8-3.9,1-5.9c2-19.7,3.9-39.4,6-59
|
||||
c1.3-12.7,2.8-25.4,4.3-38.1c1-5.5,2.1-10.9,2.9-16.4C413.6,419.1,413.7,414.7,414.1,410.3z"/>
|
||||
<path class="st6" d="M783.2,545.5c11.6,0.8,23.2,1.7,34.8,2.6c2,0.2,4,0.5,5.9,0.8c0,8-0.1,16,0.1,24c0.1,3.9-1.3,5.3-5.2,5.2
|
||||
c-5.6,0-11.2,0.5-16.8,0.8c-1.4,0-2.7,0-4.1,0.1c-2,0-3.9,0-5.9,0c-24.1-1-48.2-1.8-72.2-3c-7-0.3-11.9-6.9-13-14.3
|
||||
c-5.2-33.4-3.7-67-2.8-100.6c0-1.7,0-3.3,0-5c0.2-4.5,0.5-9,0.7-13.5c1-9.8,2-19.6,3.1-30.4c-1.5,1.6-2.2,2.4-3.5,3.7
|
||||
c-0.2-2.1-0.3-3.5-0.4-4.8c2.7,0.1,4.2-0.8,4.2-4c0-3.1,0.6-6.3,1-9.4c2.3-19.4,11.2-28.8,30.6-30.6c18.2-1.7,36.6-2,54.8-3
|
||||
c10.6-0.5,21.3-1,31.9-1.5c9.8,0.3,15.1,3.8,17.4,11.2c2.8,9.3-3.6,18.6-13.9,19.5c-10.1,0.9-20.3,1.3-30.4,1.9
|
||||
c-18.3,0.8-36.5,1.6-54.8,2.3c-3.1,0.1-4.8,1.3-5,4.7c-0.2,3.8-1.2,7.5-1.8,11.3c-0.7,7.5-1.5,15.1-2.1,22.7c-0.2,2.9,0,5.9,0,8.8
|
||||
c0,0.4,0,0.9,0,1.3c-0.1,0.2-0.1,0.3-0.1,0.5c-0.4,4.2-0.8,8.4-1.1,12.9c13.7,0.7,26.5,1.4,39.2,2c4.3,0.5,8.6,0.6,12.8,1.5
|
||||
c8.4,1.7,13.3,8.5,12.4,16.6c-0.9,8.2-7.6,13.7-16.3,13.5c-3.3-0.1-6.6-0.1-10-0.1c-11-0.8-22-1.5-33.5-2.3
|
||||
c-0.5,17.9-1,34.7-1.2,51.5c0,0.9,1.9,2.7,3,2.7C755.3,545.3,769.2,545.4,783.2,545.5z"/>
|
||||
<path class="st4" d="M507.1,249.2c-12.4-1.9-25.6-2.4-37.8-6.3c-10.7-3.4-20.2-10.5-30.1-16.3c-4.1-2.4-7.9-5.4-11.5-8.6
|
||||
c-3.9-3.5-4-7.3-0.1-10.6c11-9.3,22.1-18.4,33.4-27.4c3.1-2.5,6.5-4.5,9.9-6.6c6.3-3.9,13-2.5,19.4-0.9c5,1.3,9.7,4,14.5,6
|
||||
c7.4,3.1,13.7,1.2,19.2-4.1c6.5-6.3,13.7-11.3,23.2-11c4.8,0.1,9.6,0.5,14.2,1.5c13.6,2.9,25.8,9.5,38.1,15.6
|
||||
c8.8,4.3,17.7,8.4,26.6,12.5c5.6,2.6,6.3,5.3,1.5,9c-15.5,12-31.3,23.6-49.1,31.8c-11.3,5.2-23.3,8.5-35.7,10.2
|
||||
C531,245.7,519.4,247.4,507.1,249.2z"/>
|
||||
<path class="st5" d="M704,411c0.1,1.3,0.2,2.6,0.4,4.8c1.2-1.3,2-2.1,3.5-3.7c-1.1,10.8-2.1,20.6-3.1,30.5
|
||||
c-9.5-0.8-19.1-1.5-28.8-2.3c-0.3,1.2-0.6,2.2-0.6,3.1c-0.1,3.3-0.1,6.6-0.1,9.9c-1,15.3-2.2,30.5-3.1,45.8
|
||||
c-2,32.5-3.8,65.1-5.9,97.7c-0.7,10.2-7.8,16.3-17,15.4c-8.7-0.9-14.3-8.5-13.7-18.2c2.3-37.5,4.5-75.1,6.7-112.6
|
||||
c0.7-11,1.3-21.9,1.9-32.9c0.3-3.1,0.7-6.2,1-9.7c-2.6-0.2-4.5-0.4-6.5-0.4c-15.7,0-31.3,0.3-47,0c-4.8-0.1-9.6-1.7-14.4-2.6
|
||||
c-7.8-10.1-5.8-21.9,4.4-26.4c1.8-0.8,3.8-1.2,5.8-1.2c37.6,0.7,75.1,1.5,112.7,2.3C701.3,410.4,702.7,410.8,704,411z"/>
|
||||
<path class="st7" d="M530.7,435.8c-3,20.9-6.1,41.8-9.1,62.6c-2.3,16-4.5,31.9-6.7,47.9c-0.1,1-0.4,1.9-1.9,3.7
|
||||
c-0.2-0.6-0.2-1.3-0.5-1.9c-20.3-40.5-37.5-82.3-52-125.2c-0.3-0.9-0.4-1.9-0.6-2.9c6.3,1.6,12.6,3.3,19,4.9c10,2.5,20,5,30,7.1
|
||||
C516.2,433.5,523.5,434.5,530.7,435.8z"/>
|
||||
<path class="st8" d="M577.2,435.6c4.8,0.9,9.6,2.5,14.4,2.6c15.7,0.3,31.3,0,47,0c2,0,3.9,0.2,6.5,0.4c-0.4,3.5-0.7,6.6-1,9.7
|
||||
c-0.2-0.1-0.3-0.2-0.3-0.4c0.2-8.3,0.2-8.3-8.2-8.3c-12.9,0-25.8-0.1-38.8,0.1c-1.6,0-3.1,1.4-4.7,2.1c-3.7-0.6-7.4-1.2-11.1-1.8
|
||||
C579.8,438.6,578.5,437.1,577.2,435.6z"/>
|
||||
<ellipse class="st9" cx="619.9" cy="406.5" rx="36.9" ry="0.3"/>
|
||||
<path class="st5" d="M398.8,542.9c-0.6,8.6-1.1,17.3-2,25.9c-0.1,1.2-2.5,2.2-3.8,3.3c-31.3,3.5-62.5,7-93.7,10.6
|
||||
c-6.1,0.7-11.7,0-15.8-5.2c-3.6-4.7-3.6-9.9-1.4-15.1c2.2-5.1,6.4-7.3,11.7-8.1c15-2.2,29.9-4.7,44.9-6.8c3.5-0.5,4.9-1.6,4.6-5.3
|
||||
c-0.5-6.1-0.4-12.3-0.6-18.5c-0.3-10.5-0.6-21.1-0.9-31.6c0-15,0-29.9,0-45.6c-8.4,0.8-15.6,1.4-22.8,2c-8,0.8-15.9,1.6-23.9,2.4
|
||||
c-9,0.9-15.8-4.5-16.8-13.1c-0.9-7.6,4.9-14.5,13.6-15.6c9.6-1.2,19.2-1.9,28.8-2.9c23.2-2.5,46.3-5.1,69.5-7.5
|
||||
c7.9-0.8,15.9-0.9,23.9-1.4c-0.4,4.4-0.6,8.8-1.2,13.1c-0.8,5.5-1.9,10.9-2.9,16.4c-6,0.6-12,1.1-18.1,1.7
|
||||
c-7.2,0.8-14.4,1.5-21.5,2.3c0,6.9,0,13,0,19.1c0,0.5,0,0.9,0,1.4c0.1,1,0.3,2,0.4,3c0.5,25.5,1,51,1.5,76.9
|
||||
C381.6,543.7,390.2,543.3,398.8,542.9z"/>
|
||||
<path class="st5" d="M458,775.8c-7,0.9-14.1,1.6-21.1,2.8c-9,1.5-14.2,8.6-20.1,14.5c-15.1,15-30.7,29.5-49.4,39.9
|
||||
c-7.4,4.1-15.5,7.2-24.5,7.1c-19.8-0.2-39.5,0.2-59.3-0.4c-9.5-0.3-19-2.5-28.5-3.9c-6.4-0.9-12.1,1-17.3,4.6
|
||||
c-6.6,4.6-13.1,9.4-19.6,14.1c-1,0.7-2.2,1.3-3.3,1.9c0.8-1.6,1.2-3.5,2.3-4.8c12.3-13.4,25.1-26.2,36.8-40
|
||||
c8.7-10.2,14.7-22.9,24-32.4c36.2-36.7,93.7-57.4,149.7-23c6.9,4.3,13.5,9.5,21,12.4c7,2.8,14.9,3.1,22.4,4.5
|
||||
c0.2,0.2,0.4,0.4,0.5,0.6c-0.1,0.1-0.3,0.2-0.4,0.2C466.8,774.6,462.4,775.2,458,775.8z M382.2,792c0.4-0.2,0.9-0.3,1.3-0.5
|
||||
c-2.3-7.4-3.5-15.3-6.9-22.1c-13.3-26.7-47.7-29.8-65.8-6.4c-13.2,17.1-12.6,42.7,1.4,59.2c13.9,16.4,37,18.7,53.6,5.1
|
||||
C377,818.3,382,806.2,382.2,792z"/>
|
||||
<path class="st3" d="M611.2,773.2c2.8-3.4,5.3-7.1,8.6-10c7.3-6.5,14.7-3.7,16.4,5.9c1.5,9,2.7,18,4,27c-2.2,14.4-4,28.9-6.5,43.2
|
||||
c-1.3,7.1-5.6,10.2-12.1,8.4c-3.2-0.9-6.3-4.1-8.4-7c-5.3-7.5-8-15.9-7.3-25.3c0.8-10.8,1.2-21.5,2.1-32.3
|
||||
C608.3,779.7,610.1,776.5,611.2,773.2z"/>
|
||||
<path class="st3" d="M588.9,800c0.1,9.3-1.1,18.2-5.3,26.3c-1.8,3.6-5,7.7-8.4,8.8c-2,0.6-6.2-4-8.5-6.9c-4.5-5.8-4.9-12.9-5-20
|
||||
c-0.3-12.7-0.2-25.4,4.9-37.3c1.4-3.3,4.4-6.3,7.4-8.4c4.6-3.2,9.9-0.7,10.7,4.9C586.3,778.3,587.5,789.2,588.9,800z"/>
|
||||
<path class="st3" d="M657.1,812.9c1.7-9.8,3.3-19.5,5.1-29.3c0.9-5,4.8-7,9.3-7.4c4.6-0.4,5.8,3.6,6.5,6.8
|
||||
c3.6,16.1,6.7,32.3,3.8,48.8c-0.8,4.8-3.3,9.2-5,13.8c-12.3,4.9-14.9,3.8-17.4-9.3C657.9,828.8,657.8,820.8,657.1,812.9z"/>
|
||||
<path class="st3" d="M548.6,808c0.3,6.1,0,10.2-4.1,12.8c-3.5,2.2-6.5,1.6-7.1-2.4c-1.2-7.9-1.9-15.9-2.3-24
|
||||
c-0.1-1.5,2-4.2,3.5-4.5c1.6-0.4,4,1,5.5,2.3C549.7,796.9,547.7,803.8,548.6,808z"/>
|
||||
<path class="st7" d="M341.8,491.9c0.3,10.5,0.6,21.1,0.9,31.6c-6.3-6.6-12.6-13.3-18.8-19.9c-0.7-0.7-1.2-1.5-1.9-2.2
|
||||
C328.6,498.2,335.3,495.1,341.8,491.9z"/>
|
||||
<path class="st6" d="M458,775.8c4.4-0.6,8.8-1.2,13.2-1.8c0.1,0,0.3-0.2,0.4-0.2c-0.2-0.2-0.4-0.4-0.5-0.6c5.2-0.7,5.7-0.3,4.6,2.9
|
||||
C469.8,775.9,463.9,775.8,458,775.8z"/>
|
||||
<path class="st5" d="M802.1,578.9c5.6-0.3,11.2-0.8,16.8-0.8c3.9,0,5.3-1.3,5.2-5.2c-0.2-8-0.1-16-0.1-24c0.3-3,0.7-5.9,0.7-8.9
|
||||
c0.5-28.2,0.7-56.3,1.4-84.5c0.5-21.9,11.7-34.6,33.1-38.6c3.1-0.6,6.2-1.2,9.4-1.5c21.6-1.5,43.2-2.4,63.2,7.9
|
||||
c20.3,10.4,33.8,26.5,33,50.5c-0.7,20.6-12.6,35.1-29.8,45.1c-8.3,4.8-17.5,7.9-25.7,11.5c9.8,7.1,20.5,14.3,30.6,22.4
|
||||
c21.4,17.2,38.7,38,52.4,61.8c5.1,8.9,3.1,17-5.2,21.9s-16.3,2.5-21.5-6.3c-22.9-38.9-55.1-67.2-96.7-84.7c-3.5-1.5-7.2-2.7-10.8-4
|
||||
c-0.6-0.2-1.3-0.3-2.9-0.7c0,2.8,0,5.2,0,7.6c-0.2,25.5-0.4,51-0.5,76.5c0,5.7-1.6,10.5-6,14.1c-4.7,2.5-9.6,3.5-14.8,1.9
|
||||
c-7.1-2.2-10.4-7.7-10-16.8c0.1-0.1,0.2-0.2,0.2-0.3c0-0.2-0.1-0.5-0.2-0.7c-0.1-2.7-0.2-5.4-0.3-8.1l0.3,0.1
|
||||
c0.1-0.1,0.3-0.2,0.3-0.3c0-0.3-0.1-0.5-0.2-0.7c0-2,0-4,0-6c0-5.3,0.1-10.6,0.1-16c-0.1-4-0.2-8-0.3-12c-1.3-0.1-2.6-0.2-4-0.3
|
||||
c-0.7,0-1.4,0-2.1,0c-0.6,0-1.3,0-1.9,0c-2.6,0-5.2,0-7.8,0.1C806.2,579.4,804.1,579.2,802.1,578.9z M856.9,508.1
|
||||
c1.9-0.3,4.3-0.6,6.5-1.1c15.3-3.3,30.6-6.3,45.8-10c8-2,15-6.3,20.3-13c5.7-7.4,6-15.4,0.6-23.1c-4.5-6.4-10.8-10.5-18.2-12.5
|
||||
c-16.6-4.5-33.4-2.9-50.1-0.4c-3.2,0.5-5,2.1-5,5.6C856.9,471.5,856.9,489.5,856.9,508.1z"/>
|
||||
<path class="st2" d="M808.2,579.7c2.6,0,5.2,0,7.8-0.1c0.6,0,1.3,0,1.9,0c0.7,0,1.4,0,2.1,0c1.3,0.1,2.6,0.2,4,0.3
|
||||
c0.1,4,0.2,8,0.3,12c0,5.3-0.1,10.6-0.1,16c0,2,0,4,0,6c0,0.3,0,0.7-0.1,1l-0.3-0.1c-4.7-5.7-9.8-11.2-14.1-17.2
|
||||
c-3.9-5.3-7-11.2-10.8-17.4C802.7,580,805.4,579.9,808.2,579.7z"/>
|
||||
<path class="st5" d="M428.1,570.3c0.6-7.1,1.3-14.2,1.9-21.3c0.5-6.7,0.5-6.7,7.3-7.1c6.9,2,10.2,7,9.7,14.7
|
||||
c-0.4,6.9-5.4,12.6-11.9,13.4C432.7,570.2,430.4,570.2,428.1,570.3z"/>
|
||||
<path class="st1" d="M675.2,453.2c0-3.3,0-6.6,0.1-9.9c0-1,0.4-1.9,0.6-3.1c9.7,0.8,19.2,1.5,28.8,2.3c-0.2,4.5-0.5,9-0.7,13.5
|
||||
C694.4,455.1,684.8,454.1,675.2,453.2z"/>
|
||||
<path class="st3" d="M719.8,815.2c1,5.3-1,8.7-5.7,10.4c-5.5,1.9-9.6-0.7-9.9-6.5c-0.1-2.8,0.1-5.7,0.8-8.3
|
||||
c1.6-6.1,4.1-7.8,9.9-6.8c4.6,0.9,4.3,5.1,4.9,8.5C719.9,813.5,719.8,814.5,719.8,815.2z"/>
|
||||
<path class="st1" d="M592.2,441.9c1.6-0.8,3.1-2.1,4.7-2.1c12.9-0.2,25.8-0.1,38.8-0.1c8.4,0,8.4,0,8.2,8.3
|
||||
c-9.3-1.1-18.7-2.1-28-3.2C607.9,443.8,600,442.8,592.2,441.9z"/>
|
||||
<path class="st5" d="M792.1,578.9c2,0,3.9,0,5.9,0C796,578.9,794,578.9,792.1,578.9z"/>
|
||||
<path class="st6" d="M824.1,623c0.1,0.2,0.2,0.5,0.2,0.7c0,0.1-0.2,0.2-0.2,0.3C824.1,623.7,824.1,623.3,824.1,623z"/>
|
||||
<path class="st3" d="M1865.1,705.5c-0.3,6.1-2.5,10.8-6.7,14.5c-3.3,3-7.3,3.1-11.1,1.3c-4.4-2-6.5-6.1-5.8-10.6
|
||||
c0.7-4.6,2.4-9.2,4.4-13.5c1.9-4.1,5.8-5.9,10.4-5.1c4.3,0.8,6.9,3.8,7.9,8C1864.6,702,1864.8,704,1865.1,705.5z"/>
|
||||
<path class="st1" d="M1064.2,171.7c-9.4-1.4-18.1-2.9-26.8-4c-23.5-2.8-47-5.2-70.4-8c-7.1-0.9-14.1-2.3-21.1-3.9
|
||||
c-5.7-1.3-9.3-5.8-9.3-10.9c0-5,3.6-9.5,9.3-10.9c10-2.6,19.9-0.9,29.7,1.2c17.2,3.6,34.2,8.7,52,9.2c12.6,0.4,25.3,1.4,37.9,2.6
|
||||
c4.2,0.4,8.6,1.5,12.4,3.2c3.9,1.8,6.5,5.2,6.1,10c-0.4,4.5-3.2,7.4-7.2,8.7C1072.6,170.3,1068.1,170.9,1064.2,171.7z"/>
|
||||
<path class="st1" d="M985.4,103.4c18.1,1.4,36.1,2.9,54.2,4.2c6.1,0.4,12.3-0.1,18.4,0.7c4.7,0.6,9.4,2,13.7,4c2,0.9,4.2,4.1,4,6.1
|
||||
c-0.1,2-2.8,4.7-4.9,5.4c-4,1.4-8.5,2.2-12.7,2.1c-12.4-0.4-24.8-1.6-37.3-2.3c-18.8-1-37.5-1.7-56.3-2.7c-2.6-0.1-5.3-0.6-7.8-1.4
|
||||
c-4.3-1.4-6.4-4.9-6.2-9.2c0.2-4.4,3.8-5.6,7.4-5.9c6.3-0.5,12.6-0.7,18.9-0.8c2.8-0.1,5.7,0.3,8.5,0.4
|
||||
C985.4,103.8,985.4,103.6,985.4,103.4z"/>
|
||||
<path class="st1" d="M1049.2,92.5c-7.7-0.6-15-1.2-22.3-1.6c-7.6-0.4-15.3-0.4-22.9-0.9c-6.9-0.5-13.9-1.3-20.8-2.2
|
||||
c-1.8-0.2-3.8-0.9-5-2.1c-1.7-1.6-3.7-3.8-3.8-5.8c-0.1-1.4,2.7-3.8,4.6-4.2c6.6-1.2,13.4-2.8,20.1-2.4c17.1,1,34.1,3,51.2,4.7
|
||||
c1.2,0.1,2.3,0.3,3.4,0.6c3.2,1.1,6.6,2.5,6.1,6.8c-0.5,3.9-2.9,6.2-6.9,6.7C1051.5,92.2,1050.1,92.3,1049.2,92.5z"/>
|
||||
<path class="st5" d="M1101.7,504.8c0.3-3,0.4-6,0.8-8.9c1.7-10.5,7.1-15.9,17.8-15.8c11.4,0.1,22.9,1,34.3,2.3
|
||||
c11.9,1.4,23.7,3.5,35.4,5.6c8.5,1.5,11.6,4.4,11.9,10.4c0.3,6.2-4.1,12.7-10.9,14.4c-14,3.7-28,7-42.1,10.1
|
||||
c-7.6,1.7-15.4,3-23.1,3.5c-5.1,0.3-10.9,0.1-15.5-1.9C1102.2,520.8,1101.3,512.8,1101.7,504.8z"/>
|
||||
<path class="st5" d="M1189.8,397.7c-9.4-1.3-21.3-2.9-33.1-4.8c-2.2-0.3-4.4-1.4-6.4-2.5c-6.1-3.3-7.9-8.2-4.6-14.1
|
||||
c2.9-5.2,6.2-10.2,10-14.9c4.4-5.5,10.7-6.3,16.8-3.6c8.8,3.9,17.2,8.6,25.8,12.9c6.8,3.3,13.9,6.3,20.8,9.5
|
||||
c6.2,2.8,7.9,7.4,4.5,12.2c-0.9,1.3-2.8,2.4-4.4,2.5C1210.3,396,1201.3,396.7,1189.8,397.7z"/>
|
||||
<path class="st7" d="M783.2,545.5c-14-0.2-28-0.3-41.9-0.6c-1.1,0-3-1.8-3-2.7c0.3-16.8,0.8-33.6,1.2-51.5
|
||||
c11.5,0.8,22.5,1.6,33.5,2.3c0.9,6.9,1.4,13.9,2.8,20.6C777.9,524.3,780.7,534.9,783.2,545.5z"/>
|
||||
<path class="st1" d="M738.1,413.4c0.6-3.8,1.5-7.5,1.8-11.3c0.2-3.4,1.9-4.6,5-4.7c18.3-0.8,36.5-1.5,54.8-2.3
|
||||
c-0.3,1.1-0.2,2.4-0.8,3.2c-8.6,12-15,25.1-19.5,39.1c-2.1,6.7-3.7,13.6-5.5,20.4c-8.8,0.1-17.6,0.3-26.4,0.3
|
||||
c-10.9,0-10.9,0-11.6-10.9c0-0.2-0.1-0.3-0.1-0.5c-0.1-0.2,0-0.4,0.1-0.5c2.8-0.1,5.5-0.2,8.3-0.3c3.1,0.2,6.3,0.4,9.4,0.5
|
||||
c8.3,0.3,14.8-5.5,15.9-13.9c0.9-7.6-4.7-15-12.8-16.3c-4.9-0.8-9.8-1.2-14.8-1.7c-0.6,0-1.3-0.1-1.9-0.1
|
||||
C739.4,413.9,738.8,413.7,738.1,413.4z"/>
|
||||
<path class="st5" d="M1161.8,649.4c-10.6-0.1-17.7-5.4-19.6-12.7c-1.8-7.1,1.3-14,8.5-17.9c2.8-1.5,5.8-2.6,8.8-3.5
|
||||
c13.7-4,27.5-7.7,41.3-11.8c3.4-1,6.9-1,8.4,2c1.2,2.4,0.9,6.1-0.1,8.7c-1.1,2.6-3.6,4.7-5.9,6.6c-9.6,7.7-19.1,15.6-29.1,22.8
|
||||
C1169.7,646.7,1164.3,648.3,1161.8,649.4z"/>
|
||||
<path class="st1" d="M735.9,446.7c0,0.2,0.1,0.3,0.1,0.5c0.6,11,0.6,11,11.6,10.9c8.8,0,17.6-0.2,26.4-0.3c0,1.3,0.1,2.5,0.1,3.8
|
||||
c-12.8-0.7-25.5-1.3-39.3-2C735.1,455.1,735.5,450.9,735.9,446.7z"/>
|
||||
<path class="st10" d="M1544.7,467.8c1,3.5,2.3,6.9,2.9,10.5c4.1,24,0.4,46.7-12.6,67.6c-5.3,8.5-11.3,16.7-17,25
|
||||
c-0.6,0.9-1.7,1.5-3.2,2.9c-5.6-7.2-11.2-14.1-16.6-21.2c-4.8-6.3-9.3-12.9-14-19.3c-5.1-7-12-11.7-20.6-10.8
|
||||
c-14.2,1.6-22.4,12.9-16.8,26.2c5.4,12.9,12.2,25.3,18.4,37.9c0.8,1.6,1.7,3.1,2.9,5.5c-5,0-9.5,0.4-13.8-0.1
|
||||
c-18.6-2-37.2-4.4-53.9-13.8c-1.4-0.8-2.8-1.8-4.2-2.6c6.3-10.5,10.3-21.8,12.1-33.9c1.5-10.1,2.6-20.3,3.9-30.5
|
||||
c6.6-1.9,13.5-3.3,19.9-5.8c21.8-8.5,43.3-17.7,65.2-26.1C1512.5,473.3,1528.2,468.8,1544.7,467.8z"/>
|
||||
<path class="st2" d="M1412.2,511.1c-1.3,10.2-2.4,20.4-3.9,30.5c-1.8,12-5.7,23.4-12.1,33.9c-9-6-15.8-14.1-21.7-23.1
|
||||
c-19.5-30.3-23.3-63.1-12.1-96.6c10.8-32.6,35.8-50.7,68.9-57.6c6-1.2,12.1-1.5,18.2-2.3c-0.1,3.6-0.3,7.3-0.4,11
|
||||
c-0.4,22.8-6.9,43.4-21,61.6C1418.6,481,1413.3,495.3,1412.2,511.1z"/>
|
||||
<path class="st0" d="M1412.2,511.1c1.1-15.8,6.3-30.1,16.1-42.6c14.1-18.1,20.6-38.8,21-61.6c0.1-3.6,0.3-7.3,0.4-11
|
||||
c18.8-2.1,36.2,2,52.6,11.3c23.2,13.1,36.6,33.1,42.6,58.7c0.1,0.6-0.1,1.3-0.1,1.9c-16.5,1-32.2,5.5-47.5,11.4
|
||||
c-21.8,8.4-43.4,17.6-65.2,26.1C1425.7,507.8,1418.8,509.2,1412.2,511.1z"/>
|
||||
<path class="st6" d="M1479.5,843.4c9.1-1.2,16.8-2.2,24.6-3.2c2.6-0.3,5.7-1,6.1,3c0.4,3.8-1.9,4.7-5.2,5.1
|
||||
c-8.4,1-16.8,2.3-25.2,3.3c-3.5,0.4-7.9,0.8-9-3.2c-0.7-2.7,0.3-6.8,2.1-8.9c4.2-4.8,9.3-8.9,14.3-13c5.4-4.5,11.2-8.7,12.9-15.9
|
||||
c0.6-2.7,0.1-6.4-1.4-8.5c-0.9-1.3-5.4-1.6-7.1-0.5c-2.4,1.6-4.8,4.6-5.4,7.4c-0.6,3-0.5,6-4.2,5.8c-4-0.1-4.5-3.7-4.4-6.7
|
||||
c0.2-6.7,4.2-11.1,9.9-13.8c5.6-2.7,11.4-3.3,16.5,0.8c5,4,6.1,9.8,4.8,15.9c-1.5,6.9-5.4,12.5-10.8,17
|
||||
c-5.1,4.3-10.4,8.2-15.6,12.4C1481.6,840.9,1481.1,841.7,1479.5,843.4z"/>
|
||||
<path class="st6" d="M1573.6,843.8c9,0,17.3,0.1,25.6,0c3,0,5.7,0.2,5.7,3.8c0,3.3-2.3,4.4-5.4,4.5c-11.3,0.1-22.6,0.4-33.9,0.4
|
||||
c-1.7,0-4.8-1.1-4.9-2.1c-0.4-1.9,0.3-4.6,1.6-6.1c6.2-7.6,12.8-14.8,19.3-22.3c1.4-1.6,2.8-3.3,3.9-5.2c2.7-4.5,1.8-7.9-2.5-9.9
|
||||
c-4-1.9-8.7,0-10.4,4.1c-0.4,1.1-0.4,2.7-1.2,3.2c-1.5,1-3.3,1.9-5,1.8c-0.8,0-2.3-2.3-2.3-3.5c0.1-5.6,2.8-9.9,7.7-12.6
|
||||
c5.9-3.3,12-2.7,17.5,0.9c4.8,3.1,6.7,8.1,5.3,13.5c-1,3.9-2.9,7.8-5.3,11.1C1584.4,831.5,1579.1,837.3,1573.6,843.8z"/>
|
||||
<path class="st6" d="M1643.4,827.7c-1.3,4.9-1.9,10.2-4,14.7c-4.6,9.8-15.2,11.4-23.2,4.1c-9.5-8.6-11.7-27.8-4.3-38.2
|
||||
c5.4-7.7,15.7-8.7,22.5-2C1640.3,812.1,1642.6,819.3,1643.4,827.7z M1634.8,828.1c-0.2-6-1.6-11.3-5.8-15.6
|
||||
c-3.6-3.6-8-3.1-10.9,1.1c-4.6,6.5-2,22.4,4.4,27.1c4.3,3.1,8.5,2.1,10.3-2.9C1633.8,834.7,1634.1,831.3,1634.8,828.1z"/>
|
||||
<path class="st6" d="M1553.4,828.3c-0.5,10.9-5.4,19.1-13.5,22.1c-7.3,2.7-13.8,0.7-18.5-5.6c-6.6-8.9-6.9-23.6-0.3-32.3
|
||||
c4-5.3,9.3-8.7,16.3-7.6c7.8,1.2,12,6.6,14.3,13.6C1552.6,821.6,1552.8,825,1553.4,828.3z M1545.2,828.5c-0.7-3.7-0.9-6.2-1.6-8.6
|
||||
c-1-3.8-3.5-7.3-7.4-6.9c-3.2,0.3-7.2,2.4-8.9,5c-4.4,6.6-3.8,13.9,0.3,20.7c3.4,5.7,10.4,6,13.8,0.3
|
||||
C1543.4,835.6,1544.2,831.4,1545.2,828.5z"/>
|
||||
<path class="st7" d="M392,441.5c6-0.6,12-1.1,18.1-1.7c-1.4,12.7-2.9,25.4-4.3,38.1c-2,19.7-4,39.4-6,59c-0.2,2-0.7,3.9-1,5.9
|
||||
c-8.6,0.4-17.2,0.9-26.5,1.3c-0.5-25.9-1-51.4-1.5-76.9C377.9,458.7,384.9,450.1,392,441.5z"/>
|
||||
<path class="st5" d="M738.1,413.4c0.6,0.3,1.3,0.5,1.9,0.8c0.6,0,1.3,0.1,1.9,0.1c4.9,0.6,9.9,0.9,14.8,1.7
|
||||
c8.1,1.3,13.7,8.7,12.8,16.3c-1,8.4-7.6,14.1-15.9,13.9c-3.2-0.1-6.3-0.3-9.4-0.5c-2.7-0.3-5.5-0.7-8.2-1c0-2.9-0.2-5.9,0-8.8
|
||||
C736.6,428.5,737.4,421,738.1,413.4z"/>
|
||||
<path class="st8" d="M736,444.9c2.7,0.3,5.5,0.7,8.2,1c-2.8,0.1-5.5,0.2-8.3,0.3C736,445.7,736,445.3,736,444.9z"/>
|
||||
<path class="st2" d="M392,441.5c-7,8.6-14.1,17.2-21.1,25.8c-0.1-1-0.3-2-0.4-3c0-0.5,0-0.9,0-1.4c0-6.1,0-12.2,0-19.1
|
||||
C377.6,443,384.8,442.3,392,441.5z"/>
|
||||
<path class="st11" d="M370.4,462.9c0,0.5,0,0.9,0,1.4C370.4,463.8,370.4,463.4,370.4,462.9z"/>
|
||||
<path class="st4" d="M382.2,792c-0.3,14.2-5.2,26.3-16.4,35.5c-16.6,13.5-39.7,11.2-53.6-5.1c-14-16.5-14.6-42.1-1.4-59.2
|
||||
c18-23.4,52.5-20.3,65.8,6.4c3.4,6.8,4.7,14.7,6.9,22.1C383.1,791.7,382.7,791.8,382.2,792z"/>
|
||||
<path class="st2" d="M856.9,508.1c0-18.6,0-36.6,0-54.5c0-3.5,1.8-5.1,5-5.6c16.7-2.5,33.5-4.1,50.1,0.4c7.4,2,13.7,6,18.2,12.5
|
||||
c5.4,7.7,5.1,15.7-0.6,23.1c-5.2,6.7-12.2,11-20.3,13c-15.2,3.8-30.5,6.8-45.8,10C861.1,507.4,858.8,507.7,856.9,508.1z"/>
|
||||
<path class="st6" d="M824.2,608c0-5.3,0.1-10.6,0.1-16C824.2,597.3,824.2,602.7,824.2,608z"/>
|
||||
<path class="st6" d="M824,580c-1.3-0.1-2.6-0.2-4-0.3C821.3,579.8,822.7,579.9,824,580z"/>
|
||||
<path class="st6" d="M818,579.7c-0.6,0-1.3,0-1.9,0C816.7,579.6,817.3,579.6,818,579.7z"/>
|
||||
<path class="st6" d="M824.1,615c0-0.3,0-0.7,0.1-1c0.1,0.2,0.2,0.5,0.2,0.7C824.3,614.8,824.2,614.9,824.1,615z"/>
|
||||
<path class="st6" d="M741.9,414.3c-0.6,0-1.3-0.1-1.9-0.1C740.7,414.2,741.3,414.3,741.9,414.3z"/>
|
||||
<path class="st1" d="M1634.8,828.1c-0.7,3.2-1,6.6-2.1,9.7c-1.8,5-6,6.1-10.3,2.9c-6.4-4.7-9-20.6-4.4-27.1c3-4.2,7.4-4.7,10.9-1.1
|
||||
C1633.2,816.8,1634.5,822.2,1634.8,828.1z"/>
|
||||
<path class="st1" d="M1545.2,828.5c-1,2.9-1.8,7.1-3.8,10.5c-3.4,5.7-10.4,5.3-13.8-0.3c-4.1-6.8-4.7-14-0.3-20.7
|
||||
c1.8-2.6,5.8-4.7,8.9-5c3.9-0.4,6.3,3.1,7.4,6.9C1544.2,822.4,1544.5,824.8,1545.2,828.5z"/>
|
||||
<path class="st12" d="M86.1,467c0,0,20.4,14.8,41.9,0"/>
|
||||
<path class="st13" d="M426.5,212.6c0,0,28.9-12.5,48.3-12.3c19.4,0.3,38.3,2.3,71.5-6.1c33.2-8.4,81.8,3.6,81.8,3.6"/>
|
||||
<path class="st3" d="M2021.8,852.8c-39.7,16.8-79.3,33.6-119,50.3c-18.1,7.6-37.2,8.5-56.5,6.8c-2.1-0.2-5-2.3-5.8-4.2
|
||||
c-3.8-8.3-6.6-17.1-10.6-25.3c-2.2-4.4-5.6-8.6-9.3-11.8c-5.7-4.9-6.3-8.5-0.5-13.3c3.7-3,8-5.4,11.8-8.4
|
||||
c10.7-8.4,10.4-27.3-0.7-35.5c-7.7-5.7-16.5-7.6-25.9-7.3c-6.3,0.2-6.5-0.2-5.1-6.5c1.2-5.5,2.2-11,3.1-16.6
|
||||
c0.6-3.9-1.3-6.7-4.9-8.3s-7.4-3.1-10.9-4.9c-2.6-1.3-5.5-2.7-7.6-4.7c-5.4-5.1-5.1-9.8,0.5-14.6c7.4-6.4,14.8-12.9,22.4-19.1
|
||||
c12.8-10.3,16.6-24.6,19.2-39.9c2.7-16.1,5.8-32.1,9.9-47.8c6.5-24.9,22.7-42.9,44.7-55.2c13.4-7.5,28.2-12.6,42.3-18.7
|
||||
c-4.3-2.3-8.5-4.8-13-6.9c-23.4-10.7-46.9-21.3-70.4-31.9c-3.8-1.7-7.7-3-11.5-4.6c-2.3,4.9-6.8,7.2-11.7,6.9
|
||||
c-12.3-0.7-24.5-1.9-36.7-3.2c-10.9-1.2-21.7-2.7-32.5-4.4c-11.1-1.7-22.3-3.4-33.2-5.9c-8.6-2-9.9-9.1-4-15.8
|
||||
c5.5-6.2,12.5-9.6,19.6-13.2c-10.4-3.1-20.8-6.4-31.3-9.1c-10.9-2.8-21.8-5.6-32.8-7.5c-12.4-2.1-25-3.2-37.5-4.5
|
||||
c-8.2-0.8-16.5-1.3-24.7-1.9c3,19.3,4.8,38.9,0.4,58c-2.9,12.8-7.7,25.4-13.2,37.4c-8,17.5-18.1,33.9-32.3,47.3
|
||||
c-2.3,2.2-2,4.1,0.2,6.3c6,6.2,10.3,13.3,12.6,21.7c4.1,14.8-3.6,25.6-18.9,26.2c-12.8,0.5-23.4-5.3-32-13.8
|
||||
c-7.4-7.3-13.7-10.4-25.1-7.9c-15.2,3.3-31.4,2.8-47.1,2.3c-10.6-0.3-21.1-3.5-31.7-5.3c-14.7-2.4-27.9-8.5-40.5-16.3
|
||||
c-3.1-1.9-6.1-4-9.1-6c-14.4,12.3-29.7,23.2-47.2,30.8c-0.9,0.4-1.8,0.9-2.7,1.2c-15.1,5-22.9,17.4-18.9,32.9
|
||||
c2.9,11.5,7.3,22.7,12.1,33.6c6.7,15.1,11,30.4,11,47.2c0,16.2-7.2,26.8-20.5,34.7c-6,3.5-11.9,6.2-18.8,3.8
|
||||
c-3.8-1.3-7.4-3.6-10.8-5.8c-11.5-7.7-17.9-17.7-16.9-32.4c1-13.7,1.2-27.4,8.3-39.6c2.9-5,6.4-9.7,9.9-14.3
|
||||
c8.7-11.4,11.4-23.3,6.2-37.3c-5.2-14.1-21.8-18.3-32.4-7.5c-7.2,7.4-14.1,15.2-21.8,22.1c-11.1,10.1-23.9,16.3-39.6,15
|
||||
c-5.6-0.5-11.4,0.7-17,1.8c-1.9,0.4-4.2,3-4.8,5c-1.2,4.2-2.2,8.8-2,13.2c1.2,21.6,2.5,43.2,4.3,64.8c2,24.8,7.4,49,14.4,72.8
|
||||
c3.9,13.2,4.1,26.7-1.7,39.6c-5.1,11.5-14.4,18.1-26.6,20c-7.3,1.1-13.6-2.9-18.7-7.7c-13.1-12.4-17.5-27.8-14.7-45.4
|
||||
c4.7-29.4,9.8-58.7,14.2-88.2c3.5-23.7,3.4-47.4-3.2-70.8c-4-14.2-13.7-21.9-27.3-25.2c-11.8-2.9-28.4,8.6-28.9,26.6
|
||||
c-0.3,11-0.8,22-1.3,33c-0.5,12.6-10.4,19-22.8,14.1c-11.4-4.5-13.9-10-11.1-21c2.9-11.3,7-22.2,10.2-33.4c1.7-6.1,3-12.3,4.1-18.5
|
||||
c0.9-5.3-1.9-9-8.4-11c-3.5-1-7.1-1.8-10.8-1.8c-8.3-0.2-16.7,0-25,0.1c1.5,8.8,3.6,17.6,4.4,26.4c2,20.9-2.4,41-8.3,60.9
|
||||
c-4.7,16-12.6,30.1-23,43c-2.8,3.4-5.7,6.7-8.5,10c-10.5,12.6-15.2,27.8-18.8,43.3c-5.8,24.9-5.2,50-0.2,74.9
|
||||
c3.5,17.5,10.9,33.7,19.9,49.2c1.4,2.5,2.7,5,3.9,7.5c21-0.5,42-2.4,62.4-6.3c122.6-23,268.1,6.1,287.2-4.6
|
||||
c19.2-10.7,27.6-26,96.5-2.3s127.9-32.9,271.2-35.2c143.2-2.3,115.7,42.1,140.2,36.8s20.8-43.5,93-39.1s124.6,28.9,125.3,30.6V987
|
||||
l0,0c0-48.3,0-96.7,0-145C2039.3,845.6,2030.5,849.2,2021.8,852.8z M1707.4,600.3c3-3,6.3-2.2,9.8-1.7c13.4,1.9,26.9,3.6,40.3,5.6
|
||||
c4.2,0.6,8.4,1.6,12.5,2.9c7.1,2.3,10.1,7.7,9.9,17.5c-0.7,8.3-4.4,17.9-12.2,25.4c-3.3,3.2-7.7,5.4-12.6,2.2
|
||||
c-10-6.6-20.2-12.9-29.9-19.9c-6.3-4.5-12.3-9.4-17.7-14.8C1701.9,612.1,1702.4,605.2,1707.4,600.3z M1790.3,831.4
|
||||
c-15.3,13-33,20.7-52.7,24.8c-17.7,3.7-35.8,6.6-52,15.3c-2.8,1.5-5.6,3.1-7.8,5.3c-14.5,14.1-32.5,21.1-51.8,25.1
|
||||
c-25.8,5.4-51.9,8.3-78.3,8.5c-29.2,0.3-57.9-2-85-14.3c-26.7-12.1-41.5-36.6-38.9-65.8c2.9-33.1,17.6-59,47.1-75.4
|
||||
c16.2-9,34-13.8,52.1-16.5c14-2.1,28.1-4,42.2-3.8c26.6,0.3,52.5,5.5,75.5,19.7c17,10.5,30.3,25.4,43.1,40.6
|
||||
c4.9,5.8,9.9,11.8,14,18.2c11.4,18,28.7,22.5,48.4,21.8c16.7-0.7,32.5-4.7,47.5-12.1c1-0.5,2.2-0.8,3.3-1.1
|
||||
c0.4-0.1,0.9,0.1,2.7,0.3C1796.1,825.4,1793.5,828.7,1790.3,831.4z"/>
|
||||
<g>
|
||||
<path class="st7" d="M709,987L709,987c88.3,0,176.7,0,265,0l0,0H709z"/>
|
||||
<path class="st7" d="M464.8,648.6c12.7,13,25.2,26.2,38.1,39c7.7,7.6,16.2,14.4,24.1,21.9c17.2,16.4,35.8,31.1,55.1,44.8
|
||||
c9.4,6.7,19.3,12.7,29,18.9c2.8-3.4,5.3-7.1,8.6-10c7.3-6.5,14.7-3.7,16.4,5.9c1.5,9,2.7,18,4,27c2.1,2,4.3,3.9,6.4,5.9
|
||||
c3.6,3.6,7,7.2,10.5,10.9c1.7-9.8,3.3-19.5,5.1-29.3c0.9-5,4.8-7,9.3-7.4c4.6-0.4,5.8,3.6,6.5,6.8c3.6,16.1,6.7,32.3,3.8,48.8
|
||||
c-0.8,4.8-3.3,9.2-5,13.8c2.3,4.2,5,8.3,6.8,12.7c5.8,14.9,11.5,29.9,16.9,45c5.5,15.4,8.4,31.3,9.3,47.4
|
||||
c22.7-4.8,31.9,0.8,41.5,1.9c12.1,1.3,115.8,33.4,221,30.8c-1.3-2.5-2.5-5.1-3.9-7.5c-9-15.5-16.4-31.7-19.9-49.2
|
||||
c-5-24.9-5.5-50,0.2-74.9c3.6-15.5,8.2-30.7,18.8-43.3c2.8-3.4,5.8-6.6,8.5-10c10.4-12.9,18.3-27.1,23-43
|
||||
c5.9-19.9,10.3-40,8.3-60.9c-0.8-8.9-2.9-17.6-4.4-26.4c-35,2.3-70.1,4.9-104.6-4.3c-18.2-4.8-35-12.6-49.4-25
|
||||
c-4.7,2.5-9.6,3.5-14.8,1.9c-7.1-2.2-10.4-7.7-10-16.8c0-0.3,0-0.6,0-1c-0.1-2.7-0.2-5.4-0.3-8.1c-4.7-5.7-9.8-11.2-14.1-17.2
|
||||
c-3.9-5.3-7-11.2-10.8-17.4c3.8-0.2,6.6-0.4,9.3-0.6c-2-0.3-4.1-0.5-6.1-0.8c-1.4,0-2.7,0-4.1,0.1c-2,0-3.9,0-5.9,0
|
||||
c-24.1-1-48.2-1.8-72.2-3c-7-0.3-11.9-6.9-13-14.3c-5.2-33.4-3.6-67-2.8-100.6c0-1.7,0-3.3,0-5c-9.6-0.9-19.2-1.9-28.8-2.8
|
||||
c-1,15.3-2.2,30.5-3.1,45.8c-2,32.6-3.8,65.1-5.9,97.7c-0.6,10.2-7.8,16.3-17,15.4c-8.7-0.9-14.3-8.5-13.7-18.2
|
||||
c2.3-37.5,4.5-75.1,6.7-112.6c0.6-11,1.3-21.9,1.9-32.9c-0.1-0.1-0.3-0.2-0.3-0.4c-9.3-1.1-18.7-2.1-28-3.2
|
||||
c-7.9-0.9-15.7-1.9-23.6-2.9c-3.7-0.6-7.4-1.2-11.1-1.8c-6.4-0.7-12.8-1.5-19.2-2.2c-2.6,17.1-5.1,34.2-7.9,51.3
|
||||
c-4.9,30.4-9.8,60.8-15,91.1c-0.9,5.5-3.2,10.9-5.1,16.2c-2.5,6.8-7.3,11-14.7,11.7c-7.4,0.8-11.7-3.3-15-9.3
|
||||
c-24-44.1-45-89.6-62.4-136.7c-0.5-1.4-1.1-2.7-1.6-4.1c-0.4,0-0.9,0-1.3,0c-2.9,27.4-5.8,54.7-8.7,82.2c3,0.7,5.1,1.1,7.2,1.6
|
||||
c6.9,2,10.2,7,9.7,14.7c-0.4,6.9-5.4,12.6-11.9,13.4c-2.3,0.3-4.7,0.2-7,0.3c-0.5,6.8-0.5,13.6-1.5,20.3c-0.7,4.5-2.6,8.8-4,13.1
|
||||
c5.1,5.7,10.2,11.6,15.5,17.2C446.8,630.2,455.9,639.4,464.8,648.6z M705,810.8c1.6-6.1,4.1-7.8,9.9-6.8c4.6,0.9,4.3,5.1,4.9,8.5
|
||||
c0.2,1,0,2,0,2.7c1,5.3-1,8.7-5.7,10.4c-5.5,1.9-9.6-0.7-9.9-6.5C704.1,816.3,704.3,813.4,705,810.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M349.9,937.4c64.3,29.9,88.4,38.3,108.2,26.8s52.7-16.1,64.9-7.7c12.3,8.4,75.8,42.8,137.9,12.6
|
||||
c3.2-1.5,6.2-3,9.1-4.3c0-1.3,0-2.5-0.1-3.8c-0.2-6.7-1.9-13.6-7.8-17.6c-4.6-3.1-10.2-4.6-15.1-7.4c-6.6-3.7-13.9-6.8-19-12.1
|
||||
s-8.4-12.7-11.2-19.7c-3.2-8.1-8.5-13.8-15.8-17.9c-18.7-10.6-39-16.7-59.6-22.5c-5.5-1.5-11.2-3.4-15.9-6.5
|
||||
c-9.2-6-14.6-15.3-18.5-25.4c-3.9-10.1-6.8-20.5-10.5-30.6c-4-10.9-10.2-20.1-21-25.4c-5.9-0.1-11.8-0.1-17.7-0.2
|
||||
c-7,0.9-14.1,1.6-21.1,2.8c-9,1.5-14.2,8.5-20.1,14.5c-15.1,15-30.7,29.5-49.4,39.9c-7.4,4.1-15.5,7.2-24.5,7.1
|
||||
c-19.8-0.2-39.5,0.2-59.3-0.4c-9.5-0.3-19-2.5-28.5-3.9c-6.4-0.9-12.1,1-17.3,4.6c-6.6,4.6-13,9.4-19.6,14.1
|
||||
c-1,0.7-2.2,1.3-3.3,1.9c-3.8,4.8-7.4,9.7-11.3,14.5c-7.9,9.6-14.5,19.8-12.5,32.9c1.8,12.2,0.7,24.1-1.4,36.2
|
||||
c-0.4,2.6-0.6,5.2-0.5,7.7C247.8,933.5,311.7,919.7,349.9,937.4z"/>
|
||||
<path class="st3" d="M216,987L216,987c151,0,302,0,453,0l0,0H216z"/>
|
||||
</g>
|
||||
<path class="st0" d="M86.1,967.3c25.1,0,62.8-9.9,103.1-19.7c-0.1-2.6,0-5.1,0.5-7.8c2.1-12,3.2-24,1.4-36.2
|
||||
c-2-13.1,4.6-23.3,12.5-32.9c3.9-4.7,7.5-9.6,11.3-14.5c0.8-1.6,1.2-3.5,2.3-4.7c12.3-13.4,25.1-26.2,36.8-40
|
||||
c8.7-10.2,14.7-22.9,24-32.4c36.2-36.7,93.7-57.4,149.7-23c6.9,4.3,13.5,9.4,21,12.4c7,2.8,14.9,3.1,22.4,4.5
|
||||
c5.2-0.7,5.7-0.3,4.6,2.9c10.8,5.3,17.1,14.5,21,25.4c3.7,10.2,6.6,20.6,10.5,30.6s9.3,19.4,18.5,25.4c4.7,3.1,10.4,5,15.9,6.5
|
||||
c20.5,5.8,40.9,11.9,59.6,22.5c7.3,4.1,12.5,9.8,15.8,17.9c2.8,7,6.1,14.4,11.2,19.7c5,5.3,12.4,8.4,19,12.1
|
||||
c4.9,2.7,10.6,4.2,15.1,7.4c5.9,4,7.6,11,7.8,17.6c0,1.3,0.1,2.5,0.1,3.8c16.8-7.6,29.7-11.9,39.8-14c-0.9-16.1-3.8-32-9.3-47.4
|
||||
c-5.4-15.1-11-30.1-16.9-45c-1.7-4.5-4.5-8.5-6.8-12.7c-12.3,4.9-14.9,3.8-17.4-9.3c-1.5-7.7-1.6-15.7-2.3-23.6
|
||||
c-3.5-3.6-7-7.3-10.5-10.9c-2-2-4.3-3.9-6.4-5.9c-2.1,14.4-4,28.9-6.5,43.2c-1.3,7.1-5.6,10.2-12.1,8.4c-3.2-0.9-6.3-4.1-8.4-7
|
||||
c-5.3-7.5-8-15.9-7.3-25.3c0.8-10.8,1.2-21.5,2.1-32.3c0.3-3.4,2.1-6.6,3.2-9.8c-9.7-6.3-19.6-12.3-29-18.9
|
||||
c-19.3-13.7-37.9-28.4-55.1-44.8c-7.9-7.5-16.4-14.3-24.1-21.9c-12.9-12.8-25.4-25.9-38.1-39c-9-9.2-18-18.4-26.8-27.8
|
||||
c-5.3-5.6-10.3-11.4-15.5-17.2c-8.2,5.7-14.9,6.2-21,1.4c-4.2-3.3-6.3-7.6-6-13c0.3-5.5,0.4-11,0.7-16.5c0.2-2.6-1-3.6-3.4-3.6
|
||||
c-31.3,3.5-62.5,7-93.7,10.6c-6.1,0.7-11.7,0-15.8-5.2c-3.6-4.7-3.6-9.9-1.4-15.1c2.2-5.1,6.4-7.3,11.7-8.1
|
||||
c15-2.2,29.9-4.7,44.9-6.8c3.5-0.5,4.9-1.6,4.6-5.3c-0.5-6.1-0.4-12.3-0.6-18.5c-6.3-6.6-12.6-13.3-18.8-19.9
|
||||
c-0.7-0.7-1.2-1.5-1.9-2.2c-11.8,3.5-23.8,5.7-36.2,5.8c-18.5,0.1-36.2-4.2-53.5-10.1c-16.5-5.6-33-11.5-49.4-17.4
|
||||
c-2.8-1-5.5-2.3-8.2-3.4c4.1,5.4,8.3,10.8,12.3,16.2c4.8,6.6,9.8,13,13.9,20c4.4,7.5,2.3,13.1-5.9,15.6c-6.1,1.8-12.7,2.5-19.1,2.7
|
||||
c-11,0.3-17.9,6.3-17.8,17.5c0,10.8,1.2,21.6,1.4,32.4c0.2,12.3,1.6,24.8-0.4,36.8c-3.4,21.1-18.3,33.8-40.1,37.4
|
||||
c-11.5,1.9-22.8,1-34.1-1.7c-29-6.9-57.2-16.6-85-27.3C0,722,0,818.2,0,914.3C0,914.4,24.6,967.3,86.1,967.3z M566.5,770.9
|
||||
c1.4-3.3,4.4-6.3,7.4-8.4c4.6-3.2,9.9-0.7,10.7,4.9c1.6,10.8,2.9,21.7,4.3,32.6c0.1,9.3-1.1,18.2-5.3,26.3c-1.8,3.6-5,7.7-8.4,8.8
|
||||
c-2,0.6-6.2-4-8.5-6.9c-4.5-5.8-4.9-12.9-5-20C561.4,795.6,561.4,782.8,566.5,770.9z M538.6,790c1.6-0.4,4,1,5.5,2.3
|
||||
c5.6,4.7,3.6,11.6,4.5,15.8c0.3,6.1,0,10.2-4.1,12.8c-3.5,2.2-6.5,1.6-7.1-2.4c-1.2-7.9-1.9-15.9-2.3-24
|
||||
C535,792.9,537.1,790.3,538.6,790z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 47 KiB |
473
www/img/header/interq2.svg
Normal file
|
@ -0,0 +1,473 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, 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 2048 987" style="enable-background:new 0 0 2048 987;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#D63F52;}
|
||||
.st1{fill:#FF0000;}
|
||||
.st2{fill:#271A88;}
|
||||
.st3{fill:#FFCA0D;}
|
||||
.st4{fill:#940001;}
|
||||
.st5{fill:#FBFBFB;}
|
||||
.st6{fill:#EFEFF0;}
|
||||
.st7{fill:#7B79B8;}
|
||||
.st8{fill:#940001;}
|
||||
.st9{fill:none;stroke:#6B1218;stroke-width:6;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st10{fill:none;stroke:#831518;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M1725.4,489.1c-10.4-3.1-20.8-6.4-31.3-9.1c-10.9-2.8-21.8-5.6-32.8-7.5c-12.4-2.1-25-3.2-37.5-4.5
|
||||
c-8.2-0.9-16.5-1.3-24.7-2c-0.7-2.9-1.5-5.7-2.1-8.6c-12-55.4-45.3-91.2-99-108.5c-19.3-6.2-39.2-7-59.3-5.6
|
||||
c-1.8-5.4-3.3-10.8-5.3-16.1c-8.4-22.9-16.2-46-28.6-67.3c-13-22.3-29.3-41.6-49.2-58c-21.7-18-46-31.2-72.7-40.4
|
||||
c-4.8-1.6-9.4-3.5-14.1-5.3c9-6.1,12.6-15.6,15.1-25.4c3.3-13.2,3.5-26.6,2-40.1c-1.3-11.2-3.1-22.4-8.7-32.5
|
||||
c-2.7-4.9-5.4-9.9-3.3-16c0.5-1.6,0.2-3.8-0.5-5.3c-5-10.5-2.3-20.7,0.6-31c0.5-1.9,0.7-3.9,1-5.8c174,0,348,0,522,0
|
||||
c-2,6.3-4.4,12.5-5.8,18.9c-2.1,9.2-7.7,13.9-17.3,12.9c-5.1-0.5-10-2.1-15.1-2.9c-9-1.4-18.1-3.1-27.1-3.6
|
||||
c-7.3-0.4-14.8,0.3-21.1,4.7c-3.1,2.2-6.7,4.8-8.2,8.1c-3.2,7,2.9,17.6,11.1,19.5c18.7,4.3,37.3,3.1,55.5-3
|
||||
c5-1.7,10.1-3.5,15.2-4.5c5-0.9,8.2,2.6,9.9,6.7c0.7,1.8,0.1,5.4-1.3,6.6c-11.6,9.8-22.8,20.4-35.7,28.3
|
||||
c-13.8,8.4-27.8,16-38.7,28.2c-13.8,15.5-23.3,32.7-22.3,54.3c0.4,9.4,6.2,16.4,15.3,18c12.3,2.2,23.2-1.6,33.6-7.8
|
||||
c17-10.1,26.3-26.2,33.8-43.7c6-14,12-28.1,18.6-41.9c1.8-3.8,4.9-7.3,8.3-9.7c2.3-1.7,6.8-2.6,9.1-1.4c4.6,2.3,9.4,5.9,9.2,12
|
||||
c-0.3,12.3-0.9,24.6-2.1,36.9c-1.4,14.4-3.9,28.7-5.2,43.1c-1.6,18-2.9,36.1-3.6,54.2c-0.4,10.4,4.6,19.2,12.2,26.1
|
||||
c9.2,8.4,22.8,5.7,30.6-5.5c7.4-10.7,11-22.7,9.1-35.5c-2.2-14.6-5.4-29-9.1-43.3c-5.7-21.8-10.6-43.8-10.6-66.4
|
||||
c0-14.5,1.8-15.4,14.9-13.7c5,0.7,9.9,2.5,14.7,4.2c6.8,2.5,13.3,6.3,20.4,7.9c18.2,4.1,34.6,11.9,48.1,24.6
|
||||
c18.6,17.6,36.4,35.9,54.6,54c0.8,0.8,1.4,1.9,2,2.8c1.7,2.7,2.7,6.1,5,8.1c5,4.1,10.5,7.6,16,11c8.9,5.4,18,10.4,27.1,15.6
|
||||
c0,117.3,0,234.7,0,352c-4.8-0.4-9.7-0.3-14.3-1.2c-12.8-2.4-25.6-5.1-38.4-7.8c-25.5-5.3-51-6.4-76.4,0.8c-4.3-2.3-8.5-4.8-13-6.9
|
||||
c-23.4-10.7-46.9-21.3-70.4-31.9c-3.8-1.7-7.7-3.1-11.5-4.6c-0.6-5.2-0.3-10.8-2.1-15.6c-2.7-7.3-6.3-14.4-10.6-20.9
|
||||
c-10.2-15.6-19.2-18.5-37-13.3C1757.9,479.6,1741.7,484.3,1725.4,489.1z M1768.7,371.3c-1.4-3.3-3.5-9-6.4-14.3
|
||||
c-0.9-1.7-4.4-3.1-6.3-2.8c-8,1.3-16.5,1.9-23.6,5.3c-12.7,6-24.6,13.9-36.8,21c-4,2.3-6.3,5.6-4.5,10.4c1.8,5,6.2,4.8,10.5,4.5
|
||||
c5.8-0.4,11.6-0.9,17.4-1.2c11.1-0.7,22.3-1.2,33.4-2.2C1764.1,390.7,1768.2,385.9,1768.7,371.3z M1623.1,54.5
|
||||
c-0.7,8.2,2.4,16.4,9.1,22.8c8.7,8.3,21.1,9.6,28.4-3c5.8-9.9,2.7-27.1-6.2-34.3c-2.8-2.3-5.9-4.5-9.3-5.8
|
||||
C1632.9,29.4,1622.9,38.2,1623.1,54.5z M1680.2,218.1c-0.2-14.4-6.4-23.2-16.7-29c-6.5-3.6-17.8-3.1-22.8,6.5
|
||||
c-5.5,10.6-1.3,27.9,8.9,34.7c5.6,3.7,11.3,7.2,18.5,4.8C1675.5,232.5,1680.9,225.7,1680.2,218.1z M1801.2,272.2
|
||||
c-0.2-1.8-0.4-3.7-0.7-5.5c-0.8-5-3.3-9-8.1-10.4c-5.4-1.6-10,0.6-13.5,5.1c-5.7,7.6-7.1,16-3.7,24.9c2.1,5.6,8.2,8.2,13.7,5.9
|
||||
C1797.9,288.5,1800.1,280.7,1801.2,272.2z M1658.9,274.7c0.1-8.8-6.9-16.2-15.3-16.3c-9-0.1-16.3,7.3-16.3,16.5
|
||||
c0,7.5,6.3,15.5,15.4,15.3C1652.6,289.9,1659.2,283.3,1658.9,274.7z M1838.4,320c8.3-0.1,15.4-7.5,15.3-15.8
|
||||
c-0.2-8.3-7.2-14.8-15.8-14.6c-8.5,0.2-14.4,6.4-14.4,15.1C1823.6,313.3,1830.1,320,1838.4,320z M1597.4,79.8
|
||||
c0.1-6.3-4.9-13.3-9.6-13.4c-5.3-0.2-9.9,5.5-9.9,12.2c-0.1,6.7,4.8,12.8,10,12.8C1592.6,91.5,1597.4,85.6,1597.4,79.8z
|
||||
M1843.1,347.6c-0.1,5.9,4.3,10.3,10.3,10.4c5.4,0,10.2-4.6,10.4-10c0.2-5.6-4.6-10.5-10.3-10.6
|
||||
C1847.5,337.3,1843.3,341.5,1843.1,347.6z"/>
|
||||
<path class="st1" d="M330,0c164.7,0,329.3,0,494,0c0.7,19.6-8.5,33.7-24.4,44.4c-6.7,4.5-12.9,9.9-18.5,15.7
|
||||
c-7.2,7.2-8.1,16.1-4,25.4c5.6,12.7,14.4,23,27.1,28.1c15,6,30.7,10.8,46.5,14.4c18.1,4,34.9,9.9,47.7,23.9
|
||||
c8.9,9.8,17.5,19.9,25.9,30.3c8.1,10.1,17.3,18.7,29.9,22.3c13.7,3.9,27.8,6.6,41.6,9.8c-0.3,0.5-0.6,1.2-1.1,1.5
|
||||
c-14,9-28.6,17.1-41.9,27c-19.5,14.6-39.1,29.3-56.6,46.2c-24.3,23.5-46.6,49-69.7,73.6c-10.7,0.5-21.3,1-31.9,1.5
|
||||
c-18.3,0.9-36.6,1.3-54.8,3c-19.4,1.8-28.3,11.2-30.6,30.6c-0.4,3.1-1,6.3-1,9.4c0,3.2-1.5,4.1-4.2,4c-1.3-0.2-2.6-0.6-3.9-0.6
|
||||
c-37.6-0.8-75.1-1.6-112.7-2.3c-1.9,0-4,0.4-5.8,1.2c-10.3,4.4-12.2,16.2-4.4,26.4c1.3,1.5,2.6,3,3.9,4.5
|
||||
c-6.4-0.7-12.8-1.4-19.2-2.2c0.6-4.1,1.1-8.2,1.7-12.4c1.2-8.9,2.9-17.8,3.3-26.7c0.4-8.3-5.6-14.5-13-15c-9.4-0.6-15.6,4-17,12.9
|
||||
c-2.1,13-4.1,26-6.1,39c-7.3-1.2-14.5-2.2-21.7-3.8c-10.1-2.1-20-4.7-30-7.1c-6.4-1.5-12.7-3.3-19-4.9c-0.7-1.7-1.5-3.4-2-5.1
|
||||
c-3.2-10.2-6.3-20.4-9.5-30.5c-2.4-7.5-9-12-16.2-11.4c-7.6,0.7-12.9,5.9-14.1,13.9c-0.8,5.1-1.7,10.2-2.5,15.3
|
||||
c-5.9-2.7-12-5.2-17.8-8.1c-12.5-6.2-25.4-12-35-22.3c-5.4-5.7-9.4-12.7-13.9-19.2c-5.2-7.5-10.9-9.4-19.4-6.7
|
||||
c-10.3,3.3-20.5,7.1-31.6,6.5c-6.5-0.4-8-2.2-6.1-8.6c0.4-1.4,0.8-3,1.8-4.1c5.2-5.7,10.6-11.2,15.8-17c1.6-1.8,3.3-3.8,3.9-6.1
|
||||
c3.6-13.8-7.1-27.1-20.5-28.4c-7.1-0.7-14.3,0-21.5-0.2c-9.5-0.4-19.1-0.7-28.6-1.9c-7.1-0.9-12-9.8-10.6-17.1
|
||||
c2.3-12,8.6-21.5,18.2-28.5c8-5.9,16.6-10.9,25.5-15.2c10.4-5.1,21.3-9.1,32-13.4c7.5-3,15.3-5.5,22.7-8.9c2.3-1,5.3-4.3,5.1-6.1
|
||||
c-0.4-2.5-3.2-5.4-5.6-6.5c-6.1-2.6-12.6-4.5-19-6.2c-7.5-1.9-10.6-10.9-6.1-14.5c3.1-2.6,7.2-4.6,11.2-5.5
|
||||
c8.2-1.8,16.5-2.7,24.9-3.9c4-0.6,4-3.2,2.8-5.9c-3.7-8.9-9.5-12.9-19.4-12.1c-9.8,0.7-19.6,3.1-29.4,3.4
|
||||
c-10.9,0.4-21.9,0-32.6-1.5c-11.2-1.6-13.9-7.2-10.6-18.3c5.2-17.6,18-27.5,34.4-33.9c10.2-3.9,20.3-8.8,25.4-19.1
|
||||
c3.8-7.6,6.8-15.8,8.7-24.1C323.9,32.6,326.8,16.3,330,0z M507.1,249.2c12.3-1.8,24-3.5,35.7-5.1c12.4-1.7,24.4-4.9,35.7-10.2
|
||||
c17.9-8.2,33.7-19.8,49.1-31.8c4.8-3.7,4.1-6.4-1.5-9c-8.9-4.1-17.8-8.1-26.6-12.5c-12.3-6.1-24.5-12.7-38.1-15.6
|
||||
c-4.6-1-9.5-1.4-14.2-1.5c-9.5-0.3-16.7,4.7-23.2,11c-5.5,5.3-11.8,7.2-19.2,4.1c-4.8-2.1-9.5-4.8-14.5-6
|
||||
c-6.4-1.6-13.1-3.1-19.4,0.9c-3.4,2.1-6.8,4.1-9.9,6.6c-11.2,9-22.4,18.1-33.4,27.4c-3.9,3.3-3.7,7.2,0.1,10.6
|
||||
c3.5,3.2,7.4,6.2,11.5,8.6c9.9,5.8,19.4,12.9,30.1,16.3C481.4,246.9,494.6,247.3,507.1,249.2z M593.8,406.3c0,0.1,0,0.2,0,0.4
|
||||
c17.4,0,34.8,0,52.2,0c0-0.1,0-0.2,0-0.4C628.6,406.3,611.2,406.3,593.8,406.3z"/>
|
||||
<path class="st2" d="M322.1,501.4c-11.8,3.5-23.8,5.7-36.2,5.8c-18.5,0.1-36.2-4.2-53.5-10.1c-16.5-5.6-33-11.5-49.4-17.4
|
||||
c-2.8-1-5.5-2.3-8.2-3.4c-1.6-2.5-3.3-5-4.7-7.6c-8.6-16.6-12.9-34.4-15-52.9c-1.4-12.1-4.6-23.8-11.6-34
|
||||
c-8-11.5-17.7-21.6-29.2-29.3c-10-6.7-20.8-12.3-31.8-17.2c-7.9-3.5-16.6-5-24.9-7.7c-11.3-3.8-22.7-1.9-34-1
|
||||
c-7.9,0.6-15.6,3.5-23.5,5.4C0,221.4,0,110.8,0,0c110,0,220,0,330,0c-3.2,16.3-6.1,32.6-9.9,48.8c-2,8.3-4.9,16.5-8.7,24.1
|
||||
c-5.1,10.2-15.2,15.1-25.4,19c-16.4,6.3-29.1,16.2-34.4,33.9c-3.3,11.1-0.6,16.7,10.6,18.3c10.8,1.5,21.8,1.8,32.6,1.5
|
||||
c9.8-0.3,19.6-2.6,29.4-3.4c10-0.7,15.7,3.2,19.4,12.1c1.1,2.7,1.2,5.3-2.8,5.9c-8.3,1.2-16.7,2.1-24.9,3.9c-4,0.9-8,2.9-11.2,5.5
|
||||
c-4.4,3.7-1.3,12.6,6.1,14.5c6.5,1.7,12.9,3.6,19,6.2c2.5,1.1,5.3,4,5.6,6.5c0.3,1.8-2.8,5-5.1,6.1c-7.4,3.3-15.1,5.9-22.7,8.9
|
||||
c-10.7,4.3-21.6,8.3-32,13.4c-8.9,4.3-17.6,9.4-25.5,15.2c-9.5,7-15.9,16.6-18.2,28.5c-1.4,7.3,3.5,16.3,10.6,17.1
|
||||
c9.5,1.2,19.1,1.5,28.6,1.9c7.1,0.3,14.4-0.4,21.5,0.2c13.4,1.3,24.2,14.6,20.5,28.4c-0.6,2.2-2.3,4.3-3.9,6.1
|
||||
c-5.2,5.7-10.6,11.2-15.8,17c-0.9,1-1.3,2.7-1.8,4.1c-1.9,6.4-0.4,8.3,6.1,8.6c11.1,0.6,21.3-3.2,31.6-6.5
|
||||
c8.4-2.7,14.1-0.8,19.4,6.7c4.5,6.5,8.5,13.5,13.9,19.2c9.7,10.3,22.5,16.1,35,22.3c5.8,2.9,11.9,5.4,17.8,8.1
|
||||
c-0.5,2.7-1,5.4-1.5,8.1c-8,0.4-16,0.5-23.9,1.4c-23.2,2.4-46.3,5-69.5,7.5c-9.6,1-19.2,1.7-28.8,2.9c-8.7,1.1-14.5,8-13.6,15.6
|
||||
c1,8.6,7.9,13.9,16.8,13.1c8-0.8,15.9-1.6,23.9-2.4c7.2-0.7,14.4-1.3,22.8-2c0,15.7,0,30.6,0,45.6
|
||||
C335.3,495.1,328.6,498.2,322.1,501.4z"/>
|
||||
<path class="st1" d="M1918.8,567.9c25.4-7.3,50.9-6.2,76.4-0.8c12.8,2.7,25.6,5.4,38.4,7.8c4.7,0.9,9.6,0.8,14.3,1.2
|
||||
c0,88.7,0,177.3,0,266c-8.7,3.6-17.5,7.2-26.2,10.9c-39.7,16.8-79.3,33.7-119,50.3c-18.1,7.6-37.2,8.5-56.5,6.8
|
||||
c-2.1-0.2-4.9-2.3-5.8-4.2c-3.8-8.3-6.6-17.1-10.6-25.3c-2.2-4.4-5.6-8.6-9.3-11.8c-5.7-4.9-6.3-8.5-0.5-13.3c3.7-3,8-5.4,11.8-8.4
|
||||
c10.7-8.4,10.4-27.3-0.7-35.5c-7.7-5.7-16.5-7.6-25.9-7.3c-6.3,0.2-6.5-0.2-5.1-6.5c1.2-5.5,2.2-11,3.1-16.6c0.6-4-1.3-6.7-4.9-8.3
|
||||
s-7.4-3.1-10.9-4.9c-2.7-1.3-5.5-2.7-7.6-4.7c-5.4-5.1-5.1-9.8,0.5-14.6c7.4-6.4,14.8-12.9,22.4-19.1
|
||||
c12.8-10.3,16.6-24.6,19.2-39.9c2.7-16,5.8-32.1,9.9-47.8c6.5-24.9,22.7-42.9,44.7-55.2C1889.9,579.1,1904.7,574.1,1918.8,567.9z
|
||||
M1865.1,705.5c-0.3-1.5-0.5-3.4-1-5.4c-1-4.2-3.6-7.2-7.9-8c-4.6-0.8-8.5,1-10.4,5.1c-2,4.3-3.7,8.9-4.4,13.5
|
||||
c-0.7,4.5,1.4,8.5,5.8,10.6c3.9,1.8,7.8,1.7,11.1-1.3C1862.6,716.2,1864.8,711.6,1865.1,705.5z"/>
|
||||
<path class="st3" d="M995.8,214.2c-13.9-3.2-27.9-5.9-41.6-9.8c-12.5-3.6-21.8-12.3-29.9-22.3c-8.3-10.3-17-20.4-25.9-30.3
|
||||
c-12.8-14-29.6-19.9-47.7-23.9c-15.8-3.5-31.5-8.4-46.5-14.4c-12.7-5.1-21.5-15.4-27.1-28c-4.1-9.3-3.2-18.1,4-25.4
|
||||
c5.7-5.7,11.9-11.2,18.5-15.7C815.5,33.7,824.7,19.6,824,0c127,0,254,0,381,0c2.9,2.9,5.8,5.9,8.9,8.6c11.7,10.4,21.6,21.6,22,38.5
|
||||
c0.2,9,1.1,18-3.8,26.2c-11,18.3-22.4,36-42.2,46.5c-12,6.3-19.6,17.2-24.6,29.7c-1.8,4.5-3.9,8.8-5.2,13.4
|
||||
c-3.1,10.6-7.4,20.2-16,27.5c-3.7,3.1-7.4,6.1-10.9,9.4c-15.1,14.3-33.3,20.7-53.8,19.9c-17.8-0.7-35.5-2-53.2-3.2
|
||||
C1016,215.9,1005.9,215,995.8,214.2z M1064.2,171.7c3.9-0.8,8.4-1.4,12.6-2.7c4-1.3,6.8-4.2,7.2-8.7c0.4-4.8-2.2-8.3-6.1-10
|
||||
s-8.2-2.8-12.4-3.2c-12.6-1.1-25.2-2.2-37.9-2.6c-17.8-0.6-34.8-5.6-52-9.2c-9.8-2.1-19.7-3.7-29.7-1.2c-5.7,1.5-9.3,5.9-9.3,10.9
|
||||
c0,5.1,3.6,9.7,9.3,10.9c7,1.6,14,3,21.1,3.9c23.5,2.8,47,5.2,70.4,8C1046.1,168.8,1054.8,170.3,1064.2,171.7z M985.4,103.4
|
||||
c0,0.2,0,0.4,0,0.6c-2.8-0.2-5.7-0.5-8.5-0.4c-6.3,0.2-12.6,0.3-18.9,0.8c-3.6,0.3-7.3,1.6-7.4,5.9c-0.2,4.3,1.9,7.8,6.2,9.2
|
||||
c2.5,0.8,5.2,1.3,7.8,1.4c18.8,0.9,37.5,1.7,56.3,2.7c12.4,0.7,24.8,1.8,37.3,2.3c4.2,0.2,8.7-0.7,12.7-2.1
|
||||
c2.1-0.7,4.8-3.4,4.9-5.4s-2.1-5.2-4-6.1c-4.3-2-9-3.4-13.7-4c-6.1-0.8-12.3-0.3-18.4-0.7C1021.5,106.3,1003.5,104.8,985.4,103.4z
|
||||
M1049.2,92.5c0.9-0.1,2.3-0.3,3.6-0.4c4-0.5,6.5-2.8,6.9-6.7c0.5-4.3-2.8-5.6-6.1-6.8c-1.1-0.4-2.3-0.5-3.4-0.6
|
||||
c-17.1-1.6-34.1-3.6-51.2-4.7c-6.6-0.4-13.5,1.2-20.1,2.4c-1.8,0.3-4.6,2.8-4.6,4.2c0.1,2,2.1,4.2,3.8,5.8c1.2,1.2,3.3,1.8,5,2.1
|
||||
c6.9,0.9,13.8,1.7,20.8,2.2c7.6,0.5,15.3,0.5,22.9,0.9C1034.2,91.2,1041.5,91.9,1049.2,92.5z"/>
|
||||
<path class="st2" d="M2048,224c-9-5.2-18.1-10.3-27.1-15.6c-5.5-3.4-11-6.9-16-11c-2.3-1.9-3.4-5.3-5-8.1c-0.6-1-1.2-2-2-2.8
|
||||
c-18.1-18.1-36-36.4-54.6-54c-13.5-12.8-29.8-20.5-48.1-24.6c-7-1.6-13.5-5.4-20.4-7.9c-4.8-1.7-9.7-3.6-14.7-4.2
|
||||
c-13.1-1.7-14.9-0.9-14.9,13.7c0,22.6,5,44.5,10.6,66.4c3.7,14.3,6.9,28.8,9.1,43.3c1.9,12.7-1.6,24.7-9.1,35.5
|
||||
c-7.8,11.2-21.4,13.9-30.6,5.5c-7.6-6.9-12.6-15.7-12.2-26.1c0.7-18.1,2-36.2,3.6-54.2c1.3-14.4,3.8-28.7,5.2-43.1
|
||||
c1.2-12.3,1.7-24.6,2.1-36.9c0.2-6-4.6-9.7-9.2-12c-2.3-1.2-6.8-0.2-9.1,1.4c-3.4,2.4-6.5,5.9-8.3,9.7
|
||||
c-6.5,13.8-12.6,27.8-18.6,41.9c-7.5,17.5-16.8,33.6-33.8,43.7c-10.4,6.2-21.3,10.1-33.6,7.8c-9-1.6-14.8-8.6-15.3-18
|
||||
c-1-21.6,8.5-38.8,22.3-54.3c10.9-12.2,25-19.8,38.7-28.2c12.8-7.9,24-18.5,35.7-28.3c1.4-1.2,2-4.8,1.3-6.6
|
||||
c-1.7-4.1-4.9-7.6-9.9-6.7c-5.2,0.9-10.2,2.8-15.2,4.5c-18.3,6-36.8,7.2-55.5,3c-8.1-1.8-14.3-12.4-11.1-19.5
|
||||
c1.5-3.3,5.1-5.9,8.2-8.1c6.3-4.4,13.8-5.1,21.1-4.7c9.1,0.5,18.1,2.2,27.1,3.6c5.1,0.8,10,2.3,15.1,2.9c9.6,1,15.2-3.7,17.3-12.9
|
||||
c1.4-6.4,3.8-12.6,5.8-18.9c83.7,0,167.3,0,251,0C2048,74.7,2048,149.3,2048,224z"/>
|
||||
<path class="st4" d="M0,332c7.8-1.9,15.6-4.8,23.5-5.4c11.3-0.9,22.7-2.8,34,1c8.2,2.8,17,4.2,24.9,7.7c11,4.9,21.8,10.5,31.8,17.2
|
||||
c11.5,7.8,21.3,17.9,29.2,29.3c7.1,10.2,10.2,21.8,11.6,34c2.1,18.5,6.4,36.3,15,52.9c1.4,2.6,3.1,5.1,4.7,7.6
|
||||
c4.1,5.4,8.3,10.7,12.3,16.2c4.8,6.6,9.8,13,13.9,20c4.4,7.5,2.4,13.1-5.9,15.6c-6.1,1.8-12.7,2.5-19.1,2.7
|
||||
c-11.1,0.3-17.9,6.3-17.8,17.5c0.1,10.8,1.2,21.6,1.4,32.4c0.2,12.3,1.6,24.8-0.4,36.8c-3.4,21.1-18.3,33.8-40.1,37.4
|
||||
c-11.6,2-22.8,1-34.1-1.7c-29-6.9-57.1-16.6-84.9-27.3C0,528,0,430,0,332z"/>
|
||||
<path class="st1" d="M1165.2,149.6c5-12.5,12.6-23.4,24.6-29.7c19.9-10.5,31.2-28.3,42.2-46.5c4.9-8.2,4-17.2,3.8-26.2
|
||||
c-0.3-16.9-10.3-28.1-22-38.5c-3.1-2.7-5.9-5.7-8.9-8.6c23.3,0,46.7,0,70,0c-0.3,2-0.5,4-1,5.8c-2.9,10.3-5.6,20.5-0.6,31
|
||||
c0.7,1.5,1.1,3.8,0.5,5.3c-2.1,6.1,0.6,11,3.3,16c5.6,10.1,7.4,21.3,8.7,32.5c1.5,13.4,1.3,26.9-2,40.1
|
||||
c-2.5,9.9-6.1,19.3-15.1,25.4c-2.2-0.2-4.3-0.2-6.4-0.7c-11-2.4-21.9-5.3-33-7.1c-9-1.4-18.2-1.9-27.3-2c-9.9,0-19.8,1-29.6,1.7
|
||||
C1170,148.4,1167.6,149.1,1165.2,149.6z"/>
|
||||
<path class="st1" d="M1799.6,821.7c-3.5,3.7-6.1,7-9.3,9.7c-15.3,13-33,20.7-52.7,24.8c-17.7,3.7-35.8,6.6-52,15.3
|
||||
c-2.8,1.5-5.6,3.1-7.8,5.3c-14.5,14.1-32.4,21.1-51.8,25.1c-25.8,5.4-51.9,8.3-78.3,8.5c-29.2,0.3-57.9-2-85-14.3
|
||||
c-26.7-12.1-41.5-36.6-38.9-65.8c2.9-33.1,17.6-59,47.1-75.4c16.2-9,33.9-13.8,52.1-16.5c13.9-2.1,28.1-4,42.2-3.8
|
||||
c26.6,0.3,52.5,5.5,75.5,19.7c17,10.5,30.3,25.4,43.1,40.6c4.9,5.8,9.9,11.8,14,18.2c11.4,18,28.7,22.5,48.4,21.8
|
||||
c16.7-0.7,32.5-4.8,47.5-12.1c1-0.5,2.2-0.8,3.3-1.1C1797.3,821.3,1797.8,821.5,1799.6,821.7z M1479.5,843.4c1.6-1.7,2.2-2.5,2.9-3
|
||||
c5.2-4.1,10.6-8.1,15.6-12.4c5.3-4.5,9.3-10.1,10.8-17c1.3-6.1,0.2-11.8-4.8-15.9c-5.1-4.1-11-3.5-16.5-0.8
|
||||
c-5.8,2.7-9.8,7.1-9.9,13.8c-0.1,3,0.4,6.5,4.4,6.7c3.8,0.1,3.6-2.8,4.2-5.8c0.5-2.8,2.9-5.8,5.4-7.4c1.7-1.1,6.2-0.8,7.1,0.5
|
||||
c1.5,2.2,2.1,5.9,1.4,8.5c-1.7,7.2-7.5,11.5-12.9,15.9c-5,4.1-10.1,8.2-14.3,13c-1.8,2.1-2.8,6.3-2.1,8.9c1.1,4,5.5,3.7,9,3.2
|
||||
c8.4-1,16.8-2.3,25.2-3.3c3.3-0.4,5.6-1.4,5.2-5.1c-0.5-4-3.5-3.3-6.1-3C1496.3,841.2,1488.6,842.2,1479.5,843.4z M1573.6,843.8
|
||||
c5.5-6.5,10.8-12.3,15.4-18.6c2.4-3.2,4.3-7.2,5.3-11.1c1.4-5.4-0.5-10.4-5.3-13.5c-5.5-3.6-11.6-4.1-17.5-0.9
|
||||
c-4.9,2.7-7.6,7-7.7,12.6c0,1.2,1.4,3.5,2.3,3.5c1.7,0.1,3.6-0.8,5-1.8c0.8-0.5,0.7-2.1,1.2-3.2c1.7-4.1,6.3-5.9,10.4-4.1
|
||||
c4.2,2,5.1,5.4,2.5,9.9c-1.1,1.8-2.5,3.6-3.9,5.2c-6.4,7.4-13,14.7-19.3,22.3c-1.3,1.5-1.9,4.2-1.6,6.1c0.2,1,3.2,2.1,4.9,2.1
|
||||
c11.3,0,22.6-0.3,33.9-0.4c3.1,0,5.4-1.2,5.4-4.5c0-3.7-2.7-3.8-5.7-3.8C1590.9,843.9,1582.6,843.8,1573.6,843.8z M1643.4,827.7
|
||||
c-0.8-8.4-3.1-15.6-9-21.5c-6.8-6.6-17-5.7-22.5,2c-7.4,10.4-5.2,29.6,4.3,38.2c8,7.3,18.6,5.7,23.2-4.1
|
||||
C1641.5,837.9,1642.1,832.6,1643.4,827.7z M1553.4,828.3c-0.6-3.3-0.7-6.6-1.7-9.8c-2.3-7-6.4-12.4-14.3-13.6
|
||||
c-7-1.1-12.3,2.3-16.3,7.6c-6.6,8.7-6.2,23.4,0.3,32.3c4.6,6.3,11.1,8.2,18.5,5.6C1548,847.4,1552.9,839.2,1553.4,828.3z"/>
|
||||
<path class="st5" d="M1725.4,489.1c16.3-4.7,32.6-9.4,48.8-14.2c17.8-5.3,26.8-2.4,37,13.3c4.3,6.5,7.8,13.6,10.6,20.9
|
||||
c1.8,4.8,1.5,10.4,2.1,15.6c-2.3,4.9-6.8,7.2-11.7,6.9c-12.3-0.7-24.5-1.9-36.7-3.2c-10.9-1.2-21.7-2.7-32.5-4.4
|
||||
c-11.1-1.7-22.3-3.4-33.2-5.9c-8.6-2-9.9-9.1-4-15.8C1711.2,496.1,1718.3,492.6,1725.4,489.1z"/>
|
||||
<path class="st5" d="M1779.8,624.6c-0.6,8.3-4.4,17.9-12.2,25.4c-3.3,3.2-7.7,5.4-12.6,2.2c-10-6.6-20.2-12.9-29.9-19.9
|
||||
c-6.3-4.5-12.3-9.4-17.7-14.8c-5.5-5.5-5-12.3-0.1-17.2c3-3,6.3-2.2,9.8-1.7c13.4,1.9,26.9,3.6,40.3,5.6c4.2,0.6,8.4,1.6,12.5,2.9
|
||||
C1777,609.5,1780,614.8,1779.8,624.6z"/>
|
||||
<path class="st5" d="M1768.7,371.3c-0.4,14.6-4.6,19.4-16.5,20.5c-11.1,1-22.3,1.5-33.4,2.2c-5.8,0.4-11.6,0.8-17.4,1.2
|
||||
c-4.3,0.3-8.6,0.5-10.5-4.5c-1.8-4.7,0.5-8,4.5-10.4c12.2-7.1,24.1-14.9,36.8-21c7.1-3.4,15.6-4,23.6-5.3c2-0.3,5.4,1.1,6.3,2.8
|
||||
C1765.1,362.2,1767.2,368,1768.7,371.3z"/>
|
||||
<path class="st2" d="M1623.1,54.5c-0.2-16.3,9.7-25.1,22-20.3c3.3,1.3,6.4,3.5,9.3,5.8c9,7.2,12,24.4,6.2,34.3
|
||||
c-7.3,12.6-19.7,11.3-28.4,3C1625.5,70.9,1622.4,62.7,1623.1,54.5z"/>
|
||||
<path class="st2" d="M1680.2,218.1c0.7,7.6-4.6,14.4-12.2,16.9c-7.1,2.4-12.8-1.1-18.5-4.8c-10.2-6.8-14.4-24.1-8.9-34.6
|
||||
c5-9.6,16.3-10.1,22.8-6.5C1673.7,194.8,1680,203.7,1680.2,218.1z"/>
|
||||
<path class="st2" d="M1801.2,272.2c-1.1,8.5-3.3,16.4-12.2,20.1c-5.5,2.3-11.6-0.3-13.7-5.9c-3.3-8.9-2-17.3,3.7-24.9
|
||||
c3.4-4.6,8-6.8,13.5-5.1c4.8,1.4,7.3,5.5,8.1,10.4C1800.8,268.5,1801,270.4,1801.2,272.2z"/>
|
||||
<path class="st2" d="M1658.9,274.7c0.3,8.6-6.3,15.3-16.2,15.5c-9.1,0.2-15.4-7.8-15.4-15.3c0-9.3,7.3-16.6,16.3-16.5
|
||||
C1652.1,258.5,1659,265.9,1658.9,274.7z"/>
|
||||
<path class="st2" d="M1838.4,320c-8.3,0.1-14.8-6.7-14.9-15.4c-0.1-8.6,5.9-14.9,14.4-15.1c8.6-0.2,15.6,6.3,15.8,14.6
|
||||
C1853.8,312.5,1846.7,319.9,1838.4,320z"/>
|
||||
<path class="st2" d="M1597.4,79.8c-0.1,5.8-4.8,11.6-9.5,11.6c-5.3,0-10.1-6.2-10-12.8c0.1-6.8,4.7-12.4,9.9-12.2
|
||||
C1592.6,66.6,1597.5,73.5,1597.4,79.8z"/>
|
||||
<path class="st2" d="M1843.1,347.6c0.1-6.1,4.4-10.3,10.5-10.2c5.7,0.1,10.5,5,10.3,10.6c-0.2,5.4-5.1,10-10.4,10
|
||||
C1847.4,358,1843,353.6,1843.1,347.6z"/>
|
||||
<path class="st6" d="M414.1,410.3c0.5-2.7,1-5.4,1.5-8.1c0.9-5.1,1.8-10.2,2.5-15.3c1.2-7.9,6.5-13.1,14.1-13.9
|
||||
c7.2-0.7,13.8,3.9,16.2,11.4c3.2,10.1,6.3,20.4,9.5,30.5c0.5,1.7,1.3,3.4,2,5.1c0.2,1,0.3,2,0.6,2.9
|
||||
c14.5,42.9,31.7,84.7,51.9,125.2c0.3,0.6,0.3,1.3,0.5,1.9c1.5-1.8,1.8-2.8,1.9-3.7c2.3-16,4.4-31.9,6.7-47.9
|
||||
c3-20.9,6.1-41.8,9.1-62.6c2-13,4-26,6.1-39c1.4-8.9,7.7-13.5,17-12.9c7.4,0.5,13.4,6.7,13,15c-0.5,8.9-2.2,17.8-3.3,26.7
|
||||
c-0.5,4.1-1.1,8.2-1.7,12.4c-2.6,17.1-5.1,34.2-7.9,51.3c-4.9,30.4-9.8,60.8-15,91.1c-1,5.5-3.2,10.9-5.1,16.2
|
||||
c-2.5,6.8-7.3,11-14.7,11.7c-7.4,0.8-11.7-3.3-15-9.3c-24-44.1-45-89.6-62.4-136.6c-0.5-1.4-1.1-2.7-1.6-4.1c-0.4,0-0.9,0-1.3,0
|
||||
c-2.9,27.4-5.8,54.7-8.7,82.2c3,0.7,5.1,1.1,7.1,1.6c-6.9,0.3-6.8,0.4-7.3,7.1c-0.6,7.1-1.3,14.2-1.9,21.3
|
||||
c-0.5,6.8-0.5,13.6-1.5,20.3c-0.7,4.5-2.6,8.8-4,13.1c-8.2,5.7-14.9,6.2-21,1.4c-4.2-3.3-6.3-7.6-6-13c0.3-5.5,0.4-11,0.7-16.5
|
||||
c0.2-2.6-1-3.6-3.4-3.6c1.3-1.1,3.6-2,3.8-3.3c0.9-8.6,1.4-17.2,2-25.9c0.3-2,0.8-3.9,1-5.9c2-19.7,3.9-39.4,6-59
|
||||
c1.3-12.7,2.8-25.4,4.3-38.1c1-5.5,2.1-10.9,2.9-16.4C413.6,419.1,413.7,414.7,414.1,410.3z"/>
|
||||
<path class="st6" d="M783.2,545.5c11.6,0.8,23.2,1.7,34.8,2.6c2,0.2,4,0.5,5.9,0.8c0,8-0.1,16,0.1,24c0.1,3.9-1.3,5.3-5.2,5.2
|
||||
c-5.6,0-11.2,0.5-16.8,0.8c-1.4,0-2.7,0-4.1,0.1c-2,0-3.9,0-5.9,0c-24.1-1-48.2-1.8-72.2-3c-7-0.3-11.9-6.9-13-14.3
|
||||
c-5.2-33.4-3.7-67-2.8-100.6c0-1.7,0-3.3,0-5c0.2-4.5,0.5-9,0.7-13.5c1-9.8,2-19.6,3.1-30.4c-1.5,1.6-2.2,2.4-3.5,3.7
|
||||
c-0.2-2.1-0.3-3.5-0.4-4.8c2.7,0.1,4.2-0.8,4.2-4c0-3.1,0.6-6.3,1-9.4c2.3-19.4,11.2-28.8,30.6-30.6c18.2-1.7,36.6-2,54.8-3
|
||||
c10.6-0.5,21.3-1,31.9-1.5c9.8,0.3,15.1,3.8,17.4,11.2c2.8,9.3-3.6,18.6-13.9,19.5c-10.1,0.9-20.3,1.3-30.4,1.9
|
||||
c-18.3,0.8-36.5,1.6-54.8,2.3c-3.1,0.1-4.8,1.3-5,4.7c-0.2,3.8-1.2,7.5-1.8,11.3c-0.7,7.5-1.5,15.1-2.1,22.7c-0.2,2.9,0,5.9,0,8.8
|
||||
c0,0.4,0,0.9,0,1.3c-0.1,0.2-0.1,0.3-0.1,0.5c-0.4,4.2-0.8,8.4-1.1,12.9c13.7,0.7,26.5,1.4,39.2,2c4.3,0.5,8.6,0.6,12.8,1.5
|
||||
c8.4,1.7,13.3,8.5,12.4,16.6c-0.9,8.2-7.6,13.7-16.3,13.5c-3.3-0.1-6.6-0.1-10-0.1c-11-0.8-22-1.5-33.5-2.3
|
||||
c-0.5,17.9-1,34.7-1.2,51.5c0,0.9,1.9,2.7,3,2.7C755.3,545.3,769.2,545.4,783.2,545.5z"/>
|
||||
<path class="st4" d="M507.1,249.2c-12.4-1.9-25.6-2.4-37.8-6.3c-10.7-3.4-20.2-10.5-30.1-16.3c-4.1-2.4-7.9-5.4-11.5-8.6
|
||||
c-3.9-3.5-4-7.3-0.1-10.6c11-9.3,22.1-18.4,33.4-27.4c3.1-2.5,6.5-4.5,9.9-6.6c6.3-3.9,13-2.5,19.4-0.9c5,1.3,9.7,4,14.5,6
|
||||
c7.4,3.1,13.7,1.2,19.2-4.1c6.5-6.3,13.7-11.3,23.2-11c4.8,0.1,9.6,0.5,14.2,1.5c13.6,2.9,25.8,9.5,38.1,15.6
|
||||
c8.8,4.3,17.7,8.4,26.6,12.5c5.6,2.6,6.3,5.3,1.5,9c-15.5,12-31.3,23.6-49.1,31.8c-11.3,5.2-23.3,8.5-35.7,10.2
|
||||
C531,245.7,519.4,247.4,507.1,249.2z"/>
|
||||
<path class="st5" d="M704,411c0.1,1.3,0.2,2.6,0.4,4.8c1.2-1.3,2-2.1,3.5-3.7c-1.1,10.8-2.1,20.6-3.1,30.5
|
||||
c-9.5-0.8-19.1-1.5-28.8-2.3c-0.3,1.2-0.6,2.2-0.6,3.1c-0.1,3.3-0.1,6.6-0.1,9.9c-1,15.3-2.2,30.5-3.1,45.8
|
||||
c-2,32.5-3.8,65.1-5.9,97.7c-0.7,10.2-7.8,16.3-17,15.4c-8.7-0.9-14.3-8.5-13.7-18.2c2.3-37.5,4.5-75.1,6.7-112.6
|
||||
c0.7-11,1.3-21.9,1.9-32.9c0.3-3.1,0.7-6.2,1-9.7c-2.6-0.2-4.5-0.4-6.5-0.4c-15.7,0-31.3,0.3-47,0c-4.8-0.1-9.6-1.7-14.4-2.6
|
||||
c-7.8-10.1-5.8-21.9,4.4-26.4c1.8-0.8,3.8-1.2,5.8-1.2c37.6,0.7,75.1,1.5,112.7,2.3C701.3,410.4,702.7,410.8,704,411z"/>
|
||||
<path class="st7" d="M530.7,435.8c-3,20.9-6.1,41.8-9.1,62.6c-2.3,16-4.5,31.9-6.7,47.9c-0.1,1-0.4,1.9-1.9,3.7
|
||||
c-0.2-0.6-0.2-1.3-0.5-1.9c-20.3-40.5-37.5-82.3-52-125.2c-0.3-0.9-0.4-1.9-0.6-2.9c6.3,1.6,12.6,3.3,19,4.9c10,2.5,20,5,30,7.1
|
||||
C516.2,433.5,523.5,434.5,530.7,435.8z"/>
|
||||
<path class="st0" d="M577.2,435.6c4.8,0.9,9.6,2.5,14.4,2.6c15.7,0.3,31.3,0,47,0c2,0,3.9,0.2,6.5,0.4c-0.4,3.5-0.7,6.6-1,9.7
|
||||
c-0.2-0.1-0.3-0.2-0.3-0.4c0.2-8.3,0.2-8.3-8.2-8.3c-12.9,0-25.8-0.1-38.8,0.1c-1.6,0-3.1,1.4-4.7,2.1c-3.7-0.6-7.4-1.2-11.1-1.8
|
||||
C579.8,438.6,578.5,437.1,577.2,435.6z"/>
|
||||
<ellipse class="st4" cx="619.9" cy="406.5" rx="36.9" ry="0.3"/>
|
||||
<path class="st5" d="M398.8,542.9c-0.6,8.6-1.1,17.3-2,25.9c-0.1,1.2-2.5,2.2-3.8,3.3c-31.3,3.5-62.5,7-93.7,10.6
|
||||
c-6.1,0.7-11.7,0-15.8-5.2c-3.6-4.7-3.6-9.9-1.4-15.1c2.2-5.1,6.4-7.3,11.7-8.1c15-2.2,29.9-4.7,44.9-6.8c3.5-0.5,4.9-1.6,4.6-5.3
|
||||
c-0.5-6.1-0.4-12.3-0.6-18.5c-0.3-10.5-0.6-21.1-0.9-31.6c0-15,0-29.9,0-45.6c-8.4,0.8-15.6,1.4-22.8,2c-8,0.8-15.9,1.6-23.9,2.4
|
||||
c-9,0.9-15.8-4.5-16.8-13.1c-0.9-7.6,4.9-14.5,13.6-15.6c9.6-1.2,19.2-1.9,28.8-2.9c23.2-2.5,46.3-5.1,69.5-7.5
|
||||
c7.9-0.8,15.9-0.9,23.9-1.4c-0.4,4.4-0.6,8.8-1.2,13.1c-0.8,5.5-1.9,10.9-2.9,16.4c-6,0.6-12,1.1-18.1,1.7
|
||||
c-7.2,0.8-14.4,1.5-21.5,2.3c0,6.9,0,13,0,19.1c0,0.5,0,0.9,0,1.4c0.1,1,0.3,2,0.4,3c0.5,25.5,1,51,1.5,76.9
|
||||
C381.6,543.7,390.2,543.3,398.8,542.9z"/>
|
||||
<path class="st5" d="M458,775.8c-7,0.9-14.1,1.6-21.1,2.8c-9,1.5-14.2,8.6-20.1,14.5c-15.1,15-30.7,29.5-49.4,39.9
|
||||
c-7.4,4.1-15.5,7.2-24.5,7.1c-19.8-0.2-39.5,0.2-59.3-0.4c-9.5-0.3-19-2.5-28.5-3.9c-6.4-0.9-12.1,1-17.3,4.6
|
||||
c-6.6,4.6-13.1,9.4-19.6,14.1c-1,0.7-2.2,1.3-3.3,1.9c0.8-1.6,1.2-3.5,2.3-4.8c12.3-13.4,25.1-26.2,36.8-40
|
||||
c8.7-10.2,14.7-22.9,24-32.4c36.2-36.7,93.7-57.4,149.7-23c6.9,4.3,13.5,9.5,21,12.4c7,2.8,14.9,3.1,22.4,4.5
|
||||
c0.2,0.2,0.4,0.4,0.5,0.6c-0.1,0.1-0.3,0.2-0.4,0.2C466.8,774.6,462.4,775.2,458,775.8z M382.2,792c0.4-0.2,0.9-0.3,1.3-0.5
|
||||
c-2.3-7.4-3.5-15.3-6.9-22.1c-13.3-26.7-47.7-29.8-65.8-6.4c-13.2,17.1-12.6,42.7,1.4,59.2c13.9,16.4,37,18.7,53.6,5.1
|
||||
C377,818.3,382,806.2,382.2,792z"/>
|
||||
<path class="st3" d="M611.2,773.2c2.8-3.4,5.3-7.1,8.6-10c7.3-6.5,14.7-3.7,16.4,5.9c1.5,9,2.7,18,4,27c-2.2,14.4-4,28.9-6.5,43.2
|
||||
c-1.3,7.1-5.6,10.2-12.1,8.4c-3.2-0.9-6.3-4.1-8.4-7c-5.3-7.5-8-15.9-7.3-25.3c0.8-10.8,1.2-21.5,2.1-32.3
|
||||
C608.3,779.7,610.1,776.5,611.2,773.2z"/>
|
||||
<path class="st3" d="M588.9,800c0.1,9.3-1.1,18.2-5.3,26.3c-1.8,3.6-5,7.7-8.4,8.8c-2,0.6-6.2-4-8.5-6.9c-4.5-5.8-4.9-12.9-5-20
|
||||
c-0.3-12.7-0.2-25.4,4.9-37.3c1.4-3.3,4.4-6.3,7.4-8.4c4.6-3.2,9.9-0.7,10.7,4.9C586.3,778.3,587.5,789.2,588.9,800z"/>
|
||||
<path class="st3" d="M657.1,812.9c1.7-9.8,3.3-19.5,5.1-29.3c0.9-5,4.8-7,9.3-7.4c4.6-0.4,5.8,3.6,6.5,6.8
|
||||
c3.6,16.1,6.7,32.3,3.8,48.8c-0.8,4.8-3.3,9.2-5,13.8c-12.3,4.9-14.9,3.8-17.4-9.3C657.9,828.8,657.8,820.8,657.1,812.9z"/>
|
||||
<path class="st3" d="M548.6,808c0.3,6.1,0,10.2-4.1,12.8c-3.5,2.2-6.5,1.6-7.1-2.4c-1.2-7.9-1.9-15.9-2.3-24
|
||||
c-0.1-1.5,2-4.2,3.5-4.5c1.6-0.4,4,1,5.5,2.3C549.7,796.9,547.7,803.8,548.6,808z"/>
|
||||
<path class="st7" d="M341.8,491.9c0.3,10.5,0.6,21.1,0.9,31.6c-6.3-6.6-12.6-13.3-18.8-19.9c-0.7-0.7-1.2-1.5-1.9-2.2
|
||||
C328.6,498.2,335.3,495.1,341.8,491.9z"/>
|
||||
<path class="st6" d="M458,775.8c4.4-0.6,8.8-1.2,13.2-1.8c0.1,0,0.3-0.2,0.4-0.2c-0.2-0.2-0.4-0.4-0.5-0.6c5.2-0.7,5.7-0.3,4.6,2.9
|
||||
C469.8,775.9,463.9,775.8,458,775.8z"/>
|
||||
<path class="st5" d="M802.1,578.9c5.6-0.3,11.2-0.8,16.8-0.8c3.9,0,5.3-1.3,5.2-5.2c-0.2-8-0.1-16-0.1-24c0.3-3,0.7-5.9,0.7-8.9
|
||||
c0.5-28.2,0.7-56.3,1.4-84.5c0.5-21.9,11.7-34.6,33.1-38.6c3.1-0.6,6.2-1.2,9.4-1.5c21.6-1.5,43.2-2.4,63.2,7.9
|
||||
c20.3,10.4,33.8,26.5,33,50.5c-0.7,20.6-12.6,35.1-29.8,45.1c-8.3,4.8-17.5,7.9-25.7,11.5c9.8,7.1,20.5,14.3,30.6,22.4
|
||||
c21.4,17.2,38.7,38,52.4,61.8c5.1,8.9,3.1,17-5.2,21.9s-16.3,2.5-21.5-6.3c-22.9-38.9-55.1-67.2-96.7-84.7c-3.5-1.5-7.2-2.7-10.8-4
|
||||
c-0.6-0.2-1.3-0.3-2.9-0.7c0,2.8,0,5.2,0,7.6c-0.2,25.5-0.4,51-0.5,76.5c0,5.7-1.6,10.5-6,14.1c-4.7,2.5-9.6,3.5-14.8,1.9
|
||||
c-7.1-2.2-10.4-7.7-10-16.8c0.1-0.1,0.2-0.2,0.2-0.3c0-0.2-0.1-0.5-0.2-0.7c-0.1-2.7-0.2-5.4-0.3-8.1l0.3,0.1
|
||||
c0.1-0.1,0.3-0.2,0.3-0.3c0-0.3-0.1-0.5-0.2-0.7c0-2,0-4,0-6c0-5.3,0.1-10.6,0.1-16c-0.1-4-0.2-8-0.3-12c-1.3-0.1-2.6-0.2-4-0.3
|
||||
c-0.7,0-1.4,0-2.1,0c-0.6,0-1.3,0-1.9,0c-2.6,0-5.2,0-7.8,0.1C806.2,579.4,804.1,579.2,802.1,578.9z M856.9,508.1
|
||||
c1.9-0.3,4.3-0.6,6.5-1.1c15.3-3.3,30.6-6.3,45.8-10c8-2,15-6.3,20.3-13c5.7-7.4,6-15.4,0.6-23.1c-4.5-6.4-10.8-10.5-18.2-12.5
|
||||
c-16.6-4.5-33.4-2.9-50.1-0.4c-3.2,0.5-5,2.1-5,5.6C856.9,471.5,856.9,489.5,856.9,508.1z"/>
|
||||
<path class="st2" d="M808.2,579.7c2.6,0,5.2,0,7.8-0.1c0.6,0,1.3,0,1.9,0c0.7,0,1.4,0,2.1,0c1.3,0.1,2.6,0.2,4,0.3
|
||||
c0.1,4,0.2,8,0.3,12c0,5.3-0.1,10.6-0.1,16c0,2,0,4,0,6c0,0.3,0,0.7-0.1,1l-0.3-0.1c-4.7-5.7-9.8-11.2-14.1-17.2
|
||||
c-3.9-5.3-7-11.2-10.8-17.4C802.7,580,805.4,579.9,808.2,579.7z"/>
|
||||
<path class="st5" d="M428.1,570.3c0.6-7.1,1.3-14.2,1.9-21.3c0.5-6.7,0.5-6.7,7.3-7.1c6.9,2,10.2,7,9.7,14.7
|
||||
c-0.4,6.9-5.4,12.6-11.9,13.4C432.7,570.2,430.4,570.2,428.1,570.3z"/>
|
||||
<path class="st1" d="M675.2,453.2c0-3.3,0-6.6,0.1-9.9c0-1,0.4-1.9,0.6-3.1c9.7,0.8,19.2,1.5,28.8,2.3c-0.2,4.5-0.5,9-0.7,13.5
|
||||
C694.4,455.1,684.8,454.1,675.2,453.2z"/>
|
||||
<path class="st3" d="M719.8,815.2c1,5.3-1,8.7-5.7,10.4c-5.5,1.9-9.6-0.7-9.9-6.5c-0.1-2.8,0.1-5.7,0.8-8.3
|
||||
c1.6-6.1,4.1-7.8,9.9-6.8c4.6,0.9,4.3,5.1,4.9,8.5C719.9,813.5,719.8,814.5,719.8,815.2z"/>
|
||||
<path class="st1" d="M592.2,441.9c1.6-0.8,3.1-2.1,4.7-2.1c12.9-0.2,25.8-0.1,38.8-0.1c8.4,0,8.4,0,8.2,8.3
|
||||
c-9.3-1.1-18.7-2.1-28-3.2C607.9,443.8,600,442.8,592.2,441.9z"/>
|
||||
<path class="st5" d="M792.1,578.9c2,0,3.9,0,5.9,0C796,578.9,794,578.9,792.1,578.9z"/>
|
||||
<path class="st6" d="M824.1,623c0.1,0.2,0.2,0.5,0.2,0.7c0,0.1-0.2,0.2-0.2,0.3C824.1,623.7,824.1,623.3,824.1,623z"/>
|
||||
<path class="st3" d="M1865.1,705.5c-0.3,6.1-2.5,10.8-6.7,14.5c-3.3,3-7.3,3.1-11.1,1.3c-4.4-2-6.5-6.1-5.8-10.6
|
||||
c0.7-4.6,2.4-9.2,4.4-13.5c1.9-4.1,5.8-5.9,10.4-5.1c4.3,0.8,6.9,3.8,7.9,8C1864.6,702,1864.8,704,1865.1,705.5z"/>
|
||||
<path class="st1" d="M1064.2,171.7c-9.4-1.4-18.1-2.9-26.8-4c-23.5-2.8-47-5.2-70.4-8c-7.1-0.9-14.1-2.3-21.1-3.9
|
||||
c-5.7-1.3-9.3-5.8-9.3-10.9c0-5,3.6-9.5,9.3-10.9c10-2.6,19.9-0.9,29.7,1.2c17.2,3.6,34.2,8.7,52,9.2c12.6,0.4,25.3,1.4,37.9,2.6
|
||||
c4.2,0.4,8.6,1.5,12.4,3.2c3.9,1.8,6.5,5.2,6.1,10c-0.4,4.5-3.2,7.4-7.2,8.7C1072.6,170.3,1068.1,170.9,1064.2,171.7z"/>
|
||||
<path class="st1" d="M985.4,103.4c18.1,1.4,36.1,2.9,54.2,4.2c6.1,0.4,12.3-0.1,18.4,0.7c4.7,0.6,9.4,2,13.7,4c2,0.9,4.2,4.1,4,6.1
|
||||
c-0.1,2-2.8,4.7-4.9,5.4c-4,1.4-8.5,2.2-12.7,2.1c-12.4-0.4-24.8-1.6-37.3-2.3c-18.8-1-37.5-1.7-56.3-2.7c-2.6-0.1-5.3-0.6-7.8-1.4
|
||||
c-4.3-1.4-6.4-4.9-6.2-9.2c0.2-4.4,3.8-5.6,7.4-5.9c6.3-0.5,12.6-0.7,18.9-0.8c2.8-0.1,5.7,0.3,8.5,0.4
|
||||
C985.4,103.8,985.4,103.6,985.4,103.4z"/>
|
||||
<path class="st1" d="M1049.2,92.5c-7.7-0.6-15-1.2-22.3-1.6c-7.6-0.4-15.3-0.4-22.9-0.9c-6.9-0.5-13.9-1.3-20.8-2.2
|
||||
c-1.8-0.2-3.8-0.9-5-2.1c-1.7-1.6-3.7-3.8-3.8-5.8c-0.1-1.4,2.7-3.8,4.6-4.2c6.6-1.2,13.4-2.8,20.1-2.4c17.1,1,34.1,3,51.2,4.7
|
||||
c1.2,0.1,2.3,0.3,3.4,0.6c3.2,1.1,6.6,2.5,6.1,6.8c-0.5,3.9-2.9,6.2-6.9,6.7C1051.5,92.2,1050.1,92.3,1049.2,92.5z"/>
|
||||
<path class="st5" d="M1101.7,504.8c0.3-3,0.4-6,0.8-8.9c1.7-10.5,7.1-15.9,17.8-15.8c11.4,0.1,22.9,1,34.3,2.3
|
||||
c11.9,1.4,23.7,3.5,35.4,5.6c8.5,1.5,11.6,4.4,11.9,10.4c0.3,6.2-4.1,12.7-10.9,14.4c-14,3.7-28,7-42.1,10.1
|
||||
c-7.6,1.7-15.4,3-23.1,3.5c-5.1,0.3-10.9,0.1-15.5-1.9C1102.2,520.8,1101.3,512.8,1101.7,504.8z"/>
|
||||
<path class="st5" d="M1189.8,397.7c-9.4-1.3-21.3-2.9-33.1-4.8c-2.2-0.3-4.4-1.4-6.4-2.5c-6.1-3.3-7.9-8.2-4.6-14.1
|
||||
c2.9-5.2,6.2-10.2,10-14.9c4.4-5.5,10.7-6.3,16.8-3.6c8.8,3.9,17.2,8.6,25.8,12.9c6.8,3.3,13.9,6.3,20.8,9.5
|
||||
c6.2,2.8,7.9,7.4,4.5,12.2c-0.9,1.3-2.8,2.4-4.4,2.5C1210.3,396,1201.3,396.7,1189.8,397.7z"/>
|
||||
<path class="st7" d="M783.2,545.5c-14-0.2-28-0.3-41.9-0.6c-1.1,0-3-1.8-3-2.7c0.3-16.8,0.8-33.6,1.2-51.5
|
||||
c11.5,0.8,22.5,1.6,33.5,2.3c0.9,6.9,1.4,13.9,2.8,20.6C777.9,524.3,780.7,534.9,783.2,545.5z"/>
|
||||
<path class="st1" d="M738.1,413.4c0.6-3.8,1.5-7.5,1.8-11.3c0.2-3.4,1.9-4.6,5-4.7c18.3-0.8,36.5-1.5,54.8-2.3
|
||||
c-0.3,1.1-0.2,2.4-0.8,3.2c-8.6,12-15,25.1-19.5,39.1c-2.1,6.7-3.7,13.6-5.5,20.4c-8.8,0.1-17.6,0.3-26.4,0.3
|
||||
c-10.9,0-10.9,0-11.6-10.9c0-0.2-0.1-0.3-0.1-0.5c-0.1-0.2,0-0.4,0.1-0.5c2.8-0.1,5.5-0.2,8.3-0.3c3.1,0.2,6.3,0.4,9.4,0.5
|
||||
c8.3,0.3,14.8-5.5,15.9-13.9c0.9-7.6-4.7-15-12.8-16.3c-4.9-0.8-9.8-1.2-14.8-1.7c-0.6,0-1.3-0.1-1.9-0.1
|
||||
C739.4,413.9,738.8,413.7,738.1,413.4z"/>
|
||||
<path class="st5" d="M1161.8,649.4c-10.6-0.1-17.7-5.4-19.6-12.7c-1.8-7.1,1.3-14,8.5-17.9c2.8-1.5,5.8-2.6,8.8-3.5
|
||||
c13.7-4,27.5-7.7,41.3-11.8c3.4-1,6.9-1,8.4,2c1.2,2.4,0.9,6.1-0.1,8.7c-1.1,2.6-3.6,4.7-5.9,6.6c-9.6,7.7-19.1,15.6-29.1,22.8
|
||||
C1169.7,646.7,1164.3,648.3,1161.8,649.4z"/>
|
||||
<path class="st0" d="M735.9,446.7c0,0.2,0.1,0.3,0.1,0.5c0.6,11,0.6,11,11.6,10.9c8.8,0,17.6-0.2,26.4-0.3c0,1.3,0.1,2.5,0.1,3.8
|
||||
c-12.8-0.7-25.5-1.3-39.3-2C735.1,455.1,735.5,450.9,735.9,446.7z"/>
|
||||
<path class="st2" d="M1412.2,511.1c-1.3,10.2-2.4,20.4-3.9,30.5c-1.8,12-5.7,23.4-12.1,33.9c-9-6-15.8-14.1-21.7-23.1
|
||||
c-19.5-30.3-23.3-63.1-12.1-96.6c10.8-32.6,35.8-50.7,68.9-57.6c6-1.2,12.1-1.5,18.2-2.3c-0.1,3.6-0.3,7.3-0.4,11
|
||||
c-0.4,22.8-6.9,43.4-21,61.6C1418.6,481,1413.3,495.3,1412.2,511.1z"/>
|
||||
<path class="st0" d="M1412.2,511.1c1.1-15.8,6.3-30.1,16.1-42.6c14.1-18.1,20.6-38.8,21-61.6c0.1-3.6,0.3-7.3,0.4-11
|
||||
c18.8-2.1,36.2,2,52.6,11.3c23.2,13.1,36.6,33.1,42.6,58.7c0.1,0.6-0.1,1.3-0.1,1.9c-16.5,1-32.2,5.5-47.5,11.4
|
||||
c-21.8,8.4-43.4,17.6-65.2,26.1C1425.7,507.8,1418.8,509.2,1412.2,511.1z"/>
|
||||
<path class="st6" d="M1479.5,843.4c9.1-1.2,16.8-2.2,24.6-3.2c2.6-0.3,5.7-1,6.1,3c0.4,3.8-1.9,4.7-5.2,5.1
|
||||
c-8.4,1-16.8,2.3-25.2,3.3c-3.5,0.4-7.9,0.8-9-3.2c-0.7-2.7,0.3-6.8,2.1-8.9c4.2-4.8,9.3-8.9,14.3-13c5.4-4.5,11.2-8.7,12.9-15.9
|
||||
c0.6-2.7,0.1-6.4-1.4-8.5c-0.9-1.3-5.4-1.6-7.1-0.5c-2.4,1.6-4.8,4.6-5.4,7.4c-0.6,3-0.5,6-4.2,5.8c-4-0.1-4.5-3.7-4.4-6.7
|
||||
c0.2-6.7,4.2-11.1,9.9-13.8c5.6-2.7,11.4-3.3,16.5,0.8c5,4,6.1,9.8,4.8,15.9c-1.5,6.9-5.4,12.5-10.8,17
|
||||
c-5.1,4.3-10.4,8.2-15.6,12.4C1481.6,840.9,1481.1,841.7,1479.5,843.4z"/>
|
||||
<path class="st6" d="M1573.6,843.8c9,0,17.3,0.1,25.6,0c3,0,5.7,0.2,5.7,3.8c0,3.3-2.3,4.4-5.4,4.5c-11.3,0.1-22.6,0.4-33.9,0.4
|
||||
c-1.7,0-4.8-1.1-4.9-2.1c-0.4-1.9,0.3-4.6,1.6-6.1c6.2-7.6,12.8-14.8,19.3-22.3c1.4-1.6,2.8-3.3,3.9-5.2c2.7-4.5,1.8-7.9-2.5-9.9
|
||||
c-4-1.9-8.7,0-10.4,4.1c-0.4,1.1-0.4,2.7-1.2,3.2c-1.5,1-3.3,1.9-5,1.8c-0.8,0-2.3-2.3-2.3-3.5c0.1-5.6,2.8-9.9,7.7-12.6
|
||||
c5.9-3.3,12-2.7,17.5,0.9c4.8,3.1,6.7,8.1,5.3,13.5c-1,3.9-2.9,7.8-5.3,11.1C1584.4,831.5,1579.1,837.3,1573.6,843.8z"/>
|
||||
<path class="st6" d="M1643.4,827.7c-1.3,4.9-1.9,10.2-4,14.7c-4.6,9.8-15.2,11.4-23.2,4.1c-9.5-8.6-11.7-27.8-4.3-38.2
|
||||
c5.4-7.7,15.7-8.7,22.5-2C1640.3,812.1,1642.6,819.3,1643.4,827.7z M1634.8,828.1c-0.2-6-1.6-11.3-5.8-15.6
|
||||
c-3.6-3.6-8-3.1-10.9,1.1c-4.6,6.5-2,22.4,4.4,27.1c4.3,3.1,8.5,2.1,10.3-2.9C1633.8,834.7,1634.1,831.3,1634.8,828.1z"/>
|
||||
<path class="st6" d="M1553.4,828.3c-0.5,10.9-5.4,19.1-13.5,22.1c-7.3,2.7-13.8,0.7-18.5-5.6c-6.6-8.9-6.9-23.6-0.3-32.3
|
||||
c4-5.3,9.3-8.7,16.3-7.6c7.8,1.2,12,6.6,14.3,13.6C1552.6,821.6,1552.8,825,1553.4,828.3z M1545.2,828.5c-0.7-3.7-0.9-6.2-1.6-8.6
|
||||
c-1-3.8-3.5-7.3-7.4-6.9c-3.2,0.3-7.2,2.4-8.9,5c-4.4,6.6-3.8,13.9,0.3,20.7c3.4,5.7,10.4,6,13.8,0.3
|
||||
C1543.4,835.6,1544.2,831.4,1545.2,828.5z"/>
|
||||
<path class="st7" d="M392,441.5c6-0.6,12-1.1,18.1-1.7c-1.4,12.7-2.9,25.4-4.3,38.1c-2,19.7-4,39.4-6,59c-0.2,2-0.7,3.9-1,5.9
|
||||
c-8.6,0.4-17.2,0.9-26.5,1.3c-0.5-25.9-1-51.4-1.5-76.9C377.9,458.7,384.9,450.1,392,441.5z"/>
|
||||
<path class="st5" d="M738.1,413.4c0.6,0.3,1.3,0.5,1.9,0.8c0.6,0,1.3,0.1,1.9,0.1c4.9,0.6,9.9,0.9,14.8,1.7
|
||||
c8.1,1.3,13.7,8.7,12.8,16.3c-1,8.4-7.6,14.1-15.9,13.9c-3.2-0.1-6.3-0.3-9.4-0.5c-2.7-0.3-5.5-0.7-8.2-1c0-2.9-0.2-5.9,0-8.8
|
||||
C736.6,428.5,737.4,421,738.1,413.4z"/>
|
||||
<path class="st0" d="M736,444.9c2.7,0.3,5.5,0.7,8.2,1c-2.8,0.1-5.5,0.2-8.3,0.3C736,445.7,736,445.3,736,444.9z"/>
|
||||
<path class="st2" d="M392,441.5c-7,8.6-14.1,17.2-21.1,25.8c-0.1-1-0.3-2-0.4-3c0-0.5,0-0.9,0-1.4c0-6.1,0-12.2,0-19.1
|
||||
C377.6,443,384.8,442.3,392,441.5z"/>
|
||||
<path class="st7" d="M370.4,462.9c0,0.5,0,0.9,0,1.4C370.4,463.8,370.4,463.4,370.4,462.9z"/>
|
||||
<path class="st8" d="M382.2,792c-0.3,14.2-5.2,26.3-16.4,35.5c-16.6,13.5-39.7,11.2-53.6-5.1c-14-16.5-14.6-42.1-1.4-59.2
|
||||
c18-23.4,52.5-20.3,65.8,6.4c3.4,6.8,4.7,14.7,6.9,22.1C383.1,791.7,382.7,791.8,382.2,792z"/>
|
||||
<path class="st2" d="M856.9,508.1c0-18.6,0-36.6,0-54.5c0-3.5,1.8-5.1,5-5.6c16.7-2.5,33.5-4.1,50.1,0.4c7.4,2,13.7,6,18.2,12.5
|
||||
c5.4,7.7,5.1,15.7-0.6,23.1c-5.2,6.7-12.2,11-20.3,13c-15.2,3.8-30.5,6.8-45.8,10C861.1,507.4,858.8,507.7,856.9,508.1z"/>
|
||||
<path class="st6" d="M824.2,608c0-5.3,0.1-10.6,0.1-16C824.2,597.3,824.2,602.7,824.2,608z"/>
|
||||
<path class="st6" d="M824,580c-1.3-0.1-2.6-0.2-4-0.3C821.3,579.8,822.7,579.9,824,580z"/>
|
||||
<path class="st6" d="M818,579.7c-0.6,0-1.3,0-1.9,0C816.7,579.6,817.3,579.6,818,579.7z"/>
|
||||
<path class="st6" d="M824.1,615c0-0.3,0-0.7,0.1-1c0.1,0.2,0.2,0.5,0.2,0.7C824.3,614.8,824.2,614.9,824.1,615z"/>
|
||||
<path class="st6" d="M741.9,414.3c-0.6,0-1.3-0.1-1.9-0.1C740.7,414.2,741.3,414.3,741.9,414.3z"/>
|
||||
<path class="st1" d="M1634.8,828.1c-0.7,3.2-1,6.6-2.1,9.7c-1.8,5-6,6.1-10.3,2.9c-6.4-4.7-9-20.6-4.4-27.1c3-4.2,7.4-4.7,10.9-1.1
|
||||
C1633.2,816.8,1634.5,822.2,1634.8,828.1z"/>
|
||||
<path class="st1" d="M1545.2,828.5c-1,2.9-1.8,7.1-3.8,10.5c-3.4,5.7-10.4,5.3-13.8-0.3c-4.1-6.8-4.7-14-0.3-20.7
|
||||
c1.8-2.6,5.8-4.7,8.9-5c3.9-0.4,6.3,3.1,7.4,6.9C1544.2,822.4,1544.5,824.8,1545.2,828.5z"/>
|
||||
<path class="st9" d="M86.1,467c0,0,20.4,14.8,41.9,0"/>
|
||||
<path class="st10" d="M426.5,212.6c0,0,28.9-12.5,48.3-12.3c19.4,0.3,38.3,2.3,71.5-6.1c33.2-8.4,81.8,3.6,81.8,3.6"/>
|
||||
<g>
|
||||
<path class="st7" d="M709,987L709,987c88.3,0,176.7,0,265,0l0,0H709z"/>
|
||||
<path class="st7" d="M464.8,648.6c12.7,13,25.2,26.2,38.1,39c7.7,7.6,16.2,14.4,24.1,21.9c17.2,16.4,35.8,31.1,55.1,44.8
|
||||
c9.4,6.7,19.3,12.7,29,18.9c2.8-3.4,5.3-7.1,8.6-10c7.3-6.5,14.7-3.7,16.4,5.9c1.5,9,2.7,18,4,27c2.1,2,4.3,3.9,6.4,5.9
|
||||
c3.6,3.6,7,7.2,10.5,10.9c1.7-9.8,3.3-19.5,5.1-29.3c0.9-5,4.8-7,9.3-7.4c4.6-0.4,5.8,3.6,6.5,6.8c3.6,16.1,6.7,32.3,3.8,48.8
|
||||
c-0.8,4.8-3.3,9.2-5,13.8c2.3,4.2,5,8.3,6.8,12.7c5.8,14.9,11.5,29.9,16.9,45c5.5,15.4,8.4,31.3,9.3,47.4
|
||||
c22.7-4.8,31.9,0.8,41.5,1.9c12.1,1.3,115.8,33.4,221,30.8c-1.3-2.5-2.5-5.1-3.9-7.5c-9-15.5-16.4-31.7-19.9-49.2
|
||||
c-5-24.9-5.5-50,0.2-74.9c3.6-15.5,8.2-30.7,18.8-43.3c2.8-3.4,5.8-6.6,8.5-10c10.4-12.9,18.3-27.1,23-43
|
||||
c5.9-19.9,10.3-40,8.3-60.9c-0.8-8.9-2.9-17.6-4.4-26.4c-35,2.3-70.1,4.9-104.6-4.3c-18.2-4.8-35-12.6-49.4-25
|
||||
c-4.7,2.5-9.6,3.5-14.8,1.9c-7.1-2.2-10.4-7.7-10-16.8c0-0.3,0-0.6,0-1c-0.1-2.7-0.2-5.4-0.3-8.1c-4.7-5.7-9.8-11.2-14.1-17.2
|
||||
c-3.9-5.3-7-11.2-10.8-17.4c3.8-0.2,6.6-0.4,9.3-0.6c-2-0.3-4.1-0.5-6.1-0.8c-1.4,0-2.7,0-4.1,0.1c-2,0-3.9,0-5.9,0
|
||||
c-24.1-1-48.2-1.8-72.2-3c-7-0.3-11.9-6.9-13-14.3c-5.2-33.4-3.6-67-2.8-100.6c0-1.7,0-3.3,0-5c-9.6-0.9-19.2-1.9-28.8-2.8
|
||||
c-1,15.3-2.2,30.5-3.1,45.8c-2,32.6-3.8,65.1-5.9,97.7c-0.6,10.2-7.8,16.3-17,15.4c-8.7-0.9-14.3-8.5-13.7-18.2
|
||||
c2.3-37.5,4.5-75.1,6.7-112.6c0.6-11,1.3-21.9,1.9-32.9c-0.1-0.1-0.3-0.2-0.3-0.4c-9.3-1.1-18.7-2.1-28-3.2
|
||||
c-7.9-0.9-15.7-1.9-23.6-2.9c-3.7-0.6-7.4-1.2-11.1-1.8c-6.4-0.7-12.8-1.5-19.2-2.2c-2.6,17.1-5.1,34.2-7.9,51.3
|
||||
c-4.9,30.4-9.8,60.8-15,91.1c-0.9,5.5-3.2,10.9-5.1,16.2c-2.5,6.8-7.3,11-14.7,11.7c-7.4,0.8-11.7-3.3-15-9.3
|
||||
c-24-44.1-45-89.6-62.4-136.7c-0.5-1.4-1.1-2.7-1.6-4.1c-0.4,0-0.9,0-1.3,0c-2.9,27.4-5.8,54.7-8.7,82.2c3,0.7,5.1,1.1,7.2,1.6
|
||||
c6.9,2,10.2,7,9.7,14.7c-0.4,6.9-5.4,12.6-11.9,13.4c-2.3,0.3-4.7,0.2-7,0.3c-0.5,6.8-0.5,13.6-1.5,20.3c-0.7,4.5-2.6,8.8-4,13.1
|
||||
c5.1,5.7,10.2,11.6,15.5,17.2C446.8,630.2,455.9,639.4,464.8,648.6z M705,810.8c1.6-6.1,4.1-7.8,9.9-6.8c4.6,0.9,4.3,5.1,4.9,8.5
|
||||
c0.2,1,0,2,0,2.7c1,5.3-1,8.7-5.7,10.4c-5.5,1.9-9.6-0.7-9.9-6.5C704.1,816.3,704.3,813.4,705,810.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M349.9,937.4c64.3,29.9,88.4,38.3,108.2,26.8s52.7-16.1,64.9-7.7c12.3,8.4,75.8,42.8,137.9,12.6
|
||||
c3.2-1.5,6.2-3,9.1-4.3c0-1.3,0-2.5-0.1-3.8c-0.2-6.7-1.9-13.6-7.8-17.6c-4.6-3.1-10.2-4.6-15.1-7.4c-6.6-3.7-13.9-6.8-19-12.1
|
||||
s-8.4-12.7-11.2-19.7c-3.2-8.1-8.5-13.8-15.8-17.9c-18.7-10.6-39-16.7-59.6-22.5c-5.5-1.5-11.2-3.4-15.9-6.5
|
||||
c-9.2-6-14.6-15.3-18.5-25.4c-3.9-10.1-6.8-20.5-10.5-30.6c-4-10.9-10.2-20.1-21-25.4c-5.9-0.1-11.8-0.1-17.7-0.2
|
||||
c-7,0.9-14.1,1.6-21.1,2.8c-9,1.5-14.2,8.5-20.1,14.5c-15.1,15-30.7,29.5-49.4,39.9c-7.4,4.1-15.5,7.2-24.5,7.1
|
||||
c-19.8-0.2-39.5,0.2-59.3-0.4c-9.5-0.3-19-2.5-28.5-3.9c-6.4-0.9-12.1,1-17.3,4.6c-6.6,4.6-13,9.4-19.6,14.1
|
||||
c-1,0.7-2.2,1.3-3.3,1.9c-3.8,4.8-7.4,9.7-11.3,14.5c-7.9,9.6-14.5,19.8-12.5,32.9c1.8,12.2,0.7,24.1-1.4,36.2
|
||||
c-0.4,2.6-0.6,5.2-0.5,7.7C247.8,933.5,311.7,919.7,349.9,937.4z"/>
|
||||
<path class="st3" d="M216,987L216,987c151,0,302,0,453,0l0,0H216z"/>
|
||||
</g>
|
||||
<path class="st0" d="M86.1,967.3c25.1,0,62.8-9.9,103.1-19.7c-0.1-2.6,0-5.1,0.5-7.8c2.1-12,3.2-24,1.4-36.2
|
||||
c-2-13.1,4.6-23.3,12.5-32.9c3.9-4.7,7.5-9.6,11.3-14.5c0.8-1.6,1.2-3.5,2.3-4.7c12.3-13.4,25.1-26.2,36.8-40
|
||||
c8.7-10.2,14.7-22.9,24-32.4c36.2-36.7,93.7-57.4,149.7-23c6.9,4.3,13.5,9.4,21,12.4c7,2.8,14.9,3.1,22.4,4.5
|
||||
c5.2-0.7,5.7-0.3,4.6,2.9c10.8,5.3,17.1,14.5,21,25.4c3.7,10.2,6.6,20.6,10.5,30.6s9.3,19.4,18.5,25.4c4.7,3.1,10.4,5,15.9,6.5
|
||||
c20.5,5.8,40.9,11.9,59.6,22.5c7.3,4.1,12.5,9.8,15.8,17.9c2.8,7,6.1,14.4,11.2,19.7c5,5.3,12.4,8.4,19,12.1
|
||||
c4.9,2.7,10.6,4.2,15.1,7.4c5.9,4,7.6,11,7.8,17.6c0,1.3,0.1,2.5,0.1,3.8c16.8-7.6,29.7-11.9,39.8-14c-0.9-16.1-3.8-32-9.3-47.4
|
||||
c-5.4-15.1-11-30.1-16.9-45c-1.7-4.5-4.5-8.5-6.8-12.7c-12.3,4.9-14.9,3.8-17.4-9.3c-1.5-7.7-1.6-15.7-2.3-23.6
|
||||
c-3.5-3.6-7-7.3-10.5-10.9c-2-2-4.3-3.9-6.4-5.9c-2.1,14.4-4,28.9-6.5,43.2c-1.3,7.1-5.6,10.2-12.1,8.4c-3.2-0.9-6.3-4.1-8.4-7
|
||||
c-5.3-7.5-8-15.9-7.3-25.3c0.8-10.8,1.2-21.5,2.1-32.3c0.3-3.4,2.1-6.6,3.2-9.8c-9.7-6.3-19.6-12.3-29-18.9
|
||||
c-19.3-13.7-37.9-28.4-55.1-44.8c-7.9-7.5-16.4-14.3-24.1-21.9c-12.9-12.8-25.4-25.9-38.1-39c-9-9.2-18-18.4-26.8-27.8
|
||||
c-5.3-5.6-10.3-11.4-15.5-17.2c-8.2,5.7-14.9,6.2-21,1.4c-4.2-3.3-6.3-7.6-6-13c0.3-5.5,0.4-11,0.7-16.5c0.2-2.6-1-3.6-3.4-3.6
|
||||
c-31.3,3.5-62.5,7-93.7,10.6c-6.1,0.7-11.7,0-15.8-5.2c-3.6-4.7-3.6-9.9-1.4-15.1c2.2-5.1,6.4-7.3,11.7-8.1
|
||||
c15-2.2,29.9-4.7,44.9-6.8c3.5-0.5,4.9-1.6,4.6-5.3c-0.5-6.1-0.4-12.3-0.6-18.5c-6.3-6.6-12.6-13.3-18.8-19.9
|
||||
c-0.7-0.7-1.2-1.5-1.9-2.2c-11.8,3.5-23.8,5.7-36.2,5.8c-18.5,0.1-36.2-4.2-53.5-10.1c-16.5-5.6-33-11.5-49.4-17.4
|
||||
c-2.8-1-5.5-2.3-8.2-3.4c4.1,5.4,8.3,10.8,12.3,16.2c4.8,6.6,9.8,13,13.9,20c4.4,7.5,2.3,13.1-5.9,15.6c-6.1,1.8-12.7,2.5-19.1,2.7
|
||||
c-11,0.3-17.9,6.3-17.8,17.5c0,10.8,1.2,21.6,1.4,32.4c0.2,12.3,1.6,24.8-0.4,36.8c-3.4,21.1-18.3,33.8-40.1,37.4
|
||||
c-11.5,1.9-22.8,1-34.1-1.7c-29-6.9-57.2-16.6-85-27.3C0,722,0,818.2,0,914.3C0,914.4,24.6,967.3,86.1,967.3z M566.5,770.9
|
||||
c1.4-3.3,4.4-6.3,7.4-8.4c4.6-3.2,9.9-0.7,10.7,4.9c1.6,10.8,2.9,21.7,4.3,32.6c0.1,9.3-1.1,18.2-5.3,26.3c-1.8,3.6-5,7.7-8.4,8.8
|
||||
c-2,0.6-6.2-4-8.5-6.9c-4.5-5.8-4.9-12.9-5-20C561.4,795.6,561.4,782.8,566.5,770.9z M538.6,790c1.6-0.4,4,1,5.5,2.3
|
||||
c5.6,4.7,3.6,11.6,4.5,15.8c0.3,6.1,0,10.2-4.1,12.8c-3.5,2.2-6.5,1.6-7.1-2.4c-1.2-7.9-1.9-15.9-2.3-24
|
||||
C535,792.9,537.1,790.3,538.6,790z"/>
|
||||
<path class="st3" d="M2021.8,852.8c-39.7,16.8-79.3,33.6-119,50.3c-18.1,7.6-37.2,8.5-56.5,6.8c-2.1-0.2-5-2.3-5.8-4.2
|
||||
c-3.8-8.3-6.6-17.1-10.6-25.3c-2.2-4.4-5.6-8.6-9.3-11.8c-5.7-4.9-6.3-8.5-0.5-13.3c3.7-3,8-5.4,11.8-8.4
|
||||
c10.7-8.4,10.4-27.3-0.7-35.5c-7.7-5.7-16.5-7.6-25.9-7.3c-6.3,0.2-6.5-0.2-5.1-6.5c1.2-5.5,2.2-11,3.1-16.6
|
||||
c0.6-3.9-1.3-6.7-4.9-8.3s-7.4-3.1-10.9-4.9c-2.6-1.3-5.5-2.7-7.6-4.7c-5.4-5.1-5.1-9.8,0.5-14.6c7.4-6.4,14.8-12.9,22.4-19.1
|
||||
c12.8-10.3,16.6-24.6,19.2-39.9c2.7-16.1,5.8-32.1,9.9-47.8c6.5-24.9,22.7-42.9,44.7-55.2c13.4-7.5,28.2-12.6,42.3-18.7
|
||||
c-4.3-2.3-8.5-4.8-13-6.9c-23.4-10.7-46.9-21.3-70.4-31.9c-3.8-1.7-7.7-3-11.5-4.6c-2.3,4.9-6.8,7.2-11.7,6.9
|
||||
c-12.3-0.7-24.5-1.9-36.7-3.2c-10.9-1.2-21.7-2.7-32.5-4.4c-11.1-1.7-22.3-3.4-33.2-5.9c-8.6-2-9.9-9.1-4-15.8
|
||||
c5.5-6.2,12.5-9.6,19.6-13.2c-10.4-3.1-20.8-6.4-31.3-9.1c-10.9-2.8-21.8-5.6-32.8-7.5c-12.4-2.1-25-3.2-37.5-4.5
|
||||
c-2.7-0.3-5.5-0.5-8.2-0.7c0,0,0,0,0,0c-24.5-8.2-75.9,0.8-83.5,2.2c-12,2-23.5,5.6-34.8,10.1c-21.9,8.4-43.4,17.6-65.2,26.1
|
||||
c-6.4,2.5-13.3,3.9-19.9,5.8c-1.2,9.6-2.3,19.2-3.7,28.7c-21.7,18-41.2,58-50.7,79.6c-13.1,10.7-26.9,20.1-42.6,26.9
|
||||
c-0.9,0.4-1.8,0.9-2.7,1.2c-15.1,5-22.9,17.4-18.9,32.9c2.9,11.5,7.3,22.7,12.1,33.6c6.7,15.1,11,30.4,11,47.2
|
||||
c0,16.2-7.2,26.8-20.5,34.7c-6,3.5-11.9,6.2-18.8,3.8c-3.8-1.3-7.4-3.6-10.8-5.8c-11.5-7.7-17.9-17.7-16.9-32.4
|
||||
c1-13.7,1.2-27.4,8.3-39.6c2.9-5,6.4-9.7,9.9-14.3c8.7-11.4,11.4-23.3,6.2-37.3c-5.2-14.1-21.8-18.3-32.4-7.5
|
||||
c-7.2,7.4-14.1,15.2-21.8,22.1c-11.1,10.1-23.9,16.3-39.6,15c-5.6-0.5-11.4,0.7-17,1.8c-1.9,0.4-4.2,3-4.8,5
|
||||
c-1.2,4.2-2.2,8.8-2,13.2c1.2,21.6,2.5,43.2,4.3,64.8c2,24.8,7.4,49,14.4,72.8c3.9,13.2,4.1,26.7-1.7,39.6
|
||||
c-5.1,11.5-14.4,18.1-26.6,20c-7.3,1.1-13.6-2.9-18.7-7.7c-13.1-12.4-17.5-27.8-14.7-45.4c4.7-29.4,9.8-58.7,14.2-88.2
|
||||
c3.5-23.7,3.4-47.4-3.2-70.8c-4-14.2-13.7-21.9-27.3-25.2c-11.8-2.9-28.4,8.6-28.9,26.6c-0.3,11-0.8,22-1.3,33
|
||||
c-0.5,12.6-10.4,19-22.8,14.1c-11.4-4.5-13.9-10-11.1-21c2.9-11.3,7-22.2,10.2-33.4c1.7-6.1,3-12.3,4.1-18.5c0.9-5.3-1.9-9-8.4-11
|
||||
c-3.5-1-7.1-1.8-10.8-1.8c-8.3-0.2-16.7,0-25,0.1c1.5,8.8,3.6,17.6,4.4,26.4c2,20.9-2.4,41-8.3,60.9c-4.7,16-12.6,30.1-23,43
|
||||
c-2.8,3.4-5.7,6.7-8.5,10c-10.5,12.6-15.2,27.8-18.8,43.3c-5.8,24.9-5.2,50-0.2,74.9c3.5,17.5,10.9,33.7,19.9,49.2
|
||||
c1.4,2.5,2.7,5,3.9,7.5c21-0.5,42-2.4,62.4-6.3c122.6-23,268.1,6.1,287.2-4.6c19.2-10.7,27.6-26,96.5-2.3s127.9-32.9,271.2-35.2
|
||||
c143.2-2.3,115.7,42.1,140.2,36.8s20.8-43.5,93-39.1s124.6,28.9,125.3,30.6c0-40.4,0-80.8,0-121.2
|
||||
C2039.3,845.6,2030.5,849.2,2021.8,852.8z M1707.4,600.3c3-3,6.3-2.2,9.8-1.7c13.4,1.9,26.9,3.6,40.3,5.6c4.2,0.6,8.4,1.6,12.5,2.9
|
||||
c7.1,2.3,10.1,7.7,9.9,17.5c-0.7,8.3-4.4,17.9-12.2,25.4c-3.3,3.2-7.7,5.4-12.6,2.2c-10-6.6-20.2-12.9-29.9-19.9
|
||||
c-6.3-4.5-12.3-9.4-17.7-14.8C1701.9,612.1,1702.4,605.2,1707.4,600.3z M1790.3,831.4c-15.3,13-33,20.7-52.7,24.8
|
||||
c-17.7,3.7-35.8,6.6-52,15.3c-2.8,1.5-5.6,3.1-7.8,5.3c-14.5,14.1-32.5,21.1-51.8,25.1c-25.8,5.4-51.9,8.3-78.3,8.5
|
||||
c-29.2,0.3-57.9-2-85-14.3c-26.7-12.1-41.5-36.6-38.9-65.8c2.9-33.1,17.6-59,47.1-75.4c16.2-9,34-13.8,52.1-16.5
|
||||
c14-2.1,28.1-4,42.2-3.8c26.6,0.3,52.5,5.5,75.5,19.7c17,10.5,30.3,25.4,43.1,40.6c4.9,5.8,9.9,11.8,14,18.2
|
||||
c11.4,18,28.7,22.5,48.4,21.8c16.7-0.7,32.5-4.7,47.5-12.1c1-0.5,2.2-0.8,3.3-1.1c0.4-0.1,0.9,0.1,2.7,0.3
|
||||
C1796.1,825.4,1793.5,828.7,1790.3,831.4z"/>
|
||||
<path class="st2" d="M1374.3,602.9c0.2-0.2,95-98.2,75.2-215.1c-12.2-71.8-29.5-105.7-41.1-121.1c-1.2-2.3-2.4-4.5-3.7-6.7
|
||||
c-13.1-22.2-29.4-41.6-49.2-58c-21.7-18-46.1-31.3-72.7-40.4c-4.7-1.7-9.4-3.5-14.1-5.3c-2.1-0.2-4.3-0.3-6.4-0.7
|
||||
c-11-2.4-21.9-5.3-33-7.1c-9-1.5-18.2-2-27.3-2c-9.8,0-19.7,1-29.6,1.7c-2.4,0.2-4.8,0.9-7.2,1.4c-1.8,4.4-3.9,8.8-4.8,13.4
|
||||
c-3.1,10.5-7.4,20.2-16,27.5c-3.6,3.1-7.4,6.1-10.9,9.4c-15.1,14.3-33.2,20.7-53.8,19.9c-17.7-0.7-35.5-2-53.2-3.2
|
||||
c-10.1-0.7-20.2-1.6-30.3-2.4c-0.4,0.5-0.6,1.2-1.1,1.5c-14,8.9-28.6,17.1-41.9,27c-19.5,14.6-39.1,29.3-56.6,46.2
|
||||
c-24.3,23.5-46.6,49-69.7,73.6c9.8,0.3,15.1,3.8,17.4,11.2c2.8,9.3-3.7,18.6-13.9,19.5c-10.1,0.9-20.3,1.3-30.4,1.9
|
||||
c-0.2,1.1-0.2,2.4-0.8,3.2c-8.6,12-15.1,25.1-19.5,39.1c-2.1,6.8-3.7,13.6-5.5,20.4c0.1,1.3,0.1,2.5,0.1,3.8
|
||||
c4.2,0.5,8.6,0.7,12.8,1.5c8.4,1.6,13.3,8.4,12.4,16.6c-1,8.2-7.6,13.7-16.3,13.5c-3.4-0.1-6.7-0.1-10-0.1
|
||||
c0.9,6.8,1.4,13.8,2.8,20.6c2.2,10.7,5,21.3,7.5,31.9c11.6,0.9,23.2,1.7,34.8,2.6c1.9,0.2,3.9,0.5,5.9,0.8c0.2-3,0.7-5.9,0.7-8.9
|
||||
c0.5-28.2,0.7-56.4,1.4-84.5c0.5-21.9,11.7-34.6,33.1-38.6c3.1-0.6,6.3-1.3,9.4-1.5c21.6-1.5,43.3-2.3,63.2,7.9
|
||||
c20.3,10.4,33.8,26.5,33,50.5c-0.7,20.6-12.6,35.1-29.8,45.1c-8.3,4.8-17.5,7.9-25.7,11.5c9.8,7.1,20.6,14.3,30.6,22.4
|
||||
c21.4,17.2,38.7,38,52.4,61.8c5.1,8.8,3.1,17-5.2,21.9c-8.3,5-16.3,2.5-21.5-6.3c-22.9-38.9-55-67.2-96.7-84.7
|
||||
c-3.6-1.5-7.2-2.7-10.8-4c-0.6-0.2-1.3-0.3-2.9-0.7c0,2.8,0,5.2,0,7.6c-0.2,25.5-0.5,51-0.5,76.5c0,5.6-1.6,10.4-6,14.1
|
||||
c14.4,12.4,31.2,20.2,49.4,25c34.5,9.2,69.6,6.6,104.6,4.3c8.3-0.1,16.7-0.3,25-0.1c3.6,0.1,7.3,0.8,10.8,1.8c6.5,2,9.3,5.7,8.4,11
|
||||
c-1.1,6.2-2.4,12.4-4.1,18.5c-3.3,11.2-7.3,22.1-10.2,33.4c-2.9,11-0.3,16.5,11.1,21c12.4,4.9,22.2-1.5,22.8-14.1
|
||||
c0.5-11,1-22,1.3-33c0.5-18,17.1-29.4,28.9-26.6c13.6,3.3,23.3,11,27.3,25.2c6.6,23.3,6.7,47.1,3.2,70.8
|
||||
c-4.4,29.4-9.5,58.8-14.2,88.2c-2.9,17.6,1.6,33,14.7,45.4c5.1,4.8,11.4,8.8,18.7,7.7c12.2-1.9,21.5-8.5,26.6-20
|
||||
c5.8-12.9,5.6-26.4,1.7-39.6c-7-23.8-12.4-48-14.4-72.8c-1.8-21.6-3.1-43.2-4.3-64.8c-0.3-4.4,0.7-9,2-13.2c0.6-2,2.9-4.6,4.8-5
|
||||
c5.6-1.1,11.4-2.3,17-1.8c15.7,1.3,28.5-4.9,39.6-15c7.6-6.9,14.6-14.7,21.8-22.1c10.6-10.8,27.2-6.6,32.4,7.5
|
||||
c5.2,14,2.5,25.9-6.2,37.3c-3.6,4.6-7,9.3-9.9,14.3c-7.1,12.2-7.3,25.9-8.3,39.6c-1,14.7,5.4,24.7,16.9,32.4
|
||||
c3.4,2.2,7,4.5,10.8,5.8c6.9,2.3,12.8-0.3,18.8-3.8c13.3-7.9,20.5-18.5,20.5-34.7c0-16.8-4.3-32.1-11-47.2
|
||||
c-4.8-10.9-9.2-22.1-12.1-33.6c-4-15.5,3.8-27.9,18.9-32.9c0.9-0.3,1.8-0.8,2.7-1.2c17.4-7.7,32.8-18.5,47.2-30.8
|
||||
c-0.1-0.1-0.2-0.2-0.4-0.3C1365.9,611.9,1370.3,607.4,1374.3,602.9z M1125.9,526.4c-5.2,0.4-10.9,0.1-15.5-1.9
|
||||
c-8.1-3.7-9.1-11.7-8.7-19.7c0.3-3,0.4-6,0.9-8.9c1.7-10.5,7.1-15.9,17.8-15.8c11.4,0.1,22.9,1,34.3,2.3
|
||||
c11.8,1.4,23.6,3.5,35.4,5.6c8.5,1.5,11.6,4.4,11.9,10.4c0.4,6.1-4.1,12.6-10.9,14.4c-13.9,3.6-28,7-42.1,10.1
|
||||
C1141.4,524.6,1133.7,525.9,1125.9,526.4z M1209,614.2c-1,2.6-3.6,4.7-5.9,6.6c-9.6,7.8-19.1,15.6-29.1,22.8
|
||||
c-4.3,3.1-9.7,4.6-12.2,5.8c-10.7,0-17.7-5.4-19.7-12.7c-1.8-7,1.3-14,8.5-17.9c2.8-1.5,5.8-2.6,8.8-3.5c13.8-4,27.6-7.8,41.3-11.8
|
||||
c3.4-1,6.9-1,8.4,2C1210.3,607.9,1210,611.6,1209,614.2z M1223.5,392.5c-1,1.2-2.8,2.3-4.4,2.5c-8.9,1-17.8,1.7-29.3,2.7
|
||||
c-9.4-1.3-21.2-2.9-33.2-4.7c-2.2-0.4-4.4-1.4-6.4-2.5c-6.1-3.2-7.9-8.2-4.6-14.1c2.9-5.2,6.3-10.3,10-14.9
|
||||
c4.5-5.5,10.7-6.3,16.8-3.6c8.7,3.9,17.1,8.7,25.8,12.9c6.9,3.3,13.9,6.3,20.8,9.5C1225.2,383.2,1227,387.7,1223.5,392.5z"/>
|
||||
<path class="st0" d="M1452.1,412.9c0.5,0.3,1,0.7,1.5,1c25.9,16.6,48.4,39.7,67,57.8c3.8-1,7.6-1.8,11.5-2.4
|
||||
c7.6-1.4,59-10.4,83.5-2.2c0,0,0,0,0,0c2.3,0.2,4.5,0.4,6.8,0.6c0.3-1.3,0.4-2.6,0.3-4c-1-20.8-77.9-134.8-77.9-134.8l-106.3-6.1
|
||||
c0,0-1.1,1.8-2.7,4.9c4.8,16.3,9.5,36.2,13.6,60.3C1450.9,396.3,1451.8,404.6,1452.1,412.9z"/>
|
||||
<g>
|
||||
<path id="letter-q" class="st5" d="M1362.2,616c-17.5-14.5-31.8-31.7-41.3-52.5c-22.6-49.2-23.9-98.5,1.9-147
|
||||
c12.3-23.1,29.9-41.8,53.3-53.9c18.2-9.5,37.7-15.7,58.2-18.5c1.5-0.2,2.9-0.5,4.4-0.8c20.1-1.4,40-0.6,59.3,5.6
|
||||
c53.7,17.3,87,53.1,99,108.5c0.6,2.9,1.4,5.8,2.1,8.6c3,19.3,4.8,38.9,0.4,58c-2.9,12.8-7.7,25.4-13.2,37.4
|
||||
c-8,17.5-18.1,33.9-32.3,47.3c-2.3,2.2-2,4.1,0.2,6.3c6,6.2,10.3,13.3,12.6,21.7c4.1,14.8-3.6,25.5-18.9,26.2
|
||||
c-12.8,0.5-23.4-5.3-32-13.8c-7.4-7.3-13.7-10.4-25.1-7.9c-15.2,3.3-31.4,2.8-47.1,2.3c-10.6-0.3-21.1-3.5-31.7-5.3
|
||||
c-14.7-2.4-27.9-8.5-40.5-16.3C1368.2,620,1365.2,618,1362.2,616z M1449.7,395.9c-6.1,0.7-12.3,1-18.2,2.3
|
||||
c-33.2,6.9-58.1,25-68.9,57.6c-11.2,33.5-7.4,66.4,12.1,96.7c5.8,9,12.6,17.1,21.7,23.1c1.4,0.9,2.7,1.8,4.2,2.6
|
||||
c16.8,9.4,35.3,11.8,53.9,13.8c4.4,0.5,8.8,0.1,13.8,0.1c-1.2-2.3-2.1-3.9-2.9-5.5c-6.2-12.6-13-25-18.4-37.9
|
||||
c-5.5-13.3,2.7-24.6,16.8-26.2c8.6-1,15.5,3.7,20.6,10.8c4.7,6.4,9.2,13,14,19.3c5.3,7.1,10.9,14,16.6,21.2c1.5-1.3,2.6-2,3.2-2.9
|
||||
c5.7-8.3,11.7-16.4,17-25c13-20.8,16.7-43.5,12.6-67.6c-0.6-3.6-1.9-7-2.9-10.5c0.1-0.6,0.3-1.3,0.1-1.9
|
||||
c-6-25.5-19.4-45.6-42.6-58.7C1485.9,397.9,1468.4,393.8,1449.7,395.9z"/>
|
||||
<animateTransform attributeName="transform"
|
||||
attributeType="XML"
|
||||
id="rot1"
|
||||
type="rotate"
|
||||
from="-12 1450 390"
|
||||
to="8 1460 390"
|
||||
dur="1.5s"
|
||||
begin="0;rot2.end"/>
|
||||
<animateTransform attributeName="transform"
|
||||
attributeType="XML"
|
||||
id="rot2"
|
||||
type="rotate"
|
||||
from="8 1460 390"
|
||||
to="-12 1450 390"
|
||||
dur="1.5s"
|
||||
begin="rot1.end"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 47 KiB |
8
www/img/icons/email.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" 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 24 24"
|
||||
xml:space="preserve">
|
||||
<path d="M20,4H4C2.9,4,2,4.9,2,6l0,12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,8l-8,5L4,8V6l8,5l8-5V8z"/>
|
||||
<path fill="none" d="M0,0h24v24H0V0z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 507 B |
13
www/img/icons/facebook-white.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" 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 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill-rule="evenodd" fill="#FBFBFB" d="M2.8,2.8c6.1,0,12.3,0,18.4,0c0,0.2,0,0.4,0,0.5c0,5.8,0,11.6,0,17.4
|
||||
c0,0.4-0.1,0.5-0.5,0.5c-1.6,0-3.1,0-4.7,0c-0.1,0-0.3,0-0.4,0c0-0.2,0-0.3,0-0.4c0-2.1,0-4.1,0-6.2c0-0.4,0.1-0.5,0.5-0.5
|
||||
c0.6,0,1.3,0,1.9,0c0.1-1,0.3-2,0.4-3c-1,0-1.8,0-2.8,0c0-0.7,0-1.3,0-2c0-0.6,0.4-0.9,1-0.9c0.5,0,1,0,1.5,0c0.3,0,0.4-0.1,0.4-0.3
|
||||
c0-0.7,0-1.4,0-2c0-0.3-0.1-0.4-0.4-0.4c-0.8,0-1.5,0-2.3,0c-1.9,0.1-3.1,1.5-3.1,2.9c0,0.8,0,1.6-0.1,2.4c0,0.3-0.1,0.4-0.4,0.4
|
||||
c-0.6,0-1.1,0-1.7,0c-0.3,0-0.4,0.1-0.4,0.3c0,0.8,0,1.6,0,2.3c0,0.2,0.1,0.3,0.3,0.3c0.5,0,1.1,0,1.6,0c0.4,0,0.5,0.1,0.5,0.5
|
||||
c0,2.1,0,4.1,0,6.1c0,0.4-0.1,0.5-0.5,0.5c-2.9,0-5.8,0-8.7,0c-0.4,0-0.5-0.1-0.5-0.5c0-5.8,0-11.6,0-17.4C2.8,3.1,2.8,3,2.8,2.8z"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
12
www/img/icons/facebook.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" 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 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill-rule="evenodd" d="M2.8,2.8c6.1,0,12.3,0,18.4,0c0,0.2,0,0.4,0,0.5c0,5.8,0,11.6,0,17.4c0,0.4-0.1,0.5-0.5,0.5
|
||||
c-1.6,0-3.1,0-4.7,0c-0.1,0-0.3,0-0.4,0c0-0.2,0-0.3,0-0.4c0-2.1,0-4.1,0-6.2c0-0.4,0.1-0.5,0.5-0.5c0.6,0,1.3,0,1.9,0
|
||||
c0.1-1,0.3-2,0.4-3c-1,0-1.8,0-2.8,0c0-0.7,0-1.3,0-2c0-0.6,0.4-0.9,1-0.9c0.5,0,1,0,1.5,0c0.3,0,0.4-0.1,0.4-0.3c0-0.7,0-1.4,0-2
|
||||
c0-0.3-0.1-0.4-0.4-0.4c-0.8,0-1.5,0-2.3,0c-1.9,0.1-3.1,1.5-3.1,2.9c0,0.8,0,1.6-0.1,2.4c0,0.3-0.1,0.4-0.4,0.4c-0.6,0-1.1,0-1.7,0
|
||||
c-0.3,0-0.4,0.1-0.4,0.3c0,0.8,0,1.6,0,2.3c0,0.2,0.1,0.3,0.3,0.3c0.5,0,1.1,0,1.6,0c0.4,0,0.5,0.1,0.5,0.5c0,2.1,0,4.1,0,6.1
|
||||
c0,0.4-0.1,0.5-0.5,0.5c-2.9,0-5.8,0-8.7,0c-0.4,0-0.5-0.1-0.5-0.5c0-5.8,0-11.6,0-17.4C2.8,3.1,2.8,3,2.8,2.8z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
9
www/img/icons/location.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" 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 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill="none" d="M0,0h24v24H0V0z"/>
|
||||
<path d="M12,2C8.1,2,5,5.1,5,9c0,5.3,7,13,7,13s7-7.8,7-13C19,5.1,15.9,2,12,2z M12,11.5c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5
|
||||
s2.5,1.1,2.5,2.5S13.4,11.5,12,11.5z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 548 B |
17
www/img/icons/ratp/bus-21.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<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"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
|
||||
<g>
|
||||
<path d="M22.204,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232c3.979-3.471,8.296-7.789,8.296-13.545
|
||||
c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296c5.756-4.995,11.09-7.365,19.132-7.365
|
||||
c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587c-3.047,2.794-9.058,8.043-9.82,11.514h24.635v9.989
|
||||
H22.204z"/>
|
||||
<path d="M80.948,68.378V21.394c-3.64,2.878-9.396,5.671-13.376,7.45l-4.063-9.143c6.264-2.624,13.799-6.603,19.725-11.09h10.412
|
||||
v59.767H80.948z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
17
www/img/icons/ratp/bus-24.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<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"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#A0006E;" width="120" height="77"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M16.422,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232
|
||||
c3.979-3.471,8.296-7.789,8.296-13.545c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296
|
||||
c5.756-4.995,11.09-7.365,19.132-7.365c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587
|
||||
c-3.047,2.794-9.058,8.043-9.82,11.514h24.635v9.989H16.422z"/>
|
||||
<path style="fill:#FFFFFF;" d="M97.143,55.934v12.444H85.291V55.934H58.37v-11.09L81.566,8.611h15.576v38.01h7.026v9.313H97.143z
|
||||
M85.291,19.108h-0.17c-0.254,1.016-1.947,4.656-4.316,8.381L68.613,46.621h16.678V19.108z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
17
www/img/icons/ratp/bus-27.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<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"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#FF5A00;" width="120" height="77"/>
|
||||
<g>
|
||||
<path d="M19.694,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232c3.979-3.471,8.296-7.789,8.296-13.545
|
||||
c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296c5.756-4.995,11.09-7.365,19.132-7.365
|
||||
c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587c-3.048,2.794-9.058,8.043-9.82,11.514h24.635v9.989
|
||||
H19.694z"/>
|
||||
<path d="M81.512,68.378H67.881c0-7.873,2.117-12.952,7.365-22.688l14.562-27.09H60.771v-9.99h41.819v9.735
|
||||
C89.469,41.119,81.512,58.981,81.512,68.378z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
13
www/img/icons/ratp/metro-7.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Premier_plan" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" width="92px" height="92px" viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<circle style="fill-rule:evenodd;clip-rule:evenodd;fill:#FF82B4;" cx="46" cy="46" r="46"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.83,29.471v-8.274H29.286v8.49h24.679L41.589,52.712
|
||||
c-4.461,8.274-6.26,12.592-6.26,19.283h11.584C46.914,64.009,53.678,48.826,64.83,29.471z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 808 B |
25
www/img/icons/ratp/noctilien-122.svg
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<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"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" enable-background="new 0 0 120 77" xml:space="preserve">
|
||||
<rect fill-rule="evenodd" clip-rule="evenodd" fill="#3C91DC" width="120" height="77"/>
|
||||
<rect fill-rule="evenodd" clip-rule="evenodd" fill="#0A0082" width="120" height="68.75"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M34.341,38.708V8.516h-6.154v20.402h-0.085
|
||||
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.516h-6.11v30.192h6.196V19.081h0.086
|
||||
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M52.421,62.018V34.909c-2.101,1.661-5.422,3.272-7.717,4.298l-2.345-5.275
|
||||
c3.614-1.514,7.961-3.809,11.38-6.398h6.008v34.484H52.421z"/>
|
||||
<path fill="#FFFFFF" d="M65.314,62.018v-4.543c0.879-4.005,4.836-7.668,9.428-11.674c2.295-2.002,4.786-4.493,4.786-7.814
|
||||
c0-2.979-1.954-5.471-5.715-5.471c-3.028,0-5.128,2.198-5.959,3.126l-3.614-4.786c3.321-2.882,6.398-4.25,11.039-4.25
|
||||
c6.057,0,11.771,3.517,11.771,10.551c0,5.91-3.761,8.693-7.913,12.455c-1.758,1.611-5.226,4.64-5.665,6.643h14.214v5.764H65.314z"
|
||||
/>
|
||||
<path fill="#FFFFFF" d="M92.666,62.018v-4.543c0.879-4.005,4.836-7.668,9.427-11.674c2.296-2.002,4.786-4.493,4.786-7.814
|
||||
c0-2.979-1.953-5.471-5.715-5.471c-3.027,0-5.128,2.198-5.959,3.126l-3.613-4.786c3.32-2.882,6.398-4.25,11.038-4.25
|
||||
c6.057,0,11.771,3.517,11.771,10.551c0,5.91-3.761,8.693-7.913,12.455c-1.758,1.611-5.227,4.64-5.666,6.643h14.214v5.764H92.666z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
19
www/img/icons/ratp/noctilien-14.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<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"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#0A0082;" width="120" height="68.75"/>
|
||||
</g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.341,38.708V8.517h-6.154v20.402h-0.085
|
||||
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.517h-6.11v30.191h6.196V19.082h0.086
|
||||
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M62.141,61.902V28.07c-2.621,2.072-6.767,4.084-9.632,5.364l-2.926-6.583
|
||||
c4.511-1.89,9.937-4.755,14.203-7.986h7.498v43.037H62.141z"/>
|
||||
<path style="fill:#FFFFFF;" d="M105.894,52.941v8.961h-8.534v-8.961H77.975v-7.986l16.702-26.09h11.217v27.371h5.06v6.705H105.894z
|
||||
M97.359,26.424h-0.122c-0.183,0.731-1.402,3.353-3.109,6.035l-8.777,13.777h12.009V26.424z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
20
www/img/icons/ratp/noctilien-21.svg
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<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"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#0A0082;" width="120" height="68.75"/>
|
||||
</g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.341,38.708V8.517h-6.154v20.402h-0.085
|
||||
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.517h-6.11v30.191h6.196V19.082h0.086
|
||||
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M48.023,61.902v-5.669c1.097-4.999,6.034-9.571,11.765-14.569c2.865-2.5,5.974-5.608,5.974-9.753
|
||||
c0-3.719-2.438-6.828-7.132-6.828c-3.779,0-6.4,2.743-7.438,3.901l-4.511-5.974c4.146-3.597,7.986-5.304,13.777-5.304
|
||||
c7.559,0,14.69,4.389,14.69,13.167c0,7.376-4.693,10.85-9.875,15.544c-2.194,2.012-6.522,5.791-7.071,8.29h17.739v7.193H48.023z"/>
|
||||
<path style="fill:#FFFFFF;" d="M92.056,61.902V28.07c-2.621,2.072-6.767,4.084-9.632,5.364l-2.926-6.583
|
||||
c4.511-1.89,9.937-4.755,14.203-7.986h7.498v43.037H92.056z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
20
www/img/icons/ratp/rer-B.svg
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
||||
<svg version="1.1" baseProfile="tiny" id="Premier_plan"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="92px" height="92px"
|
||||
viewBox="0 0 92 92" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M46,5.333c-22.412,0-40.655,18.208-40.655,40.752c0,22.372,18.242,40.581,40.655,40.581
|
||||
s40.654-18.209,40.654-40.581C86.654,23.542,68.412,5.333,46,5.333z"/>
|
||||
<path fill="#3C91DC" d="M46,92C20.575,92,0,71.463,0,46.083C0,20.537,20.575,0,46,0c25.426,0,46,20.537,46,46.083
|
||||
C92,71.463,71.426,92,46,92z M46,6.846c-21.578,0-39.142,17.531-39.142,39.237c0,21.54,17.563,39.071,39.142,39.071
|
||||
s39.143-17.531,39.143-39.071C85.143,24.377,67.578,6.846,46,6.846z"/>
|
||||
<path fill="#3C91DC" d="M62.917,55.029c0-6.084-3.778-9.61-8.286-10.219v-0.121c3.352-0.608,6.885-3.954,6.885-8.394
|
||||
c0-9.306-8.592-10.888-15.599-10.888H29.831v42.94h15.416C53.412,68.35,62.917,65.855,62.917,55.029z M52.438,37.573
|
||||
c0,4.927-5.059,4.865-8.288,4.865h-4.753v-9.853h4.631C47.137,32.586,52.438,32.464,52.438,37.573z M53.352,54.785
|
||||
c0,5.597-3.961,6.447-8.41,6.447h-5.545V49.251h5.058C47.563,49.251,53.352,49.434,53.352,54.785z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
10
www/img/icons/ticket.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" 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 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill="none" d="M0,0h24v24H0V0z"/>
|
||||
<path d="M20,12c0-1.1,0.9-2,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v4c1.1,0,2,0.9,2,2s-0.9,2-2,2v4c0,1.1,0.9,2,2,2h16
|
||||
c1.1,0,2-0.9,2-2v-4C20.9,14,20,13.1,20,12z M15.6,16.8L12,14.5l-3.6,2.3l1.1-4.1L6.2,10l4.2-0.3L12,5.8l1.5,3.9l4.2,0.3l-3.3,2.7
|
||||
L15.6,16.8z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 644 B |
BIN
www/img/photos/interq2016/Concert2.jpg
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
www/img/photos/interq2016/Fanfare.jpg
Normal file
After Width: | Height: | Size: 600 KiB |
BIN
www/img/photos/interq2016/Pompom.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
www/img/photos/interq2016/Toilecollaborative2.jpg
Normal file
After Width: | Height: | Size: 344 KiB |
BIN
www/img/photos/interq2016/coinchill.jpg
Normal file
After Width: | Height: | Size: 580 KiB |
BIN
www/img/photos/interq2016/concertclassique.jpg
Normal file
After Width: | Height: | Size: 319 KiB |
BIN
www/img/photos/interq2016/dj.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
www/img/photos/interq2016/expophoto1.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
www/img/photos/interq2016/expophoto2.jpg
Normal file
After Width: | Height: | Size: 194 KiB |
BIN
www/img/photos/interq2016/fanfare2.jpg
Normal file
After Width: | Height: | Size: 537 KiB |
BIN
www/img/photos/interq2016/litterature.jpg
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
www/img/photos/interq2016/matchimpro1.jpg
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
www/img/photos/interq2016/peinturecorps.jpg
Normal file
After Width: | Height: | Size: 318 KiB |
BIN
www/img/photos/interq2016/peinturepiano.jpg
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
www/img/photos/interq2016/pompom2.jpg
Normal file
After Width: | Height: | Size: 164 KiB |
BIN
www/img/photos/interq2016/tango.jpg
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
www/img/photos/interq2016/theatre.jpg
Normal file
After Width: | Height: | Size: 433 KiB |
BIN
www/img/photos/interq2016/toilecollaborative.jpg
Normal file
After Width: | Height: | Size: 109 KiB |
BIN
www/img/photos/team/anthyme.jpg
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
www/img/photos/team/anthyme.psd
Normal file
BIN
www/img/photos/team/artan.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
www/img/photos/team/benja.jpg
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
www/img/photos/team/guillaume.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
www/img/photos/team/lea.jpg
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
www/img/photos/team/louise.jpg
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
www/img/photos/team/maud.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
www/img/photos/team/max.jpg
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
www/img/sponsors/a-ulm.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
www/img/sponsors/bda.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
www/img/sponsors/cof.png
Normal file
After Width: | Height: | Size: 19 KiB |
1031
www/img/sponsors/cof.svg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
www/img/sponsors/ens.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
www/img/sponsors/kfet.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
www/img/sponsors/pls.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
13
www/img/sponsors/pls.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 322.8 328.6" style="enable-background:new 0 0 322.8 328.6;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="TITRE">
|
||||
<circle class="st0" cx="161.2" cy="163.9" r="156.3"/>
|
||||
</g>
|
||||
<image style="overflow:visible;enable-background:new ;" width="597" height="219" xlink:href="pls.png" transform="matrix(0.5252 0 0 0.5252 5.5 106.4389)">
|
||||
</image>
|
||||
</svg>
|
After Width: | Height: | Size: 725 B |
20
www/img/theme/elements/bouche.svg
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 270.1 256.8" style="enable-background:new 0 0 270.1 256.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#940001;}
|
||||
.st1{fill:#570001;}
|
||||
</style>
|
||||
<path class="st0" d="M214.8,173.7c0,0,5-4.6,6.3-4.6c2,0,3,1.2,4.2,1.1c0.2,0,0.7-0.1,1.1-0.5c0.6-0.6,0.9-0.9,1.2-1.1
|
||||
c0.3-0.2,1.8-0.6,2.2-0.5c0.6,0.1,2,0.5,2.6,0.7c1.5,0.6,2.5,1.1,3,1.4c0.6,0.3,2.3,1,3.6,1.7c0.1,0,0.2,0.1,0.3,0.3
|
||||
c0,0.1-0.1,0.3-0.3,0.5c-0.3,0.4-1.2,0.9-3,2.2c-1.7,1.2-3.3,1.9-4.7,2.4c-1.5,0.5-5.3,1.1-6.7,1.1c-1.1,0.1-4.3-0.5-4.7-0.7
|
||||
c-0.7-0.2-5.1-2.7-5.1-3.3C214.8,173.7,214.8,173.7,214.8,173.7z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M215.3,174.2c2.2-0.5,4.5-1.4,6.9-1.2c1.5,0.1,3.2,0.1,4.6-0.2c2.1-0.4,4.1-0.8,6.3-0.9
|
||||
c1.9,0,3.7,0.3,5.6,0.7c0.3,0.1,0.5-0.4,0.1-0.5c-1.8-0.4-3.6-0.7-5.4-0.7c-2.1,0-4.2,0.3-6.2,0.7c-1.7,0.4-3.5,0.4-5.2,0.3
|
||||
c-2.3-0.1-4.6,0.7-6.9,1.2C214.8,173.7,214.9,174.3,215.3,174.2L215.3,174.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
24
www/img/theme/elements/guitare.svg
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 455.1 256.8" style="enable-background:new 0 0 455.1 256.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#7B79B8;}
|
||||
</style>
|
||||
<path class="st0" d="M504.6,70c0,0-14.2,91.8-17.4,98.2c-3.2,6.4,15.5-11.8,16.5-4.8c0.9,6.9-22.5,0.5-22.9,4.5
|
||||
c-0.5,4-52.5-37.4-53.8-37.9c-1.3-0.5-6.5-4.9-6.9-6.4c-0.4-1.5-0.4-0.6,0.1-1.4c0.5-0.8,0.9-1.7,1.3-1.5c0.4,0.3,0.8,0.7,1.7,0.2
|
||||
c0.9-0.5,1.1-1.9,0.6-2.5c-0.4-0.6-0.7-1.5-1.9-1.7c-1.2-0.1-1.6-0.1-1.9,0.8s0,1.5,0,2.1c0,0.5-0.1,1.2-1,1.4
|
||||
c-0.9,0.2-1.7-0.6-2.9-2.1s-3.3-2.5-3.2-3.8c0.2-1.2,0.3-2.3,1.1-2.9s0.7-0.3,1.9-0.4s1.7-0.3,2.1-1.2c0.3-0.9,0.4-1.5-0.3-2.5
|
||||
c-0.8-0.9-2.3-1.9-3-1.2c-0.7,0.7-1.3,0.9-1.3,2.1c0,1.2,0.4,1.1-0.3,2c-0.7,0.9-1.5,1.9-2.3,1.9c-0.8,0-3-0.6-3.6-1.8
|
||||
s-1-1.2-0.8-2.6c0.2-1.4,0.2-2.1,1.1-2.7s1.4-1.2,1.2-2.1c-0.2-0.9-1.7-1.7-2.3-1.8c-0.7-0.1-1.7-0.4-2.1,0.3
|
||||
c-0.4,0.7-0.8,1.1-0.5,1.9c0.3,0.9,1.2,1.1,0.9,2.4s-0.2,2.4-0.6,2.1c-0.3-0.3-0.7-0.6-1.3-1c-0.7-0.4-0.7-0.9-1.5-0.1
|
||||
c-0.9,0.9-9.2,9.7-9.7,10.1s1.7,1.8,1.8,2.4c0.1,0.6-0.2,2.4-0.9,2.9c-0.7,0.4-1.1,0.2-2.3,0c-1.3-0.2-1.7-0.5-2.3,0
|
||||
c-0.7,0.5-0.6,2.3,0,3c0.6,0.7,1.1,2.3,2.7,2.1c1.7-0.2,2.1-0.3,2.6-1.7c0.5-1.5,0.2-1.5,1.1-2.4c0.9-0.9,1.2-1.4,2.3-0.9
|
||||
c1.1,0.4,3.5,2.1,3.8,3s1.1,0.8,0.2,2.4c-0.9,1.7-1.2,2.1-2,2.3c-0.8,0.3-1.5-0.7-2.4,0c-0.9,0.7-1.1,0.8-1.1,1.8
|
||||
c0,1,0.5,1.8,1.7,2.7s3.1,1.7,3.9,0.8c0.8-0.9,0.9-1.3,0.9-2.6c0-1.3-0.3-1.5,0.3-2.7c0.6-1.1,0.9-1.7,1.9-2.1
|
||||
c0.9-0.5,2.9-0.2,3.6,0.7c0.8,0.9,2.3,1.7,2.6,2.6c0.3,0.9,0.9,1.7,0.4,2.1s-0.9,0.9-1.8,0.9c-0.9-0.1-1.1-0.2-2,0.4
|
||||
s-0.9,1.1-0.7,1.7c0.3,0.6,1.2,2.3,2.9,2.1s2.7-0.8,2.7-1.4c0.1-0.6-0.7-1.7-0.3-2.3c0.3-0.6,0.3-1.1,1.5-1.4
|
||||
c1.1-0.3,4.1,1.2,4.9,2.6c0.8,1.4,67.2,54.6,67.4,64c0.3,9.3,6.1,13.4,8.4,18.5c2.3,5.2,4.9-14.5,8.3-12.1c4.4,3-13.1-14.5-3.8-10.5
|
||||
c7,3-3.2,2.2,2.2,7.6c10.5,10.5-12,6.3-3.8,9.3c12.1,4.4,19.4,7,28.2,5.2c11.7-2.4,18.2-8.2,20.3-14.8c2.1-6.5,9.7-55.3,14.4-59.8
|
||||
c4.8-4.5-9.3-52.3-11.6-56.4c-2.4-4.2-14.1-24.4-16.8-24.7c-2.7-0.3-18.4-3.1-19-2.4C510.4,60.9,504.6,70,504.6,70z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
15
www/img/theme/elements/main.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 312.7 311.4" style="enable-background:new 0 0 312.7 311.4;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#7B79B8;}
|
||||
</style>
|
||||
<path class="st0" d="M-100.8,147.5c0,0-9.8,20.6-0.1,33.9c9.7,13.4,19.5,23,24.9,23.1c5.4,0.1,31.8,6.5,39,2.1
|
||||
c7.3-4.4,24.2-16.2,28.5-27.6c4.3-11.4,11.1-24.4,7.6-43.5s-4.1-28.7,3.3-32.1s8.5-6.6,20.9-0.1c12.5,6.5,17.5,9.7,27.9,11.8
|
||||
c10.4,2.1,18.5,1.4,20.4-0.5c1.9-2,0.2-3-11-6.4s-17.2-6.7-18.6-8.8s16.1,1.1,22.7,0.4c6.6-0.8,22.6-3,27.3-5.7s11-8.3-1-7.5
|
||||
c-12,0.7-24.5,3.5-28.8,1.7c-4.4-1.8,7.4-3.4,9.9-5s17.6-3.6,24.4-6.1c6.9-2.5,11.4-7.7,6.7-8.9c-4.7-1.2-10.3,1.8-17.7,2.5
|
||||
c-7.3,0.7-16.8,4.8-25.1,4.7s6.2-6.3,19.8-11.4c7.2-2.6,19.5-7.6,16.2-11.6C91.2,46,52.8,68.1,52.8,63.3C52.8,57.9,68,52,71.6,47
|
||||
c2.7-3.7,0.6-8.8-6.7-3.9c-8.3,5.5-17.7,11-27,16.3c0,0-28.6,11.2-37.2,3.2c-4-3.7-16.9-10.6-34.3-17C-47.1,40.5-54.9,12.7-64.4,15
|
||||
c-10.5,2.5-13.5-0.8-17.2,4.1C-85.3,24-100.8,147.5-100.8,147.5z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
14
www/img/theme/elements/oeil.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 33.3 59.5" style="enable-background:new 0 0 33.3 59.5;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;stroke:#570001;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st1{fill:#940001;}
|
||||
</style>
|
||||
<path class="st0" d="M27.7,20.3C27.7,20.3,27.6,20.3,27.7,20.3c0.3-0.3,0.5-0.6,0.7-0.8c0.3-0.5,0.5-0.6,0.7-0.8
|
||||
c0.3-0.2,0.5-0.2,0.5-0.2c0.1,0,0.2-0.1,0.4-0.1c0.4-0.1,0.8,0.1,0.9,0.2c0.1,0.1,0.4,0.3,0.6,0.3c0.1,0,0.4,0,0.4,0.1c0,0,0,0,0,0
|
||||
c0,0-0.4,0-0.7,0.1c-0.2,0.1-0.1,0.1-0.5,0.5c-0.3,0.3-0.6,0.5-0.9,0.5c-0.4,0-0.3,0-0.8,0c-0.3,0-0.7-0.1-0.8-0.1
|
||||
C28,20,27.8,20.2,27.7,20.3z"/>
|
||||
<ellipse class="st1" cx="29.7" cy="19.3" rx="0.7" ry="0.7"/>
|
||||
</svg>
|
After Width: | Height: | Size: 947 B |
15
www/img/theme/elements/pinceau.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 1296 796" style="enable-background:new 0 0 1296 796;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFCA0D;stroke:#FFFFFF;stroke-width:0.113;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<path class="st0" d="M1978.1,778c0,0-3.7,51.4-48.7,51.5c-45.2,0.1-52.3-4.1-75.7,0s-34.9,12.4-66.7,0c-32-12.3-29.6-14.4-62.4-8.2
|
||||
s-94-30.5-119.8-14.2s-199.5,6.2-272.5-28.8c-6.5-3.1-72.4-175.9-76.3-164.6c0.5-1.5-15.5-21.1-15.7-60.6
|
||||
c-0.1-38.1,0.7-64.9-17.4-85.6c-18.1-20.6-41-57.5-44.6-59.9s-3.6-2.8-12.1-4.6c-8.7-1.6-10.8-2.6-17.6-6.9
|
||||
c-6.8-4.3-18.7-17.6-21.1-23.2c-2.5-5.7-11.4-40.7-8.9-49.1c2.5-8.3,0.7-4.2,0.7-4.2s3.3,9.7,11.6,15.7c8.5,6,17.3,9,28.1,13
|
||||
s13.5,4.6,20.1,11.7c6.5,7.1,10,7.8,10.5,19.2s-0.5,14.9-0.3,16.6c0.4,1.7,28.1,28.3,36.8,30c8.7,1.6,11.7-13.1,11.7-13.1
|
||||
s-1-43.6-3.7-63.1c-2.6-19.6,10.5-40.7,19.8-60.3s23.5-36,34.7-43c11.2-7.2,207.1-27.5,207.1-27.5l224.8,50.4l257,383.4L1978.1,778z
|
||||
"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
18
www/img/theme/elements/visage.svg
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 209.1 526.8" style="enable-background:new 0 0 209.1 526.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#940001;}
|
||||
.st1{fill:#570001;}
|
||||
</style>
|
||||
<path class="st0" d="M-0.9,245.8c0,0,13.4,0.4,16.6,4.1s3.6,5,4.2,9.7s2.6,8.5,3.6,9.8s2.8,3.2,3.9,5s1,2.9-1.4,3.5
|
||||
s-3.6-0.4-4.9,0.9c-1.2,1.3-1,2.4-0.8,5.6c0.1,3.2,0.7,7.1-0.1,9.6c-1.3,4-4.3,5-4.3,5c-4.3,1.5-6.4,0.9-10.1,0s-19.5-5.8-21.6-9.3
|
||||
s1.1-28.6,1.1-28.6L-0.9,245.8z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M7.9,267.6c2.2,1.7,5.2,1.5,7.3-0.1c0.5-0.4-0.2-1.1-0.7-0.7c-1.8,1.4-4.3,1.3-6.1,0
|
||||
C7.9,266.3,7.4,267.2,7.9,267.6L7.9,267.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 907 B |
25
www/img/theme/paint/paint-blue.svg
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 34" style="enable-background:new 0 0 595.3 34;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#271A88;}
|
||||
</style>
|
||||
<title>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"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
25
www/img/theme/paint/paint-red.svg
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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 81" style="enable-background:new 0 0 595.3 81;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#D2646D;}
|
||||
</style>
|
||||
<title>Fichier 1</title>
|
||||
<g id="Calque_2_1_">
|
||||
<g id="Calque_1-2">
|
||||
<path class="st0" d="M116.2,81.2l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.5c-1.7-0.2-3.5-0.2-5.3-0.4c-5.3-0.9-10.5-1.8-15.8-2.7
|
||||
c-4.5-0.7-9-1.3-13.5-1.9c-6.7-1-13.7-1.2-20.6-0.6c-3.3,0.4-6.6-0.1-9.4-1.2c-3.8-1.6-8.2-1.8-11.6,0c-2.2,1.3-4.8,1.8-7.5,2.3
|
||||
c-3,0.6-5.9,1.5-9.4,1.3C11.8,77.3,0,77.1,0,77.1l0-16.6l595.4-0.8l0,16.7c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-4.8-13.9-6.1
|
||||
c-3-0.9-6.5-0.9-9.4,0.2c-0.9,0.4-2,0.6-3.1,0.6c-3.1-0.2-6.2-0.7-9.3-1c-4.3-0.3-8.7-0.6-13.1-0.8c-4.4-0.2-8.9-0.5-13.2-0.2
|
||||
c-8.1,0.6-16.2,1.5-24.3,2.3c-3,0.4-6.1-0.3-8-1.8c-3.8-3.1-6.7-3.8-12.4-2.5c-2.3,0.6-4.7,1-7.2,1.2c-4.3,0.4-8.8,0.3-13.1,0.8
|
||||
c-3.5,0.5-7.1,0.1-10.2-1c-4.3-1.5-8.8-2.5-13.9-2.2c-5.7,0.3-11.4,0.6-17.1,0.6c-4.3,0-8.6-0.5-12.8-0.6c-4.2-0.1-8.9-0.1-13.3,0
|
||||
c-6.7,0-13.4,0.8-19.7,2.3c-7.6,1.8-8.2,1.8-13.6-1.8c-2.1-1.5-5.7-2-8.7-1.2c-3,0.7-4.5,2-4.8,4c-0.1,0.7-0.6,1.3-1.4,1.8
|
||||
c-4.6,2.7-10.9,3-16.5,1c-4.3-1.6-8.6-2.2-13.3-0.8c-4.7,1.4-8.9,3.4-14.1,4.2c-4.5,0.8-9.2,1.1-13.8,1c-2.5-0.2-4.9-0.5-7.3-0.9
|
||||
c-2.1-0.3-4.2-1-6.3-1.1c-5.4-0.3-11,0.6-16.3-0.7c-1.2-0.2-2.4-0.4-3.6-0.4c-9.8-0.3-19.5-0.5-29.3-0.7
|
||||
c-5.2-0.1-10.3-0.2-15.5-0.4c-2.3-0.1-4.7-0.2-7-0.4c-7.2-0.6-14.4-0.6-21.4,0.7c-2.4,0.6-5.2,0-6.6-1.3c-3.8-3.1-11-3.7-16-1.3
|
||||
c-1.5,0.7-2.6,1.6-3.4,2.6c-0.5,0.7-1.4,1.3-2.5,1.7c-2.4,0.9-4.2,2.3-5,4c-0.3,0.5-0.9,0.9-1.7,1c-2.6,0.2-5.2,0.3-7.8,0.4
|
||||
c-2.5,0.1-4-0.5-5.2-1.8c-2.9-3.1-8.8-4.7-13.8-2.5C121.5,77.2,119.1,79.4,116.2,81.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
23
www/img/theme/paint/paint-white.svg
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" 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 17"
|
||||
xml:space="preserve">
|
||||
<title>Fichier 1xxx</title>
|
||||
<g>
|
||||
<g id="Calque_1-2">
|
||||
<path fill="#FBFBFB" d="M124.7,5.8c5,1.8,10.9,0.5,13.8-2c1.2-1.1,2.7-1.6,5.2-1.5c2.6,0.1,5.2,0.1,7.8,0.3
|
||||
c0.8,0.1,1.4,0.4,1.7,0.8c0.8,1.4,2.6,2.5,5,3.2c1.1,0.3,1.9,0.8,2.5,1.4c0.8,0.8,2,1.5,3.4,2.1c5,1.9,12.2,1.4,16-1.1
|
||||
c1.4-1.1,4.2-1.5,6.6-1.1c7,1.1,14.2,1.1,21.4,0.6c2.3-0.1,4.7-0.3,7-0.3c5.2-0.1,10.3-0.2,15.5-0.3c9.8-0.2,19.5-0.4,29.3-0.6
|
||||
c1.2,0,2.4-0.1,3.6-0.3c5.3-1,10.9-0.3,16.3-0.6c2.1-0.1,4.2-0.6,6.3-0.9c2.4-0.3,4.8-0.6,7.3-0.7c4.7-0.1,9.3,0.1,13.8,0.8
|
||||
c5.3,0.7,9.4,2.3,14.1,3.4s9.1,0.6,13.3-0.7c5.6-1.7,11.9-1.4,16.5,0.8c0.8,0.4,1.3,0.9,1.4,1.5c0.3,1.6,1.8,2.7,4.8,3.3
|
||||
c3,0.6,6.5,0.2,8.7-1c5.5-2.9,6.1-3,13.6-1.5c6.3,1.2,12.9,1.8,19.7,1.9c4.4,0.1,9,0.1,13.3,0c4.3-0.1,8.6-0.5,12.8-0.5
|
||||
c5.7,0,11.4,0.3,17.1,0.5c5.1,0.2,9.6-0.6,13.9-1.8c3.1-0.9,6.7-1.2,10.2-0.8c4.3,0.4,8.7,0.3,13.1,0.6c2.5,0.2,4.9,0.5,7.2,1
|
||||
c5.7,1,8.7,0.5,12.4-2.1c1.9-1.2,5-1.8,8-1.5c8.1,0.6,16.1,1.4,24.3,1.9c4.3,0.2,8.8,0,13.2-0.1s8.8-0.4,13.1-0.6
|
||||
c3.1-0.2,6.2-0.6,9.3-0.8c1.1,0,2.2,0.2,3.1,0.5c2.9,0.9,6.4,0.9,9.4,0.2c4.4-1.1,9-4.9,13.9-5c0.6,0,1.1,0,1.7,0v13.6H0L0,4.8
|
||||
c0,0,11.8-0.2,17.6-0.5c3.5-0.2,6.4,0.5,9.4,1c2.6,0.4,5.3,0.9,7.5,1.9c3.4,1.5,7.8,1.4,11.6,0c2.8-0.9,6.1-1.2,9.4-0.9
|
||||
C62.3,6.9,69.3,6.7,76,5.9c4.5-0.5,9.1-1,13.5-1.6c5.3-0.7,10.5-1.5,15.8-2.2c1.7-0.2,3.5-0.2,5.3-0.4c0.9-0.1,1.8-0.2,2.7-0.4
|
||||
h2.8C118.9,2.9,121.4,4.7,124.7,5.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
25
www/img/theme/paint/paint-yellow.svg
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- 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">
|
||||
.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"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
201
www/index.html
Normal file
|
@ -0,0 +1,201 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,">
|
||||
|
||||
<meta name="description" content="Site des InterQ 2020 — Un festival artistique et culturel Inter-ENS.">
|
||||
<meta name="keywords" content="ENS InterQ 2020">
|
||||
|
||||
<title>Les InterQ 2020</title>
|
||||
|
||||
<link rel="stylesheet" href="css/normalize.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/tipso.css">
|
||||
<link rel="stylesheet" href="css/calendar.css">
|
||||
</head>
|
||||
<body>
|
||||
<header id="main-header">
|
||||
<!-- TODO -->
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<img src="img/content/presentation.svg" alt="Présentation">
|
||||
<div>
|
||||
<p>Les InterQ, c'est un week-end au cours duquel les étudiant·e·s des ENS de France se réunissent pour partager leurs créations artistiques. Théâtre, danse, photographie, arts plastiques, concerts, cinéma, cirque, il y en aura pour tous les goûts !</p>
|
||||
<p>Que ce soit pour présenter un projet ou découvrir ceux des autres, tou·te·s les étudiant·e·s des ENS sont les bienvenu·e·s. De leur vrai nom Interculturelles, elles se déroulent du <strong>20 au 22 mars 2020</strong> et ont pour but de réunir tous les amateur·e·s ou créateurs·rices accompli·e·s, artistes en herbe ou amoureux·ses des expositions en tout genre. </p>
|
||||
<p><strong>Tu es inspiré·e et souhaites participer ? Propose-nous ton projet en remplissant <a href="https://framaforms.org/appel-a-projets-interq-2020-1576017177/">ce formulaire</a>. Les propositions seront recueillies jusqu'au 1<sup>er</sup> mars 2020.</strong></p>
|
||||
<p>Tu souhaites venir passer ce premier week-end printanier dans un lieu regorgeant des oeuvres de tes camarades? Alors ouvre l'oeil, pour ne pas rater les inscriptions qui ouvriront prochainement.</p>
|
||||
|
||||
<a href="https://www.facebook.com/events/2598704037066322" target="_blank">
|
||||
<div id="facebook-button" class="button">
|
||||
<span>Page Facebook</span>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<section id="appelaprojets">
|
||||
<img src="img/content/appelaprojets.svg" alt="Appel à projets">
|
||||
<div>
|
||||
<p>Les InterQ sont pour tou·te·s l'occasion d'exposer ses oeuvres (dessin, photographie, peinture, courts-métrages), de présenter des spectacles (danse, musique, théâtre), d'organiser des oeuvres collectives (toile collaborative)... et la liste est loin d'être exhaustive. Afin que l'on puisse organiser l'événement en bonne et due forme, il est nécessaire que tous les participant·e·s remplissent le framaforms suivant avec leurs idées de projets : <a href="https://framaforms.org/appel-a-projets-interq-2020-1576017177/">https://framaforms.org/appel-a-projets-interq-2020-1576017177/</a>.</p>
|
||||
<p>De nombreux espaces sont réservés pour l'exposition et la présentation des projets : salles de classe, théâtre, petite salle de concert, salle de projection, mais aussi l'indémodable Courô.</p>
|
||||
<p>Voici quelques photos des InterQ 2016 qui se sont déroulées à l'ENS de Paris :</p>
|
||||
</div>
|
||||
<div class="interq2016">
|
||||
<p align=center><img src="img/photos/interq2016/expophoto1.jpg" alt="Expo photo"></p>
|
||||
<p align=center><img src="img/photos/interq2016/peinturepiano.jpg"></p>
|
||||
<p align=center><img src="img/photos/interq2016/toilecollaborative.jpg" alt="Toile collaborative"></p>
|
||||
<p align=center><img src="img/photos/interq2016/litterature.jpg" > </p>
|
||||
<p align=center><img src="img/photos/interq2016/matchimpro1.jpg" alt="Match d'improvisation"></p>
|
||||
<p align=center><img src="img/photos/interq2016/tango.jpg" alt="Danse de salon"></p>
|
||||
<p align=center><img src="img/photos/interq2016/Pompom.jpg" alt="Pompom"></p>
|
||||
<p align=center><img src="img/photos/interq2016/dj.jpg" alt="DJ"></p>
|
||||
<p align=center><img src="img/photos/interq2016/Concert2.jpg" alt="Concert"></p>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<section id="projetscollaboratifs">
|
||||
<img src="img/content/projetscollaboratifs.svg" alt="Projets collaboratifs">
|
||||
<div>
|
||||
<p>Les InterQ, c'est aussi et surtout l'occasion de partager des moments ensemble... et l'occasion de créer ensemble ! Tu peux proposer des projets collaboratifs pour faire découvrir aux autres ta passion ! Toile collaborative, atelier couture, atelier cirque, minifestival cinématographique... Tout cela rentre parfaitement dans le cadre des InterQ. Pour mettre ces projets en oeuvre et réserver un espace, il faut également remplir l'appel à projets. </p>
|
||||
<br>
|
||||
<p>Notamment, deux étudiant·e·s de l'ENS de Paris Saclay lancent un appel pour participer à leur projet <strong>Silens, ça tourne</strong>, un festival cinématographique de courts-métrages, dans lequel toutes les ENS seraient représentées. L'idée serait que chaque ENS présente (au maximum) trois courts métrages d'une durée maximale de 6/7 minutes, qui seraient projetés dans notre salle de projection, sans concours. Une seule contrainte : le thème, à savoir Le doute. Si vous êtes intéressé·e·s, n'hésitez pas à contacter votre BdA et/ou respointerq@ens.fr pour être mis·e en relation avec les porteur·se·s du projet. </p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<img src="img/content/nouscontacter.svg" alt="Nous contacter">
|
||||
<div>
|
||||
<p id="contact-email">
|
||||
<span><a href="mailto:respointerq@ens.fr">respointerq@ens.fr</a></span>
|
||||
</p>
|
||||
</div>
|
||||
<br/>
|
||||
<img src="img/content/equipe.svg" alt="L'équipe InterQ">
|
||||
|
||||
<div id="team">
|
||||
<p>
|
||||
<span>Voici une petite présentation des étudiant·e·s qui organisent les InterQ 2020 :</span>
|
||||
</p>
|
||||
|
||||
<h3>Les respos administratif et compta</h3>
|
||||
<div class="team-group">
|
||||
<figure>
|
||||
<img src="img/photos/team/benja.jpg" alt="Benjamin">
|
||||
<figcaption>Benjamin Basa</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/photos/team/maud.jpg" alt="Maud">
|
||||
<figcaption>Maud Lagier</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/photos/team/artan.jpg" alt="Artän">
|
||||
<figcaption>Louise Fontan-Ducret</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<h3>Le respo sécurité, hébergement et lumière/son</h3>
|
||||
<div class="team-group">
|
||||
<figure>
|
||||
<img src="img/photos/team/max.jpg" alt="Max">
|
||||
<figcaption>Maxime Ligonnière</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<h3>Les respos communication</h3>
|
||||
<div class="team-group">
|
||||
<figure>
|
||||
<img src="img/photos/team/louise.jpg" alt="Louise">
|
||||
<figcaption>Louise Harari</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/photos/team/lea.jpg" alt="Léa">
|
||||
<figcaption>Léa Guyon</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<h3>Les respos alimentation</h3>
|
||||
<div class="team-group">
|
||||
<figure>
|
||||
<img src="img/photos/team/guillaume.jpg" alt="Guillaume">
|
||||
<figcaption>Guillaume Duchemin</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/photos/team/anthyme.jpg" alt="Anthyme">
|
||||
<figcaption>Anthyme Dutriaux</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<p id="mailing-address">
|
||||
<span>45 rue d'Ulm 75005 Paris</span>
|
||||
</p>
|
||||
|
||||
<iframe id="interactive-map" width="750" height="400" src="https://www.openstreetmap.org/export/embed.html?bbox=2.334809303283692%2C48.8368567401711%2C2.3548936843872075%2C48.84636099015179&layer=hot&marker=48.841602029496684%2C2.344851493835449"></iframe>
|
||||
</div>
|
||||
|
||||
<div id="public-transport-info">
|
||||
<div id="transport-metro-icon">
|
||||
<img src="img/icons/ratp/metro-7.svg" alt="Métro 7">
|
||||
</div>
|
||||
<span id="transport-metro-stop">Place Monge</span>
|
||||
|
||||
<div id="transport-rer-icon">
|
||||
<img src="img/icons/ratp/rer-B.svg" alt="RER B">
|
||||
</div>
|
||||
<span id="transport-rer-stop">Luxembourg</span>
|
||||
|
||||
<div id="transport-bus-1-icon">
|
||||
<img src="img/icons/ratp/bus-24.svg" alt="Bus 24">
|
||||
</div>
|
||||
<span id="transport-bus-1-stop">École Normale Supérieure</span>
|
||||
|
||||
<div id="transport-bus-2-icon">
|
||||
<img src="img/icons/ratp/bus-21.svg" alt="Bus 21">
|
||||
<img src="img/icons/ratp/bus-27.svg" alt="Bus 27">
|
||||
</div>
|
||||
<span id="transport-bus-2-stop">Feuillantines</span>
|
||||
|
||||
<div id="transport-noctilien-icon">
|
||||
<img src="img/icons/ratp/noctilien-14.svg" alt="Noctilien 14">
|
||||
<img src="img/icons/ratp/noctilien-21.svg" alt="Noctilien 21">
|
||||
<img src="img/icons/ratp/noctilien-122.svg" alt="Noctilien 122">
|
||||
</div>
|
||||
<span id="transport-noctilien-stop">Auguste Comte</span>
|
||||
</div>
|
||||
<br/>
|
||||
<div id="sponsors">
|
||||
|
||||
<a href="https://www.ens.fr/">
|
||||
<img class="sponsor-disc" src="img/sponsors/ens.png" alt="ENS">
|
||||
</a>
|
||||
<a href="https://www.cof.ens.fr">
|
||||
<img class="sponsor-disc" src="img/sponsors/cof.png" alt="COF">
|
||||
</a>
|
||||
<a href="https://www.bda.ens.fr">
|
||||
<img class="sponsor-disc" src="img/sponsors/bda.png" alt="BdA">
|
||||
</a>
|
||||
<a href="https://www.facebook.com/clubPLS/">
|
||||
<img class="sponsor-disc" src="img/sponsors/pls.png" alt="PLS">
|
||||
</a>
|
||||
<a href="https://www.archicubes.ens.fr">
|
||||
<img class="sponsor-disc" src="img/sponsors/a-ulm.png" alt="A-Ulm">
|
||||
</a>
|
||||
<a href="https://cof.ens.fr/gestion/k-fet/">
|
||||
<img class="sponsor-disc" src="img/sponsors/kfet.png" alt="K-Fêt">
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<p id="signature"> © Louise Harari, Camille Gobert </p>
|
||||
</body>
|