jekyll-theme-consulting 0.8.3 → 0.8.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50c3e400dc27b86deeb4e8993c32ff7bbe2078852c5e0c1435039c6ac8f36c9b
4
- data.tar.gz: e4033490173525e24852d62a5ce6dbe6ca368d88cc42d2c4095fafc0e33a2288
3
+ metadata.gz: 493d39a1c95f7a1895b6d28c7ebbc4a723ea875d0878a276fd9ca78092c9f624
4
+ data.tar.gz: b1dfa943e89cf76c4b360534440b3a3af9421d498cf54c138a7a76600a8a50f4
5
5
  SHA512:
6
- metadata.gz: 73358dd58770bd4bbf2c39bc7ed9914423a999e9821e29058a1eb66ee1751098df755b1e9f2f160474330df9a54c1b2d71982fae8d471f3ec65147493165ab14
7
- data.tar.gz: 1544a1805445127fe7437b5e1b8678a620f52185c5957288b4b42e393480272d8cbb0f1e0618c6aaf88a98ad5440ccfad4ee923f99756220ae020ad5d2bf1bd3
6
+ metadata.gz: d14ac6444fb2e8376e44954ba5507fb488996df116749d34c9ca2355e4a7bf74e969ff783313ccbd71971db3797c4b990d29c1b227b677a953d283344084249e
7
+ data.tar.gz: 49eb2aa81f699bdbe8276d6b03e5b1cf9ed8a7deac82a17747ced298af214940bbe42423c4df1d2d2c167339efb76d685a6ff634fd81a9c1fe6c80650a558594
data/README.md CHANGED
@@ -207,18 +207,14 @@ Uses the [simple Jekyll search plugin][simple-jekyll-search].
207
207
 
208
208
  Space image in the banner: the Pillars of Creation, courtesy of NASA.
209
209
 
210
- Repository [Jekyll logo][jekyll-logo] icon licensed under a [Creative Commons Attribution 4.0 International License][cc4-license].
211
-
212
210
  ## License
213
211
 
214
- The theme is available as open source under the terms of the [CC-BY-4.0](LICENSE).
212
+ The theme is available as open source under the terms of the [CC-BY-NC-SA-4.0](LICENSE).
215
213
 
216
214
  [ajlkn]: https://aj.lkn.io/
217
- [cc4-license]: http://choosealicense.com/licenses/cc-by-4.0/
218
215
  [contributor-covenant]: http://contributor-covenant.org
219
216
  [cookieconsent]: https://github.com/osano/cookieconsent
220
217
  [html5up]: https://html5up.net/
221
- [jekyll-logo]: https://github.com/jekyll/brand
222
218
  [recaptcha-documentation]: https://developers.google.com/recaptcha/intro
223
219
  [recaptcha-registering]: https://www.google.com/recaptcha/admin
224
220
  [simple-jekyll-search]: https://github.com/christian-fei/Simple-Jekyll-Search
@@ -37,9 +37,12 @@
37
37
  contactFormElement.focus();
38
38
  }
39
39
 
40
- const {{ include.onsubmit_callback | default: 'processContactRequest()' }} = function() {
40
+ const {{ include.onsubmit_callback | default: 'processContactRequest' }} = function() {
41
41
  if (grecaptcha.getResponse(recaptchaWidget).length > 0) {
42
42
  sendContactMessage();
43
+ hideModalWindow();
44
+ resetContactForm();
45
+ grecaptcha.reset();
43
46
  } else {
44
47
  showModalWindow();
45
48
  }
@@ -51,31 +54,25 @@
51
54
  };
52
55
 
53
56
  const sendContactMessage = function() {
54
- const recaptchaToken = grecaptcha.getResponse(recaptchaWidget);
55
-
56
57
  const data = {
57
58
  name: encodeURIComponent(nameInputElement.value),
58
59
  email: encodeURIComponent(emailInputElement.value),
59
60
  message: encodeURIComponent(messageInputElement),
60
- token: recaptchaToken
61
+ token: grecaptcha.getResponse(recaptchaWidget)
61
62
  };
62
-
63
- hideModalWindow();
64
-
65
- if (recaptchaToken.length > 0) {
66
- fetch("{{ '/contact' | absolute_url }}", {
67
- method: 'POST',
68
- mode: 'same-origin',
69
- headers: {'Content-Type': 'application/json',},
70
- body: JSON.stringify(data),
71
- })
72
- .then((response) => {
73
- alert('Message sent!');
74
- })
75
- .catch((error) => {
76
- console.error('Error:', error);
77
- });
78
- }
63
+
64
+ fetch("{{ '/contact' | absolute_url }}", {
65
+ method: 'POST',
66
+ mode: 'same-origin',
67
+ headers: {'Content-Type': 'application/json',},
68
+ body: JSON.stringify(data),
69
+ })
70
+ .then((response) => {
71
+ alert('Message sent!');
72
+ })
73
+ .catch((error) => {
74
+ console.error('Error:', error);
75
+ });
79
76
  };
80
77
 
81
78
  var onRecaptchaLoadCallback = function() {
@@ -83,7 +80,7 @@
83
80
  'sitekey' : '{{ site.recaptcha.sitekey }}',
84
81
  'theme' : 'dark',
85
82
  'size' : 'compact',
86
- 'callback' : sendContactMessage
83
+ 'callback' : processContactRequest
87
84
  });
88
85
  };
89
86
 
@@ -24,6 +24,6 @@
24
24
  <noscript><link rel="stylesheet" href="{{ 'assets/css/noscript.css' | absolute_url }}" /></noscript>
25
25
  <noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700&display=swap" /></noscript>
26
26
  <noscript><link rel="stylesheet" href="{{ 'assets/css/fontawesome-all.min.css' | absolute_url }}" /></noscript>
27
- <noscript><link rel="stylesheet" href="{{ 'assets/css/cookieconsent.css' | absolute_url }}" /></noscript>
27
+ <noscript><link rel="stylesheet" href="{{ 'assets/css/cookieconsent.min.css' | absolute_url }}" /></noscript>
28
28
  {% seo %}
29
29
  </head>
