mise en place tabs. Correctiosn diverses

This commit is contained in:
Marc 2024-08-01 19:48:48 +02:00
parent d88ac242c3
commit 5a33c7d1f7
108 changed files with 1449 additions and 32 deletions

View File

@ -13,12 +13,13 @@ struct Hashtable {
struct forecast_temp{
float min;
float max;
char desc[20];
char desc[25];
char icon[8];
};
struct meteoforecast_data{
int datetime;
bool isValid;
struct forecast_temp previsions;
};

View File

@ -54,7 +54,7 @@ void printffd(struct meteoforecast_data *tmp){
struct tm * pTime=localtime( & tmp->datetime );
char buffer[ MAX_SIZE ];
strftime(buffer, MAX_SIZE, "%d/%m/%Y", pTime);
printf(" date:%d, Min:%.1f Max:%.1f Desc:%s\n", tmp->datetime, tmp->previsions.min, tmp->previsions.max, tmp->previsions.desc);
printf("IsValid:%s date:%d, Min:%.1f Max:%.1f Desc:%s\n", tmp->isValid ?"true":"false", tmp->datetime, tmp->previsions.min, tmp->previsions.max, tmp->previsions.desc);
}
esp_err_t _http_event_handler(esp_http_client_event_t *evt)
@ -182,8 +182,9 @@ void JSON_Parse(const cJSON * const root) {
datasT.previsions.max=cJSON_GetObjectItem(temps,"max")->valuedouble;
cJSON *weather12=cJSON_GetObjectItem(current_element,"weather12H");
strncpy(datasT.previsions.desc,cJSON_GetObjectItem(weather12,"desc")->valuestring,19);
strncpy(datasT.previsions.desc,cJSON_GetObjectItem(weather12,"desc")->valuestring,24);
strncpy(datasT.previsions.icon,cJSON_GetObjectItem(weather12,"icon")->valuestring,7);
datasT.isValid=true;
ESP_LOGE(TAG,"Donnees lues");
printffd(&datasT);
datas[i++]=datasT;

View File

@ -3,15 +3,73 @@ idf_component_register(SRC_DIRS . fonts
REQUIRES esp_wifi nvs_flash mqtt meteofrance)
lvgl_port_create_c_image("images/esp_logo.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p1j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p2j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p3j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p10j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p10n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p11j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p11n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p12j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p12n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p13j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p13n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p14bisj.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p14j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p14n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p15j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p15n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p16bisj.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p16j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p16n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p17j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p17n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p18j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p18n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p19j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p19n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p1j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p1n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p20j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p20n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p21j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p21n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p22j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p22n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p23j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p23n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p24j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p24n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p25j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p25n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p26j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p26n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p27j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p27n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p28j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p28n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p29j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p29n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p2j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p2n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p30j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p30n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p31j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p31n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p32j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p32n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p3j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p3n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p4j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p4n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p5bisj.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p5j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p5n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p6j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p6n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p7j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p7n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p8j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p8n.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p9j.png" "images/" "ARGB8888" "NONE")
lvgl_port_create_c_image("images/p9n.png" "images/" "ARGB8888" "NONE")
lvgl_port_add_images(${COMPONENT_LIB} "images/")

BIN
main/images/p10j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

1
main/images/p10j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_14" data-name="Calque 14" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p10j-1{fill:#eeeb61;opacity:0.51;isolation:isolate;}.p10j-2{fill:#f5b21a;stroke:#fde901;}.p10j-2,.p10j-9{stroke-miterlimit:10;}.p10j-3{opacity:0.3;}.p10j-4{fill:#231f20;}.p10j-5{fill:#d8d9d8;}.p10j-6{fill:#79ccf1;}.p10j-7{fill:#fff;}.p10j-8{fill:#cf2e29;}.p10j-9{fill:none;stroke:#231f20;}</style></defs><title>14Plan de travail 1</title><circle class="p10j-1" cx="55.11" cy="31.25" r="20.16"/><circle class="p10j-2" cx="55.11" cy="31.25" r="15.38"/><g class="p10j-3"><path class="p10j-4" d="M66,38.45a14.77,14.77,0,0,0-27,4.91,8.62,8.62,0,0,1,6.66,4.22l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67A8.52,8.52,0,0,0,39,61H64.72A11.37,11.37,0,0,0,66,38.44Z"/><path class="p10j-4" d="M30.2,32.47a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.15.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.41,7.08,7.08,0,0,0,7.16,7H30.06a5.21,5.21,0,0,0,.13-10.42Z"/></g><path class="p10j-5" d="M63.34,35.88a14.77,14.77,0,0,0-27.08,4.91A8.63,8.63,0,0,1,42.88,45l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H62.06a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p10j-5" d="M27.58,29.88a9.3,9.3,0,0,0-9.3-7.61,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64L15.22,30c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46A7.08,7.08,0,0,0,11,40.27H27.48a5.21,5.21,0,0,0,.91-10.38,5.08,5.08,0,0,0-.78,0Z"/><rect class="p10j-6" x="36.84" y="64.71" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-34.12 85.2) rotate(-72.96)"/><rect class="p10j-6" x="44.72" y="68.95" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-32.6 95.74) rotate(-72.96)"/><rect class="p10j-6" x="27.44" y="64.01" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-40.09 75.73) rotate(-72.96)"/><rect class="p10j-6" x="61.28" y="69.64" width="7.48" height="1.95" rx="0.55" ry="0.55" transform="translate(-21.38 112.43) rotate(-73.19)"/><rect class="p10j-7" x="41.43" y="65.23" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="matrix(0.29, -0.96, 0.96, 0.29, -31.37, 89.96)"/><rect class="p10j-7" x="50.11" y="65.89" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-25.86 98.73) rotate(-72.96)"/><rect class="p10j-7" x="32.14" y="64.7" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-37.43 80.71) rotate(-72.96)"/><rect class="p10j-7" x="63.32" y="63.88" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-14.6 109.94) rotate(-72.96)"/><polygon class="p10j-7" points="58.4 68.2 79.98 68.2 69.19 50 58.4 68.2"/><path class="p10j-8" d="M82.34,69.55H56L69.19,47.37ZM60.77,66.88H77.62L69.2,52.68Z"/><path class="p10j-9" d="M69.35,56.16a10.2,10.2,0,0,0-1,3c0,1,1.77,1.43,1.77,2.84s-3.33,2.77-3.33,2.77"/><path class="p10j-9" d="M69.54,56.16a6.07,6.07,0,0,0-.77,2.31c0,1,2.36.89,2.8,2.76.33,1.39-1.17,3.57-1.17,3.57"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
main/images/p10n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

1
main/images/p10n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_15" data-name="Calque 15" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p10n-1{fill:#44454e;opacity:0.25;}.p10n-1,.p10n-3{isolation:isolate;}.p10n-2{fill:#fff;}.p10n-3{fill:#636573;opacity:0.18;}.p10n-4{fill:#fdfcea;}.p10n-5{opacity:0.3;}.p10n-6{fill:#231f20;}.p10n-7{fill:#d8d9d8;}.p10n-8{fill:#79ccf1;}.p10n-9{fill:#cf2e29;}.p10n-10{fill:none;stroke:#231f20;stroke-miterlimit:10;}</style></defs><title>15Plan de travail 1</title><circle class="p10n-1" cx="47.99" cy="31.49" r="22.87"/><path class="p10n-2" d="M58.3,34.49a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.61.61,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p10n-2" d="M60.71,32.07a.89.89,0,0,0-.89-.89h-3A.89.89,0,1,0,56.63,33h3.25a.9.9,0,0,0,.9-.88h-.07Z"/><path class="p10n-2" d="M29.58,19.55a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.61.61,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p10n-2" d="M32,17.16a.89.89,0,0,0-.89-.89h-3A.89.89,0,1,0,27.92,18h3.22a.9.9,0,0,0,.9-.88h0Z"/><path class="p10n-2" d="M54.72,17.16a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.61.61,0,0,0,0,.19v3A.89.89,0,0,0,54.72,17.16Z"/><path class="p10n-2" d="M57.14,14.72a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.22a.9.9,0,0,0,.9-.88h0Z"/><path class="p10n-3" d="M47,15.28a16,16,0,0,1,5.69-.3,16.3,16.3,0,0,0,7,29.83A16.32,16.32,0,1,1,47,15.28Z"/><path class="p10n-4" d="M43.88,16.77a15.16,15.16,0,0,1,5.37-.28,15.39,15.39,0,0,0,6.63,28.17,15.41,15.41,0,1,1-12-27.91Z"/><g class="p10n-5"><path class="p10n-6" d="M66,40.08A14.77,14.77,0,0,0,39,45,8.62,8.62,0,0,1,45.6,49.2l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H64.72A11.37,11.37,0,0,0,66,40.07Z"/><path class="p10n-6" d="M30.2,34.1a9.3,9.3,0,0,0-9.3-7.65A9.53,9.53,0,0,0,13.4,30c2,.32,4.53,1.21,5.63,3.64l-1.15.5c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H30.1A5.21,5.21,0,0,0,30.23,34Z"/></g><path class="p10n-7" d="M63.34,37.47a14.77,14.77,0,0,0-27.08,4.91,8.64,8.64,0,0,1,6.62,4.17l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H62.06a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p10n-7" d="M27.58,31.48a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46A7.08,7.08,0,0,0,11,41.87H27.48a5.21,5.21,0,0,0,.13-10.42Z"/><rect class="p10n-8" x="36.83" y="67.86" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-37.14 87.43) rotate(-72.96)"/><rect class="p10n-8" x="44.71" y="70.57" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-34.16 96.88) rotate(-72.96)"/><rect class="p10n-8" x="27.44" y="65.65" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-41.66 76.88) rotate(-72.96)"/><rect class="p10n-8" x="59.08" y="63.32" width="7.46" height="1.94" rx="0.55" ry="0.55" transform="translate(-16.9 105.82) rotate(-73.19)"/><rect class="p10n-2" x="41.42" y="66.41" width="7.48" height="1.95" rx="0.55" ry="0.55" transform="translate(-32.41 91.12) rotate(-73.19)"/><rect class="p10n-2" x="49.93" y="67.87" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-27.88 99.96) rotate(-72.96)"/><rect class="p10n-2" x="32.59" y="66.74" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-39.06 82.58) rotate(-72.96)"/><rect class="p10n-2" x="60.32" y="65.5" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-18.27 108.22) rotate(-72.96)"/><polygon class="p10n-2" points="59.1 71.18 80.67 71.18 69.89 52.98 59.1 71.18"/><path class="p10n-9" d="M83,72.55H56.74L69.88,50.36Zm-21.58-2.7H78.3L69.88,55.64Z"/><path class="p10n-10" d="M70.07,59.16a10.2,10.2,0,0,0-1,3c0,1,1.77,1.43,1.77,2.84s-3.33,2.77-3.33,2.77"/><path class="p10n-10" d="M70.24,59.16a6.07,6.07,0,0,0-.77,2.31c0,1,2.36.89,2.8,2.76.33,1.39-1.17,3.57-1.17,3.57"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
main/images/p11j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