@@ -0,0 +1,16 @@
1
+ <article>
2
+ {%- if include.image-src -%}
3
+ <a href="{{ include.target-url | absolute_url }}" class="image" >
4
+ <img class="lazy-loading" src="{{ include.image-src | absolute_url }}" data-src="{{ include.image-placeholder-src | default: image-src | absolute_url }}" alt="{{ include.image-alt-text }}">
5
+ </a>
6
+ {%- endif -%}
7
+ <h3>{{ include.title }}</h3>
8
+ <p>{{ include.content }}</p>
9
+ <ul class="actions">
10
+ <li>
11
+ <a href="{{ include.target-url | absolute_url }}" class="button">
12
+ {% if page.lang=="en" %}More{% elsif page.lang=="fr" %}Plus{% endif %}
13
+ </a>
14
+ </li>
15
+ </ul>
16
+ </article>
@@ -0,0 +1,6 @@
1
+ {%- assign x12 = include.x1 | plus: include.x2 | times: 0.5 | round -%}
2
+ {%- assign y12 = include.y1 | plus: include.y2 | times: 0.5 | round -%}
3
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
4
+ <path d="M0,100L0,{{ include.ys }}Q{{ include.x1 }},{{ include.y1 }} {{ x12 }},{{ y12 }}Q{{ include.x2 }},{{ include.y2 }} 100,{{include.ye}}L100,100L0,100Z"></path>
5
+ <circle cx="{{ include.cx }}" cy="{{ include.cy }}" r="{{ include.r }}"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ {%- assign x12 = include.x1 | plus: include.x2 | times: 0.5 | round -%}
2
+ {%- assign y12 = include.y1 | plus: include.y2 | times: 0.5 | round -%}
3
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
4
+ <path d="M0,0L0,{{ include.ys }}Q{{ include.x1 }},{{ include.y1 }} {{ x12 }},{{ y12 }}Q{{ include.x2 }},{{ include.y2 }} 100,{{include.ye}}L100,0L0,0Z"></path>
5
+ <circle cx="{{ include.cx }}" cy="{{ include.cy }}" r="{{ include.r }}"/>
6
+ </svg>
@@ -2,26 +2,59 @@
2
2
  ---
3
3
  {%- assign lang = page.lang | default: site.lang | default: 'en' -%}
4
4
  {%- assign menu = site.data.menus[page.menu][lang] -%}
5
+ {%- assign header = page.header | default: site.header -%}
5
6
  {%- assign title = page.title | default: site.title -%}
6
- {%- assign subtitle = page.subtitle | default: site.subtitle -%}
7
7
  {%- assign description = page.description | default: site.description -%}
8
+ {%- assign stylesheets = page.stylesheets | default: site.stylesheets -%}
9
+ {%- assign scripts = page.scripts | default: site.scripts -%}
8
10
  <!DOCTYPE html>
11
+ <!--
12
+ Consulting template by MOODULE
13
+ https://github.com/moodule/jekyll-theme-consulting
14
+ Free for personal and commercial use under the CCA 4.0 license
15
+ -->
9
16
  <html lang="{{ lang }}">
10
17
 
11
- {% include head.html title=title subtitle=subtitle %}
18
+ {% include head.html title=title subtitle=subtitle %}
12
19
 
13
- <body>
20
+ <body>
14
21
 
15
- {% include navigation.html menu=menu %}
22
+ <style type="text/css">
23
+ .upper-half svg {
24
+ fill: rgba(10,100,130,0.4);
25
+ }
26
+ .lower-half svg {
27
+ fill: rgba(130,0,130,0.4);
28
+ }
29
+ </style>
16
30
 
17
- <main class="page-content" aria-label="Content">
18
- <div class="wrapper">
19
- {{ content }}
20
- </div>
21
- </main>
31
+ <!-- Wrapper -->
32
+ <div id="wrapper">
22
33
 
23
- {% include footer.html %}
34
+ <div class="upper-half" style="position: fixed; z-index: 2; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
35
+ {% include waves/top.html ys=80 ye=20 x1=40 y1=80 x2=60 y2=20 cx=50 cy=50 r=4 %}
36
+ </div>
37
+
38
+ <div class="upper-half" style="position: fixed; z-index: 4; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
39
+ {% include waves/top.html ys=70 ye=30 x1=20 y1=90 x2=40 y2=20 cx=10 cy=76 r=2%}
40
+ </div>
41
+
42
+ <div class="upper-half" style="position: fixed; z-index: 4; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
43
+ {% include waves/top.html ys=65 ye=35 x1=15 y1=85 x2=35 y2=20 cx=10 cy=76 r=2%}
44
+ </div>
45
+
46
+ <div class="lower-half" style="position: fixed; z-index: 3; bottom:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
47
+ {% include waves/bottom.html ys=80 ye=20 x1=40 y1=80 x2=60 y2=20 cx=50 cy=50 r=4 %}
48
+ </div>
49
+
50
+ <div class="upper-half" style="position: fixed; z-index: 1; bottom:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
51
+ {% include waves/bottom.html ys=60 ye=80 x1=20 y1=80 x2=60 y2=100 cx=80 cy=88 r=2 %}
52
+ </div>
24
53
 
25
- </body>
54
+ </div>
55
+
56
+ {% include footer.html %}
57
+
58
+ </body>
26
59
 
27
60
  </html>
@@ -5,6 +5,7 @@ body, input, select, textarea {
5
5
  font-family: _font(family);
6
6
  font-size: 13pt;
7
7
  font-weight: _font(weight);
8
+ text-align: justify;
8
9
  line-height: 1.65;
9
10
  }
10
11
 
@@ -37,7 +37,7 @@
37
37
  height: 20%;
38
38
  text-align: center;
39
39
  font-size: 3rem;
40
- color: _palette(accent);
40
+ color: _palette(accent) !important;
41
41
  }
42
42
 
43
43
  .fact-intro, .fact-outro {
@@ -50,7 +50,7 @@
50
50
  margin: 0;
51
51
  display: table-cell;
52
52
  text-align: center;
53
- font-size: 1.5rem;
53
+ font-size: 1rem;
54
54
  }
55
55
  }
56
56
 
@@ -74,10 +74,10 @@
74
74
  h3 {
75
75
  margin: 0;
76
76
  display: table-cell;
77
- vertical-align: baseline;
77
+ vertical-align: middle;
78
78
  text-align: center;
79
79
  text-transform: uppercase;
80
- font-size: 3rem;
80
+ font-size: 2rem;
81
81
  }
82
82
  }
83
83
  }
@@ -105,7 +105,7 @@
105
105
  }
106
106
 
107
107
  article:hover {
108
- background-color: _palette(accent);
108
+ background-color: _palette(accent) !important;
109
109
 
110
110
  .on {
111
111
  display: none;
@@ -113,14 +113,14 @@
113
113
 
114
114
  .off.icon {
115
115
  display: block;
116
- color: _palette(accent-cp);
116
+ color: _palette(accent-cp) !important;
117
117
  }
118
118
 
119
119
  .off.fact-intro {
120
120
  display: table;
121
121
 
122
122
  p {
123
- color: #ffffff;
123
+ color: #ffffff !important;
124
124
  }
125
125
  }
126
126
 
@@ -128,7 +128,7 @@
128
128
  display: table;
129
129
 
130
130
  h3 {
131
- color: #ffffff;
131
+ color: #ffffff !important;
132
132
  }
133
133
  }
134
134
 
@@ -136,7 +136,7 @@
136
136
  display: table;
137
137
 
138
138
  p {
139
- color: #ffffff;
139
+ color: #ffffff !important;
140
140
  }
141
141
  }
142
142
  }
@@ -35,6 +35,10 @@
35
35
  background-image: url('images/ieam.svg');
36
36
  }
37
37
 
38
+ .ifag {
39
+ background-image: url('images/ifag.svg');
40
+ }
41
+
38
42
  .ifg {
39
43
  background-image: url('images/ifg.svg');
40
44
  }
@@ -121,7 +121,7 @@
121
121
  width: inherit;
122
122
  height: inherit;
123
123
  margin-left: (-0.875em / 2);
124
- font-size: 1.5rem;
124
+ font-size: 2rem;
125
125
  line-height: inherit;
126
126
  text-indent: 0;
127
127
  }