46
main/images/p11j.svg Normal file
View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p11j-0{opacity:0.3;}
.p11j-1{fill:#231F20;}
.p11j-2{fill:#D8D9D8;}
.p11j-3{fill:#79CCF1;}
.p11j-4{fill:#FFFFFF;}
.p11j-5{fill:#CF2E29;}
.p11j-6{fill:none;stroke:#231F20;stroke-miterlimit:10;}
</style>
<title>16Plan de travail 1</title>
<g class="p11j-0">
<path class="p11j-1" d="M64,31.6c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.6,10.8-11.9
C73.3,37,69.3,32.5,64,31.6L64,31.6z"/>
<path class="p11j-1" d="M28.2,25.7c-0.8-4.5-4.7-7.7-9.3-7.7c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.1,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.4c2.9,0,5.2-2.3,5.3-5.1C33.4,28,31.1,25.7,28.2,25.7
L28.2,25.7z"/>
</g>
<path class="p11j-2" d="M61.3,29C57.1,22.1,48,19.9,41,24.2c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.8c6.3-0.1,11.3-5.2,11.3-11.5
C71.3,34.5,67,29.7,61.3,29L61.3,29z"/>
<path class="p11j-2" d="M25.6,23c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.5c2.9,0,5.2-2.3,5.3-5.2S28.5,23,25.6,23L25.6,23z"/>
<path class="p11j-3" d="M37.6,63.5l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L38,64.2C37.7,64.1,37.5,63.8,37.6,63.5z"/>
<path class="p11j-3" d="M46.1,68.5l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L48,69.1c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C46.2,69.1,46.1,68.8,46.1,68.5z"/>
<path class="p11j-3" d="M27.3,63.5l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C27.4,64.1,27.2,63.8,27.3,63.5z"/>
<path class="p11j-3" d="M57.8,62.3l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L58.2,63C57.9,62.9,57.7,62.6,57.8,62.3z"/>
<path class="p11j-4" d="M42.7,62.3l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L43.1,63C42.8,62.9,42.6,62.6,42.7,62.3z"/>
<path class="p11j-4" d="M51.8,63.6l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C51.9,64.1,51.7,63.8,51.8,63.6z"/>
<path class="p11j-4" d="M32.6,62.2l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C32.6,62.8,32.5,62.5,32.6,62.2z"/>
<polygon class="p11j-4" points="58.4,65.4 80,65.4 69.2,47.2 "/>
<path class="p11j-5" d="M82.3,66.7H56l13.2-22.2L82.3,66.7z M60.8,64h16.9l-8.4-14.2L60.8,64z"/>
<path class="p11j-6" d="M69.4,53.3c-0.5,0.9-0.8,2-1,3c0,1,1.8,1.4,1.8,2.8s-3.3,2.8-3.3,2.8"/>
<path class="p11j-6" d="M69.5,53.3c-0.4,0.7-0.7,1.5-0.8,2.3c0,1,2.4,0.9,2.8,2.8c0.3,1.4-1.2,3.6-1.2,3.6"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
main/images/p11n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

46
main/images/p11n.svg Normal file
View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p11n-0{opacity:0.3;}
.p11n-1{fill:#231F20;}
.p11n-2{fill:#D8D9D8;}
.p11n-3{fill:#79CCF1;}
.p11n-4{fill:#FFFFFF;}
.p11n-5{fill:#CF2E29;}
.p11n-6{fill:none;stroke:#231F20;stroke-miterlimit:10;}
</style>
<title>16Plan de travail 1</title>
<g class="p11n-0">
<path class="p11n-1" d="M64,31.6c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.6,10.8-11.9
C73.3,37,69.3,32.5,64,31.6L64,31.6z"/>
<path class="p11n-1" d="M28.2,25.7c-0.8-4.5-4.7-7.7-9.3-7.7c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.1,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.4c2.9,0,5.2-2.3,5.3-5.1C33.4,28,31.1,25.7,28.2,25.7
L28.2,25.7z"/>
</g>
<path class="p11n-2" d="M61.3,29C57.1,22.1,48,19.9,41,24.2c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.8c6.3-0.1,11.3-5.2,11.3-11.5
C71.3,34.5,67,29.7,61.3,29L61.3,29z"/>
<path class="p11n-2" d="M25.6,23c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.5c2.9,0,5.2-2.3,5.3-5.2S28.5,23,25.6,23L25.6,23z"/>
<path class="p11n-3" d="M37.6,63.5l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L38,64.2C37.7,64.1,37.5,63.8,37.6,63.5z"/>
<path class="p11n-3" d="M46.1,68.5l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L48,69.1c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C46.2,69.1,46.1,68.8,46.1,68.5z"/>
<path class="p11n-3" d="M27.3,63.5l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C27.4,64.1,27.2,63.8,27.3,63.5z"/>
<path class="p11n-3" d="M57.8,62.3l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L58.2,63C57.9,62.9,57.7,62.6,57.8,62.3z"/>
<path class="p11n-4" d="M42.7,62.3l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L43.1,63C42.8,62.9,42.6,62.6,42.7,62.3z"/>
<path class="p11n-4" d="M51.8,63.6l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C51.9,64.1,51.7,63.8,51.8,63.6z"/>
<path class="p11n-4" d="M32.6,62.2l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C32.6,62.8,32.5,62.5,32.6,62.2z"/>
<polygon class="p11n-4" points="58.4,65.4 80,65.4 69.2,47.2 "/>
<path class="p11n-5" d="M82.3,66.7H56l13.2-22.2L82.3,66.7z M60.8,64h16.9l-8.4-14.2L60.8,64z"/>
<path class="p11n-6" d="M69.4,53.3c-0.5,0.9-0.8,2-1,3c0,1,1.8,1.4,1.8,2.8s-3.3,2.8-3.3,2.8"/>
<path class="p11n-6" d="M69.5,53.3c-0.4,0.7-0.7,1.5-0.8,2.3c0,1,2.4,0.9,2.8,2.8c0.3,1.4-1.2,3.6-1.2,3.6"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
main/images/p12j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

1
main/images/p12j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_17" data-name="Calque 17" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p12j-1{fill:#eeeb61;opacity:0.51;isolation:isolate;}.p12j-2{fill:#f5b21a;stroke:#fde901;stroke-miterlimit:10;}.p12j-3{opacity:0.3;}.p12j-4{fill:#231f20;}.p12j-5{fill:#d8d9d8;}.p12j-6{fill:#79ccf1;}.p12j-7{fill:#fff;}</style></defs><title>17Plan de travail 1</title><circle class="p12j-1" cx="58.46" cy="32.24" r="20.16" transform="translate(25.48 90.28) rotate(-89.27)"/><circle class="p12j-2" cx="58.46" cy="32.24" r="15.38"/><g class="p12j-3"><path class="p12j-4" d="M68.75,41.86a14.77,14.77,0,0,0-27.08,4.88A8.62,8.62,0,0,1,48.33,51l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48h25.7a11.37,11.37,0,0,0,1.25-22.59Z"/><path class="p12j-4" d="M33,35.88a9.29,9.29,0,0,0-9.3-7.65,9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64L20.63,36c-1.36-3-6-3.1-6.71-3.1a6.94,6.94,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.23,6.93h16.4A5.21,5.21,0,1,0,33,35.85h0Z"/></g><path class="p12j-5" d="M66.13,39.24a14.77,14.77,0,0,0-27.08,4.89,8.62,8.62,0,0,1,6.64,4.21L44.55,49c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H64.85a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p12j-5" d="M30.37,33.26a9.29,9.29,0,0,0-9.3-7.65,9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64L18,33.36c-1.36-3-6-3.1-6.71-3.1a6.94,6.94,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.23,6.93H30.27a5.21,5.21,0,1,0,.13-10.42h0Z"/><rect class="p12j-6" x="42.15" y="68.47" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-33.96 92.94) rotate(-72.96)"/><rect class="p12j-6" x="51.79" y="68.47" width="7.46" height="1.94" rx="0.55" ry="0.55" transform="translate(-27.01 102.5) rotate(-73.19)"/><rect class="p12j-6" x="31.85" y="68.47" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-41.25 83.1) rotate(-72.96)"/><rect class="p12j-6" x="61.75" y="68.47" width="7.46" height="1.94" rx="0.55" ry="0.55" transform="translate(-19.93 112.04) rotate(-73.19)"/><rect class="p12j-6" x="70.77" y="68.47" width="7.46" height="1.94" rx="0.55" ry="0.55" transform="translate(-13.52 120.67) rotate(-73.19)"/><rect class="p12j-7" x="46.83" y="68.46" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="matrix(0.29, -0.96, 0.96, 0.29, -30.64, 97.41)"/><rect class="p12j-7" x="56.79" y="68.47" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-23.61 106.94) rotate(-72.96)"/><rect class="p12j-7" x="37.08" y="68.46" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-37.54 88.1) rotate(-72.96)"/><rect class="p12j-7" x="66.28" y="68.47" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-16.9 116.01) rotate(-72.96)"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
main/images/p12n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

1
main/images/p12n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_18" data-name="Calque 18" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p12n-1{fill:#44454e;opacity:0.25;}.p12n-1,.p12n-3{isolation:isolate;}.p12n-2{fill:#fff;}.p12n-3{fill:#636573;opacity:0.18;}.p12n-4{fill:#fdfcea;}.p12n-5{opacity:0.3;}.p12n-6{fill:#231f20;}.p12n-7{fill:#d8d9d8;}.p12n-8{fill:#79ccf1;}</style></defs><title>18Plan de travail 1</title><circle class="p12n-1" cx="51.55" cy="33.04" r="20.24"/><path class="p12n-2" d="M60.66,35.69a.8.8,0,0,0,.79-.79h0V32.25a.79.79,0,1,0-1.57-.18.54.54,0,0,0,0,.18v2.69a.79.79,0,0,0,.78.8h0Z"/><path class="p12n-2" d="M62.8,33.55a.79.79,0,0,0-.79-.79H59.36a.79.79,0,0,0-.17,1.57H62a.81.81,0,0,0,.8-.78h0Z"/><path class="p12n-2" d="M35.25,22.47a.8.8,0,0,0,.79-.79h0V19a.79.79,0,1,0-1.57-.18.54.54,0,0,0,0,.18v2.65a.79.79,0,0,0,.78.8h0Z"/><path class="p12n-2" d="M37.39,20.33a.79.79,0,0,0-.79-.79H34a.79.79,0,0,0-.17,1.57h2.85a.81.81,0,0,0,.8-.78h0Z"/><path class="p12n-2" d="M57.5,20.33a.8.8,0,0,0,.79-.79h0v-2.6a.79.79,0,1,0-1.57-.18.54.54,0,0,0,0,.18v2.65a.79.79,0,0,0,.78.8h0Z"/><path class="p12n-2" d="M59.64,18.19a.79.79,0,0,0-.79-.79H56.2A.79.79,0,0,0,56,19h2.83a.81.81,0,0,0,.8-.78h0Z"/><path class="p12n-3" d="M51.86,18.7a14.49,14.49,0,0,1,5-.27,14.42,14.42,0,0,0,6.19,26.4A14.44,14.44,0,1,1,47.16,20.71,14.2,14.2,0,0,1,51.86,18.7Z"/><path class="p12n-4" d="M47.92,20a13.54,13.54,0,0,1,4.75-.25,13.62,13.62,0,0,0,5.84,24.89A13.64,13.64,0,1,1,47.86,19.94Z"/><g class="p12n-5"><path class="p12n-6" d="M68.94,41.94a14.77,14.77,0,0,0-27,4.91,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.7a11.37,11.37,0,0,0,1.23-22.57Z"/><path class="p12n-6" d="M33.18,35.94a9.29,9.29,0,0,0-9.32-7.61,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.07,7.07,0,0,0,7.22,6.93H33A5.21,5.21,0,0,0,33.15,36Z"/></g><path class="p12n-7" d="M66.32,39.33a14.77,14.77,0,0,0-27.08,4.91,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65a11.37,11.37,0,0,0,1.23-22.57Z"/><path class="p12n-7" d="M30.56,33.33a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46A7.07,7.07,0,0,0,14,43.72H30.46a5.21,5.21,0,0,0,.13-10.42Z"/><rect class="p12n-8" x="40.72" y="67.71" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-34.24 91.04) rotate(-72.96)"/><rect class="p12n-8" x="51.03" y="67.77" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-27.01 100.94) rotate(-72.96)"/><rect class="p12n-8" x="30.4" y="67.71" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-41.54 81.17) rotate(-72.96)"/><rect class="p12n-8" x="61.05" y="67.71" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-19.87 110.48) rotate(-72.96)"/><rect class="p12n-8" x="71.18" y="67.71" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-12.71 120.16) rotate(-72.96)"/><rect class="p12n-2" x="45.96" y="67.71" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="translate(-30.54 96.05) rotate(-72.96)"/><rect class="p12n-2" x="35.73" y="67.7" width="7.44" height="1.93" rx="0.55" ry="0.55" transform="matrix(0.29, -0.96, 0.96, 0.29, -37.76, 86.26)"/><rect class="p12n-2" x="66.43" y="67.75" width="7.46" height="1.94" rx="0.55" ry="0.55" transform="translate(-15.91 116.01) rotate(-73.19)"/><rect class="p12n-2" x="56.18" y="67.74" width="7.46" height="1.94" rx="0.55" ry="0.55" transform="translate(-23.19 106.18) rotate(-73.19)"/></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
main/images/p13j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

45
main/images/p13j.svg Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_19" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p13j-0{opacity:0.3;}
.p13j-1{fill:#231F20;}
.p13j-2{fill:#D8D9D8;}
.p13j-3{fill:#79CCF1;}
.p13j-4{fill:#FFFFFF;}
</style>
<title>19Plan de travail 1</title>
<g class="p13j-0">
<path class="p13j-1" d="M68.9,34.4c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.7,10.8-11.9
C78.2,39.7,74.2,35.3,68.9,34.4L68.9,34.4z"/>
<path class="p13j-1" d="M33.2,28.4c-0.8-4.5-4.8-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0H33c2.9,0,5.2-2.3,5.3-5.1
C38.3,30.8,36,28.5,33.2,28.4L33.2,28.4z"/>
</g>
<path class="p13j-2" d="M66.3,31.8c-4.3-7-13.4-9.1-20.3-4.9c-3.5,2.2-6,5.7-6.8,9.7c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5H65c6.3-0.4,11-5.8,10.6-12.1
C75.3,37.1,71.4,32.7,66.3,31.8z"/>
<path class="p13j-2" d="M30.5,25.8c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0h16.4c2.9,0,5.2-2.3,5.3-5.1
C35.7,28.2,33.4,25.8,30.5,25.8L30.5,25.8L30.5,25.8L30.5,25.8z"/>
<path class="p13j-3" d="M41.3,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C41.4,66.7,41.3,66.4,41.3,66.1z"/>
<path class="p13j-3" d="M51.6,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L52,66.8C51.7,66.7,51.6,66.4,51.6,66.1z"/>
<path class="p13j-3" d="M31,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C31.1,66.7,30.9,66.4,31,66.1z"/>
<path class="p13j-3" d="M61.7,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L62,66.8C61.7,66.7,61.6,66.4,61.7,66.1z"/>
<path class="p13j-3" d="M71.8,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C71.9,66.7,71.7,66.4,71.8,66.1z"/>
<path class="p13j-4" d="M46.6,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C46.6,66.7,46.5,66.4,46.6,66.1z"/>
<path class="p13j-4" d="M36.3,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C36.4,66.7,36.3,66.3,36.3,66.1z"/>
<path class="p13j-4" d="M67.1,66.1l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C67.1,66.7,67,66.4,67.1,66.1z"/>
<path class="p13j-4" d="M56.8,66.1l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C56.9,66.7,56.7,66.4,56.8,66.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
main/images/p13n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

45
main/images/p13n.svg Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_19" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p13n-0{opacity:0.3;}
.p13n-1{fill:#231F20;}
.p13n-2{fill:#D8D9D8;}
.p13n-3{fill:#79CCF1;}
.p13n-4{fill:#FFFFFF;}
</style>
<title>19Plan de travail 1</title>
<g class="p13n-0">
<path class="p13n-1" d="M68.9,34.4c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.7,10.8-11.9
C78.2,39.7,74.2,35.3,68.9,34.4L68.9,34.4z"/>
<path class="p13n-1" d="M33.2,28.4c-0.8-4.5-4.8-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0H33c2.9,0,5.2-2.3,5.3-5.1
C38.3,30.8,36,28.5,33.2,28.4L33.2,28.4z"/>
</g>
<path class="p13n-2" d="M66.3,31.8c-4.3-7-13.4-9.1-20.3-4.9c-3.5,2.2-6,5.7-6.8,9.7c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5H65c6.3-0.4,11-5.8,10.6-12.1
C75.3,37.1,71.4,32.7,66.3,31.8z"/>
<path class="p13n-2" d="M30.5,25.8c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0h16.4c2.9,0,5.2-2.3,5.3-5.1
C35.7,28.2,33.4,25.8,30.5,25.8L30.5,25.8L30.5,25.8L30.5,25.8z"/>
<path class="p13n-3" d="M41.3,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C41.4,66.7,41.3,66.4,41.3,66.1z"/>
<path class="p13n-3" d="M51.6,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L52,66.8C51.7,66.7,51.6,66.4,51.6,66.1z"/>
<path class="p13n-3" d="M31,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C31.1,66.7,30.9,66.4,31,66.1z"/>
<path class="p13n-3" d="M61.7,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4L62,66.8C61.7,66.7,61.6,66.4,61.7,66.1z"/>
<path class="p13n-3" d="M71.8,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C71.9,66.7,71.7,66.4,71.8,66.1z"/>
<path class="p13n-4" d="M46.6,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C46.6,66.7,46.5,66.4,46.6,66.1z"/>
<path class="p13n-4" d="M36.3,66.1l1.9-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.9,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C36.4,66.7,36.3,66.3,36.3,66.1z"/>
<path class="p13n-4" d="M67.1,66.1l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C67.1,66.7,67,66.4,67.1,66.1z"/>
<path class="p13n-4" d="M56.8,66.1l1.8-6.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-1.8,6.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C56.9,66.7,56.7,66.4,56.8,66.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
main/images/p14n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

55
main/images/p14n.svg Normal file
View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_22" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p14n-0{opacity:0.3;}
.p14n-1{fill:#231F20;}
.p14n-2{fill:#D8D9D8;}
.p14n-3{fill:#79CCF1;}
.p14n-4{fill:#FFFFFF;}
</style>
<title>22Plan de travail 1</title>
<g class="p14n-0">
<path class="p14n-1" d="M68.9,31.4c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.7,10.8-11.9
C78.2,36.7,74.2,32.3,68.9,31.4L68.9,31.4z"/>
<path class="p14n-1" d="M33.2,25.5c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,1-4.6,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0H33c2.9,0,5.2-2.3,5.3-5.1
C38.3,27.8,36,25.5,33.2,25.5L33.2,25.5z"/>
</g>
<path class="p14n-2" d="M66.3,28.9C62,21.9,52.9,19.8,46,24c-3.5,2.2-6,5.7-6.7,9.7c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5H65c6.3-0.4,11-5.8,10.7-12C75.4,34.2,71.5,29.8,66.3,28.9
L66.3,28.9z"/>
<path class="p14n-2" d="M30.5,22.9c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6L18.2,23
c-1.4-3-6-3.1-6.7-3.1c-2.8,1-4.6,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.4c2.9,0,5.2-2.3,5.3-5.1C35.7,25.2,33.4,22.9,30.5,22.9
L30.5,22.9z"/>
<path class="p14n-3" d="M36.7,60.7l1.3-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l-1.4,4.8
c-0.1,0.5-0.7,0.9-1.2,0.7c0,0,0,0,0,0l0,0C36.9,61.8,36.5,61.3,36.7,60.7C36.7,60.8,36.7,60.7,36.7,60.7z"/>
<path class="p14n-3" d="M34.3,68.7l1.3-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l-1.4,4.8
c-0.1,0.5-0.7,0.8-1.2,0.7c0,0,0,0,0,0l0,0C34.5,69.8,34.2,69.3,34.3,68.7C34.3,68.7,34.3,68.7,34.3,68.7z"/>
<path class="p14n-3" d="M47.7,60.7l1.4-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l-1.3,4.8
c-0.1,0.5-0.7,0.9-1.2,0.7c0,0,0,0,0,0l0,0C47.9,61.8,47.5,61.3,47.7,60.7C47.7,60.8,47.7,60.7,47.7,60.7z"/>
<path class="p14n-3" d="M45.4,68.7l1.3-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l-1.4,4.8
c-0.1,0.5-0.7,0.8-1.2,0.7c0,0,0,0,0,0l0,0C45.5,69.8,45.2,69.3,45.4,68.7C45.4,68.7,45.4,68.7,45.4,68.7z"/>
<path class="p14n-3" d="M58.7,60.7l1.4-4.8c0.1-0.5,0.7-0.8,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.8,0.7,0.7,1.2c0,0,0,0,0,0l-1.3,4.8
c-0.1,0.5-0.7,0.9-1.2,0.7c0,0,0,0,0,0l0,0C58.9,61.8,58.6,61.3,58.7,60.7C58.7,60.8,58.7,60.8,58.7,60.7z"/>
<path class="p14n-3" d="M56.4,68.7l1.3-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.8,0.7,0.7,1.2c0,0,0,0,0,0l-1.4,4.8
c-0.1,0.5-0.7,0.8-1.2,0.7c0,0,0,0,0,0l0,0C56.5,69.8,56.2,69.3,56.4,68.7C56.4,68.7,56.4,68.7,56.4,68.7z"/>
<path class="p14n-3" d="M72.3,55.2L72.3,55.2c0.5,0.2,0.8,0.7,0.7,1.2l0,0l-1.4,4.8c-0.1,0.5-0.7,0.8-1.2,0.7l0,0
c-0.5-0.1-0.8-0.7-0.7-1.2l0,0l1.4-4.8C71.2,55.4,71.8,55.1,72.3,55.2C72.3,55.2,72.3,55.2,72.3,55.2L72.3,55.2z"/>
<path class="p14n-3" d="M70,63.2L70,63.2c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l0,0l-1.4,4.8c-0.1,0.5-0.7,0.8-1.2,0.7l0,0
c-0.5-0.1-0.8-0.7-0.7-1.2l0,0l1.4-4.8C68.9,63.4,69.5,63.1,70,63.2C70,63.2,70,63.2,70,63.2L70,63.2z"/>
<path class="p14n-4" d="M67.3,55.2L67.3,55.2c0.5,0.1,0.8,0.7,0.7,1.2c0,0,0,0,0,0l0,0l-1.4,4.8c-0.1,0.5-0.7,0.8-1.2,0.7l0,0
c-0.5-0.1-0.8-0.7-0.7-1.2l0,0l1.4-4.8C66.2,55.4,66.8,55.1,67.3,55.2C67.3,55.2,67.3,55.2,67.3,55.2L67.3,55.2z"/>
<path class="p14n-4" d="M65,63.2L65,63.2c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l0,0l-1.4,4.8c-0.1,0.5-0.7,0.8-1.2,0.7l0,0
c-0.5-0.1-0.8-0.7-0.7-1.2l0,0l1.4-4.8C63.9,63.4,64.5,63.1,65,63.2C65,63.2,65,63.2,65,63.2L65,63.2z"/>
<path class="p14n-4" d="M53.7,60.7l1.3-4.8c0.1-0.5,0.7-0.8,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.8,0.7,0.7,1.2c0,0,0,0,0,0l-1.4,4.8
c-0.1,0.5-0.7,0.8-1.2,0.7c0,0,0,0,0,0l0,0C53.9,61.8,53.6,61.3,53.7,60.7C53.7,60.7,53.7,60.7,53.7,60.7z"/>
<path class="p14n-4" d="M51.4,68.7l1.3-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l-1.4,4.8
c-0.1,0.5-0.7,0.8-1.2,0.7c0,0,0,0,0,0l0,0C51.5,69.8,51.2,69.3,51.4,68.7C51.4,68.7,51.4,68.7,51.4,68.7z"/>
<path class="p14n-4" d="M42.7,60.7l1.4-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0,0,0,0l0,0c0.5,0.1,0.9,0.7,0.7,1.2c0,0,0,0,0,0l-1.3,4.8
c-0.1,0.5-0.7,0.9-1.2,0.7c0,0,0,0,0,0l0,0C42.9,61.8,42.5,61.3,42.7,60.7C42.7,60.8,42.7,60.7,42.7,60.7z"/>
<path class="p14n-4" d="M40.3,68.7l1.3-4.8c0.1-0.5,0.7-0.9,1.2-0.7c0,0,0.1,0,0.1,0l0,0c0.5,0.1,0.8,0.7,0.7,1.2c0,0,0,0,0,0l-1.4,4.8
c-0.1,0.5-0.7,0.8-1.2,0.7c0,0,0,0,0,0l0,0C40.6,69.9,40.2,69.3,40.3,68.7C40.3,68.8,40.3,68.7,40.3,68.7z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

BIN
main/images/p15j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

33
main/images/p15j.svg Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_23" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p15j-0{fill:#79CCF1;}
.p15j-1{fill:#FFFFFF;}
.p15j-2{fill:#919191;}
</style>
<title>23Plan de travail 1</title>
<path class="p15j-0" d="M39.5,68.1L44.5,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C39.7,68.6,39.5,68.4,39.5,68.1z"/>
<path class="p15j-0" d="M51.7,68.1L56.6,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.2
c-0.1,0.3-0.4,0.4-0.7,0.3L52,68.7C51.8,68.7,51.6,68.4,51.7,68.1L51.7,68.1z"/>
<path class="p15j-0" d="M28,68.1L32.9,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C28.1,68.6,28,68.3,28,68.1z"/>
<path class="p15j-0" d="M63.3,68.1L68.2,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C63.4,68.6,63.3,68.4,63.3,68.1z"/>
<path class="p15j-1" d="M45.5,68.1l5-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3L46,68.7C45.7,68.6,45.5,68.4,45.5,68.1C45.5,68.1,45.5,68.1,45.5,68.1L45.5,68.1z"/>
<path class="p15j-1" d="M57.7,68.1L62.6,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.2
c-0.1,0.3-0.4,0.4-0.7,0.3L58,68.7C57.8,68.7,57.6,68.4,57.7,68.1L57.7,68.1L57.7,68.1z"/>
<path class="p15j-1" d="M34,68.1L38.9,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C34.1,68.6,33.9,68.3,34,68.1C34,68.1,34,68.1,34,68.1z"/>
<path class="p15j-1" d="M69.3,68.1L74.3,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C69.5,68.6,69.3,68.4,69.3,68.1z"/>
<path class="p15j-2" d="M67.6,29.9c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.2,5.2,1.8,6.7,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.7,10.8-11.9
C76.9,35.2,72.9,30.7,67.6,29.9L67.6,29.9z"/>
<path class="p15j-2" d="M31.9,24c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.4c2.9,0,5.2-2.3,5.3-5.1C37,26.4,34.7,24,31.9,24L31.9,24
z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
main/images/p15n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

33
main/images/p15n.svg Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_23" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p15n-0{fill:#79CCF1;}
.p15n-1{fill:#FFFFFF;}
.p15n-2{fill:#919191;}
</style>
<title>23Plan de travail 1</title>
<path class="p15n-0" d="M39.5,68.1L44.5,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C39.7,68.6,39.5,68.4,39.5,68.1z"/>
<path class="p15n-0" d="M51.7,68.1L56.6,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.2
c-0.1,0.3-0.4,0.4-0.7,0.3L52,68.7C51.8,68.7,51.6,68.4,51.7,68.1L51.7,68.1z"/>
<path class="p15n-0" d="M28,68.1L32.9,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C28.1,68.6,28,68.3,28,68.1z"/>
<path class="p15n-0" d="M63.3,68.1L68.2,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C63.4,68.6,63.3,68.4,63.3,68.1z"/>
<path class="p15n-1" d="M45.5,68.1l5-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3L46,68.7C45.7,68.6,45.5,68.4,45.5,68.1C45.5,68.1,45.5,68.1,45.5,68.1L45.5,68.1z"/>
<path class="p15n-1" d="M57.7,68.1L62.6,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.2
c-0.1,0.3-0.4,0.4-0.7,0.3L58,68.7C57.8,68.7,57.6,68.4,57.7,68.1L57.7,68.1L57.7,68.1z"/>
<path class="p15n-1" d="M34,68.1L38.9,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C34.1,68.6,33.9,68.3,34,68.1C34,68.1,34,68.1,34,68.1z"/>
<path class="p15n-1" d="M69.3,68.1L74.3,54c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0.1,0.4,0.3,0.4,0.5l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C69.5,68.6,69.3,68.4,69.3,68.1z"/>
<path class="p15n-2" d="M67.6,29.9c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.2,5.2,1.8,6.7,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.7,10.8-11.9
C76.9,35.2,72.9,30.7,67.6,29.9L67.6,29.9z"/>
<path class="p15n-2" d="M31.9,24c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.4c2.9,0,5.2-2.3,5.3-5.1C37,26.4,34.7,24,31.9,24L31.9,24
z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
main/images/p16j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

47
main/images/p16j.svg Normal file
View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_26" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p16j-0{fill:#79CCF1;}
.p16j-1{fill:#FFFFFF;}
.p16j-2{opacity:0.3;}
.p16j-3{fill:#231F20;}
.p16j-4{fill:#D8D9D8;}
.p16j-5{fill:#FDDA00;}
.p16j-6{fill:#F47A20;}
</style>
<title>26Plan de travail 1</title>
<path class="p16j-0" d="M40.8,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C40.9,69.7,40.8,69.4,40.8,69.2L40.8,69.2z"/>
<path class="p16j-0" d="M53,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C53.1,69.7,52.9,69.4,53,69.2L53,69.2L53,69.2z"/>
<path class="p16j-0" d="M29.3,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C29.4,69.7,29.2,69.4,29.3,69.2L29.3,69.2z"/>
<path class="p16j-0" d="M64.6,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3L71,55c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14
c-0.1,0.3-0.4,0.4-0.7,0.3L65,69.7C64.7,69.7,64.6,69.4,64.6,69.2L64.6,69.2z"/>
<path class="p16j-1" d="M46.8,69.2l5-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C47,69.7,46.8,69.5,46.8,69.2C46.8,69.2,46.8,69.1,46.8,69.2L46.8,69.2z"/>
<path class="p16j-1" d="M59,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-5,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C59,69.7,58.9,69.4,59,69.2L59,69.2L59,69.2z"/>
<path class="p16j-1" d="M35.3,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C35.4,69.7,35.2,69.4,35.3,69.2L35.3,69.2z"/>
<path class="p16j-1" d="M70.6,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3L71,69.7C70.7,69.7,70.6,69.4,70.6,69.2L70.6,69.2z"/>
<g class="p16j-2">
<path class="p16j-3" d="M68.9,31.5c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.7,10.8-11.9
C78.2,36.8,74.2,32.4,68.9,31.5L68.9,31.5z"/>
<path class="p16j-3" d="M33.2,25.6c-0.8-4.5-4.8-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9H33c2.9,0,5.2-2.3,5.3-5.1C38.3,28,36,25.6,33.2,25.6
L33.2,25.6L33.2,25.6z"/>
</g>
<path class="p16j-4" d="M66.3,28.9C62,21.9,52.9,19.8,46,24.1c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5H65c6.3-0.2,11.2-5.5,11-11.8
C75.8,34.3,71.7,29.7,66.3,28.9L66.3,28.9z"/>
<path class="p16j-4" d="M30.5,23c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.4c2.9,0,5.2-2.3,5.3-5.1C35.7,25.3,33.4,23,30.5,23
L30.5,23L30.5,23L30.5,23z"/>
<polygon class="p16j-5" points="52.4,38.2 60.1,38.2 57.8,44.7 61.8,44.7 51.1,65.2 53.5,50.1 50.1,50.1 "/>
<polygon class="p16j-6" points="50.8,36.7 58.6,36.7 56.3,43.1 60.3,43.1 49.5,63.7 52,48.6 48.5,48.6 "/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
main/images/p16n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

47
main/images/p16n.svg Normal file
View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_26" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p16n-0{fill:#79CCF1;}
.p16n-1{fill:#FFFFFF;}
.p16n-2{opacity:0.3;}
.p16n-3{fill:#231F20;}
.p16n-4{fill:#D8D9D8;}
.p16n-5{fill:#FDDA00;}
.p16n-6{fill:#F47A20;}
</style>
<title>26Plan de travail 1</title>
<path class="p16n-0" d="M40.8,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C40.9,69.7,40.8,69.4,40.8,69.2L40.8,69.2z"/>
<path class="p16n-0" d="M53,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C53.1,69.7,52.9,69.4,53,69.2L53,69.2L53,69.2z"/>
<path class="p16n-0" d="M29.3,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C29.4,69.7,29.2,69.4,29.3,69.2L29.3,69.2z"/>
<path class="p16n-0" d="M64.6,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3L71,55c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14
c-0.1,0.3-0.4,0.4-0.7,0.3L65,69.7C64.7,69.7,64.6,69.4,64.6,69.2L64.6,69.2z"/>
<path class="p16n-1" d="M46.8,69.2l5-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C47,69.7,46.8,69.5,46.8,69.2C46.8,69.2,46.8,69.1,46.8,69.2L46.8,69.2z"/>
<path class="p16n-1" d="M59,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-5,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C59,69.7,58.9,69.4,59,69.2L59,69.2L59,69.2z"/>
<path class="p16n-1" d="M35.3,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3l-0.8-0.2C35.4,69.7,35.2,69.4,35.3,69.2L35.3,69.2z"/>
<path class="p16n-1" d="M70.6,69.2l4.9-14.1c0.1-0.3,0.4-0.4,0.7-0.3l0.8,0.2c0.3,0,0.4,0.3,0.4,0.5c0,0,0,0,0,0l0,0l-4.9,14.1
c-0.1,0.3-0.4,0.4-0.7,0.3L71,69.7C70.7,69.7,70.6,69.4,70.6,69.2L70.6,69.2z"/>
<g class="p16n-2">
<path class="p16n-3" d="M68.9,31.5c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7c6.3-0.3,11.1-5.7,10.8-11.9
C78.2,36.8,74.2,32.4,68.9,31.5L68.9,31.5z"/>
<path class="p16n-3" d="M33.2,25.6c-0.8-4.5-4.8-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9H33c2.9,0,5.2-2.3,5.3-5.1C38.3,28,36,25.6,33.2,25.6
L33.2,25.6L33.2,25.6z"/>
</g>
<path class="p16n-4" d="M66.3,28.9C62,21.9,52.9,19.8,46,24.1c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5H65c6.3-0.2,11.2-5.5,11-11.8
C75.8,34.3,71.7,29.7,66.3,28.9L66.3,28.9z"/>
<path class="p16n-4" d="M30.5,23c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.4c2.9,0,5.2-2.3,5.3-5.1C35.7,25.3,33.4,23,30.5,23
L30.5,23L30.5,23L30.5,23z"/>
<polygon class="p16n-5" points="52.4,38.2 60.1,38.2 57.8,44.7 61.8,44.7 51.1,65.2 53.5,50.1 50.1,50.1 "/>
<polygon class="p16n-6" points="50.8,36.7 58.6,36.7 56.3,43.1 60.3,43.1 49.5,63.7 52,48.6 48.5,48.6 "/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
main/images/p17j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

1
main/images/p17j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_27" data-name="Calque 27" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p17j-1{fill:#eeeb61;opacity:0.51;}.p17j-1,.p17j-6{isolation:isolate;}.p17j-2{fill:#f5b21a;stroke:#fde901;stroke-miterlimit:10;}.p17j-3{opacity:0.3;}.p17j-4{fill:#231f20;}.p17j-5{fill:#d8d9d8;}.p17j-6{fill:#fff;opacity:0.8;}.p17j-7{fill:#79ccf1;}</style></defs><title>27Plan de travail 1</title><circle class="p17j-1" cx="53.15" cy="34.39" r="20.04" transform="translate(18.14 87.13) rotate(-89.33)"/><circle class="p17j-2" cx="53.15" cy="34.39" r="15.29" transform="translate(18.14 87.13) rotate(-89.33)"/><g class="p17j-3"><path class="p17j-4" d="M69,42.52a14.77,14.77,0,0,0-27,4.89,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.72A11.37,11.37,0,0,0,69,42.49Z"/><path class="p17j-4" d="M33.2,36.54a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.15.57c-1.36-3-6-3.1-6.71-3.1A6.92,6.92,0,0,0,9.47,40,7.08,7.08,0,0,0,16.69,47H33.1a5.21,5.21,0,0,0,.13-10.42h0Z"/></g><path class="p17j-5" d="M66.34,39.91a14.77,14.77,0,0,0-27.08,4.91,8.63,8.63,0,0,1,6.62,4.24l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65.06a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p17j-5" d="M30.58,34a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46A7.08,7.08,0,0,0,14,44.36H30.48A5.19,5.19,0,1,0,30.58,34h0Z"/><circle class="p17j-6" cx="40.84" cy="64.49" r="10.07"/><path class="p17j-7" d="M48.1,67.67l-5.49-3.16,5.49-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32l-5.48,3.12V56.6a.89.89,0,0,0-1-.79.87.87,0,0,0-.79.79v6.34l-5.49-3.1a.89.89,0,0,0-1,1.44l.15.09,5.49,3.16-5.53,3.14a.89.89,0,0,0,.74,1.62l.15-.09L40,66v6.34a.89.89,0,0,0,1.77.19V66.06l5.49,3.16a.89.89,0,0,0,1.21-.32h0a.89.89,0,0,0-.31-1.22h0Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
main/images/p17n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

1
main/images/p17n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_28" data-name="Calque 28" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p17n-1{fill:#44454e;opacity:0.25;}.p17n-1,.p17n-3,.p17n-8{isolation:isolate;}.p17n-2,.p17n-8{fill:#fff;}.p17n-3{fill:#636573;opacity:0.18;}.p17n-4{fill:#fdfcea;}.p17n-5{opacity:0.3;}.p17n-6{fill:#231f20;}.p17n-7{fill:#d8d9d8;}.p17n-8{opacity:0.8;}.p17n-9{fill:#79ccf1;}</style></defs><title>28Plan de travail 1</title><circle class="p17n-1" cx="53.61" cy="31.85" r="22.87"/><path class="p17n-2" d="M63.88,34.84a.89.89,0,0,0,.89-.89h0V31A.89.89,0,1,0,63,30.76.61.61,0,0,0,63,31v3a.89.89,0,0,0,.88.9h0Z"/><path class="p17n-2" d="M66.32,32.43a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.22a.9.9,0,0,0,.9-.88h0Z"/><path class="p17n-2" d="M35.19,19.9a.89.89,0,0,0,.89-.89h0V16a.89.89,0,0,0-1.77-.19.61.61,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p17n-2" d="M37.6,17.49a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.22a.9.9,0,0,0,.9-.88h0Z"/><path class="p17n-2" d="M60.34,17.49a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.61.61,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p17n-2" d="M62.76,15.08a.89.89,0,0,0-.88-.87h-3A.89.89,0,1,0,58.69,16h3.19a.9.9,0,0,0,.9-.88h0Z"/><path class="p17n-3" d="M53.56,16.69A15.43,15.43,0,0,1,59,16.4a15.51,15.51,0,0,0,6.69,28.44A15.56,15.56,0,1,1,53.56,16.69Z"/><path class="p17n-4" d="M49.5,17.13a15.4,15.4,0,0,1,5.37-.28A15.39,15.39,0,0,0,61.5,45a15.41,15.41,0,1,1-12-27.91Z"/><g class="p17n-5"><path class="p17n-6" d="M69,44.36a14.77,14.77,0,0,0-27,4.91,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.72A11.37,11.37,0,0,0,69,44.35Z"/><path class="p17n-6" d="M33.2,38.38a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33.06a5.21,5.21,0,0,0,.13-10.42Z"/></g><path class="p17n-7" d="M66.34,41.75a14.77,14.77,0,0,0-27.08,4.91,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65.06a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p17n-7" d="M30.58,35.76a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.93,6.93,0,0,0-4.73,6.53A7.08,7.08,0,0,0,14,46.22H30.45a5.21,5.21,0,0,0,.13-10.42Z"/><circle class="p17n-8" cx="41.31" cy="66.59" r="9.69"/><path class="p17n-9" d="M48.29,69.6,43,66.6l5.28-3a.86.86,0,0,0,.31-1.16h0a.86.86,0,0,0-1.16-.31l-5.28,3V59a.86.86,0,1,0-1.71,0v6.1L35.13,62A.85.85,0,0,0,34,63.27l.16.12.15.09h0l5.28,3-5.28,3A.85.85,0,1,0,35,71h0L35.1,71h0l5.28-3v6.1a.85.85,0,0,0,.85.85.86.86,0,0,0,.86-.85h0V68l5.28,3a.86.86,0,0,0,1.16-.31h0A.87.87,0,0,0,48.29,69.6Z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
main/images/p18j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

33
main/images/p18j.svg Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_29" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p18j-0{opacity:0.3;}
.p18j-1{fill:#231F20;}
.p18j-2{fill:#D8D9D8;}
.p18j-3{opacity:0.8;fill:#FFFFFF;enable-background:new ;}
.p18j-4{fill:#79CCF1;}
</style>
<title>29Plan de travail 1</title>
<g class="p18j-0">
<path class="p18j-1" d="M69,34.7c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7C74,57,78.8,51.7,78.5,45.4
C78.3,40.1,74.3,35.6,69,34.7L69,34.7z"/>
<path class="p18j-1" d="M33.2,28.8c-0.8-4.5-4.8-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9H33c2.9,0,5.2-2.3,5.3-5.1C38.3,31.2,36,28.8,33.2,28.8
L33.2,28.8L33.2,28.8z"/>
</g>
<path class="p18j-2" d="M66.3,32.1C62.1,25.2,53,23,46,27.3c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.8c6.3-0.3,11.1-5.6,10.8-11.9
C75.6,37.5,71.6,33,66.3,32.1z"/>
<path class="p18j-2" d="M30.6,26.1c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.5c2.9,0,5.2-2.3,5.3-5.1C35.8,28.5,33.5,26.2,30.6,26.1
L30.6,26.1L30.6,26.1z"/>
<circle class="p18j-3" cx="40.6" cy="56.4" r="9.8"/>
<path class="p18j-4" d="M47.6,59.5l-5.3-3.1l5.3-3.1c0.4-0.2,0.6-0.7,0.4-1.2l0,0c-0.2-0.4-0.8-0.5-1.2-0.3c0,0,0,0,0,0l0,0L41.4,55
v-6.2c0.1-0.5-0.3-0.9-0.8-1s-0.9,0.3-1,0.8c0,0.1,0,0.1,0,0.2l0,0V55l-5.3-3.1c-0.4-0.2-0.9-0.1-1.2,0.3c0,0,0,0,0,0
c-0.2,0.4-0.1,0.9,0.3,1.2l0,0l5.3,3.1l-5.3,3.1c-0.5,0.1-0.7,0.6-0.6,1.1c0.1,0.5,0.6,0.7,1.1,0.6c0.2,0,0.3-0.1,0.4-0.3l0,0
l5.3-3.1v6.2c0.1,0.5,0.5,0.8,1,0.8c0.4,0,0.7-0.4,0.8-0.8l0,0v-6.2l5.3,3.1c0.4,0.2,0.9,0.1,1.2-0.3l0,0
C48.2,60.3,48,59.8,47.6,59.5L47.6,59.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
main/images/p18n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

33
main/images/p18n.svg Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_29" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p18n-0{opacity:0.3;}
.p18n-1{fill:#231F20;}
.p18n-2{fill:#D8D9D8;}
.p18n-3{opacity:0.8;fill:#FFFFFF;enable-background:new ;}
.p18n-4{fill:#79CCF1;}
</style>
<title>29Plan de travail 1</title>
<g class="p18n-0">
<path class="p18n-1" d="M69,34.7c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.7C74,57,78.8,51.7,78.5,45.4
C78.3,40.1,74.3,35.6,69,34.7L69,34.7z"/>
<path class="p18n-1" d="M33.2,28.8c-0.8-4.5-4.8-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9H33c2.9,0,5.2-2.3,5.3-5.1C38.3,31.2,36,28.8,33.2,28.8
L33.2,28.8L33.2,28.8z"/>
</g>
<path class="p18n-2" d="M66.3,32.1C62.1,25.2,53,23,46,27.3c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.8,6.6,4.2l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5h25.8c6.3-0.3,11.1-5.6,10.8-11.9
C75.6,37.5,71.6,33,66.3,32.1z"/>
<path class="p18n-2" d="M30.6,26.1c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9h16.5c2.9,0,5.2-2.3,5.3-5.1C35.8,28.5,33.5,26.2,30.6,26.1
L30.6,26.1L30.6,26.1z"/>
<circle class="p18n-3" cx="40.6" cy="56.4" r="9.8"/>
<path class="p18n-4" d="M47.6,59.5l-5.3-3.1l5.3-3.1c0.4-0.2,0.6-0.7,0.4-1.2l0,0c-0.2-0.4-0.8-0.5-1.2-0.3c0,0,0,0,0,0l0,0L41.4,55
v-6.2c0.1-0.5-0.3-0.9-0.8-1s-0.9,0.3-1,0.8c0,0.1,0,0.1,0,0.2l0,0V55l-5.3-3.1c-0.4-0.2-0.9-0.1-1.2,0.3c0,0,0,0,0,0
c-0.2,0.4-0.1,0.9,0.3,1.2l0,0l5.3,3.1l-5.3,3.1c-0.5,0.1-0.7,0.6-0.6,1.1c0.1,0.5,0.6,0.7,1.1,0.6c0.2,0,0.3-0.1,0.4-0.3l0,0
l5.3-3.1v6.2c0.1,0.5,0.5,0.8,1,0.8c0.4,0,0.7-0.4,0.8-0.8l0,0v-6.2l5.3,3.1c0.4,0.2,0.9,0.1,1.2-0.3l0,0
C48.2,60.3,48,59.8,47.6,59.5L47.6,59.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
main/images/p19j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

1
main/images/p19j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_30" data-name="Calque 30" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p19j-1{fill:#eeeb61;opacity:0.51;}.p19j-1,.p19j-8{isolation:isolate;}.p19j-2{fill:#f5b21a;stroke:#fde901;stroke-miterlimit:10;}.p19j-3{opacity:0.3;}.p19j-4{fill:#231f20;}.p19j-5{fill:#d8d9d8;}.p19j-6{fill:#79ccf1;}.p19j-7,.p19j-8{fill:#fff;}.p19j-8{opacity:0.8;}</style></defs><title>30Plan de travail 1</title><circle class="p19j-1" cx="53.2" cy="27.9" r="19.92"/><circle class="p19j-2" cx="53.2" cy="27.9" r="15.2" transform="translate(-0.28 0.54) rotate(-0.58)"/><g class="p19j-3"><path class="p19j-4" d="M68.89,36.2a14.77,14.77,0,0,0-27,4.93,8.64,8.64,0,0,1,6.64,4.21L47.39,46c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.65A11.37,11.37,0,0,0,68.88,36.2Z"/><path class="p19j-4" d="M33.13,30.2a9.31,9.31,0,0,0-9.32-7.61,9.57,9.57,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.23,6.93H33a5.21,5.21,0,0,0,.13-10.42Z"/></g><path class="p19j-5" d="M66.27,33.53a14.77,14.77,0,0,0-27.08,4.91,8.64,8.64,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p19j-5" d="M30.51,27.59a9.31,9.31,0,0,0-9.3-7.65,9.57,9.57,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46A7.08,7.08,0,0,0,14,38H30.41a5.21,5.21,0,0,0,.13-10.42h0Z"/><rect class="p19j-6" x="25.18" y="67.43" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-41.25 81.01) rotate(-72.96)"/><rect class="p19j-6" x="33.91" y="67.42" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-35.07 89.35) rotate(-72.96)"/><rect class="p19j-6" x="42.52" y="67.5" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-28.93 97.99) rotate(-73.19)"/><rect class="p19j-6" x="51.52" y="67.51" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-22.54 106.61) rotate(-73.19)"/><rect class="p19j-6" x="60.71" y="67.51" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-16.01 115.4) rotate(-73.19)"/><rect class="p19j-7" x="29.81" y="67.43" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-37.97 85.43) rotate(-72.96)"/><rect class="p19j-7" x="38.53" y="67.42" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-31.8 93.75) rotate(-72.96)"/><rect class="p19j-7" x="47.17" y="67.53" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-25.65 102.45) rotate(-73.19)"/><rect class="p19j-7" x="56.17" y="67.51" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-19.24 111.05) rotate(-73.19)"/><rect class="p19j-7" x="65.54" y="67.51" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-12.58 120.02) rotate(-73.19)"/><circle class="p19j-8" cx="44.51" cy="57.82" r="7.44"/><path class="p19j-6" d="M49.87,60.16l-4.06-2.34,4.06-2.34a.66.66,0,0,0,.24-.9h0a.67.67,0,0,0-.9-.24l-4.06,2.34V52a.65.65,0,0,0-.58-.73.65.65,0,0,0-.73.57.43.43,0,0,0,0,.16v4.69l-4-2.29a.65.65,0,1,0-.65,1.13h0l4.06,2.34L39.19,60.2a.65.65,0,1,0,.65,1.13L43.9,59v4.69a.66.66,0,0,0,.57.74.67.67,0,0,0,.74-.58.43.43,0,0,0,0-.16V59l4.06,2.34a.66.66,0,0,0,.9-.24h0a.67.67,0,0,0-.2-.91h0Z"/><circle class="p19j-8" cx="65.17" cy="58.29" r="7.44" transform="translate(6.36 123) rotate(-89.55)"/><path class="p19j-6" d="M70.53,60.59l-4.06-2.34,4.06-2.34a.66.66,0,0,0,.24-.9h0a.67.67,0,0,0-.91-.2h0l-4,2.38V52.5a.65.65,0,0,0-.58-.73.65.65,0,0,0-.73.57.43.43,0,0,0,0,.16v4.69l-4-2.34A.65.65,0,0,0,59.9,56h0L64,58.32l-4.1,2.35a.65.65,0,1,0,.65,1.13h0l4.06-2.34v4.69a.66.66,0,0,0,.57.74.67.67,0,0,0,.74-.58.43.43,0,0,0,0-.16V59.46l4,2.35a.66.66,0,0,0,.9-.24h0a.67.67,0,0,0-.2-.91h0Z"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
main/images/p19n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

1
main/images/p19n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_31" data-name="Calque 31" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p19n-1{fill:#44454e;opacity:0.25;}.p19n-1,.p19n-3,.p19n-9{isolation:isolate;}.p19n-2,.p19n-9{fill:#fff;}.p19n-3{fill:#636573;opacity:0.18;}.p19n-4{fill:#fdfcea;}.p19n-5{fill:#79ccf1;}.p19n-6{opacity:0.3;}.p19n-7{fill:#231f20;}.p19n-8{fill:#d8d9d8;}.p19n-9{opacity:0.8;}</style></defs><title>31Plan de travail 1</title><circle class="p19n-1" cx="54.87" cy="30.34" r="22.87"/><path class="p19n-2" d="M65.17,33.35a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,0,0-1.77-.19v3.19a.89.89,0,0,0,.88.9h0Z"/><path class="p19n-2" d="M67.58,30.94a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.22A.88.88,0,0,0,67.58,30.94Z"/><path class="p19n-2" d="M36.46,18.41a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19v3.19a.89.89,0,0,0,.88.9h0Z"/><path class="p19n-2" d="M38.83,16a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77H38A.88.88,0,0,0,38.83,16Z"/><path class="p19n-2" d="M61.6,16a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19V15.1A.89.89,0,0,0,61.6,16Z"/><path class="p19n-2" d="M64,13.58a.89.89,0,0,0-.89-.89H60.08a.89.89,0,1,0-.19,1.77h3.22A.89.89,0,0,0,64,13.6h0Z"/><path class="p19n-3" d="M56.06,14.05a15.69,15.69,0,0,1,5.42-.29A15.51,15.51,0,0,0,68.17,42.2,15.56,15.56,0,1,1,56.06,14.05Z"/><path class="p19n-4" d="M50.76,15.66a15.4,15.4,0,0,1,5.37-.28,15.39,15.39,0,0,0,6.63,28.17,15.41,15.41,0,1,1-12-27.91Z"/><rect class="p19n-5" x="25.21" y="67.94" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-41.72 81.39) rotate(-72.96)"/><rect class="p19n-5" x="33.94" y="67.93" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="matrix(0.29, -0.96, 0.96, 0.29, -35.54, 89.73)"/><rect class="p19n-5" x="42.55" y="68.02" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-29.4 98.37) rotate(-73.19)"/><rect class="p19n-5" x="51.55" y="68.02" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-23.01 107) rotate(-73.19)"/><rect class="p19n-5" x="60.74" y="68.02" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-16.48 115.79) rotate(-73.19)"/><rect class="p19n-2" x="29.83" y="67.94" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-38.45 85.81) rotate(-72.96)"/><rect class="p19n-2" x="38.55" y="67.93" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-32.28 94.14) rotate(-72.96)"/><rect class="p19n-2" x="47.19" y="68.04" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-26.13 102.83) rotate(-73.19)"/><rect class="p19n-2" x="56.19" y="68.02" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-19.71 111.44) rotate(-73.19)"/><rect class="p19n-2" x="65.56" y="68.02" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-13.05 120.41) rotate(-73.19)"/><g class="p19n-6"><path class="p19n-7" d="M68.91,36.33a14.77,14.77,0,0,0-27,4.91,8.64,8.64,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.67A11.37,11.37,0,0,0,68.9,36.32Z"/><path class="p19n-7" d="M33.15,30.34a9.29,9.29,0,0,0-9.32-7.68,9.59,9.59,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.94,6.94,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.23,6.93H33a5.21,5.21,0,1,0,.13-10.42Z"/></g><path class="p19n-8" d="M66.29,33.66a14.77,14.77,0,0,0-27.07,5,8.64,8.64,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p19n-8" d="M30.53,27.73a9.3,9.3,0,0,0-9.3-7.65,9.59,9.59,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.94,6.94,0,0,0-4.7,6.46A7.08,7.08,0,0,0,14,38.12H30.43a5.21,5.21,0,1,0,.13-10.42Z"/><circle class="p19n-9" cx="42.58" cy="54.76" r="8.75"/><path class="p19n-5" d="M48.83,57.53l-4.77-2.75,4.77-2.73a.77.77,0,0,0,.29-1h0a.77.77,0,0,0-1-.29h0l-4.77,2.75V48.05a.77.77,0,1,0-1.54,0v5.5l-4.75-2.78a.77.77,0,0,0-.9,1.25h0l.14.08,4.77,2.75-4.79,2.76a.77.77,0,0,0-.39,1,.76.76,0,0,0,1,.39h0l.14-.08h0l4.79-2.89v5.5a.77.77,0,0,0,1.54,0h0v-5.5l4.77,2.75a.76.76,0,0,0,1-.27h0A.76.76,0,0,0,48.83,57.53Z"/><circle class="p19n-9" cx="65.8" cy="54.76" r="8.75"/><path class="p19n-5" d="M72.1,57.53l-4.77-2.75L72.1,52a.77.77,0,0,0,.29-1h0a.77.77,0,0,0-1-.29h0l-4.77,2.75V48a.77.77,0,1,0-1.54,0v5.5l-4.75-2.78a.77.77,0,0,0-.9,1.25h0l.14.08,4.77,2.75-4.78,2.76a.77.77,0,0,0-.39,1,.76.76,0,0,0,1,.39h0l.14-.08,4.77-2.75v5.5a.77.77,0,0,0,1.54,0h0V56.05L71.4,58.8a.77.77,0,0,0,1-.27h0A.76.76,0,0,0,72.1,57.53Z"/></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
main/images/p20j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

58
main/images/p20j.svg Normal file
View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p20j-0{fill:#79CCF1;}
.p20j-1{fill:#FFFFFF;}
.p20j-2{opacity:0.3;}
.p20j-3{fill:#231F20;}
.p20j-4{fill:#D8D9D8;}
.p20j-5{opacity:0.8;fill:#FFFFFF;enable-background:new ;}
</style>
<title>32Plan de travail 1</title>
<path class="p20j-0" d="M29.8,70.7l4.9-16.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C29.8,71.2,29.7,70.9,29.8,70.7z"/>
<path class="p20j-0" d="M38.5,70.6l4.9-16.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C38.6,71.2,38.4,70.9,38.5,70.6z"/>
<path class="p20j-0" d="M47.2,70.6L52,54.5c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L49,71.2c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C47.2,71.2,47.1,70.9,47.2,70.6z"/>
<path class="p20j-0" d="M56.2,70.6L61,54.5c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L58,71.2c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C56.2,71.2,56.1,70.9,56.2,70.6z"/>
<path class="p20j-0" d="M65.3,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C65.4,71.2,65.3,70.9,65.3,70.6z"/>
<path class="p20j-1" d="M34.4,70.7l4.9-16.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C34.5,71.2,34.3,70.9,34.4,70.7z"/>
<path class="p20j-1" d="M43.1,70.6L48,54.5c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L45,71.2c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C43.2,71.2,43,70.9,43.1,70.6z"/>
<path class="p20j-1" d="M51.8,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C51.9,71.2,51.7,70.9,51.8,70.6z"/>
<path class="p20j-1" d="M60.8,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C60.9,71.2,60.7,70.9,60.8,70.6z"/>
<path class="p20j-1" d="M70.2,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L72,71.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C70.2,71.2,70.1,70.9,70.2,70.6z"/>
<g class="p20j-2">
<path class="p20j-3" d="M68.9,29.8c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.3,1.8,6.7,4.3l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.4,7.9,5.5h25.7c6.3-0.3,11.1-5.6,10.8-11.9
C78.2,35.2,74.2,30.7,68.9,29.8L68.9,29.8z"/>
<path class="p20j-3" d="M33.1,23.9c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6L20.8,24
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0H33c2.9,0,5.2-2.3,5.3-5.1
C38.3,26.3,36,23.9,33.1,23.9L33.1,23.9L33.1,23.9z"/>
</g>
<path class="p20j-4" d="M66.3,27.3C62,20.3,52.9,18.2,46,22.4c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.9,6.6,4.3l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5H65c6.3-0.3,11.1-5.7,10.8-11.9
C75.5,32.6,71.5,28.2,66.3,27.3L66.3,27.3z"/>
<path class="p20j-4" d="M30.5,21.3c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0h16.4c2.9,0,5.2-2.3,5.3-5.1
C35.7,23.6,33.4,21.3,30.5,21.3L30.5,21.3z"/>
<circle class="p20j-5" cx="42.5" cy="50.5" r="8.4"/>
<path class="p20j-0" d="M48.6,53.2L44,50.5l4.6-2.6c0.4-0.2,0.5-0.6,0.3-1l0,0c-0.2-0.3-0.6-0.5-1-0.3l0,0l-4.6,2.6V44
c0-0.4-0.3-0.7-0.7-0.7c-0.4,0-0.7,0.3-0.7,0.7v5.3l-4.6-2.6c-0.3-0.2-0.8-0.1-1,0.2c-0.2,0.3-0.2,0.8,0.2,1l0.2,0.1l4.6,2.6
l-4.6,2.6c-0.4,0.2-0.6,0.6-0.4,1c0.2,0.4,0.6,0.6,1,0.4l0,0l0.2-0.1l0,0l4.5-2.6v5.3c0,0.4,0.3,0.7,0.7,0.7s0.7-0.3,0.7-0.7
c0,0,0,0,0,0v-5.3l4.5,2.6c0.3,0.2,0.8,0.1,1-0.3c0,0,0,0,0,0l0,0C49,53.9,48.9,53.4,48.6,53.2z"/>
<circle class="p20j-5" cx="64.8" cy="50.5" r="8.4"/>
<path class="p20j-0" d="M70.9,53.2l-4.6-2.6l4.6-2.6c0.4-0.2,0.5-0.6,0.3-1l0,0c-0.2-0.3-0.6-0.5-1-0.3l0,0l-4.6,2.6V44
c0-0.4-0.3-0.7-0.7-0.7c-0.4,0-0.7,0.3-0.7,0.7l0,0v5.3l-4.6-2.6c-0.3-0.2-0.8-0.1-1,0.2c-0.2,0.3-0.2,0.8,0.2,1l0.2,0.1l4.6,2.6
l-4.6,2.6c-0.4,0.2-0.6,0.6-0.4,1c0.2,0.4,0.6,0.6,1,0.4l0,0l0.2-0.1l0,0l4.5-2.6v5.3c0,0.4,0.3,0.7,0.7,0.7c0.4,0,0.7-0.3,0.7-0.7
l0,0l0,0v-5.2l4.6,2.6c0.3,0.2,0.8,0.1,1-0.3c0,0,0,0,0,0l0,0C71.3,53.9,71.2,53.4,70.9,53.2L70.9,53.2z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
main/images/p20n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

58
main/images/p20n.svg Normal file
View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p20n-0{fill:#79CCF1;}
.p20n-1{fill:#FFFFFF;}
.p20n-2{opacity:0.3;}
.p20n-3{fill:#231F20;}
.p20n-4{fill:#D8D9D8;}
.p20n-5{opacity:0.8;fill:#FFFFFF;enable-background:new ;}
</style>
<title>32Plan de travail 1</title>
<path class="p20n-0" d="M29.8,70.7l4.9-16.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C29.8,71.2,29.7,70.9,29.8,70.7z"/>
<path class="p20n-0" d="M38.5,70.6l4.9-16.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C38.6,71.2,38.4,70.9,38.5,70.6z"/>
<path class="p20n-0" d="M47.2,70.6L52,54.5c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L49,71.2c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C47.2,71.2,47.1,70.9,47.2,70.6z"/>
<path class="p20n-0" d="M56.2,70.6L61,54.5c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L58,71.2c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C56.2,71.2,56.1,70.9,56.2,70.6z"/>
<path class="p20n-0" d="M65.3,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C65.4,71.2,65.3,70.9,65.3,70.6z"/>
<path class="p20n-1" d="M34.4,70.7l4.9-16.1c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.1
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C34.5,71.2,34.3,70.9,34.4,70.7z"/>
<path class="p20n-1" d="M43.1,70.6L48,54.5c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L45,71.2c-0.1,0.3-0.4,0.5-0.7,0.4
l-0.8-0.2C43.2,71.2,43,70.9,43.1,70.6z"/>
<path class="p20n-1" d="M51.8,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C51.9,71.2,51.7,70.9,51.8,70.6z"/>
<path class="p20n-1" d="M60.8,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7l-4.9,16.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C60.9,71.2,60.7,70.9,60.8,70.6z"/>
<path class="p20n-1" d="M70.2,70.6l4.9-16.2c0.1-0.3,0.4-0.5,0.7-0.4l0.8,0.2c0.3,0.1,0.5,0.4,0.4,0.7L72,71.2
c-0.1,0.3-0.4,0.5-0.7,0.4l-0.8-0.2C70.2,71.2,70.1,70.9,70.2,70.6z"/>
<g class="p20n-2">
<path class="p20n-3" d="M68.9,29.8c-4.3-6.9-13.4-9-20.4-4.7c-3.4,2.2-5.8,5.6-6.6,9.6c2.8,0.3,5.3,1.8,6.7,4.3l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.4,7.9,5.5h25.7c6.3-0.3,11.1-5.6,10.8-11.9
C78.2,35.2,74.2,30.7,68.9,29.8L68.9,29.8z"/>
<path class="p20n-3" d="M33.1,23.9c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6L20.8,24
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0H33c2.9,0,5.2-2.3,5.3-5.1
C38.3,26.3,36,23.9,33.1,23.9L33.1,23.9L33.1,23.9z"/>
</g>
<path class="p20n-4" d="M66.3,27.3C62,20.3,52.9,18.2,46,22.4c-3.5,2.2-6,5.7-6.8,9.8c2.8,0.3,5.2,1.9,6.6,4.3l-1.1,0.6
c-2-3.4-5.8-3.8-8.5-3.7c-4.4,1.7-6.6,6.6-4.9,11c1.3,3.3,4.4,5.5,7.9,5.5H65c6.3-0.3,11.1-5.7,10.8-11.9
C75.5,32.6,71.5,28.2,66.3,27.3L66.3,27.3z"/>
<path class="p20n-4" d="M30.5,21.3c-0.8-4.5-4.7-7.7-9.3-7.6c-2.9,0-5.7,1.3-7.5,3.6c2,0.3,4.5,1.2,5.6,3.6l-1.2,0.5
c-1.4-3-6-3.1-6.7-3.1c-2.8,0.9-4.7,3.5-4.7,6.5c0.1,3.9,3.3,7,7.2,6.9c0,0,0,0,0,0h16.4c2.9,0,5.2-2.3,5.3-5.1
C35.7,23.6,33.4,21.3,30.5,21.3L30.5,21.3z"/>
<circle class="p20n-5" cx="42.5" cy="50.5" r="8.4"/>
<path class="p20n-0" d="M48.6,53.2L44,50.5l4.6-2.6c0.4-0.2,0.5-0.6,0.3-1l0,0c-0.2-0.3-0.6-0.5-1-0.3l0,0l-4.6,2.6V44
c0-0.4-0.3-0.7-0.7-0.7c-0.4,0-0.7,0.3-0.7,0.7v5.3l-4.6-2.6c-0.3-0.2-0.8-0.1-1,0.2c-0.2,0.3-0.2,0.8,0.2,1l0.2,0.1l4.6,2.6
l-4.6,2.6c-0.4,0.2-0.6,0.6-0.4,1c0.2,0.4,0.6,0.6,1,0.4l0,0l0.2-0.1l0,0l4.5-2.6v5.3c0,0.4,0.3,0.7,0.7,0.7s0.7-0.3,0.7-0.7
c0,0,0,0,0,0v-5.3l4.5,2.6c0.3,0.2,0.8,0.1,1-0.3c0,0,0,0,0,0l0,0C49,53.9,48.9,53.4,48.6,53.2z"/>
<circle class="p20n-5" cx="64.8" cy="50.5" r="8.4"/>
<path class="p20n-0" d="M70.9,53.2l-4.6-2.6l4.6-2.6c0.4-0.2,0.5-0.6,0.3-1l0,0c-0.2-0.3-0.6-0.5-1-0.3l0,0l-4.6,2.6V44
c0-0.4-0.3-0.7-0.7-0.7c-0.4,0-0.7,0.3-0.7,0.7l0,0v5.3l-4.6-2.6c-0.3-0.2-0.8-0.1-1,0.2c-0.2,0.3-0.2,0.8,0.2,1l0.2,0.1l4.6,2.6
l-4.6,2.6c-0.4,0.2-0.6,0.6-0.4,1c0.2,0.4,0.6,0.6,1,0.4l0,0l0.2-0.1l0,0l4.5-2.6v5.3c0,0.4,0.3,0.7,0.7,0.7c0.4,0,0.7-0.3,0.7-0.7
l0,0l0,0v-5.2l4.6,2.6c0.3,0.2,0.8,0.1,1-0.3c0,0,0,0,0,0l0,0C71.3,53.9,71.2,53.4,70.9,53.2L70.9,53.2z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
main/images/p21j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

1
main/images/p21j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_33" data-name="Calque 33" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p21j-1{fill:#eeeb61;opacity:0.51;}.p21j-1,.p21j-6{isolation:isolate;}.p21j-2{fill:#f5b21a;stroke:#fde901;stroke-miterlimit:10;}.p21j-3{opacity:0.3;}.p21j-4{fill:#231f20;}.p21j-5{fill:#d8d9d8;}.p21j-6{fill:#fff;opacity:0.8;}.p21j-7{fill:#79ccf1;}</style></defs><title>33Plan de travail 1</title><circle class="p21j-1" cx="53.27" cy="30.06" r="19.92"/><circle class="p21j-2" cx="53.27" cy="30.06" r="15.2" transform="translate(-0.3 0.55) rotate(-0.58)"/><g class="p21j-3"><path class="p21j-4" d="M69,38.39A14.77,14.77,0,0,0,42,43.3a8.67,8.67,0,0,1,6.66,4.19l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48h25.7A11.37,11.37,0,0,0,69,38.39Z"/><path class="p21j-4" d="M33.2,32.39a9.31,9.31,0,0,0-9.32-7.61,9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.93,6.93,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33a5.21,5.21,0,0,0,.13-10.42h0Z"/></g><path class="p21j-5" d="M66.34,35.69A14.77,14.77,0,0,0,39.26,40.6a8.64,8.64,0,0,1,6.62,4.18l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65.06a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p21j-5" d="M30.58,29.72a9.31,9.31,0,0,0-9.3-7.65,9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.94,6.94,0,0,0-4.73,6.46A7.08,7.08,0,0,0,14,40.11H30.45a5.21,5.21,0,0,0,.13-10.42Z"/><circle class="p21j-6" cx="40.9" cy="63.99" r="10.05"/><path class="p21j-7" d="M48.14,67.15,42.66,64l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32l-5.48,3.16V56.13A.89.89,0,0,0,40,55.94a.6.6,0,0,0,0,.19v6.33L34.52,59.3a.9.9,0,0,0-1.21.33.88.88,0,0,0,.33,1.2h0L39.12,64l-5.48,3.16a.9.9,0,0,0-.33,1.21.89.89,0,0,0,1.21.32h0L40,65.52v6.33a.89.89,0,0,0,1.77.19v-.19h0V65.52l5.48,3.16a.89.89,0,0,0,1.21-.32h0A.89.89,0,0,0,48.14,67.15Z"/><circle class="p21j-6" cx="67.56" cy="63.99" r="10.05" transform="translate(-0.65 0.69) rotate(-0.58)"/><path class="p21j-7" d="M74.81,67.15,69.33,64l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32l-5.48,3.16V56.13a.89.89,0,0,0-1.77,0h0v6.33L61.19,59.3a.9.9,0,0,0-1.21.33.88.88,0,0,0,.33,1.2h0L65.79,64l-5.48,3.16A.9.9,0,0,0,60,68.36a.89.89,0,0,0,1.21.32h0l5.48-3.16v6.33a.89.89,0,1,0,1.77,0h0V65.52l5.44,3.16a.89.89,0,0,0,1.21-.32h0A.9.9,0,0,0,74.81,67.15Z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
main/images/p21n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

1
main/images/p21n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_34" data-name="Calque 34" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p21n-1{fill:#44454e;opacity:0.25;}.p21n-1,.p21n-3,.p21n-8{isolation:isolate;}.p21n-2,.p21n-8{fill:#fff;}.p21n-3{fill:#636573;opacity:0.18;}.p21n-4{fill:#fdfcea;}.p21n-5{opacity:0.3;}.p21n-6{fill:#231f20;}.p21n-7{fill:#d8d9d8;}.p21n-8{opacity:0.8;}.p21n-9{fill:#79ccf1;}</style></defs><title>34Plan de travail 1</title><circle class="p21n-1" cx="54.92" cy="34.64" r="22.87"/><path class="p21n-2" d="M65.22,37.63a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,0,0-1.77-.19.6.6,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p21n-2" d="M67.63,35.26a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.22A.89.89,0,0,0,67.63,35.26Z"/><path class="p21n-2" d="M36.51,22.69a.89.89,0,0,0,.89-.89h0V18.72a.89.89,0,1,0-1.77-.19.6.6,0,0,0,0,.19v3.1A.89.89,0,0,0,36.51,22.69Z"/><path class="p21n-2" d="M38.88,20.29A.89.89,0,0,0,38,19.4H35a.89.89,0,1,0-.19,1.77H38A.89.89,0,0,0,38.88,20.29Z"/><path class="p21n-2" d="M61.65,20.29a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.6.6,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p21n-2" d="M64.08,17.87a.89.89,0,0,0-.89-.89H60.13a.89.89,0,1,0-.19,1.77h3.22a.89.89,0,0,0,.92-.86h0Z"/><path class="p21n-3" d="M56.11,18.36a15.68,15.68,0,0,1,5.42-.29,15.51,15.51,0,0,0,6.69,28.44A15.56,15.56,0,1,1,56.11,18.36Z"/><path class="p21n-4" d="M50.81,20a15.4,15.4,0,0,1,5.37-.28,15.39,15.39,0,0,0,6.63,28.17A15.41,15.41,0,1,1,50.81,20Z"/><g class="p21n-5"><path class="p21n-6" d="M69,42.54a14.77,14.77,0,0,0-27,4.91,8.64,8.64,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.72A11.37,11.37,0,0,0,69,42.53Z"/><path class="p21n-6" d="M33.2,36.57A9.31,9.31,0,0,0,23.88,29a9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.93,6.93,0,0,0-4.7,6.46A7.08,7.08,0,0,0,16.63,47H33a5.21,5.21,0,0,0,.13-10.42Z"/></g><path class="p21n-7" d="M66.34,40a14.77,14.77,0,0,0-27.08,4.9,8.64,8.64,0,0,1,6.62,4.2l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65.06A11.37,11.37,0,0,0,66.29,40Z"/><path class="p21n-7" d="M30.58,34a9.31,9.31,0,0,0-9.3-7.65,9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.93,6.93,0,0,0-4.7,6.46A7.07,7.07,0,0,0,14,44.36H30.48a5.21,5.21,0,0,0,.13-10.42Z"/><circle class="p21n-8" cx="40.9" cy="64.98" r="10.05"/><path class="p21n-9" d="M48.14,68.14,42.66,65l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32l-5.48,3.16V57.11A.89.89,0,1,0,40,56.92a.6.6,0,0,0,0,.19h0v6.33l-5.48-3.16a.9.9,0,0,0-1.21.33.88.88,0,0,0,.33,1.2L39.12,65l-5.48,3.16a.9.9,0,0,0-.33,1.21.89.89,0,0,0,1.21.32L40,66.5v6.33a.89.89,0,0,0,1.77.19v-.19h0V66.5l5.48,3.16a.89.89,0,0,0,1.21-.32h0A.9.9,0,0,0,48.14,68.14Z"/><circle class="p21n-8" cx="67.56" cy="64.98" r="10.05" transform="translate(-0.66 0.69) rotate(-0.58)"/><path class="p21n-9" d="M74.81,68.14,69.33,65l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32l-5.48,3.16V57.11a.89.89,0,0,0-1.77,0h0v6.33l-5.48-3.16a.9.9,0,0,0-1.21.33.88.88,0,0,0,.33,1.2L65.79,65l-5.48,3.16A.9.9,0,0,0,60,69.34a.89.89,0,0,0,1.21.32l5.48-3.16v6.33a.89.89,0,1,0,1.77,0h0V66.5l5.44,3.16a.89.89,0,0,0,1.21-.32h0A.89.89,0,0,0,74.81,68.14Z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
main/images/p22j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

1
main/images/p22j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_35" data-name="Calque 35" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p22-1{opacity:0.3;}.p22-2{fill:#231f20;}.p22-3{fill:#d8d9d8;}.p22-4{fill:#fff;opacity:0.8;isolation:isolate;}.p22-5{fill:#79ccf1;}</style></defs><title>35Plan de travail 1</title><g class="p22-1"><path class="p22-2" d="M69,33.05A14.77,14.77,0,0,0,42,38a8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.72A11.37,11.37,0,0,0,69,33.05Z"/><path class="p22-2" d="M33.2,27.05a9.3,9.3,0,0,0-9.3-7.65A9.53,9.53,0,0,0,16.4,23c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33.06A5.21,5.21,0,0,0,33.19,27Z"/></g><path class="p22-3" d="M66.34,30.45a14.77,14.77,0,0,0-27.08,4.91,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65.06a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p22-3" d="M30.58,24.46a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.93,6.93,0,0,0-4.73,6.59A7.08,7.08,0,0,0,14,35H30.45a5.21,5.21,0,0,0,.13-10.42Z"/><circle class="p22-4" cx="40.9" cy="57.43" r="10.05"/><path class="p22-5" d="M48.14,60.66,42.66,57.5l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32L41.77,56V49.66A.89.89,0,1,0,40,49.47a.61.61,0,0,0,0,.19v6.39l-5.48-3.16a.88.88,0,1,0-.88,1.53l5.48,3.16L33.64,60.7a.88.88,0,1,0,.88,1.53h0L40,59.07V65.4a.89.89,0,1,0,1.77.19V59.05l5.48,3.16a.89.89,0,0,0,1.21-.32h0a.89.89,0,0,0-.3-1.22Z"/><circle class="p22-4" cx="67.56" cy="57.43" r="10.05" transform="translate(-0.58 0.69) rotate(-0.58)"/><path class="p22-5" d="M74.81,60.66,69.33,57.5l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32L68.44,56V49.66a.89.89,0,1,0-1.77,0h0v6.39l-5.48-3.16a.88.88,0,1,0-.88,1.53l5.48,3.16L60.32,60.7a.88.88,0,1,0,.88,1.53h0l5.48-3.18v6.33a.89.89,0,0,0,1.77,0V59.05l5.48,3.16a.89.89,0,0,0,1.21-.32h0a.89.89,0,0,0-.26-1.21Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
main/images/p22n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

1
main/images/p22n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_35" data-name="Calque 35" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p22-1{opacity:0.3;}.p22-2{fill:#231f20;}.p22-3{fill:#d8d9d8;}.p22-4{fill:#fff;opacity:0.8;isolation:isolate;}.p22-5{fill:#79ccf1;}</style></defs><title>35Plan de travail 1</title><g class="p22-1"><path class="p22-2" d="M69,33.05A14.77,14.77,0,0,0,42,38a8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.72A11.37,11.37,0,0,0,69,33.05Z"/><path class="p22-2" d="M33.2,27.05a9.3,9.3,0,0,0-9.3-7.65A9.53,9.53,0,0,0,16.4,23c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33.06A5.21,5.21,0,0,0,33.19,27Z"/></g><path class="p22-3" d="M66.34,30.45a14.77,14.77,0,0,0-27.08,4.91,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H65.06a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p22-3" d="M30.58,24.46a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.93,6.93,0,0,0-4.73,6.59A7.08,7.08,0,0,0,14,35H30.45a5.21,5.21,0,0,0,.13-10.42Z"/><circle class="p22-4" cx="40.9" cy="57.43" r="10.05"/><path class="p22-5" d="M48.14,60.66,42.66,57.5l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32L41.77,56V49.66A.89.89,0,1,0,40,49.47a.61.61,0,0,0,0,.19v6.39l-5.48-3.16a.88.88,0,1,0-.88,1.53l5.48,3.16L33.64,60.7a.88.88,0,1,0,.88,1.53h0L40,59.07V65.4a.89.89,0,1,0,1.77.19V59.05l5.48,3.16a.89.89,0,0,0,1.21-.32h0a.89.89,0,0,0-.3-1.22Z"/><circle class="p22-4" cx="67.56" cy="57.43" r="10.05" transform="translate(-0.58 0.69) rotate(-0.58)"/><path class="p22-5" d="M74.81,60.66,69.33,57.5l5.48-3.16a.89.89,0,0,0,.32-1.21h0a.89.89,0,0,0-1.21-.32L68.44,56V49.66a.89.89,0,1,0-1.77,0h0v6.39l-5.48-3.16a.88.88,0,1,0-.88,1.53l5.48,3.16L60.32,60.7a.88.88,0,1,0,.88,1.53h0l5.48-3.18v6.33a.89.89,0,0,0,1.77,0V59.05l5.48,3.16a.89.89,0,0,0,1.21-.32h0a.89.89,0,0,0-.26-1.21Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
main/images/p23j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

1
main/images/p23j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_36" data-name="Calque 36" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p23-1{fill:#919191;}.p23-2{fill:#fff;opacity:0.8;isolation:isolate;}.p23-3{fill:#79ccf1;}</style></defs><title>36Plan de travail 1</title><path class="p23-1" d="M69,33.92a14.77,14.77,0,0,0-27,4.91A8.62,8.62,0,0,1,48.62,43l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.47H67.72A11.37,11.37,0,0,0,69,33.88Z"/><path class="p23-1" d="M33.2,28a9.29,9.29,0,0,0-9.32-7.61A9.53,9.53,0,0,0,16.38,24c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33A5.21,5.21,0,0,0,33.17,28Z"/><circle class="p23-2" cx="72.75" cy="60.72" r="8.3"/><path class="p23-3" d="M78.73,63.39,74.2,60.77l4.53-2.62a.74.74,0,0,0,.34-1v0h0a.74.74,0,0,0-1-.35l0,0h0L73.5,59.39V54.17a.73.73,0,0,0-1.46,0h0v5.22l-4.53-2.62a.73.73,0,0,0-1,.38.72.72,0,0,0,.24.88l4.52,2.67-4.53,2.69a.72.72,0,0,0-.16,1,.74.74,0,0,0,.88.24L72,62v5.22a.73.73,0,1,0,1.46,0h0V62L78,64.66a.73.73,0,0,0,1-.23h0a.73.73,0,0,0-.24-1Z"/><circle class="p23-2" cx="54.25" cy="60.72" r="8.3"/><path class="p23-3" d="M60.24,63.39l-4.5-2.61,4.53-2.62a.74.74,0,0,0,.34-1v0h0a.74.74,0,0,0-1-.35l0,0h0L55,59.39V54.17a.73.73,0,0,0-1.46,0h0v5.22l-4.53-2.62a.73.73,0,0,0-1,.38.72.72,0,0,0,.24.88h0l4.55,2.63-4.53,2.62a.72.72,0,0,0-.16,1,.74.74,0,0,0,.88.24l4.53-2.62v5.22a.73.73,0,1,0,1.46,0h0V62l4.53,2.62a.73.73,0,0,0,1-.23h0a.73.73,0,0,0-.26-1h0Z"/><circle class="p23-2" cx="35.71" cy="60.72" r="8.3"/><path class="p23-3" d="M41.68,63.39l-4.55-2.61,4.53-2.62a.74.74,0,0,0,.34-1v0h0a.74.74,0,0,0-1-.35l0,0h0l-4.56,2.56V54.17a.73.73,0,0,0-1.46,0h0v5.22l-4.53-2.62a.73.73,0,0,0-1,.38.72.72,0,0,0,.24.88h0l4.53,2.62-4.53,2.62a.72.72,0,0,0-.16,1,.74.74,0,0,0,.88.24L34.88,62v5.22a.73.73,0,0,0,1.46,0h0V62l4.54,2.6a.73.73,0,0,0,1-.23h0a.74.74,0,0,0-.17-1Z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
main/images/p23n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

1
main/images/p23n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_36" data-name="Calque 36" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p23-1{fill:#919191;}.p23-2{fill:#fff;opacity:0.8;isolation:isolate;}.p23-3{fill:#79ccf1;}</style></defs><title>36Plan de travail 1</title><path class="p23-1" d="M69,33.92a14.77,14.77,0,0,0-27,4.91A8.62,8.62,0,0,1,48.62,43l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.47H67.72A11.37,11.37,0,0,0,69,33.88Z"/><path class="p23-1" d="M33.2,28a9.29,9.29,0,0,0-9.32-7.61A9.53,9.53,0,0,0,16.38,24c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33A5.21,5.21,0,0,0,33.17,28Z"/><circle class="p23-2" cx="72.75" cy="60.72" r="8.3"/><path class="p23-3" d="M78.73,63.39,74.2,60.77l4.53-2.62a.74.74,0,0,0,.34-1v0h0a.74.74,0,0,0-1-.35l0,0h0L73.5,59.39V54.17a.73.73,0,0,0-1.46,0h0v5.22l-4.53-2.62a.73.73,0,0,0-1,.38.72.72,0,0,0,.24.88l4.52,2.67-4.53,2.69a.72.72,0,0,0-.16,1,.74.74,0,0,0,.88.24L72,62v5.22a.73.73,0,1,0,1.46,0h0V62L78,64.66a.73.73,0,0,0,1-.23h0a.73.73,0,0,0-.24-1Z"/><circle class="p23-2" cx="54.25" cy="60.72" r="8.3"/><path class="p23-3" d="M60.24,63.39l-4.5-2.61,4.53-2.62a.74.74,0,0,0,.34-1v0h0a.74.74,0,0,0-1-.35l0,0h0L55,59.39V54.17a.73.73,0,0,0-1.46,0h0v5.22l-4.53-2.62a.73.73,0,0,0-1,.38.72.72,0,0,0,.24.88h0l4.55,2.63-4.53,2.62a.72.72,0,0,0-.16,1,.74.74,0,0,0,.88.24l4.53-2.62v5.22a.73.73,0,1,0,1.46,0h0V62l4.53,2.62a.73.73,0,0,0,1-.23h0a.73.73,0,0,0-.26-1h0Z"/><circle class="p23-2" cx="35.71" cy="60.72" r="8.3"/><path class="p23-3" d="M41.68,63.39l-4.55-2.61,4.53-2.62a.74.74,0,0,0,.34-1v0h0a.74.74,0,0,0-1-.35l0,0h0l-4.56,2.56V54.17a.73.73,0,0,0-1.46,0h0v5.22l-4.53-2.62a.73.73,0,0,0-1,.38.72.72,0,0,0,.24.88h0l4.53,2.62-4.53,2.62a.72.72,0,0,0-.16,1,.74.74,0,0,0,.88.24L34.88,62v5.22a.73.73,0,0,0,1.46,0h0V62l4.54,2.6a.73.73,0,0,0,1-.23h0a.74.74,0,0,0-.17-1Z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
main/images/p24n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

1
main/images/p24n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_38" data-name="Calque 38" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p24n-1{fill:#44454e;opacity:0.25;}.p24n-1,.p24n-3{isolation:isolate;}.p24n-2{fill:#fff;}.p24n-3{fill:#636573;opacity:0.18;}.p24n-4{fill:#fdfcea;}.p24n-5{fill:#919191;}.p24n-6{fill:#79ccf1;}.p24n-7{fill:#fdda00;}.p24n-8{fill:#f47a20;}.p24n-9{fill:#cf2e29;}</style></defs><title>38Plan de travail 1</title><circle class="p24n-1" cx="49.31" cy="30.91" r="22.87" transform="translate(-0.06 0.1) rotate(-0.12)"/><path class="p24n-2" d="M59.62,33.93a.89.89,0,0,0,.89-.89h0V30a.89.89,0,1,0-1.77-.19V33a.9.9,0,0,0,.88.9h0Z"/><path class="p24n-2" d="M62,31.54a.89.89,0,0,0-.89-.89h-3A.89.89,0,0,0,58,32.42H61.2A.89.89,0,0,0,62,31.54Z"/><path class="p24n-2" d="M30.9,18.93a.89.89,0,0,0,.89-.89h0V15A.89.89,0,1,0,30,14.85V18a.9.9,0,0,0,.88.9h0Z"/><path class="p24n-2" d="M33.32,16.54a.88.88,0,0,0-.85-.93H29.39a.89.89,0,1,0-.19,1.77h3.22A.89.89,0,0,0,33.32,16.54Z"/><path class="p24n-2" d="M56,16.54a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19v3.19a.9.9,0,0,0,.85.93h0Z"/><path class="p24n-2" d="M58.46,14.14a.89.89,0,0,0-.89-.89h-3a.89.89,0,0,0-1,.79.9.9,0,0,0,.79,1H57.6A.89.89,0,0,0,58.46,14.14Z"/><path class="p24n-3" d="M49.83,15.45a15.21,15.21,0,0,1,5.42-.29A15.51,15.51,0,0,0,61.94,43.6a15.56,15.56,0,0,1-17.09-26A15.4,15.4,0,0,1,49.83,15.45Z"/><path class="p24n-4" d="M45.2,16.2a15.16,15.16,0,0,1,5.37-.28A15.39,15.39,0,0,0,57.2,44.08,15.41,15.41,0,1,1,40.44,18.22a15.13,15.13,0,0,1,4.76-2Z"/><path class="p24n-5" d="M67.28,35.54a14.77,14.77,0,0,0-27.08,5,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H66a11.37,11.37,0,0,0,1.23-22.66Z"/><path class="p24n-5" d="M31.52,29.6a9.3,9.3,0,0,0-9.32-7.67,9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1A6.94,6.94,0,0,0,7.73,33,7.08,7.08,0,0,0,15,40h16.4a5.21,5.21,0,1,0,.13-10.42Z"/><rect class="p24n-6" x="33.52" y="67.47" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-35.3 89.35) rotate(-73.19)"/><rect class="p24n-6" x="46.17" y="67.47" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-26.31 101.46) rotate(-73.19)"/><rect class="p24n-6" x="21.96" y="67.47" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-43.57 77.96) rotate(-72.96)"/><rect class="p24n-6" x="57.31" y="67.48" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-18.58 111.76) rotate(-72.96)"/><rect class="p24n-2" x="39.57" y="67.48" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-31.12 94.8) rotate(-72.96)"/><rect class="p24n-2" x="51.72" y="67.48" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-22.53 106.42) rotate(-72.96)"/><rect class="p24n-2" x="28" y="67.48" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-39.3 83.74) rotate(-72.96)"/><rect class="p24n-2" x="63.38" y="67.48" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-14.29 117.56) rotate(-72.96)"/><polygon class="p24n-7" points="48.77 47.7 56.51 47.7 54.2 54.07 58.16 54.07 47.48 74.53 49.95 59.51 46.51 59.51 48.77 47.7"/><polygon class="p24n-8" points="47.23 46.16 54.95 46.16 52.66 52.52 56.61 52.52 45.93 72.98 48.38 57.96 44.97 57.96 47.23 46.16"/><rect class="p24n-9" x="60.51" y="51.27" width="16.98" height="16.98"/><path class="p24n-2" d="M73.51,64.11a11.63,11.63,0,0,1-3.42.58A5.74,5.74,0,0,1,66,63.3a5,5,0,0,1-1.45-3.76c0-3.4,2.49-5.36,5.85-5.36a7.07,7.07,0,0,1,2.84.5l-.49,1.86a5.58,5.58,0,0,0-2.39-.44,3.34,3.34,0,1,0,0,6.68,3.64,3.64,0,0,0,1-.16V60.54H69.7V58.73h3.81Z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
main/images/p25n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

1
main/images/p25n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_39" data-name="Calque 39" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p25-1{fill:#79ccf1;}.p25-2{fill:#fff;}.p25-3{fill:#919191;}.p25-4{fill:#fdda00;}.p25-5{fill:#f47a20;}.p25-6{fill:#cf2e29;}</style></defs><title>39Plan de travail 1</title><rect class="p25-1" x="34.07" y="60.53" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-28.26 84.94) rotate(-73.19)"/><rect class="p25-1" x="46.71" y="60.53" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-19.28 97.04) rotate(-73.19)"/><rect class="p25-1" x="22.51" y="60.54" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-36.55 73.57) rotate(-72.96)"/><rect class="p25-1" x="57.87" y="60.53" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-11.54 107.38) rotate(-72.96)"/><rect class="p25-2" x="40.12" y="60.53" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-24.09 90.41) rotate(-72.96)"/><rect class="p25-2" x="52.28" y="60.53" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-15.5 102.04) rotate(-72.96)"/><rect class="p25-2" x="39.37" y="51.83" width="17.99" height="1.94" rx="0.55" ry="0.55" transform="translate(-16.16 83.82) rotate(-73.19)"/><rect class="p25-2" x="63.93" y="60.54" width="17.94" height="1.93" rx="0.55" ry="0.55" transform="translate(-7.26 113.18) rotate(-72.96)"/><path class="p25-3" d="M65.21,28.61a14.78,14.78,0,0,0-27.07,4.94,8.64,8.64,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H63.93a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p25-3" d="M29.45,22.63A9.3,9.3,0,0,0,20.15,15a9.59,9.59,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.94,6.94,0,0,0-4.7,6.46A7.08,7.08,0,0,0,12.91,33H29.35a5.21,5.21,0,1,0,.13-10.42h0Z"/><polygon class="p25-4" points="48.51 39.49 56.37 39.49 54.04 45.99 58.05 45.99 47.18 66.76 49.68 51.51 46.2 51.51 48.51 39.49"/><polygon class="p25-5" points="46.94 37.91 54.79 37.91 52.46 44.41 56.47 44.41 45.6 65.2 48.11 49.94 44.63 49.94 46.94 37.91"/><rect class="p25-6" x="62.56" y="45.67" width="16.98" height="16.98"/><path class="p25-2" d="M75.55,58.81a11.31,11.31,0,0,1-3.42.58A5.65,5.65,0,0,1,68,58a5,5,0,0,1-1.45-3.72c0-3.4,2.49-5.36,5.85-5.36a7.07,7.07,0,0,1,2.84.5l-.49,1.85a5.9,5.9,0,0,0-2.39-.44A3.34,3.34,0,1,0,72,57.5a3.24,3.24,0,0,0,1.27-.18V55.25H71.75V53.44h3.8Z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +0,0 @@
<svg id="Calque_40" data-name="Calque 40" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p26j-1{fill:#eeeb61;opacity:0.51;isolation:isolate;}.p26j-2{fill:#f5b21a;stroke:#fde901;stroke-miterlimit:10;}.p26j-3{fill:#919191;}.p26j-4{fill:#fdda00;}.p26j-5{fill:#f47a20;}</style></defs><title>40Plan de travail 1</title><circle class="p26j-1" cx="50" cy="28.6" r="17.77"/><circle class="p26j-2" cx="50" cy="28.6" r="13.55"/><path class="p26j-3" d="M69,34.89A14.77,14.77,0,0,0,42,39.8,8.61,8.61,0,0,1,48.62,44l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48h25.7a11.37,11.37,0,0,0,1.23-22.58Z"/><path class="p26j-3" d="M33.2,28.9a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64L20.84,29c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33.06a5.21,5.21,0,0,0,.13-10.42Z"/><polygon class="p26j-4" points="51.49 46.78 59.29 46.78 56.96 53.22 60.95 53.22 50.18 73.83 52.67 58.7 49.2 58.7 51.49 46.78"/><polygon class="p26j-5" points="49.93 45.22 57.71 45.22 55.41 51.66 59.39 51.66 48.62 72.28 51.09 57.14 47.65 57.14 49.93 45.22"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

BIN
main/images/p27n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

1
main/images/p27n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_42" data-name="Calque 42" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p27-1{fill:#919191;}.p27-2{fill:#fdda00;}.p27-3{fill:#f47a20;}</style></defs><title>42Plan de travail 1</title><path class="p27-1" d="M69,32.55a14.77,14.77,0,0,0-27.08,4.93,8.66,8.66,0,0,1,6.66,4.23l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.47H67.72A11.37,11.37,0,0,0,69,32.57Z"/><path class="p27-1" d="M33.2,26.57a9.31,9.31,0,0,0-9.3-7.65,9.56,9.56,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1A6.93,6.93,0,0,0,9.43,30,7.08,7.08,0,0,0,16.65,37H33.06a5.21,5.21,0,0,0,.13-10.42h0Z"/><polygon class="p27-2" points="53.94 42.42 61.72 42.42 59.39 48.84 63.38 48.84 52.64 69.4 55.12 54.31 51.66 54.31 53.94 42.42"/><polygon class="p27-3" points="52.39 40.87 60.15 40.87 57.85 47.28 61.81 47.28 51.08 67.84 53.54 52.74 50.11 52.74 52.39 40.87"/></svg>

After

Width:  |  Height:  |  Size: 928 B

BIN
main/images/p28j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

1
main/images/p28j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_43" data-name="Calque 43" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p28j-1{fill:#eeeb61;opacity:0.51;isolation:isolate;}.p28j-2{fill:#f5b21a;stroke:#fde901;stroke-miterlimit:10;}.p28j-3{fill:#919191;}.p28j-4{fill:#fdda00;}.p28j-5{fill:#f47a20;}</style></defs><title>43Plan de travail 1</title><circle class="p28j-1" cx="46.51" cy="31.18" r="19.05"/><circle class="p28j-2" cx="46.51" cy="31.18" r="14.55"/><path class="p28j-3" d="M69,34A14.77,14.77,0,0,0,42,38.9a8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.54H67.72A11.37,11.37,0,0,0,69,34Z"/><path class="p28j-3" d="M33.2,28a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33.06A5.21,5.21,0,0,0,33.19,28Z"/><polygon class="p28j-4" points="50.63 45.49 58.33 45.49 56.03 51.83 59.97 51.83 49.35 72.16 51.8 57.24 48.38 57.24 50.63 45.49"/><polygon class="p28j-5" points="49.1 43.95 56.77 43.95 54.5 50.29 58.42 50.29 47.81 70.63 50.25 55.7 46.85 55.7 49.1 43.95"/><polygon class="p28j-4" points="64.58 45.49 72.27 45.49 69.99 51.83 73.91 51.83 63.29 72.16 65.74 57.24 62.34 57.24 64.58 45.49"/><polygon class="p28j-5" points="63.05 43.95 70.73 43.95 68.44 50.29 72.38 50.29 61.76 70.63 64.19 55.7 60.79 55.7 63.05 43.95"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
main/images/p28n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

1
main/images/p28n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_44" data-name="Calque 44" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p28n-1{fill:#44454e;opacity:0.25;}.p28n-1,.p28n-3{isolation:isolate;}.p28n-2{fill:#fff;}.p28n-3{fill:#636573;opacity:0.18;}.p28n-4{fill:#fdfcea;}.p28n-5{fill:#919191;}.p28n-6{fill:#fdda00;}.p28n-7{fill:#f47a20;}</style></defs><title>44Plan de travail 1</title><circle class="p28n-1" cx="50.99" cy="33.16" r="22.87" transform="translate(-0.07 0.11) rotate(-0.12)"/><path class="p28n-2" d="M61.3,36.17a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.61.61,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p28n-2" d="M63.71,33.8a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.25A.9.9,0,0,0,63.71,33.8Z"/><path class="p28n-2" d="M32.58,21.24a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.61.61,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p28n-2" d="M35,18.8a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.22A.9.9,0,0,0,35,18.8Z"/><path class="p28n-2" d="M57.72,18.8a.89.89,0,0,0,.89-.89h0v-3a.89.89,0,1,0-1.77-.19.61.61,0,0,0,0,.19v3a.89.89,0,0,0,.88.9h0Z"/><path class="p28n-2" d="M60.14,16.41a.89.89,0,0,0-.89-.89h-3a.89.89,0,1,0-.19,1.77h3.22A.9.9,0,0,0,60.14,16.41Z"/><path class="p28n-3" d="M51,17.71a15.43,15.43,0,0,1,5.42-.29,15.51,15.51,0,0,0,6.68,28.44A15.56,15.56,0,1,1,50.94,17.71Z"/><path class="p28n-4" d="M46.88,18.41a15.4,15.4,0,0,1,5.37-.28,15.39,15.39,0,0,0,6.63,28.28,15.41,15.41,0,1,1-12-28Z"/><path class="p28n-5" d="M69,37.8a14.77,14.77,0,0,0-27,4.91,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.72A11.37,11.37,0,0,0,69,37.8Z"/><path class="p28n-5" d="M33.2,31.86a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64L20.84,32c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33.06a5.21,5.21,0,0,0,.13-10.42Z"/><polygon class="p28n-6" points="49.54 49.15 57.51 49.15 55.13 55.71 59.21 55.71 48.21 76.77 50.75 61.33 47.21 61.33 49.54 49.15"/><polygon class="p28n-7" points="47.95 47.55 55.9 47.55 53.54 54.12 57.61 54.12 46.61 75.19 49.13 59.72 45.62 59.72 47.95 47.55"/><polygon class="p28n-6" points="64.65 49.15 72.62 49.15 70.25 55.71 74.32 55.71 63.32 76.77 65.86 61.33 62.33 61.33 64.65 49.15"/><polygon class="p28n-7" points="63.06 47.55 71.02 47.55 68.65 54.12 72.73 54.12 61.73 75.19 64.24 59.72 60.73 59.72 63.06 47.55"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
main/images/p29n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

1
main/images/p29n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_45" data-name="Calque 45" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p29-1{fill:#919191;}.p29-2{fill:#fdda00;}.p29-3{fill:#f47a20;}</style></defs><title>45Plan de travail 1</title><path class="p29-1" d="M69,32.13a14.77,14.77,0,0,0-27,4.93,8.62,8.62,0,0,1,6.64,4.21l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H67.72A11.37,11.37,0,0,0,69,32.14Z"/><path class="p29-1" d="M33.2,26.15a9.3,9.3,0,0,0-9.32-7.59,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33a5.21,5.21,0,0,0,.13-10.42Z"/><polygon class="p29-2" points="50.55 43.58 58.48 43.58 56.11 50.12 60.17 50.12 49.23 71.08 51.75 55.68 48.23 55.68 50.55 43.58"/><polygon class="p29-3" points="48.97 41.98 56.88 41.98 54.54 48.53 58.58 48.53 47.63 69.5 50.15 54.1 46.65 54.1 48.97 41.98"/><polygon class="p29-2" points="65.59 43.58 73.52 43.58 71.17 50.12 75.21 50.12 64.27 71.08 66.79 55.68 63.28 55.68 65.59 43.58"/><polygon class="p29-3" points="64.01 41.98 71.93 41.98 69.58 48.53 73.63 48.53 62.69 69.5 65.19 54.1 61.69 54.1 64.01 41.98"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
main/images/p30j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

35
main/images/p30j.svg Normal file
View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="orage_de_neige" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve" width="50" height="50">
<style type="text/css">
.p30j-0{opacity:0.51;fill:#EFEB60;enable-background:new ;}
.p30j-1{fill:#F6B31A;stroke:#FEEA02;stroke-miterlimit:10;}
.p30j-2{fill:#919191;}
.p30j-3{fill:#FEDA00;}
.p30j-4{fill:#F47920;}
.p30j-5{opacity:0.8;fill:#FFFFFF;enable-background:new ;}
.p30j-6{fill:#77CCF2;}
</style>
<circle class="p30j-0" cx="45.6" cy="27.1" r="17.8"/>
<circle class="p30j-1" cx="45.6" cy="27.1" r="13.6"/>
<path class="p30j-2" d="M68.7,33.7c-4.7-7.5-14.6-9.8-22.2-5.1c-3.7,2.4-6.3,6.1-7.2,10.4c3,0.2,5.7,2,7.3,4.6l-1.2,0.7
c-2.2-3.7-6.3-4.2-9.2-4c-4.8,1.8-7.2,7.2-5.3,12c1.4,3.6,4.8,6,8.6,6h27.9c6.9-0.3,12.1-6.2,11.7-12.9
C78.7,39.4,74.5,34.6,68.7,33.7L68.7,33.7z"/>
<path class="p30j-2" d="M29.8,27.1c-0.9-4.9-5.1-8.4-10.1-8.3c-3.2,0-6.2,1.4-8.2,3.9c2.2,0.3,4.9,1.3,6.1,3.9l-1.3,0.5
C14.8,24,9.8,23.9,9,23.9c-3,1-5.1,3.8-5.1,7.1c0.1,4.2,3.6,7.6,7.8,7.5l0,0h17.8c3.2,0,5.7-2.5,5.8-5.5
C35.4,29.9,32.9,27.1,29.8,27.1L29.8,27.1z"/>
<polygon class="p30j-3" points="49.7,46.6 58.2,46.6 55.7,53.6 60,53.6 48.3,76.1 51,59.5 47.2,59.5 "/>
<polygon class="p30j-4" points="48.1,44.9 56.4,44.9 53.9,51.9 58.3,51.9 46.5,74.3 49.3,57.9 45.6,57.9 "/>
<circle class="p30j-5" cx="33.4" cy="55.6" r="11"/>
<path class="p30j-6" d="M41.2,59.1l-6-3.5l6-3.5c0.4-0.2,0.7-0.9,0.3-1.3l0,0c-0.2-0.4-0.9-0.7-1.3-0.3l-6,3.4V47
c-0.1-0.5-0.5-0.9-1.1-0.9c-0.4,0-0.8,0.4-0.9,0.9v6.9l-6-3.4c-0.4-0.2-1.1,0-1.3,0.4c-0.2,0.3-0.1,0.8,0.2,1.1l0.1,0.1l6,3.5
l-6,3.4c-0.4,0.2-0.7,0.8-0.4,1.3c0.2,0.4,0.8,0.7,1.3,0.4l0.2-0.1l6-3.5V64c-0.1,0.5,0.3,1,0.9,1.1c0.5,0.1,1-0.3,1.1-0.9
c0-0.1,0-0.1,0-0.2v-6.9l6,3.5c0.4,0.2,1.1,0.1,1.3-0.3l0,0C41.9,60,41.8,59.3,41.2,59.1C41.3,59.1,41.3,59.1,41.2,59.1L41.2,59.1
L41.2,59.1z"/>
<circle class="p30j-5" cx="71.8" cy="56" r="11"/>
<path class="p30j-6" d="M79.7,59.4l-6-3.5l6-3.5c0.4-0.2,0.7-0.9,0.3-1.3l0,0c-0.2-0.4-0.9-0.7-1.3-0.3l-6,3.4v-6.9
c-0.1-0.5-0.5-0.9-1.1-0.9c-0.4,0-0.8,0.4-0.9,0.9v6.9l-6-3.4c-0.4-0.2-1.1,0-1.3,0.4c-0.2,0.3-0.1,0.8,0.2,1.1l0.1,0.1l6,3.5
l-6,3.4c-0.4,0.2-0.7,0.8-0.4,1.3c0.2,0.4,0.8,0.7,1.3,0.4l0.2-0.1l6-3.5v6.9c-0.1,0.5,0.3,1,0.9,1.1c0.5,0.1,1-0.3,1.1-0.9
c0-0.1,0-0.1,0-0.2v-6.9l6,3.5c0.4,0.2,1.1,0.1,1.3-0.3l0,0C80.4,60.3,80.2,59.8,79.7,59.4L79.7,59.4L79.7,59.4L79.7,59.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
main/images/p30n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

52
main/images/p30n.svg Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="orage_de_neige" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve" width="50" height="50">
<style type="text/css">
.p30n-0{opacity:0.18;fill:#43444D;enable-background:new ;}
.p30n-1{fill:#FFFFFF;}
.p30n-2{opacity:0.18;fill:#626472;enable-background:new ;}
.p30n-3{fill:#FDFCE9;}
.p30n-4{fill:#919191;}
.p30n-5{fill:#FEDA00;}
.p30n-6{fill:#F47920;}
.p30n-7{opacity:0.8;fill:#FFFFFF;enable-background:new ;}
.p30n-8{fill:#77CCF2;}
</style>
<circle class="p30n-0" cx="45.5" cy="27.2" r="17.8"/>
<path class="p30n-1" d="M53.5,29.5c0.4,0,0.7-0.3,0.7-0.7v-2.4c0-0.4-0.3-0.7-0.7-0.7c-0.4,0-0.7,0.3-0.7,0.7v2.4
C52.8,29.2,53.1,29.5,53.5,29.5L53.5,29.5z"/>
<path class="p30n-1" d="M55.4,27.6c0-0.4-0.3-0.7-0.7-0.7h-2.4c-0.4,0-0.7,0.3-0.7,0.7c0,0.4,0.3,0.7,0.7,0.7h2.4
C55.1,28.4,55.4,28.1,55.4,27.6C55.4,27.7,55.4,27.7,55.4,27.6z"/>
<path class="p30n-1" d="M31.2,18.6c0.4,0,0.7-0.3,0.7-0.7v-2.4c0-0.4-0.3-0.7-0.7-0.7c-0.4,0-0.7,0.3-0.7,0.7v2.4
C30.5,18.3,30.8,18.6,31.2,18.6L31.2,18.6z"/>
<path class="p30n-1" d="M33.1,16.7c0-0.4-0.3-0.7-0.7-0.7H30c-0.4,0-0.7,0.3-0.7,0.7c0,0.4,0.3,0.7,0.7,0.7h2.4
C32.7,17.5,33,17.2,33.1,16.7L33.1,16.7L33.1,16.7z"/>
<path class="p30n-1" d="M50.8,16.7c0.4,0,0.7-0.3,0.7-0.7v-2.4c0-0.4-0.3-0.7-0.7-0.7c-0.4,0-0.7,0.3-0.7,0.7V16
C50,16.4,50.3,16.7,50.8,16.7L50.8,16.7z"/>
<path class="p30n-1" d="M52.6,14.9c0-0.4-0.3-0.7-0.7-0.7h-2.4c-0.4,0-0.7,0.3-0.7,0.7c0,0.4,0.3,0.7,0.7,0.7h2.4
C52.3,15.5,52.6,15.3,52.6,14.9L52.6,14.9L52.6,14.9z"/>
<path class="p30n-2" d="M46.1,15.6c1.4-0.3,2.8-0.4,4.2-0.2c-5.5,3.6-7.1,11-3.5,16.5c2,3,5.1,5,8.6,5.4c-5.6,3.5-13,1.9-16.5-3.6
c-3.5-5.6-1.9-12.9,3.6-16.5C43.6,16.4,44.8,16,46.1,15.6z"/>
<path class="p30n-3" d="M42.3,15.8c1.4-0.3,2.8-0.4,4.2-0.2c-5.5,3.6-7.1,11-3.4,16.5c1.9,2.9,5.1,4.9,8.6,5.3
c-5.6,3.5-13,1.9-16.5-3.6c-3.5-5.6-1.9-12.9,3.6-16.5C39.9,16.6,41.1,16,42.3,15.8L42.3,15.8z"/>
<path class="p30n-4" d="M68.7,33.7c-4.7-7.5-14.6-9.8-22.2-5.1c-3.7,2.4-6.3,6.1-7.2,10.4c3,0.2,5.7,2,7.3,4.6l-1.2,0.7
c-2.2-3.7-6.3-4.2-9.2-4c-4.8,1.8-7.2,7.2-5.3,12c1.4,3.6,4.8,6,8.6,6h27.9c6.9-0.3,12.1-6.2,11.7-12.9
C78.7,39.4,74.5,34.6,68.7,33.7L68.7,33.7z"/>
<path class="p30n-4" d="M29.8,27.1c-0.9-4.9-5.1-8.4-10.1-8.3c-3.2,0-6.2,1.4-8.2,3.9c2.2,0.3,4.9,1.3,6.1,3.9l-1.3,0.5
C14.8,24,9.8,23.9,9,23.9c-3,1-5.1,3.8-5.1,7.1c0.1,4.2,3.6,7.6,7.8,7.5l0,0h17.8c3.2,0,5.7-2.5,5.8-5.5
C35.4,29.9,32.9,27.1,29.8,27.1L29.8,27.1z"/>
<polygon class="p30n-5" points="49.7,46.6 58.2,46.6 55.7,53.6 60,53.6 48.3,76.1 51,59.5 47.2,59.5 "/>
<polygon class="p30n-6" points="48.1,44.9 56.4,44.9 53.9,51.9 58.3,51.9 46.5,74.3 49.3,57.9 45.6,57.9 "/>
<circle class="p30n-7" cx="33.4" cy="55.6" r="11"/>
<path class="p30n-8" d="M41.2,59.1l-6-3.5l6-3.5c0.4-0.2,0.7-0.9,0.3-1.3l0,0c-0.2-0.4-0.9-0.7-1.3-0.3l-6,3.4V47
c-0.1-0.5-0.5-0.9-1.1-0.9c-0.4,0-0.8,0.4-0.9,0.9v6.9l-6-3.4c-0.4-0.2-1.1,0-1.3,0.4c-0.2,0.3-0.1,0.8,0.2,1.1l0.1,0.1l6,3.5
l-6,3.4c-0.4,0.2-0.7,0.8-0.4,1.3c0.2,0.4,0.8,0.7,1.3,0.4l0.2-0.1l6-3.5V64c-0.1,0.5,0.3,1,0.9,1.1c0.5,0.1,1-0.3,1.1-0.9
c0-0.1,0-0.1,0-0.2v-6.9l6,3.5c0.4,0.2,1.1,0.1,1.3-0.3l0,0C41.9,60,41.8,59.3,41.2,59.1C41.3,59.1,41.3,59.1,41.2,59.1L41.2,59.1
L41.2,59.1z"/>
<circle class="p30n-7" cx="71.8" cy="56" r="11"/>
<path class="p30n-8" d="M79.7,59.4l-6-3.5l6-3.5c0.4-0.2,0.7-0.9,0.3-1.3l0,0c-0.2-0.4-0.9-0.7-1.3-0.3l-6,3.4v-6.9
c-0.1-0.5-0.5-0.9-1.1-0.9c-0.4,0-0.8,0.4-0.9,0.9v6.9l-6-3.4c-0.4-0.2-1.1,0-1.3,0.4c-0.2,0.3-0.1,0.8,0.2,1.1l0.1,0.1l6,3.5
l-6,3.4c-0.4,0.2-0.7,0.8-0.4,1.3c0.2,0.4,0.8,0.7,1.3,0.4l0.2-0.1l6-3.5v6.9c-0.1,0.5,0.3,1,0.9,1.1c0.5,0.1,1-0.3,1.1-0.9
c0-0.1,0-0.1,0-0.2v-6.9l6,3.5c0.4,0.2,1.1,0.1,1.3-0.3l0,0C80.4,60.3,80.2,59.8,79.7,59.4L79.7,59.4L79.7,59.4L79.7,59.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
main/images/p31j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

73
main/images/p31j.svg Normal file
View File

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="orage_de_neige" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve" width="50" height="50">
<style type="text/css">
.p31j-0{fill:#FFE7A4;}
.p31j-1{fill:#DDA766;}
</style>
<circle class="p31j-0" cx="26.9" cy="10.9" r="2.8"/>
<circle class="p31j-0" cx="11.9" cy="48.8" r="2.8"/>
<circle class="p31j-0" cx="28.8" cy="48.1" r="3.1"/>
<circle class="p31j-0" cx="43.6" cy="16" r="3.1"/>
<circle class="p31j-0" cx="36" cy="73" r="0.8"/>
<circle class="p31j-0" cx="9.3" cy="41.9" r="0.8"/>
<circle class="p31j-0" cx="63" cy="46" r="0.8"/>
<circle class="p31j-0" cx="40.7" cy="10.9" r="0.8"/>
<circle class="p31j-0" cx="60.7" cy="30.6" r="0.8"/>
<circle class="p31j-0" cx="66.5" cy="31.4" r="0.8"/>
<circle class="p31j-0" cx="48.4" cy="68.8" r="0.8"/>
<circle class="p31j-0" cx="59.9" cy="42.7" r="0.8"/>
<circle class="p31j-0" cx="56.5" cy="36" r="0.8"/>
<circle class="p31j-0" cx="45.3" cy="40.4" r="0.8"/>
<circle class="p31j-0" cx="49.2" cy="36.3" r="2.3"/>
<circle class="p31j-0" cx="15.2" cy="33.7" r="2.3"/>
<circle class="p31j-0" cx="73" cy="40.4" r="2.3"/>
<circle class="p31j-0" cx="70.6" cy="68" r="2.3"/>
<circle class="p31j-0" cx="43" cy="65" r="2.3"/>
<circle class="p31j-0" cx="20.5" cy="23.1" r="2.3"/>
<circle class="p31j-0" cx="60.7" cy="24.4" r="2.3"/>
<circle class="p31j-0" cx="46.7" cy="46" r="1.6"/>
<circle class="p31j-0" cx="25.7" cy="39.7" r="1.6"/>
<circle class="p31j-0" cx="37.6" cy="22.3" r="1.6"/>
<circle class="p31j-0" cx="63.8" cy="38.6" r="1.6"/>
<circle class="p31j-0" cx="66.5" cy="54.1" r="1.6"/>
<circle class="p31j-0" cx="36" cy="57.4" r="1.6"/>
<circle class="p31j-0" cx="54.2" cy="54.1" r="1.6"/>
<circle class="p31j-0" cx="35.6" cy="33.7" r="2.3"/>
<circle class="p31j-0" cx="62.2" cy="11.4" r="2.7"/>
<circle class="p31j-0" cx="57.4" cy="59" r="2.5"/>
<circle class="p31j-0" cx="21.5" cy="65.9" r="2.5"/>
<circle class="p31j-0" cx="9.3" cy="70.9" r="0.8"/>
<circle class="p31j-0" cx="54.9" cy="65.9" r="0.8"/>
<circle class="p31j-0" cx="50" cy="53.3" r="0.8"/>
<circle class="p31j-0" cx="28.8" cy="68.8" r="0.8"/>
<circle class="p31j-0" cx="36.8" cy="61" r="0.8"/>
<circle class="p31j-0" cx="76.3" cy="54.9" r="0.8"/>
<circle class="p31j-0" cx="71.5" cy="53.3" r="0.8"/>
<circle class="p31j-0" cx="70.7" cy="61" r="0.8"/>
<circle class="p31j-0" cx="77.3" cy="29.9" r="0.8"/>
<circle class="p31j-0" cx="77.3" cy="34" r="0.8"/>
<circle class="p31j-0" cx="63.8" cy="67.3" r="0.8"/>
<circle class="p31j-0" cx="18.3" cy="38.9" r="0.8"/>
<circle class="p31j-0" cx="23.9" cy="55.7" r="0.8"/>
<circle class="p31j-0" cx="22.3" cy="60.2" r="0.8"/>
<circle class="p31j-0" cx="37.3" cy="48.9" r="0.8"/>
<circle class="p31j-0" cx="11.1" cy="57.3" r="0.8"/>
<circle class="p31j-0" cx="14.7" cy="54.9" r="0.8"/>
<circle class="p31j-0" cx="41.3" cy="27.9" r="0.8"/>
<circle class="p31j-0" cx="32.7" cy="29.5" r="0.8"/>
<circle class="p31j-0" cx="26.9" cy="25.4" r="0.8"/>
<circle class="p31j-0" cx="39.7" cy="38.9" r="0.8"/>
<circle class="p31j-0" cx="53.3" cy="22.9" r="0.8"/>
<circle class="p31j-0" cx="50" cy="25.4" r="0.8"/>
<circle class="p31j-0" cx="72.3" cy="13.9" r="0.8"/>
<circle class="p31j-0" cx="34.1" cy="19.1" r="0.8"/>
<circle class="p31j-0" cx="23.9" cy="28.7" r="0.8"/>
<circle class="p31j-0" cx="17.5" cy="13.7" r="0.8"/>
<circle class="p31j-0" cx="10.3" cy="19.9" r="0.8"/>
<circle class="p31j-0" cx="57.2" cy="14.5" r="0.8"/>
<circle class="p31j-0" cx="55.8" cy="10.9" r="0.8"/>
<circle class="p31j-0" cx="65.7" cy="21.5" r="0.8"/>
<path class="p31j-1" d="M4,81.5h78C82,81.5,49.6,75.3,4,81.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
main/images/p31n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

73
main/images/p31n.svg Normal file
View File

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="orage_de_neige" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve" width="50" height="50">
<style type="text/css">
.p31n-0{fill:#FFE7A4;}
.p31n-1{fill:#DDA766;}
</style>
<circle class="p31n-0" cx="26.9" cy="10.9" r="2.8"/>
<circle class="p31n-0" cx="11.9" cy="48.8" r="2.8"/>
<circle class="p31n-0" cx="28.8" cy="48.1" r="3.1"/>
<circle class="p31n-0" cx="43.6" cy="16" r="3.1"/>
<circle class="p31n-0" cx="36" cy="73" r="0.8"/>
<circle class="p31n-0" cx="9.3" cy="41.9" r="0.8"/>
<circle class="p31n-0" cx="63" cy="46" r="0.8"/>
<circle class="p31n-0" cx="40.7" cy="10.9" r="0.8"/>
<circle class="p31n-0" cx="60.7" cy="30.6" r="0.8"/>
<circle class="p31n-0" cx="66.5" cy="31.4" r="0.8"/>
<circle class="p31n-0" cx="48.4" cy="68.8" r="0.8"/>
<circle class="p31n-0" cx="59.9" cy="42.7" r="0.8"/>
<circle class="p31n-0" cx="56.5" cy="36" r="0.8"/>
<circle class="p31n-0" cx="45.3" cy="40.4" r="0.8"/>
<circle class="p31n-0" cx="49.2" cy="36.3" r="2.3"/>
<circle class="p31n-0" cx="15.2" cy="33.7" r="2.3"/>
<circle class="p31n-0" cx="73" cy="40.4" r="2.3"/>
<circle class="p31n-0" cx="70.6" cy="68" r="2.3"/>
<circle class="p31n-0" cx="43" cy="65" r="2.3"/>
<circle class="p31n-0" cx="20.5" cy="23.1" r="2.3"/>
<circle class="p31n-0" cx="60.7" cy="24.4" r="2.3"/>
<circle class="p31n-0" cx="46.7" cy="46" r="1.6"/>
<circle class="p31n-0" cx="25.7" cy="39.7" r="1.6"/>
<circle class="p31n-0" cx="37.6" cy="22.3" r="1.6"/>
<circle class="p31n-0" cx="63.8" cy="38.6" r="1.6"/>
<circle class="p31n-0" cx="66.5" cy="54.1" r="1.6"/>
<circle class="p31n-0" cx="36" cy="57.4" r="1.6"/>
<circle class="p31n-0" cx="54.2" cy="54.1" r="1.6"/>
<circle class="p31n-0" cx="35.6" cy="33.7" r="2.3"/>
<circle class="p31n-0" cx="62.2" cy="11.4" r="2.7"/>
<circle class="p31n-0" cx="57.4" cy="59" r="2.5"/>
<circle class="p31n-0" cx="21.5" cy="65.9" r="2.5"/>
<circle class="p31n-0" cx="9.3" cy="70.9" r="0.8"/>
<circle class="p31n-0" cx="54.9" cy="65.9" r="0.8"/>
<circle class="p31n-0" cx="50" cy="53.3" r="0.8"/>
<circle class="p31n-0" cx="28.8" cy="68.8" r="0.8"/>
<circle class="p31n-0" cx="36.8" cy="61" r="0.8"/>
<circle class="p31n-0" cx="76.3" cy="54.9" r="0.8"/>
<circle class="p31n-0" cx="71.5" cy="53.3" r="0.8"/>
<circle class="p31n-0" cx="70.7" cy="61" r="0.8"/>
<circle class="p31n-0" cx="77.3" cy="29.9" r="0.8"/>
<circle class="p31n-0" cx="77.3" cy="34" r="0.8"/>
<circle class="p31n-0" cx="63.8" cy="67.3" r="0.8"/>
<circle class="p31n-0" cx="18.3" cy="38.9" r="0.8"/>
<circle class="p31n-0" cx="23.9" cy="55.7" r="0.8"/>
<circle class="p31n-0" cx="22.3" cy="60.2" r="0.8"/>
<circle class="p31n-0" cx="37.3" cy="48.9" r="0.8"/>
<circle class="p31n-0" cx="11.1" cy="57.3" r="0.8"/>
<circle class="p31n-0" cx="14.7" cy="54.9" r="0.8"/>
<circle class="p31n-0" cx="41.3" cy="27.9" r="0.8"/>
<circle class="p31n-0" cx="32.7" cy="29.5" r="0.8"/>
<circle class="p31n-0" cx="26.9" cy="25.4" r="0.8"/>
<circle class="p31n-0" cx="39.7" cy="38.9" r="0.8"/>
<circle class="p31n-0" cx="53.3" cy="22.9" r="0.8"/>
<circle class="p31n-0" cx="50" cy="25.4" r="0.8"/>
<circle class="p31n-0" cx="72.3" cy="13.9" r="0.8"/>
<circle class="p31n-0" cx="34.1" cy="19.1" r="0.8"/>
<circle class="p31n-0" cx="23.9" cy="28.7" r="0.8"/>
<circle class="p31n-0" cx="17.5" cy="13.7" r="0.8"/>
<circle class="p31n-0" cx="10.3" cy="19.9" r="0.8"/>
<circle class="p31n-0" cx="57.2" cy="14.5" r="0.8"/>
<circle class="p31n-0" cx="55.8" cy="10.9" r="0.8"/>
<circle class="p31n-0" cx="65.7" cy="21.5" r="0.8"/>
<path class="p31n-1" d="M4,81.5h78C82,81.5,49.6,75.3,4,81.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
main/images/p32j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

63
main/images/p32j.svg Normal file
View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="orage_de_neige" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve" width="50" height="50">
<style type="text/css">
.p32j-0{fill:#79B1E8;}
.p32j-1{fill:none;stroke:#A8C9E5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.p32j-2{fill:#C6C6C6;}
.p32j-3{fill:#999999;}
.p32j-4{fill:#727272;}
.p32j-5{fill:#A8C9E5;}
</style>
<ellipse class="p32j-0" cx="40.4" cy="71.2" rx="35.1" ry="8.4"/>
<path class="p32j-1" d="M42.6,66.3c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32j-1" d="M58.5,69.2c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32j-1" d="M47.6,74.8c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32j-1" d="M10.4,70c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32j-2" d="M69.9,17c-0.9-5.6-14.1-8.2-29.7-5.8C24.7,13.5,12.8,20,13.7,25.6c0.3,2.2,2.6,3.9,6.1,5.1
c-0.1,0.5-0.2,0.9-0.1,1.4c0.3,2.1,3,3.7,7.1,4.5c-0.2,0.5-0.3,0.9-0.2,1.4c0.2,1.4,1.9,2.5,4.4,3.2c-0.6,0.7-0.9,1.5-0.8,2.2
c0.2,1.1,1.4,2.1,3.3,2.7c-1.6,1.1-2.5,2.2-2.4,3.3c0.1,0.9,0.9,1.6,2.2,2.1c-3.7,1.5-6,3.3-5.7,4.9c0,0.3,0.2,0.6,0.4,0.9
c-2.1,1.1-3.4,2.3-3.2,3.4c0,0.3,0.2,0.5,0.4,0.8c-1.5,0.8-2.3,1.8-2.1,2.6c0.1,0.4,0.4,0.8,0.8,1.1c-1.3,0.7-2,1.5-1.9,2.2
s1,1.2,2.3,1.5c-0.4,0.4-0.6,0.8-0.6,1.1c0.1,0.6,1,1.1,2.4,1.3c-0.1,0.2-0.2,0.4-0.1,0.5c0.1,0.5,0.6,0.8,1.5,1
c-0.1,0.1-0.1,0.3-0.1,0.4c0.1,0.4,0.5,0.6,1.1,0.8c-0.3,0.2-0.4,0.5-0.4,0.7c0.1,0.9,2.5,1.3,5.2,0.8c2.7-0.4,4.8-1.5,4.7-2.3
c0-0.3-0.4-0.5-0.8-0.7c0.4-0.3,0.6-0.6,0.6-0.9c0-0.2-0.2-0.4-0.4-0.5c0.5-0.4,0.8-0.8,0.7-1.1c-0.1-0.3-0.4-0.6-0.9-0.8
c0.6-0.5,1-0.9,0.9-1.4c0-0.3-0.2-0.5-0.5-0.7c1.6-0.8,2.5-1.7,2.4-2.5v-0.1c2.6-1,4.4-2.2,4.7-3.3c3.2-1.1,5.3-2.6,5.5-4
c4.5-1.5,7.5-3.6,7.2-5.4c-0.1-0.7-0.7-1.3-1.7-1.8c4.3-1.6,7-3.6,6.7-5.4c-0.1-0.5-0.4-1-1-1.4c3.7-1.7,5.9-3.6,5.6-5.4
c-0.1-0.9-0.9-1.6-2.1-2.2c1.7-1.3,2.6-2.6,2.4-3.8c-0.1-1-0.9-1.8-2.2-2.4c1.9-1.5,2.9-3.1,2.6-4.6c-0.1-0.7-0.5-1.3-1-1.9
C69,20.9,70.2,18.9,69.9,17z"/>
<path class="p32j-3" d="M72.4,32.2c-0.3-1.9-2.5-3.4-6-4.3c-0.2,0.3-0.5,0.6-0.8,0.9c2,0.8,3.3,1.9,3.5,3.3c0.6,4-7.8,8.5-18.8,10.2
s-20.4-0.2-21-4.1c0-0.2,0-0.5,0-0.7c-0.1,0.4-0.2,0.9-0.1,1.3c0.8,4.2,11,6.2,22.9,4.4S73.1,36.4,72.4,32.2z"/>
<path class="p32j-3" d="M59.8,54.7c-0.1-1-1.1-1.8-2.5-2.3c-0.1,0.3-0.3,0.6-0.5,0.9c0.5,0.4,0.8,0.9,0.9,1.4c0.4,2.5-5,5.5-12.1,6.6
s-13.1-0.1-13.5-2.7c0-0.2,0-0.3,0-0.5C32,58.4,32,58.7,32,59c0.4,2.8,7,4.1,14.6,2.9C54.3,60.7,60.2,57.5,59.8,54.7z"/>
<path class="p32j-3" d="M52.8,50.7c0.1,0.2,0.1,0.3,0.1,0.5c0.2,2.8-6,5.5-13.8,5.9c-7.8,0.5-14.3-1.4-14.4-4.3
c-0.1-1.9,2.7-3.7,6.9-4.8c0.1-0.1,0.1-0.2,0.2-0.3c-5.6,1.2-9.4,3.4-9.2,5.7c0.2,3,7.2,5.1,15.6,4.6c8.5-0.5,15.2-3.4,15-6.4
C53,51.3,52.9,51,52.8,50.7z"/>
<path class="p32j-3" d="M37.5,66.4c0,0.1,0.1,0.2,0.1,0.4c0.1,2-4.3,3.9-9.9,4.2c-5.6,0.3-10.2-1-10.3-3c-0.1-1.5,2.3-2.9,5.9-3.7
c0-0.1,0-0.1,0-0.2c-4.4,0.8-7.6,2.5-7.4,4.2C16,70.5,21,72,27.1,71.6c6.1-0.4,10.9-2.4,10.7-4.6C37.7,66.8,37.7,66.6,37.5,66.4z"/>
<ellipse transform="matrix(0.9885 -0.1511 0.1511 0.9885 -2.7662 6.7916)" class="p32j-3" cx="43.3" cy="21.6" rx="22.7" ry="8.2"/>
<ellipse transform="matrix(0.9885 -0.1511 0.1511 0.9885 -2.7381 6.5614)" class="p32j-4" cx="41.8" cy="21.3" rx="18.7" ry="6.7"/>
<circle class="p32j-5" cx="41.7" cy="72.9" r="0.6"/>
<circle class="p32j-5" cx="20.5" cy="75" r="0.6"/>
<circle class="p32j-5" cx="40" cy="73.3" r="0.6"/>
<circle class="p32j-5" cx="37.7" cy="74.4" r="0.6"/>
<circle class="p32j-5" cx="35.2" cy="74.6" r="0.6"/>
<circle class="p32j-5" cx="33.1" cy="75.5" r="0.6"/>
<circle class="p32j-5" cx="30.9" cy="75.1" r="0.6"/>
<circle class="p32j-5" cx="24.6" cy="74.6" r="0.6"/>
<circle class="p32j-5" cx="24.6" cy="72.5" r="0.6"/>
<circle class="p32j-5" cx="17.6" cy="71.9" r="0.6"/>
<circle class="p32j-5" cx="43.4" cy="71.9" r="0.6"/>
<circle class="p32j-5" cx="44.3" cy="68.9" r="0.6"/>
<circle class="p32j-5" cx="39.4" cy="71.9" r="0.6"/>
<circle class="p32j-5" cx="26.2" cy="73.5" r="0.6"/>
<circle class="p32j-5" cx="26.8" cy="75.1" r="0.6"/>
<circle class="p32j-5" cx="29.1" cy="75.5" r="0.6"/>
<circle class="p32j-5" cx="41.7" cy="70.8" r="0.6"/>
<circle class="p32j-5" cx="38.3" cy="70.6" r="0.6"/>
<circle class="p32j-5" cx="22.4" cy="73.3" r="0.6"/>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

BIN
main/images/p32n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

63
main/images/p32n.svg Normal file
View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="orage_de_neige" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve" width="50" height="50">
<style type="text/css">
.p32n-0{fill:#79B1E8;}
.p32n-1{fill:none;stroke:#A8C9E5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.p32n-2{fill:#C6C6C6;}
.p32n-3{fill:#999999;}
.p32n-4{fill:#727272;}
.p32n-5{fill:#A8C9E5;}
</style>
<ellipse class="p32n-0" cx="40.4" cy="71.2" rx="35.1" ry="8.4"/>
<path class="p32n-1" d="M42.6,66.3c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32n-1" d="M58.5,69.2c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32n-1" d="M47.6,74.8c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32n-1" d="M10.4,70c0.2,0.9,0.9,1.5,1.7,1.6c0.9,0.1,1.8-0.6,2-1.6c0.2,0.8,0.9,1.4,1.8,1.4c0.8,0,1.4-0.6,1.6-1.4
c0.3,0.8,1.1,1.4,2,1.3c0.8,0,1.5-0.6,1.8-1.3"/>
<path class="p32n-2" d="M69.9,17c-0.9-5.6-14.1-8.2-29.7-5.8C24.7,13.5,12.8,20,13.7,25.6c0.3,2.2,2.6,3.9,6.1,5.1
c-0.1,0.5-0.2,0.9-0.1,1.4c0.3,2.1,3,3.7,7.1,4.5c-0.2,0.5-0.3,0.9-0.2,1.4c0.2,1.4,1.9,2.5,4.4,3.2c-0.6,0.7-0.9,1.5-0.8,2.2
c0.2,1.1,1.4,2.1,3.3,2.7c-1.6,1.1-2.5,2.2-2.4,3.3c0.1,0.9,0.9,1.6,2.2,2.1c-3.7,1.5-6,3.3-5.7,4.9c0,0.3,0.2,0.6,0.4,0.9
c-2.1,1.1-3.4,2.3-3.2,3.4c0,0.3,0.2,0.5,0.4,0.8c-1.5,0.8-2.3,1.8-2.1,2.6c0.1,0.4,0.4,0.8,0.8,1.1c-1.3,0.7-2,1.5-1.9,2.2
s1,1.2,2.3,1.5c-0.4,0.4-0.6,0.8-0.6,1.1c0.1,0.6,1,1.1,2.4,1.3c-0.1,0.2-0.2,0.4-0.1,0.5c0.1,0.5,0.6,0.8,1.5,1
c-0.1,0.1-0.1,0.3-0.1,0.4c0.1,0.4,0.5,0.6,1.1,0.8c-0.3,0.2-0.4,0.5-0.4,0.7c0.1,0.9,2.5,1.3,5.2,0.8c2.7-0.4,4.8-1.5,4.7-2.3
c0-0.3-0.4-0.5-0.8-0.7c0.4-0.3,0.6-0.6,0.6-0.9c0-0.2-0.2-0.4-0.4-0.5c0.5-0.4,0.8-0.8,0.7-1.1c-0.1-0.3-0.4-0.6-0.9-0.8
c0.6-0.5,1-0.9,0.9-1.4c0-0.3-0.2-0.5-0.5-0.7c1.6-0.8,2.5-1.7,2.4-2.5v-0.1c2.6-1,4.4-2.2,4.7-3.3c3.2-1.1,5.3-2.6,5.5-4
c4.5-1.5,7.5-3.6,7.2-5.4c-0.1-0.7-0.7-1.3-1.7-1.8c4.3-1.6,7-3.6,6.7-5.4c-0.1-0.5-0.4-1-1-1.4c3.7-1.7,5.9-3.6,5.6-5.4
c-0.1-0.9-0.9-1.6-2.1-2.2c1.7-1.3,2.6-2.6,2.4-3.8c-0.1-1-0.9-1.8-2.2-2.4c1.9-1.5,2.9-3.1,2.6-4.6c-0.1-0.7-0.5-1.3-1-1.9
C69,20.9,70.2,18.9,69.9,17z"/>
<path class="p32n-3" d="M72.4,32.2c-0.3-1.9-2.5-3.4-6-4.3c-0.2,0.3-0.5,0.6-0.8,0.9c2,0.8,3.3,1.9,3.5,3.3c0.6,4-7.8,8.5-18.8,10.2
s-20.4-0.2-21-4.1c0-0.2,0-0.5,0-0.7c-0.1,0.4-0.2,0.9-0.1,1.3c0.8,4.2,11,6.2,22.9,4.4S73.1,36.4,72.4,32.2z"/>
<path class="p32n-3" d="M59.8,54.7c-0.1-1-1.1-1.8-2.5-2.3c-0.1,0.3-0.3,0.6-0.5,0.9c0.5,0.4,0.8,0.9,0.9,1.4c0.4,2.5-5,5.5-12.1,6.6
s-13.1-0.1-13.5-2.7c0-0.2,0-0.3,0-0.5C32,58.4,32,58.7,32,59c0.4,2.8,7,4.1,14.6,2.9C54.3,60.7,60.2,57.5,59.8,54.7z"/>
<path class="p32n-3" d="M52.8,50.7c0.1,0.2,0.1,0.3,0.1,0.5c0.2,2.8-6,5.5-13.8,5.9c-7.8,0.5-14.3-1.4-14.4-4.3
c-0.1-1.9,2.7-3.7,6.9-4.8c0.1-0.1,0.1-0.2,0.2-0.3c-5.6,1.2-9.4,3.4-9.2,5.7c0.2,3,7.2,5.1,15.6,4.6c8.5-0.5,15.2-3.4,15-6.4
C53,51.3,52.9,51,52.8,50.7z"/>
<path class="p32n-3" d="M37.5,66.4c0,0.1,0.1,0.2,0.1,0.4c0.1,2-4.3,3.9-9.9,4.2c-5.6,0.3-10.2-1-10.3-3c-0.1-1.5,2.3-2.9,5.9-3.7
c0-0.1,0-0.1,0-0.2c-4.4,0.8-7.6,2.5-7.4,4.2C16,70.5,21,72,27.1,71.6c6.1-0.4,10.9-2.4,10.7-4.6C37.7,66.8,37.7,66.6,37.5,66.4z"/>
<ellipse transform="matrix(0.9885 -0.1511 0.1511 0.9885 -2.7662 6.7916)" class="p32n-3" cx="43.3" cy="21.6" rx="22.7" ry="8.2"/>
<ellipse transform="matrix(0.9885 -0.1511 0.1511 0.9885 -2.7381 6.5614)" class="p32n-4" cx="41.8" cy="21.3" rx="18.7" ry="6.7"/>
<circle class="p32n-5" cx="41.7" cy="72.9" r="0.6"/>
<circle class="p32n-5" cx="20.5" cy="75" r="0.6"/>
<circle class="p32n-5" cx="40" cy="73.3" r="0.6"/>
<circle class="p32n-5" cx="37.7" cy="74.4" r="0.6"/>
<circle class="p32n-5" cx="35.2" cy="74.6" r="0.6"/>
<circle class="p32n-5" cx="33.1" cy="75.5" r="0.6"/>
<circle class="p32n-5" cx="30.9" cy="75.1" r="0.6"/>
<circle class="p32n-5" cx="24.6" cy="74.6" r="0.6"/>
<circle class="p32n-5" cx="24.6" cy="72.5" r="0.6"/>
<circle class="p32n-5" cx="17.6" cy="71.9" r="0.6"/>
<circle class="p32n-5" cx="43.4" cy="71.9" r="0.6"/>
<circle class="p32n-5" cx="44.3" cy="68.9" r="0.6"/>
<circle class="p32n-5" cx="39.4" cy="71.9" r="0.6"/>
<circle class="p32n-5" cx="26.2" cy="73.5" r="0.6"/>
<circle class="p32n-5" cx="26.8" cy="75.1" r="0.6"/>
<circle class="p32n-5" cx="29.1" cy="75.5" r="0.6"/>
<circle class="p32n-5" cx="41.7" cy="70.8" r="0.6"/>
<circle class="p32n-5" cx="38.3" cy="70.6" r="0.6"/>
<circle class="p32n-5" cx="22.4" cy="73.3" r="0.6"/>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

BIN
main/images/p3n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

1
main/images/p3n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_7" data-name="Calque 7" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p3n-1{opacity:0.3;}.p3n-2{fill:#231f20;}.p3n-3{fill:#d8d9d8;}</style></defs><title>7Plan de travail 1</title><g class="p3n-1"><path class="p3n-2" d="M69.47,40a14.77,14.77,0,0,0-27.1,4.91A8.65,8.65,0,0,1,49,49.12l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67a8.52,8.52,0,0,0,3,16.48H68.22A11.37,11.37,0,0,0,69.45,40Z"/><path class="p3n-2" d="M33.69,34a9.3,9.3,0,0,0-9.3-7.65A9.54,9.54,0,0,0,16.88,30c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H33.56a5.21,5.21,0,0,0,.13-10.42Z"/></g><path class="p3n-3" d="M66.88,37.4a14.77,14.77,0,0,0-27,4.91,8.61,8.61,0,0,1,6.63,4.23l-1.14.64c-2-3.42-5.82-3.85-8.47-3.67A8.52,8.52,0,0,0,39.9,60H65.61A11.37,11.37,0,0,0,66.88,37.4Z"/><path class="p3n-3" d="M31.08,31.43a9.3,9.3,0,0,0-9.3-7.65,9.53,9.53,0,0,0-7.5,3.57c2,.32,4.53,1.21,5.63,3.64l-1.19.54c-1.36-3-6-3.1-6.71-3.1a6.92,6.92,0,0,0-4.7,6.46,7.08,7.08,0,0,0,7.22,6.93H31a5.21,5.21,0,0,0,.13-10.42Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
main/images/p5bisj.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

26
main/images/p5bisj.svg Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_8" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p5bisj-0{opacity:0.51;fill:#EEEB61;enable-background:new ;}
.p5bisj-1{fill:#F5B21A;stroke:#FDE901;stroke-miterlimit:10;}
.p5bisj-2{fill:#BCBCBC;}
.p5bisj-3{fill:#F4F4F4;}
</style>
<title>8Plan de travail 1</title>
<circle class="p5bisj-0" cx="42.6" cy="41.1" r="26.1"/>
<circle class="p5bisj-1" cx="42.6" cy="41.1" r="19.9"/>
<path class="p5bisj-2" d="M16.2,45.8h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H16.2c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C14.5,46.6,15.2,45.8,16.2,45.8z"/>
<path class="p5bisj-2" d="M19.6,61.5H61c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H19.6c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C18,62.2,18.7,61.5,19.6,61.5z"/>
<path class="p5bisj-2" d="M30.3,53.7h41.4c0.9,0,1.7,0.7,1.7,1.7V58c0,0.9-0.7,1.7-1.7,1.7H30.3c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C28.6,54.5,29.4,53.7,30.3,53.7z"/>
<path class="p5bisj-3" d="M13.5,43.2H55c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H13.5c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C11.9,43.9,12.6,43.2,13.5,43.2z"/>
<path class="p5bisj-3" d="M17,58.9h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H17c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C15.3,59.6,16.1,58.9,17,58.9z"/>
<path class="p5bisj-3" d="M27.7,51.1h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H27.7c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C26,51.8,26.7,51.1,27.7,51.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

26
main/images/p5bisj.svg.1 Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_8" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p5bisj-0{opacity:0.51;fill:#EEEB61;enable-background:new ;}
.p5bisj-1{fill:#F5B21A;stroke:#FDE901;stroke-miterlimit:10;}
.p5bisj-2{fill:#BCBCBC;}
.p5bisj-3{fill:#F4F4F4;}
</style>
<title>8Plan de travail 1</title>
<circle class="p5bisj-0" cx="42.6" cy="41.1" r="26.1"/>
<circle class="p5bisj-1" cx="42.6" cy="41.1" r="19.9"/>
<path class="p5bisj-2" d="M16.2,45.8h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H16.2c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C14.5,46.6,15.2,45.8,16.2,45.8z"/>
<path class="p5bisj-2" d="M19.6,61.5H61c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H19.6c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C18,62.2,18.7,61.5,19.6,61.5z"/>
<path class="p5bisj-2" d="M30.3,53.7h41.4c0.9,0,1.7,0.7,1.7,1.7V58c0,0.9-0.7,1.7-1.7,1.7H30.3c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C28.6,54.5,29.4,53.7,30.3,53.7z"/>
<path class="p5bisj-3" d="M13.5,43.2H55c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H13.5c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C11.9,43.9,12.6,43.2,13.5,43.2z"/>
<path class="p5bisj-3" d="M17,58.9h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H17c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C15.3,59.6,16.1,58.9,17,58.9z"/>
<path class="p5bisj-3" d="M27.7,51.1h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H27.7c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C26,51.8,26.7,51.1,27.7,51.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
main/images/p5j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

1
main/images/p5j.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_8" data-name="Calque 8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p5j-1{fill:#eeeb61;opacity:0.51;isolation:isolate;}.p5j-2{fill:#f5b21a;stroke:#fde901;stroke-miterlimit:10;}.p5j-3{fill:#bcbcbc;}.p5j-4{fill:#f4f4f4;}</style></defs><title>8Plan de travail 1</title><circle class="p5j-1" cx="42.62" cy="41.09" r="26.14" transform="translate(-1.55 1.67) rotate(-2.2)"/><circle class="p5j-2" cx="42.62" cy="41.09" r="19.94"/><rect class="p5j-3" x="14.49" y="45.82" width="44.75" height="5.97" rx="1.67" ry="1.67"/><rect class="p5j-3" x="17.96" y="61.5" width="44.75" height="5.97" rx="1.67" ry="1.67"/><rect class="p5j-3" x="28.61" y="53.72" width="44.75" height="5.97" rx="1.67" ry="1.67"/><rect class="p5j-4" x="11.87" y="43.2" width="44.75" height="5.97" rx="1.67" ry="1.67"/><rect class="p5j-4" x="15.34" y="58.89" width="44.75" height="5.97" rx="1.67" ry="1.67"/><rect class="p5j-4" x="25.99" y="51.1" width="44.75" height="5.97" rx="1.67" ry="1.67"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
main/images/p5n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

1
main/images/p5n.svg Normal file
View File

@ -0,0 +1 @@
<svg id="Calque_9" data-name="Calque 9" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.23 85.24" width="50" height="50"><defs><style>.p5n-1{fill:#44454e;}.p5n-1,.p5n-3{opacity:0.18;isolation:isolate;}.p5n-2{fill:#fff;}.p5n-3{fill:#636573;}.p5n-4{fill:#fdfcea;}.p5n-5{fill:#bcbcbc;}.p5n-6{fill:#f4f4f4;}</style></defs><title>9Plan de travail 1</title><circle class="p5n-1" cx="43.82" cy="39.74" r="23.98"/><path class="p5n-2" d="M54.66,42.88a.93.93,0,0,0,.93-.93h0V38.74a.93.93,0,1,0-1.86,0h0v3.18a.93.93,0,0,0,.92.94h0Z"/><path class="p5n-2" d="M57.16,40.35a.93.93,0,0,0-.93-.93H53a.93.93,0,1,0,0,1.86h3.2a.94.94,0,0,0,.94-.92h0Z"/><path class="p5n-2" d="M24.51,30.21a.93.93,0,0,0,.93-.93h0V26.1a.93.93,0,1,0-1.86,0h0v3.18a.93.93,0,0,0,.92.94h0Z"/><path class="p5n-2" d="M27,27.74a.93.93,0,0,0-.93-.93H22.88a.93.93,0,0,0,0,1.86h3.19a.93.93,0,0,0,1-.85h0Z"/><path class="p5n-3" d="M42.76,23.74a16,16,0,0,1,5.69-.3,16.3,16.3,0,0,0,7,29.83,16.32,16.32,0,1,1-12.7-29.53Z"/><path class="p5n-2" d="M50.88,27.74a.93.93,0,0,0,.93-.93h0V23.63a.93.93,0,1,0-1.86,0h0v3.11a.93.93,0,0,0,.85,1Z"/><path class="p5n-2" d="M53.39,25.15a.93.93,0,0,0-.93-.93h-3.2a.93.93,0,0,0,0,1.86h3.2a.93.93,0,0,0,1-.85h0Z"/><path class="p5n-4" d="M39.52,24.35a16.15,16.15,0,0,1,5.63-.3,16.15,16.15,0,0,0,7,29.54A16.17,16.17,0,1,1,39.52,24.35Z"/><rect class="p5n-5" x="16.81" y="47.51" width="41.06" height="5.47" rx="1.54" ry="1.54"/><rect class="p5n-5" x="20" y="61.9" width="41.06" height="5.47" rx="1.54" ry="1.54"/><rect class="p5n-5" x="29.77" y="54.76" width="41.06" height="5.47" rx="1.54" ry="1.54"/><rect class="p5n-6" x="14.41" y="45.12" width="41.06" height="5.47" rx="1.54" ry="1.54"/><rect class="p5n-6" x="17.6" y="59.51" width="41.06" height="5.47" rx="1.54" ry="1.54"/><rect class="p5n-6" x="27.37" y="52.36" width="41.06" height="5.47" rx="1.54" ry="1.54"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
main/images/p6j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 B

22
main/images/p6j.svg Normal file
View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p6j-0{fill:#BCBCBC;}
.p6j-1{fill:#F4F4F4;}
</style>
<title>10Plan de travail 1</title>
<path class="p6j-0" d="M16.2,33.7h41.4c0.9,0,1.7,0.7,1.7,1.7V38c0,0.9-0.7,1.7-1.7,1.7H16.2c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C14.5,34.4,15.2,33.7,16.2,33.7z"/>
<path class="p6j-0" d="M19.6,49.4H61c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H19.6c-0.9,0-1.7-0.7-1.7-1.7V51
C18,50.1,18.7,49.4,19.6,49.4z"/>
<path class="p6j-0" d="M30.3,41.6h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H30.3c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C28.6,42.3,29.4,41.6,30.3,41.6z"/>
<path class="p6j-1" d="M13.5,31.1H55c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H13.5c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C11.9,31.8,12.6,31.1,13.5,31.1z"/>
<path class="p6j-1" d="M17,46.8h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H17c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C15.3,47.5,16.1,46.8,17,46.8z"/>
<path class="p6j-1" d="M27.7,39h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H27.7c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C26,39.7,26.7,39,27.7,39z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
main/images/p6n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 B

22
main/images/p6n.svg Normal file
View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p6n-0{fill:#BCBCBC;}
.p6n-1{fill:#F4F4F4;}
</style>
<title>10Plan de travail 1</title>
<path class="p6n-0" d="M16.2,33.7h41.4c0.9,0,1.7,0.7,1.7,1.7V38c0,0.9-0.7,1.7-1.7,1.7H16.2c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C14.5,34.4,15.2,33.7,16.2,33.7z"/>
<path class="p6n-0" d="M19.6,49.4H61c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H19.6c-0.9,0-1.7-0.7-1.7-1.7V51
C18,50.1,18.7,49.4,19.6,49.4z"/>
<path class="p6n-0" d="M30.3,41.6h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H30.3c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C28.6,42.3,29.4,41.6,30.3,41.6z"/>
<path class="p6n-1" d="M13.5,31.1H55c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H13.5c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C11.9,31.8,12.6,31.1,13.5,31.1z"/>
<path class="p6n-1" d="M17,46.8h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H17c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C15.3,47.5,16.1,46.8,17,46.8z"/>
<path class="p6n-1" d="M27.7,39h41.4c0.9,0,1.7,0.7,1.7,1.7v2.6c0,0.9-0.7,1.7-1.7,1.7H27.7c-0.9,0-1.7-0.7-1.7-1.7v-2.6
C26,39.7,26.7,39,27.7,39z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
main/images/p7j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 B

34
main/images/p7j.svg Normal file
View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_11" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p7j-0{fill:#BCBCBC;}
.p7j-1{fill:#F4F4F4;}
</style>
<title>11Plan de travail 1</title>
<path class="p7j-0" d="M16,23.9h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H16c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C14.5,24.6,15.1,23.9,16,23.9z"/>
<path class="p7j-0" d="M19.4,37.7h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H19.4c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C18,38.4,18.6,37.7,19.4,37.7z"/>
<path class="p7j-0" d="M30.1,30.9h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H30.1c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C28.6,31.5,29.3,30.9,30.1,30.9z"/>
<path class="p7j-1" d="M13.3,21.6h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H13.3c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C11.9,22.3,12.5,21.6,13.3,21.6z"/>
<path class="p7j-1" d="M16.8,35.4h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H16.8c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C15.3,36.1,16,35.4,16.8,35.4z"/>
<path class="p7j-1" d="M27.5,28.6h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H27.5c-0.8,0-1.5-0.7-1.5-1.5V30
C26,29.2,26.6,28.6,27.5,28.6z"/>
<path class="p7j-0" d="M16,45.8h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H16c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C14.5,46.4,15.1,45.8,16,45.8z"/>
<path class="p7j-0" d="M19.4,59.5h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H19.4c-0.8,0-1.5-0.7-1.5-1.5V61
C18,60.2,18.6,59.5,19.4,59.5z"/>
<path class="p7j-0" d="M30.1,52.7h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H30.1c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C28.6,53.4,29.3,52.7,30.1,52.7z"/>
<path class="p7j-1" d="M13.3,43.5h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H13.3c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C11.9,44.1,12.5,43.5,13.3,43.5z"/>
<path class="p7j-1" d="M16.8,57.2h41.8c0.8,0,1.5,0.7,1.5,1.5V61c0,0.8-0.7,1.5-1.5,1.5H16.8c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C15.3,57.9,16,57.2,16.8,57.2z"/>
<path class="p7j-1" d="M27.5,50.4h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H27.5c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C26,51.1,26.6,50.4,27.5,50.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
main/images/p7n.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 B

34
main/images/p7n.svg Normal file
View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_11" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" x="0px" y="0px"
viewBox="0 0 85.2 85.2" style="enable-background:new 0 0 85.2 85.2;" xml:space="preserve">
<style type="text/css">
.p7n-0{fill:#BCBCBC;}
.p7n-1{fill:#F4F4F4;}
</style>
<title>11Plan de travail 1</title>
<path class="p7n-0" d="M16,23.9h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H16c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C14.5,24.6,15.1,23.9,16,23.9z"/>
<path class="p7n-0" d="M19.4,37.7h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H19.4c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C18,38.4,18.6,37.7,19.4,37.7z"/>
<path class="p7n-0" d="M30.1,30.9h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H30.1c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C28.6,31.5,29.3,30.9,30.1,30.9z"/>
<path class="p7n-1" d="M13.3,21.6h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H13.3c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C11.9,22.3,12.5,21.6,13.3,21.6z"/>
<path class="p7n-1" d="M16.8,35.4h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H16.8c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C15.3,36.1,16,35.4,16.8,35.4z"/>
<path class="p7n-1" d="M27.5,28.6h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H27.5c-0.8,0-1.5-0.7-1.5-1.5V30
C26,29.2,26.6,28.6,27.5,28.6z"/>
<path class="p7n-0" d="M16,45.8h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H16c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C14.5,46.4,15.1,45.8,16,45.8z"/>
<path class="p7n-0" d="M19.4,59.5h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H19.4c-0.8,0-1.5-0.7-1.5-1.5V61
C18,60.2,18.6,59.5,19.4,59.5z"/>
<path class="p7n-0" d="M30.1,52.7h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H30.1c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C28.6,53.4,29.3,52.7,30.1,52.7z"/>
<path class="p7n-1" d="M13.3,43.5h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H13.3c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C11.9,44.1,12.5,43.5,13.3,43.5z"/>
<path class="p7n-1" d="M16.8,57.2h41.8c0.8,0,1.5,0.7,1.5,1.5V61c0,0.8-0.7,1.5-1.5,1.5H16.8c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C15.3,57.9,16,57.2,16.8,57.2z"/>
<path class="p7n-1" d="M27.5,50.4h41.8c0.8,0,1.5,0.7,1.5,1.5v2.3c0,0.8-0.7,1.5-1.5,1.5H27.5c-0.8,0-1.5-0.7-1.5-1.5v-2.3
C26,51.1,26.6,50.4,27.5,50.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
main/images/p8j.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Some files were not shown because too many files have changed in this diff Show More