@@ -1,41 +1 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- id="svg5416"
9
- version="1.1"
10
- viewBox="0 0 740.83336 740.83336"
11
- height="2800"
12
- width="2800">
13
- <defs
14
- id="defs5410" />
15
- <metadata
16
- id="metadata5413">
17
- <rdf:RDF>
18
- <cc:Work
19
- rdf:about="">
20
- <dc:format>image/svg+xml</dc:format>
21
- <dc:type
22
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
23
- <dc:title></dc:title>
24
- </cc:Work>
25
- </rdf:RDF>
26
- </metadata>
27
- <g
28
- transform="translate(0,443.83364)"
29
- id="layer1">
30
- <text
31
- id="text5983"
32
- y="53.935825"
33
- x="23.33569"
34
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:1000;font-family:'Century Schoolbook L';-inkscape-font-specification:'Century Schoolbook L';letter-spacing:0px;word-spacing:0px;fill:#000066;fill-opacity:1;stroke:none;stroke-width:0.26458332;"
35
- xml:space="preserve"><tspan
36
- style="font-weight:bold;font-size:352.77780151px;stroke-width:0.26458332;fill:#000066;fill-opacity:1;"
37
- y="53.935825"
38
- x="23.33569"
39
- id="tspan5981">CIE</tspan></text>
40
- </g>
41
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="2800" height="2800" viewBox="0 0 740.833 740.833"><text x="23.336" y="53.936" fill="#006" stroke-width=".265" font-family="Century Schoolbook L" font-size="2.822" font-weight="400" letter-spacing="0" style="line-height:1000;-inkscape-font-specification:'Century Schoolbook L'" transform="translate(0 443.834)" word-spacing="0"><tspan x="23.336" y="53.936" font-size="352.778" font-weight="700">CIE</tspan></text></svg>
@@ -1,100 +1 @@
1
-
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- version="1.1"
9
- id="svg4587"
10
- width="2800"
11
- height="2800"
12
- viewBox="0 0 2800 2800">
13
- <metadata
14
- id="metadata4593">
15
- <rdf:RDF>
16
- <cc:Work
17
- rdf:about="">
18
- <dc:format>image/svg+xml</dc:format>
19
- <dc:type
20
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
21
- <dc:title></dc:title>
22
- </cc:Work>
23
- </rdf:RDF>
24
- </metadata>
25
- <defs
26
- id="defs4591" />
27
- <g
28
- id="layer1"
29
- style="display:inline;fill:#0080ff;fill-opacity:1"
30
- transform="translate(0,1584)">
31
- <path
32
- id="path4642"
33
- style="fill:#0080ff;stroke-width:2.8148365;fill-opacity:1"
34
- d="m 1576.7814,46.54443 2.067,-54.99207 -20.8182,-11.9054 c -11.4501,-6.54799 -26.2536,-15.00174 -32.8966,-18.78612 l -12.0783,-6.88072 0.7568,70.72746 0.7568,70.72749 28.3038,14.86073 28.3038,14.86075 1.7689,-11.81003 c 0.9729,-6.49548 2.6991,-36.55642 3.836,-66.80209 z m 8.547,84.38558 c -0.9621,-1.53967 -3.2661,-2.7801 -5.1202,-2.75652 -2.0254,0.0252 -1.6763,1.12598 0.8747,2.75652 5.4374,3.47551 6.4172,3.47551 4.2455,0 z m 38.2101,21.05221 c 0,-0.73854 -5.0946,-3.91343 -11.3215,-7.05533 -6.2268,-3.14191 -11.3215,-5.08717 -11.3215,-4.32283 0,0.76435 4.7763,3.88355 10.6139,6.93159 12.0093,6.27051 12.0291,6.27784 12.0291,4.44657 z m -205.9529,399.55429 -0.7502,-98.67806 h 9.0904 c 6.3136,0 43.2104,17.56527 120.7847,57.50128 61.4319,31.62574 112.6467,56.50521 113.8109,55.28773 1.1643,-1.21745 8.6543,-14.37986 16.6446,-29.24973 l 14.5277,-27.03616 -20.6332,-11.08113 c -11.3483,-6.0946 -42.2856,-22.13312 -68.7497,-35.64117 -99.7673,-50.92406 -178.4363,-91.79253 -181.852,-94.47186 -2.709,-2.12506 -3.5379,-25.64867 -3.5379,-100.41064 v -97.63549 h 8.834 c 5.2192,0 21.4449,6.48047 39.652,15.83676 16.9498,8.71021 31.2619,15.32375 31.8045,14.69674 0.5425,-0.62701 7.5227,-13.73722 15.5113,-29.1338 12.6978,-24.47294 13.9735,-28.39974 10.1427,-31.22151 -2.4101,-1.77524 -27.2336,-14.98718 -55.1634,-29.35982 l -50.7811,-26.1321 V -23.702 -132.21152 l 7.7836,-0.002 c 4.9185,-0.002 40.9588,18.8024 97.916,51.08864 l 90.1325,51.09187 -1.6244,25.19441 c -0.8935,13.85691 -2.4312,42.3277 -3.4172,63.2684 l -1.7926,38.07399 10.9326,1.78634 c 10.3724,1.69474 60.0655,2.63282 60.82,1.14809 0.1955,-0.38492 1.1508,-18.96579 2.1228,-41.29082 l 1.7672,-40.59097 h 7.2776 c 4.2291,0 41.4227,19.34832 88.7911,46.18973 l 81.5133,46.18973 -1.841,47.58942 c -2.4992,64.60992 -9.7813,225.55278 -11.1593,246.63644 l -1.1167,17.08745 35.6369,1.66538 c 19.6003,0.916 35.8495,1.4148 36.1092,1.1085 0.2602,-0.30628 2.545,-49.0561 5.0785,-108.33292 2.5335,-59.27684 5.392,-118.79862 6.3526,-132.27061 1.7254,-24.20253 1.8357,-24.49455 9.2535,-24.49455 4.5338,0 39.8321,18.35386 89.115,46.33668 44.8843,25.48516 81.9196,45.95561 82.3007,45.48987 0.3813,-0.46571 8.0677,-13.32347 17.0814,-28.57276 14.0226,-23.72354 15.7704,-28.16877 12.1082,-30.79317 -2.3542,-1.68734 -40.0683,-23.2231 -83.8094,-47.85762 -72.7358,-40.96423 -79.5384,-45.42951 -79.6381,-52.27628 -0.1,-6.82707 9.567,-13.59201 109.7846,-76.83005 l 109.8938,-69.3438 -18.435,-28.33466 -18.4351,-28.33467 -127.858,80.67049 c -70.3219,44.36787 -130.5468,80.66944 -133.8332,80.66944 -3.2864,0 -43.0104,-21.01539 -88.2756,-46.70086 -98.4977,-55.89193 -95.3648,-51.19623 -52.3052,-78.39789 15.5672,-9.83407 30.105,-18.94327 32.3064,-20.24272 3.5946,-2.12193 -7.0788,-21.60365 -31.1375,-56.83373 -0.9137,-1.33809 -24.7368,12.20608 -52.9401,30.09819 -31.3952,19.91696 -53.4638,32.17772 -56.9136,31.61975 -3.0992,-0.5012 -45.8196,-23.58626 -94.9343,-51.30009 -86.6129,-48.87277 -89.2787,-50.6326 -88.6049,-58.49303 0.6431,-7.50447 7.2929,-11.90166 89.8518,-59.41713 49.0364,-28.22211 91.5948,-51.34426 94.5743,-51.38255 2.9796,-0.0384 28.3265,14.49952 56.3263,32.30622 27.9999,17.8067 51.6723,31.25574 52.6055,29.88669 24.3136,-35.67204 34.7747,-54.76352 31.1725,-56.88993 -2.2014,-1.29944 -16.7392,-10.41889 -32.3064,-20.26549 -43.0384,-27.22284 -45.5458,-23.33267 50.9469,-79.04479 51.2737,-29.60401 82.1422,-45.80547 87.4416,-45.89415 6.0219,-0.10078 42.0588,21.24331 136.0826,80.59954 l 127.8915,80.73658 18.3767,-28.31114 18.3766,-28.31114 -111.2243,-69.92157 c -97.6773,-61.40523 -111.2299,-70.77396 -111.2705,-76.92001 -0.041,-6.24302 9.1219,-12.24205 84.8899,-55.57685 l 84.9364,-48.57838 -5.3325,-8.80885 c -2.933,-4.84486 -10.7604,-17.97123 -17.3944,-29.1697 l -12.0618,-20.36085 -10.2521,5.98526 c -88.519,51.67813 -156.3267,89.32432 -160.8895,89.32432 -6.992,0 -7.2352,-2.75993 -13.8173,-156.76515 -2.5335,-59.27684 -4.7776,-107.97636 -4.9872,-108.22112 -0.2094,-0.24495 -16.5096,0.24858 -36.2224,1.09659 l -35.8414,1.54171 1.1791,14.29994 c 2.2991,27.88136 9.8569,210.90128 10.4568,253.21956 l 0.6087,42.96308 -79.2505,45.79074 c -57.1551,33.02388 -81.8154,45.82594 -88.4495,45.91713 l -9.1987,0.12639 v -31.84294 c 0,-17.51358 -0.7961,-35.77953 -1.7691,-40.59096 l -1.7689,-8.74807 -24.412,0.0309 c -13.4267,0.0168 -29.3316,0.83462 -35.3447,1.8171 l -10.9326,1.78634 1.7926,38.07399 c 0.986,20.94071 2.4887,49.41149 3.3395,63.26841 l 1.5467,25.1944 -91.8651,52.48834 c -50.5258,28.8686 -94.5662,52.48835 -97.8675,52.48835 h -6.0025 l 0.7363,-124.95927 0.7364,-124.95923 53.7772,-27.91137 c 29.5775,-15.35123 54.1762,-28.2738 54.6637,-28.71682 1.0186,-0.9256 -20.7755,-44.35103 -26.893,-53.58536 l -4.0768,-6.15382 -31.9165,16.57995 c -17.554,9.11899 -35.1056,16.57998 -39.0036,16.57998 h -7.0872 l -2.0033,-95.08827 c -1.2664,-60.11488 -0.9924,-96.92337 0.7446,-100.07776 1.5115,-2.74422 64.0031,-36.43829 138.8703,-74.87573 74.8672,-38.43737 135.7759,-70.56033 135.3527,-71.38416 -0.423,-0.82391 -7.4873,-14.47421 -15.6982,-30.33401 l -14.929,-28.83613 -20.4222,10.96999 c -87.5575,47.03302 -208.9049,106.88883 -216.6989,106.88883 h -8.9258 v -85.38104 -85.38108 h -35.3797 -35.3798 v 85.38108 85.38104 h -6.4428 c -5.4193,0 -69.5516,-31.94763 -207.8766,-103.55417 l -26.0992,-13.51072 -15.9824,29.46977 c -12.6134,23.25755 -15.1664,29.96902 -12.111,31.83832 2.1293,1.3027 63.4064,32.96176 136.1714,70.35349 l 132.2999,67.98495 0.016,100.07777 0.016,100.07776 -6.3684,-0.0985 c -3.5025,-0.0544 -20.9761,-7.54659 -38.83,-16.64976 -17.8538,-9.10314 -32.6732,-16.30216 -32.932,-15.99781 -0.2585,0.30432 -7.0869,13.64366 -15.1738,29.64297 -11.5175,22.78619 -13.8879,29.61632 -10.939,31.52001 2.0706,1.33664 26.3724,14.06186 54.0039,28.27821 l 50.2393,25.84795 v 123.89179 123.89183 h -7.5648 c -4.6567,0 -45.7314,-21.63728 -106.8468,-56.28469 -54.6052,-30.95654 -100.4299,-57.34909 -101.8327,-58.65004 -1.513,-1.40324 -1.3514,-28.32655 0.3976,-66.18813 1.6212,-35.1025 2.769,-63.99427 2.5505,-64.20397 -0.2185,-0.20975 -16.6365,-0.89682 -36.4846,-1.52687 l -36.0872,-1.14556 -0.016,23.92189 c -0.01,13.15701 -0.8321,32.42496 -1.8245,42.81764 -1.6044,16.80238 -2.4645,18.89026 -7.7634,18.84571 -3.2775,-0.0279 -42.2587,-20.71162 -86.625,-45.96456 l -80.66582,-45.91443 -0.83929,-21.91326 c -0.46145,-12.05226 1.76948,-79.2337 4.95786,-149.29204 3.18844,-70.05837 5.79501,-130.70382 5.79247,-134.76776 l -0.004,-7.389 -34.11449,-2.02727 c -18.76294,-1.11503 -34.70938,-1.43892 -35.4365,-0.7198 -1.19569,1.18257 -12.40133,229.71937 -12.49199,254.77224 -0.0327,9.81078 -0.59891,10.49766 -8.60719,10.49766 -7.21685,0 -78.94208,-38.12408 -137.40523,-73.03494 l -8.70103,-5.19574 -16.06483,27.46826 c -8.83563,15.1075 -16.04561,28.61533 -16.02213,30.01736 0.0246,1.40201 31.27737,20.18519 69.45298,41.7404 67.70582,38.2289 69.39021,39.3951 68.59404,47.49104 -0.75109,7.63787 -9.43371,13.7366 -108.87492,76.4747 l -108.05861,68.17492 17.48642,27.69689 c 11.64255,18.44067 18.81817,27.23696 21.47129,26.32072 2.19157,-0.7569 59.79515,-36.61156 128.00784,-79.67702 70.02897,-44.21219 126.82467,-78.28344 130.45822,-78.26087 3.53945,0.0224 42.73493,20.64539 87.10114,45.82983 99.80177,56.65236 97.24687,52.56792 50.7266,81.09528 -23.41185,14.35668 -30.86222,20.29689 -29.58512,23.58838 0.93878,2.41966 8.77647,15.42913 17.41712,28.90995 l 15.71031,24.51053 14.61363,-9.22426 c 73.58453,-46.44705 87.51323,-54.78081 91.55863,-54.78081 2.5513,0 9.8453,2.96453 16.209,6.58789 6.3635,3.62336 53.2829,30.22079 104.2651,59.10541 85.1839,48.26206 92.6862,53.1155 92.5866,59.89734 -0.099,6.731 -9.0511,12.48674 -101.8256,65.46689 -58.2766,33.28042 -104.7388,58.08699 -108.7942,58.08699 -4.009,0 -22.7557,-9.87748 -43.2314,-22.77828 -19.8842,-12.528 -42.6685,-26.89072 -50.63182,-31.91711 l -14.47879,-9.13887 -15.7981,24.30378 c -8.68892,13.36708 -16.57562,26.30785 -17.52602,28.75725 -1.3014,3.35446 6.34091,9.55067 30.96996,25.10947 27.44937,17.34043 32.69527,21.77941 32.68177,27.65449 -0.016,6.2167 -9.1977,12.26925 -82.21838,54.18552 C 873.26066,52.47097 845.77427,66.77085 841.49067,65.95284 838.0719,65.29996 779.181,29.32554 710.62206,-13.99028 642.06311,-57.30611 584.11099,-93.39037 581.83973,-94.17749 c -2.8431,-0.98527 -9.58402,7.20799 -21.63763,26.29943 l -17.50802,27.73053 25.99918,16.40691 c 205.65057,129.77685 197.57389,124.37215 196.67692,131.61145 -0.79773,6.43937 -33.14911,26.52475 -140.15228,87.01398 -2.41584,1.36568 1.60323,10.46425 13.50859,30.5812 9.32113,15.7504 17.38546,28.6371 17.92063,28.6371 0.53509,0 31.70101,-17.63609 69.25759,-39.19128 38.36305,-22.01813 71.395,-39.1913 75.38298,-39.1913 6.11378,0 7.1037,1.26204 7.13643,9.09797 0.10145,24.28144 11.34007,252.23328 12.49199,253.37256 0.72736,0.71909 16.67356,0.39522 35.4365,-0.7198 l 34.11457,-2.02729 -0.0245,-8.78862 c -0.0164,-4.83377 -2.55043,-63.58647 -5.63809,-130.56157 -3.08765,-66.97512 -5.61002,-132.48057 -5.60527,-145.56766 l 0.008,-23.7947 81.84285,-46.88959 c 45.01393,-25.78926 84.29913,-46.88957 87.30073,-46.88957 4.6726,0 5.7171,2.71786 7.2619,18.8958 0.9923,10.39269 1.8134,29.03078 1.8244,41.41798 l 0.016,22.5222 36.0874,-1.14557 c 19.848,-0.63005 36.2407,-1.31714 36.4282,-1.52686 0.1874,-0.20975 -0.9311,-28.50052 -2.4856,-62.86846 -1.6227,-35.87252 -1.7678,-63.50349 -0.3412,-64.87331 1.3671,-1.31235 47.701,-28.3028 102.9642,-59.97877 64.2164,-36.80787 103.2875,-57.59514 108.262,-57.59951 l 7.7838,-0.007 -0.01,108.47591 -0.01,108.4759 -53.7188,27.48196 c -29.5453,15.11507 -54.4715,28.68677 -55.3917,30.15931 -1.2331,1.97351 23.2249,51.66815 28.5474,58.00321 0.4017,0.47852 16.1302,-6.76487 34.9516,-16.09644 18.8205,-9.33151 36.7868,-16.96641 39.9242,-16.96641 5.6127,0 5.704,1.60749 5.6913,100.07777 l -0.016,100.07774 -26.1681,13.24099 c -43.398,21.95926 -241.0214,123.85701 -244.7386,126.19101 -2.5291,1.58811 0.5032,10.05812 11.2592,31.44851 8.0964,16.10124 15.4274,29.27502 16.2911,29.27502 0.8636,0 52.9797,-26.45412 115.8134,-58.78693 62.8338,-32.33282 117.2415,-58.78694 120.906,-58.78694 h 6.6629 V 550.92061 651.7816 l 36.0874,-0.78335 36.0885,-0.78354 z m -62.9332,147.43903 c -16.3455,-9.04646 -31.9227,-16.47506 -34.616,-16.50803 -4.4584,-0.0546 -4.9651,-5.27193 -5.6606,-58.28422 l -0.7642,-58.22413 -75.005,38.56457 c -41.2529,21.21049 -77.5526,38.56955 -80.666,38.57543 -3.1135,0 -19.5606,-7.52357 -36.5494,-16.73236 -16.9886,-9.20876 -32.294,-16.74318 -34.0117,-16.74318 -4.4294,0 -58.2212,-103.4703 -58.2212,-111.99033 0,-6.46992 11.6933,-13.05826 142.2266,-80.135 l 142.2267,-73.0855 0.7912,-33.54603 c 0.5825,-24.68391 -0.1653,-34.29594 -2.8304,-36.38467 -1.9919,-1.56123 -17.6321,-10.05138 -34.7559,-18.86699 l -31.1341,-16.02836 -15.5672,-29.83383 -15.567,-29.83379 -59.4381,0.75492 -59.4381,0.75497 -29.7017,-16.5844 c -24.5577,-13.71212 -30.6852,-16.07684 -35.3798,-13.65358 -3.1229,1.61194 -17.3753,9.70453 -31.67205,17.9835 -25.17994,14.58119 -25.95901,15.33595 -24.87165,24.09613 2.09774,16.8996 13.77785,304.20105 12.42171,305.54231 -0.74209,0.73364 -29.08995,2.63347 -62.99605,4.22181 l -61.64735,2.88793 -36.62466,-18.79721 c -36.25043,-18.60518 -36.62631,-18.89773 -36.78863,-28.63168 -0.53918,-32.32566 -7.49831,-159.71447 -8.79546,-160.99741 -0.85655,-0.8472 -14.93042,6.04879 -31.27514,15.3245 -16.34481,9.27573 -32.3991,16.86491 -35.67631,16.86491 -3.27723,0 -19.9611,-7.55832 -37.07532,-16.79626 -17.11424,-9.23795 -32.33929,-16.79628 -33.83345,-16.79628 -4.3384,0 -62.63432,-101.92637 -62.5732,-109.40486 0.0491,-5.86936 8.54336,-11.5995 63.90094,-43.10131 59.90995,-34.0923 63.51413,-36.5975 58.4675,-40.63927 -2.95806,-2.369 -49.48942,-31.99937 -103.40316,-65.84529 -89.23652,-56.02106 -98.03557,-62.22325 -98.14774,-69.18131 -0.17591,-10.89356 62.12501,-106.81065 70.15439,-108.0088 3.52391,-0.52583 17.47488,6.48714 34.80536,17.4961 15.90823,10.10556 31.11569,18.37374 33.79434,18.37374 2.67871,0 50.98775,29.10876 107.3535,64.68614 79.00974,49.87004 103.6145,64.13643 107.42248,62.28616 2.71661,-1.32 26.69759,-14.89728 53.29102,-30.17176 l 48.35166,-27.77173 -26.69088,-16.82465 c -22.58254,-14.2349 -26.66657,-17.93172 -26.53264,-24.01675 0.0925,-4.20963 13.38979,-27.50717 32.06543,-56.18121 26.35215,-40.46032 33.17554,-49.13876 39.19319,-49.84875 5.04769,-0.59555 15.49881,4.34968 34.01777,16.0964 14.7022,9.32586 28.8459,16.95608 31.4304,16.95608 2.5845,0 16.3572,7.24339 30.6063,16.09643 14.2489,8.85304 26.685,15.87728 27.6356,15.60942 2.851,-0.80332 140.1371,-79.62101 142.1918,-81.6342 1.5936,-1.5614 -78.0567,-48.5432 -87.0216,-51.3298 -1.6264,-0.50551 -25.8018,13.48662 -53.7231,31.09365 -27.9213,17.60702 -53.4274,32.51593 -56.6802,33.13093 -3.524,0.66628 -17.424,-5.18445 -34.3937,-14.47684 -15.66393,-8.57731 -31.53386,-16.74353 -35.26674,-18.14719 -8.36116,-3.14407 -70.21346,-98.19673 -70.21346,-107.90171 0,-5.16023 5.06371,-9.69019 24.05821,-21.52241 13.23204,-8.24257 24.05822,-15.72483 24.05822,-16.62723 0,-0.90243 -10.7289,-7.59701 -23.84198,-14.87685 l -23.84205,-13.23613 -128.75411,81.31999 c -84.49515,53.36648 -131.29841,81.32 -136.15586,81.32 -4.07103,0 -20.12915,-6.84128 -35.68474,-15.20286 -15.55568,-8.36155 -30.31854,-15.60494 -32.80646,-16.09644 -6.9228,-1.3675 -68.97466,-98.79146 -68.80383,-108.02472 0.12846,-6.95764 9.28489,-13.38794 102.06233,-71.67814 l 101.92087,-64.03483 -7.95215,-4.7747 c -4.37367,-2.62609 -33.10723,-19.01036 -63.85219,-36.40951 -45.79518,-25.91628 -55.90004,-32.73894 -55.90004,-37.74308 0,-3.35956 13.66158,-29.64875 30.35903,-58.42039 26.26223,-45.25288 31.28538,-52.31205 37.22439,-52.31205 3.77599,0 16.54314,5.49664 28.37143,12.21474 11.82828,6.71813 34.24269,18.88007 49.80974,27.02661 15.56712,8.14652 34.00558,18.32088 40.97436,22.60972 6.9687,4.28882 13.10792,7.36508 13.64277,6.83616 0.53509,-0.52894 3.50533,-55.56619 6.60125,-122.305 3.096,-66.73885 6.51003,-122.22597 7.58675,-123.30458 1.07681,-1.07877 31.15071,-0.63843 66.83103,0.97838 47.0847,2.13357 65.91089,3.96581 68.65712,6.68201 2.08113,2.0583 16.50386,10.43607 32.05054,18.61724 l 28.2667,14.8749 0.0164,15.39657 c 0.0164,14.1497 -9.52633,230.94251 -12.33441,280.22984 l -1.21287,21.28741 24.96958,14.40466 c 13.73327,7.92256 25.58727,14.40466 26.34227,14.40466 0.7552,0 1.8039,-13.75517 2.3308,-30.56709 0.5269,-16.8119 1.8952,-31.49078 3.0407,-32.61974 1.1455,-1.12896 30.4399,-0.76489 65.0987,0.8091 l 63.0161,2.86174 34.8138,18.95274 34.8139,18.95274 -1.6395,25.502 c -0.9017,14.02609 -1.9207,44.31158 -2.2644,67.30107 l -0.6251,41.79911 42.4556,24.5652 c 23.3507,13.51086 43.411,24.61964 44.5786,24.68613 1.1674,0.0666 2.1227,-38.10031 2.1227,-84.81518 v -84.93612 l -13.4443,-7.06439 c -99.6345,-52.35356 -105.4314,-55.865 -105.4314,-63.86454 0,-4.37266 11.9918,-30.51183 27.4536,-59.84218 24.0018,-45.53045 28.3064,-52.07826 34.2365,-52.07826 3.7305,0 17.2975,5.66874 30.1487,12.5972 12.8512,6.92847 24.1919,12.59721 25.2016,12.59721 1.0095,0 1.8357,-28.06294 1.8357,-62.36209 v -62.36208 l -101.1854,-52.05535 c -165.1195,-84.94591 -181.852,-94.35721 -181.852,-102.28343 0,-3.73401 12.4182,-30.62438 27.5962,-59.75623 23.465,-45.03783 28.5581,-52.97653 34.022,-53.03033 3.5342,-0.035 54.0237,24.5012 112.199,54.52441 58.1752,30.02334 106.5489,54.58786 107.497,54.58786 0.9481,0 1.7239,-34.01239 1.7239,-75.58317 V -1084 h 66.2781 c 36.453,0 66.7025,1.0598 67.2215,2.355 0.5187,1.2951 14.9538,9.9923 32.0776,19.3268 l 31.1342,16.9718 0.783,40.8599 c 0.4312,22.47278 1.4694,40.85978 2.3081,40.85978 0.8387,0 35.7473,-17.63607 77.5745,-39.19128 41.8273,-21.5552 77.9797,-39.1913 80.3386,-39.1913 2.3589,0 9.766,3.5854 16.46,7.9675 6.6941,4.3821 22.3839,13.2874 34.8664,19.7895 l 22.6953,11.8218 26.3202,50.15998 c 18.3929,35.05238 26.0494,52.46697 25.4212,57.82009 -0.8308,7.07809 -11.7001,13.19605 -143.0512,80.51722 l -142.1519,72.85702 -0.074,32.65941 c -0.041,17.96268 1.0442,33.07931 2.4116,33.59254 1.3674,0.51321 7.7556,11.33704 14.1962,24.05297 l 11.71,23.11983 14.3416,-7.1878 c 7.8878,-3.95332 16.8769,-6.7989 19.9759,-6.32356 4.19,0.64268 12.6557,14.65265 33.0231,54.65087 l 27.3886,53.78663 36.3717,-1.7083 c 22.9164,-1.07636 37.0518,-0.67967 38.2101,1.07222 2.1481,3.24894 53.7176,31.63199 57.4725,31.63199 1.399,0 15.8423,-7.67257 32.096,-17.05016 l 29.5521,-17.05021 -1.302,-11.64342 c -3.3739,-30.17418 -13.127,-302.03911 -10.9117,-304.15847 3.6803,-3.52077 131.4358,-7.03756 133.681,-3.67982 1.0081,1.50758 15.3508,9.88179 31.8726,18.60932 l 30.0397,15.86828 1.7632,25.88195 c 0.9698,14.23509 2.5987,51.07637 3.6199,81.86952 1.0212,30.79314 2.6579,58.18967 3.6373,60.88112 1.5272,4.19705 8.0164,1.31752 45.5911,-20.23077 41.1215,-23.58229 56.5161,-29.29821 60.7331,-22.54974 0.9294,1.4872 14.8819,9.70269 31.0056,18.25661 16.1237,8.55394 30.9678,17.52113 32.9866,19.92708 2.019,2.40597 15.5849,24.7052 30.1467,49.55387 19.7176,33.64627 26.2618,47.2437 25.6364,53.26595 -0.7691,7.40744 -7.0971,11.67345 -75.3506,50.79895 -40.981,23.49185 -74.7334,43.43654 -75.0051,44.32149 -0.2717,0.88499 45.6764,30.76363 102.1071,66.39698 90.7932,57.33167 102.6013,65.60622 102.6013,71.89848 0,4.23478 -12.878,27.30085 -31.8418,57.03259 -26.6539,41.7885 -32.9478,49.9395 -38.6307,50.02919 -5.9245,0.0934 -22.0124,-7.63754 -66.8009,-32.10125 -6.2269,-3.40112 -55.5073,-34.07749 -109.512,-68.16969 -54.0047,-34.09223 -99.6842,-61.98585 -101.5101,-61.98585 -3.7859,0 -104.3225,56.64598 -104.3363,58.78693 -0.01,0.76984 11.4336,8.32817 25.419,16.79628 23.7633,14.38843 25.3694,15.94646 24.5304,23.79472 -0.5089,4.76345 -14.3182,29.26174 -31.9065,56.6046 -37.3811,58.11314 -34.7703,57.01219 -74.8795,31.57579 -14.5667,-9.23794 -28.761,-16.79625 -31.5426,-16.79625 -2.7816,0 -15.8978,-6.9886 -29.1469,-15.53022 -21.4903,-13.85467 -24.7835,-15.1666 -30.5239,-12.16017 -6.1223,3.20638 -113.1144,64.29007 -114.7873,65.53407 -0.4393,0.32644 13.895,8.86061 31.8532,18.96484 l 32.6511,18.37135 52.7751,-33.39089 c 29.3642,-18.57871 55.7508,-33.39085 59.483,-33.39085 3.6893,0 11.4586,2.92826 17.2654,6.50725 5.8068,3.57899 21.1301,12.04381 34.0518,18.8107 l 23.494,12.30347 30.9908,47.98167 c 17.3985,26.93729 30.9907,50.93487 30.9907,54.71504 0,5.40806 -4.7353,9.68313 -24.0582,21.71986 -13.2321,8.24258 -24.0582,16.00867 -24.0582,17.25795 0,1.72935 34.0907,22.13497 45.5527,27.26635 0.9927,0.44443 60.6798,-36.40238 132.6378,-81.8818 71.9581,-45.47942 133.4831,-82.68982 136.7224,-82.68982 3.2393,0 7.9004,1.74919 10.358,3.8871 2.4576,2.1379 17.842,11.01349 34.1874,19.72353 l 29.719,15.83642 30.6145,47.46187 c 23.0861,35.79043 30.3944,49.33024 29.7191,55.05971 -0.7839,6.65267 -13.2192,15.37762 -99.959,70.13508 -54.4847,34.39546 -100.0638,63.52188 -101.2868,64.72538 -1.2229,1.20347 32.1761,21.60601 74.2201,45.33892 64.8553,36.60944 76.4553,44.1239 76.5209,49.57015 0.041,3.53066 -13.4467,29.66985 -29.9762,58.08708 -35.7282,61.42324 -32.5969,59.86593 -73.04,36.32465 -14.4973,-8.43869 -28.7554,-16.20876 -31.6845,-17.26685 -2.929,-1.05804 -23.9321,-12.41963 -46.6735,-25.2479 -22.7413,-12.82827 -42.0562,-23.32413 -42.9218,-23.32413 -2.4301,0 -4.5187,31.90068 -9.2545,141.3452 -2.3979,55.41483 -5.2619,101.59346 -6.3647,102.61914 -1.1026,1.02571 -29.8799,0.52661 -63.9495,-1.1091 l -61.9447,-2.97402 -28.0779,-15.09266 c -15.4428,-8.30094 -31.191,-16.26327 -34.9958,-17.69404 -5.7438,-2.15987 -6.9179,-4.49963 -6.9179,-13.78631 0,-15.0378 10.7788,-265.47256 12.4209,-288.58588 l 1.2997,-18.29476 -25.9653,-14.51859 -25.9655,-14.51855 -1.4152,30.49339 c -0.7781,16.77137 -2.3371,31.3994 -3.4638,32.50675 -3.0845,3.03128 -124.7821,-3.14188 -131.4427,-6.66747 -5.113,-2.70638 -5.6411,-2.33838 -4.5733,3.18644 0.792,4.09845 -8.4433,24.511 -26.8596,59.36506 -33.6505,63.68644 -31.6718,62.50369 -70.001,41.83931 l -24.1622,-13.02658 0.7617,63.66344 0.7618,63.66339 108.9696,56.2718 c 181.037,93.48727 172.5387,88.67918 172.5999,97.65232 0.033,4.47741 -11.504,29.81802 -27.0774,59.48677 -25.7093,48.97901 -27.5602,51.68677 -35.3298,51.68677 -5.1429,0 -47.5165,-20.26519 -113.6806,-54.36772 l -105.4814,-54.36757 -0.7462,90.75947 -0.7462,90.75951 -64.3525,-0.28807 -64.3524,-0.28807 z" />
35
- <text
36
- xml:space="preserve"
37
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.70857906px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00392926"
38
- x="105.491"
39
- y="-593.11829"
40
- id="text4657"
41
- transform="scale(1.0039293,0.99608608)"><tspan
42
- id="tspan4655"
43
- x="105.491"
44
- y="-593.11829"
45
- style="font-weight:bold;font-size:481.88604736px;fill:#0080ff;fill-opacity:1;stroke-width:1.00392926">C</tspan></text>
46
- <text
47
- id="text4714"
48
- y="-1183.8679"
49
- x="1199.2745"
50
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66785812px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00011158"
51
- xml:space="preserve"
52
- transform="scale(0.9998884,1.0001116)"><tspan
53
- style="font-weight:bold;font-size:480.05358887px;fill:#0080ff;fill-opacity:1;stroke-width:1.00011158"
54
- y="-1183.8679"
55
- x="1199.2745"
56
- id="tspan4712">N</tspan></text>
57
- <text
58
- xml:space="preserve"
59
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none"
60
- x="2351.6016"
61
- y="-584"
62
- id="text4718"><tspan
63
- id="tspan4716"
64
- x="2351.6016"
65
- y="-584"
66
- style="font-weight:bold;font-size:480px;fill:#0080ff;fill-opacity:1">E</tspan></text>
67
- <text
68
- id="text4722"
69
- y="611.59686"
70
- x="2336.7239"
71
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.70857906px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00392926"
72
- xml:space="preserve"
73
- transform="scale(1.0039293,0.99608608)"><tspan
74
- style="font-weight:bold;font-size:481.88604736px;fill:#0080ff;fill-opacity:1;stroke-width:1.00392926"
75
- y="611.59686"
76
- x="2336.7239"
77
- id="tspan4720">C</tspan></text>
78
- <text
79
- xml:space="preserve"
80
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66785812px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00011158"
81
- x="1310.9667"
82
- y="1165.8699"
83
- id="text4726"
84
- transform="scale(0.9998884,1.0001116)"><tspan
85
- id="tspan4724"
86
- x="1310.9667"
87
- y="1165.8699"
88
- style="font-weight:bold;font-size:480.05358887px;fill:#0080ff;fill-opacity:1;stroke-width:1.00011158">I</tspan></text>
89
- <text
90
- id="text4740"
91
- y="616"
92
- x="113.00781"
93
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none"
94
- xml:space="preserve"><tspan
95
- style="font-weight:bold;font-size:480px;fill:#0080ff;fill-opacity:1"
96
- y="616"
97
- x="113.00781"
98
- id="tspan4738">F</tspan></text>
99
- </g>
100
- </svg>
1
+ CNECIF