Initial commit
53
.dockerignore
Normal file
@@ -0,0 +1,53 @@
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
*.egg
|
||||
|
||||
# Environnements virtuels
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
|
||||
# Variables d'environnement
|
||||
.env
|
||||
.env.*
|
||||
!.env.prod
|
||||
|
||||
# Base de données locale
|
||||
*.sqlite3
|
||||
db.sqlite3
|
||||
|
||||
# Fichiers statiques compilés (générés dans le container)
|
||||
staticfiles/
|
||||
|
||||
# Media uploads locaux
|
||||
media/
|
||||
|
||||
# Tests / CI
|
||||
.coverage
|
||||
htmlcov/
|
||||
.pytest_cache/
|
||||
.tox/
|
||||
|
||||
# Editeurs
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
.DS_Store
|
||||
|
||||
# Figma export (pas nécessaire en prod)
|
||||
figma_export/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
41
.gitignore
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
.Python
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# Environnements
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
|
||||
# Variables d'environnement (NE JAMAIS committer)
|
||||
.env
|
||||
.env.prod
|
||||
.env.local
|
||||
|
||||
# Base de données locale
|
||||
*.sqlite3
|
||||
|
||||
# Fichiers statiques compilés
|
||||
staticfiles/
|
||||
|
||||
# Media uploads
|
||||
media/
|
||||
|
||||
# Tests
|
||||
.coverage
|
||||
htmlcov/
|
||||
.pytest_cache/
|
||||
|
||||
# Editeurs
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
.DS_Store
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
39
Dockerfile
Normal file
@@ -0,0 +1,39 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
# Variables d'environnement
|
||||
ENV PYTHONDONTWRITEBYTECODE=1 \
|
||||
PYTHONUNBUFFERED=1 \
|
||||
DJANGO_SETTINGS_MODULE=config.settings.prod
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Dépendances système minimales
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
libpq-dev \
|
||||
gcc \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Dépendances Python
|
||||
COPY requirements.txt .
|
||||
RUN pip install --upgrade pip && pip install -r requirements.txt
|
||||
|
||||
# Code source
|
||||
COPY . .
|
||||
|
||||
# Collecte des fichiers statiques
|
||||
# DATABASE_URL factice pour éviter l'erreur de connexion à la DB au build
|
||||
RUN SECRET_KEY=build-only-key DATABASE_URL=sqlite:///tmp/build.db \
|
||||
python manage.py collectstatic --noinput
|
||||
|
||||
# Utilisateur non-root pour la sécurité
|
||||
RUN adduser --disabled-password --gecos "" appuser && chown -R appuser /app
|
||||
USER appuser
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["gunicorn", "config.wsgi:application", \
|
||||
"--bind", "0.0.0.0:8000", \
|
||||
"--workers", "3", \
|
||||
"--timeout", "60", \
|
||||
"--access-logfile", "-", \
|
||||
"--error-logfile", "-"]
|
||||
0
apps/__init__.py
Normal file
0
apps/careers/__init__.py
Normal file
72
apps/careers/admin.py
Normal file
@@ -0,0 +1,72 @@
|
||||
from django.contrib import admin
|
||||
from django.utils import timezone
|
||||
|
||||
from .models import JobApplication, JobOffer
|
||||
|
||||
|
||||
@admin.register(JobOffer)
|
||||
class JobOfferAdmin(admin.ModelAdmin):
|
||||
list_display = ['title', 'department', 'contract_type', 'location', 'status', 'application_deadline', 'created_at']
|
||||
list_filter = ['status', 'department', 'contract_type', 'is_remote']
|
||||
search_fields = ['title', 'location', 'description']
|
||||
prepopulated_fields = {'slug': ('title',)}
|
||||
readonly_fields = ['published_at', 'created_at', 'updated_at']
|
||||
list_editable = ['status']
|
||||
date_hierarchy = 'created_at'
|
||||
actions = ['publish_offers', 'close_offers']
|
||||
fieldsets = (
|
||||
("Informations générales", {
|
||||
'fields': ('title', 'slug', 'department', 'contract_type', 'location', 'is_remote', 'salary_range')
|
||||
}),
|
||||
("Contenu de l'offre", {
|
||||
'fields': ('description', 'requirements', 'nice_to_have')
|
||||
}),
|
||||
('Publication', {
|
||||
'fields': ('status', 'application_deadline', 'published_at', 'created_at', 'updated_at')
|
||||
}),
|
||||
)
|
||||
|
||||
@admin.action(description='Publier les offres sélectionnées')
|
||||
def publish_offers(self, request, queryset):
|
||||
queryset.update(status=JobOffer.Status.PUBLISHED, published_at=timezone.now())
|
||||
|
||||
@admin.action(description='Fermer les offres sélectionnées')
|
||||
def close_offers(self, request, queryset):
|
||||
queryset.update(status=JobOffer.Status.CLOSED)
|
||||
|
||||
|
||||
@admin.register(JobApplication)
|
||||
class JobApplicationAdmin(admin.ModelAdmin):
|
||||
list_display = ['full_name_col', 'email', 'job', 'status', 'applied_at']
|
||||
list_filter = ['status', 'job__department', 'job']
|
||||
search_fields = ['first_name', 'last_name', 'email', 'job__title']
|
||||
readonly_fields = [
|
||||
'first_name', 'last_name', 'email', 'phone', 'linkedin_url',
|
||||
'cover_letter', 'cv_file', 'portfolio_url', 'applied_at', 'job',
|
||||
]
|
||||
list_editable = ['status']
|
||||
date_hierarchy = 'applied_at'
|
||||
actions = ['mark_shortlisted', 'mark_rejected']
|
||||
fieldsets = (
|
||||
('Candidat', {
|
||||
'fields': ('first_name', 'last_name', 'email', 'phone', 'linkedin_url', 'portfolio_url')
|
||||
}),
|
||||
('Documents', {
|
||||
'fields': ('job', 'cv_file', 'cover_letter')
|
||||
}),
|
||||
('Traitement RH', {
|
||||
'fields': ('status', 'admin_notes', 'applied_at')
|
||||
}),
|
||||
)
|
||||
|
||||
@admin.display(description='Candidat')
|
||||
def full_name_col(self, obj):
|
||||
return obj.full_name
|
||||
|
||||
@admin.action(description='Marquer comme présélectionné(e)')
|
||||
def mark_shortlisted(self, request, queryset):
|
||||
queryset.update(status=JobApplication.Status.SHORTLIST)
|
||||
|
||||
@admin.action(description='Marquer comme rejeté(e)')
|
||||
def mark_rejected(self, request, queryset):
|
||||
queryset.update(status=JobApplication.Status.REJECTED)
|
||||
9
apps/careers/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CareersConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'apps.careers'
|
||||
|
||||
def ready(self):
|
||||
import apps.careers.signals # noqa
|
||||
50
apps/careers/forms.py
Normal file
@@ -0,0 +1,50 @@
|
||||
from django import forms
|
||||
from django.core.validators import FileExtensionValidator
|
||||
from .models import JobApplication
|
||||
|
||||
|
||||
class JobApplicationForm(forms.ModelForm):
|
||||
cv_file = forms.FileField(
|
||||
validators=[FileExtensionValidator(allowed_extensions=['pdf', 'doc', 'docx'])],
|
||||
widget=forms.ClearableFileInput(attrs={
|
||||
'accept': '.pdf,.doc,.docx',
|
||||
'class': 'form-file-input',
|
||||
}),
|
||||
label='CV (PDF ou Word)',
|
||||
help_text='Formats acceptés : PDF, DOC, DOCX — taille maximum 5 Mo',
|
||||
)
|
||||
|
||||
class Meta:
|
||||
model = JobApplication
|
||||
fields = [
|
||||
'first_name', 'last_name', 'email', 'phone',
|
||||
'linkedin_url', 'cover_letter', 'cv_file', 'portfolio_url',
|
||||
]
|
||||
labels = {
|
||||
'first_name': 'Prénom',
|
||||
'last_name': 'Nom de famille',
|
||||
'email': 'Adresse email',
|
||||
'phone': 'Téléphone (optionnel)',
|
||||
'linkedin_url': 'LinkedIn (optionnel)',
|
||||
'cover_letter': 'Lettre de motivation',
|
||||
'portfolio_url': 'Portfolio / GitHub (optionnel)',
|
||||
}
|
||||
widgets = {
|
||||
'first_name': forms.TextInput(attrs={'placeholder': 'Votre prénom', 'class': 'form-input'}),
|
||||
'last_name': forms.TextInput(attrs={'placeholder': 'Votre nom', 'class': 'form-input'}),
|
||||
'email': forms.EmailInput(attrs={'placeholder': 'vous@exemple.com', 'class': 'form-input'}),
|
||||
'phone': forms.TextInput(attrs={'placeholder': '+225 07 00 00 00 00', 'class': 'form-input'}),
|
||||
'linkedin_url': forms.URLInput(attrs={'placeholder': 'https://linkedin.com/in/...', 'class': 'form-input'}),
|
||||
'cover_letter': forms.Textarea(attrs={
|
||||
'rows': 8,
|
||||
'class': 'form-textarea',
|
||||
'placeholder': 'Décrivez votre motivation et vos atouts pour ce poste...',
|
||||
}),
|
||||
'portfolio_url': forms.URLInput(attrs={'placeholder': 'https://github.com/...', 'class': 'form-input'}),
|
||||
}
|
||||
|
||||
def clean_cv_file(self):
|
||||
cv = self.cleaned_data.get('cv_file')
|
||||
if cv and cv.size > 5 * 1024 * 1024:
|
||||
raise forms.ValidationError('Le fichier CV ne peut pas dépasser 5 Mo.')
|
||||
return cv
|
||||
66
apps/careers/migrations/0001_initial.py
Normal file
@@ -0,0 +1,66 @@
|
||||
# Generated by Django 5.1.15 on 2026-04-13 12:26
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='JobOffer',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('title', models.CharField(max_length=200, verbose_name='Intitulé du poste')),
|
||||
('slug', models.SlugField(max_length=220, unique=True)),
|
||||
('department', models.CharField(choices=[('tech', 'Technologie'), ('agro', 'Agronomie'), ('data', 'Data & IA'), ('ops', 'Opérations'), ('sales', 'Commercial'), ('admin', 'Administration')], max_length=20, verbose_name='Département')),
|
||||
('contract_type', models.CharField(choices=[('CDI', 'CDI'), ('CDD', 'CDD'), ('stage', 'Stage'), ('freelance', 'Freelance')], max_length=20, verbose_name='Type de contrat')),
|
||||
('location', models.CharField(default="Abidjan, Côte d'Ivoire", max_length=150, verbose_name='Lieu')),
|
||||
('is_remote', models.BooleanField(default=False, verbose_name='Télétravail possible')),
|
||||
('description', models.TextField(verbose_name='Description du poste')),
|
||||
('requirements', models.TextField(verbose_name='Compétences requises')),
|
||||
('nice_to_have', models.TextField(blank=True, verbose_name='Compétences souhaitées')),
|
||||
('salary_range', models.CharField(blank=True, max_length=100, verbose_name='Fourchette salariale')),
|
||||
('status', models.CharField(choices=[('draft', 'Brouillon'), ('published', 'Publié'), ('closed', 'Fermé')], db_index=True, default='draft', max_length=20, verbose_name='Statut')),
|
||||
('application_deadline', models.DateField(blank=True, null=True, verbose_name='Date limite de candidature')),
|
||||
('published_at', models.DateTimeField(blank=True, null=True, verbose_name='Publié le')),
|
||||
('created_at', models.DateTimeField(auto_now_add=True)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': "Offre d'emploi",
|
||||
'verbose_name_plural': "Offres d'emploi",
|
||||
'ordering': ['-published_at', '-created_at'],
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='JobApplication',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('first_name', models.CharField(max_length=100, verbose_name='Prénom')),
|
||||
('last_name', models.CharField(max_length=100, verbose_name='Nom de famille')),
|
||||
('email', models.EmailField(max_length=254, verbose_name='Email')),
|
||||
('phone', models.CharField(blank=True, max_length=30, verbose_name='Téléphone')),
|
||||
('linkedin_url', models.URLField(blank=True, verbose_name='LinkedIn')),
|
||||
('cover_letter', models.TextField(verbose_name='Lettre de motivation')),
|
||||
('cv_file', models.FileField(upload_to='careers/cvs/%Y/%m/', verbose_name='CV')),
|
||||
('portfolio_url', models.URLField(blank=True, verbose_name='Portfolio / GitHub')),
|
||||
('status', models.CharField(choices=[('new', 'Nouvelle'), ('reviewing', "En cours d'examen"), ('shortlist', 'Présélectionné(e)'), ('interview', 'Entretien planifié'), ('rejected', 'Rejeté(e)'), ('hired', 'Recruté(e)')], db_index=True, default='new', max_length=20, verbose_name='Statut')),
|
||||
('admin_notes', models.TextField(blank=True, verbose_name='Notes internes')),
|
||||
('applied_at', models.DateTimeField(auto_now_add=True, verbose_name='Candidaté le')),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('job', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='applications', to='careers.joboffer', verbose_name='Offre')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Candidature',
|
||||
'verbose_name_plural': 'Candidatures',
|
||||
'ordering': ['-applied_at'],
|
||||
'unique_together': {('job', 'email')},
|
||||
},
|
||||
),
|
||||
]
|
||||
0
apps/careers/migrations/__init__.py
Normal file
103
apps/careers/models.py
Normal file
@@ -0,0 +1,103 @@
|
||||
from django.db import models
|
||||
from django.urls import reverse
|
||||
from django.utils import timezone
|
||||
from django.utils.text import slugify
|
||||
|
||||
|
||||
class JobOffer(models.Model):
|
||||
class Status(models.TextChoices):
|
||||
DRAFT = 'draft', 'Brouillon'
|
||||
PUBLISHED = 'published', 'Publié'
|
||||
CLOSED = 'closed', 'Fermé'
|
||||
|
||||
class ContractType(models.TextChoices):
|
||||
CDI = 'CDI', 'CDI'
|
||||
CDD = 'CDD', 'CDD'
|
||||
STAGE = 'stage', 'Stage'
|
||||
FREELANCE = 'freelance', 'Freelance'
|
||||
|
||||
class Department(models.TextChoices):
|
||||
TECH = 'tech', 'Technologie'
|
||||
AGRO = 'agro', 'Agronomie'
|
||||
OPS = 'ops', 'Opérations'
|
||||
SALES = 'sales', 'Commercial'
|
||||
ADMIN = 'admin', 'Administration'
|
||||
|
||||
title = models.CharField(max_length=200, verbose_name='Intitulé du poste')
|
||||
slug = models.SlugField(max_length=220, unique=True)
|
||||
department = models.CharField(max_length=20, choices=Department.choices, verbose_name='Département')
|
||||
contract_type = models.CharField(max_length=20, choices=ContractType.choices, verbose_name='Type de contrat')
|
||||
location = models.CharField(max_length=150, default="Abidjan, Côte d'Ivoire", verbose_name='Lieu')
|
||||
is_remote = models.BooleanField(default=False, verbose_name='Télétravail possible')
|
||||
description = models.TextField(verbose_name='Description du poste')
|
||||
requirements = models.TextField(verbose_name='Compétences requises')
|
||||
nice_to_have = models.TextField(blank=True, verbose_name='Compétences souhaitées')
|
||||
salary_range = models.CharField(max_length=100, blank=True, verbose_name='Fourchette salariale')
|
||||
status = models.CharField(max_length=20, choices=Status.choices, default=Status.DRAFT, db_index=True, verbose_name='Statut')
|
||||
application_deadline = models.DateField(null=True, blank=True, verbose_name='Date limite de candidature')
|
||||
published_at = models.DateTimeField(null=True, blank=True, verbose_name='Publié le')
|
||||
created_at = models.DateTimeField(auto_now_add=True)
|
||||
updated_at = models.DateTimeField(auto_now=True)
|
||||
|
||||
class Meta:
|
||||
ordering = ['-published_at', '-created_at']
|
||||
verbose_name = "Offre d'emploi"
|
||||
verbose_name_plural = "Offres d'emploi"
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.title} ({self.get_contract_type_display()})"
|
||||
|
||||
def save(self, *args, **kwargs):
|
||||
if not self.slug:
|
||||
self.slug = slugify(self.title)
|
||||
if self.status == self.Status.PUBLISHED and not self.published_at:
|
||||
self.published_at = timezone.now()
|
||||
super().save(*args, **kwargs)
|
||||
|
||||
def get_absolute_url(self):
|
||||
return reverse('careers:job_detail', kwargs={'slug': self.slug})
|
||||
|
||||
@property
|
||||
def is_open(self):
|
||||
if self.status != self.Status.PUBLISHED:
|
||||
return False
|
||||
if self.application_deadline and self.application_deadline < timezone.now().date():
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
class JobApplication(models.Model):
|
||||
class Status(models.TextChoices):
|
||||
NEW = 'new', 'Nouvelle'
|
||||
REVIEWING = 'reviewing', "En cours d'examen"
|
||||
SHORTLIST = 'shortlist', 'Présélectionné(e)'
|
||||
INTERVIEW = 'interview', 'Entretien planifié'
|
||||
REJECTED = 'rejected', 'Rejeté(e)'
|
||||
HIRED = 'hired', 'Recruté(e)'
|
||||
|
||||
job = models.ForeignKey(JobOffer, on_delete=models.CASCADE, related_name='applications', verbose_name='Offre')
|
||||
first_name = models.CharField(max_length=100, verbose_name='Prénom')
|
||||
last_name = models.CharField(max_length=100, verbose_name='Nom de famille')
|
||||
email = models.EmailField(verbose_name='Email')
|
||||
phone = models.CharField(max_length=30, blank=True, verbose_name='Téléphone')
|
||||
linkedin_url = models.URLField(blank=True, verbose_name='LinkedIn')
|
||||
cover_letter = models.TextField(verbose_name='Lettre de motivation')
|
||||
cv_file = models.FileField(upload_to='careers/cvs/%Y/%m/', verbose_name='CV')
|
||||
portfolio_url = models.URLField(blank=True, verbose_name='Portfolio / GitHub')
|
||||
status = models.CharField(max_length=20, choices=Status.choices, default=Status.NEW, db_index=True, verbose_name='Statut')
|
||||
admin_notes = models.TextField(blank=True, verbose_name='Notes internes')
|
||||
applied_at = models.DateTimeField(auto_now_add=True, verbose_name='Candidaté le')
|
||||
updated_at = models.DateTimeField(auto_now=True)
|
||||
|
||||
class Meta:
|
||||
ordering = ['-applied_at']
|
||||
verbose_name = 'Candidature'
|
||||
verbose_name_plural = 'Candidatures'
|
||||
unique_together = [('job', 'email')]
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.first_name} {self.last_name} → {self.job.title}"
|
||||
|
||||
@property
|
||||
def full_name(self):
|
||||
return f"{self.first_name} {self.last_name}"
|
||||
47
apps/careers/signals.py
Normal file
@@ -0,0 +1,47 @@
|
||||
from django.conf import settings
|
||||
from django.core.mail import send_mail
|
||||
from django.db.models.signals import post_save
|
||||
from django.dispatch import receiver
|
||||
from django.template.loader import render_to_string
|
||||
|
||||
from .models import JobApplication
|
||||
|
||||
|
||||
@receiver(post_save, sender=JobApplication)
|
||||
def on_application_created(sender, instance, created, **kwargs):
|
||||
if not created:
|
||||
return
|
||||
|
||||
# Email to applicant
|
||||
subject_applicant = render_to_string(
|
||||
'careers/emails/application_received_subject.txt',
|
||||
{'application': instance}
|
||||
).strip()
|
||||
body_applicant = render_to_string(
|
||||
'careers/emails/application_received_body.txt',
|
||||
{'application': instance}
|
||||
)
|
||||
send_mail(
|
||||
subject=subject_applicant,
|
||||
message=body_applicant,
|
||||
from_email=settings.DEFAULT_FROM_EMAIL,
|
||||
recipient_list=[instance.email],
|
||||
fail_silently=True,
|
||||
)
|
||||
|
||||
# Email to HR
|
||||
subject_hr = render_to_string(
|
||||
'careers/emails/new_application_admin_subject.txt',
|
||||
{'application': instance}
|
||||
).strip()
|
||||
body_hr = render_to_string(
|
||||
'careers/emails/new_application_admin_body.txt',
|
||||
{'application': instance}
|
||||
)
|
||||
send_mail(
|
||||
subject=subject_hr,
|
||||
message=body_hr,
|
||||
from_email=settings.DEFAULT_FROM_EMAIL,
|
||||
recipient_list=[settings.CAREERS_NOTIFY_EMAIL],
|
||||
fail_silently=True,
|
||||
)
|
||||
3
apps/careers/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
11
apps/careers/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'careers'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.JobListView.as_view(), name='job_list'),
|
||||
path('<slug:slug>/', views.JobDetailView.as_view(), name='job_detail'),
|
||||
path('<slug:slug>/postuler/', views.ApplyView.as_view(), name='apply'),
|
||||
path('<slug:slug>/postuler/confirmation/', views.ApplySuccessView.as_view(), name='apply_success'),
|
||||
]
|
||||
67
apps/careers/views.py
Normal file
@@ -0,0 +1,67 @@
|
||||
from django.db import IntegrityError
|
||||
from django.shortcuts import get_object_or_404, redirect
|
||||
from django.views.generic import DetailView, FormView, ListView, TemplateView
|
||||
|
||||
from .forms import JobApplicationForm
|
||||
from .models import JobApplication, JobOffer
|
||||
|
||||
|
||||
class JobListView(ListView):
|
||||
template_name = 'careers/job_list.html'
|
||||
context_object_name = 'jobs'
|
||||
|
||||
def get_queryset(self):
|
||||
qs = JobOffer.objects.filter(status=JobOffer.Status.PUBLISHED)
|
||||
dept = self.request.GET.get('dept')
|
||||
if dept:
|
||||
qs = qs.filter(department=dept)
|
||||
return qs
|
||||
|
||||
def get_context_data(self, **kwargs):
|
||||
ctx = super().get_context_data(**kwargs)
|
||||
ctx['departments'] = JobOffer.Department.choices
|
||||
ctx['active_dept'] = self.request.GET.get('dept', '')
|
||||
return ctx
|
||||
|
||||
|
||||
class JobDetailView(DetailView):
|
||||
template_name = 'careers/job_detail.html'
|
||||
context_object_name = 'job'
|
||||
|
||||
def get_object(self):
|
||||
return get_object_or_404(JobOffer, slug=self.kwargs['slug'], status=JobOffer.Status.PUBLISHED)
|
||||
|
||||
|
||||
class ApplyView(FormView):
|
||||
template_name = 'careers/apply.html'
|
||||
form_class = JobApplicationForm
|
||||
|
||||
def dispatch(self, request, *args, **kwargs):
|
||||
self.job = get_object_or_404(JobOffer, slug=kwargs['slug'], status=JobOffer.Status.PUBLISHED)
|
||||
if not self.job.is_open:
|
||||
return redirect('careers:job_detail', slug=self.job.slug)
|
||||
return super().dispatch(request, *args, **kwargs)
|
||||
|
||||
def get_context_data(self, **kwargs):
|
||||
ctx = super().get_context_data(**kwargs)
|
||||
ctx['job'] = self.job
|
||||
return ctx
|
||||
|
||||
def form_valid(self, form):
|
||||
application = form.save(commit=False)
|
||||
application.job = self.job
|
||||
try:
|
||||
application.save()
|
||||
except IntegrityError:
|
||||
form.add_error('email', 'Vous avez déjà postulé à cette offre avec cet email.')
|
||||
return self.form_invalid(form)
|
||||
return redirect('careers:apply_success', slug=self.job.slug)
|
||||
|
||||
|
||||
class ApplySuccessView(TemplateView):
|
||||
template_name = 'careers/apply_success.html'
|
||||
|
||||
def get_context_data(self, **kwargs):
|
||||
ctx = super().get_context_data(**kwargs)
|
||||
ctx['job'] = get_object_or_404(JobOffer, slug=self.kwargs['slug'])
|
||||
return ctx
|
||||
0
apps/core/__init__.py
Normal file
15
apps/core/admin.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.contrib import admin
|
||||
from .models import ContactRequest
|
||||
|
||||
|
||||
@admin.register(ContactRequest)
|
||||
class ContactRequestAdmin(admin.ModelAdmin):
|
||||
list_display = ['last_name', 'first_name', 'email', 'phone', 'created_at', 'is_read']
|
||||
list_filter = ['is_read', 'created_at']
|
||||
search_fields = ['last_name', 'first_name', 'email', 'message']
|
||||
list_editable = ['is_read']
|
||||
readonly_fields = ['last_name', 'first_name', 'email', 'phone', 'message', 'created_at']
|
||||
ordering = ['-created_at']
|
||||
|
||||
def has_add_permission(self, request):
|
||||
return False
|
||||
6
apps/core/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CoreConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'apps.core'
|
||||
15
apps/core/context_processors.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.conf import settings
|
||||
|
||||
|
||||
def site_context(request):
|
||||
careers_enabled = getattr(settings, 'CAREERS_ENABLED', False)
|
||||
open_jobs_count = 0
|
||||
|
||||
if careers_enabled:
|
||||
from apps.careers.models import JobOffer
|
||||
open_jobs_count = JobOffer.objects.filter(status=JobOffer.Status.PUBLISHED).count()
|
||||
|
||||
return {
|
||||
'careers_enabled': careers_enabled,
|
||||
'open_jobs_count': open_jobs_count,
|
||||
}
|
||||
29
apps/core/forms.py
Normal file
@@ -0,0 +1,29 @@
|
||||
import re
|
||||
from django import forms
|
||||
from .models import ContactRequest
|
||||
|
||||
|
||||
class ContactForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = ContactRequest
|
||||
fields = ['last_name', 'first_name', 'email', 'phone', 'message']
|
||||
widgets = {
|
||||
'last_name': forms.TextInput(attrs={'placeholder': 'Nom', 'class': 'cta-input'}),
|
||||
'first_name': forms.TextInput(attrs={'placeholder': 'Prénom', 'class': 'cta-input'}),
|
||||
'email': forms.EmailInput(attrs={'placeholder': 'Adresse email', 'class': 'cta-input'}),
|
||||
'phone': forms.TextInput(attrs={'placeholder': 'Téléphone', 'class': 'cta-input', 'inputmode': 'numeric', 'pattern': '[0-9+ ]{6,20}'}),
|
||||
'message': forms.Textarea(attrs={'placeholder': 'Votre demande…', 'class': 'cta-input cta-textarea', 'rows': 4}),
|
||||
}
|
||||
labels = {
|
||||
'last_name': '',
|
||||
'first_name': '',
|
||||
'email': '',
|
||||
'phone': '',
|
||||
'message': '',
|
||||
}
|
||||
|
||||
def clean_phone(self):
|
||||
phone = self.cleaned_data.get('phone', '').strip()
|
||||
if phone and not re.fullmatch(r'[0-9+\s\-]{6,20}', phone):
|
||||
raise forms.ValidationError('Numéro invalide — chiffres uniquement.')
|
||||
return phone
|
||||
32
apps/core/migrations/0001_initial.py
Normal file
@@ -0,0 +1,32 @@
|
||||
# Generated by Django 3.2.25 on 2026-04-14 10:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ContactRequest',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('first_name', models.CharField(max_length=100, verbose_name='Prénom')),
|
||||
('last_name', models.CharField(max_length=100, verbose_name='Nom')),
|
||||
('email', models.EmailField(max_length=254, verbose_name='Email')),
|
||||
('phone', models.CharField(blank=True, max_length=20, verbose_name='Téléphone')),
|
||||
('message', models.TextField(verbose_name='Demande')),
|
||||
('created_at', models.DateTimeField(auto_now_add=True, verbose_name='Reçu le')),
|
||||
('is_read', models.BooleanField(default=False, verbose_name='Lu')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Demande de contact',
|
||||
'verbose_name_plural': 'Demandes de contact',
|
||||
'ordering': ['-created_at'],
|
||||
},
|
||||
),
|
||||
]
|
||||
0
apps/core/migrations/__init__.py
Normal file
19
apps/core/models.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from django.db import models
|
||||
|
||||
|
||||
class ContactRequest(models.Model):
|
||||
first_name = models.CharField('Prénom', max_length=100)
|
||||
last_name = models.CharField('Nom', max_length=100)
|
||||
email = models.EmailField('Email')
|
||||
phone = models.CharField('Téléphone', max_length=20, blank=True)
|
||||
message = models.TextField('Demande')
|
||||
created_at = models.DateTimeField('Reçu le', auto_now_add=True)
|
||||
is_read = models.BooleanField('Lu', default=False)
|
||||
|
||||
class Meta:
|
||||
verbose_name = 'Demande de contact'
|
||||
verbose_name_plural = 'Demandes de contact'
|
||||
ordering = ['-created_at']
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.first_name} {self.last_name} — {self.email}"
|
||||
3
apps/core/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
17
apps/core/urls.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'core'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.HomeView.as_view(), name='home'),
|
||||
path('contact/', views.ContactAjaxView.as_view(), name='contact_ajax'),
|
||||
path('a-propos/', views.AboutView.as_view(), name='about'),
|
||||
path('produits/kiriq/', views.KiriqView.as_view(), name='kiriq'),
|
||||
path('produits/monitor/', views.MonitorView.as_view(), name='monitor'),
|
||||
path('produits/joolid/', views.JoolidView.as_view(), name='joolid'),
|
||||
path('confidentialite/', views.PrivacyView.as_view(), name='privacy'),
|
||||
# SEO
|
||||
path('robots.txt', views.RobotsTxtView.as_view(), name='robots_txt'),
|
||||
path('sitemap.xml', views.SitemapXmlView.as_view(), name='sitemap_xml'),
|
||||
]
|
||||
75
apps/core/views.py
Normal file
@@ -0,0 +1,75 @@
|
||||
import logging
|
||||
from django.views.generic import TemplateView
|
||||
from django.views import View
|
||||
from django.http import JsonResponse
|
||||
from django.core.mail import send_mail
|
||||
from django.conf import settings
|
||||
from .forms import ContactForm
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class HomeView(TemplateView):
|
||||
template_name = 'core/home.html'
|
||||
|
||||
|
||||
class ContactAjaxView(View):
|
||||
"""Reçoit le formulaire en AJAX, répond en JSON — pas de rechargement."""
|
||||
|
||||
def post(self, request, *args, **kwargs):
|
||||
form = ContactForm(request.POST)
|
||||
if form.is_valid():
|
||||
contact = form.save()
|
||||
subject = f"Nouvelle demande de contact — {contact.first_name} {contact.last_name}"
|
||||
body = (
|
||||
f"Nom : {contact.last_name}\n"
|
||||
f"Prénom : {contact.first_name}\n"
|
||||
f"Email : {contact.email}\n"
|
||||
f"Téléphone : {contact.phone or '—'}\n\n"
|
||||
f"Demande :\n{contact.message}"
|
||||
)
|
||||
try:
|
||||
send_mail(
|
||||
subject,
|
||||
body,
|
||||
settings.DEFAULT_FROM_EMAIL,
|
||||
[settings.CONTACT_NOTIFY_EMAIL],
|
||||
fail_silently=False,
|
||||
)
|
||||
logger.info("Mail contact #%s envoyé → %s", contact.pk, settings.CONTACT_NOTIFY_EMAIL)
|
||||
except Exception as e:
|
||||
logger.error("Échec mail contact #%s : %s — %s", contact.pk, type(e).__name__, e)
|
||||
return JsonResponse({'ok': True})
|
||||
else:
|
||||
errors = {f: e.get_json_data() for f, e in form.errors.items()}
|
||||
return JsonResponse({'ok': False, 'errors': errors}, status=400)
|
||||
|
||||
|
||||
class AboutView(TemplateView):
|
||||
template_name = 'core/about.html'
|
||||
|
||||
|
||||
class KiriqView(TemplateView):
|
||||
template_name = 'core/products/kiriq.html'
|
||||
|
||||
|
||||
class MonitorView(TemplateView):
|
||||
template_name = 'core/products/monitor.html'
|
||||
|
||||
|
||||
class JoolidView(TemplateView):
|
||||
template_name = 'core/products/joolid.html'
|
||||
|
||||
|
||||
class PrivacyView(TemplateView):
|
||||
template_name = 'core/privacy.html'
|
||||
|
||||
|
||||
class RobotsTxtView(TemplateView):
|
||||
template_name = 'robots.txt'
|
||||
content_type = 'text/plain'
|
||||
|
||||
|
||||
class SitemapXmlView(TemplateView):
|
||||
template_name = 'sitemap.xml'
|
||||
content_type = 'application/xml'
|
||||
0
config/__init__.py
Normal file
16
config/asgi.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
ASGI config for config project.
|
||||
|
||||
It exposes the ASGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/5.1/howto/deployment/asgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.asgi import get_asgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||||
|
||||
application = get_asgi_application()
|
||||
0
config/settings/__init__.py
Normal file
83
config/settings/base.py
Normal file
@@ -0,0 +1,83 @@
|
||||
from pathlib import Path
|
||||
import environ
|
||||
|
||||
BASE_DIR = Path(__file__).resolve().parent.parent.parent
|
||||
|
||||
env = environ.Env()
|
||||
environ.Env.read_env(BASE_DIR / '.env')
|
||||
|
||||
SECRET_KEY = env('SECRET_KEY')
|
||||
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS', default=['localhost', '127.0.0.1'])
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
# Local
|
||||
'apps.core.apps.CoreConfig',
|
||||
'apps.careers.apps.CareersConfig',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
'django.middleware.security.SecurityMiddleware',
|
||||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||||
'django.middleware.common.CommonMiddleware',
|
||||
'django.middleware.csrf.CsrfViewMiddleware',
|
||||
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||||
'django.contrib.messages.middleware.MessageMiddleware',
|
||||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||||
]
|
||||
|
||||
ROOT_URLCONF = 'config.urls'
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||||
'DIRS': [BASE_DIR / 'templates'],
|
||||
'APP_DIRS': True,
|
||||
'OPTIONS': {
|
||||
'context_processors': [
|
||||
'django.template.context_processors.debug',
|
||||
'django.template.context_processors.request',
|
||||
'django.contrib.auth.context_processors.auth',
|
||||
'django.contrib.messages.context_processors.messages',
|
||||
'apps.core.context_processors.site_context',
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
WSGI_APPLICATION = 'config.wsgi.application'
|
||||
|
||||
AUTH_PASSWORD_VALIDATORS = [
|
||||
{'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'},
|
||||
{'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator'},
|
||||
{'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator'},
|
||||
{'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator'},
|
||||
]
|
||||
|
||||
LANGUAGE_CODE = 'fr-fr'
|
||||
TIME_ZONE = 'Africa/Abidjan'
|
||||
USE_I18N = True
|
||||
USE_TZ = True
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
STATICFILES_DIRS = [BASE_DIR / 'static']
|
||||
STATIC_ROOT = BASE_DIR / 'staticfiles'
|
||||
|
||||
MEDIA_URL = '/media/'
|
||||
MEDIA_ROOT = BASE_DIR / 'media'
|
||||
|
||||
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
||||
|
||||
CAREERS_ENABLED = env.bool('CAREERS_ENABLED', default=False)
|
||||
|
||||
DEFAULT_FROM_EMAIL = env('DEFAULT_FROM_EMAIL', default='noreply@jool-int.com')
|
||||
CAREERS_NOTIFY_EMAIL = env('CAREERS_NOTIFY_EMAIL', default='rh@jool-int.com')
|
||||
CONTACT_NOTIFY_EMAIL = env('CONTACT_NOTIFY_EMAIL', default='contacts@jool-int.com')
|
||||
|
||||
DATA_UPLOAD_MAX_MEMORY_SIZE = 10 * 1024 * 1024
|
||||
FILE_UPLOAD_MAX_MEMORY_SIZE = 5 * 1024 * 1024
|
||||
29
config/settings/dev.py
Normal file
@@ -0,0 +1,29 @@
|
||||
from .base import *
|
||||
|
||||
DEBUG = True
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': BASE_DIR / 'db.sqlite3',
|
||||
}
|
||||
}
|
||||
|
||||
# Email SMTP réel (variables lues depuis .env)
|
||||
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
||||
EMAIL_HOST = env('EMAIL_HOST', default='smtp.dreamhost.com')
|
||||
EMAIL_PORT = env.int('EMAIL_PORT', default=465)
|
||||
EMAIL_USE_SSL = True
|
||||
EMAIL_HOST_USER = env('EMAIL_HOST_USER', default='')
|
||||
EMAIL_HOST_PASSWORD = env('EMAIL_HOST_PASSWORD', default='')
|
||||
|
||||
LOGGING = {
|
||||
'version': 1,
|
||||
'disable_existing_loggers': False,
|
||||
'handlers': {
|
||||
'console': {'class': 'logging.StreamHandler'},
|
||||
},
|
||||
'loggers': {
|
||||
'apps.core': {'handlers': ['console'], 'level': 'INFO', 'propagate': False},
|
||||
},
|
||||
}
|
||||
61
config/settings/prod.py
Normal file
@@ -0,0 +1,61 @@
|
||||
from .base import *
|
||||
|
||||
DEBUG = False
|
||||
|
||||
DATABASES = {
|
||||
'default': env.db('DATABASE_URL', default='sqlite:///tmp/build.db')
|
||||
}
|
||||
|
||||
# WhiteNoise pour servir les fichiers statiques en fallback
|
||||
MIDDLEWARE = [
|
||||
'django.middleware.security.SecurityMiddleware',
|
||||
'whitenoise.middleware.WhiteNoiseMiddleware',
|
||||
] + [m for m in MIDDLEWARE if m != 'django.middleware.security.SecurityMiddleware']
|
||||
|
||||
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
|
||||
|
||||
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
||||
EMAIL_HOST = env('EMAIL_HOST', default='smtp.dreamhost.com')
|
||||
EMAIL_PORT = env.int('EMAIL_PORT', default=465)
|
||||
EMAIL_USE_SSL = True
|
||||
EMAIL_HOST_USER = env('EMAIL_HOST_USER', default='')
|
||||
EMAIL_HOST_PASSWORD = env('EMAIL_HOST_PASSWORD', default='')
|
||||
|
||||
# ── HTTPS / cookies ───────────────────────────────────────
|
||||
SECURE_SSL_REDIRECT = True
|
||||
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') # derrière nginx
|
||||
|
||||
SESSION_COOKIE_SECURE = True
|
||||
SESSION_COOKIE_HTTPONLY = True
|
||||
SESSION_COOKIE_SAMESITE = 'Lax'
|
||||
|
||||
CSRF_COOKIE_SECURE = True
|
||||
CSRF_COOKIE_HTTPONLY = True
|
||||
CSRF_COOKIE_SAMESITE = 'Lax'
|
||||
|
||||
# ── HSTS ──────────────────────────────────────────────────
|
||||
# Commencer à 3600, passer à 31536000 après validation SSL
|
||||
SECURE_HSTS_SECONDS = 3600
|
||||
SECURE_HSTS_INCLUDE_SUBDOMAINS = True
|
||||
SECURE_HSTS_PRELOAD = False # passer à True avec HSTS 1 an
|
||||
|
||||
# ── Headers de sécurité Django ─────────────────────────────
|
||||
SECURE_CONTENT_TYPE_NOSNIFF = True
|
||||
SECURE_REFERRER_POLICY = 'strict-origin-when-cross-origin'
|
||||
X_FRAME_OPTIONS = 'DENY'
|
||||
|
||||
LOGGING = {
|
||||
'version': 1,
|
||||
'disable_existing_loggers': False,
|
||||
'handlers': {
|
||||
'console': {'class': 'logging.StreamHandler'},
|
||||
},
|
||||
'root': {
|
||||
'handlers': ['console'],
|
||||
'level': 'WARNING',
|
||||
},
|
||||
'loggers': {
|
||||
'django': {'handlers': ['console'], 'level': 'WARNING', 'propagate': False},
|
||||
'apps.core': {'handlers': ['console'], 'level': 'INFO', 'propagate': False},
|
||||
},
|
||||
}
|
||||
32
config/urls.py
Normal file
@@ -0,0 +1,32 @@
|
||||
"""
|
||||
URL configuration for config project.
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/5.1/topics/http/urls/
|
||||
Examples:
|
||||
Function views
|
||||
1. Add an import: from my_app import views
|
||||
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
||||
Class-based views
|
||||
1. Add an import: from other_app.views import Home
|
||||
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
||||
Including another URLconf
|
||||
1. Import the include() function: from django.urls import include, path
|
||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||
"""
|
||||
from django.contrib import admin
|
||||
from django.urls import path, include
|
||||
from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path('', include('apps.core.urls', namespace='core')),
|
||||
]
|
||||
|
||||
if settings.CAREERS_ENABLED:
|
||||
urlpatterns += [
|
||||
path('carrieres/', include('apps.careers.urls', namespace='careers')),
|
||||
]
|
||||
|
||||
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
16
config/wsgi.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
WSGI config for config project.
|
||||
|
||||
It exposes the WSGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings.dev')
|
||||
|
||||
application = get_wsgi_application()
|
||||
69
docker-compose.yml
Normal file
@@ -0,0 +1,69 @@
|
||||
services:
|
||||
|
||||
# ── Base de données PostgreSQL ──────────────────────────
|
||||
db:
|
||||
image: postgres:16-alpine
|
||||
restart: always
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
env_file: .env.prod
|
||||
environment:
|
||||
POSTGRES_DB: ${POSTGRES_DB}
|
||||
POSTGRES_USER: ${POSTGRES_USER}
|
||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
# ── Application Django (Gunicorn) ───────────────────────
|
||||
web:
|
||||
build: .
|
||||
restart: always
|
||||
env_file: .env.prod
|
||||
volumes:
|
||||
- static_volume:/app/staticfiles
|
||||
- media_volume:/app/media
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
command: >
|
||||
sh -c "python manage.py migrate --noinput &&
|
||||
gunicorn config.wsgi:application
|
||||
--bind 0.0.0.0:8000
|
||||
--workers 3
|
||||
--timeout 60
|
||||
--access-logfile -
|
||||
--error-logfile -"
|
||||
|
||||
# ── Nginx (reverse proxy + static files) ───────────────
|
||||
nginx:
|
||||
image: nginx:alpine
|
||||
restart: always
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
volumes:
|
||||
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
||||
- static_volume:/app/staticfiles:ro
|
||||
- media_volume:/app/media:ro
|
||||
- certbot_www:/var/www/certbot:ro
|
||||
- certbot_certs:/etc/letsencrypt:ro
|
||||
depends_on:
|
||||
- web
|
||||
|
||||
# ── Certbot (SSL Let's Encrypt) ─────────────────────────
|
||||
certbot:
|
||||
image: certbot/certbot
|
||||
volumes:
|
||||
- certbot_www:/var/www/certbot
|
||||
- certbot_certs:/etc/letsencrypt
|
||||
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
static_volume:
|
||||
media_volume:
|
||||
certbot_www:
|
||||
certbot_certs:
|
||||
142
export_pages.py
Normal file
@@ -0,0 +1,142 @@
|
||||
"""
|
||||
Exporte chaque page Django en HTML autonome (CSS + JS inline).
|
||||
Usage : python3 export_pages.py
|
||||
"""
|
||||
import os, re, base64, mimetypes
|
||||
from pathlib import Path
|
||||
import requests
|
||||
from bs4 import BeautifulSoup
|
||||
from urllib.parse import urljoin, urlparse
|
||||
|
||||
BASE_URL = 'http://127.0.0.1:8000'
|
||||
OUT_DIR = Path(__file__).parent / 'figma_export'
|
||||
OUT_DIR.mkdir(exist_ok=True)
|
||||
|
||||
PAGES = [
|
||||
('home', '/'),
|
||||
('a-propos', '/a-propos/'),
|
||||
('kiriq', '/produits/kiriq/'),
|
||||
('monitor', '/produits/monitor/'),
|
||||
('joolid', '/produits/joolid/'),
|
||||
('carrieres','/carrieres/'),
|
||||
]
|
||||
|
||||
session = requests.Session()
|
||||
|
||||
def fetch(url):
|
||||
r = session.get(urljoin(BASE_URL, url), timeout=10)
|
||||
r.raise_for_status()
|
||||
return r
|
||||
|
||||
def to_data_uri(url_or_path):
|
||||
"""Convertit une URL de ressource en data URI base64."""
|
||||
try:
|
||||
r = fetch(url_or_path)
|
||||
mime = r.headers.get('Content-Type', 'application/octet-stream').split(';')[0]
|
||||
b64 = base64.b64encode(r.content).decode()
|
||||
return f"data:{mime};base64,{b64}"
|
||||
except Exception as e:
|
||||
print(f" ⚠️ Impossible de charger {url_or_path}: {e}")
|
||||
return url_or_path
|
||||
|
||||
def inline_css(soup, base_url):
|
||||
"""Remplace les <link rel=stylesheet> par des <style> inline."""
|
||||
for link in soup.find_all('link', rel='stylesheet'):
|
||||
href = link.get('href', '')
|
||||
if not href:
|
||||
continue
|
||||
try:
|
||||
css_text = fetch(href).text
|
||||
# Inline les url() dans le CSS (fonts, images)
|
||||
def replace_url(m):
|
||||
raw = m.group(1).strip('"\'')
|
||||
if raw.startswith('data:') or raw.startswith('http'):
|
||||
return m.group(0)
|
||||
full = urljoin(BASE_URL + href, raw)
|
||||
path = urlparse(full).path
|
||||
return f"url('{to_data_uri(path)}')"
|
||||
css_text = re.sub(r'url\(([^)]+)\)', replace_url, css_text)
|
||||
style_tag = soup.new_tag('style')
|
||||
style_tag.string = css_text
|
||||
link.replace_with(style_tag)
|
||||
print(f" ✅ CSS inline : {href}")
|
||||
except Exception as e:
|
||||
print(f" ⚠️ CSS ignoré {href}: {e}")
|
||||
|
||||
def inline_images(soup):
|
||||
"""Remplace les src d'images par des data URI."""
|
||||
for img in soup.find_all('img'):
|
||||
src = img.get('src', '')
|
||||
if src and not src.startswith('data:') and not src.startswith('http'):
|
||||
img['src'] = to_data_uri(src)
|
||||
print(f" 🖼️ Image inline : {src}")
|
||||
|
||||
def inline_js(soup):
|
||||
"""Remplace les <script src=...> par du JS inline."""
|
||||
for script in soup.find_all('script', src=True):
|
||||
src = script.get('src', '')
|
||||
if not src or src.startswith('http'):
|
||||
continue
|
||||
try:
|
||||
js_text = fetch(src).text
|
||||
new_script = soup.new_tag('script')
|
||||
new_script.string = js_text
|
||||
script.replace_with(new_script)
|
||||
print(f" ⚡ JS inline : {src}")
|
||||
except Exception as e:
|
||||
print(f" ⚠️ JS ignoré {src}: {e}")
|
||||
|
||||
def fix_google_fonts(soup):
|
||||
"""Garde les liens Google Fonts (ils fonctionnent sans serveur)."""
|
||||
# On ne touche pas aux fonts Google — elles chargent via CDN
|
||||
pass
|
||||
|
||||
def export_page(name, path):
|
||||
print(f"\n📄 Export : {name} ({path})")
|
||||
try:
|
||||
html = fetch(path).text
|
||||
except Exception as e:
|
||||
print(f" ❌ Erreur : {e}")
|
||||
return
|
||||
|
||||
soup = BeautifulSoup(html, 'html.parser')
|
||||
|
||||
# Supprimer les balises CSRF et admin (inutiles en statique)
|
||||
for tag in soup.find_all('input', {'name': 'csrfmiddlewaretoken'}):
|
||||
tag.decompose()
|
||||
|
||||
fix_google_fonts(soup)
|
||||
inline_css(soup, path)
|
||||
inline_images(soup)
|
||||
inline_js(soup)
|
||||
|
||||
# Fixer les liens internes pour qu'ils pointent vers les fichiers exportés
|
||||
page_map = {
|
||||
'/': 'home.html',
|
||||
'/a-propos/': 'a-propos.html',
|
||||
'/produits/kiriq/': 'kiriq.html',
|
||||
'/produits/monitor/': 'monitor.html',
|
||||
'/produits/joolid/': 'joolid.html',
|
||||
'/carrieres/': 'carrieres.html',
|
||||
}
|
||||
for a in soup.find_all('a', href=True):
|
||||
href = a['href']
|
||||
# Supprimer les ancres avec fragment pour les pages principales
|
||||
clean = href.split('#')[0]
|
||||
if clean in page_map:
|
||||
a['href'] = page_map[clean] + (('#' + href.split('#')[1]) if '#' in href else '')
|
||||
|
||||
out_file = OUT_DIR / f"{name}.html"
|
||||
out_file.write_text(str(soup), encoding='utf-8')
|
||||
size_kb = out_file.stat().st_size / 1024
|
||||
print(f" ✅ Sauvegardé : {out_file.name} ({size_kb:.0f} KB)")
|
||||
|
||||
if __name__ == '__main__':
|
||||
print("🚀 Export HTML autonome — Jool International\n")
|
||||
for name, path in PAGES:
|
||||
export_page(name, path)
|
||||
print(f"\n🎉 Terminé ! Fichiers dans : {OUT_DIR}")
|
||||
print("\n📌 Étapes suivantes :")
|
||||
print(" 1. Ouvrez Figma Desktop")
|
||||
print(" 2. Installez le plugin 'html.to.design' depuis la communauté Figma")
|
||||
print(" 3. Dans le plugin : Local File → sélectionnez chaque .html dans figma_export/")
|
||||
22
manage.py
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env python
|
||||
"""Django's command-line utility for administrative tasks."""
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
"""Run administrative tasks."""
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings.dev')
|
||||
try:
|
||||
from django.core.management import execute_from_command_line
|
||||
except ImportError as exc:
|
||||
raise ImportError(
|
||||
"Couldn't import Django. Are you sure it's installed and "
|
||||
"available on your PYTHONPATH environment variable? Did you "
|
||||
"forget to activate a virtual environment?"
|
||||
) from exc
|
||||
execute_from_command_line(sys.argv)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
113
nginx/nginx.conf
Normal file
@@ -0,0 +1,113 @@
|
||||
upstream django {
|
||||
server web:8000;
|
||||
}
|
||||
|
||||
# ── Rate limiting ──────────────────────────────────────────
|
||||
# Zone globale : 10 req/s par IP
|
||||
limit_req_zone $binary_remote_addr zone=global:10m rate=10r/s;
|
||||
# Zone stricte pour les formulaires : 2 req/min par IP
|
||||
limit_req_zone $binary_remote_addr zone=forms:10m rate=2r/m;
|
||||
|
||||
# ── HTTP → HTTPS redirect ──────────────────────────────────
|
||||
server {
|
||||
listen 80;
|
||||
server_name jool-int.com www.jool-int.com;
|
||||
|
||||
# Let's Encrypt challenge
|
||||
location /.well-known/acme-challenge/ {
|
||||
root /var/www/certbot;
|
||||
}
|
||||
|
||||
location / {
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
}
|
||||
|
||||
# ── HTTPS ──────────────────────────────────────────────────
|
||||
server {
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
server_name jool-int.com www.jool-int.com;
|
||||
|
||||
# ── SSL ────────────────────────────────────────────────
|
||||
ssl_certificate /etc/letsencrypt/live/jool-int.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/jool-int.com/privkey.pem;
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf;
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
||||
|
||||
# ── Sécurité générale ───────────────────────────────────
|
||||
server_tokens off; # cache la version de Nginx
|
||||
client_max_body_size 10M;
|
||||
limit_req zone=global burst=20 nodelay; # rate limit global
|
||||
|
||||
# ── Headers de sécurité ─────────────────────────────────
|
||||
add_header Strict-Transport-Security "max-age=3600; includeSubDomains" always;
|
||||
add_header X-Content-Type-Options "nosniff" always;
|
||||
add_header X-Frame-Options "DENY" always;
|
||||
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
|
||||
add_header Permissions-Policy "camera=(), microphone=(), geolocation=()" always;
|
||||
add_header Content-Security-Policy
|
||||
"default-src 'self';
|
||||
script-src 'self' 'unsafe-inline' fonts.googleapis.com;
|
||||
style-src 'self' 'unsafe-inline' fonts.googleapis.com;
|
||||
font-src 'self' fonts.gstatic.com;
|
||||
img-src 'self' data:;
|
||||
frame-ancestors 'none';"
|
||||
always;
|
||||
|
||||
# ── Fichiers statiques ──────────────────────────────────
|
||||
location /static/ {
|
||||
alias /app/staticfiles/;
|
||||
expires 30d;
|
||||
add_header Cache-Control "public, immutable";
|
||||
access_log off;
|
||||
}
|
||||
|
||||
# ── CVs uploadés : jamais accessibles en direct ─────────
|
||||
location /media/careers/cvs/ {
|
||||
deny all;
|
||||
return 404;
|
||||
}
|
||||
|
||||
# ── Autres fichiers media ───────────────────────────────
|
||||
location /media/ {
|
||||
alias /app/media/;
|
||||
expires 7d;
|
||||
add_header Cache-Control "public";
|
||||
access_log off;
|
||||
}
|
||||
|
||||
# ── Admin Django : rate limit strict ───────────────────
|
||||
location /admin/ {
|
||||
limit_req zone=forms burst=5 nodelay;
|
||||
proxy_pass http://django;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_redirect off;
|
||||
}
|
||||
|
||||
# ── Formulaires (contact + candidature) ────────────────
|
||||
location ~ ^/(contact|careers/.+/apply)/ {
|
||||
limit_req zone=forms burst=3 nodelay;
|
||||
proxy_pass http://django;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_redirect off;
|
||||
proxy_read_timeout 60s;
|
||||
}
|
||||
|
||||
# ── Application Django (général) ────────────────────────
|
||||
location / {
|
||||
proxy_pass http://django;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_redirect off;
|
||||
proxy_read_timeout 60s;
|
||||
}
|
||||
}
|
||||
6
requirements.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
Django==5.1.*
|
||||
django-environ==0.11.*
|
||||
Pillow==10.*
|
||||
gunicorn==22.*
|
||||
psycopg2-binary==2.9.*
|
||||
whitenoise==6.*
|
||||
533
static/css/careers.css
Normal file
@@ -0,0 +1,533 @@
|
||||
/* ══════════════════════════════════════════
|
||||
CAREERS — JOB BOARD
|
||||
══════════════════════════════════════════ */
|
||||
.careers-hero {
|
||||
background: var(--teal-pale);
|
||||
padding: 64px 64px 48px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.careers-hero h1 {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: clamp(2rem, 4vw, 3.2rem);
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.careers-hero h1 span {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.careers-hero p {
|
||||
font-size: 17px;
|
||||
color: #555;
|
||||
font-weight: 300;
|
||||
max-width: 560px;
|
||||
margin: 0 auto;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* ── Filters ─────────────────────────────── */
|
||||
.careers-filters {
|
||||
padding: 28px 64px;
|
||||
border-bottom: 1px solid var(--gray);
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.filter-label {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: #888;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .08em;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.filter-chip {
|
||||
font-family: var(--body);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
padding: 7px 18px;
|
||||
border-radius: 100px;
|
||||
border: 1.5px solid var(--gray-3);
|
||||
color: #555;
|
||||
background: var(--white);
|
||||
cursor: pointer;
|
||||
transition: all .15s;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.filter-chip:hover {
|
||||
border-color: var(--teal);
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.filter-chip.active {
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
border-color: var(--teal);
|
||||
}
|
||||
|
||||
/* ── Job grid ─────────────────────────────── */
|
||||
.jobs-grid {
|
||||
padding: 48px 64px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
|
||||
gap: 24px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.job-card {
|
||||
background: var(--white);
|
||||
border: 1.5px solid var(--gray);
|
||||
border-radius: 16px;
|
||||
padding: 28px;
|
||||
transition: border-color .2s, box-shadow .2s, transform .2s;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.job-card:hover {
|
||||
border-color: var(--teal);
|
||||
box-shadow: 0 8px 32px rgba(25, 112, 97, .12);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.job-card-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.job-dept-badge {
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: .08em;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 12px;
|
||||
border-radius: 100px;
|
||||
background: rgba(25, 112, 97, .1);
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.job-contract {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: #888;
|
||||
padding: 4px 10px;
|
||||
border-radius: 100px;
|
||||
border: 1px solid var(--gray-3);
|
||||
}
|
||||
|
||||
.job-card-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 700;
|
||||
font-size: 18px;
|
||||
color: var(--black);
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.job-card-meta {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
font-size: 13px;
|
||||
color: #888;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.job-card-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.job-card-meta .material-icons-round {
|
||||
font-size: 16px;
|
||||
color: var(--teal-light);
|
||||
}
|
||||
|
||||
.job-card-footer {
|
||||
margin-top: auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.btn-apply {
|
||||
font-family: var(--body);
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
padding: 10px 22px;
|
||||
border-radius: 100px;
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
transition: filter .15s, transform .12s;
|
||||
}
|
||||
|
||||
.btn-apply:hover {
|
||||
filter: brightness(1.1);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.job-deadline {
|
||||
font-size: 12px;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.jobs-empty {
|
||||
grid-column: 1 / -1;
|
||||
text-align: center;
|
||||
padding: 80px 40px;
|
||||
color: #888;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* ══════════════════════════════════════════
|
||||
CAREERS — JOB DETAIL
|
||||
══════════════════════════════════════════ */
|
||||
.job-detail-hero {
|
||||
background: var(--teal-pale);
|
||||
padding: 64px 64px 48px;
|
||||
}
|
||||
|
||||
.job-detail-breadcrumb {
|
||||
font-size: 13px;
|
||||
color: #888;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.job-detail-breadcrumb a {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.job-detail-breadcrumb a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.job-detail-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: clamp(2rem, 4vw, 3rem);
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.job-detail-tags {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
.job-tag {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
padding: 6px 16px;
|
||||
border-radius: 100px;
|
||||
border: 1.5px solid var(--gray-3);
|
||||
color: #555;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.job-tag .material-icons-round {
|
||||
font-size: 15px;
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.btn-apply-lg {
|
||||
font-family: var(--display);
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
padding: 14px 32px;
|
||||
border-radius: 100px;
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
transition: filter .15s, transform .12s;
|
||||
}
|
||||
|
||||
.btn-apply-lg:hover {
|
||||
filter: brightness(1.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.job-detail-body {
|
||||
padding: 64px 64px;
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.job-section-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 800;
|
||||
font-size: 1.3rem;
|
||||
color: var(--black);
|
||||
margin: 40px 0 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.job-section-title::before {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 4px;
|
||||
height: 20px;
|
||||
background: var(--teal);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.job-detail-body p,
|
||||
.job-detail-body li {
|
||||
font-size: 16px;
|
||||
line-height: 1.75;
|
||||
color: #444;
|
||||
font-weight: 300;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.job-detail-body ul {
|
||||
list-style: disc;
|
||||
padding-left: 24px;
|
||||
}
|
||||
|
||||
.job-closed-banner {
|
||||
background: #fff3cd;
|
||||
border: 1px solid #ffc107;
|
||||
color: #856404;
|
||||
padding: 16px 24px;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 32px;
|
||||
font-size: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
/* ══════════════════════════════════════════
|
||||
CAREERS — APPLICATION FORM
|
||||
══════════════════════════════════════════ */
|
||||
.apply-wrapper {
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
padding: 64px 32px;
|
||||
}
|
||||
|
||||
.apply-job-ref {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--teal);
|
||||
background: rgba(25, 112, 97, .1);
|
||||
padding: 6px 14px;
|
||||
border-radius: 100px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.apply-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: clamp(1.8rem, 3vw, 2.4rem);
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.apply-subtitle {
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
font-weight: 300;
|
||||
margin-bottom: 40px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Form fields */
|
||||
.form-group {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: var(--black);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.form-label.required::after {
|
||||
content: ' *';
|
||||
color: #e53935;
|
||||
}
|
||||
|
||||
.form-input,
|
||||
.form-textarea,
|
||||
.form-file-input {
|
||||
width: 100%;
|
||||
font-family: var(--body);
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
padding: 12px 16px;
|
||||
border-radius: 12px;
|
||||
border: 1.5px solid var(--gray-3);
|
||||
outline: none;
|
||||
background: var(--white);
|
||||
transition: border-color .2s;
|
||||
color: var(--black);
|
||||
}
|
||||
|
||||
.form-input:focus,
|
||||
.form-textarea:focus {
|
||||
border-color: var(--teal);
|
||||
box-shadow: 0 0 0 3px rgba(25, 112, 97, .08);
|
||||
}
|
||||
|
||||
.form-textarea {
|
||||
resize: vertical;
|
||||
min-height: 160px;
|
||||
}
|
||||
|
||||
.form-file-input {
|
||||
padding: 10px 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.form-help {
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.form-error {
|
||||
font-size: 13px;
|
||||
color: #e53935;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.btn-submit {
|
||||
font-family: var(--display);
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
padding: 14px 36px;
|
||||
border-radius: 100px;
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: filter .15s, transform .12s;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.btn-submit:hover {
|
||||
filter: brightness(1.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* ── Success page ─────────────────────────── */
|
||||
.success-wrapper {
|
||||
max-width: 560px;
|
||||
margin: 80px auto;
|
||||
padding: 0 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.success-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
background: var(--teal-pale);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 28px;
|
||||
}
|
||||
|
||||
.success-icon .material-icons-round {
|
||||
font-size: 40px;
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.success-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: 2rem;
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.success-body {
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
line-height: 1.7;
|
||||
font-weight: 300;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.btn-back {
|
||||
font-family: var(--body);
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
padding: 12px 28px;
|
||||
border-radius: 100px;
|
||||
border: 1.5px solid var(--teal);
|
||||
color: var(--teal);
|
||||
transition: all .15s;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.btn-back:hover {
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
/* ── Responsive ──────────────────────────── */
|
||||
@media (max-width: 768px) {
|
||||
.careers-hero,
|
||||
.careers-filters,
|
||||
.jobs-grid,
|
||||
.job-detail-hero,
|
||||
.job-detail-body {
|
||||
padding-left: 24px;
|
||||
padding-right: 24px;
|
||||
}
|
||||
|
||||
.jobs-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.apply-wrapper {
|
||||
padding: 40px 20px;
|
||||
}
|
||||
}
|
||||
1753
static/css/home.css
Normal file
BIN
static/img/JooL Monitor.jpg
Normal file
|
After Width: | Height: | Size: 513 KiB |
BIN
static/img/Kiriq AI.jpg
Normal file
|
After Width: | Height: | Size: 399 KiB |
BIN
static/img/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
static/img/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 511 B |
BIN
static/img/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
static/img/favicon.ico
Normal file
|
After Width: | Height: | Size: 533 B |
BIN
static/img/icon-192.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
static/img/icon-512.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
static/img/logo (2).png
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
static/img/logo.png
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
static/img/partenaires/Archetyp.jpeg
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
463
static/img/partenaires/Tony's_Chocolonely.svg
Normal file
@@ -0,0 +1,463 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1000.0001"
|
||||
height="507.81265"
|
||||
viewBox="0 0 1000.0001 507.81266"
|
||||
version="1.1"
|
||||
id="svg53"
|
||||
sodipodi:docname="62baf26956eaf555635bcef2_Frame.svg"
|
||||
style="fill:none"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata57">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#111111"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
id="namedview55"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.45467033"
|
||||
inkscape:cx="513.51661"
|
||||
inkscape:cy="0.29789045"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg53" />
|
||||
<defs
|
||||
id="defs51">
|
||||
<clipPath
|
||||
id="clip0_871_2377">
|
||||
<rect
|
||||
width="181.356"
|
||||
height="50.653801"
|
||||
transform="translate(0.322021,0.904297)"
|
||||
id="rect48"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#ffffff" />
|
||||
</clipPath>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter2473"
|
||||
x="-0.020400483"
|
||||
width="1.040801"
|
||||
y="-0.020399516"
|
||||
height="1.040799">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.67422904"
|
||||
id="feGaussianBlur2475" />
|
||||
</filter>
|
||||
</defs>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path157"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="M 0.90383,227.1525 0,22.732402 l 161.7102,5.007 4.23684,193.584198 -28.34045,2.4961 -0.8345,-7.4982 c 0,0 -0.83202,-30.0119 -16.67245,-30.0119 -12.50745,0 -9.16701,30.0119 -9.16701,30.0119 l 0.12388,82.7508 c 0,0 2.25585,18.5717 15.60025,28.5681 6.86164,5.1531 20.99594,5.735 20.99594,5.735 l 3.90503,49.1111 -128.21671,-5.4972 -1.71603,-46.0108 c 0,0 8.33746,2.5035 18.34391,-7.503 9.99653,-10.0016 9.47158,-79.6777 9.47158,-79.6777 L 49.2498,200.4811 c 0,0 -0.052,-20.2877 -12.50248,-21.6745 -7.50545,-0.832 -8.33746,24.178 -8.33746,24.178 l 0.83201,27.506 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path161"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 274.57231,344.8154 c -27.50349,-0.8395 -27.4391,-27.4392 -27.4391,-27.4392 l -3.97188,-123.5736 c 0,0 -0.78991,-20.8327 27.2014,-17.6952 19.23535,2.1568 16.90027,22.717 16.90027,22.717 l 0.89144,125.5671 c 0,0 -2.68176,20.7558 -13.58213,20.4239 M 346.5167,40.140102 c -11.32132,-15.0977 -32.96606,-13.7778 -32.96606,-13.7778 l -94.27255,-1.711 c 0,0 -16.87302,0.1337 -26.38423,9.6424 -11.35598,11.3485 -14.68404,31.0742 -14.68404,31.0742 L 179.5866,327.0831 c 0,0 -3.33795,39.1814 6.6685,50.8469 10.00395,11.673 24.168,9.999 24.168,9.999 l 112.34904,3.7367 c 0,0 8.57022,0.5497 19.40621,-8.6198 10.83846,-9.167 9.77615,-38.0597 9.77615,-38.0597 l 4.94751,-249.440498 c 0,0 1.53774,-39.5182 -10.38531,-55.4056" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path165"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 362.51611,381.756 v -44.6042 c 0,0 12.10134,1.6168 16.93989,-3.2267 4.84103,-4.8385 4.84103,-20.1615 4.84103,-20.1615 l 1.04498,-119.7207 c 0,0 0.90877,-5.9677 -4.22446,-11.3262 -5.26447,-5.4972 -15.13471,-6.4135 -15.13471,-6.4135 l -5.07132,-151.854698 89.52561,4.0338 67.68776,262.589298 0.30458,-83.2732 c 0,0 -1.61699,-11.294 -5.65077,-13.7184 -4.03625,-2.4217 -12.9482,-2.4886 -12.9482,-2.4886 l -19.54736,-159.885098 90.33041,-4.8387 3.46424,169.636798 -2.92691,-0.3443 c 0,0 -9.9792,0.3443 -15.62006,4.3805 -5.65075,4.0287 -3.23148,11.2866 -3.23148,11.2866 l 18.42068,166.1427 -75.46311,2.2855 -59.10266,-112.0047 -0.23525,43.0912 c 0,0 -2.42175,14.5183 5.64581,19.3567 8.06509,4.8436 19.35916,6.4532 19.35916,6.4532 l 0.79983,45.4115 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path169"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 578.47878,22.029102 6.37631,148.417798 c 0,0 8.77822,0.9782 17.54656,6.827 8.7708,5.839 14.61718,14.6221 14.61718,14.6221 l 30.30906,54.5762 -2.52823,62.7947 c 0,0 1.94879,15.5904 -6.82697,22.4174 -8.77081,6.8243 -22.39503,5.5442 -22.39503,5.5442 l -4.82122,43.3909 133.70651,-2.3004 -1.5204,-49.2918 c 0,0 -21.459,2.6571 -29.2492,-5.1431 -7.7977,-7.7977 -6.2674,-21.5928 -6.2674,-21.5928 l -2.9244,-44.379 47.5684,-60.0238 c 0,0 3.3553,-6.3639 8.8104,-10.7591 5.1976,-4.1824 18.9159,-3.036 18.9159,-3.036 l 2.6447,-160.727098 -88.1836,1.2802 -0.7007,144.156298 c 0,0 11.4451,-0.4829 18.75,3.6276 9.682,5.4476 7.0572,14.5849 7.0572,14.5849 l -34.3007,37.7354 -26.58976,-40.8257 c 0,0 -3.92235,-8.3053 0,-12.0987 7.21079,-6.9782 19.26012,-7.2233 19.26012,-7.2233 l 0.73294,-138.376698 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path173"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 747.72345,281.4481 c 0,0 35.5859,0.8718 53.8159,-15.6151 18.2226,-16.4867 23.4301,-39.9242 4.3334,-55.5467 -19.0918,-15.6176 -49.4627,-10.4151 -54.6752,6.079 -5.21,16.4843 16.4917,35.5811 16.4917,35.5811 l -24.3017,-0.8692 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path177"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 93.40265,396.4284 3.18444,36.66063 -34.26112,1.59223 c 0,0 -0.38876,-23.55886 -17.13799,-23.90056 -19.12392,-0.4036 -25.32687,23.36569 -24.66325,38.31965 0.76762,17.33113 6.91364,32.3148 29.2839,32.05727 26.50556,-0.30954 25.89145,-24.03925 25.89145,-24.03925 l 0.12629,-6.52486 18.8144,0.35905 0.59677,51.28768 -23.0636,0.29962 -2.08746,-13.12154 c 0,0 -2.24595,11.15046 -29.67019,11.40055 -20.65672,0.20058 -41.41744,-26.99833 -39.84998,-54.97972 1.63184,-29.19225 8.95157,-55.76475 47.556,-57.20345 26.82005,-0.9979 29.82372,15.8009 29.82372,15.8009 l 1.38668,-8.7312 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path181"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 383.21022,402.6173 4.62311,41.63286 -20.6468,-2.07757 c 0,0 -4.89055,-22.73429 -20.32984,-23.06109 -24.72764,-0.5275 -28.02844,20.80277 -27.40692,35.25404 0.72307,16.74676 5.23475,30.04906 26.27033,29.36068 20.56262,-0.6884 21.1272,-18.29193 21.1272,-18.29193 l 24.04171,-1.15392 0.33429,37.15582 -20.95386,1.44117 -1.96365,-7.68125 c 0,0 -4.74693,9.6152 -30.5542,9.86035 -19.43345,0.18571 -36.64077,-23.25676 -35.17238,-50.3071 1.53774,-28.22159 4.53893,-50.32446 40.86523,-51.71606 25.22783,-0.9682 30.03915,16.5115 30.03915,16.5115 l 0.1833,-18.074 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path185"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.20169,390.5578 -1.24059,28.182 c 0,0 7.89917,1.513 8.37461,3.645 0.47543,2.13202 1.65659,8.28051 1.65659,8.28051 l 1.34213,53.81094 c 0,0 0.0817,2.45643 -3.22653,4.34579 -3.31072,1.8968 -5.52694,0.85926 -5.52694,0.85926 l -1.18365,12.78228 42.11324,0.94098 -3.30823,-18.68563 c 0,0 -6.77993,1.38421 -9.85787,-1.45355 -3.07548,-2.84023 -3.23396,-9.96188 -3.23396,-9.96188 l 0.0693,-22.44701 37.15582,-1.25298 2.36975,30.4081 c 0,0 -0.007,4.25417 -2.36975,5.91573 -2.36727,1.65411 -4.25664,1.41392 -4.25664,1.41392 l -9.90739,-0.55962 -1.65908,18.81438 49.98023,0.3739 -2.3648,-19.40372 c 0,0 -10.76664,1.84479 -13.40631,-1.19355 -1.88936,-2.17907 -1.99089,-3.89016 -1.99089,-3.89016 l 1.66402,-65.76619 c 0,0 -1.1861,-2.1271 1.6566,-4.0214 2.83033,-1.8918 5.43533,-1.1836 5.43533,-1.1836 l 0.71563,-17.5095 -37.73279,-2.7114 0.65619,17.3955 c 0,0 7.09689,-1.8993 8.98872,0.7082 1.8968,2.6025 1.41888,5.9157 1.41888,5.9157 l 0.55221,18.02448 -36.44021,0.0618 0.0891,-8.11956 c 0,0 -0.22533,-2.60002 3.07548,-4.02382 3.31072,-1.4164 6.39116,-0.7033 6.39116,-0.7033 l 0.71562,-29.3829 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path189"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 256.34107,492.24568 c -12.03943,1.20098 -30.66563,-14.72614 -29.46467,-44.81482 1.20841,-30.09366 11.10589,-34.33536 20.43633,-34.63506 16.84333,-0.5373 26.47834,12.64614 27.37968,38.22065 0.9063,25.57698 -6.31686,40.02331 -18.35134,41.22923 M 240.18118,398.5204 c -22.8655,0.3021 -40.32293,19.5597 -41.22674,45.43383 -0.90136,25.88156 10.23178,64.99857 46.94437,63.19587 36.71258,-1.80764 48.14781,-17.75704 47.84819,-52.9616 -0.30705,-35.212 -21.36987,-56.099 -53.56582,-55.6681" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path193"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 464.45879,454.49506 c -4.48444,27.19644 -13.68365,34.53845 -25.71813,35.74437 -12.03695,1.20345 -25.10154,-11.95276 -23.89314,-42.0439 1.20098,-30.08623 15.77607,-32.36433 25.10155,-32.66143 16.85074,-0.5448 28.66978,13.71331 24.50972,38.96096 M 445.63449,401.999 c -32.36432,-0.9014 -48.94516,24.25218 -49.84403,50.12878 -0.90136,25.88156 4.24921,53.07056 40.67702,55.4626 36.67793,2.4069 46.22131,-14.74348 51.45854,-50.9831 C 492.96267,421.7543 477.823,402.9053 445.63449,401.999" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path197"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 617.84293,485.46724 c -12.09144,0.36897 -22.4916,-9.011 -21.29063,-39.09471 1.20345,-30.10353 11.01179,-31.45063 20.33976,-31.75023 16.84825,-0.5448 24.50229,13.74803 25.40859,39.32254 0.89638,25.57945 -4.80142,30.91821 -24.45772,31.5224 m 45.5131,-30.06885 c -0.29962,-35.20949 -15.77854,-56.01729 -47.97942,-55.59389 -22.86551,0.3071 -40.53343,21.3031 -41.43477,47.18212 -0.90134,25.88156 12.71296,56.65863 49.47508,56.65863 32.82985,0 40.24368,-13.0423 39.93911,-48.24686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path201"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 489.33625,395.5036 47.01618,1.3644 0.56209,14.3027 c 0,0 -13.09182,-0.2774 -14.78804,3.0977 -1.34459,2.6769 -0.83944,9.53105 -0.83944,9.53105 l 1.46097,58.26818 22.72685,-0.25504 c 0,0 5.33131,0 7.57477,-3.0854 2.241,-3.09281 0.48783,-21.26585 0.48783,-21.26585 h 13.73812 l 8.42662,49.35869 -84.30574,-2.33014 -0.28229,-10.93997 c 0,0 6.46049,-1.2208 8.42414,-5.42791 1.95621,-4.20959 1.29506,-9.90491 1.29506,-9.90491 l -2.24098,-56.9211 c 0,0 0.2798,-6.7304 -1.96613,-9.2487 -2.24099,-2.5208 -6.16581,-1.1242 -6.16581,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path205"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 839.80795,393.7417 42.5763,2.1742 0.9014,17.5193 c 0,0 -5.9603,0.064 -8.1666,2.8699 -2.2064,2.8031 -1.3966,9.4642 -1.3966,9.4642 l 3.4716,61.79928 18.0716,-0.12629 c 0,0 4.6602,0 6.6239,-3.07795 1.9587,-3.08786 0.676,-19.03726 0.676,-19.03726 l 23.2468,-0.006 0.7429,37.86899 -83.8179,-1.41394 0.8345,-10.59329 c 0,0 8.3399,0.56458 10.0535,-3.64255 1.721,-4.20464 0.8394,-9.21901 0.8394,-9.21901 l -2.2682,-54.52409 c 0,0 0.2427,-6.73039 -1.716,-9.24869 -1.9661,-2.5258 -9.9693,-1.1242 -9.9693,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path209"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 668.34439,505.22236 -1.1564,-20.92662 c 0,0 1.77794,0.19314 4.4696,-1.69622 2.69661,-1.88192 2.53318,-5.30655 2.53318,-5.30655 L 672.45989,420.466 c 0,0 0.047,-3.1473 -2.10975,-4.7643 -2.15432,-1.617 -5.89591,-1.2109 -5.89591,-1.2109 l -0.88401,-15.5705 26.39663,-0.5374 39.5157,60.56863 0.3491,-42.25683 c 0,0 0.2551,-4.019 -1.8819,-5.3809 -2.9666,-1.8869 -6.6314,-2.7189 -6.6314,-2.7189 l -0.9806,-19.4013 39.1839,-2.4935 -0.463,22.1177 c 0,0 -6.5868,-0.4136 -9.0111,1.7408 -2.4217,2.1543 -2.704,6.1361 -2.704,6.1361 l 2.1519,87.81697 -24.7822,-1.88688 -35.9102,-76.78789 1.3842,49.61869 c 0,0 -0.2155,5.13819 1.9413,6.48774 2.1568,1.34459 8.6198,1.81507 8.6198,1.81507 l 1.9686,22.54112 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path213"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 764.58065,398.9195 0.5348,9.1547 c 0,0 5.2942,-0.1685 6.6413,1.7135 1.3495,1.8869 1.4486,3.6822 1.4486,3.6822 l -0.4953,73.2097 c 0,0 0,1.87946 -2.1518,3.50634 -2.1544,1.61203 -5.6607,0.80726 -5.6607,0.80726 l -0.045,12.4381 74.7302,0.89144 -2.506,-40.2635 -16.5016,0.53487 c 0,0 0.8989,14.95395 -1.2604,17.65305 -2.1518,2.6867 -5.1159,2.15184 -5.1159,2.15184 l -26.0375,-2.76099 -0.1436,-25.34669 11.4575,-0.83697 c 0,0 4.0388,-0.5423 5.6557,1.0722 1.617,1.61945 1.0822,5.92809 1.0822,5.92809 h 7.0003 l 0.6562,-24.97276 -13.7654,-0.90879 c 0,0 -0.3071,6.54963 -1.6591,8.16662 -1.3421,1.61696 -3.1151,1.47582 -3.1151,1.47582 l -6.3639,0.0916 -0.1387,-32.30243 28.016,-0.8073 c 0,0 4.5786,0 5.9232,2.4193 1.3495,2.4267 0.3541,8.89216 0.3541,8.89216 l 9.9619,0.53735 0.9929,-27.20391 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path217"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 893.18555,397.6284 2.2262,16.8062 c 0,0 5.5913,-0.671 7.6862,2.3326 2.0973,3.0012 6.6363,7.68375 6.6363,7.68375 l 29.3606,36.07125 0.3071,27.87492 c 0,0 0.7032,2.0008 -1.7507,4.34084 -2.444,2.33508 -5.938,1.66897 -5.938,1.66897 l 0.3913,10.50663 42.081,-0.64876 -0.2625,-14.29527 c 0,0 -3.2835,-0.39125 -6.3292,-2.53318 -1.8844,-1.32478 -2.0503,-4.82618 -2.0503,-4.82618 l 0.7725,-24.44039 11.7943,-29.23933 c 0,0 0.6785,-4.73455 5.7201,-7.69855 3.7144,-2.189 9.3478,-1.4338 9.3478,-1.4338 l -0.2873,-18.3637 -37.8689,-2.1023 -0.1733,12.859 c 0,0 8.7906,-0.1361 9.6845,2.8328 0.4928,1.6368 -1.2307,3.7466 -1.2307,3.7466 l -16.197,25.58687 -25.3417,-28.23647 c 0,0 -2.2608,-3.0334 -0.9583,-4.269 2.6768,-2.5604 5.4997,-1.3941 5.4997,-1.3941 l -0.6859,-12.6734 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path221"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 989.09715,320.7912 c 0,0 -1.3545,-34.3428 -12.2648,-55.6507 -10.9003,-21.3154 -47.4222,-7.5749 -70.9217,-10.8658 -32.555,-4.566 -29.9846,-24.8638 -29.9846,-24.8638 l -2.5704,-61.8116 c 0,0 -5.1208,-16.3977 14.1839,-15.9196 24.527,0.5917 22.7367,32.5896 22.7367,32.5896 l 3.8704,44.171 76.2134,5.4527 9.64005,-206.658798 -42.24955,-1.1886 -10.1897,134.582998 c 0,0 -2.397,-87.569398 -4.2368,-101.104398 -3.9644,-29.1948 -36.0811,-31.7973 -36.0811,-31.7973 l -38.2207,2.4887 c 0,0 -19.0793,0 -47.6971,5.9206 -28.6302,5.9207 -29.9921,34.3304 -29.9921,34.3304 l 2.5282,95.062498 c 0,0 -0.2476,10.8881 0.1287,26.1986 8.0948,1.4683 16.1698,5.0465 23.0067,11.0959 22.4247,19.8272 16.3134,49.5716 -5.0936,70.5057 -1.6863,1.6492 -3.5113,3.1473 -5.423,4.5341 1.9042,3.9717 4.0908,7.0597 6.6091,8.9192 37.6882,28.0237 66.2292,14.3772 81.2228,20.2978 14.9911,5.9207 12.6511,23.8263 12.6511,23.8263 l -0.079,11.6208 c 0,0 -4.5266,8.865 -18.2919,9.1473 -56.0272,1.144 -54.8832,-28.5831 -54.8832,-28.5831 l -1.3099,-13.4064 -62.7205,-11.7546 2.5803,85.1278 47.6971,-1.1885 v -32.0772 c 0.8716,4.3161 2.5084,9.1993 5.4551,14.3176 9.541,16.5759 34.0705,18.9481 34.0705,18.9481 l 99.4924,1.1837 c 0,0 15.5433,-2.2633 24.4008,-10.1971 11.0564,-9.9149 8.3102,-27.6918 8.3102,-27.6918 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path229"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 9.24203,216.8137 8.75843,-172.786498 129.16264,7.0399 8.47118,163.327198 -9.38987,0.4805 -6.458,-41.0016 c 0,0 -3.50881,-18.7598 -25.89889,-16.3405 -23.45733,2.5356 -18.74507,43.5544 -18.74507,43.5544 l -2.14689,102.5654 c 0,0 -1.13659,19.0869 16.14997,31.7502 5.74981,4.2072 23.01161,4.9103 23.01161,4.9103 l -1.81507,31.4532 -94.91886,-1.4412 -6.09153,-36.8785 c 0,0 16.9077,3.6921 24.0442,-12.5298 4.84847,-11.0215 6.12124,-26.5302 6.12124,-26.5302 L 58.46207,173.8732 c 0,0 -0.28725,-29.4547 -25.05947,-30.6333 -12.70306,-0.6067 -10.85578,30.0168 -10.85578,30.0168 l 0.60915,46.5804 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path233"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 306.39212,175.6879 -4.71969,162.4729 c 0,0 -5.54923,17.6778 -33.70397,18.2052 -35.732,0.676 -33.70646,-24.2646 -33.70646,-24.2646 l -2.02554,-155.7449 c 0,0 -2.13452,-22.5262 35.732,-24.9381 44.49043,-2.8304 38.42366,24.2695 38.42366,24.2695 m 37.26478,160.2912 -4.22444,-233.1072 c 0,0 1.53774,-39.515698 -10.37788,-55.403198 -11.32875,-15.0901 -28.53856,-12.3712 -28.53856,-12.3712 l -53.52867,3.6401 c 0,0 -16.87303,0.1281 -26.37928,9.6498 -11.35598,11.3386 -14.69146,31.0642 -14.69146,31.0642 L 191.11123,329.3999 c 0,0 -4.95,25.1634 5.05151,36.8314 10.00645,11.668 24.1779,10.0065 24.1779,10.0065 l 94.14628,6.4208 c 0,0 8.56528,0.5547 19.40125,-8.6123 10.83352,-9.172 9.76873,-38.0672 9.76873,-38.0672" />
|
||||
<path
|
||||
d="m 111.6924,612.0832 c -21.897,-0.403 -39.319,-18.491 -38.909,-40.394 0.407,-21.899 18.499,-39.315 40.392,-38.915 21.902,0.411 39.323,18.495 38.913,40.394 -0.405,21.902 -18.487,39.328 -40.396,38.915"
|
||||
style="opacity:0.39500002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter2473)"
|
||||
id="path1550"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
transform="matrix(2.4436835,0,0,-2.4436835,-87.3569,1499.7094)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path237"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 375.50048,373.4698 1.53525,-33.2507 c 0,0 8.98378,-2.2684 13.31221,-6.6587 4.32103,-4.3854 4.61075,-21.7784 4.61075,-21.7784 l 3.85549,-131.2625 c 0,0 0.81469,-5.4205 -3.77377,-10.2813 -4.70484,-4.9847 -13.52269,-5.8143 -13.52269,-5.8143 l -5.98753,-109.226398 64.0774,1.1514 82.00531,289.310398 5.30658,-162.0296 c 0,0 0.52743,-7.4833 -5.04657,-12.4356 -7.31726,-6.4977 -17.34104,-5.1061 -17.34104,-5.1061 l -11.31636,-114.748398 71.13714,-0.9806 -2.033,131.413498 c 0,0 -9.44186,-4.1377 -16.57587,3.6624 -4.2096,4.5933 -2.88482,10.2391 -2.88482,10.2391 l 13.23792,177.209 -58.7758,1.3198 -69.47311,-157.3891 -4.29872,96.5629 c 0,0 -1.09202,13.3817 6.11381,17.772 7.21077,4.3878 21.17177,8.4637 21.17177,8.4637 l -1.79527,33.3771 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path241"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 592.7701,44.775602 0.61907,100.913698 c 0,0 7.81249,0.8716 15.625,6.0791 7.81499,5.2101 13.02001,13.0225 13.02001,13.0225 l 34.47904,64.7262 -3.67473,91.2689 c 0,0 1.73088,13.8868 -6.08163,19.9659 -7.81498,6.0743 -19.9485,4.9351 -19.9485,4.9351 l -5.29666,25.1907 110.75435,-0.1263 -4.6999,-30.8984 c 0,0 -17.9081,4.9327 -24.849,-2.0132 -6.9458,-6.9359 -6.2425,-18.4775 -6.2425,-18.4775 l -1.825,-66.1477 49.5791,-70.2754 c 0,0 2.9912,-5.6705 7.8496,-9.5878 4.6207,-3.7218 16.8508,-2.7017 16.8508,-2.7017 l -2.3178,-131.074198 -55.6557,5.4402 -8.8352,108.676798 c 0,0 9.9346,0.083 16.6997,3.2389 21.407,9.9594 3.8604,31.3689 3.8604,31.3689 l -37.7353,49.6881 -39.18135,-64.7882 c 0,0 -4.74446,-8.0453 -3.16215,-12.6436 5.44523,-15.8454 26.01281,-12.0964 26.01281,-12.0964 L 658.93497,44.414002 Z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path245"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 822.08785,277.9564 c 32.7679,21.4294 77.5431,12.5124 90.8355,16.9672 17.5614,5.8835 16.2664,22.2216 16.2664,22.2216 l 1.503,13.5377 c 0,0 6.983,29.8311 -55.3511,27.7857 -49.6212,-1.6269 -50.3839,-36.8291 -50.3839,-36.8291 l -0.2476,-2.7634 -45.9514,-4.279 5.2075,60.5365 29.1725,0.4482 -0.5002,-50.827 c 0,0 9.4542,20.9314 18.0963,35.727 8.6346,14.783 30.2273,12.6461 30.2273,12.6461 l 85.0288,1.1167 c 0,0 13.5252,2.0776 26.7185,-7.3445 7.7927,-5.5665 7.8373,-17.5094 7.8373,-17.5094 l -1.8349,-26.617 c 0,0 0.8593,-24.0888 -9.0209,-43.1111 -9.8802,-19.0126 -39.9069,-17.1974 -61.2768,-14.9242 -48.9575,5.2123 -45.1045,-53.6303 -45.1045,-53.6303 l -2.3277,-55.1432 c 0,0 -3.7589,-29.2863 28.6797,-26.404 22.1251,1.9686 26.6641,27.392 26.6641,27.392 l 9.9841,61.8786 46.2337,2.2682 16.5808,-170.817798 -17.861,-0.098 -25.2501,150.898998 c 0,0 -14.3721,-110.229498 -16.041,-122.310998 -3.5906,-26.0351 -22.0509,-31.0692 -22.0509,-31.0692 l -13.5301,-1.5056 c 0,0 -37.3589,3.0458 -63.436,7.4831 -36.3883,6.1833 -28.9794,42.5343 -28.9794,42.5343 0,0 7.4089,83.191498 7.2851,89.376998 0,0 21.5779,1.877 28.4841,27.0207 12.5347,45.6096 -15.6572,65.3452 -15.6572,65.3452" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path249"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 757.42655,271.7193 c 0,0 21.4738,2.9616 35.7493,-9.952 14.2755,-12.9209 18.3588,-31.2748 3.3999,-43.5173 -14.9565,-12.235 -32.4436,-8.2878 -36.5269,4.6281 -4.0759,12.9136 20.9266,35.1551 20.9266,35.1551 l -25.0099,-0.6216 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path295"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 86.21539,98.307702 c 0.0273,-54.321 44.08928,-98.33859976 98.42521,-98.30629976 54.31114,0.028 98.33108,44.09669976 98.30633,98.42009976 C 282.90983,152.755 238.83784,196.7527 184.51925,196.728 130.19077,196.7 86.17825,152.6435 86.21539,98.307702" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path299"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 157.44936,108.6685 c -4.14026,-0.7479 -5.41304,-5.3908 -5.41304,-5.3908 l -15.98901,-5.564098 c 0,0 -1.45851,14.084798 8.85004,20.215998 10.35063,6.1436 17.10084,7.2627 17.10084,7.2627 l 35.93258,10.3359 c 14.65185,3.843 17.71742,-0.577 17.71742,-0.577 -20.30261,-9.4865 -21.18168,-14.117 -21.18168,-14.117 z m 82.02016,-7.1637 c 0.81715,4.2195 -0.0372,7.3568 -0.0372,7.3568 l 13.2107,2.3475 c -0.70821,3.6722 -1.69127,7.2183 -2.95415,10.6577 -10.71713,-2.4366 -27.10729,-6.2772 -30.96774,-7.9091 -5.84142,-2.4589 -4.51168,-4.8088 -3.16213,-5.4476 0,0 -0.14857,-3.977 -1.72099,-5.9629 -1.61945,-2.0156 -4.8336,-4.251598 -4.8336,-4.251598 0,0 -22.08797,6.762498 -8.15671,22.702098 5.89838,6.7649 17.27914,10.0038 17.27914,10.0038 l 23.64552,6.26 c -12.20038,17.7793 -32.51042,29.6132 -55.69783,30.0515 -36.42287,0.6736 -66.74925,-26.924 -70.06988,-62.6213 l 16.56845,4.3432 c 0,0 -2.11471,-7.3741 -2.0825,-9.652298 0.006,-2.2657 0.10901,-2.6693 0.10901,-2.6693 l -14.64195,-4.5142 c 0.17829,-2.0925 0.45562,-4.1354 0.80477,-6.1807 l 40.52104,12.6065 c 0,0 0.55962,4.231898 3.33299,5.046498 0,0 8.08491,2.6942 10.4497,-5.937998 2.36232,-8.6247 -5.40066,-13.4509 -11.09104,-15.7066 -4.43245,-1.7532 -28.13987,-8.5282 -38.51033,-11.4625 10.49674,-23.9453 34.17445,-40.8753 62.037,-41.4101 38.01755,-0.7057 69.43348,29.4547 70.32245,67.4477 l -17.00427,-4.0537 c 0,0 1.8324,4.9549 2.64955,8.956598 M 182.92729,0.04860224 C 128.70528,1.0466022 85.5644,45.836602 86.57966,100.0735 c 1.00782,54.227 45.80778,97.353 100.01987,96.3625 54.2344,-1.0177 97.37281,-45.7978 96.35754,-100.024898 C 281.9542,42.176702 237.17901,-0.97399776 182.92729,0.04860224 m 3.20672,64.81289976 4.2814,-3.4965 -10.78397,1.1639 2.8328,-1.9216 c 0,0 -21.64967,3.3603 -27.40691,6.8492 -5.76962,3.5039 -7.54012,5.5816 -7.54012,5.5816 0,0 10.04853,3.0234 12.91353,4.0881 2.85758,1.0475 5.08866,2.8155 5.08866,2.8155 4.39035,-1.5773 9.167,-1.5749 9.167,-1.5749 l 9.99406,-0.8617 -6.83686,-3.271 11.8859,-0.7553 -6.78486,-3.0309 18.74505,-1.8028 z m 28.94961,14.2607 -4.01149,-1.3695 2.40936,4.1131 -7.37669,-3.6847 3.60539,4.0834 -8.42661,-1.5675 5.87114,6.2425 -6.00981,-0.5348 6.0841,3.687 -1.63926,0.3963 3.72425,2.2311 c 0,0 5.75723,3.4222 8.38452,6.4085 2.61241,2.998598 2.33508,10.469498 2.33508,10.469498 0,0 2.47128,1.2331 5.77705,2.127 3.86786,1.0352 8.64946,1.9736 8.64946,1.9736 0,0 2.74862,-12.6709 -2.83776,-20.205998 -5.57647,-7.5476 -16.53873,-14.3695 -16.53873,-14.3695" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path303"
|
||||
style="fill:#f7941e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 234.34398,113.7034 c 0,0 -4.78408,-0.941 -8.65195,-1.9786 -3.31567,-0.8814 -5.76714,-2.127 -5.76714,-2.127 0,0 0.26248,-7.4683 -2.35489,-10.459598 -2.62233,-2.9913 -8.37957,-6.4134 -8.37957,-6.4134 l -3.7094,-2.2336 1.6467,-0.3887 -6.10639,-3.6822 6.02714,0.5274 -5.88352,-6.2425 8.42413,1.5675 -3.59052,-4.0834 7.36679,3.6748 -2.41929,-4.1107 4.00654,1.3719 c 0,0 10.97217,6.8195 16.55361,14.3769 5.58637,7.535298 2.83776,20.201198 2.83776,20.201198 m -51.51301,-43.254798 6.78238,3.0458 -11.88589,0.7452 6.82448,3.2663 -9.98663,0.8641 c 0,0 -4.77912,0 -9.15958,1.5749 0,0 -2.24346,-1.763 -5.07875,-2.8129 -2.87984,-1.0575 -12.916,-4.0958 -12.916,-4.0958 0,0 1.76059,-2.0774 7.52773,-5.5789 5.76466,-3.4865 27.40197,-6.8443 27.40197,-6.8443 l -2.84272,1.9291 10.80378,-1.1764 -4.27645,3.509 15.55817,3.7711 z m 32.71099,64.510698 c 0,0 -3.08043,4.4177 -17.7422,0.5696 l -35.93008,-10.321 c 0,0 -6.75764,-1.1366 -17.09342,-7.2727 -10.32588,-6.1385 -8.86243,-20.215898 -8.86243,-20.215898 l 16.00636,5.559098 c 0,0 1.27773,4.6429 5.43284,5.4007 l 36.98992,12.1583 c 0,0 0.87659,4.6355 21.19901,14.1219 M 183.37078,29.165002 c -27.86253,0.5248 -51.52291,17.4548 -62.02214,41.4049 10.35066,2.9343 34.05808,9.7143 38.50043,11.465 5.70771,2.2509 13.44593,7.0918 11.09847,15.7117 -2.37223,8.622098 -10.45464,5.928098 -10.45464,5.928098 -2.74862,-0.8171 -3.33054,-5.034198 -3.33054,-5.034198 l -40.51608,-12.6065 c -0.35409,2.0355 -0.63638,4.0808 -0.81467,6.1682 l 14.65928,4.5193 c 0,0 -0.11143,0.4085 -0.12629,2.6717 -0.0297,2.265698 2.08003,9.639998 2.08003,9.639998 l -16.5734,-4.3408 c 3.33795,35.6949 33.65443,63.3047 70.07234,62.6263 23.20476,-0.4407 43.49252,-12.2623 55.70775,-30.054 l -23.64056,-6.245 c 0,0 -11.38322,-3.2563 -17.29152,-10.0189 -13.92631,-15.9395 8.16909,-22.694598 8.16909,-22.694598 0,0 3.21166,2.233598 4.81875,4.241798 1.57982,1.9983 1.72839,5.9702 1.72839,5.9702 -1.33467,0.6315 -2.6669,2.9838 3.17454,5.4477 3.84558,1.6218 20.2407,5.4651 30.95536,7.9091 1.26038,-3.4395 2.25583,-6.9904 2.95166,-10.6553 l -13.19832,-2.3573 c 0,0 0.84687,-3.1374 0.0223,-7.352 -0.80724,-3.991698 -2.63223,-8.958998 -2.63223,-8.958998 l 16.99685,4.0586 c -0.88649,-37.9879 -32.30738,-68.1632 -70.33484,-67.445" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path307"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.39707,121.5017 c 0.1287,0.4606 0.43086,0.7678 0.91126,0.9262 0.48533,0.1578 1.0821,0.1318 1.78782,-0.054 0.72801,-0.2031 1.24555,-0.4953 1.57488,-0.8717 0.32687,-0.3837 0.4284,-0.8172 0.29221,-1.2974 -0.26743,-0.9832 -1.16879,-1.2605 -2.69661,-0.8421 -1.52288,0.4234 -2.14689,1.1318 -1.86956,2.1395 m 6.4902,-1.867 c 0.36401,1.3098 0.27238,2.4217 -0.26743,3.3379 -0.53735,0.9089 -1.48327,1.5525 -2.82043,1.9192 -1.3347,0.3714 -2.4688,0.3019 -3.40234,-0.1908 -0.94592,-0.5051 -1.58478,-1.3916 -1.94136,-2.6619 -0.34172,-1.2554 -0.24515,-2.345 0.29466,-3.2736 0.53735,-0.9236 1.45108,-1.565 2.73871,-1.9166 1.3446,-0.3789 2.501,-0.317 3.45188,0.169 0.94838,0.4927 1.6021,1.3717 1.94631,2.6173" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path311"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.2935,110.9949 c 0.057,0.4209 0.30211,0.7206 0.72555,0.9037 0.41847,0.1858 0.97811,0.2205 1.66649,0.1189 0.67107,-0.104 1.19355,-0.302 1.55756,-0.6017 0.36153,-0.2972 0.50762,-0.6463 0.44819,-1.0475 -0.057,-0.4059 -0.30705,-0.7031 -0.74287,-0.8962 -0.43086,-0.1932 -0.98553,-0.2353 -1.66154,-0.1356 -0.66858,0.104 -1.18365,0.3046 -1.54765,0.6043 -0.35409,0.3046 -0.50763,0.6586 -0.44573,1.0549 m -1.00038,1.9883 0.49772,-0.072 c -0.96079,-0.5398 -1.52041,-1.3148 -1.67145,-2.3177 -0.14356,-0.9832 0.12387,-1.825 0.78991,-2.5233 0.67354,-0.6959 1.64917,-1.1416 2.93929,-1.3372 1.32231,-0.1907 2.41926,-0.059 3.28595,0.4184 0.85926,0.4781 1.37184,1.2085 1.52041,2.2138 0.052,0.3963 0.0422,0.7677 -0.0644,1.1119 -0.0645,0.2154 -0.22286,0.5571 -0.46554,1.0227 l 1.24802,-0.1883 c 0.33429,-0.046 0.48039,-0.1956 0.44325,-0.4532 -0.0149,-0.104 -0.0544,-0.2252 -0.10159,-0.3614 -0.052,-0.1801 -0.0891,-0.322 -0.104,-0.4086 -0.0719,-0.4854 0.17588,-0.7751 0.73544,-0.8569 0.65124,-0.098 1.02516,0.1884 1.12421,0.8618 0.0321,0.1957 0.052,0.4879 0.0693,0.8964 0.0199,0.5052 0.0669,1.0005 0.13873,1.4882 0.0347,0.2006 0.14356,0.6563 0.33429,1.3546 0.0273,0.1282 0.0496,0.2229 0.0594,0.2897 0.0396,0.2797 -0.0223,0.5323 -0.18819,0.7429 -0.17587,0.208 -0.41849,0.3465 -0.7305,0.3887 -0.59923,0.089 -0.94095,-0.1281 -1.01773,-0.6561 -0.009,-0.089 -0.009,-0.169 0.006,-0.2502 0.013,-0.1956 0.0199,-0.2921 0.0199,-0.2799 -0.0297,-0.1931 -0.34419,-0.25 -0.96077,-0.1541 l -5.36847,0.7973 c -0.61409,0.089 -0.9063,0.2303 -0.87906,0.4136 0,0.03 0.0446,0.1244 0.12128,0.2822 0.0321,0.104 0.0594,0.1858 0.0693,0.2476 0.0793,0.5176 -0.1807,0.8196 -0.7924,0.9137 -0.30952,0.047 -0.58934,0 -0.81716,-0.1411 -0.23522,-0.143 -0.36894,-0.3492 -0.40857,-0.6216 l -0.013,-0.1096 v -0.5844 c 0.013,-0.076 0,-0.2353 -0.0372,-0.4731 -0.0544,-0.312 -0.12127,-0.6065 -0.21543,-0.8617 -0.0496,-0.1411 -0.0719,-0.2327 -0.0743,-0.3046 -0.047,-0.2674 0.12388,-0.4332 0.50764,-0.4902" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path315"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.05852,97.544702 3.54101,-0.4878 -4.75932,-1.3396 c -0.46554,-0.1393 -0.77011,-0.3245 -0.92116,-0.5423 -0.14356,-0.2179 -0.20057,-0.6216 -0.16584,-1.1862 0.0371,-0.6437 0.14616,-1.0623 0.31943,-1.2504 0.16845,-0.1881 0.56458,-0.3269 1.18116,-0.416 l 4.67761,-0.6463 -3.60541,-1.0945 c -0.0841,-0.022 -0.16101,-0.035 -0.2278,-0.043 -0.16584,-0.018 -0.24763,0.1189 -0.26992,0.3813 -0.0446,0.5375 -0.36647,0.78 -0.96573,0.7455 -0.64134,-0.039 -0.94344,-0.3715 -0.90877,-0.9856 0.0149,-0.1882 0.0496,-0.4656 0.11886,-0.8246 0.0594,-0.3516 0.0966,-0.619 0.10642,-0.8047 0.009,-0.1764 0.006,-0.4409 -0.009,-0.7901 -0.0223,-0.3515 -0.0273,-0.619 -0.0167,-0.7898 0.0167,-0.2847 0.1313,-0.5028 0.32439,-0.6736 0.20057,-0.1579 0.45315,-0.2327 0.76762,-0.2128 0.28725,0.019 0.51754,0.1021 0.6884,0.2525 0.18071,0.156 0.26248,0.3392 0.24762,0.5596 -0.006,0.074 -0.0149,0.1281 -0.0396,0.1579 -0.052,0.1504 -0.0743,0.2328 -0.0743,0.2377 -0.007,0.1485 0.17588,0.2849 0.56211,0.4136 0.0149,0 0.15842,0.065 0.45316,0.1783 l 4.16253,1.6218 c 0.68344,0.2552 1.01277,0.5646 0.98555,0.9262 0,0.1114 -0.0247,0.2698 -0.0719,0.4853 -0.0446,0.2204 -0.0693,0.3788 -0.0767,0.4929 -0.006,0.1095 0,0.2648 0.0167,0.4728 0.0199,0.213 0.0273,0.3666 0.0199,0.4606 -0.0223,0.4037 -0.46801,0.6563 -1.32974,0.7702 l -4.34084,0.5372 4.10807,1.2109 c 0.61164,0.1727 0.9905,0.317 1.14401,0.421 0.15601,0.098 0.22287,0.2651 0.21297,0.4953 -0.009,0.1208 -0.0371,0.2823 -0.0867,0.4853 -0.0422,0.203 -0.0669,0.3863 -0.0719,0.5399 -0.013,0.117 0,0.2945 0.013,0.5224 0.0167,0.2327 0.0247,0.4086 0.013,0.5275 -0.0199,0.3367 -0.31447,0.567 -0.87658,0.6834 l -5.04655,1.007898 c -0.34172,0.058 -0.52001,0.1881 -0.5324,0.406 -0.013,0.046 0,0.1133 0.0149,0.2106 0.0149,0.091 0.0199,0.1615 0.0199,0.203 -0.0273,0.4555 -0.35658,0.6685 -0.99544,0.629 -0.71563,-0.046 -1.04498,-0.3863 -1.00535,-1.0278 0.006,-0.1783 0.047,-0.4333 0.11385,-0.774998 0.0618,-0.3417 0.099,-0.6017 0.10901,-0.775 0.009,-0.1801 0.007,-0.468 -0.0167,-0.8519 -0.013,-0.3788 -0.0167,-0.6736 -0.002,-0.8543 0.0321,-0.5868 0.38134,-0.8617 1.03259,-0.8245 0.55466,0.039 0.83695,0.2674 0.84191,0.6884 0.013,0.2128 0.0273,0.3466 0.0544,0.3937 0.0199,0.052 0.0841,0.08 0.20057,0.084 l 0.13873,0.019 c 0.047,0 0.12128,0 0.23029,-0.02" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path319"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 101.80054,82.975602 c 0.0618,0.019 0.11886,0 0.16845,-0.019 0.0544,-0.024 0.0942,-0.1318 0.13372,-0.3292 l 0.38133,-1.7855 c 0.0371,-0.156 0.0422,-0.2574 0.009,-0.307 -0.0297,-0.043 -0.0915,-0.072 -0.18818,-0.099 -0.27733,-0.054 -0.53734,0.019 -0.80477,0.2155 -0.25754,0.1955 -0.42097,0.4606 -0.49029,0.7948 -0.0892,0.4283 0,0.8048 0.2699,1.1441 0.17086,0.2128 0.35411,0.3417 0.52001,0.3788 m 1.88935,-4.9204 c 0.45068,0.091 0.73297,0.2229 0.86669,0.3616 0.12127,0.143 0.14857,0.3813 0.0793,0.7108 l -0.84191,3.9024 c -0.0446,0.1956 -0.0496,0.3195 -0.0167,0.3739 0.0273,0.052 0.11143,0.098 0.26494,0.1356 0.45068,0.091 0.85679,0.031 1.22079,-0.1908 0.36648,-0.2252 0.58687,-0.5571 0.68344,-0.9904 0.0916,-0.4531 -0.0496,-0.9633 -0.44325,-1.5377 -0.2699,-0.3938 -0.36647,-0.7875 -0.28725,-1.1689 0.0693,-0.3195 0.22039,-0.5572 0.44325,-0.718 0.22039,-0.1616 0.47544,-0.2032 0.75526,-0.1486 0.61658,0.1393 1.06973,0.5869 1.35696,1.3544 0.29221,0.775 0.33429,1.6468 0.12128,2.62 -0.27734,1.2751 -0.87659,2.2013 -1.81012,2.7931 -0.92858,0.5967 -2.03795,0.7503 -3.32311,0.4729 -1.29506,-0.2699 -2.25336,-0.8766 -2.88727,-1.7978 -0.6364,-0.9185 -0.82459,-1.9933 -0.56211,-3.2116 0.24267,-1.1316 0.76268,-1.9662 1.56249,-2.5034 0.79487,-0.5399 1.73585,-0.6885 2.81797,-0.4582" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path323"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.64771,74.405702 c -0.0891,0.2475 -0.20304,0.5521 -0.35905,0.9185 0.0297,0.5275 0.19068,0.8469 0.47544,0.9435 0.55219,0.1783 1.03259,-0.3343 1.44117,-1.5649 0.42096,-1.2307 0.3541,-1.9365 -0.19811,-2.1272 -0.44572,-0.1467 -0.8122,0.1783 -1.07963,0.9906 -0.009,0.032 -0.0544,0.169 -0.14114,0.4185 z m -6.08161,-2.3995 c -0.0966,0.2823 -0.0817,0.562 0.0496,0.8196 0.12387,0.2501 0.33923,0.4284 0.63391,0.5298 0.29467,0.1059 0.57201,0.089 0.83697,-0.035 0.26,-0.1281 0.44572,-0.3318 0.54229,-0.6141 0.0916,-0.2922 0.0767,-0.5744 -0.0594,-0.8296 -0.13371,-0.255 -0.34172,-0.4309 -0.62649,-0.5275 -0.29219,-0.098 -0.57201,-0.084 -0.83696,0.037 -0.26249,0.1244 -0.44078,0.3319 -0.53982,0.6192 m -1.64421,-0.4211 0.20057,-0.5818 c -0.51507,-0.1883 -0.85926,-0.5003 -1.03754,-0.9386 -0.18071,-0.4407 -0.16102,-0.9583 0.0371,-1.56 0.17086,-0.4903 0.42839,-0.8493 0.78744,-1.0895 0.35411,-0.2451 0.73048,-0.2997 1.1143,-0.169 0.26001,0.087 0.44572,0.2402 0.56458,0.4731 0.12128,0.2252 0.13613,0.4802 0.0496,0.7378 -0.099,0.2897 -0.27982,0.463 -0.54229,0.5224 l -0.29962,0.072 c -0.0867,0.018 -0.14616,0.072 -0.1833,0.1634 -0.0669,0.2154 0.0421,0.3813 0.34172,0.4829 0.0719,0.019 0.1287,0.032 0.15841,0.032 0.69334,-0.874 1.5625,-1.139 2.61984,-0.78 0.79983,0.27 1.3347,0.7975 1.61452,1.5823 0.27237,0.7752 0.24514,1.6741 -0.0942,2.6794 -0.18572,0.5447 -0.48783,1.0548 -0.92612,1.5476 l -0.052,0.069 c 0.0669,0.1955 0.17086,0.3144 0.31447,0.364 0.34915,0.1207 0.64879,-0.061 0.89394,-0.525 0.0942,-0.1579 0.23771,-0.5325 0.42837,-1.1268 l 0.0618,-0.1727 0.33925,-0.9955 c 0.32439,-1.0004 0.77505,-1.7011 1.35449,-2.1121 0.57449,-0.4062 1.22079,-0.4879 1.9488,-0.2403 0.92363,0.3096 1.51546,0.9583 1.77546,1.9489 0.26,0.983 0.15842,2.1766 -0.31201,3.5607 -0.42343,1.243 -0.98801,2.1618 -1.70117,2.7561 -0.71564,0.5943 -1.45355,0.7577 -2.2187,0.5075 -0.82955,-0.2822 -1.22821,-1.0028 -1.19602,-2.1468 -0.44819,0.7751 -1.05984,1.0351 -1.83489,0.7751 -0.40362,-0.1392 -0.6884,-0.3417 -0.86173,-0.5943 -0.17086,-0.2626 -0.28229,-0.6637 -0.32439,-1.2108 -0.54229,0.2252 -1.06477,0.2648 -1.55507,0.091 -0.72554,-0.2428 -1.2282,-0.7578 -1.51545,-1.5502 -0.27486,-0.7899 -0.26,-1.6466 0.0496,-2.5728" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path327"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 107.91709,59.331702 0.68344,0.3765 c -0.45315,-1.2133 -0.42344,-2.283 0.0867,-3.2018 0.54723,-1.0028 1.31734,-1.4907 2.28307,-1.4907 0.50762,-0.02 1.17127,0.208 1.99089,0.6611 l 2.15432,1.1912 c 0.4804,0.2675 0.78249,0.3046 0.88898,0.117 0.0247,-0.046 0.0496,-0.1281 0.0594,-0.25 0.006,-0.058 0.0297,-0.1411 0.0767,-0.2328 0.23771,-0.4235 0.60172,-0.4978 1.10934,-0.2179 0.67105,0.3664 0.84687,0.8469 0.52991,1.4239 -0.0892,0.143 -0.23276,0.3664 -0.43581,0.6537 -0.208,0.2823 -0.34914,0.5002 -0.44078,0.6538 -0.1313,0.2401 -0.24761,0.5075 -0.35657,0.7948 -0.11385,0.2871 -0.22038,0.5225 -0.30952,0.6957 -0.31696,0.5572 -0.76516,0.681 -1.35202,0.3542 -0.50764,-0.2799 -0.66364,-0.6216 -0.47544,-1.0252 0.12387,-0.2748 0.0719,-0.473 -0.14616,-0.5844 l -2.00574,-1.1143 c -0.55469,-0.307 -0.98308,-0.4457 -1.28766,-0.4283 -0.30208,0.019 -0.55466,0.2006 -0.74287,0.5447 -0.2179,0.3913 -0.26247,0.7949 -0.13371,1.1936 0.1287,0.4012 0.39621,0.7106 0.80479,0.9483 l 1.49563,0.8198 c 0.4284,0.2401 0.70077,0.3614 0.81469,0.3688 0.11143,0.02 0.23029,-0.059 0.364,-0.2327 0.24019,-0.3195 0.59677,-0.3492 1.05735,-0.089 0.60419,0.3367 0.77011,0.7479 0.48782,1.2629 -0.0767,0.143 -0.19067,0.312 -0.33429,0.5028 -0.24515,0.3316 -0.41107,0.5818 -0.50764,0.7527 -0.099,0.1708 -0.21543,0.4383 -0.36895,0.7998 -0.15098,0.359 -0.27239,0.6241 -0.36649,0.7973 -0.3318,0.6042 -0.81963,0.7305 -1.45602,0.3739 -0.53238,-0.2972 -0.68095,-0.6734 -0.42591,-1.1316 0.0371,-0.072 0.10902,-0.1486 0.20058,-0.2279 0.0817,-0.076 0.13371,-0.1355 0.16584,-0.1931 0.0841,-0.1616 -0.14114,-0.3863 -0.67354,-0.6809 l -2.32269,-1.2851 c -0.54725,-0.2972 -0.86422,-0.3715 -0.95087,-0.208 -0.0199,0.039 -0.047,0.1207 -0.0719,0.25 -0.0321,0.1318 -0.0594,0.2228 -0.0942,0.2774 -0.24515,0.463 -0.63887,0.5447 -1.16384,0.2574 -0.28476,-0.1653 -0.47296,-0.3664 -0.56705,-0.624 -0.10159,-0.2624 -0.0743,-0.5224 0.0669,-0.7774 0.047,-0.076 0.16343,-0.2229 0.34172,-0.4483 0.10641,-0.1282 0.19066,-0.2452 0.25009,-0.3516 0.0544,-0.1133 0.14857,-0.3218 0.26496,-0.619 0.12127,-0.2971 0.17829,-0.4606 0.1981,-0.4879 0.14115,-0.2576 0.34666,-0.3144 0.6141,-0.169" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path331"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 118.86152,50.558102 -0.29219,-0.2106 c -0.006,0.084 -0.18071,0.5523 -0.52001,1.3992 -0.23029,0.567 -0.22039,0.9458 0.0371,1.134 0.40858,0.3021 0.78001,0.2154 1.12916,-0.2574 0.57448,-0.7776 0.45562,-1.4685 -0.3541,-2.0652 m 4.24427,0.1653 c -0.53487,0.7131 -1.17623,0.9904 -1.93889,0.8047 0.12127,1.045 -0.12629,1.9835 -0.7503,2.8255 -0.51258,0.7007 -1.1044,1.1117 -1.76803,1.2603 -0.67107,0.1467 -1.30994,-0.019 -1.92156,-0.458 -0.91869,-0.686 -1.22573,-1.5279 -0.90877,-2.5233 0.13873,-0.4259 0.33429,-0.8939 0.58934,-1.4041 0.35657,-0.6958 0.54476,-1.2133 0.57697,-1.5401 0.0321,-0.3245 -0.10159,-0.5869 -0.37887,-0.7975 -0.20306,-0.1504 -0.43582,-0.1857 -0.70078,-0.1133 -0.26001,0.061 -0.48287,0.2353 -0.67601,0.4853 -0.21048,0.2923 -0.23029,0.5102 -0.0422,0.6463 0.0594,0.046 0.12387,0.091 0.1882,0.1337 l 0.047,0.043 c 0.24762,0.1765 0.37637,0.4333 0.39619,0.7652 0.0149,0.3268 -0.0891,0.6439 -0.31696,0.9533 -0.25505,0.3491 -0.57448,0.5597 -0.95335,0.6266 -0.3739,0.067 -0.72801,-0.019 -1.03754,-0.2428 -0.47791,-0.3541 -0.6661,-0.8741 -0.56952,-1.5798 0.0942,-0.7058 0.46801,-1.4956 1.11677,-2.3772 0.70077,-0.9483 1.36935,-1.5402 2.00079,-1.7928 0.6884,-0.2624 1.46098,-0.083 2.32271,0.5522 l 2.73376,2.0158 c 0.27982,0.2104 0.47296,0.2475 0.57696,0.1058 0.047,-0.074 0.099,-0.1393 0.14616,-0.1981 0.0167,-0.03 0.0396,-0.054 0.0669,-0.097 0.14858,-0.2054 0.34915,-0.3219 0.59181,-0.3566 0.24021,-0.045 0.45811,0.019 0.65868,0.1616 0.28972,0.2104 0.42344,0.5126 0.41105,0.8964 -0.009,0.3986 -0.16343,0.7949 -0.46058,1.2059" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path335"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 125.18359,43.125702 -0.26249,-0.2502 c -0.0223,0.095 -0.25009,0.5299 -0.68344,1.3322 -0.29962,0.5374 -0.34172,0.9137 -0.10902,1.1317 0.36897,0.3442 0.74536,0.3046 1.15641,-0.1244 0.66362,-0.6983 0.63144,-1.3966 -0.10159,-2.0899 m 4.18978,0.6686 c -0.61658,0.6511 -1.28763,0.8443 -2.0206,0.567 0,1.0525 -0.36401,1.9562 -1.08706,2.7189 -0.58687,0.624 -1.22822,0.9732 -1.90917,1.0376 -0.67601,0.059 -1.2926,-0.169 -1.84232,-0.6834 -0.84193,-0.7875 -1.03508,-1.6667 -0.60668,-2.6175 0.19314,-0.4036 0.44819,-0.8443 0.75772,-1.3149 0.44077,-0.6561 0.69087,-1.1464 0.7602,-1.456 0.0693,-0.3219 -0.0223,-0.6042 -0.2798,-0.8419 -0.1807,-0.1764 -0.40611,-0.2401 -0.6785,-0.1955 -0.27486,0.037 -0.51258,0.1708 -0.73295,0.4011 -0.24268,0.2648 -0.29221,0.4728 -0.12127,0.6314 0.0544,0.05 0.10641,0.1059 0.16844,0.1505 l 0.0496,0.046 c 0.21294,0.208 0.3219,0.4855 0.29466,0.8073 -0.0247,0.3343 -0.17086,0.6365 -0.42591,0.9137 -0.29962,0.3145 -0.64383,0.4853 -1.02516,0.5102 -0.38629,0.022 -0.72058,-0.104 -1.00534,-0.3714 -0.42593,-0.4062 -0.55221,-0.9461 -0.3665,-1.6319 0.17588,-0.6859 0.64383,-1.4287 1.39909,-2.2188 0.80476,-0.8617 1.54021,-1.3817 2.20136,-1.5526 0.71315,-0.1857 1.46098,0.089 2.23356,0.8272 l 2.46384,2.3276 c 0.24515,0.2377 0.43829,0.2971 0.55468,0.1634 0.0669,-0.057 0.12388,-0.1188 0.17086,-0.1783 0.0273,-0.024 0.0544,-0.05 0.0841,-0.082 0.17086,-0.1838 0.38382,-0.2773 0.62154,-0.2847 0.24762,0 0.46305,0.067 0.64381,0.2426 0.26249,0.2451 0.35658,0.5645 0.30211,0.9484 -0.057,0.3863 -0.26001,0.7676 -0.6042,1.1342" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path339"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 128.28629,34.042602 0.89394,1.0597 c -0.24268,-0.5224 -0.37144,-0.9557 -0.37393,-1.2875 -0.0167,-0.7628 0.29964,-1.4288 0.96326,-1.9859 0.46305,-0.3863 0.9682,-0.5622 1.53031,-0.5301 0.56705,0.032 1.03506,0.2725 1.39907,0.7058 0.2922,0.3393 0.42592,0.7107 0.40857,1.102 -0.009,0.3863 -0.17086,0.7132 -0.48286,0.9732 -0.22533,0.1979 -0.49523,0.2921 -0.78248,0.2698 -0.29219,-0.019 -0.52991,-0.1263 -0.71069,-0.3441 -0.10158,-0.1189 -0.18818,-0.3245 -0.26,-0.6315 l -0.0719,0.069 c -0.56458,0.473 -0.69087,1.0846 -0.38381,1.8399 0.24515,0.6065 0.63144,1.2157 1.15392,1.8298 l 0.40611,0.4805 c 0.25008,0.302 0.43829,0.4754 0.55715,0.51 0.0693,0.024 0.156,0 0.24019,-0.065 0.0767,-0.069 0.16343,-0.1765 0.26,-0.3245 0.10159,-0.1504 0.18819,-0.2576 0.25754,-0.3144 0.1807,-0.1541 0.39372,-0.218 0.63638,-0.1982 0.23524,0.022 0.43829,0.1245 0.59678,0.312 0.20057,0.2476 0.29466,0.5251 0.27237,0.8246 -0.0247,0.3022 -0.15099,0.5522 -0.38629,0.7503 -0.12387,0.1059 -0.37886,0.2773 -0.7602,0.5275 -0.23029,0.1467 -0.50268,0.3541 -0.82211,0.6165 -0.31695,0.2699 -0.58687,0.5201 -0.80477,0.7479 -0.36896,0.3837 -0.59429,0.614 -0.6884,0.6909 -0.51505,0.4333 -1.0103,0.3813 -1.48078,-0.1839 -0.39619,-0.468 -0.39125,-0.8766 0.007,-1.2133 0.0743,-0.054 0.156,-0.1021 0.26248,-0.1485 0.10901,-0.045 0.1807,-0.076 0.22534,-0.117 0.14356,-0.1189 0.0149,-0.4086 -0.38135,-0.884 l -1.70611,-2.0305 c -0.40115,-0.4706 -0.67354,-0.6587 -0.81468,-0.5349 -0.0371,0.024 -0.0867,0.095 -0.15842,0.208 -0.0644,0.1115 -0.13372,0.1839 -0.1833,0.2229 -0.39868,0.3441 -0.7924,0.2797 -1.18363,-0.1764 -0.20554,-0.255 -0.31201,-0.5102 -0.31201,-0.7851 0,-0.2648 0.10642,-0.4902 0.31201,-0.6685 0.0841,-0.069 0.2179,-0.1579 0.39372,-0.2426 0.17587,-0.097 0.33923,-0.2056 0.468,-0.317 0.10159,-0.082 0.23276,-0.2229 0.39124,-0.4136 0.17828,-0.1956 0.30457,-0.3317 0.38878,-0.4086 0.26743,-0.2202 0.50515,-0.1979 0.72305,0.061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path343"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 140.9235,22.477102 3.68957,6.3465 c 0.19563,0.3295 0.42097,0.4335 0.67601,0.2873 0.0767,-0.046 0.17829,-0.1207 0.30707,-0.2229 0.13371,-0.1114 0.2278,-0.1857 0.30704,-0.2327 0.61411,-0.3541 1.09698,-0.2228 1.4585,0.3912 0.1807,0.322 0.24267,0.6266 0.17587,0.9261 -0.0644,0.2996 -0.25009,0.5299 -0.53734,0.7007 -0.0618,0.037 -0.11384,0.06 -0.15358,0.072 l -0.9162,0.3987 c -0.26497,0.117 -0.70079,0.354 -1.31737,0.7031 -0.56705,0.3343 -0.9162,0.5498 -1.04744,0.6564 l -0.77753,0.6017 c -0.0297,0.03 -0.0867,0.067 -0.14857,0.1021 -0.32935,0.1908 -0.64136,0.2478 -0.95583,0.169 -0.30705,-0.083 -0.54973,-0.2724 -0.73297,-0.5844 -0.16344,-0.2847 -0.22038,-0.5546 -0.15099,-0.8196 0.0594,-0.2624 0.22286,-0.473 0.48039,-0.6264 0.0916,-0.045 0.23029,-0.1133 0.41105,-0.1907 0.19068,-0.087 0.32686,-0.1468 0.41601,-0.1882 0.22286,-0.1411 0.27982,-0.3714 0.156,-0.7083 -0.0247,-0.069 -0.16343,-0.3194 -0.40858,-0.7453 l -2.27565,-3.9075 c -0.25753,-0.4433 -0.54972,-0.5744 -0.87162,-0.3839 -0.052,0.032 -0.15099,0.1022 -0.29221,0.2056 -0.15842,0.1635 -0.30209,0.2823 -0.43581,0.359 -0.55468,0.312 -1.00783,0.1579 -1.37926,-0.4728 -0.18572,-0.322 -0.23525,-0.6365 -0.15359,-0.9485 0.0867,-0.3021 0.29468,-0.5571 0.62401,-0.7479 0.16343,-0.098 0.42591,-0.2128 0.77011,-0.3565 0.35658,-0.1412 0.61163,-0.2574 0.76763,-0.3566 0.208,-0.1133 0.45315,-0.302 0.77258,-0.572 0.1287,-0.1189 0.27982,-0.2203 0.44077,-0.3144 0.2501,-0.143 0.47049,-0.1802 0.64878,-0.091 0.12629,0.08 0.28723,0.2576 0.45315,0.5521" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path347"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 149.63587,19.453102 c -0.5943,0.2501 -0.93851,0.7404 -1.03259,1.4684 -0.0966,0.7182 0.0693,1.5773 0.49523,2.5876 0.42593,1.0079 0.93355,1.7211 1.51795,2.1569 0.58437,0.4283 1.17124,0.5174 1.76059,0.2625 0.60667,-0.2452 0.95831,-0.7355 1.05488,-1.4537 0.099,-0.7131 -0.0669,-1.5772 -0.49029,-2.5876 -0.4383,-1.0201 -0.94345,-1.7433 -1.52785,-2.1741 -0.58439,-0.4259 -1.1762,-0.51 -1.77792,-0.26 m 3.67471,8.5207 c -1.43868,0.6091 -2.74366,0.6141 -3.92482,0.024 -1.18116,-0.5895 -2.12707,-1.7235 -2.83776,-3.4098 -0.70325,-1.6541 -0.8642,-3.12 -0.47543,-4.3953 0.38382,-1.2728 1.26783,-2.2013 2.63965,-2.7858 1.42137,-0.5967 2.72633,-0.6091 3.91988,-0.022 1.18116,0.5795 2.12461,1.6789 2.80062,3.3034 0.73297,1.716 0.91373,3.2116 0.54229,4.4819 -0.36401,1.2753 -1.25298,2.2039 -2.66443,2.803" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path351"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 160.78212,15.596802 c -0.61906,0.169 -1.02763,0.6068 -1.21831,1.3149 -0.19314,0.7009 -0.14114,1.5775 0.14115,2.6324 0.28972,1.0498 0.69333,1.8322 1.21583,2.3326 0.51752,0.5001 1.09449,0.671 1.71354,0.5001 0.62897,-0.1653 1.04002,-0.6041 1.23812,-1.3024 0.19562,-0.7009 0.14356,-1.5775 -0.14356,-2.6348 -0.28476,-1.0599 -0.6884,-1.8423 -1.21334,-2.3451 -0.52001,-0.5075 -1.09698,-0.6635 -1.73338,-0.4977 m 2.50596,8.9293 c -1.51051,0.4062 -2.80558,0.2502 -3.90006,-0.5025 -1.09451,-0.7429 -1.87699,-1.9909 -2.36233,-3.7541 -0.47049,-1.7333 -0.42839,-3.2116 0.12388,-4.4201 0.55219,-1.2059 1.55506,-2.0082 2.99376,-2.4043 1.49068,-0.4037 2.78327,-0.2403 3.88025,0.4977 1.1044,0.7355 1.88935,1.9488 2.34993,3.6449 0.4903,1.8028 0.4705,3.3108 -0.0669,4.5092 -0.53733,1.2135 -1.54516,2.0256 -3.01852,2.4292" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path355"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 178.59636,18.701802 c -0.12128,-1.0573 -0.50267,-1.5377 -1.14153,-1.4584 -0.68593,0.072 -0.96822,0.6511 -0.84687,1.7208 0.1287,1.0822 0.5299,1.5824 1.20838,1.5057 0.64136,-0.067 0.90879,-0.6636 0.78002,-1.7681 m -3.82578,0.421 c -0.11644,-0.9707 0.0422,-1.7409 0.4705,-2.3251 0.43086,-0.5746 1.10191,-0.9188 2.02554,-1.0228 1.86956,-0.2228 2.91948,0.6909 3.15472,2.7314 0.24515,2.0726 -0.58439,3.214 -2.47128,3.4294 -0.89638,0.1115 -1.63182,-0.084 -2.17661,-0.5794 -0.55962,-0.4803 -0.88895,-1.2306 -1.00287,-2.2335 m -3.31071,-4.8559 c -0.11885,-1.0896 -0.51258,-1.5873 -1.1465,-1.5155 -0.70077,0.084 -0.99296,0.6439 -0.87659,1.7036 0.12388,1.0971 0.5423,1.6022 1.23565,1.5255 0.64877,-0.087 0.91124,-0.6415 0.78744,-1.7136 m -0.72554,7.3865 4.24425,-8.4761 c -0.24514,0.218 -0.52247,0.3517 -0.82705,0.3839 -0.32686,0.039 -0.65868,-0.022 -0.99297,-0.1857 0.0644,0.1981 0.104,0.3913 0.12628,0.567 0.24764,2.1147 -0.57201,3.286 -2.46383,3.5015 -0.92116,0.1095 -1.66156,-0.089 -2.21128,-0.5821 -0.56211,-0.4977 -0.90134,-1.2703 -1.02516,-2.3053 -0.11143,-0.9559 0.0496,-1.721 0.48286,-2.2856 0.42344,-0.567 1.09202,-0.9037 1.99089,-1.0151 0.82706,-0.091 1.54517,0.022 2.17165,0.359 l 0.45811,0.2451 c 0.61905,0.3343 1.1663,0.473 1.6467,0.4184 0.58686,-0.069 1.07467,-0.3738 1.46345,-0.9063 l 0.13873,-0.198 c 0.18819,-0.2626 0.44076,-0.4135 0.75773,-0.4483 0.44323,-0.052 0.68591,0.06 0.71562,0.3295 0.013,0.1244 -0.0867,0.4086 -0.30458,0.8368 l -5.04161,10.1304 c -0.12127,0.2549 -0.24018,0.416 -0.34172,0.5027 -0.12628,0.1021 -0.31694,0.1708 -0.56705,0.198 -0.44325,0.061 -0.67354,-0.037 -0.70572,-0.2649 -0.0199,-0.1281 0.0793,-0.3937 0.28476,-0.8049" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path359"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 189.44769,13.250102 c 0.84193,0.059 1.52784,0.3491 2.06766,0.8593 0.0817,-0.468 0.39619,-0.6784 0.94096,-0.6389 0.55221,0.045 0.81468,0.2576 0.78744,0.6439 -0.007,0.1356 -0.0396,0.2797 -0.0966,0.4431 -0.047,0.1932 -0.0743,0.3741 -0.0915,0.5524 0,0.032 0,0.117 -0.002,0.26 -0.006,0.1411 -0.0223,0.2624 -0.0347,0.3738 v 0.067 c -0.0396,0.5744 -0.35411,0.8418 -0.93106,0.7973 -0.41353,-0.032 -0.75772,-0.2625 -1.02764,-0.6859 -0.3343,-0.5274 -0.76763,-0.7999 -1.30745,-0.837 -0.62153,-0.046 -0.95335,0.1411 -0.99049,0.5794 -0.0167,0.2255 0.0743,0.3963 0.27486,0.5078 0.19811,0.104 0.73297,0.2674 1.60956,0.4853 0.70076,0.1881 1.22324,0.3714 1.55506,0.5669 0.33182,0.1839 0.59677,0.4409 0.78497,0.7604 0.25009,0.416 0.35162,0.879 0.31448,1.4064 -0.0644,0.8296 -0.43582,1.4956 -1.1143,2.0058 -0.67848,0.5075 -1.49564,0.723 -2.45643,0.6487 -0.9583,-0.069 -1.81011,-0.4383 -2.55051,-1.1117 -0.0422,0.52 -0.33182,0.7651 -0.87163,0.7205 -0.59429,-0.039 -0.86668,-0.3045 -0.83201,-0.7776 0.007,-0.117 0.0273,-0.2822 0.0669,-0.5125 0.0421,-0.2229 0.0618,-0.3938 0.0719,-0.5002 0.009,-0.1021 0.009,-0.2451 0.009,-0.4483 0,-0.1956 0,-0.3441 0.013,-0.4383 0.0297,-0.4951 0.35904,-0.7156 0.9682,-0.671 0.29714,0.02 0.51009,0.089 0.66362,0.1802 0.14114,0.1021 0.28972,0.2873 0.45068,0.5547 0.24019,0.4309 0.47048,0.7132 0.69087,0.8641 0.22037,0.1393 0.55466,0.2329 1.00038,0.2601 0.7825,0.059 1.19108,-0.1579 1.23565,-0.6488 0.0247,-0.3417 -0.27735,-0.5967 -0.90136,-0.7725 l -0.92858,-0.2675 c -0.76516,-0.2154 -1.30496,-0.4234 -1.61203,-0.6141 -0.30705,-0.1858 -0.54229,-0.4705 -0.70324,-0.8345 -0.15841,-0.3616 -0.22039,-0.7776 -0.18571,-1.2406 0.0618,-0.8195 0.38133,-1.4584 0.9583,-1.9364 0.57695,-0.4705 1.30496,-0.676 2.17412,-0.6018" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path363"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 198.83285,11.829702 c 0.30211,0.058 0.41354,0.2799 0.35411,0.6786 l -1.28269,7.6564 c -0.0867,0.5349 -0.0247,0.8272 0.18571,0.8668 0.0793,0.018 0.16845,0.018 0.24019,-0.028 0.0693,-0.028 0.15359,-0.032 0.26249,-0.019 0.48038,0.072 0.6661,0.3988 0.56952,0.9634 -0.12387,0.7553 -0.51751,1.087 -1.15887,0.9731 -0.007,0 -0.40609,-0.1021 -1.20839,-0.3022 -0.24515,-0.054 -0.50268,-0.1114 -0.78497,-0.1615 -0.23525,-0.037 -0.49029,-0.061 -0.76515,-0.073 -0.46058,-0.028 -0.7503,-0.052 -0.86916,-0.067 -0.28725,-0.05 -0.51258,-0.1881 -0.65869,-0.4235 -0.15098,-0.2228 -0.19808,-0.4977 -0.14615,-0.8295 0.104,-0.5917 0.41847,-0.8543 0.94095,-0.77 0.0669,0 0.14616,0.05 0.25753,0.104 0.0966,0.061 0.19068,0.098 0.25754,0.1095 0.17327,0.032 0.31943,-0.2549 0.41601,-0.8641 l 0.89887,-5.3784 c 0.104,-0.6041 0.0618,-0.9286 -0.12128,-0.9559 -0.0743,0 -0.17086,0 -0.29714,0.019 -0.0669,0 -0.16102,0 -0.26248,-0.019 -0.51754,-0.083 -0.72305,-0.4234 -0.62401,-1.0103 0.0544,-0.3318 0.18819,-0.5794 0.40611,-0.7404 0.21047,-0.1616 0.48038,-0.2154 0.79238,-0.169 0.0817,0.022 0.26743,0.061 0.53736,0.1411 0.35657,0.099 0.63143,0.1653 0.81219,0.1956 0.25258,0.045 0.47048,0.059 0.66116,0.052 0.25257,0 0.44572,0.032 0.58686,0.045" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path367"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 205.17374,21.255102 0.0966,-0.3468 c -0.0867,0.022 -0.58439,0.024 -1.49316,0.022 -0.61907,0 -0.96573,0.1337 -1.05241,0.4409 -0.13371,0.4853 0.0867,0.8023 0.6562,0.9607 0.92858,0.2502 1.53527,-0.1095 1.7928,-1.0771 m 1.39659,4.009 c -0.86915,-0.2278 -1.35451,-0.738 -1.46594,-1.508 -0.92115,0.4951 -1.89182,0.5991 -2.90461,0.3343 -0.83202,-0.2279 -1.43374,-0.634 -1.81754,-1.2084 -0.38136,-0.567 -0.46801,-1.2159 -0.26993,-1.9414 0.30211,-1.1068 0.97316,-1.6963 2.0231,-1.7656 0.44819,-0.024 0.9583,-0.018 1.52039,0.039 0.78001,0.076 1.32974,0.072 1.6467,-0.022 0.312,-0.089 0.50762,-0.3045 0.60419,-0.6412 0.0619,-0.2353 0.0149,-0.4731 -0.14616,-0.6959 -0.15841,-0.2154 -0.39372,-0.3688 -0.69829,-0.4506 -0.35658,-0.089 -0.55469,-0.024 -0.61658,0.1956 -0.0223,0.069 -0.0422,0.143 -0.0544,0.2154 l -0.0199,0.069 c -0.0841,0.2873 -0.27239,0.5102 -0.56954,0.6439 -0.30211,0.1319 -0.63887,0.1467 -1.0004,0.05 -0.42344,-0.1115 -0.73296,-0.3319 -0.93849,-0.6612 -0.1981,-0.3294 -0.25257,-0.6834 -0.15099,-1.0575 0.15601,-0.5694 0.57695,-0.936 1.26039,-1.1042 0.69583,-0.1635 1.56499,-0.1022 2.61739,0.1838 1.13906,0.3072 1.94383,0.7084 2.40441,1.2109 0.50268,0.5399 0.61907,1.3297 0.33182,2.3623 l -0.88402,3.2787 c -0.0942,0.3343 -0.0544,0.5224 0.11645,0.562 0.0867,0.03 0.16101,0.045 0.23772,0.069 0.0347,0 0.0669,0.019 0.11143,0.032 0.24265,0.065 0.42343,0.1982 0.54229,0.4136 0.12629,0.2105 0.16343,0.4333 0.0891,0.6734 -0.0891,0.3444 -0.31943,0.5821 -0.69086,0.7182 -0.37144,0.1393 -0.79983,0.1393 -1.27774,0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path371"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.34322,24.411302 0.13371,-0.3343 c -0.0891,0.022 -0.57201,-0.032 -1.47831,-0.1504 -0.60668,-0.082 -0.97316,0.022 -1.08955,0.312 -0.19065,0.4755 -0.0149,0.8148 0.52993,1.0278 0.89887,0.3688 1.53031,0.083 1.90422,-0.8543 m 0.9063,4.15 c -0.83202,-0.3367 -1.24802,-0.8963 -1.26041,-1.6714 -0.98059,0.3764 -1.95622,0.3714 -2.92691,-0.022 -0.79981,-0.3219 -1.35696,-0.7875 -1.65906,-1.394 -0.30954,-0.6192 -0.31697,-1.2679 -0.0371,-1.9761 0.4284,-1.0649 1.16878,-1.565 2.20879,-1.5056 0.45811,0.024 0.95583,0.099 1.50803,0.2205 0.76268,0.1578 1.30994,0.2202 1.6368,0.1653 0.31943,-0.052 0.54229,-0.2353 0.67352,-0.5646 0.0942,-0.2377 0.0743,-0.463 -0.0594,-0.6983 -0.1313,-0.2377 -0.35162,-0.421 -0.63887,-0.5423 -0.33676,-0.1263 -0.54723,-0.091 -0.63638,0.1207 -0.0273,0.069 -0.0544,0.1412 -0.0767,0.213 l -0.0297,0.06 c -0.11143,0.2798 -0.32686,0.4704 -0.63887,0.5744 -0.3219,0.097 -0.65123,0.072 -1.00781,-0.074 -0.40611,-0.1616 -0.68097,-0.4184 -0.84687,-0.7676 -0.16343,-0.3467 -0.17328,-0.7007 -0.0223,-1.0673 0.22286,-0.5471 0.68344,-0.8617 1.38668,-0.9384 0.70325,-0.087 1.56002,0.082 2.57032,0.4927 1.10194,0.4383 1.84728,0.9336 2.24843,1.4857 0.43086,0.5969 0.44572,1.3918 0.047,2.3872 l -1.27277,3.1424 c -0.13372,0.3218 -0.11645,0.5224 0.0422,0.5818 0.0867,0.037 0.16101,0.067 0.23029,0.097 0.0297,0.02 0.0719,0.022 0.10641,0.043 0.23029,0.091 0.40362,0.255 0.49772,0.4779 0.099,0.2278 0.099,0.4507 0.007,0.6834 -0.1313,0.3343 -0.39125,0.5373 -0.77505,0.629 -0.38629,0.087 -0.80973,0.043 -1.27527,-0.1504" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path375"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 225.93197,23.418902 c 0.057,-0.1115 0.16585,-0.2155 0.30954,-0.3195 -0.0594,-0.08 -0.14858,-0.1504 -0.26001,-0.2154 -0.46553,-0.2452 -0.82707,-0.1467 -1.06479,0.3094 l -0.15359,0.2873 c -0.10158,0.1857 -0.0421,0.3367 0.17829,0.4507 l 0.42591,0.2277 c 0.55962,0.2923 0.70572,0.7084 0.43086,1.2233 -0.28229,0.5474 -0.69583,0.6761 -1.23069,0.3988 l -0.47544,-0.2526 c -0.21294,-0.1114 -0.38876,-0.045 -0.51752,0.203 l -1.52288,2.8898 c -0.16584,0.3045 -0.2501,0.4804 -0.2501,0.5101 -0.0841,0.2155 -0.0321,0.3739 0.14114,0.468 0.0396,0.019 0.1287,0.052 0.2699,0.117 0.12128,0.037 0.23772,0.084 0.35164,0.1505 0.45315,0.2425 0.53487,0.624 0.25752,1.1562 -0.14115,0.2701 -0.34419,0.4433 -0.59677,0.5325 -0.25257,0.089 -0.51258,0.061 -0.76762,-0.067 -0.013,0 -0.29715,-0.1955 -0.83451,-0.5521 -0.1833,-0.117 -0.45562,-0.2799 -0.81962,-0.468 -0.40858,-0.2205 -0.74534,-0.3815 -1.01277,-0.4829 -0.44079,-0.169 -0.70822,-0.2823 -0.80973,-0.3343 -0.26743,-0.143 -0.43582,-0.3517 -0.50764,-0.6091 -0.0669,-0.2701 -0.0247,-0.5473 0.1287,-0.837 0.28476,-0.5399 0.66115,-0.6885 1.14153,-0.4359 0.0743,0.037 0.14857,0.1021 0.23278,0.1907 0.0743,0.089 0.1313,0.1337 0.16584,0.1541 0.18331,0.097 0.40611,-0.1281 0.69334,-0.6711 l 1.52041,-2.8749 c 0.11143,-0.2054 0.12388,-0.3466 0.052,-0.4185 -0.0273,-0.031 -0.0892,-0.082 -0.16845,-0.1337 l -0.34915,-0.1801 c -0.51258,-0.2701 -0.63638,-0.6563 -0.37143,-1.1589 0.29467,-0.5622 0.71315,-0.7009 1.24802,-0.416 l 0.25753,0.1337 c 0.16845,0.089 0.28476,0.1133 0.36154,0.089 0.0767,-0.03 0.17829,-0.1468 0.29466,-0.3393 0.37639,-0.6488 0.91868,-1.0376 1.61698,-1.1639 0.70326,-0.1189 1.46841,0.035 2.30289,0.473 0.6884,0.3738 1.1787,0.8047 1.45107,1.3074 0.27486,0.4978 0.28478,0.9806 0.0396,1.4486 -0.15359,0.2897 -0.3863,0.4731 -0.70079,0.5522 -0.30952,0.089 -0.62895,0.039 -0.95087,-0.1319 -0.25752,-0.1393 -0.44076,-0.317 -0.53238,-0.5423 -0.0966,-0.2303 -0.0867,-0.4582 0.0247,-0.6686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path379"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 229.26844,29.800502 -1.08459,3.6203 3.02596,-2.3079 c 0.0767,-0.054 0.18071,-0.1262 0.30705,-0.2252 0.0966,-0.072 0.15842,-0.143 0.1833,-0.1858 0.0916,-0.1262 0.0297,-0.2897 -0.17327,-0.4928 -0.28723,-0.3121 -0.28723,-0.6761 0.006,-1.1143 0.34668,-0.5126 0.76516,-0.6092 1.25049,-0.2723 0.16343,0.104 0.39125,0.2871 0.6983,0.5423 0.29221,0.2526 0.52001,0.4357 0.68593,0.5497 0.25008,0.169 0.50762,0.3219 0.78001,0.4506 0.27237,0.1262 0.45809,0.2278 0.56705,0.3045 0.53487,0.3592 0.60419,0.8172 0.22039,1.3942 -0.36401,0.5399 -0.78001,0.6588 -1.24308,0.3417 -0.0167,-0.019 -0.0422,-0.024 -0.0693,-0.046 -0.0321,-0.02 -0.0544,-0.043 -0.0618,-0.046 -0.0544,-0.061 -0.0966,-0.1133 -0.15358,-0.1579 -0.15099,-0.097 -0.3764,-0.039 -0.66363,0.1653 -0.10901,0.074 -0.34915,0.2526 -0.7503,0.525 l -3.23148,2.2435 c -0.77754,0.5596 -1.42136,0.6338 -1.91909,0.2451 l -0.61162,-0.4754 -0.66611,-0.3913 c -0.009,0 -0.0247,-0.019 -0.052,-0.043 -0.42838,-0.2849 -0.5522,-0.7678 -0.38876,-1.4438 l 1.1663,-4.7443 c 0.0743,-0.3417 0.10902,-0.5622 0.099,-0.6513 -0.007,-0.089 -0.0544,-0.1653 -0.14115,-0.2253 -0.009,0 -0.0371,-0.024 -0.0719,-0.043 -0.0273,-0.022 -0.0496,-0.037 -0.0693,-0.05 -0.0693,-0.054 -0.14356,-0.104 -0.2278,-0.156 -0.18071,-0.1244 -0.28229,-0.2897 -0.30458,-0.52 -0.0199,-0.2178 0.0496,-0.4431 0.19809,-0.6686 0.40363,-0.5967 0.88897,-0.7081 1.43373,-0.3367 0.13873,0.087 0.34172,0.2502 0.58687,0.4731 0.24764,0.2228 0.44325,0.3788 0.58193,0.4754 0.18818,0.1244 0.5299,0.3243 1.02763,0.5893 0.29218,0.1616 0.51011,0.2947 0.64133,0.3764 0.49526,0.3343 0.56458,0.7602 0.21297,1.2752 -0.31697,0.473 -0.66859,0.6067 -1.05984,0.3889 -0.24266,-0.1208 -0.42094,-0.1171 -0.52495,0.039 -0.0297,0.05 -0.099,0.2451 -0.20306,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path383"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 239.34026,34.574002 -0.91124,1.0474 c 0.48037,-0.3218 0.88401,-0.5126 1.2183,-0.5744 0.75524,-0.1337 1.45849,0.08 2.10975,0.6413 0.45315,0.3987 0.71067,0.8741 0.76267,1.4361 0.052,0.5622 -0.10642,1.0575 -0.47544,1.4858 -0.29219,0.3369 -0.63887,0.5274 -1.02267,0.5746 -0.38382,0.037 -0.73544,-0.061 -1.04251,-0.3343 -0.22286,-0.1958 -0.35657,-0.4457 -0.38876,-0.7306 -0.0347,-0.2847 0.047,-0.5373 0.22782,-0.7477 0.10642,-0.117 0.29466,-0.2279 0.58438,-0.3444 l -0.0743,-0.058 c -0.55219,-0.4829 -1.18116,-0.5126 -1.87697,-0.097 -0.55715,0.3417 -1.10193,0.8146 -1.63431,1.4287 l -0.40858,0.4704 c -0.26,0.2972 -0.39868,0.5078 -0.41849,0.6341 -0.013,0.08 0.0273,0.1486 0.10901,0.2253 0.0743,0.061 0.18819,0.1281 0.36648,0.208 0.15842,0.08 0.27735,0.1393 0.34421,0.1981 0.1807,0.156 0.2798,0.354 0.29715,0.5943 0.0148,0.2402 -0.0544,0.4532 -0.2204,0.6389 -0.20553,0.2401 -0.46057,0.3714 -0.77011,0.4011 -0.30458,0.019 -0.56705,-0.072 -0.79238,-0.27 -0.12629,-0.1114 -0.34668,-0.3269 -0.64879,-0.6611 -0.1833,-0.2081 -0.43086,-0.4482 -0.74038,-0.718 -0.31449,-0.2701 -0.59925,-0.5004 -0.85925,-0.6835 -0.43087,-0.2971 -0.69334,-0.4953 -0.78249,-0.572 -0.51258,-0.4457 -0.52992,-0.9434 -0.0496,-1.4982 0.40115,-0.4531 0.79487,-0.5125 1.18612,-0.1727 0.0793,0.06 0.13613,0.1412 0.19561,0.2377 0.052,0.1022 0.10159,0.169 0.14858,0.2006 0.13613,0.1244 0.40362,-0.043 0.80972,-0.5003 l 1.74079,-2.0082 c 0.40858,-0.4656 0.54478,-0.7627 0.40115,-0.889 -0.0321,-0.028 -0.104,-0.069 -0.22286,-0.1263 -0.12128,-0.045 -0.21048,-0.095 -0.25752,-0.1411 -0.39372,-0.3442 -0.39868,-0.7403 0,-1.1934 0.21543,-0.2428 0.45315,-0.3964 0.72552,-0.4285 0.26744,-0.046 0.50269,0.02 0.70326,0.203 0.0817,0.074 0.18572,0.1838 0.30458,0.3443 0.11384,0.1653 0.2501,0.302 0.37639,0.4134 0.10159,0.089 0.26,0.2006 0.47295,0.3319 0.22039,0.1319 0.37392,0.2353 0.46306,0.3144 0.25505,0.2229 0.27238,0.4632 0.0496,0.7182" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path387"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 246.05059,39.387602 c -0.27733,-0.2998 -0.416,-0.6538 -0.40362,-1.0698 0.009,-0.4136 0.15359,-0.7651 0.45068,-1.0474 0.29962,-0.2823 0.6562,-0.4285 1.06478,-0.416 0.40857,0.019 0.76268,0.1616 1.04497,0.4654 0.29219,0.2997 0.42838,0.6489 0.42344,1.0649 -0.0149,0.406 -0.16585,0.7577 -0.46554,1.0448 -0.30458,0.2898 -0.65868,0.4261 -1.0722,0.4187 -0.40364,0 -0.75773,-0.1635 -1.04251,-0.4606 m 0.19564,1.0994 c 0.208,0.2203 0.16101,0.4803 -0.14616,0.7774 l -3.55588,3.4098 c -0.40608,0.3815 -0.5398,0.6463 -0.38876,0.7975 0.0321,0.032 0.0966,0.074 0.20058,0.1263 0.11384,0.052 0.19561,0.1095 0.24761,0.1615 0.31944,0.3343 0.26744,0.6885 -0.15358,1.0995 -0.54973,0.5324 -1.05737,0.5646 -1.49813,0.095 -0.0767,-0.074 -0.26743,-0.3144 -0.58191,-0.7081 -0.1833,-0.2478 -0.416,-0.5102 -0.69087,-0.7975 -0.13371,-0.1412 -0.34667,-0.3293 -0.63639,-0.5819 -0.29962,-0.2427 -0.51505,-0.4383 -0.64383,-0.5696 -0.20304,-0.208 -0.29466,-0.4605 -0.27486,-0.7328 0.0199,-0.27 0.14356,-0.52 0.37392,-0.738 0.44819,-0.4333 0.85677,-0.4606 1.21335,-0.084 l 0.22286,0.3839 c 0.0199,0.037 0.0422,0.074 0.057,0.091 0.13873,0.1467 0.4259,0.018 0.87409,-0.4185 l 1.91909,-1.8399 c 0.44572,-0.4234 0.6042,-0.7057 0.48038,-0.8468 -0.0247,-0.019 -0.11886,-0.065 -0.27237,-0.143 -0.0867,-0.061 -0.16102,-0.1189 -0.20307,-0.169 -0.35904,-0.3789 -0.3219,-0.7776 0.11886,-1.1961 0.23525,-0.2302 0.49525,-0.3467 0.77259,-0.3541 0.26992,0 0.51506,0.1021 0.72307,0.3194 0.0891,0.087 0.19561,0.2255 0.3318,0.4112 0.22782,0.3144 0.42344,0.5596 0.57697,0.7206 0.13371,0.1356 0.312,0.2971 0.54476,0.4802 0.23772,0.1783 0.36154,0.2873 0.38878,0.3072" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path391"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 250.44392,44.356302 c -0.26247,-0.3169 -0.38133,-0.6835 -0.33923,-1.0995 0.0321,-0.4134 0.21543,-0.7453 0.53486,-1.0103 0.32438,-0.2624 0.68591,-0.3714 1.09696,-0.3293 0.41601,0.045 0.74783,0.2229 1.01279,0.5423 0.26495,0.3219 0.37887,0.6933 0.33676,1.0995 -0.0347,0.4061 -0.22039,0.7378 -0.54972,1.0004 -0.30705,0.26 -0.66362,0.3763 -1.07716,0.3343 -0.41105,-0.037 -0.75526,-0.213 -1.01526,-0.5374 m -9.23137,4.6975 c -0.11886,0.095 -0.25754,0.1541 -0.40364,0.1764 0.0297,0.076 0.0916,0.1634 0.15099,0.2478 0.24265,0.2847 0.53733,0.3788 0.87658,0.2847 0.35162,-0.091 0.84438,-0.411 1.49317,-0.9435 l 3.76386,-3.0977 c 0.48782,-0.3938 0.66115,-0.671 0.53982,-0.8222 -0.0446,-0.046 -0.1313,-0.1207 -0.25257,-0.203 -0.12388,-0.087 -0.19811,-0.156 -0.24019,-0.1982 -0.29468,-0.3565 -0.20058,-0.7354 0.26494,-1.1265 0.56954,-0.4606 1.05736,-0.4457 1.46841,0.05 0.0966,0.1282 0.23276,0.3221 0.40611,0.5919 0.15842,0.2674 0.28972,0.4582 0.39866,0.5893 0.10159,0.1263 0.27735,0.3021 0.51754,0.5274 0.23772,0.2255 0.364,0.3542 0.39125,0.3789 0.19066,0.2329 0.12127,0.4879 -0.20553,0.7603 l -5.78695,4.7618 c -0.47048,0.3813 -0.87659,0.6463 -1.20592,0.7824 -0.33429,0.1356 -0.73297,0.1839 -1.17869,0.156 -0.97316,-0.054 -1.83489,-0.5348 -2.57776,-1.4337 -0.51258,-0.624 -0.80477,-1.243 -0.87411,-1.8498 -0.0693,-0.6091 0.099,-1.0747 0.51258,-1.4188 0.29467,-0.2452 0.63639,-0.3417 1.00783,-0.2972 0.38133,0.047 0.69087,0.2229 0.95087,0.5325 0.2179,0.2648 0.3219,0.5447 0.31696,0.8368 -0.002,0.2947 -0.11886,0.5325 -0.33429,0.7158" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path395"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 251.65877,51.290702 c -0.0544,0.037 -0.0867,0.082 -0.104,0.1282 -0.0199,0.058 0.0247,0.1634 0.13372,0.3269 l 1.03258,1.5106 c 0.0892,0.1281 0.16102,0.208 0.20801,0.2178 0.0594,0.019 0.1313,-0.019 0.208,-0.067 0.23276,-0.1616 0.36401,-0.4012 0.40115,-0.728 0.0347,-0.3245 -0.047,-0.6291 -0.23029,-0.9088 -0.24764,-0.3591 -0.58687,-0.5547 -1.01773,-0.5918 -0.27735,-0.028 -0.48535,0.018 -0.63144,0.1114 m 2.24594,4.7668 c -0.38134,0.255 -0.66612,0.3763 -0.8543,0.364 -0.19068,0 -0.38134,-0.1486 -0.57201,-0.426 l -2.24594,-3.3082 c -0.10641,-0.1616 -0.19563,-0.2526 -0.25257,-0.265 -0.057,-0.03 -0.15099,0.018 -0.28229,0.1021 -0.3764,0.2576 -0.61411,0.5967 -0.70573,1.0153 -0.0867,0.411 -0.006,0.8072 0.25258,1.1738 0.25008,0.3837 0.72305,0.624 1.41145,0.7402 0.47543,0.082 0.82705,0.2701 1.04248,0.5969 0.18572,0.2723 0.26001,0.5423 0.22287,0.8146 -0.0446,0.2748 -0.18331,0.4854 -0.41354,0.6489 -0.52991,0.3566 -1.16878,0.3714 -1.92154,0.046 -0.75773,-0.3269 -1.41145,-0.8989 -1.9711,-1.721 -0.73791,-1.0772 -0.99295,-2.1493 -0.78001,-3.2315 0.22286,-1.087 0.86669,-2.0007 1.94881,-2.7386 1.09202,-0.738 2.19393,-1.0227 3.29585,-0.842 1.10687,0.1801 2.0107,0.7826 2.709,1.8152 0.65125,0.9532 0.8964,1.9091 0.73544,2.855 -0.16102,0.941 -0.70077,1.7285 -1.61945,2.3599" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path399"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 259.4693,65.024902 c 0.14616,-0.067 0.31447,-0.097 0.50515,-0.059 0.057,-0.3046 0.0223,-0.5943 -0.11143,-0.8716 -0.20058,-0.4383 -0.54726,-0.7107 -1.03012,-0.8123 -0.49277,-0.1096 -1.04249,-0.019 -1.63678,0.2576 -0.62401,0.2897 -1.06479,0.6635 -1.30498,1.1267 -0.24268,0.458 -0.24762,0.9286 -0.0297,1.4065 0.22039,0.4852 0.6463,0.7205 1.27527,0.7107 0.39372,-0.019 0.65372,0 0.79734,0.067 0.1807,0.083 0.33925,0.2722 0.47543,0.5694 0.15842,0.3393 0.18071,0.6587 0.0743,0.9683 -0.104,0.2996 -0.31696,0.52 -0.63144,0.6686 -0.67848,0.307 -1.41145,0.255 -2.20385,-0.169 -0.8023,-0.4235 -1.41392,-1.0971 -1.83489,-2.0058 -0.54476,-1.1737 -0.60915,-2.2707 -0.21294,-3.2959 0.39372,-1.0276 1.19353,-1.82 2.40441,-2.382 1.22079,-0.5598 2.35242,-0.6513 3.39491,-0.27 1.0425,0.3838 1.84727,1.1837 2.40195,2.3896 0.40609,0.8742 0.53487,1.6887 0.3863,2.4464 -0.14858,0.7578 -0.54479,1.2902 -1.1688,1.5874 -0.40115,0.1801 -0.78001,0.1981 -1.14153,0.058 -0.35657,-0.1467 -0.63886,-0.4234 -0.82458,-0.8296 -0.15359,-0.3393 -0.19564,-0.6463 -0.12127,-0.936 0.0719,-0.2921 0.25753,-0.4927 0.53735,-0.624" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path403"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.01982,71.110302 -2.85758,0.9236 c 0.5324,0.3218 0.91373,0.6067 1.14402,0.8691 0.22039,0.255 0.40611,0.6068 0.55715,1.0599 0.31201,0.9583 0.22533,1.7458 -0.24515,2.3425 -0.3219,0.3987 -0.92611,0.7453 -1.8126,1.0302 l -2.69414,0.8691 c -0.52248,0.169 -0.7503,0.3566 -0.68095,0.567 0.0273,0.08 0.0719,0.1504 0.1287,0.2006 0.0594,0.05 0.10159,0.1281 0.14115,0.2253 0.14355,0.4605 -0.052,0.78 -0.58687,0.9583 -0.74534,0.2377 -1.21335,0.05 -1.41392,-0.567 -0.0544,-0.1709 -0.11385,-0.4383 -0.18572,-0.7973 -0.0719,-0.3566 -0.1313,-0.6216 -0.19068,-0.7999 -0.052,-0.1616 -0.14615,-0.4036 -0.29961,-0.7182 -0.14115,-0.3094 -0.25011,-0.5471 -0.30458,-0.718 -0.0841,-0.2551 -0.0644,-0.4929 0.0669,-0.7131 0.12127,-0.2255 0.32686,-0.3789 0.61905,-0.4656 0.52991,-0.1764 0.87412,-0.072 1.02763,0.3096 0.0743,0.1727 0.15099,0.26 0.2501,0.2797 0.0942,0.018 0.24268,-0.019 0.4383,-0.08 l 2.39451,-0.7677 c 0.85925,-0.2773 1.18612,-0.7453 0.97315,-1.394 -0.28476,-0.8891 -1.04991,-1.1392 -2.2806,-0.7355 l -1.84975,0.5893 c -0.21294,0.076 -0.34915,0.1393 -0.38629,0.203 -0.0446,0.072 -0.0446,0.213 -0.013,0.426 0.0496,0.3343 -0.15359,0.5843 -0.62154,0.7355 -0.6884,0.2154 -1.11926,0.043 -1.30992,-0.5301 -0.0396,-0.1207 -0.0867,-0.3539 -0.14616,-0.6882 -0.0669,-0.3393 -0.14114,-0.6415 -0.22782,-0.9138 -0.0743,-0.2154 -0.16101,-0.4433 -0.27486,-0.686 -0.1833,-0.4012 -0.29466,-0.6537 -0.33676,-0.7676 -0.0867,-0.2847 -0.0669,-0.5447 0.0669,-0.78 0.13613,-0.2401 0.35657,-0.4061 0.66115,-0.5076 0.5943,-0.1907 0.97316,-0.028 1.13659,0.4803 0.0199,0.059 0.0321,0.156 0.0273,0.2799 -0.002,0.1244 0.006,0.2154 0.0247,0.2749 0.052,0.1782 0.37639,0.169 0.9583,-0.021 l 5.19266,-1.6738 c 0.58439,-0.1882 0.8444,-0.3665 0.78744,-0.5474 -0.0199,-0.072 -0.0743,-0.1578 -0.14356,-0.2574 -0.047,-0.061 -0.0793,-0.1392 -0.11143,-0.2427 -0.16585,-0.5027 0.0422,-0.8444 0.60915,-1.0276 0.31448,-0.1021 0.5943,-0.096 0.83944,0.021 0.25258,0.1133 0.42344,0.317 0.51009,0.5993 0.0422,0.1318 0.0892,0.3343 0.14858,0.6115 0.0496,0.2626 0.099,0.4632 0.14616,0.6044 0.099,0.3218 0.21296,0.5991 0.31943,0.8245 0.104,0.2179 0.17588,0.3938 0.21047,0.5201 0.0942,0.2772 -0.0446,0.4828 -0.40608,0.5943" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path407"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.18112,83.743902 c -0.0892,-0.4778 -0.36401,-0.8097 -0.83202,-1.0053 -0.4581,-0.2006 -1.0524,-0.2327 -1.77051,-0.095 -0.72553,0.1356 -1.26782,0.3789 -1.62193,0.7306 -0.35904,0.3516 -0.48286,0.77 -0.39619,1.2653 0.19562,0.9979 1.05735,1.3544 2.59756,1.0673 1.54269,-0.2923 2.2187,-0.9484 2.02309,-1.9637 m -6.59668,1.3 c -0.2501,-1.3298 -0.0618,-2.4266 0.55219,-3.2933 0.60916,-0.8618 1.60213,-1.4288 2.95662,-1.6839 1.35202,-0.25 2.47871,-0.097 3.3652,0.4828 0.89144,0.5795 1.46345,1.5181 1.70613,2.8181 0.24266,1.2727 0.0544,2.3523 -0.55715,3.2265 -0.61412,0.879 -1.57242,1.4387 -2.87987,1.6863 -1.37183,0.255 -2.51336,0.104 -3.41719,-0.463 -0.9063,-0.5672 -1.48327,-1.4908 -1.72593,-2.7735" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path411"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.65977,94.285202 c 0.16584,-0.018 0.33429,0.032 0.50515,0.1356 0.15841,-0.2674 0.22533,-0.5497 0.20304,-0.8543 -0.0371,-0.478 -0.26,-0.8593 -0.68095,-1.1318 -0.42096,-0.2674 -0.95336,-0.3812 -1.61945,-0.3268 -0.68344,0.044 -1.2208,0.2403 -1.60709,0.5868 -0.39123,0.3468 -0.56952,0.7801 -0.53238,1.3001 0.0396,0.5374 0.35409,0.9113 0.95335,1.1217 0.35904,0.1263 0.59676,0.2403 0.70819,0.3467 0.14115,0.1412 0.22039,0.3715 0.24021,0.7007 0.0247,0.3691 -0.057,0.6786 -0.26496,0.9286 -0.20801,0.2403 -0.4903,0.3765 -0.83698,0.4012 -0.73791,0.05 -1.41145,-0.26 -2.00574,-0.9409 -0.59677,-0.681 -0.93353,-1.5204 -1.00535,-2.5233 -0.0966,-1.2828 0.22782,-2.335 0.96326,-3.1572 0.73791,-0.8196 1.7705,-1.2727 3.09777,-1.3669 1.33716,-0.098 2.43165,0.213 3.26862,0.9384 0.84191,0.7307 1.30745,1.7582 1.40896,3.0856 0.0594,0.9557 -0.10901,1.7654 -0.51258,2.4265 -0.40608,0.6612 -0.9583,1.0103 -1.65659,1.0674 -0.43334,0.024 -0.79734,-0.095 -1.0821,-0.3542 -0.28478,-0.2648 -0.45068,-0.6166 -0.4804,-1.0647 -0.0273,-0.3739 0.0496,-0.6785 0.22039,-0.9212 0.17086,-0.2451 0.41352,-0.3738 0.71563,-0.3987" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path415"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.55888,102.7502 c 0.0149,-0.4828 -0.17829,-0.8766 -0.58687,-1.1737 -0.40857,-0.2922 -0.97563,-0.463 -1.7086,-0.4951 -0.74286,-0.03 -1.32477,0.089 -1.75564,0.3515 -0.42343,0.26 -0.64876,0.6439 -0.67601,1.1491 -0.0422,1.0201 0.72554,1.5624 2.29794,1.6293 1.57241,0.067 2.37718,-0.4235 2.42918,-1.4611 m -6.74029,-0.2228 c 0.0618,-1.3545 0.49029,-2.3821 1.28269,-3.085398 0.79487,-0.7057 1.8844,-1.0326 3.27356,-0.9707 1.37431,0.054 2.43415,0.473 3.17206,1.2358 0.73544,0.765098 1.07716,1.809998 1.02021,3.129798 -0.052,1.2951 -0.47792,2.3054 -1.27279,3.0161 -0.79734,0.7206 -1.86707,1.045 -3.19928,0.9904 -1.38916,-0.061 -2.46632,-0.468 -3.22654,-1.2305 -0.75276,-0.7628 -1.10191,-1.7855 -1.04991,-3.0855" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path419"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 271.22717,112.1993 c -0.0422,0.2972 -0.26495,0.421 -0.6661,0.364 l -7.67632,-1.0697 c -0.5423,-0.074 -0.83449,0 -0.8543,0.2104 -0.0167,0.089 -0.006,0.1653 0.0199,0.2377 0.0396,0.074 0.0446,0.1616 0.0273,0.2626 -0.0644,0.4853 -0.38135,0.6835 -0.96326,0.5992 -0.75277,-0.104 -1.09202,-0.4779 -0.99791,-1.1316 0,-0.019 0.0941,-0.416 0.26494,-1.2233 0.0618,-0.2426 0.104,-0.5026 0.14115,-0.7825 0.0371,-0.2377 0.0544,-0.4977 0.0544,-0.7776 0.0167,-0.4579 0.0297,-0.7402 0.0496,-0.8665 0.0422,-0.2923 0.16844,-0.5126 0.39621,-0.6686 0.23029,-0.1541 0.50515,-0.213 0.82952,-0.1709 0.60173,0.084 0.87412,0.3912 0.8023,0.9236 -0.0149,0.067 -0.0396,0.1542 -0.104,0.255 -0.0496,0.1096 -0.0841,0.1982 -0.0966,0.2674 -0.0247,0.1783 0.26496,0.312 0.87411,0.3938 l 5.40066,0.7627 c 0.60668,0.082 0.92611,0.028 0.95087,-0.1467 0.006,-0.082 0,-0.1839 -0.0247,-0.307 -0.013,-0.069 -0.013,-0.1579 0.002,-0.2624 0.0793,-0.5152 0.40858,-0.7405 0.99544,-0.6513 0.33429,0.039 0.5844,0.1653 0.75526,0.3812 0.16343,0.2131 0.22533,0.4731 0.18819,0.7875 -0.0149,0.082 -0.057,0.2674 -0.12629,0.5449 -0.0916,0.359 -0.14858,0.6288 -0.17588,0.822 -0.0347,0.2427 -0.0395,0.4631 -0.0297,0.6489 -0.006,0.2574 -0.0167,0.4555 -0.0371,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path423"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 261.99802,118.7405 0.34915,0.08 c -0.0321,-0.08 -0.047,-0.577 -0.0669,-1.4907 -0.006,-0.6166 -0.16101,-0.9557 -0.47049,-1.03 -0.48781,-0.1189 -0.8023,0.1058 -0.93602,0.6734 -0.23029,0.941 0.15099,1.5303 1.12422,1.768 m -3.97435,1.5006 c 0.2179,-0.8715 0.70324,-1.3717 1.47582,-1.503 -0.52,-0.9137 -0.65372,-1.877 -0.40609,-2.8972 0.19809,-0.8344 0.57695,-1.456 1.13906,-1.8447 0.56458,-0.3963 1.21335,-0.5027 1.94385,-0.3194 1.1143,0.2674 1.72593,0.9211 1.81507,1.9686 0.0371,0.4431 0.0396,0.9557 0.002,1.5178 -0.0544,0.7851 -0.0297,1.3348 0.0693,1.6468 0.099,0.307 0.31448,0.5051 0.65373,0.5843 0.24265,0.065 0.4779,0 0.69333,-0.1653 0.21544,-0.1616 0.36154,-0.4012 0.43583,-0.7108 0.0793,-0.3491 0.0167,-0.5545 -0.2105,-0.6041 -0.0719,-0.019 -0.14857,-0.043 -0.22533,-0.058 l -0.0618,-0.019 c -0.29715,-0.069 -0.5225,-0.2549 -0.66115,-0.5497 -0.13873,-0.2995 -0.16585,-0.6264 -0.0767,-0.9978 0.0966,-0.4211 0.30953,-0.7453 0.63143,-0.9485 0.3244,-0.2178 0.67107,-0.2773 1.05488,-0.1857 0.57201,0.1393 0.95336,0.5423 1.13165,1.2357 0.1833,0.6785 0.15359,1.5575 -0.10642,2.6149 -0.28229,1.1489 -0.66362,1.966 -1.14649,2.4441 -0.52496,0.5126 -1.31488,0.6463 -2.35242,0.3937 l -3.29834,-0.7999 c -0.33429,-0.082 -0.52495,-0.03 -0.56705,0.1337 -0.0247,0.082 -0.0371,0.1635 -0.057,0.2428 -0.013,0.028 -0.0167,0.061 -0.0273,0.1058 -0.057,0.2452 -0.19314,0.4285 -0.39868,0.5572 -0.21047,0.1337 -0.43829,0.1653 -0.67601,0.1096 -0.34667,-0.084 -0.58686,-0.3072 -0.73048,-0.6761 -0.14114,-0.3714 -0.156,-0.7948 -0.0446,-1.2777" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path427"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 262.21518,128.3785 c 0.14115,-0.3813 0.0793,-0.7552 -0.17829,-1.1316 -0.2699,-0.3715 -0.70076,-0.6909 -1.30002,-0.9633 0,0 -0.0693,-0.028 -0.20304,-0.072 -0.61907,-0.2353 -1.15888,-0.2997 -1.6046,-0.1981 -0.45068,0.1021 -0.74783,0.3566 -0.9063,0.7701 -0.17587,0.4432 -0.11644,0.879 0.16845,1.3149 0.28229,0.4259 0.74039,0.7602 1.38422,1.0077 0.62152,0.2353 1.17124,0.2849 1.6566,0.156 0.4779,-0.1355 0.80724,-0.4308 0.98306,-0.884 m 2.13946,0.1958 c -0.30458,0.775 -0.87163,1.3743 -1.72099,1.8025 l 1.09451,0.416 c 0.36894,0.1412 0.60172,0.082 0.69581,-0.1727 0.0199,-0.065 0.0618,-0.1857 0.10901,-0.3738 0.0149,-0.1542 0.047,-0.2923 0.0942,-0.4235 0.0743,-0.1931 0.22037,-0.3318 0.42838,-0.3963 0.21792,-0.067 0.44572,-0.061 0.69335,0.032 0.65124,0.25 0.84439,0.7156 0.58438,1.4139 -0.0891,0.2278 -0.15842,0.3838 -0.20551,0.4852 -0.18821,0.3938 -0.32193,0.6638 -0.37393,0.8073 -0.0544,0.1208 -0.11644,0.3269 -0.1833,0.5968 -0.0719,0.2626 -0.13613,0.4557 -0.18572,0.5746 -0.0891,0.26 -0.22039,0.4134 -0.37392,0.4654 -0.156,0.05 -0.39123,0.018 -0.7082,-0.1096 l -7.00029,-2.6595 c -0.5225,-0.2031 -0.81965,-0.2031 -0.8964,-0.019 -0.0199,0.059 -0.0297,0.1485 -0.0273,0.2549 0.007,0.067 -0.013,0.156 -0.0446,0.2576 -0.17327,0.4383 -0.51752,0.5596 -1.03258,0.359 -0.31695,-0.1188 -0.54724,-0.2971 -0.68591,-0.5176 -0.14115,-0.2377 -0.16102,-0.4778 -0.0669,-0.7328 l 0.0347,-0.087 0.29715,-0.5076 c 0.0644,-0.1114 0.14355,-0.2823 0.2278,-0.5101 0.10158,-0.2624 0.16844,-0.4879 0.22039,-0.6636 0.0618,-0.27 0.099,-0.4136 0.104,-0.4335 0.12629,-0.312 0.36896,-0.4059 0.7404,-0.2648 l 0.56458,0.2179 c -0.70079,-0.8742 -0.85183,-1.8424 -0.44821,-2.9097 0.36153,-0.936 1.04001,-1.5624 2.04042,-1.8768 1.0004,-0.312 2.08993,-0.2428 3.26366,0.2005 1.18859,0.4532 2.04289,1.1218 2.54804,1.9984 0.50764,0.879 0.57697,1.7977 0.21297,2.7683" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path431"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 257.67824,137.0451 c -0.052,-0.024 -0.11143,-0.043 -0.16343,-0.032 -0.052,0 -0.12128,0.097 -0.22286,0.2724 l -0.85679,1.6219 c -0.0719,0.143 -0.10159,0.2451 -0.0891,0.2923 0.0167,0.058 0.0693,0.1021 0.15601,0.1467 0.25506,0.1319 0.53486,0.1393 0.83944,0.022 0.30953,-0.1207 0.53982,-0.3293 0.6983,-0.6363 0.208,-0.3788 0.22286,-0.7752 0.0421,-1.1787 -0.10641,-0.26 -0.24514,-0.4285 -0.40362,-0.5076 m -3.15719,4.2195 c -0.40858,-0.2106 -0.65621,-0.4086 -0.73544,-0.5746 -0.0817,-0.1727 -0.0422,-0.411 0.11645,-0.7105 l 1.86709,-3.5287 c 0.0915,-0.1838 0.13371,-0.2923 0.12387,-0.3541 -0.0167,-0.065 -0.0867,-0.1208 -0.2179,-0.1932 -0.40858,-0.2253 -0.81469,-0.2724 -1.22078,-0.1486 -0.40115,0.1133 -0.71068,0.3715 -0.92611,0.7702 -0.21297,0.4036 -0.21297,0.936 0.009,1.5996 0.15842,0.4507 0.14356,0.8493 -0.0422,1.1936 -0.15359,0.2921 -0.36153,0.4877 -0.61907,0.572 -0.26,0.095 -0.51009,0.074 -0.76515,-0.05 -0.55715,-0.3046 -0.86916,-0.8668 -0.93602,-1.6813 -0.0693,-0.8222 0.13372,-1.6741 0.59679,-2.5432 0.60666,-1.1515 1.43867,-1.8869 2.49851,-2.2064 1.05983,-0.3144 2.16422,-0.1727 3.32805,0.4409 1.1663,0.624 1.9265,1.4585 2.29051,2.5208 0.35906,1.0599 0.2501,2.1394 -0.33676,3.2439 -0.5423,1.0177 -1.26784,1.6837 -2.17908,1.9859 -0.91869,0.2995 -1.87203,0.1907 -2.85262,-0.3367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path435"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.67074,140.4781 c 0.20057,0.3144 0.58193,0.2897 1.15641,-0.069 l 3.98673,-2.5183 c 0.61905,-0.3913 0.78248,-0.8148 0.49772,-1.2679 -0.28724,-0.4481 -0.58935,-0.5795 -0.90136,-0.3765 -0.099,0.058 -0.22286,0.156 -0.39866,0.312 -0.16343,0.1505 -0.2922,0.2626 -0.38878,0.3221 -0.82209,0.515 -1.45602,0.4333 -1.89182,-0.2626 -0.20058,-0.3269 -0.2625,-0.6413 -0.16845,-0.9632 0.0916,-0.3146 0.31694,-0.5844 0.66609,-0.8049 0.11645,-0.076 0.34915,-0.1881 0.68344,-0.3539 0.2625,-0.1282 0.49526,-0.2502 0.69583,-0.3789 0.11143,-0.067 0.32686,-0.2303 0.63887,-0.4879 0.21296,-0.1708 0.39372,-0.3021 0.53239,-0.3913 0.41105,-0.2526 0.74287,-0.1801 1.00039,0.2279 0.13613,0.2178 0.29467,0.5001 0.468,0.8344 0.40611,0.785 1.02269,1.8548 1.86956,3.1869 0.8543,1.3472 1.55013,2.3748 2.085,3.0731 0.2278,0.3096 0.416,0.5622 0.54229,0.7676 0.26248,0.4234 0.19562,0.7603 -0.21296,1.0153 -0.13613,0.087 -0.36154,0.1981 -0.65373,0.3441 -0.29218,0.1319 -0.50268,0.2502 -0.63886,0.3369 -0.15099,0.097 -0.36648,0.2476 -0.64877,0.4606 -0.35906,0.2823 -0.56954,0.4431 -0.61907,0.4802 -0.35162,0.2181 -0.69581,0.3022 -1.01773,0.2428 -0.32437,-0.065 -0.58438,-0.2526 -0.78495,-0.567 -0.43087,-0.6909 -0.26001,-1.2902 0.5398,-1.7929 0.10902,-0.069 0.26497,-0.1467 0.46554,-0.2402 0.20553,-0.087 0.35411,-0.1653 0.44572,-0.2178 0.33429,-0.2154 0.3764,-0.52 0.11645,-0.9312 -0.16845,-0.2574 -0.35658,-0.4036 -0.56705,-0.4283 -0.20554,-0.02 -0.4804,0.074 -0.82459,0.2847 l -3.98673,2.5184 c -0.56458,0.359 -0.7602,0.6933 -0.56211,1.0127 0.0693,0.1021 0.17828,0.2477 0.32935,0.421 0.16343,0.1839 0.2699,0.3194 0.33429,0.4184 0.35409,0.5524 0.24514,1.0055 -0.30458,1.3547 -0.72801,0.4605 -1.31488,0.3465 -1.7507,-0.3492 -0.16585,-0.2674 -0.34915,-0.5943 -0.54725,-0.9856 -0.29715,-0.5893 -0.56458,-1.0846 -0.81716,-1.4733 -0.26,-0.4136 -0.58191,-0.8742 -0.98306,-1.3843 -0.26496,-0.3343 -0.49029,-0.6413 -0.66115,-0.9186 -0.43333,-0.6935 -0.32439,-1.2506 0.35411,-1.674 0.61162,-0.3837 1.08953,-0.2972 1.44859,0.265 0.0644,0.1021 0.13873,0.2576 0.24019,0.4778 0.0916,0.2229 0.16845,0.3839 0.23276,0.4805" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path439"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 120.28708,148.0106 c -0.29715,-0.3814 -0.70077,-0.5423 -1.20592,-0.4903 -0.50019,0.043 -1.03505,0.2922 -1.60459,0.7552 -0.58191,0.468 -0.94098,0.9336 -1.08955,1.4188 -0.14858,0.4755 -0.0645,0.9063 0.25506,1.2976 0.63391,0.8023 1.56746,0.6909 2.78823,-0.2847 1.22821,-0.993 1.5105,-1.8943 0.85677,-2.6966 m -5.19512,4.2814 c -0.8543,-1.0573 -1.21335,-2.1098 -1.08459,-3.1697 0.13613,-1.0498 0.7404,-2.0105 1.82499,-2.8847 1.0722,-0.8617 2.13697,-1.2579 3.19184,-1.1687 1.06231,0.087 2.00081,0.6412 2.83776,1.6788 0.81716,1.0103 1.15394,2.0454 1.03259,3.1052 -0.12127,1.0573 -0.70572,2.0058 -1.74574,2.8501 -1.08459,0.8765 -2.16918,1.2827 -3.24138,1.2134 -1.06477,-0.069 -2.00328,-0.6165 -2.81547,-1.6244" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path443"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 126.86025,153.4182 -0.55222,0.5669 c 1.28766,-0.117 2.31282,0.1932 3.07054,0.9411 0.81467,0.7924 1.08459,1.659 0.82706,2.595 -0.12871,0.4903 -0.52248,1.0649 -1.17869,1.7409 l -1.72346,1.7532 c -0.38133,0.3961 -0.50515,0.676 -0.34419,0.8246 0.0371,0.044 0.11644,0.082 0.21543,0.1244 0.0719,0.019 0.13372,0.067 0.21543,0.1467 0.33925,0.3343 0.31201,0.7033 -0.0916,1.1167 -0.54476,0.5524 -1.04248,0.5969 -1.51298,0.1319 -0.11886,-0.1207 -0.29466,-0.3194 -0.51009,-0.5967 -0.22286,-0.2725 -0.39621,-0.473 -0.51507,-0.5943 -0.20057,-0.1907 -0.42343,-0.3789 -0.67105,-0.5646 -0.24515,-0.1857 -0.44325,-0.3369 -0.5844,-0.4754 -0.468,-0.4532 -0.46304,-0.9188 0.009,-1.3942 0.40611,-0.4136 0.78001,-0.4704 1.12422,-0.1839 0.22533,0.1884 0.43086,0.1958 0.60666,0.019 l 1.6046,-1.6367 c 0.44325,-0.4556 0.69336,-0.8246 0.75526,-1.1268 0.0719,-0.2945 -0.047,-0.5868 -0.32191,-0.8543 -0.31943,-0.3168 -0.69335,-0.4654 -1.1143,-0.4481 -0.42096,0.019 -0.79487,0.1907 -1.12422,0.5274 l -1.19106,1.2133 c -0.34419,0.3542 -0.54476,0.5821 -0.58191,0.6835 -0.0446,0.1114 0,0.2477 0.1313,0.4111 0.23276,0.3169 0.16845,0.6586 -0.20306,1.0449 -0.48533,0.4903 -0.93601,0.5375 -1.34706,0.1337 -0.11886,-0.1188 -0.25258,-0.2797 -0.40115,-0.463 -0.24268,-0.3218 -0.43829,-0.5521 -0.57697,-0.6933 -0.14356,-0.1355 -0.37143,-0.322 -0.67848,-0.5597 -0.30954,-0.2426 -0.52991,-0.4259 -0.66858,-0.572 -0.49525,-0.4755 -0.48534,-0.9806 0.0273,-1.5055 0.43086,-0.4358 0.83448,-0.468 1.20345,-0.1021 0.0618,0.059 0.12127,0.1411 0.17828,0.2476 0.052,0.104 0.0867,0.1764 0.13131,0.2106 0.1313,0.1281 0.41104,-0.024 0.84191,-0.4582 l 1.8547,-1.8967 c 0.43334,-0.4483 0.59183,-0.7355 0.45562,-0.8668 -0.0273,-0.03 -0.10641,-0.076 -0.22286,-0.1393 -0.11143,-0.058 -0.19562,-0.1095 -0.23772,-0.1578 -0.37143,-0.369 -0.35657,-0.7602 0.0693,-1.1936 0.22782,-0.2351 0.47544,-0.3614 0.7503,-0.3813 0.27239,-0.02 0.5225,0.065 0.72059,0.2749 0.0719,0.054 0.1833,0.213 0.34914,0.4481 0.0867,0.1411 0.18071,0.2526 0.26744,0.3319 0.0942,0.097 0.27239,0.2401 0.52992,0.4258 0.25505,0.1958 0.39866,0.2998 0.41848,0.3245 0.2179,0.1981 0.21047,0.4184 -0.006,0.6314" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path447"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 133.98757,162.444 -1.24059,3.4865 2.92938,-2.0254 c 0.23029,-0.1505 0.37639,-0.2823 0.45563,-0.3889 0.0817,-0.099 0.0618,-0.2179 -0.0347,-0.3813 l -0.16344,-0.2576 c -0.1313,-0.2179 -0.0841,-0.4654 0.14115,-0.7626 0.16584,-0.218 0.36152,-0.3517 0.60172,-0.4011 0.23276,-0.046 0.44572,0 0.63887,0.1467 0.12387,0.098 0.31695,0.2674 0.55962,0.5027 0.24268,0.2378 0.4284,0.4062 0.55962,0.515 0.13874,0.099 0.3665,0.2378 0.66859,0.416 0.3021,0.1728 0.52743,0.3146 0.66115,0.4235 0.52744,0.3963 0.57944,0.8816 0.14616,1.4437 -0.156,0.203 -0.34419,0.3293 -0.57695,0.3962 -0.23029,0.059 -0.42839,0.035 -0.5943,-0.097 -0.0421,-0.024 -0.0867,-0.074 -0.15358,-0.1579 -0.0719,-0.08 -0.12388,-0.1318 -0.16102,-0.1578 -0.15842,-0.1244 -0.38135,-0.084 -0.68097,0.1058 l -0.51011,0.3269 -3.34291,2.08 c -1.03259,0.6488 -1.71603,1.0499 -2.05526,1.2157 -0.33925,0.1653 -0.75278,0.3146 -1.25545,0.4484 -1.36194,0.359 -2.553,0.1467 -3.55834,-0.6092 -0.61907,-0.4706 -1.01773,-1.0079 -1.19602,-1.6096 -0.17587,-0.5993 -0.0891,-1.1217 0.26248,-1.5873 0.24267,-0.3269 0.54476,-0.5052 0.90383,-0.562 0.35904,-0.046 0.69333,0.045 1.00534,0.2847 0.27239,0.2056 0.42839,0.4507 0.46801,0.7304 0.047,0.2873 -0.0297,0.5572 -0.21544,0.8172 -0.0767,0.091 -0.15098,0.1883 -0.22286,0.2849 0.0719,0.1318 0.16343,0.2451 0.26744,0.3168 0.23524,0.1764 0.55715,0.2032 0.97562,0.084 0.41354,-0.117 0.69336,-0.2725 0.83945,-0.4632 0.13613,-0.1783 0.31696,-0.7328 0.55221,-1.659 l 1.14649,-4.5538 c 0.0719,-0.317 0.0644,-0.5224 -0.0396,-0.5993 -0.009,0 -0.0767,-0.058 -0.19811,-0.1486 -0.009,0 -0.0199,-0.019 -0.047,-0.039 -0.0273,-0.02 -0.057,-0.039 -0.0693,-0.05 -0.44573,-0.3317 -0.47791,-0.7477 -0.10401,-1.2406 0.18331,-0.2452 0.41354,-0.3887 0.69336,-0.4407 0.27486,-0.058 0.52991,0 0.76267,0.1764 0.13371,0.1022 0.32686,0.2797 0.57943,0.515 0.24764,0.2427 0.44079,0.421 0.57697,0.525 0.16845,0.1263 0.46058,0.3195 0.87659,0.5819 0.416,0.2624 0.64382,0.4035 0.66611,0.416 0.47791,0.369 0.52744,0.8023 0.14616,1.3098 -0.2699,0.3518 -0.60668,0.4261 -1.02269,0.208 -0.20304,-0.1114 -0.35409,-0.1021 -0.45315,0.03 -0.0496,0.072 -0.11644,0.2005 -0.18819,0.4061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path451"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 141.84341,163.3717 c 0.24762,-0.3963 0.57944,-0.6564 1.00288,-0.7752 0.416,-0.1114 0.81962,-0.052 1.19106,0.1708 0.45315,0.2799 0.71564,0.7084 0.78497,1.2754 0.0793,0.5744 -0.052,1.1291 -0.38876,1.6789 -0.6884,1.1291 -1.90671,2.0057 -3.65492,2.6199 -0.42343,0.156 -0.73793,0.1653 -0.94344,0.037 -0.34421,-0.2106 -0.39868,-0.4977 -0.16343,-0.8816 0.14114,-0.2353 0.39619,-0.4383 0.76762,-0.6067 1.03259,-0.463 1.61203,-0.8122 1.7606,-1.0573 0.0793,-0.1282 0.0371,-0.2897 -0.14114,-0.4903 -0.56954,-0.6166 -0.64134,-1.2703 -0.21544,-1.971" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path455"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 148.35267,168.3357 c 0.7503,0.3813 1.2827,0.9039 1.59717,1.5699 0.24515,-0.3911 0.61164,-0.4704 1.10441,-0.2277 0.49525,0.2425 0.66115,0.5497 0.48533,0.9063 -0.057,0.1058 -0.14356,0.2377 -0.25504,0.3614 -0.12128,0.1616 -0.20801,0.3194 -0.29219,0.473 -0.0167,0.03 -0.047,0.1189 -0.104,0.2452 -0.0669,0.1262 -0.12128,0.2377 -0.17328,0.3393 l -0.0223,0.059 c -0.25753,0.5174 -0.64135,0.6463 -1.16383,0.3911 -0.37143,-0.1857 -0.60419,-0.5248 -0.69334,-1.035 -0.11143,-0.6116 -0.41353,-1.0326 -0.89144,-1.2727 -0.56954,-0.2775 -0.95087,-0.2255 -1.14402,0.1653 -0.10159,0.2056 -0.0793,0.3961 0.0644,0.5696 0.15099,0.1764 0.58191,0.5298 1.30497,1.0623 0.58935,0.4333 0.99544,0.8023 1.23812,1.1069 0.22782,0.2945 0.38876,0.624 0.44076,1.0002 0.0693,0.4656 -0.009,0.9411 -0.24515,1.4091 -0.364,0.7428 -0.9583,1.2207 -1.77792,1.4387 -0.81716,0.2128 -1.6566,0.1096 -2.51833,-0.317 -0.86173,-0.4234 -1.50555,-1.0896 -1.93642,-1.9784 -0.23772,0.4704 -0.59676,0.5892 -1.09202,0.3391 -0.52247,-0.255 -0.68591,-0.6066 -0.46551,-1.0326 0.0396,-0.091 0.1313,-0.2426 0.25257,-0.4431 0.12127,-0.1958 0.20305,-0.3444 0.25505,-0.4433 0.0396,-0.084 0.10158,-0.2205 0.17327,-0.4012 0.0719,-0.1881 0.1287,-0.317 0.17829,-0.411 0.21047,-0.4383 0.59676,-0.5274 1.14649,-0.2526 0.26743,0.1282 0.44078,0.2675 0.54229,0.4134 0.0966,0.1468 0.16585,0.3741 0.20554,0.6787 0.0719,0.4778 0.17327,0.8368 0.32439,1.0548 0.15359,0.2129 0.42837,0.4209 0.82209,0.6166 0.71069,0.3516 1.17127,0.3046 1.38917,-0.1337 0.14857,-0.3096 -0.0273,-0.6537 -0.53734,-1.0599 l -0.76515,-0.5943 c -0.62648,-0.4927 -1.04745,-0.8766 -1.26288,-1.1663 -0.21543,-0.2921 -0.32439,-0.6413 -0.33429,-1.0376 -0.009,-0.4036 0.0867,-0.8097 0.28972,-1.2157 0.35658,-0.7306 0.90134,-1.206 1.61449,-1.4337 0.70822,-0.2106 1.45852,-0.1319 2.24596,0.255" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path459"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 162.12424,170.8208 c 1.00534,0.2897 1.76803,0.9163 2.29298,1.8746 0.007,-0.037 0.0167,-0.089 0.0496,-0.1578 0.16845,-0.5893 0.57201,-0.7849 1.19851,-0.6018 0.29962,0.087 0.50762,0.2502 0.63391,0.4829 0.13873,0.2403 0.15099,0.5078 0.0693,0.8023 -0.0446,0.1356 -0.10901,0.3319 -0.21543,0.5895 -0.17587,0.4085 -0.28725,0.7155 -0.34172,0.9063 -0.0422,0.1337 -0.0841,0.3367 -0.1313,0.6165 -0.0371,0.2773 -0.0793,0.4877 -0.11645,0.6265 -0.0942,0.3244 -0.29467,0.5547 -0.58439,0.676 -0.29466,0.1318 -0.63391,0.143 -1.01525,0.032 -0.79735,-0.2378 -1.08954,-0.6785 -0.86915,-1.3346 l 0.14356,-0.4953 c 0.11384,-0.3417 0.0594,-0.671 -0.16845,-0.9856 -0.22039,-0.3094 -0.55964,-0.5349 -1.00536,-0.6636 -1.39411,-0.416 -2.41679,0.4977 -3.08538,2.7165 -0.32686,1.1613 -0.41104,2.0503 -0.22286,2.6818 0.18331,0.6338 0.6463,1.0548 1.3867,1.2727 0.46305,0.1411 0.87162,0.1411 1.23067,0 0.35411,-0.1282 0.57201,-0.3664 0.66858,-0.7108 l 0.16343,-0.5744 c 0.0841,-0.3293 0.2724,-0.5622 0.54973,-0.6959 0.26992,-0.1337 0.58935,-0.1504 0.92611,-0.046 0.4383,0.1244 0.74287,0.369 0.91126,0.7429 0.16845,0.3714 0.18071,0.8097 0.0371,1.3098 -0.29964,0.9955 -0.92612,1.6964 -1.91661,2.0975 -0.97811,0.4012 -2.08499,0.4086 -3.33301,0.047 -1.52784,-0.4482 -2.59014,-1.2902 -3.19433,-2.5308 -0.59677,-1.2332 -0.64134,-2.6966 -0.14858,-4.3803 0.51011,-1.7384 1.30498,-2.9914 2.397,-3.759 1.08706,-0.7677 2.32022,-0.9484 3.68957,-0.5449" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path463"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 170.72566,173.6494 -0.48287,2.9591 c 0.52744,-0.3269 0.95584,-0.5299 1.2926,-0.6116 0.33678,-0.084 0.73297,-0.089 1.19355,0 1.00287,0.1634 1.66649,0.5893 1.98346,1.2902 0.21296,0.468 0.24267,1.1563 0.0891,2.0774 l -0.46058,2.7858 c -0.0817,0.5399 -0.0223,0.8246 0.19315,0.8617 0.0891,0.019 0.16844,0 0.24514,-0.022 0.0669,-0.03 0.15359,-0.035 0.26001,-0.022 0.4779,0.08 0.66611,0.4038 0.57448,0.9583 -0.1287,0.7752 -0.50762,1.1069 -1.14153,0.9931 -0.1833,-0.02 -0.45315,-0.095 -0.79983,-0.1932 -0.34915,-0.098 -0.61905,-0.169 -0.8023,-0.2005 -0.17086,-0.022 -0.43333,-0.043 -0.77505,-0.052 -0.35164,-0.019 -0.61164,-0.039 -0.78002,-0.065 -0.27239,-0.043 -0.47792,-0.1653 -0.61411,-0.3813 -0.13371,-0.2104 -0.17587,-0.468 -0.1313,-0.7652 0.0942,-0.5547 0.34668,-0.8097 0.77012,-0.7726 0.1807,0.022 0.30457,-0.018 0.36151,-0.089 0.0644,-0.082 0.10159,-0.2229 0.13613,-0.4234 l 0.40858,-2.4714 c 0.14616,-0.8914 -0.12127,-1.3966 -0.80477,-1.5104 -0.92611,-0.1486 -1.49563,0.4136 -1.70364,1.6937 l -0.31943,1.9068 c -0.0297,0.2228 -0.0273,0.3762 0.007,0.4357 0.0396,0.072 0.16584,0.1411 0.37637,0.2031 0.32935,0.1133 0.45068,0.406 0.37887,0.8915 -0.11886,0.7156 -0.47791,1.0201 -1.07221,0.9211 -0.12387,-0.02 -0.3541,-0.082 -0.68591,-0.1782 -0.31943,-0.097 -0.62649,-0.169 -0.90383,-0.2205 -0.23029,-0.035 -0.47047,-0.059 -0.73544,-0.069 -0.44076,-0.019 -0.72305,-0.032 -0.83944,-0.05 -0.29219,-0.05 -0.51258,-0.1908 -0.66611,-0.4185 -0.14356,-0.2303 -0.19066,-0.4953 -0.14356,-0.8147 0.099,-0.6216 0.41354,-0.8816 0.93602,-0.7899 0.0668,0.019 0.15358,0.039 0.26249,0.1022 0.10641,0.061 0.19066,0.095 0.25504,0.104 0.18572,0.032 0.32687,-0.26 0.42097,-0.8642 l 0.88895,-5.3882 c 0.0916,-0.5993 0.0496,-0.9137 -0.12628,-0.9509 -0.0767,0 -0.17829,0 -0.30458,0.019 -0.0669,0.019 -0.15359,0 -0.26001,-0.019 -0.52,-0.082 -0.72801,-0.416 -0.63143,-1.0153 0.0496,-0.317 0.18571,-0.5595 0.39868,-0.733 0.21296,-0.169 0.47047,-0.2277 0.75772,-0.1801 0.13873,0.018 0.34172,0.067 0.61411,0.1467 0.26001,0.076 0.45562,0.1244 0.59677,0.1467 0.33182,0.061 0.62154,0.089 0.87163,0.091 0.24763,0.019 0.43335,0.022 0.56706,0.05 0.29219,0.046 0.40115,0.2576 0.34419,0.6365" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path467"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 181.27416,178.8503 c -0.48287,-0.028 -0.87659,0.169 -1.17869,0.567 -0.29962,0.4061 -0.46552,0.9731 -0.50515,1.7112 -0.0446,0.7477 0.0618,1.3395 0.32439,1.7704 0.2501,0.4234 0.63144,0.6537 1.13412,0.681 1.0202,0.054 1.57239,-0.7057 1.6566,-2.2757 0.0817,-1.5798 -0.39621,-2.3995 -1.43127,-2.4539 m -0.30211,6.7452 c -1.35202,-0.08 -2.37469,-0.515 -3.06805,-1.3247 -0.70323,-0.7975 -1.01277,-1.8969 -0.93352,-3.2736 0.0767,-1.3768 0.49523,-2.4417 1.27277,-3.1697 0.77259,-0.728 1.8225,-1.0548 3.13738,-0.9854 1.29755,0.069 2.30042,0.5052 3.00615,1.3123 0.70573,0.8049 1.02763,1.877 0.95087,3.2044 -0.0719,1.394 -0.49772,2.4737 -1.26288,3.219 -0.77011,0.7453 -1.80764,1.0846 -3.10272,1.0177" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path471"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 191.47004,179.6981 c -0.009,-0.1653 0.0371,-0.3317 0.13371,-0.5002 -0.26,-0.1652 -0.54478,-0.2401 -0.84936,-0.2303 -0.48037,0.021 -0.85924,0.2354 -1.14649,0.6514 -0.28229,0.4134 -0.40857,0.9532 -0.38382,1.6168 0.0273,0.6935 0.20554,1.2382 0.5423,1.6418 0.33429,0.4085 0.76268,0.5942 1.28269,0.5746 0.53487,-0.019 0.91869,-0.3269 1.14649,-0.9164 0.13372,-0.3664 0.26,-0.5991 0.364,-0.7057 0.14616,-0.1393 0.38383,-0.2128 0.71316,-0.2303 0.37639,-0.019 0.6785,0.089 0.92116,0.3072 0.23524,0.2104 0.35657,0.4903 0.37886,0.8419 0.0321,0.7428 -0.30705,1.4064 -1.00534,1.981 -0.70326,0.5794 -1.55507,0.8864 -2.5629,0.9286 -1.28763,0.045 -2.32518,-0.3096 -3.12252,-1.0673 -0.79487,-0.7628 -1.21831,-1.815 -1.27031,-3.1474 -0.0544,-1.3371 0.29219,-2.4241 1.04992,-3.2487 0.75277,-0.8172 1.80021,-1.2505 3.13491,-1.3025 0.96077,-0.039 1.76306,0.156 2.41185,0.5843 0.64134,0.421 0.98553,0.9906 1.0103,1.6889 0.0167,0.4357 -0.10901,0.7949 -0.38382,1.0746 -0.27486,0.2748 -0.63144,0.4284 -1.07469,0.4383 -0.37638,0.019 -0.67601,-0.065 -0.91867,-0.2452 -0.23772,-0.1838 -0.35658,-0.4282 -0.37143,-0.7354" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path475"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 199.38579,178.0658 c -0.47544,0.076 -0.8221,0.3393 -1.03259,0.7973 -0.21294,0.4531 -0.26247,1.0474 -0.15359,1.778 0.10902,0.7305 0.33923,1.2778 0.67601,1.6492 0.34419,0.364 0.76267,0.51 1.26288,0.4357 1.00039,-0.156 1.38917,-1.0103 1.15145,-2.5703 -0.24021,-1.5476 -0.87165,-2.2459 -1.90424,-2.0899 m 1.08955,6.6487 c -1.33963,0.1955 -2.43414,-0.019 -3.28101,-0.6588 -0.83944,-0.6463 -1.37678,-1.6566 -1.58725,-3.0258 -0.20306,-1.3571 -0.013,-2.4738 0.60419,-3.348 0.6042,-0.874 1.55507,-1.4064 2.86252,-1.612 1.29012,-0.1905 2.35985,0.024 3.22158,0.6712 0.84934,0.6363 1.38174,1.6219 1.58974,2.9367 0.208,1.3768 0.0199,2.5184 -0.5844,3.4074 -0.59676,0.8814 -1.54268,1.4311 -2.82537,1.6293" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path479"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 206.55498,171.9022 c 0.29714,-0.076 0.49276,0.076 0.59429,0.473 l 1.94385,7.5104 c 0.14114,0.5323 0.31447,0.7652 0.52495,0.7082 0.0867,-0.02 0.15358,-0.058 0.208,-0.1114 0.0594,-0.05 0.13613,-0.095 0.24268,-0.1189 0.46553,-0.1189 0.77258,0.098 0.91126,0.6636 0.19561,0.7354 -0.0247,1.1886 -0.66116,1.3546 -0.0149,0 -0.42343,0.074 -1.23069,0.2178 -0.25258,0.035 -0.51258,0.091 -0.78991,0.1635 -0.23029,0.065 -0.47297,0.1411 -0.73297,0.2451 -0.42591,0.1653 -0.69583,0.2699 -0.81469,0.2972 -0.28972,0.08 -0.54229,0.035 -0.77752,-0.1133 -0.23029,-0.1412 -0.38878,-0.3839 -0.47297,-0.6983 -0.15099,-0.5895 0.0396,-0.9535 0.5522,-1.0872 0.0644,-0.022 0.156,-0.024 0.27486,-0.019 0.11886,0 0.21543,0 0.27735,-0.019 0.1807,-0.043 0.19561,-0.3688 0.0396,-0.9583 l -1.36934,-5.2842 c -0.14858,-0.5893 -0.31201,-0.8617 -0.49526,-0.8121 -0.0793,0.019 -0.16844,0.058 -0.27239,0.1337 -0.0594,0.035 -0.13613,0.069 -0.24761,0.089 -0.51258,0.1356 -0.83449,-0.084 -0.98306,-0.6611 -0.0841,-0.3295 -0.0693,-0.6092 0.0644,-0.8469 0.13613,-0.2329 0.34915,-0.3937 0.65622,-0.4706 0.0867,-0.028 0.2699,-0.058 0.55219,-0.095 0.3739,-0.058 0.65125,-0.098 0.82458,-0.1504 0.24515,-0.069 0.45068,-0.1393 0.62154,-0.2203 0.23523,-0.097 0.41848,-0.1578 0.55962,-0.1981" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path483"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.2979,174.1836 c -0.44325,0.169 -0.72801,0.5027 -0.8444,0.993 -0.11143,0.4927 -0.0396,1.0796 0.22039,1.768 0.25753,0.6883 0.59677,1.1836 1.0004,1.4808 0.40362,0.2921 0.84687,0.3417 1.31239,0.1615 0.95088,-0.3417 1.15394,-1.2628 0.59926,-2.7363 -0.5522,-1.4757 -1.31735,-2.0281 -2.28804,-1.6665 m 2.42422,6.2823 c -1.26039,0.4829 -2.37718,0.4877 -3.33299,0.03 -0.96079,-0.4582 -1.68384,-1.3347 -2.16918,-2.6348 -0.47792,-1.2926 -0.52001,-2.4167 -0.104,-3.3925 0.41352,-0.9806 1.24059,-1.7011 2.48118,-2.1641 1.21335,-0.4582 2.31033,-0.4582 3.2711,0 0.9682,0.4507 1.68878,1.3024 2.15432,2.5456 0.49276,1.3149 0.53733,2.4613 0.13371,3.4543 -0.4061,0.9881 -1.21334,1.7135 -2.43414,2.1692" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path487"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 221.3814,169.6237 0.37886,0.6882 c 0.26249,-1.2703 0.87165,-2.1517 1.8027,-2.6619 0.99792,-0.5398 1.90918,-0.5547 2.7288,-0.022 0.43335,0.26 0.87165,0.8121 1.31984,1.6343 l 1.1762,2.1543 c 0.25754,0.5001 0.4903,0.6909 0.6785,0.5869 0.047,-0.024 0.10902,-0.087 0.1807,-0.1802 0.0347,-0.058 0.0942,-0.104 0.19068,-0.1616 0.41601,-0.2278 0.76516,-0.082 1.04745,0.4235 0.364,0.6784 0.25504,1.1687 -0.3244,1.4857 -0.15359,0.08 -0.38629,0.1881 -0.72058,0.3144 -0.32686,0.1356 -0.56705,0.2353 -0.72058,0.3221 -0.24268,0.1281 -0.48287,0.2871 -0.73048,0.468 -0.25507,0.1838 -0.46058,0.3242 -0.6364,0.4184 -0.56705,0.3096 -1.00535,0.169 -1.32478,-0.411 -0.27486,-0.5152 -0.21792,-0.8816 0.156,-1.1342 0.25009,-0.1578 0.31695,-0.3541 0.19809,-0.572 l -1.09696,-2.0256 c -0.29963,-0.5521 -0.59429,-0.9111 -0.8543,-1.0573 -0.26743,-0.1504 -0.57201,-0.1281 -0.92115,0.059 -0.39373,0.2131 -0.64383,0.52 -0.75279,0.9286 -0.10902,0.411 -0.052,0.8222 0.17327,1.2332 l 0.81716,1.5056 c 0.23523,0.4309 0.39619,0.6808 0.48533,0.7453 0.0892,0.082 0.23276,0.082 0.42591,0 0.37886,-0.1319 0.69336,0.032 0.94097,0.5075 0.33182,0.5969 0.24019,1.0376 -0.26743,1.3199 -0.14857,0.08 -0.32686,0.1579 -0.55715,0.2452 -0.37391,0.1467 -0.65373,0.2724 -0.82954,0.3616 -0.16845,0.095 -0.41848,0.255 -0.73545,0.4728 -0.32437,0.2255 -0.572,0.3839 -0.74533,0.4754 -0.6042,0.3343 -1.07963,0.1709 -1.43621,-0.4704 -0.28725,-0.5473 -0.20553,-0.9336 0.25504,-1.1886 0.0767,-0.043 0.17086,-0.069 0.28972,-0.083 0.11385,-0.019 0.19315,-0.035 0.24515,-0.065 0.16102,-0.084 0.0966,-0.3962 -0.19562,-0.9411 l -1.26783,-2.33 c -0.29468,-0.5473 -0.52248,-0.7776 -0.6884,-0.6908 -0.0371,0.024 -0.104,0.076 -0.19809,0.1782 -0.0841,0.089 -0.16343,0.1542 -0.22039,0.1783 -0.46058,0.25 -0.83697,0.1096 -1.12173,-0.4111 -0.156,-0.2946 -0.21296,-0.5745 -0.14616,-0.8443 0.057,-0.26 0.22039,-0.468 0.47793,-0.6142 0.0767,-0.037 0.25257,-0.1058 0.52743,-0.1881 0.15842,-0.05 0.29466,-0.098 0.40362,-0.1616 0.11143,-0.054 0.29962,-0.1931 0.55468,-0.3789 0.26001,-0.1955 0.39866,-0.2971 0.42838,-0.312 0.26249,-0.1411 0.46554,-0.072 0.60915,0.1982" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path491"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 231.34674,166.0987 c 0.0396,0.058 0.0817,0.087 0.13874,0.099 0.052,0.022 0.15841,-0.028 0.31694,-0.1486 l 1.48327,-1.0822 c 0.13371,-0.097 0.20553,-0.1708 0.21296,-0.2228 0.009,-0.06 -0.013,-0.1208 -0.0743,-0.203 -0.17086,-0.2303 -0.42096,-0.3542 -0.74782,-0.3813 -0.32934,-0.022 -0.62897,0.067 -0.90135,0.2698 -0.35657,0.255 -0.53982,0.6042 -0.56211,1.0376 -0.009,0.2797 0.0372,0.4903 0.13372,0.6315 m 4.69493,-2.4194 c 0.26991,0.3715 0.40611,0.6514 0.39868,0.8445 0,0.1881 -0.13371,0.3887 -0.40858,0.5843 l -3.22901,2.3673 c -0.15841,0.1133 -0.24761,0.203 -0.26496,0.26 -0.0149,0.061 0.0167,0.156 0.10902,0.2749 0.2699,0.369 0.61658,0.5919 1.03011,0.6635 0.42095,0.074 0.81467,-0.02 1.17125,-0.2871 0.37392,-0.2674 0.60668,-0.7503 0.69087,-1.4363 0.057,-0.4829 0.2501,-0.8294 0.56458,-1.0647 0.26743,-0.1932 0.53735,-0.2773 0.80725,-0.2452 0.27734,0.03 0.49773,0.1579 0.65869,0.3913 0.36894,0.51 0.41105,1.1465 0.11384,1.9166 -0.29714,0.7626 -0.84687,1.4362 -1.65164,2.0305 -1.04744,0.7701 -2.1147,1.0623 -3.20672,0.884 -1.09698,-0.1783 -2.0305,-0.7925 -2.79319,-1.8498 -0.78497,-1.0623 -1.10191,-2.1593 -0.96573,-3.2662 0.14115,-1.1143 0.71316,-2.0378 1.72593,-2.7709 0.93354,-0.6834 1.87203,-0.9657 2.83282,-0.8394 0.94838,0.1319 1.75564,0.6489 2.41679,1.5427" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path495"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 235.24657,155.9961 c 0.23028,-0.203 0.4779,-0.1579 0.7478,0.143 l 5.19266,5.7721 c 0.364,0.411 0.6265,0.5323 0.78744,0.3911 0.0719,-0.059 0.11644,-0.1244 0.14356,-0.1931 0.0199,-0.072 0.0743,-0.1468 0.156,-0.2129 0.35409,-0.3244 0.72553,-0.2724 1.10935,0.1542 0.51258,0.5672 0.52248,1.0797 0.0371,1.5106 -0.009,0 -0.33925,0.2674 -0.99049,0.7652 -0.20057,0.1485 -0.40857,0.3242 -0.61658,0.515 -0.17587,0.156 -0.3541,0.3393 -0.54478,0.5497 -0.30209,0.3417 -0.49772,0.5571 -0.58438,0.6388 -0.22039,0.1956 -0.46554,0.2823 -0.7404,0.2576 -0.27239,-0.024 -0.51753,-0.1634 -0.73791,-0.4085 -0.41106,-0.4508 -0.41353,-0.8594 -0.0149,-1.2159 0.047,-0.043 0.1287,-0.095 0.23771,-0.1393 0.11143,-0.052 0.19066,-0.095 0.23772,-0.1412 0.13873,-0.1244 0,-0.411 -0.40858,-0.8691 l -3.64748,-4.0535 c -0.40611,-0.4531 -0.6785,-0.6166 -0.81716,-0.4929 -0.0544,0.046 -0.11886,0.1244 -0.1807,0.2377 -0.0347,0.06 -0.0916,0.1245 -0.17086,0.2032 -0.38629,0.3466 -0.79238,0.302 -1.19106,-0.1486 -0.22039,-0.2525 -0.32933,-0.5101 -0.31944,-0.7776 0.006,-0.2724 0.12128,-0.5101 0.35411,-0.7256 0.0669,-0.058 0.2179,-0.1634 0.45809,-0.3343 0.29468,-0.208 0.51754,-0.3862 0.65621,-0.5099 0.18331,-0.1635 0.3343,-0.3269 0.44573,-0.4879 0.16343,-0.1881 0.29961,-0.3319 0.40115,-0.4285" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path499"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 243.38419,155.2945 3.3652,1.5277 -1.7705,-3.0779 c -0.13873,-0.2377 -0.25257,-0.4086 -0.34915,-0.4927 -0.0891,-0.08 -0.21792,-0.08 -0.38878,0.018 l -0.27733,0.1393 c -0.21543,0.1133 -0.46305,0.043 -0.74534,-0.2054 -0.20057,-0.1857 -0.312,-0.3987 -0.34421,-0.634 -0.0247,-0.2351 0.0371,-0.4383 0.20058,-0.619 0.10902,-0.1207 0.28725,-0.2947 0.54229,-0.52 0.26744,-0.2279 0.45068,-0.3988 0.55964,-0.525 0.11385,-0.1263 0.27238,-0.3343 0.47295,-0.6215 0.20306,-0.2897 0.3665,-0.5027 0.48535,-0.6266 0.43334,-0.4903 0.91867,-0.5051 1.44611,-0.03 0.1833,0.1709 0.29468,0.3765 0.34172,0.6118 0.047,0.2401 0,0.4357 -0.14114,0.5818 -0.0273,0.037 -0.0867,0.084 -0.16585,0.1467 -0.0916,0.061 -0.14857,0.104 -0.1807,0.1412 -0.1313,0.1504 -0.10902,0.3763 0.0496,0.6909 l 0.28725,0.5322 1.79279,3.504 c 0.54972,1.0821 0.89887,1.8027 1.0425,2.1567 0.14356,0.3491 0.25009,0.7776 0.33676,1.2851 0.24268,1.3818 -0.0669,2.5481 -0.9063,3.4965 -0.52248,0.5819 -1.08954,0.9286 -1.70117,1.0549 -0.60419,0.1282 -1.13163,0 -1.56002,-0.3887 -0.30211,-0.27 -0.46801,-0.5943 -0.48287,-0.9509 -0.0223,-0.364 0.10159,-0.6908 0.36154,-0.9831 0.23029,-0.2526 0.48286,-0.3837 0.76762,-0.4086 0.28972,-0.019 0.55469,0.08 0.7924,0.2947 0.0867,0.074 0.17829,0.1616 0.26744,0.2401 0.14356,-0.065 0.25257,-0.143 0.34172,-0.2401 0.19314,-0.2154 0.24761,-0.5373 0.16343,-0.9657 -0.0841,-0.4259 -0.21543,-0.7206 -0.39372,-0.879 -0.15842,-0.1467 -0.69087,-0.3789 -1.59717,-0.6786 l -4.44732,-1.5253 c -0.312,-0.1059 -0.50515,-0.1133 -0.59925,-0.019 -0.007,0 -0.0644,0.065 -0.15842,0.1839 -0.006,0 -0.0273,0.02 -0.0496,0.046 -0.0223,0.024 -0.0422,0.043 -0.052,0.058 -0.37391,0.4184 -0.78745,0.4184 -1.24307,0 -0.23029,-0.1958 -0.35904,-0.4359 -0.38876,-0.7232 -0.0297,-0.2847 0.0544,-0.5323 0.24515,-0.7453 0.11886,-0.1263 0.29715,-0.3046 0.56458,-0.5349 0.26247,-0.2252 0.45315,-0.411 0.56458,-0.5348 0.13873,-0.1579 0.35905,-0.4333 0.65124,-0.827 0.29714,-0.3938 0.46306,-0.6018 0.48286,-0.6291 0.40115,-0.4433 0.83697,-0.4531 1.30745,-0.035 0.33429,0.2947 0.37143,0.6463 0.12127,1.04 -0.12628,0.1957 -0.13371,0.3393 -0.007,0.4531 0.0669,0.054 0.20058,0.1356 0.3962,0.2155" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 105 KiB |
BIN
static/img/partenaires/apromac.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
static/img/partenaires/pmci.jpeg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
static/img/partenaires/sodexam.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
463
static/img/partenaires/tonys_chocolonely.svg
Normal file
@@ -0,0 +1,463 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1000.0001"
|
||||
height="507.81265"
|
||||
viewBox="0 0 1000.0001 507.81266"
|
||||
version="1.1"
|
||||
id="svg53"
|
||||
sodipodi:docname="62baf26956eaf555635bcef2_Frame.svg"
|
||||
style="fill:none"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata57">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#111111"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
id="namedview55"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.45467033"
|
||||
inkscape:cx="513.51661"
|
||||
inkscape:cy="0.29789045"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg53" />
|
||||
<defs
|
||||
id="defs51">
|
||||
<clipPath
|
||||
id="clip0_871_2377">
|
||||
<rect
|
||||
width="181.356"
|
||||
height="50.653801"
|
||||
transform="translate(0.322021,0.904297)"
|
||||
id="rect48"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#ffffff" />
|
||||
</clipPath>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter2473"
|
||||
x="-0.020400483"
|
||||
width="1.040801"
|
||||
y="-0.020399516"
|
||||
height="1.040799">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.67422904"
|
||||
id="feGaussianBlur2475" />
|
||||
</filter>
|
||||
</defs>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path157"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="M 0.90383,227.1525 0,22.732402 l 161.7102,5.007 4.23684,193.584198 -28.34045,2.4961 -0.8345,-7.4982 c 0,0 -0.83202,-30.0119 -16.67245,-30.0119 -12.50745,0 -9.16701,30.0119 -9.16701,30.0119 l 0.12388,82.7508 c 0,0 2.25585,18.5717 15.60025,28.5681 6.86164,5.1531 20.99594,5.735 20.99594,5.735 l 3.90503,49.1111 -128.21671,-5.4972 -1.71603,-46.0108 c 0,0 8.33746,2.5035 18.34391,-7.503 9.99653,-10.0016 9.47158,-79.6777 9.47158,-79.6777 L 49.2498,200.4811 c 0,0 -0.052,-20.2877 -12.50248,-21.6745 -7.50545,-0.832 -8.33746,24.178 -8.33746,24.178 l 0.83201,27.506 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path161"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 274.57231,344.8154 c -27.50349,-0.8395 -27.4391,-27.4392 -27.4391,-27.4392 l -3.97188,-123.5736 c 0,0 -0.78991,-20.8327 27.2014,-17.6952 19.23535,2.1568 16.90027,22.717 16.90027,22.717 l 0.89144,125.5671 c 0,0 -2.68176,20.7558 -13.58213,20.4239 M 346.5167,40.140102 c -11.32132,-15.0977 -32.96606,-13.7778 -32.96606,-13.7778 l -94.27255,-1.711 c 0,0 -16.87302,0.1337 -26.38423,9.6424 -11.35598,11.3485 -14.68404,31.0742 -14.68404,31.0742 L 179.5866,327.0831 c 0,0 -3.33795,39.1814 6.6685,50.8469 10.00395,11.673 24.168,9.999 24.168,9.999 l 112.34904,3.7367 c 0,0 8.57022,0.5497 19.40621,-8.6198 10.83846,-9.167 9.77615,-38.0597 9.77615,-38.0597 l 4.94751,-249.440498 c 0,0 1.53774,-39.5182 -10.38531,-55.4056" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path165"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 362.51611,381.756 v -44.6042 c 0,0 12.10134,1.6168 16.93989,-3.2267 4.84103,-4.8385 4.84103,-20.1615 4.84103,-20.1615 l 1.04498,-119.7207 c 0,0 0.90877,-5.9677 -4.22446,-11.3262 -5.26447,-5.4972 -15.13471,-6.4135 -15.13471,-6.4135 l -5.07132,-151.854698 89.52561,4.0338 67.68776,262.589298 0.30458,-83.2732 c 0,0 -1.61699,-11.294 -5.65077,-13.7184 -4.03625,-2.4217 -12.9482,-2.4886 -12.9482,-2.4886 l -19.54736,-159.885098 90.33041,-4.8387 3.46424,169.636798 -2.92691,-0.3443 c 0,0 -9.9792,0.3443 -15.62006,4.3805 -5.65075,4.0287 -3.23148,11.2866 -3.23148,11.2866 l 18.42068,166.1427 -75.46311,2.2855 -59.10266,-112.0047 -0.23525,43.0912 c 0,0 -2.42175,14.5183 5.64581,19.3567 8.06509,4.8436 19.35916,6.4532 19.35916,6.4532 l 0.79983,45.4115 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path169"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 578.47878,22.029102 6.37631,148.417798 c 0,0 8.77822,0.9782 17.54656,6.827 8.7708,5.839 14.61718,14.6221 14.61718,14.6221 l 30.30906,54.5762 -2.52823,62.7947 c 0,0 1.94879,15.5904 -6.82697,22.4174 -8.77081,6.8243 -22.39503,5.5442 -22.39503,5.5442 l -4.82122,43.3909 133.70651,-2.3004 -1.5204,-49.2918 c 0,0 -21.459,2.6571 -29.2492,-5.1431 -7.7977,-7.7977 -6.2674,-21.5928 -6.2674,-21.5928 l -2.9244,-44.379 47.5684,-60.0238 c 0,0 3.3553,-6.3639 8.8104,-10.7591 5.1976,-4.1824 18.9159,-3.036 18.9159,-3.036 l 2.6447,-160.727098 -88.1836,1.2802 -0.7007,144.156298 c 0,0 11.4451,-0.4829 18.75,3.6276 9.682,5.4476 7.0572,14.5849 7.0572,14.5849 l -34.3007,37.7354 -26.58976,-40.8257 c 0,0 -3.92235,-8.3053 0,-12.0987 7.21079,-6.9782 19.26012,-7.2233 19.26012,-7.2233 l 0.73294,-138.376698 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path173"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 747.72345,281.4481 c 0,0 35.5859,0.8718 53.8159,-15.6151 18.2226,-16.4867 23.4301,-39.9242 4.3334,-55.5467 -19.0918,-15.6176 -49.4627,-10.4151 -54.6752,6.079 -5.21,16.4843 16.4917,35.5811 16.4917,35.5811 l -24.3017,-0.8692 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path177"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 93.40265,396.4284 3.18444,36.66063 -34.26112,1.59223 c 0,0 -0.38876,-23.55886 -17.13799,-23.90056 -19.12392,-0.4036 -25.32687,23.36569 -24.66325,38.31965 0.76762,17.33113 6.91364,32.3148 29.2839,32.05727 26.50556,-0.30954 25.89145,-24.03925 25.89145,-24.03925 l 0.12629,-6.52486 18.8144,0.35905 0.59677,51.28768 -23.0636,0.29962 -2.08746,-13.12154 c 0,0 -2.24595,11.15046 -29.67019,11.40055 -20.65672,0.20058 -41.41744,-26.99833 -39.84998,-54.97972 1.63184,-29.19225 8.95157,-55.76475 47.556,-57.20345 26.82005,-0.9979 29.82372,15.8009 29.82372,15.8009 l 1.38668,-8.7312 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path181"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 383.21022,402.6173 4.62311,41.63286 -20.6468,-2.07757 c 0,0 -4.89055,-22.73429 -20.32984,-23.06109 -24.72764,-0.5275 -28.02844,20.80277 -27.40692,35.25404 0.72307,16.74676 5.23475,30.04906 26.27033,29.36068 20.56262,-0.6884 21.1272,-18.29193 21.1272,-18.29193 l 24.04171,-1.15392 0.33429,37.15582 -20.95386,1.44117 -1.96365,-7.68125 c 0,0 -4.74693,9.6152 -30.5542,9.86035 -19.43345,0.18571 -36.64077,-23.25676 -35.17238,-50.3071 1.53774,-28.22159 4.53893,-50.32446 40.86523,-51.71606 25.22783,-0.9682 30.03915,16.5115 30.03915,16.5115 l 0.1833,-18.074 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path185"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.20169,390.5578 -1.24059,28.182 c 0,0 7.89917,1.513 8.37461,3.645 0.47543,2.13202 1.65659,8.28051 1.65659,8.28051 l 1.34213,53.81094 c 0,0 0.0817,2.45643 -3.22653,4.34579 -3.31072,1.8968 -5.52694,0.85926 -5.52694,0.85926 l -1.18365,12.78228 42.11324,0.94098 -3.30823,-18.68563 c 0,0 -6.77993,1.38421 -9.85787,-1.45355 -3.07548,-2.84023 -3.23396,-9.96188 -3.23396,-9.96188 l 0.0693,-22.44701 37.15582,-1.25298 2.36975,30.4081 c 0,0 -0.007,4.25417 -2.36975,5.91573 -2.36727,1.65411 -4.25664,1.41392 -4.25664,1.41392 l -9.90739,-0.55962 -1.65908,18.81438 49.98023,0.3739 -2.3648,-19.40372 c 0,0 -10.76664,1.84479 -13.40631,-1.19355 -1.88936,-2.17907 -1.99089,-3.89016 -1.99089,-3.89016 l 1.66402,-65.76619 c 0,0 -1.1861,-2.1271 1.6566,-4.0214 2.83033,-1.8918 5.43533,-1.1836 5.43533,-1.1836 l 0.71563,-17.5095 -37.73279,-2.7114 0.65619,17.3955 c 0,0 7.09689,-1.8993 8.98872,0.7082 1.8968,2.6025 1.41888,5.9157 1.41888,5.9157 l 0.55221,18.02448 -36.44021,0.0618 0.0891,-8.11956 c 0,0 -0.22533,-2.60002 3.07548,-4.02382 3.31072,-1.4164 6.39116,-0.7033 6.39116,-0.7033 l 0.71562,-29.3829 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path189"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 256.34107,492.24568 c -12.03943,1.20098 -30.66563,-14.72614 -29.46467,-44.81482 1.20841,-30.09366 11.10589,-34.33536 20.43633,-34.63506 16.84333,-0.5373 26.47834,12.64614 27.37968,38.22065 0.9063,25.57698 -6.31686,40.02331 -18.35134,41.22923 M 240.18118,398.5204 c -22.8655,0.3021 -40.32293,19.5597 -41.22674,45.43383 -0.90136,25.88156 10.23178,64.99857 46.94437,63.19587 36.71258,-1.80764 48.14781,-17.75704 47.84819,-52.9616 -0.30705,-35.212 -21.36987,-56.099 -53.56582,-55.6681" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path193"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 464.45879,454.49506 c -4.48444,27.19644 -13.68365,34.53845 -25.71813,35.74437 -12.03695,1.20345 -25.10154,-11.95276 -23.89314,-42.0439 1.20098,-30.08623 15.77607,-32.36433 25.10155,-32.66143 16.85074,-0.5448 28.66978,13.71331 24.50972,38.96096 M 445.63449,401.999 c -32.36432,-0.9014 -48.94516,24.25218 -49.84403,50.12878 -0.90136,25.88156 4.24921,53.07056 40.67702,55.4626 36.67793,2.4069 46.22131,-14.74348 51.45854,-50.9831 C 492.96267,421.7543 477.823,402.9053 445.63449,401.999" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path197"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 617.84293,485.46724 c -12.09144,0.36897 -22.4916,-9.011 -21.29063,-39.09471 1.20345,-30.10353 11.01179,-31.45063 20.33976,-31.75023 16.84825,-0.5448 24.50229,13.74803 25.40859,39.32254 0.89638,25.57945 -4.80142,30.91821 -24.45772,31.5224 m 45.5131,-30.06885 c -0.29962,-35.20949 -15.77854,-56.01729 -47.97942,-55.59389 -22.86551,0.3071 -40.53343,21.3031 -41.43477,47.18212 -0.90134,25.88156 12.71296,56.65863 49.47508,56.65863 32.82985,0 40.24368,-13.0423 39.93911,-48.24686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path201"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 489.33625,395.5036 47.01618,1.3644 0.56209,14.3027 c 0,0 -13.09182,-0.2774 -14.78804,3.0977 -1.34459,2.6769 -0.83944,9.53105 -0.83944,9.53105 l 1.46097,58.26818 22.72685,-0.25504 c 0,0 5.33131,0 7.57477,-3.0854 2.241,-3.09281 0.48783,-21.26585 0.48783,-21.26585 h 13.73812 l 8.42662,49.35869 -84.30574,-2.33014 -0.28229,-10.93997 c 0,0 6.46049,-1.2208 8.42414,-5.42791 1.95621,-4.20959 1.29506,-9.90491 1.29506,-9.90491 l -2.24098,-56.9211 c 0,0 0.2798,-6.7304 -1.96613,-9.2487 -2.24099,-2.5208 -6.16581,-1.1242 -6.16581,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path205"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 839.80795,393.7417 42.5763,2.1742 0.9014,17.5193 c 0,0 -5.9603,0.064 -8.1666,2.8699 -2.2064,2.8031 -1.3966,9.4642 -1.3966,9.4642 l 3.4716,61.79928 18.0716,-0.12629 c 0,0 4.6602,0 6.6239,-3.07795 1.9587,-3.08786 0.676,-19.03726 0.676,-19.03726 l 23.2468,-0.006 0.7429,37.86899 -83.8179,-1.41394 0.8345,-10.59329 c 0,0 8.3399,0.56458 10.0535,-3.64255 1.721,-4.20464 0.8394,-9.21901 0.8394,-9.21901 l -2.2682,-54.52409 c 0,0 0.2427,-6.73039 -1.716,-9.24869 -1.9661,-2.5258 -9.9693,-1.1242 -9.9693,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path209"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 668.34439,505.22236 -1.1564,-20.92662 c 0,0 1.77794,0.19314 4.4696,-1.69622 2.69661,-1.88192 2.53318,-5.30655 2.53318,-5.30655 L 672.45989,420.466 c 0,0 0.047,-3.1473 -2.10975,-4.7643 -2.15432,-1.617 -5.89591,-1.2109 -5.89591,-1.2109 l -0.88401,-15.5705 26.39663,-0.5374 39.5157,60.56863 0.3491,-42.25683 c 0,0 0.2551,-4.019 -1.8819,-5.3809 -2.9666,-1.8869 -6.6314,-2.7189 -6.6314,-2.7189 l -0.9806,-19.4013 39.1839,-2.4935 -0.463,22.1177 c 0,0 -6.5868,-0.4136 -9.0111,1.7408 -2.4217,2.1543 -2.704,6.1361 -2.704,6.1361 l 2.1519,87.81697 -24.7822,-1.88688 -35.9102,-76.78789 1.3842,49.61869 c 0,0 -0.2155,5.13819 1.9413,6.48774 2.1568,1.34459 8.6198,1.81507 8.6198,1.81507 l 1.9686,22.54112 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path213"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 764.58065,398.9195 0.5348,9.1547 c 0,0 5.2942,-0.1685 6.6413,1.7135 1.3495,1.8869 1.4486,3.6822 1.4486,3.6822 l -0.4953,73.2097 c 0,0 0,1.87946 -2.1518,3.50634 -2.1544,1.61203 -5.6607,0.80726 -5.6607,0.80726 l -0.045,12.4381 74.7302,0.89144 -2.506,-40.2635 -16.5016,0.53487 c 0,0 0.8989,14.95395 -1.2604,17.65305 -2.1518,2.6867 -5.1159,2.15184 -5.1159,2.15184 l -26.0375,-2.76099 -0.1436,-25.34669 11.4575,-0.83697 c 0,0 4.0388,-0.5423 5.6557,1.0722 1.617,1.61945 1.0822,5.92809 1.0822,5.92809 h 7.0003 l 0.6562,-24.97276 -13.7654,-0.90879 c 0,0 -0.3071,6.54963 -1.6591,8.16662 -1.3421,1.61696 -3.1151,1.47582 -3.1151,1.47582 l -6.3639,0.0916 -0.1387,-32.30243 28.016,-0.8073 c 0,0 4.5786,0 5.9232,2.4193 1.3495,2.4267 0.3541,8.89216 0.3541,8.89216 l 9.9619,0.53735 0.9929,-27.20391 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path217"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 893.18555,397.6284 2.2262,16.8062 c 0,0 5.5913,-0.671 7.6862,2.3326 2.0973,3.0012 6.6363,7.68375 6.6363,7.68375 l 29.3606,36.07125 0.3071,27.87492 c 0,0 0.7032,2.0008 -1.7507,4.34084 -2.444,2.33508 -5.938,1.66897 -5.938,1.66897 l 0.3913,10.50663 42.081,-0.64876 -0.2625,-14.29527 c 0,0 -3.2835,-0.39125 -6.3292,-2.53318 -1.8844,-1.32478 -2.0503,-4.82618 -2.0503,-4.82618 l 0.7725,-24.44039 11.7943,-29.23933 c 0,0 0.6785,-4.73455 5.7201,-7.69855 3.7144,-2.189 9.3478,-1.4338 9.3478,-1.4338 l -0.2873,-18.3637 -37.8689,-2.1023 -0.1733,12.859 c 0,0 8.7906,-0.1361 9.6845,2.8328 0.4928,1.6368 -1.2307,3.7466 -1.2307,3.7466 l -16.197,25.58687 -25.3417,-28.23647 c 0,0 -2.2608,-3.0334 -0.9583,-4.269 2.6768,-2.5604 5.4997,-1.3941 5.4997,-1.3941 l -0.6859,-12.6734 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path221"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 989.09715,320.7912 c 0,0 -1.3545,-34.3428 -12.2648,-55.6507 -10.9003,-21.3154 -47.4222,-7.5749 -70.9217,-10.8658 -32.555,-4.566 -29.9846,-24.8638 -29.9846,-24.8638 l -2.5704,-61.8116 c 0,0 -5.1208,-16.3977 14.1839,-15.9196 24.527,0.5917 22.7367,32.5896 22.7367,32.5896 l 3.8704,44.171 76.2134,5.4527 9.64005,-206.658798 -42.24955,-1.1886 -10.1897,134.582998 c 0,0 -2.397,-87.569398 -4.2368,-101.104398 -3.9644,-29.1948 -36.0811,-31.7973 -36.0811,-31.7973 l -38.2207,2.4887 c 0,0 -19.0793,0 -47.6971,5.9206 -28.6302,5.9207 -29.9921,34.3304 -29.9921,34.3304 l 2.5282,95.062498 c 0,0 -0.2476,10.8881 0.1287,26.1986 8.0948,1.4683 16.1698,5.0465 23.0067,11.0959 22.4247,19.8272 16.3134,49.5716 -5.0936,70.5057 -1.6863,1.6492 -3.5113,3.1473 -5.423,4.5341 1.9042,3.9717 4.0908,7.0597 6.6091,8.9192 37.6882,28.0237 66.2292,14.3772 81.2228,20.2978 14.9911,5.9207 12.6511,23.8263 12.6511,23.8263 l -0.079,11.6208 c 0,0 -4.5266,8.865 -18.2919,9.1473 -56.0272,1.144 -54.8832,-28.5831 -54.8832,-28.5831 l -1.3099,-13.4064 -62.7205,-11.7546 2.5803,85.1278 47.6971,-1.1885 v -32.0772 c 0.8716,4.3161 2.5084,9.1993 5.4551,14.3176 9.541,16.5759 34.0705,18.9481 34.0705,18.9481 l 99.4924,1.1837 c 0,0 15.5433,-2.2633 24.4008,-10.1971 11.0564,-9.9149 8.3102,-27.6918 8.3102,-27.6918 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path229"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 9.24203,216.8137 8.75843,-172.786498 129.16264,7.0399 8.47118,163.327198 -9.38987,0.4805 -6.458,-41.0016 c 0,0 -3.50881,-18.7598 -25.89889,-16.3405 -23.45733,2.5356 -18.74507,43.5544 -18.74507,43.5544 l -2.14689,102.5654 c 0,0 -1.13659,19.0869 16.14997,31.7502 5.74981,4.2072 23.01161,4.9103 23.01161,4.9103 l -1.81507,31.4532 -94.91886,-1.4412 -6.09153,-36.8785 c 0,0 16.9077,3.6921 24.0442,-12.5298 4.84847,-11.0215 6.12124,-26.5302 6.12124,-26.5302 L 58.46207,173.8732 c 0,0 -0.28725,-29.4547 -25.05947,-30.6333 -12.70306,-0.6067 -10.85578,30.0168 -10.85578,30.0168 l 0.60915,46.5804 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path233"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 306.39212,175.6879 -4.71969,162.4729 c 0,0 -5.54923,17.6778 -33.70397,18.2052 -35.732,0.676 -33.70646,-24.2646 -33.70646,-24.2646 l -2.02554,-155.7449 c 0,0 -2.13452,-22.5262 35.732,-24.9381 44.49043,-2.8304 38.42366,24.2695 38.42366,24.2695 m 37.26478,160.2912 -4.22444,-233.1072 c 0,0 1.53774,-39.515698 -10.37788,-55.403198 -11.32875,-15.0901 -28.53856,-12.3712 -28.53856,-12.3712 l -53.52867,3.6401 c 0,0 -16.87303,0.1281 -26.37928,9.6498 -11.35598,11.3386 -14.69146,31.0642 -14.69146,31.0642 L 191.11123,329.3999 c 0,0 -4.95,25.1634 5.05151,36.8314 10.00645,11.668 24.1779,10.0065 24.1779,10.0065 l 94.14628,6.4208 c 0,0 8.56528,0.5547 19.40125,-8.6123 10.83352,-9.172 9.76873,-38.0672 9.76873,-38.0672" />
|
||||
<path
|
||||
d="m 111.6924,612.0832 c -21.897,-0.403 -39.319,-18.491 -38.909,-40.394 0.407,-21.899 18.499,-39.315 40.392,-38.915 21.902,0.411 39.323,18.495 38.913,40.394 -0.405,21.902 -18.487,39.328 -40.396,38.915"
|
||||
style="opacity:0.39500002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter2473)"
|
||||
id="path1550"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
transform="matrix(2.4436835,0,0,-2.4436835,-87.3569,1499.7094)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path237"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 375.50048,373.4698 1.53525,-33.2507 c 0,0 8.98378,-2.2684 13.31221,-6.6587 4.32103,-4.3854 4.61075,-21.7784 4.61075,-21.7784 l 3.85549,-131.2625 c 0,0 0.81469,-5.4205 -3.77377,-10.2813 -4.70484,-4.9847 -13.52269,-5.8143 -13.52269,-5.8143 l -5.98753,-109.226398 64.0774,1.1514 82.00531,289.310398 5.30658,-162.0296 c 0,0 0.52743,-7.4833 -5.04657,-12.4356 -7.31726,-6.4977 -17.34104,-5.1061 -17.34104,-5.1061 l -11.31636,-114.748398 71.13714,-0.9806 -2.033,131.413498 c 0,0 -9.44186,-4.1377 -16.57587,3.6624 -4.2096,4.5933 -2.88482,10.2391 -2.88482,10.2391 l 13.23792,177.209 -58.7758,1.3198 -69.47311,-157.3891 -4.29872,96.5629 c 0,0 -1.09202,13.3817 6.11381,17.772 7.21077,4.3878 21.17177,8.4637 21.17177,8.4637 l -1.79527,33.3771 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path241"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 592.7701,44.775602 0.61907,100.913698 c 0,0 7.81249,0.8716 15.625,6.0791 7.81499,5.2101 13.02001,13.0225 13.02001,13.0225 l 34.47904,64.7262 -3.67473,91.2689 c 0,0 1.73088,13.8868 -6.08163,19.9659 -7.81498,6.0743 -19.9485,4.9351 -19.9485,4.9351 l -5.29666,25.1907 110.75435,-0.1263 -4.6999,-30.8984 c 0,0 -17.9081,4.9327 -24.849,-2.0132 -6.9458,-6.9359 -6.2425,-18.4775 -6.2425,-18.4775 l -1.825,-66.1477 49.5791,-70.2754 c 0,0 2.9912,-5.6705 7.8496,-9.5878 4.6207,-3.7218 16.8508,-2.7017 16.8508,-2.7017 l -2.3178,-131.074198 -55.6557,5.4402 -8.8352,108.676798 c 0,0 9.9346,0.083 16.6997,3.2389 21.407,9.9594 3.8604,31.3689 3.8604,31.3689 l -37.7353,49.6881 -39.18135,-64.7882 c 0,0 -4.74446,-8.0453 -3.16215,-12.6436 5.44523,-15.8454 26.01281,-12.0964 26.01281,-12.0964 L 658.93497,44.414002 Z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path245"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 822.08785,277.9564 c 32.7679,21.4294 77.5431,12.5124 90.8355,16.9672 17.5614,5.8835 16.2664,22.2216 16.2664,22.2216 l 1.503,13.5377 c 0,0 6.983,29.8311 -55.3511,27.7857 -49.6212,-1.6269 -50.3839,-36.8291 -50.3839,-36.8291 l -0.2476,-2.7634 -45.9514,-4.279 5.2075,60.5365 29.1725,0.4482 -0.5002,-50.827 c 0,0 9.4542,20.9314 18.0963,35.727 8.6346,14.783 30.2273,12.6461 30.2273,12.6461 l 85.0288,1.1167 c 0,0 13.5252,2.0776 26.7185,-7.3445 7.7927,-5.5665 7.8373,-17.5094 7.8373,-17.5094 l -1.8349,-26.617 c 0,0 0.8593,-24.0888 -9.0209,-43.1111 -9.8802,-19.0126 -39.9069,-17.1974 -61.2768,-14.9242 -48.9575,5.2123 -45.1045,-53.6303 -45.1045,-53.6303 l -2.3277,-55.1432 c 0,0 -3.7589,-29.2863 28.6797,-26.404 22.1251,1.9686 26.6641,27.392 26.6641,27.392 l 9.9841,61.8786 46.2337,2.2682 16.5808,-170.817798 -17.861,-0.098 -25.2501,150.898998 c 0,0 -14.3721,-110.229498 -16.041,-122.310998 -3.5906,-26.0351 -22.0509,-31.0692 -22.0509,-31.0692 l -13.5301,-1.5056 c 0,0 -37.3589,3.0458 -63.436,7.4831 -36.3883,6.1833 -28.9794,42.5343 -28.9794,42.5343 0,0 7.4089,83.191498 7.2851,89.376998 0,0 21.5779,1.877 28.4841,27.0207 12.5347,45.6096 -15.6572,65.3452 -15.6572,65.3452" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path249"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 757.42655,271.7193 c 0,0 21.4738,2.9616 35.7493,-9.952 14.2755,-12.9209 18.3588,-31.2748 3.3999,-43.5173 -14.9565,-12.235 -32.4436,-8.2878 -36.5269,4.6281 -4.0759,12.9136 20.9266,35.1551 20.9266,35.1551 l -25.0099,-0.6216 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path295"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 86.21539,98.307702 c 0.0273,-54.321 44.08928,-98.33859976 98.42521,-98.30629976 54.31114,0.028 98.33108,44.09669976 98.30633,98.42009976 C 282.90983,152.755 238.83784,196.7527 184.51925,196.728 130.19077,196.7 86.17825,152.6435 86.21539,98.307702" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path299"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 157.44936,108.6685 c -4.14026,-0.7479 -5.41304,-5.3908 -5.41304,-5.3908 l -15.98901,-5.564098 c 0,0 -1.45851,14.084798 8.85004,20.215998 10.35063,6.1436 17.10084,7.2627 17.10084,7.2627 l 35.93258,10.3359 c 14.65185,3.843 17.71742,-0.577 17.71742,-0.577 -20.30261,-9.4865 -21.18168,-14.117 -21.18168,-14.117 z m 82.02016,-7.1637 c 0.81715,4.2195 -0.0372,7.3568 -0.0372,7.3568 l 13.2107,2.3475 c -0.70821,3.6722 -1.69127,7.2183 -2.95415,10.6577 -10.71713,-2.4366 -27.10729,-6.2772 -30.96774,-7.9091 -5.84142,-2.4589 -4.51168,-4.8088 -3.16213,-5.4476 0,0 -0.14857,-3.977 -1.72099,-5.9629 -1.61945,-2.0156 -4.8336,-4.251598 -4.8336,-4.251598 0,0 -22.08797,6.762498 -8.15671,22.702098 5.89838,6.7649 17.27914,10.0038 17.27914,10.0038 l 23.64552,6.26 c -12.20038,17.7793 -32.51042,29.6132 -55.69783,30.0515 -36.42287,0.6736 -66.74925,-26.924 -70.06988,-62.6213 l 16.56845,4.3432 c 0,0 -2.11471,-7.3741 -2.0825,-9.652298 0.006,-2.2657 0.10901,-2.6693 0.10901,-2.6693 l -14.64195,-4.5142 c 0.17829,-2.0925 0.45562,-4.1354 0.80477,-6.1807 l 40.52104,12.6065 c 0,0 0.55962,4.231898 3.33299,5.046498 0,0 8.08491,2.6942 10.4497,-5.937998 2.36232,-8.6247 -5.40066,-13.4509 -11.09104,-15.7066 -4.43245,-1.7532 -28.13987,-8.5282 -38.51033,-11.4625 10.49674,-23.9453 34.17445,-40.8753 62.037,-41.4101 38.01755,-0.7057 69.43348,29.4547 70.32245,67.4477 l -17.00427,-4.0537 c 0,0 1.8324,4.9549 2.64955,8.956598 M 182.92729,0.04860224 C 128.70528,1.0466022 85.5644,45.836602 86.57966,100.0735 c 1.00782,54.227 45.80778,97.353 100.01987,96.3625 54.2344,-1.0177 97.37281,-45.7978 96.35754,-100.024898 C 281.9542,42.176702 237.17901,-0.97399776 182.92729,0.04860224 m 3.20672,64.81289976 4.2814,-3.4965 -10.78397,1.1639 2.8328,-1.9216 c 0,0 -21.64967,3.3603 -27.40691,6.8492 -5.76962,3.5039 -7.54012,5.5816 -7.54012,5.5816 0,0 10.04853,3.0234 12.91353,4.0881 2.85758,1.0475 5.08866,2.8155 5.08866,2.8155 4.39035,-1.5773 9.167,-1.5749 9.167,-1.5749 l 9.99406,-0.8617 -6.83686,-3.271 11.8859,-0.7553 -6.78486,-3.0309 18.74505,-1.8028 z m 28.94961,14.2607 -4.01149,-1.3695 2.40936,4.1131 -7.37669,-3.6847 3.60539,4.0834 -8.42661,-1.5675 5.87114,6.2425 -6.00981,-0.5348 6.0841,3.687 -1.63926,0.3963 3.72425,2.2311 c 0,0 5.75723,3.4222 8.38452,6.4085 2.61241,2.998598 2.33508,10.469498 2.33508,10.469498 0,0 2.47128,1.2331 5.77705,2.127 3.86786,1.0352 8.64946,1.9736 8.64946,1.9736 0,0 2.74862,-12.6709 -2.83776,-20.205998 -5.57647,-7.5476 -16.53873,-14.3695 -16.53873,-14.3695" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path303"
|
||||
style="fill:#f7941e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 234.34398,113.7034 c 0,0 -4.78408,-0.941 -8.65195,-1.9786 -3.31567,-0.8814 -5.76714,-2.127 -5.76714,-2.127 0,0 0.26248,-7.4683 -2.35489,-10.459598 -2.62233,-2.9913 -8.37957,-6.4134 -8.37957,-6.4134 l -3.7094,-2.2336 1.6467,-0.3887 -6.10639,-3.6822 6.02714,0.5274 -5.88352,-6.2425 8.42413,1.5675 -3.59052,-4.0834 7.36679,3.6748 -2.41929,-4.1107 4.00654,1.3719 c 0,0 10.97217,6.8195 16.55361,14.3769 5.58637,7.535298 2.83776,20.201198 2.83776,20.201198 m -51.51301,-43.254798 6.78238,3.0458 -11.88589,0.7452 6.82448,3.2663 -9.98663,0.8641 c 0,0 -4.77912,0 -9.15958,1.5749 0,0 -2.24346,-1.763 -5.07875,-2.8129 -2.87984,-1.0575 -12.916,-4.0958 -12.916,-4.0958 0,0 1.76059,-2.0774 7.52773,-5.5789 5.76466,-3.4865 27.40197,-6.8443 27.40197,-6.8443 l -2.84272,1.9291 10.80378,-1.1764 -4.27645,3.509 15.55817,3.7711 z m 32.71099,64.510698 c 0,0 -3.08043,4.4177 -17.7422,0.5696 l -35.93008,-10.321 c 0,0 -6.75764,-1.1366 -17.09342,-7.2727 -10.32588,-6.1385 -8.86243,-20.215898 -8.86243,-20.215898 l 16.00636,5.559098 c 0,0 1.27773,4.6429 5.43284,5.4007 l 36.98992,12.1583 c 0,0 0.87659,4.6355 21.19901,14.1219 M 183.37078,29.165002 c -27.86253,0.5248 -51.52291,17.4548 -62.02214,41.4049 10.35066,2.9343 34.05808,9.7143 38.50043,11.465 5.70771,2.2509 13.44593,7.0918 11.09847,15.7117 -2.37223,8.622098 -10.45464,5.928098 -10.45464,5.928098 -2.74862,-0.8171 -3.33054,-5.034198 -3.33054,-5.034198 l -40.51608,-12.6065 c -0.35409,2.0355 -0.63638,4.0808 -0.81467,6.1682 l 14.65928,4.5193 c 0,0 -0.11143,0.4085 -0.12629,2.6717 -0.0297,2.265698 2.08003,9.639998 2.08003,9.639998 l -16.5734,-4.3408 c 3.33795,35.6949 33.65443,63.3047 70.07234,62.6263 23.20476,-0.4407 43.49252,-12.2623 55.70775,-30.054 l -23.64056,-6.245 c 0,0 -11.38322,-3.2563 -17.29152,-10.0189 -13.92631,-15.9395 8.16909,-22.694598 8.16909,-22.694598 0,0 3.21166,2.233598 4.81875,4.241798 1.57982,1.9983 1.72839,5.9702 1.72839,5.9702 -1.33467,0.6315 -2.6669,2.9838 3.17454,5.4477 3.84558,1.6218 20.2407,5.4651 30.95536,7.9091 1.26038,-3.4395 2.25583,-6.9904 2.95166,-10.6553 l -13.19832,-2.3573 c 0,0 0.84687,-3.1374 0.0223,-7.352 -0.80724,-3.991698 -2.63223,-8.958998 -2.63223,-8.958998 l 16.99685,4.0586 c -0.88649,-37.9879 -32.30738,-68.1632 -70.33484,-67.445" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path307"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.39707,121.5017 c 0.1287,0.4606 0.43086,0.7678 0.91126,0.9262 0.48533,0.1578 1.0821,0.1318 1.78782,-0.054 0.72801,-0.2031 1.24555,-0.4953 1.57488,-0.8717 0.32687,-0.3837 0.4284,-0.8172 0.29221,-1.2974 -0.26743,-0.9832 -1.16879,-1.2605 -2.69661,-0.8421 -1.52288,0.4234 -2.14689,1.1318 -1.86956,2.1395 m 6.4902,-1.867 c 0.36401,1.3098 0.27238,2.4217 -0.26743,3.3379 -0.53735,0.9089 -1.48327,1.5525 -2.82043,1.9192 -1.3347,0.3714 -2.4688,0.3019 -3.40234,-0.1908 -0.94592,-0.5051 -1.58478,-1.3916 -1.94136,-2.6619 -0.34172,-1.2554 -0.24515,-2.345 0.29466,-3.2736 0.53735,-0.9236 1.45108,-1.565 2.73871,-1.9166 1.3446,-0.3789 2.501,-0.317 3.45188,0.169 0.94838,0.4927 1.6021,1.3717 1.94631,2.6173" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path311"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.2935,110.9949 c 0.057,0.4209 0.30211,0.7206 0.72555,0.9037 0.41847,0.1858 0.97811,0.2205 1.66649,0.1189 0.67107,-0.104 1.19355,-0.302 1.55756,-0.6017 0.36153,-0.2972 0.50762,-0.6463 0.44819,-1.0475 -0.057,-0.4059 -0.30705,-0.7031 -0.74287,-0.8962 -0.43086,-0.1932 -0.98553,-0.2353 -1.66154,-0.1356 -0.66858,0.104 -1.18365,0.3046 -1.54765,0.6043 -0.35409,0.3046 -0.50763,0.6586 -0.44573,1.0549 m -1.00038,1.9883 0.49772,-0.072 c -0.96079,-0.5398 -1.52041,-1.3148 -1.67145,-2.3177 -0.14356,-0.9832 0.12387,-1.825 0.78991,-2.5233 0.67354,-0.6959 1.64917,-1.1416 2.93929,-1.3372 1.32231,-0.1907 2.41926,-0.059 3.28595,0.4184 0.85926,0.4781 1.37184,1.2085 1.52041,2.2138 0.052,0.3963 0.0422,0.7677 -0.0644,1.1119 -0.0645,0.2154 -0.22286,0.5571 -0.46554,1.0227 l 1.24802,-0.1883 c 0.33429,-0.046 0.48039,-0.1956 0.44325,-0.4532 -0.0149,-0.104 -0.0544,-0.2252 -0.10159,-0.3614 -0.052,-0.1801 -0.0891,-0.322 -0.104,-0.4086 -0.0719,-0.4854 0.17588,-0.7751 0.73544,-0.8569 0.65124,-0.098 1.02516,0.1884 1.12421,0.8618 0.0321,0.1957 0.052,0.4879 0.0693,0.8964 0.0199,0.5052 0.0669,1.0005 0.13873,1.4882 0.0347,0.2006 0.14356,0.6563 0.33429,1.3546 0.0273,0.1282 0.0496,0.2229 0.0594,0.2897 0.0396,0.2797 -0.0223,0.5323 -0.18819,0.7429 -0.17587,0.208 -0.41849,0.3465 -0.7305,0.3887 -0.59923,0.089 -0.94095,-0.1281 -1.01773,-0.6561 -0.009,-0.089 -0.009,-0.169 0.006,-0.2502 0.013,-0.1956 0.0199,-0.2921 0.0199,-0.2799 -0.0297,-0.1931 -0.34419,-0.25 -0.96077,-0.1541 l -5.36847,0.7973 c -0.61409,0.089 -0.9063,0.2303 -0.87906,0.4136 0,0.03 0.0446,0.1244 0.12128,0.2822 0.0321,0.104 0.0594,0.1858 0.0693,0.2476 0.0793,0.5176 -0.1807,0.8196 -0.7924,0.9137 -0.30952,0.047 -0.58934,0 -0.81716,-0.1411 -0.23522,-0.143 -0.36894,-0.3492 -0.40857,-0.6216 l -0.013,-0.1096 v -0.5844 c 0.013,-0.076 0,-0.2353 -0.0372,-0.4731 -0.0544,-0.312 -0.12127,-0.6065 -0.21543,-0.8617 -0.0496,-0.1411 -0.0719,-0.2327 -0.0743,-0.3046 -0.047,-0.2674 0.12388,-0.4332 0.50764,-0.4902" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path315"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.05852,97.544702 3.54101,-0.4878 -4.75932,-1.3396 c -0.46554,-0.1393 -0.77011,-0.3245 -0.92116,-0.5423 -0.14356,-0.2179 -0.20057,-0.6216 -0.16584,-1.1862 0.0371,-0.6437 0.14616,-1.0623 0.31943,-1.2504 0.16845,-0.1881 0.56458,-0.3269 1.18116,-0.416 l 4.67761,-0.6463 -3.60541,-1.0945 c -0.0841,-0.022 -0.16101,-0.035 -0.2278,-0.043 -0.16584,-0.018 -0.24763,0.1189 -0.26992,0.3813 -0.0446,0.5375 -0.36647,0.78 -0.96573,0.7455 -0.64134,-0.039 -0.94344,-0.3715 -0.90877,-0.9856 0.0149,-0.1882 0.0496,-0.4656 0.11886,-0.8246 0.0594,-0.3516 0.0966,-0.619 0.10642,-0.8047 0.009,-0.1764 0.006,-0.4409 -0.009,-0.7901 -0.0223,-0.3515 -0.0273,-0.619 -0.0167,-0.7898 0.0167,-0.2847 0.1313,-0.5028 0.32439,-0.6736 0.20057,-0.1579 0.45315,-0.2327 0.76762,-0.2128 0.28725,0.019 0.51754,0.1021 0.6884,0.2525 0.18071,0.156 0.26248,0.3392 0.24762,0.5596 -0.006,0.074 -0.0149,0.1281 -0.0396,0.1579 -0.052,0.1504 -0.0743,0.2328 -0.0743,0.2377 -0.007,0.1485 0.17588,0.2849 0.56211,0.4136 0.0149,0 0.15842,0.065 0.45316,0.1783 l 4.16253,1.6218 c 0.68344,0.2552 1.01277,0.5646 0.98555,0.9262 0,0.1114 -0.0247,0.2698 -0.0719,0.4853 -0.0446,0.2204 -0.0693,0.3788 -0.0767,0.4929 -0.006,0.1095 0,0.2648 0.0167,0.4728 0.0199,0.213 0.0273,0.3666 0.0199,0.4606 -0.0223,0.4037 -0.46801,0.6563 -1.32974,0.7702 l -4.34084,0.5372 4.10807,1.2109 c 0.61164,0.1727 0.9905,0.317 1.14401,0.421 0.15601,0.098 0.22287,0.2651 0.21297,0.4953 -0.009,0.1208 -0.0371,0.2823 -0.0867,0.4853 -0.0422,0.203 -0.0669,0.3863 -0.0719,0.5399 -0.013,0.117 0,0.2945 0.013,0.5224 0.0167,0.2327 0.0247,0.4086 0.013,0.5275 -0.0199,0.3367 -0.31447,0.567 -0.87658,0.6834 l -5.04655,1.007898 c -0.34172,0.058 -0.52001,0.1881 -0.5324,0.406 -0.013,0.046 0,0.1133 0.0149,0.2106 0.0149,0.091 0.0199,0.1615 0.0199,0.203 -0.0273,0.4555 -0.35658,0.6685 -0.99544,0.629 -0.71563,-0.046 -1.04498,-0.3863 -1.00535,-1.0278 0.006,-0.1783 0.047,-0.4333 0.11385,-0.774998 0.0618,-0.3417 0.099,-0.6017 0.10901,-0.775 0.009,-0.1801 0.007,-0.468 -0.0167,-0.8519 -0.013,-0.3788 -0.0167,-0.6736 -0.002,-0.8543 0.0321,-0.5868 0.38134,-0.8617 1.03259,-0.8245 0.55466,0.039 0.83695,0.2674 0.84191,0.6884 0.013,0.2128 0.0273,0.3466 0.0544,0.3937 0.0199,0.052 0.0841,0.08 0.20057,0.084 l 0.13873,0.019 c 0.047,0 0.12128,0 0.23029,-0.02" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path319"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 101.80054,82.975602 c 0.0618,0.019 0.11886,0 0.16845,-0.019 0.0544,-0.024 0.0942,-0.1318 0.13372,-0.3292 l 0.38133,-1.7855 c 0.0371,-0.156 0.0422,-0.2574 0.009,-0.307 -0.0297,-0.043 -0.0915,-0.072 -0.18818,-0.099 -0.27733,-0.054 -0.53734,0.019 -0.80477,0.2155 -0.25754,0.1955 -0.42097,0.4606 -0.49029,0.7948 -0.0892,0.4283 0,0.8048 0.2699,1.1441 0.17086,0.2128 0.35411,0.3417 0.52001,0.3788 m 1.88935,-4.9204 c 0.45068,0.091 0.73297,0.2229 0.86669,0.3616 0.12127,0.143 0.14857,0.3813 0.0793,0.7108 l -0.84191,3.9024 c -0.0446,0.1956 -0.0496,0.3195 -0.0167,0.3739 0.0273,0.052 0.11143,0.098 0.26494,0.1356 0.45068,0.091 0.85679,0.031 1.22079,-0.1908 0.36648,-0.2252 0.58687,-0.5571 0.68344,-0.9904 0.0916,-0.4531 -0.0496,-0.9633 -0.44325,-1.5377 -0.2699,-0.3938 -0.36647,-0.7875 -0.28725,-1.1689 0.0693,-0.3195 0.22039,-0.5572 0.44325,-0.718 0.22039,-0.1616 0.47544,-0.2032 0.75526,-0.1486 0.61658,0.1393 1.06973,0.5869 1.35696,1.3544 0.29221,0.775 0.33429,1.6468 0.12128,2.62 -0.27734,1.2751 -0.87659,2.2013 -1.81012,2.7931 -0.92858,0.5967 -2.03795,0.7503 -3.32311,0.4729 -1.29506,-0.2699 -2.25336,-0.8766 -2.88727,-1.7978 -0.6364,-0.9185 -0.82459,-1.9933 -0.56211,-3.2116 0.24267,-1.1316 0.76268,-1.9662 1.56249,-2.5034 0.79487,-0.5399 1.73585,-0.6885 2.81797,-0.4582" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path323"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.64771,74.405702 c -0.0891,0.2475 -0.20304,0.5521 -0.35905,0.9185 0.0297,0.5275 0.19068,0.8469 0.47544,0.9435 0.55219,0.1783 1.03259,-0.3343 1.44117,-1.5649 0.42096,-1.2307 0.3541,-1.9365 -0.19811,-2.1272 -0.44572,-0.1467 -0.8122,0.1783 -1.07963,0.9906 -0.009,0.032 -0.0544,0.169 -0.14114,0.4185 z m -6.08161,-2.3995 c -0.0966,0.2823 -0.0817,0.562 0.0496,0.8196 0.12387,0.2501 0.33923,0.4284 0.63391,0.5298 0.29467,0.1059 0.57201,0.089 0.83697,-0.035 0.26,-0.1281 0.44572,-0.3318 0.54229,-0.6141 0.0916,-0.2922 0.0767,-0.5744 -0.0594,-0.8296 -0.13371,-0.255 -0.34172,-0.4309 -0.62649,-0.5275 -0.29219,-0.098 -0.57201,-0.084 -0.83696,0.037 -0.26249,0.1244 -0.44078,0.3319 -0.53982,0.6192 m -1.64421,-0.4211 0.20057,-0.5818 c -0.51507,-0.1883 -0.85926,-0.5003 -1.03754,-0.9386 -0.18071,-0.4407 -0.16102,-0.9583 0.0371,-1.56 0.17086,-0.4903 0.42839,-0.8493 0.78744,-1.0895 0.35411,-0.2451 0.73048,-0.2997 1.1143,-0.169 0.26001,0.087 0.44572,0.2402 0.56458,0.4731 0.12128,0.2252 0.13613,0.4802 0.0496,0.7378 -0.099,0.2897 -0.27982,0.463 -0.54229,0.5224 l -0.29962,0.072 c -0.0867,0.018 -0.14616,0.072 -0.1833,0.1634 -0.0669,0.2154 0.0421,0.3813 0.34172,0.4829 0.0719,0.019 0.1287,0.032 0.15841,0.032 0.69334,-0.874 1.5625,-1.139 2.61984,-0.78 0.79983,0.27 1.3347,0.7975 1.61452,1.5823 0.27237,0.7752 0.24514,1.6741 -0.0942,2.6794 -0.18572,0.5447 -0.48783,1.0548 -0.92612,1.5476 l -0.052,0.069 c 0.0669,0.1955 0.17086,0.3144 0.31447,0.364 0.34915,0.1207 0.64879,-0.061 0.89394,-0.525 0.0942,-0.1579 0.23771,-0.5325 0.42837,-1.1268 l 0.0618,-0.1727 0.33925,-0.9955 c 0.32439,-1.0004 0.77505,-1.7011 1.35449,-2.1121 0.57449,-0.4062 1.22079,-0.4879 1.9488,-0.2403 0.92363,0.3096 1.51546,0.9583 1.77546,1.9489 0.26,0.983 0.15842,2.1766 -0.31201,3.5607 -0.42343,1.243 -0.98801,2.1618 -1.70117,2.7561 -0.71564,0.5943 -1.45355,0.7577 -2.2187,0.5075 -0.82955,-0.2822 -1.22821,-1.0028 -1.19602,-2.1468 -0.44819,0.7751 -1.05984,1.0351 -1.83489,0.7751 -0.40362,-0.1392 -0.6884,-0.3417 -0.86173,-0.5943 -0.17086,-0.2626 -0.28229,-0.6637 -0.32439,-1.2108 -0.54229,0.2252 -1.06477,0.2648 -1.55507,0.091 -0.72554,-0.2428 -1.2282,-0.7578 -1.51545,-1.5502 -0.27486,-0.7899 -0.26,-1.6466 0.0496,-2.5728" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path327"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 107.91709,59.331702 0.68344,0.3765 c -0.45315,-1.2133 -0.42344,-2.283 0.0867,-3.2018 0.54723,-1.0028 1.31734,-1.4907 2.28307,-1.4907 0.50762,-0.02 1.17127,0.208 1.99089,0.6611 l 2.15432,1.1912 c 0.4804,0.2675 0.78249,0.3046 0.88898,0.117 0.0247,-0.046 0.0496,-0.1281 0.0594,-0.25 0.006,-0.058 0.0297,-0.1411 0.0767,-0.2328 0.23771,-0.4235 0.60172,-0.4978 1.10934,-0.2179 0.67105,0.3664 0.84687,0.8469 0.52991,1.4239 -0.0892,0.143 -0.23276,0.3664 -0.43581,0.6537 -0.208,0.2823 -0.34914,0.5002 -0.44078,0.6538 -0.1313,0.2401 -0.24761,0.5075 -0.35657,0.7948 -0.11385,0.2871 -0.22038,0.5225 -0.30952,0.6957 -0.31696,0.5572 -0.76516,0.681 -1.35202,0.3542 -0.50764,-0.2799 -0.66364,-0.6216 -0.47544,-1.0252 0.12387,-0.2748 0.0719,-0.473 -0.14616,-0.5844 l -2.00574,-1.1143 c -0.55469,-0.307 -0.98308,-0.4457 -1.28766,-0.4283 -0.30208,0.019 -0.55466,0.2006 -0.74287,0.5447 -0.2179,0.3913 -0.26247,0.7949 -0.13371,1.1936 0.1287,0.4012 0.39621,0.7106 0.80479,0.9483 l 1.49563,0.8198 c 0.4284,0.2401 0.70077,0.3614 0.81469,0.3688 0.11143,0.02 0.23029,-0.059 0.364,-0.2327 0.24019,-0.3195 0.59677,-0.3492 1.05735,-0.089 0.60419,0.3367 0.77011,0.7479 0.48782,1.2629 -0.0767,0.143 -0.19067,0.312 -0.33429,0.5028 -0.24515,0.3316 -0.41107,0.5818 -0.50764,0.7527 -0.099,0.1708 -0.21543,0.4383 -0.36895,0.7998 -0.15098,0.359 -0.27239,0.6241 -0.36649,0.7973 -0.3318,0.6042 -0.81963,0.7305 -1.45602,0.3739 -0.53238,-0.2972 -0.68095,-0.6734 -0.42591,-1.1316 0.0371,-0.072 0.10902,-0.1486 0.20058,-0.2279 0.0817,-0.076 0.13371,-0.1355 0.16584,-0.1931 0.0841,-0.1616 -0.14114,-0.3863 -0.67354,-0.6809 l -2.32269,-1.2851 c -0.54725,-0.2972 -0.86422,-0.3715 -0.95087,-0.208 -0.0199,0.039 -0.047,0.1207 -0.0719,0.25 -0.0321,0.1318 -0.0594,0.2228 -0.0942,0.2774 -0.24515,0.463 -0.63887,0.5447 -1.16384,0.2574 -0.28476,-0.1653 -0.47296,-0.3664 -0.56705,-0.624 -0.10159,-0.2624 -0.0743,-0.5224 0.0669,-0.7774 0.047,-0.076 0.16343,-0.2229 0.34172,-0.4483 0.10641,-0.1282 0.19066,-0.2452 0.25009,-0.3516 0.0544,-0.1133 0.14857,-0.3218 0.26496,-0.619 0.12127,-0.2971 0.17829,-0.4606 0.1981,-0.4879 0.14115,-0.2576 0.34666,-0.3144 0.6141,-0.169" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path331"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 118.86152,50.558102 -0.29219,-0.2106 c -0.006,0.084 -0.18071,0.5523 -0.52001,1.3992 -0.23029,0.567 -0.22039,0.9458 0.0371,1.134 0.40858,0.3021 0.78001,0.2154 1.12916,-0.2574 0.57448,-0.7776 0.45562,-1.4685 -0.3541,-2.0652 m 4.24427,0.1653 c -0.53487,0.7131 -1.17623,0.9904 -1.93889,0.8047 0.12127,1.045 -0.12629,1.9835 -0.7503,2.8255 -0.51258,0.7007 -1.1044,1.1117 -1.76803,1.2603 -0.67107,0.1467 -1.30994,-0.019 -1.92156,-0.458 -0.91869,-0.686 -1.22573,-1.5279 -0.90877,-2.5233 0.13873,-0.4259 0.33429,-0.8939 0.58934,-1.4041 0.35657,-0.6958 0.54476,-1.2133 0.57697,-1.5401 0.0321,-0.3245 -0.10159,-0.5869 -0.37887,-0.7975 -0.20306,-0.1504 -0.43582,-0.1857 -0.70078,-0.1133 -0.26001,0.061 -0.48287,0.2353 -0.67601,0.4853 -0.21048,0.2923 -0.23029,0.5102 -0.0422,0.6463 0.0594,0.046 0.12387,0.091 0.1882,0.1337 l 0.047,0.043 c 0.24762,0.1765 0.37637,0.4333 0.39619,0.7652 0.0149,0.3268 -0.0891,0.6439 -0.31696,0.9533 -0.25505,0.3491 -0.57448,0.5597 -0.95335,0.6266 -0.3739,0.067 -0.72801,-0.019 -1.03754,-0.2428 -0.47791,-0.3541 -0.6661,-0.8741 -0.56952,-1.5798 0.0942,-0.7058 0.46801,-1.4956 1.11677,-2.3772 0.70077,-0.9483 1.36935,-1.5402 2.00079,-1.7928 0.6884,-0.2624 1.46098,-0.083 2.32271,0.5522 l 2.73376,2.0158 c 0.27982,0.2104 0.47296,0.2475 0.57696,0.1058 0.047,-0.074 0.099,-0.1393 0.14616,-0.1981 0.0167,-0.03 0.0396,-0.054 0.0669,-0.097 0.14858,-0.2054 0.34915,-0.3219 0.59181,-0.3566 0.24021,-0.045 0.45811,0.019 0.65868,0.1616 0.28972,0.2104 0.42344,0.5126 0.41105,0.8964 -0.009,0.3986 -0.16343,0.7949 -0.46058,1.2059" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path335"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 125.18359,43.125702 -0.26249,-0.2502 c -0.0223,0.095 -0.25009,0.5299 -0.68344,1.3322 -0.29962,0.5374 -0.34172,0.9137 -0.10902,1.1317 0.36897,0.3442 0.74536,0.3046 1.15641,-0.1244 0.66362,-0.6983 0.63144,-1.3966 -0.10159,-2.0899 m 4.18978,0.6686 c -0.61658,0.6511 -1.28763,0.8443 -2.0206,0.567 0,1.0525 -0.36401,1.9562 -1.08706,2.7189 -0.58687,0.624 -1.22822,0.9732 -1.90917,1.0376 -0.67601,0.059 -1.2926,-0.169 -1.84232,-0.6834 -0.84193,-0.7875 -1.03508,-1.6667 -0.60668,-2.6175 0.19314,-0.4036 0.44819,-0.8443 0.75772,-1.3149 0.44077,-0.6561 0.69087,-1.1464 0.7602,-1.456 0.0693,-0.3219 -0.0223,-0.6042 -0.2798,-0.8419 -0.1807,-0.1764 -0.40611,-0.2401 -0.6785,-0.1955 -0.27486,0.037 -0.51258,0.1708 -0.73295,0.4011 -0.24268,0.2648 -0.29221,0.4728 -0.12127,0.6314 0.0544,0.05 0.10641,0.1059 0.16844,0.1505 l 0.0496,0.046 c 0.21294,0.208 0.3219,0.4855 0.29466,0.8073 -0.0247,0.3343 -0.17086,0.6365 -0.42591,0.9137 -0.29962,0.3145 -0.64383,0.4853 -1.02516,0.5102 -0.38629,0.022 -0.72058,-0.104 -1.00534,-0.3714 -0.42593,-0.4062 -0.55221,-0.9461 -0.3665,-1.6319 0.17588,-0.6859 0.64383,-1.4287 1.39909,-2.2188 0.80476,-0.8617 1.54021,-1.3817 2.20136,-1.5526 0.71315,-0.1857 1.46098,0.089 2.23356,0.8272 l 2.46384,2.3276 c 0.24515,0.2377 0.43829,0.2971 0.55468,0.1634 0.0669,-0.057 0.12388,-0.1188 0.17086,-0.1783 0.0273,-0.024 0.0544,-0.05 0.0841,-0.082 0.17086,-0.1838 0.38382,-0.2773 0.62154,-0.2847 0.24762,0 0.46305,0.067 0.64381,0.2426 0.26249,0.2451 0.35658,0.5645 0.30211,0.9484 -0.057,0.3863 -0.26001,0.7676 -0.6042,1.1342" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path339"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 128.28629,34.042602 0.89394,1.0597 c -0.24268,-0.5224 -0.37144,-0.9557 -0.37393,-1.2875 -0.0167,-0.7628 0.29964,-1.4288 0.96326,-1.9859 0.46305,-0.3863 0.9682,-0.5622 1.53031,-0.5301 0.56705,0.032 1.03506,0.2725 1.39907,0.7058 0.2922,0.3393 0.42592,0.7107 0.40857,1.102 -0.009,0.3863 -0.17086,0.7132 -0.48286,0.9732 -0.22533,0.1979 -0.49523,0.2921 -0.78248,0.2698 -0.29219,-0.019 -0.52991,-0.1263 -0.71069,-0.3441 -0.10158,-0.1189 -0.18818,-0.3245 -0.26,-0.6315 l -0.0719,0.069 c -0.56458,0.473 -0.69087,1.0846 -0.38381,1.8399 0.24515,0.6065 0.63144,1.2157 1.15392,1.8298 l 0.40611,0.4805 c 0.25008,0.302 0.43829,0.4754 0.55715,0.51 0.0693,0.024 0.156,0 0.24019,-0.065 0.0767,-0.069 0.16343,-0.1765 0.26,-0.3245 0.10159,-0.1504 0.18819,-0.2576 0.25754,-0.3144 0.1807,-0.1541 0.39372,-0.218 0.63638,-0.1982 0.23524,0.022 0.43829,0.1245 0.59678,0.312 0.20057,0.2476 0.29466,0.5251 0.27237,0.8246 -0.0247,0.3022 -0.15099,0.5522 -0.38629,0.7503 -0.12387,0.1059 -0.37886,0.2773 -0.7602,0.5275 -0.23029,0.1467 -0.50268,0.3541 -0.82211,0.6165 -0.31695,0.2699 -0.58687,0.5201 -0.80477,0.7479 -0.36896,0.3837 -0.59429,0.614 -0.6884,0.6909 -0.51505,0.4333 -1.0103,0.3813 -1.48078,-0.1839 -0.39619,-0.468 -0.39125,-0.8766 0.007,-1.2133 0.0743,-0.054 0.156,-0.1021 0.26248,-0.1485 0.10901,-0.045 0.1807,-0.076 0.22534,-0.117 0.14356,-0.1189 0.0149,-0.4086 -0.38135,-0.884 l -1.70611,-2.0305 c -0.40115,-0.4706 -0.67354,-0.6587 -0.81468,-0.5349 -0.0371,0.024 -0.0867,0.095 -0.15842,0.208 -0.0644,0.1115 -0.13372,0.1839 -0.1833,0.2229 -0.39868,0.3441 -0.7924,0.2797 -1.18363,-0.1764 -0.20554,-0.255 -0.31201,-0.5102 -0.31201,-0.7851 0,-0.2648 0.10642,-0.4902 0.31201,-0.6685 0.0841,-0.069 0.2179,-0.1579 0.39372,-0.2426 0.17587,-0.097 0.33923,-0.2056 0.468,-0.317 0.10159,-0.082 0.23276,-0.2229 0.39124,-0.4136 0.17828,-0.1956 0.30457,-0.3317 0.38878,-0.4086 0.26743,-0.2202 0.50515,-0.1979 0.72305,0.061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path343"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 140.9235,22.477102 3.68957,6.3465 c 0.19563,0.3295 0.42097,0.4335 0.67601,0.2873 0.0767,-0.046 0.17829,-0.1207 0.30707,-0.2229 0.13371,-0.1114 0.2278,-0.1857 0.30704,-0.2327 0.61411,-0.3541 1.09698,-0.2228 1.4585,0.3912 0.1807,0.322 0.24267,0.6266 0.17587,0.9261 -0.0644,0.2996 -0.25009,0.5299 -0.53734,0.7007 -0.0618,0.037 -0.11384,0.06 -0.15358,0.072 l -0.9162,0.3987 c -0.26497,0.117 -0.70079,0.354 -1.31737,0.7031 -0.56705,0.3343 -0.9162,0.5498 -1.04744,0.6564 l -0.77753,0.6017 c -0.0297,0.03 -0.0867,0.067 -0.14857,0.1021 -0.32935,0.1908 -0.64136,0.2478 -0.95583,0.169 -0.30705,-0.083 -0.54973,-0.2724 -0.73297,-0.5844 -0.16344,-0.2847 -0.22038,-0.5546 -0.15099,-0.8196 0.0594,-0.2624 0.22286,-0.473 0.48039,-0.6264 0.0916,-0.045 0.23029,-0.1133 0.41105,-0.1907 0.19068,-0.087 0.32686,-0.1468 0.41601,-0.1882 0.22286,-0.1411 0.27982,-0.3714 0.156,-0.7083 -0.0247,-0.069 -0.16343,-0.3194 -0.40858,-0.7453 l -2.27565,-3.9075 c -0.25753,-0.4433 -0.54972,-0.5744 -0.87162,-0.3839 -0.052,0.032 -0.15099,0.1022 -0.29221,0.2056 -0.15842,0.1635 -0.30209,0.2823 -0.43581,0.359 -0.55468,0.312 -1.00783,0.1579 -1.37926,-0.4728 -0.18572,-0.322 -0.23525,-0.6365 -0.15359,-0.9485 0.0867,-0.3021 0.29468,-0.5571 0.62401,-0.7479 0.16343,-0.098 0.42591,-0.2128 0.77011,-0.3565 0.35658,-0.1412 0.61163,-0.2574 0.76763,-0.3566 0.208,-0.1133 0.45315,-0.302 0.77258,-0.572 0.1287,-0.1189 0.27982,-0.2203 0.44077,-0.3144 0.2501,-0.143 0.47049,-0.1802 0.64878,-0.091 0.12629,0.08 0.28723,0.2576 0.45315,0.5521" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path347"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 149.63587,19.453102 c -0.5943,0.2501 -0.93851,0.7404 -1.03259,1.4684 -0.0966,0.7182 0.0693,1.5773 0.49523,2.5876 0.42593,1.0079 0.93355,1.7211 1.51795,2.1569 0.58437,0.4283 1.17124,0.5174 1.76059,0.2625 0.60667,-0.2452 0.95831,-0.7355 1.05488,-1.4537 0.099,-0.7131 -0.0669,-1.5772 -0.49029,-2.5876 -0.4383,-1.0201 -0.94345,-1.7433 -1.52785,-2.1741 -0.58439,-0.4259 -1.1762,-0.51 -1.77792,-0.26 m 3.67471,8.5207 c -1.43868,0.6091 -2.74366,0.6141 -3.92482,0.024 -1.18116,-0.5895 -2.12707,-1.7235 -2.83776,-3.4098 -0.70325,-1.6541 -0.8642,-3.12 -0.47543,-4.3953 0.38382,-1.2728 1.26783,-2.2013 2.63965,-2.7858 1.42137,-0.5967 2.72633,-0.6091 3.91988,-0.022 1.18116,0.5795 2.12461,1.6789 2.80062,3.3034 0.73297,1.716 0.91373,3.2116 0.54229,4.4819 -0.36401,1.2753 -1.25298,2.2039 -2.66443,2.803" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path351"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 160.78212,15.596802 c -0.61906,0.169 -1.02763,0.6068 -1.21831,1.3149 -0.19314,0.7009 -0.14114,1.5775 0.14115,2.6324 0.28972,1.0498 0.69333,1.8322 1.21583,2.3326 0.51752,0.5001 1.09449,0.671 1.71354,0.5001 0.62897,-0.1653 1.04002,-0.6041 1.23812,-1.3024 0.19562,-0.7009 0.14356,-1.5775 -0.14356,-2.6348 -0.28476,-1.0599 -0.6884,-1.8423 -1.21334,-2.3451 -0.52001,-0.5075 -1.09698,-0.6635 -1.73338,-0.4977 m 2.50596,8.9293 c -1.51051,0.4062 -2.80558,0.2502 -3.90006,-0.5025 -1.09451,-0.7429 -1.87699,-1.9909 -2.36233,-3.7541 -0.47049,-1.7333 -0.42839,-3.2116 0.12388,-4.4201 0.55219,-1.2059 1.55506,-2.0082 2.99376,-2.4043 1.49068,-0.4037 2.78327,-0.2403 3.88025,0.4977 1.1044,0.7355 1.88935,1.9488 2.34993,3.6449 0.4903,1.8028 0.4705,3.3108 -0.0669,4.5092 -0.53733,1.2135 -1.54516,2.0256 -3.01852,2.4292" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path355"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 178.59636,18.701802 c -0.12128,-1.0573 -0.50267,-1.5377 -1.14153,-1.4584 -0.68593,0.072 -0.96822,0.6511 -0.84687,1.7208 0.1287,1.0822 0.5299,1.5824 1.20838,1.5057 0.64136,-0.067 0.90879,-0.6636 0.78002,-1.7681 m -3.82578,0.421 c -0.11644,-0.9707 0.0422,-1.7409 0.4705,-2.3251 0.43086,-0.5746 1.10191,-0.9188 2.02554,-1.0228 1.86956,-0.2228 2.91948,0.6909 3.15472,2.7314 0.24515,2.0726 -0.58439,3.214 -2.47128,3.4294 -0.89638,0.1115 -1.63182,-0.084 -2.17661,-0.5794 -0.55962,-0.4803 -0.88895,-1.2306 -1.00287,-2.2335 m -3.31071,-4.8559 c -0.11885,-1.0896 -0.51258,-1.5873 -1.1465,-1.5155 -0.70077,0.084 -0.99296,0.6439 -0.87659,1.7036 0.12388,1.0971 0.5423,1.6022 1.23565,1.5255 0.64877,-0.087 0.91124,-0.6415 0.78744,-1.7136 m -0.72554,7.3865 4.24425,-8.4761 c -0.24514,0.218 -0.52247,0.3517 -0.82705,0.3839 -0.32686,0.039 -0.65868,-0.022 -0.99297,-0.1857 0.0644,0.1981 0.104,0.3913 0.12628,0.567 0.24764,2.1147 -0.57201,3.286 -2.46383,3.5015 -0.92116,0.1095 -1.66156,-0.089 -2.21128,-0.5821 -0.56211,-0.4977 -0.90134,-1.2703 -1.02516,-2.3053 -0.11143,-0.9559 0.0496,-1.721 0.48286,-2.2856 0.42344,-0.567 1.09202,-0.9037 1.99089,-1.0151 0.82706,-0.091 1.54517,0.022 2.17165,0.359 l 0.45811,0.2451 c 0.61905,0.3343 1.1663,0.473 1.6467,0.4184 0.58686,-0.069 1.07467,-0.3738 1.46345,-0.9063 l 0.13873,-0.198 c 0.18819,-0.2626 0.44076,-0.4135 0.75773,-0.4483 0.44323,-0.052 0.68591,0.06 0.71562,0.3295 0.013,0.1244 -0.0867,0.4086 -0.30458,0.8368 l -5.04161,10.1304 c -0.12127,0.2549 -0.24018,0.416 -0.34172,0.5027 -0.12628,0.1021 -0.31694,0.1708 -0.56705,0.198 -0.44325,0.061 -0.67354,-0.037 -0.70572,-0.2649 -0.0199,-0.1281 0.0793,-0.3937 0.28476,-0.8049" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path359"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 189.44769,13.250102 c 0.84193,0.059 1.52784,0.3491 2.06766,0.8593 0.0817,-0.468 0.39619,-0.6784 0.94096,-0.6389 0.55221,0.045 0.81468,0.2576 0.78744,0.6439 -0.007,0.1356 -0.0396,0.2797 -0.0966,0.4431 -0.047,0.1932 -0.0743,0.3741 -0.0915,0.5524 0,0.032 0,0.117 -0.002,0.26 -0.006,0.1411 -0.0223,0.2624 -0.0347,0.3738 v 0.067 c -0.0396,0.5744 -0.35411,0.8418 -0.93106,0.7973 -0.41353,-0.032 -0.75772,-0.2625 -1.02764,-0.6859 -0.3343,-0.5274 -0.76763,-0.7999 -1.30745,-0.837 -0.62153,-0.046 -0.95335,0.1411 -0.99049,0.5794 -0.0167,0.2255 0.0743,0.3963 0.27486,0.5078 0.19811,0.104 0.73297,0.2674 1.60956,0.4853 0.70076,0.1881 1.22324,0.3714 1.55506,0.5669 0.33182,0.1839 0.59677,0.4409 0.78497,0.7604 0.25009,0.416 0.35162,0.879 0.31448,1.4064 -0.0644,0.8296 -0.43582,1.4956 -1.1143,2.0058 -0.67848,0.5075 -1.49564,0.723 -2.45643,0.6487 -0.9583,-0.069 -1.81011,-0.4383 -2.55051,-1.1117 -0.0422,0.52 -0.33182,0.7651 -0.87163,0.7205 -0.59429,-0.039 -0.86668,-0.3045 -0.83201,-0.7776 0.007,-0.117 0.0273,-0.2822 0.0669,-0.5125 0.0421,-0.2229 0.0618,-0.3938 0.0719,-0.5002 0.009,-0.1021 0.009,-0.2451 0.009,-0.4483 0,-0.1956 0,-0.3441 0.013,-0.4383 0.0297,-0.4951 0.35904,-0.7156 0.9682,-0.671 0.29714,0.02 0.51009,0.089 0.66362,0.1802 0.14114,0.1021 0.28972,0.2873 0.45068,0.5547 0.24019,0.4309 0.47048,0.7132 0.69087,0.8641 0.22037,0.1393 0.55466,0.2329 1.00038,0.2601 0.7825,0.059 1.19108,-0.1579 1.23565,-0.6488 0.0247,-0.3417 -0.27735,-0.5967 -0.90136,-0.7725 l -0.92858,-0.2675 c -0.76516,-0.2154 -1.30496,-0.4234 -1.61203,-0.6141 -0.30705,-0.1858 -0.54229,-0.4705 -0.70324,-0.8345 -0.15841,-0.3616 -0.22039,-0.7776 -0.18571,-1.2406 0.0618,-0.8195 0.38133,-1.4584 0.9583,-1.9364 0.57695,-0.4705 1.30496,-0.676 2.17412,-0.6018" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path363"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 198.83285,11.829702 c 0.30211,0.058 0.41354,0.2799 0.35411,0.6786 l -1.28269,7.6564 c -0.0867,0.5349 -0.0247,0.8272 0.18571,0.8668 0.0793,0.018 0.16845,0.018 0.24019,-0.028 0.0693,-0.028 0.15359,-0.032 0.26249,-0.019 0.48038,0.072 0.6661,0.3988 0.56952,0.9634 -0.12387,0.7553 -0.51751,1.087 -1.15887,0.9731 -0.007,0 -0.40609,-0.1021 -1.20839,-0.3022 -0.24515,-0.054 -0.50268,-0.1114 -0.78497,-0.1615 -0.23525,-0.037 -0.49029,-0.061 -0.76515,-0.073 -0.46058,-0.028 -0.7503,-0.052 -0.86916,-0.067 -0.28725,-0.05 -0.51258,-0.1881 -0.65869,-0.4235 -0.15098,-0.2228 -0.19808,-0.4977 -0.14615,-0.8295 0.104,-0.5917 0.41847,-0.8543 0.94095,-0.77 0.0669,0 0.14616,0.05 0.25753,0.104 0.0966,0.061 0.19068,0.098 0.25754,0.1095 0.17327,0.032 0.31943,-0.2549 0.41601,-0.8641 l 0.89887,-5.3784 c 0.104,-0.6041 0.0618,-0.9286 -0.12128,-0.9559 -0.0743,0 -0.17086,0 -0.29714,0.019 -0.0669,0 -0.16102,0 -0.26248,-0.019 -0.51754,-0.083 -0.72305,-0.4234 -0.62401,-1.0103 0.0544,-0.3318 0.18819,-0.5794 0.40611,-0.7404 0.21047,-0.1616 0.48038,-0.2154 0.79238,-0.169 0.0817,0.022 0.26743,0.061 0.53736,0.1411 0.35657,0.099 0.63143,0.1653 0.81219,0.1956 0.25258,0.045 0.47048,0.059 0.66116,0.052 0.25257,0 0.44572,0.032 0.58686,0.045" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path367"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 205.17374,21.255102 0.0966,-0.3468 c -0.0867,0.022 -0.58439,0.024 -1.49316,0.022 -0.61907,0 -0.96573,0.1337 -1.05241,0.4409 -0.13371,0.4853 0.0867,0.8023 0.6562,0.9607 0.92858,0.2502 1.53527,-0.1095 1.7928,-1.0771 m 1.39659,4.009 c -0.86915,-0.2278 -1.35451,-0.738 -1.46594,-1.508 -0.92115,0.4951 -1.89182,0.5991 -2.90461,0.3343 -0.83202,-0.2279 -1.43374,-0.634 -1.81754,-1.2084 -0.38136,-0.567 -0.46801,-1.2159 -0.26993,-1.9414 0.30211,-1.1068 0.97316,-1.6963 2.0231,-1.7656 0.44819,-0.024 0.9583,-0.018 1.52039,0.039 0.78001,0.076 1.32974,0.072 1.6467,-0.022 0.312,-0.089 0.50762,-0.3045 0.60419,-0.6412 0.0619,-0.2353 0.0149,-0.4731 -0.14616,-0.6959 -0.15841,-0.2154 -0.39372,-0.3688 -0.69829,-0.4506 -0.35658,-0.089 -0.55469,-0.024 -0.61658,0.1956 -0.0223,0.069 -0.0422,0.143 -0.0544,0.2154 l -0.0199,0.069 c -0.0841,0.2873 -0.27239,0.5102 -0.56954,0.6439 -0.30211,0.1319 -0.63887,0.1467 -1.0004,0.05 -0.42344,-0.1115 -0.73296,-0.3319 -0.93849,-0.6612 -0.1981,-0.3294 -0.25257,-0.6834 -0.15099,-1.0575 0.15601,-0.5694 0.57695,-0.936 1.26039,-1.1042 0.69583,-0.1635 1.56499,-0.1022 2.61739,0.1838 1.13906,0.3072 1.94383,0.7084 2.40441,1.2109 0.50268,0.5399 0.61907,1.3297 0.33182,2.3623 l -0.88402,3.2787 c -0.0942,0.3343 -0.0544,0.5224 0.11645,0.562 0.0867,0.03 0.16101,0.045 0.23772,0.069 0.0347,0 0.0669,0.019 0.11143,0.032 0.24265,0.065 0.42343,0.1982 0.54229,0.4136 0.12629,0.2105 0.16343,0.4333 0.0891,0.6734 -0.0891,0.3444 -0.31943,0.5821 -0.69086,0.7182 -0.37144,0.1393 -0.79983,0.1393 -1.27774,0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path371"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.34322,24.411302 0.13371,-0.3343 c -0.0891,0.022 -0.57201,-0.032 -1.47831,-0.1504 -0.60668,-0.082 -0.97316,0.022 -1.08955,0.312 -0.19065,0.4755 -0.0149,0.8148 0.52993,1.0278 0.89887,0.3688 1.53031,0.083 1.90422,-0.8543 m 0.9063,4.15 c -0.83202,-0.3367 -1.24802,-0.8963 -1.26041,-1.6714 -0.98059,0.3764 -1.95622,0.3714 -2.92691,-0.022 -0.79981,-0.3219 -1.35696,-0.7875 -1.65906,-1.394 -0.30954,-0.6192 -0.31697,-1.2679 -0.0371,-1.9761 0.4284,-1.0649 1.16878,-1.565 2.20879,-1.5056 0.45811,0.024 0.95583,0.099 1.50803,0.2205 0.76268,0.1578 1.30994,0.2202 1.6368,0.1653 0.31943,-0.052 0.54229,-0.2353 0.67352,-0.5646 0.0942,-0.2377 0.0743,-0.463 -0.0594,-0.6983 -0.1313,-0.2377 -0.35162,-0.421 -0.63887,-0.5423 -0.33676,-0.1263 -0.54723,-0.091 -0.63638,0.1207 -0.0273,0.069 -0.0544,0.1412 -0.0767,0.213 l -0.0297,0.06 c -0.11143,0.2798 -0.32686,0.4704 -0.63887,0.5744 -0.3219,0.097 -0.65123,0.072 -1.00781,-0.074 -0.40611,-0.1616 -0.68097,-0.4184 -0.84687,-0.7676 -0.16343,-0.3467 -0.17328,-0.7007 -0.0223,-1.0673 0.22286,-0.5471 0.68344,-0.8617 1.38668,-0.9384 0.70325,-0.087 1.56002,0.082 2.57032,0.4927 1.10194,0.4383 1.84728,0.9336 2.24843,1.4857 0.43086,0.5969 0.44572,1.3918 0.047,2.3872 l -1.27277,3.1424 c -0.13372,0.3218 -0.11645,0.5224 0.0422,0.5818 0.0867,0.037 0.16101,0.067 0.23029,0.097 0.0297,0.02 0.0719,0.022 0.10641,0.043 0.23029,0.091 0.40362,0.255 0.49772,0.4779 0.099,0.2278 0.099,0.4507 0.007,0.6834 -0.1313,0.3343 -0.39125,0.5373 -0.77505,0.629 -0.38629,0.087 -0.80973,0.043 -1.27527,-0.1504" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path375"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 225.93197,23.418902 c 0.057,-0.1115 0.16585,-0.2155 0.30954,-0.3195 -0.0594,-0.08 -0.14858,-0.1504 -0.26001,-0.2154 -0.46553,-0.2452 -0.82707,-0.1467 -1.06479,0.3094 l -0.15359,0.2873 c -0.10158,0.1857 -0.0421,0.3367 0.17829,0.4507 l 0.42591,0.2277 c 0.55962,0.2923 0.70572,0.7084 0.43086,1.2233 -0.28229,0.5474 -0.69583,0.6761 -1.23069,0.3988 l -0.47544,-0.2526 c -0.21294,-0.1114 -0.38876,-0.045 -0.51752,0.203 l -1.52288,2.8898 c -0.16584,0.3045 -0.2501,0.4804 -0.2501,0.5101 -0.0841,0.2155 -0.0321,0.3739 0.14114,0.468 0.0396,0.019 0.1287,0.052 0.2699,0.117 0.12128,0.037 0.23772,0.084 0.35164,0.1505 0.45315,0.2425 0.53487,0.624 0.25752,1.1562 -0.14115,0.2701 -0.34419,0.4433 -0.59677,0.5325 -0.25257,0.089 -0.51258,0.061 -0.76762,-0.067 -0.013,0 -0.29715,-0.1955 -0.83451,-0.5521 -0.1833,-0.117 -0.45562,-0.2799 -0.81962,-0.468 -0.40858,-0.2205 -0.74534,-0.3815 -1.01277,-0.4829 -0.44079,-0.169 -0.70822,-0.2823 -0.80973,-0.3343 -0.26743,-0.143 -0.43582,-0.3517 -0.50764,-0.6091 -0.0669,-0.2701 -0.0247,-0.5473 0.1287,-0.837 0.28476,-0.5399 0.66115,-0.6885 1.14153,-0.4359 0.0743,0.037 0.14857,0.1021 0.23278,0.1907 0.0743,0.089 0.1313,0.1337 0.16584,0.1541 0.18331,0.097 0.40611,-0.1281 0.69334,-0.6711 l 1.52041,-2.8749 c 0.11143,-0.2054 0.12388,-0.3466 0.052,-0.4185 -0.0273,-0.031 -0.0892,-0.082 -0.16845,-0.1337 l -0.34915,-0.1801 c -0.51258,-0.2701 -0.63638,-0.6563 -0.37143,-1.1589 0.29467,-0.5622 0.71315,-0.7009 1.24802,-0.416 l 0.25753,0.1337 c 0.16845,0.089 0.28476,0.1133 0.36154,0.089 0.0767,-0.03 0.17829,-0.1468 0.29466,-0.3393 0.37639,-0.6488 0.91868,-1.0376 1.61698,-1.1639 0.70326,-0.1189 1.46841,0.035 2.30289,0.473 0.6884,0.3738 1.1787,0.8047 1.45107,1.3074 0.27486,0.4978 0.28478,0.9806 0.0396,1.4486 -0.15359,0.2897 -0.3863,0.4731 -0.70079,0.5522 -0.30952,0.089 -0.62895,0.039 -0.95087,-0.1319 -0.25752,-0.1393 -0.44076,-0.317 -0.53238,-0.5423 -0.0966,-0.2303 -0.0867,-0.4582 0.0247,-0.6686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path379"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 229.26844,29.800502 -1.08459,3.6203 3.02596,-2.3079 c 0.0767,-0.054 0.18071,-0.1262 0.30705,-0.2252 0.0966,-0.072 0.15842,-0.143 0.1833,-0.1858 0.0916,-0.1262 0.0297,-0.2897 -0.17327,-0.4928 -0.28723,-0.3121 -0.28723,-0.6761 0.006,-1.1143 0.34668,-0.5126 0.76516,-0.6092 1.25049,-0.2723 0.16343,0.104 0.39125,0.2871 0.6983,0.5423 0.29221,0.2526 0.52001,0.4357 0.68593,0.5497 0.25008,0.169 0.50762,0.3219 0.78001,0.4506 0.27237,0.1262 0.45809,0.2278 0.56705,0.3045 0.53487,0.3592 0.60419,0.8172 0.22039,1.3942 -0.36401,0.5399 -0.78001,0.6588 -1.24308,0.3417 -0.0167,-0.019 -0.0422,-0.024 -0.0693,-0.046 -0.0321,-0.02 -0.0544,-0.043 -0.0618,-0.046 -0.0544,-0.061 -0.0966,-0.1133 -0.15358,-0.1579 -0.15099,-0.097 -0.3764,-0.039 -0.66363,0.1653 -0.10901,0.074 -0.34915,0.2526 -0.7503,0.525 l -3.23148,2.2435 c -0.77754,0.5596 -1.42136,0.6338 -1.91909,0.2451 l -0.61162,-0.4754 -0.66611,-0.3913 c -0.009,0 -0.0247,-0.019 -0.052,-0.043 -0.42838,-0.2849 -0.5522,-0.7678 -0.38876,-1.4438 l 1.1663,-4.7443 c 0.0743,-0.3417 0.10902,-0.5622 0.099,-0.6513 -0.007,-0.089 -0.0544,-0.1653 -0.14115,-0.2253 -0.009,0 -0.0371,-0.024 -0.0719,-0.043 -0.0273,-0.022 -0.0496,-0.037 -0.0693,-0.05 -0.0693,-0.054 -0.14356,-0.104 -0.2278,-0.156 -0.18071,-0.1244 -0.28229,-0.2897 -0.30458,-0.52 -0.0199,-0.2178 0.0496,-0.4431 0.19809,-0.6686 0.40363,-0.5967 0.88897,-0.7081 1.43373,-0.3367 0.13873,0.087 0.34172,0.2502 0.58687,0.4731 0.24764,0.2228 0.44325,0.3788 0.58193,0.4754 0.18818,0.1244 0.5299,0.3243 1.02763,0.5893 0.29218,0.1616 0.51011,0.2947 0.64133,0.3764 0.49526,0.3343 0.56458,0.7602 0.21297,1.2752 -0.31697,0.473 -0.66859,0.6067 -1.05984,0.3889 -0.24266,-0.1208 -0.42094,-0.1171 -0.52495,0.039 -0.0297,0.05 -0.099,0.2451 -0.20306,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path383"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 239.34026,34.574002 -0.91124,1.0474 c 0.48037,-0.3218 0.88401,-0.5126 1.2183,-0.5744 0.75524,-0.1337 1.45849,0.08 2.10975,0.6413 0.45315,0.3987 0.71067,0.8741 0.76267,1.4361 0.052,0.5622 -0.10642,1.0575 -0.47544,1.4858 -0.29219,0.3369 -0.63887,0.5274 -1.02267,0.5746 -0.38382,0.037 -0.73544,-0.061 -1.04251,-0.3343 -0.22286,-0.1958 -0.35657,-0.4457 -0.38876,-0.7306 -0.0347,-0.2847 0.047,-0.5373 0.22782,-0.7477 0.10642,-0.117 0.29466,-0.2279 0.58438,-0.3444 l -0.0743,-0.058 c -0.55219,-0.4829 -1.18116,-0.5126 -1.87697,-0.097 -0.55715,0.3417 -1.10193,0.8146 -1.63431,1.4287 l -0.40858,0.4704 c -0.26,0.2972 -0.39868,0.5078 -0.41849,0.6341 -0.013,0.08 0.0273,0.1486 0.10901,0.2253 0.0743,0.061 0.18819,0.1281 0.36648,0.208 0.15842,0.08 0.27735,0.1393 0.34421,0.1981 0.1807,0.156 0.2798,0.354 0.29715,0.5943 0.0148,0.2402 -0.0544,0.4532 -0.2204,0.6389 -0.20553,0.2401 -0.46057,0.3714 -0.77011,0.4011 -0.30458,0.019 -0.56705,-0.072 -0.79238,-0.27 -0.12629,-0.1114 -0.34668,-0.3269 -0.64879,-0.6611 -0.1833,-0.2081 -0.43086,-0.4482 -0.74038,-0.718 -0.31449,-0.2701 -0.59925,-0.5004 -0.85925,-0.6835 -0.43087,-0.2971 -0.69334,-0.4953 -0.78249,-0.572 -0.51258,-0.4457 -0.52992,-0.9434 -0.0496,-1.4982 0.40115,-0.4531 0.79487,-0.5125 1.18612,-0.1727 0.0793,0.06 0.13613,0.1412 0.19561,0.2377 0.052,0.1022 0.10159,0.169 0.14858,0.2006 0.13613,0.1244 0.40362,-0.043 0.80972,-0.5003 l 1.74079,-2.0082 c 0.40858,-0.4656 0.54478,-0.7627 0.40115,-0.889 -0.0321,-0.028 -0.104,-0.069 -0.22286,-0.1263 -0.12128,-0.045 -0.21048,-0.095 -0.25752,-0.1411 -0.39372,-0.3442 -0.39868,-0.7403 0,-1.1934 0.21543,-0.2428 0.45315,-0.3964 0.72552,-0.4285 0.26744,-0.046 0.50269,0.02 0.70326,0.203 0.0817,0.074 0.18572,0.1838 0.30458,0.3443 0.11384,0.1653 0.2501,0.302 0.37639,0.4134 0.10159,0.089 0.26,0.2006 0.47295,0.3319 0.22039,0.1319 0.37392,0.2353 0.46306,0.3144 0.25505,0.2229 0.27238,0.4632 0.0496,0.7182" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path387"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 246.05059,39.387602 c -0.27733,-0.2998 -0.416,-0.6538 -0.40362,-1.0698 0.009,-0.4136 0.15359,-0.7651 0.45068,-1.0474 0.29962,-0.2823 0.6562,-0.4285 1.06478,-0.416 0.40857,0.019 0.76268,0.1616 1.04497,0.4654 0.29219,0.2997 0.42838,0.6489 0.42344,1.0649 -0.0149,0.406 -0.16585,0.7577 -0.46554,1.0448 -0.30458,0.2898 -0.65868,0.4261 -1.0722,0.4187 -0.40364,0 -0.75773,-0.1635 -1.04251,-0.4606 m 0.19564,1.0994 c 0.208,0.2203 0.16101,0.4803 -0.14616,0.7774 l -3.55588,3.4098 c -0.40608,0.3815 -0.5398,0.6463 -0.38876,0.7975 0.0321,0.032 0.0966,0.074 0.20058,0.1263 0.11384,0.052 0.19561,0.1095 0.24761,0.1615 0.31944,0.3343 0.26744,0.6885 -0.15358,1.0995 -0.54973,0.5324 -1.05737,0.5646 -1.49813,0.095 -0.0767,-0.074 -0.26743,-0.3144 -0.58191,-0.7081 -0.1833,-0.2478 -0.416,-0.5102 -0.69087,-0.7975 -0.13371,-0.1412 -0.34667,-0.3293 -0.63639,-0.5819 -0.29962,-0.2427 -0.51505,-0.4383 -0.64383,-0.5696 -0.20304,-0.208 -0.29466,-0.4605 -0.27486,-0.7328 0.0199,-0.27 0.14356,-0.52 0.37392,-0.738 0.44819,-0.4333 0.85677,-0.4606 1.21335,-0.084 l 0.22286,0.3839 c 0.0199,0.037 0.0422,0.074 0.057,0.091 0.13873,0.1467 0.4259,0.018 0.87409,-0.4185 l 1.91909,-1.8399 c 0.44572,-0.4234 0.6042,-0.7057 0.48038,-0.8468 -0.0247,-0.019 -0.11886,-0.065 -0.27237,-0.143 -0.0867,-0.061 -0.16102,-0.1189 -0.20307,-0.169 -0.35904,-0.3789 -0.3219,-0.7776 0.11886,-1.1961 0.23525,-0.2302 0.49525,-0.3467 0.77259,-0.3541 0.26992,0 0.51506,0.1021 0.72307,0.3194 0.0891,0.087 0.19561,0.2255 0.3318,0.4112 0.22782,0.3144 0.42344,0.5596 0.57697,0.7206 0.13371,0.1356 0.312,0.2971 0.54476,0.4802 0.23772,0.1783 0.36154,0.2873 0.38878,0.3072" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path391"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 250.44392,44.356302 c -0.26247,-0.3169 -0.38133,-0.6835 -0.33923,-1.0995 0.0321,-0.4134 0.21543,-0.7453 0.53486,-1.0103 0.32438,-0.2624 0.68591,-0.3714 1.09696,-0.3293 0.41601,0.045 0.74783,0.2229 1.01279,0.5423 0.26495,0.3219 0.37887,0.6933 0.33676,1.0995 -0.0347,0.4061 -0.22039,0.7378 -0.54972,1.0004 -0.30705,0.26 -0.66362,0.3763 -1.07716,0.3343 -0.41105,-0.037 -0.75526,-0.213 -1.01526,-0.5374 m -9.23137,4.6975 c -0.11886,0.095 -0.25754,0.1541 -0.40364,0.1764 0.0297,0.076 0.0916,0.1634 0.15099,0.2478 0.24265,0.2847 0.53733,0.3788 0.87658,0.2847 0.35162,-0.091 0.84438,-0.411 1.49317,-0.9435 l 3.76386,-3.0977 c 0.48782,-0.3938 0.66115,-0.671 0.53982,-0.8222 -0.0446,-0.046 -0.1313,-0.1207 -0.25257,-0.203 -0.12388,-0.087 -0.19811,-0.156 -0.24019,-0.1982 -0.29468,-0.3565 -0.20058,-0.7354 0.26494,-1.1265 0.56954,-0.4606 1.05736,-0.4457 1.46841,0.05 0.0966,0.1282 0.23276,0.3221 0.40611,0.5919 0.15842,0.2674 0.28972,0.4582 0.39866,0.5893 0.10159,0.1263 0.27735,0.3021 0.51754,0.5274 0.23772,0.2255 0.364,0.3542 0.39125,0.3789 0.19066,0.2329 0.12127,0.4879 -0.20553,0.7603 l -5.78695,4.7618 c -0.47048,0.3813 -0.87659,0.6463 -1.20592,0.7824 -0.33429,0.1356 -0.73297,0.1839 -1.17869,0.156 -0.97316,-0.054 -1.83489,-0.5348 -2.57776,-1.4337 -0.51258,-0.624 -0.80477,-1.243 -0.87411,-1.8498 -0.0693,-0.6091 0.099,-1.0747 0.51258,-1.4188 0.29467,-0.2452 0.63639,-0.3417 1.00783,-0.2972 0.38133,0.047 0.69087,0.2229 0.95087,0.5325 0.2179,0.2648 0.3219,0.5447 0.31696,0.8368 -0.002,0.2947 -0.11886,0.5325 -0.33429,0.7158" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path395"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 251.65877,51.290702 c -0.0544,0.037 -0.0867,0.082 -0.104,0.1282 -0.0199,0.058 0.0247,0.1634 0.13372,0.3269 l 1.03258,1.5106 c 0.0892,0.1281 0.16102,0.208 0.20801,0.2178 0.0594,0.019 0.1313,-0.019 0.208,-0.067 0.23276,-0.1616 0.36401,-0.4012 0.40115,-0.728 0.0347,-0.3245 -0.047,-0.6291 -0.23029,-0.9088 -0.24764,-0.3591 -0.58687,-0.5547 -1.01773,-0.5918 -0.27735,-0.028 -0.48535,0.018 -0.63144,0.1114 m 2.24594,4.7668 c -0.38134,0.255 -0.66612,0.3763 -0.8543,0.364 -0.19068,0 -0.38134,-0.1486 -0.57201,-0.426 l -2.24594,-3.3082 c -0.10641,-0.1616 -0.19563,-0.2526 -0.25257,-0.265 -0.057,-0.03 -0.15099,0.018 -0.28229,0.1021 -0.3764,0.2576 -0.61411,0.5967 -0.70573,1.0153 -0.0867,0.411 -0.006,0.8072 0.25258,1.1738 0.25008,0.3837 0.72305,0.624 1.41145,0.7402 0.47543,0.082 0.82705,0.2701 1.04248,0.5969 0.18572,0.2723 0.26001,0.5423 0.22287,0.8146 -0.0446,0.2748 -0.18331,0.4854 -0.41354,0.6489 -0.52991,0.3566 -1.16878,0.3714 -1.92154,0.046 -0.75773,-0.3269 -1.41145,-0.8989 -1.9711,-1.721 -0.73791,-1.0772 -0.99295,-2.1493 -0.78001,-3.2315 0.22286,-1.087 0.86669,-2.0007 1.94881,-2.7386 1.09202,-0.738 2.19393,-1.0227 3.29585,-0.842 1.10687,0.1801 2.0107,0.7826 2.709,1.8152 0.65125,0.9532 0.8964,1.9091 0.73544,2.855 -0.16102,0.941 -0.70077,1.7285 -1.61945,2.3599" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path399"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 259.4693,65.024902 c 0.14616,-0.067 0.31447,-0.097 0.50515,-0.059 0.057,-0.3046 0.0223,-0.5943 -0.11143,-0.8716 -0.20058,-0.4383 -0.54726,-0.7107 -1.03012,-0.8123 -0.49277,-0.1096 -1.04249,-0.019 -1.63678,0.2576 -0.62401,0.2897 -1.06479,0.6635 -1.30498,1.1267 -0.24268,0.458 -0.24762,0.9286 -0.0297,1.4065 0.22039,0.4852 0.6463,0.7205 1.27527,0.7107 0.39372,-0.019 0.65372,0 0.79734,0.067 0.1807,0.083 0.33925,0.2722 0.47543,0.5694 0.15842,0.3393 0.18071,0.6587 0.0743,0.9683 -0.104,0.2996 -0.31696,0.52 -0.63144,0.6686 -0.67848,0.307 -1.41145,0.255 -2.20385,-0.169 -0.8023,-0.4235 -1.41392,-1.0971 -1.83489,-2.0058 -0.54476,-1.1737 -0.60915,-2.2707 -0.21294,-3.2959 0.39372,-1.0276 1.19353,-1.82 2.40441,-2.382 1.22079,-0.5598 2.35242,-0.6513 3.39491,-0.27 1.0425,0.3838 1.84727,1.1837 2.40195,2.3896 0.40609,0.8742 0.53487,1.6887 0.3863,2.4464 -0.14858,0.7578 -0.54479,1.2902 -1.1688,1.5874 -0.40115,0.1801 -0.78001,0.1981 -1.14153,0.058 -0.35657,-0.1467 -0.63886,-0.4234 -0.82458,-0.8296 -0.15359,-0.3393 -0.19564,-0.6463 -0.12127,-0.936 0.0719,-0.2921 0.25753,-0.4927 0.53735,-0.624" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path403"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.01982,71.110302 -2.85758,0.9236 c 0.5324,0.3218 0.91373,0.6067 1.14402,0.8691 0.22039,0.255 0.40611,0.6068 0.55715,1.0599 0.31201,0.9583 0.22533,1.7458 -0.24515,2.3425 -0.3219,0.3987 -0.92611,0.7453 -1.8126,1.0302 l -2.69414,0.8691 c -0.52248,0.169 -0.7503,0.3566 -0.68095,0.567 0.0273,0.08 0.0719,0.1504 0.1287,0.2006 0.0594,0.05 0.10159,0.1281 0.14115,0.2253 0.14355,0.4605 -0.052,0.78 -0.58687,0.9583 -0.74534,0.2377 -1.21335,0.05 -1.41392,-0.567 -0.0544,-0.1709 -0.11385,-0.4383 -0.18572,-0.7973 -0.0719,-0.3566 -0.1313,-0.6216 -0.19068,-0.7999 -0.052,-0.1616 -0.14615,-0.4036 -0.29961,-0.7182 -0.14115,-0.3094 -0.25011,-0.5471 -0.30458,-0.718 -0.0841,-0.2551 -0.0644,-0.4929 0.0669,-0.7131 0.12127,-0.2255 0.32686,-0.3789 0.61905,-0.4656 0.52991,-0.1764 0.87412,-0.072 1.02763,0.3096 0.0743,0.1727 0.15099,0.26 0.2501,0.2797 0.0942,0.018 0.24268,-0.019 0.4383,-0.08 l 2.39451,-0.7677 c 0.85925,-0.2773 1.18612,-0.7453 0.97315,-1.394 -0.28476,-0.8891 -1.04991,-1.1392 -2.2806,-0.7355 l -1.84975,0.5893 c -0.21294,0.076 -0.34915,0.1393 -0.38629,0.203 -0.0446,0.072 -0.0446,0.213 -0.013,0.426 0.0496,0.3343 -0.15359,0.5843 -0.62154,0.7355 -0.6884,0.2154 -1.11926,0.043 -1.30992,-0.5301 -0.0396,-0.1207 -0.0867,-0.3539 -0.14616,-0.6882 -0.0669,-0.3393 -0.14114,-0.6415 -0.22782,-0.9138 -0.0743,-0.2154 -0.16101,-0.4433 -0.27486,-0.686 -0.1833,-0.4012 -0.29466,-0.6537 -0.33676,-0.7676 -0.0867,-0.2847 -0.0669,-0.5447 0.0669,-0.78 0.13613,-0.2401 0.35657,-0.4061 0.66115,-0.5076 0.5943,-0.1907 0.97316,-0.028 1.13659,0.4803 0.0199,0.059 0.0321,0.156 0.0273,0.2799 -0.002,0.1244 0.006,0.2154 0.0247,0.2749 0.052,0.1782 0.37639,0.169 0.9583,-0.021 l 5.19266,-1.6738 c 0.58439,-0.1882 0.8444,-0.3665 0.78744,-0.5474 -0.0199,-0.072 -0.0743,-0.1578 -0.14356,-0.2574 -0.047,-0.061 -0.0793,-0.1392 -0.11143,-0.2427 -0.16585,-0.5027 0.0422,-0.8444 0.60915,-1.0276 0.31448,-0.1021 0.5943,-0.096 0.83944,0.021 0.25258,0.1133 0.42344,0.317 0.51009,0.5993 0.0422,0.1318 0.0892,0.3343 0.14858,0.6115 0.0496,0.2626 0.099,0.4632 0.14616,0.6044 0.099,0.3218 0.21296,0.5991 0.31943,0.8245 0.104,0.2179 0.17588,0.3938 0.21047,0.5201 0.0942,0.2772 -0.0446,0.4828 -0.40608,0.5943" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path407"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.18112,83.743902 c -0.0892,-0.4778 -0.36401,-0.8097 -0.83202,-1.0053 -0.4581,-0.2006 -1.0524,-0.2327 -1.77051,-0.095 -0.72553,0.1356 -1.26782,0.3789 -1.62193,0.7306 -0.35904,0.3516 -0.48286,0.77 -0.39619,1.2653 0.19562,0.9979 1.05735,1.3544 2.59756,1.0673 1.54269,-0.2923 2.2187,-0.9484 2.02309,-1.9637 m -6.59668,1.3 c -0.2501,-1.3298 -0.0618,-2.4266 0.55219,-3.2933 0.60916,-0.8618 1.60213,-1.4288 2.95662,-1.6839 1.35202,-0.25 2.47871,-0.097 3.3652,0.4828 0.89144,0.5795 1.46345,1.5181 1.70613,2.8181 0.24266,1.2727 0.0544,2.3523 -0.55715,3.2265 -0.61412,0.879 -1.57242,1.4387 -2.87987,1.6863 -1.37183,0.255 -2.51336,0.104 -3.41719,-0.463 -0.9063,-0.5672 -1.48327,-1.4908 -1.72593,-2.7735" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path411"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.65977,94.285202 c 0.16584,-0.018 0.33429,0.032 0.50515,0.1356 0.15841,-0.2674 0.22533,-0.5497 0.20304,-0.8543 -0.0371,-0.478 -0.26,-0.8593 -0.68095,-1.1318 -0.42096,-0.2674 -0.95336,-0.3812 -1.61945,-0.3268 -0.68344,0.044 -1.2208,0.2403 -1.60709,0.5868 -0.39123,0.3468 -0.56952,0.7801 -0.53238,1.3001 0.0396,0.5374 0.35409,0.9113 0.95335,1.1217 0.35904,0.1263 0.59676,0.2403 0.70819,0.3467 0.14115,0.1412 0.22039,0.3715 0.24021,0.7007 0.0247,0.3691 -0.057,0.6786 -0.26496,0.9286 -0.20801,0.2403 -0.4903,0.3765 -0.83698,0.4012 -0.73791,0.05 -1.41145,-0.26 -2.00574,-0.9409 -0.59677,-0.681 -0.93353,-1.5204 -1.00535,-2.5233 -0.0966,-1.2828 0.22782,-2.335 0.96326,-3.1572 0.73791,-0.8196 1.7705,-1.2727 3.09777,-1.3669 1.33716,-0.098 2.43165,0.213 3.26862,0.9384 0.84191,0.7307 1.30745,1.7582 1.40896,3.0856 0.0594,0.9557 -0.10901,1.7654 -0.51258,2.4265 -0.40608,0.6612 -0.9583,1.0103 -1.65659,1.0674 -0.43334,0.024 -0.79734,-0.095 -1.0821,-0.3542 -0.28478,-0.2648 -0.45068,-0.6166 -0.4804,-1.0647 -0.0273,-0.3739 0.0496,-0.6785 0.22039,-0.9212 0.17086,-0.2451 0.41352,-0.3738 0.71563,-0.3987" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path415"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.55888,102.7502 c 0.0149,-0.4828 -0.17829,-0.8766 -0.58687,-1.1737 -0.40857,-0.2922 -0.97563,-0.463 -1.7086,-0.4951 -0.74286,-0.03 -1.32477,0.089 -1.75564,0.3515 -0.42343,0.26 -0.64876,0.6439 -0.67601,1.1491 -0.0422,1.0201 0.72554,1.5624 2.29794,1.6293 1.57241,0.067 2.37718,-0.4235 2.42918,-1.4611 m -6.74029,-0.2228 c 0.0618,-1.3545 0.49029,-2.3821 1.28269,-3.085398 0.79487,-0.7057 1.8844,-1.0326 3.27356,-0.9707 1.37431,0.054 2.43415,0.473 3.17206,1.2358 0.73544,0.765098 1.07716,1.809998 1.02021,3.129798 -0.052,1.2951 -0.47792,2.3054 -1.27279,3.0161 -0.79734,0.7206 -1.86707,1.045 -3.19928,0.9904 -1.38916,-0.061 -2.46632,-0.468 -3.22654,-1.2305 -0.75276,-0.7628 -1.10191,-1.7855 -1.04991,-3.0855" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path419"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 271.22717,112.1993 c -0.0422,0.2972 -0.26495,0.421 -0.6661,0.364 l -7.67632,-1.0697 c -0.5423,-0.074 -0.83449,0 -0.8543,0.2104 -0.0167,0.089 -0.006,0.1653 0.0199,0.2377 0.0396,0.074 0.0446,0.1616 0.0273,0.2626 -0.0644,0.4853 -0.38135,0.6835 -0.96326,0.5992 -0.75277,-0.104 -1.09202,-0.4779 -0.99791,-1.1316 0,-0.019 0.0941,-0.416 0.26494,-1.2233 0.0618,-0.2426 0.104,-0.5026 0.14115,-0.7825 0.0371,-0.2377 0.0544,-0.4977 0.0544,-0.7776 0.0167,-0.4579 0.0297,-0.7402 0.0496,-0.8665 0.0422,-0.2923 0.16844,-0.5126 0.39621,-0.6686 0.23029,-0.1541 0.50515,-0.213 0.82952,-0.1709 0.60173,0.084 0.87412,0.3912 0.8023,0.9236 -0.0149,0.067 -0.0396,0.1542 -0.104,0.255 -0.0496,0.1096 -0.0841,0.1982 -0.0966,0.2674 -0.0247,0.1783 0.26496,0.312 0.87411,0.3938 l 5.40066,0.7627 c 0.60668,0.082 0.92611,0.028 0.95087,-0.1467 0.006,-0.082 0,-0.1839 -0.0247,-0.307 -0.013,-0.069 -0.013,-0.1579 0.002,-0.2624 0.0793,-0.5152 0.40858,-0.7405 0.99544,-0.6513 0.33429,0.039 0.5844,0.1653 0.75526,0.3812 0.16343,0.2131 0.22533,0.4731 0.18819,0.7875 -0.0149,0.082 -0.057,0.2674 -0.12629,0.5449 -0.0916,0.359 -0.14858,0.6288 -0.17588,0.822 -0.0347,0.2427 -0.0395,0.4631 -0.0297,0.6489 -0.006,0.2574 -0.0167,0.4555 -0.0371,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path423"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 261.99802,118.7405 0.34915,0.08 c -0.0321,-0.08 -0.047,-0.577 -0.0669,-1.4907 -0.006,-0.6166 -0.16101,-0.9557 -0.47049,-1.03 -0.48781,-0.1189 -0.8023,0.1058 -0.93602,0.6734 -0.23029,0.941 0.15099,1.5303 1.12422,1.768 m -3.97435,1.5006 c 0.2179,-0.8715 0.70324,-1.3717 1.47582,-1.503 -0.52,-0.9137 -0.65372,-1.877 -0.40609,-2.8972 0.19809,-0.8344 0.57695,-1.456 1.13906,-1.8447 0.56458,-0.3963 1.21335,-0.5027 1.94385,-0.3194 1.1143,0.2674 1.72593,0.9211 1.81507,1.9686 0.0371,0.4431 0.0396,0.9557 0.002,1.5178 -0.0544,0.7851 -0.0297,1.3348 0.0693,1.6468 0.099,0.307 0.31448,0.5051 0.65373,0.5843 0.24265,0.065 0.4779,0 0.69333,-0.1653 0.21544,-0.1616 0.36154,-0.4012 0.43583,-0.7108 0.0793,-0.3491 0.0167,-0.5545 -0.2105,-0.6041 -0.0719,-0.019 -0.14857,-0.043 -0.22533,-0.058 l -0.0618,-0.019 c -0.29715,-0.069 -0.5225,-0.2549 -0.66115,-0.5497 -0.13873,-0.2995 -0.16585,-0.6264 -0.0767,-0.9978 0.0966,-0.4211 0.30953,-0.7453 0.63143,-0.9485 0.3244,-0.2178 0.67107,-0.2773 1.05488,-0.1857 0.57201,0.1393 0.95336,0.5423 1.13165,1.2357 0.1833,0.6785 0.15359,1.5575 -0.10642,2.6149 -0.28229,1.1489 -0.66362,1.966 -1.14649,2.4441 -0.52496,0.5126 -1.31488,0.6463 -2.35242,0.3937 l -3.29834,-0.7999 c -0.33429,-0.082 -0.52495,-0.03 -0.56705,0.1337 -0.0247,0.082 -0.0371,0.1635 -0.057,0.2428 -0.013,0.028 -0.0167,0.061 -0.0273,0.1058 -0.057,0.2452 -0.19314,0.4285 -0.39868,0.5572 -0.21047,0.1337 -0.43829,0.1653 -0.67601,0.1096 -0.34667,-0.084 -0.58686,-0.3072 -0.73048,-0.6761 -0.14114,-0.3714 -0.156,-0.7948 -0.0446,-1.2777" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path427"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 262.21518,128.3785 c 0.14115,-0.3813 0.0793,-0.7552 -0.17829,-1.1316 -0.2699,-0.3715 -0.70076,-0.6909 -1.30002,-0.9633 0,0 -0.0693,-0.028 -0.20304,-0.072 -0.61907,-0.2353 -1.15888,-0.2997 -1.6046,-0.1981 -0.45068,0.1021 -0.74783,0.3566 -0.9063,0.7701 -0.17587,0.4432 -0.11644,0.879 0.16845,1.3149 0.28229,0.4259 0.74039,0.7602 1.38422,1.0077 0.62152,0.2353 1.17124,0.2849 1.6566,0.156 0.4779,-0.1355 0.80724,-0.4308 0.98306,-0.884 m 2.13946,0.1958 c -0.30458,0.775 -0.87163,1.3743 -1.72099,1.8025 l 1.09451,0.416 c 0.36894,0.1412 0.60172,0.082 0.69581,-0.1727 0.0199,-0.065 0.0618,-0.1857 0.10901,-0.3738 0.0149,-0.1542 0.047,-0.2923 0.0942,-0.4235 0.0743,-0.1931 0.22037,-0.3318 0.42838,-0.3963 0.21792,-0.067 0.44572,-0.061 0.69335,0.032 0.65124,0.25 0.84439,0.7156 0.58438,1.4139 -0.0891,0.2278 -0.15842,0.3838 -0.20551,0.4852 -0.18821,0.3938 -0.32193,0.6638 -0.37393,0.8073 -0.0544,0.1208 -0.11644,0.3269 -0.1833,0.5968 -0.0719,0.2626 -0.13613,0.4557 -0.18572,0.5746 -0.0891,0.26 -0.22039,0.4134 -0.37392,0.4654 -0.156,0.05 -0.39123,0.018 -0.7082,-0.1096 l -7.00029,-2.6595 c -0.5225,-0.2031 -0.81965,-0.2031 -0.8964,-0.019 -0.0199,0.059 -0.0297,0.1485 -0.0273,0.2549 0.007,0.067 -0.013,0.156 -0.0446,0.2576 -0.17327,0.4383 -0.51752,0.5596 -1.03258,0.359 -0.31695,-0.1188 -0.54724,-0.2971 -0.68591,-0.5176 -0.14115,-0.2377 -0.16102,-0.4778 -0.0669,-0.7328 l 0.0347,-0.087 0.29715,-0.5076 c 0.0644,-0.1114 0.14355,-0.2823 0.2278,-0.5101 0.10158,-0.2624 0.16844,-0.4879 0.22039,-0.6636 0.0618,-0.27 0.099,-0.4136 0.104,-0.4335 0.12629,-0.312 0.36896,-0.4059 0.7404,-0.2648 l 0.56458,0.2179 c -0.70079,-0.8742 -0.85183,-1.8424 -0.44821,-2.9097 0.36153,-0.936 1.04001,-1.5624 2.04042,-1.8768 1.0004,-0.312 2.08993,-0.2428 3.26366,0.2005 1.18859,0.4532 2.04289,1.1218 2.54804,1.9984 0.50764,0.879 0.57697,1.7977 0.21297,2.7683" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path431"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 257.67824,137.0451 c -0.052,-0.024 -0.11143,-0.043 -0.16343,-0.032 -0.052,0 -0.12128,0.097 -0.22286,0.2724 l -0.85679,1.6219 c -0.0719,0.143 -0.10159,0.2451 -0.0891,0.2923 0.0167,0.058 0.0693,0.1021 0.15601,0.1467 0.25506,0.1319 0.53486,0.1393 0.83944,0.022 0.30953,-0.1207 0.53982,-0.3293 0.6983,-0.6363 0.208,-0.3788 0.22286,-0.7752 0.0421,-1.1787 -0.10641,-0.26 -0.24514,-0.4285 -0.40362,-0.5076 m -3.15719,4.2195 c -0.40858,-0.2106 -0.65621,-0.4086 -0.73544,-0.5746 -0.0817,-0.1727 -0.0422,-0.411 0.11645,-0.7105 l 1.86709,-3.5287 c 0.0915,-0.1838 0.13371,-0.2923 0.12387,-0.3541 -0.0167,-0.065 -0.0867,-0.1208 -0.2179,-0.1932 -0.40858,-0.2253 -0.81469,-0.2724 -1.22078,-0.1486 -0.40115,0.1133 -0.71068,0.3715 -0.92611,0.7702 -0.21297,0.4036 -0.21297,0.936 0.009,1.5996 0.15842,0.4507 0.14356,0.8493 -0.0422,1.1936 -0.15359,0.2921 -0.36153,0.4877 -0.61907,0.572 -0.26,0.095 -0.51009,0.074 -0.76515,-0.05 -0.55715,-0.3046 -0.86916,-0.8668 -0.93602,-1.6813 -0.0693,-0.8222 0.13372,-1.6741 0.59679,-2.5432 0.60666,-1.1515 1.43867,-1.8869 2.49851,-2.2064 1.05983,-0.3144 2.16422,-0.1727 3.32805,0.4409 1.1663,0.624 1.9265,1.4585 2.29051,2.5208 0.35906,1.0599 0.2501,2.1394 -0.33676,3.2439 -0.5423,1.0177 -1.26784,1.6837 -2.17908,1.9859 -0.91869,0.2995 -1.87203,0.1907 -2.85262,-0.3367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path435"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.67074,140.4781 c 0.20057,0.3144 0.58193,0.2897 1.15641,-0.069 l 3.98673,-2.5183 c 0.61905,-0.3913 0.78248,-0.8148 0.49772,-1.2679 -0.28724,-0.4481 -0.58935,-0.5795 -0.90136,-0.3765 -0.099,0.058 -0.22286,0.156 -0.39866,0.312 -0.16343,0.1505 -0.2922,0.2626 -0.38878,0.3221 -0.82209,0.515 -1.45602,0.4333 -1.89182,-0.2626 -0.20058,-0.3269 -0.2625,-0.6413 -0.16845,-0.9632 0.0916,-0.3146 0.31694,-0.5844 0.66609,-0.8049 0.11645,-0.076 0.34915,-0.1881 0.68344,-0.3539 0.2625,-0.1282 0.49526,-0.2502 0.69583,-0.3789 0.11143,-0.067 0.32686,-0.2303 0.63887,-0.4879 0.21296,-0.1708 0.39372,-0.3021 0.53239,-0.3913 0.41105,-0.2526 0.74287,-0.1801 1.00039,0.2279 0.13613,0.2178 0.29467,0.5001 0.468,0.8344 0.40611,0.785 1.02269,1.8548 1.86956,3.1869 0.8543,1.3472 1.55013,2.3748 2.085,3.0731 0.2278,0.3096 0.416,0.5622 0.54229,0.7676 0.26248,0.4234 0.19562,0.7603 -0.21296,1.0153 -0.13613,0.087 -0.36154,0.1981 -0.65373,0.3441 -0.29218,0.1319 -0.50268,0.2502 -0.63886,0.3369 -0.15099,0.097 -0.36648,0.2476 -0.64877,0.4606 -0.35906,0.2823 -0.56954,0.4431 -0.61907,0.4802 -0.35162,0.2181 -0.69581,0.3022 -1.01773,0.2428 -0.32437,-0.065 -0.58438,-0.2526 -0.78495,-0.567 -0.43087,-0.6909 -0.26001,-1.2902 0.5398,-1.7929 0.10902,-0.069 0.26497,-0.1467 0.46554,-0.2402 0.20553,-0.087 0.35411,-0.1653 0.44572,-0.2178 0.33429,-0.2154 0.3764,-0.52 0.11645,-0.9312 -0.16845,-0.2574 -0.35658,-0.4036 -0.56705,-0.4283 -0.20554,-0.02 -0.4804,0.074 -0.82459,0.2847 l -3.98673,2.5184 c -0.56458,0.359 -0.7602,0.6933 -0.56211,1.0127 0.0693,0.1021 0.17828,0.2477 0.32935,0.421 0.16343,0.1839 0.2699,0.3194 0.33429,0.4184 0.35409,0.5524 0.24514,1.0055 -0.30458,1.3547 -0.72801,0.4605 -1.31488,0.3465 -1.7507,-0.3492 -0.16585,-0.2674 -0.34915,-0.5943 -0.54725,-0.9856 -0.29715,-0.5893 -0.56458,-1.0846 -0.81716,-1.4733 -0.26,-0.4136 -0.58191,-0.8742 -0.98306,-1.3843 -0.26496,-0.3343 -0.49029,-0.6413 -0.66115,-0.9186 -0.43333,-0.6935 -0.32439,-1.2506 0.35411,-1.674 0.61162,-0.3837 1.08953,-0.2972 1.44859,0.265 0.0644,0.1021 0.13873,0.2576 0.24019,0.4778 0.0916,0.2229 0.16845,0.3839 0.23276,0.4805" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path439"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 120.28708,148.0106 c -0.29715,-0.3814 -0.70077,-0.5423 -1.20592,-0.4903 -0.50019,0.043 -1.03505,0.2922 -1.60459,0.7552 -0.58191,0.468 -0.94098,0.9336 -1.08955,1.4188 -0.14858,0.4755 -0.0645,0.9063 0.25506,1.2976 0.63391,0.8023 1.56746,0.6909 2.78823,-0.2847 1.22821,-0.993 1.5105,-1.8943 0.85677,-2.6966 m -5.19512,4.2814 c -0.8543,-1.0573 -1.21335,-2.1098 -1.08459,-3.1697 0.13613,-1.0498 0.7404,-2.0105 1.82499,-2.8847 1.0722,-0.8617 2.13697,-1.2579 3.19184,-1.1687 1.06231,0.087 2.00081,0.6412 2.83776,1.6788 0.81716,1.0103 1.15394,2.0454 1.03259,3.1052 -0.12127,1.0573 -0.70572,2.0058 -1.74574,2.8501 -1.08459,0.8765 -2.16918,1.2827 -3.24138,1.2134 -1.06477,-0.069 -2.00328,-0.6165 -2.81547,-1.6244" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path443"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 126.86025,153.4182 -0.55222,0.5669 c 1.28766,-0.117 2.31282,0.1932 3.07054,0.9411 0.81467,0.7924 1.08459,1.659 0.82706,2.595 -0.12871,0.4903 -0.52248,1.0649 -1.17869,1.7409 l -1.72346,1.7532 c -0.38133,0.3961 -0.50515,0.676 -0.34419,0.8246 0.0371,0.044 0.11644,0.082 0.21543,0.1244 0.0719,0.019 0.13372,0.067 0.21543,0.1467 0.33925,0.3343 0.31201,0.7033 -0.0916,1.1167 -0.54476,0.5524 -1.04248,0.5969 -1.51298,0.1319 -0.11886,-0.1207 -0.29466,-0.3194 -0.51009,-0.5967 -0.22286,-0.2725 -0.39621,-0.473 -0.51507,-0.5943 -0.20057,-0.1907 -0.42343,-0.3789 -0.67105,-0.5646 -0.24515,-0.1857 -0.44325,-0.3369 -0.5844,-0.4754 -0.468,-0.4532 -0.46304,-0.9188 0.009,-1.3942 0.40611,-0.4136 0.78001,-0.4704 1.12422,-0.1839 0.22533,0.1884 0.43086,0.1958 0.60666,0.019 l 1.6046,-1.6367 c 0.44325,-0.4556 0.69336,-0.8246 0.75526,-1.1268 0.0719,-0.2945 -0.047,-0.5868 -0.32191,-0.8543 -0.31943,-0.3168 -0.69335,-0.4654 -1.1143,-0.4481 -0.42096,0.019 -0.79487,0.1907 -1.12422,0.5274 l -1.19106,1.2133 c -0.34419,0.3542 -0.54476,0.5821 -0.58191,0.6835 -0.0446,0.1114 0,0.2477 0.1313,0.4111 0.23276,0.3169 0.16845,0.6586 -0.20306,1.0449 -0.48533,0.4903 -0.93601,0.5375 -1.34706,0.1337 -0.11886,-0.1188 -0.25258,-0.2797 -0.40115,-0.463 -0.24268,-0.3218 -0.43829,-0.5521 -0.57697,-0.6933 -0.14356,-0.1355 -0.37143,-0.322 -0.67848,-0.5597 -0.30954,-0.2426 -0.52991,-0.4259 -0.66858,-0.572 -0.49525,-0.4755 -0.48534,-0.9806 0.0273,-1.5055 0.43086,-0.4358 0.83448,-0.468 1.20345,-0.1021 0.0618,0.059 0.12127,0.1411 0.17828,0.2476 0.052,0.104 0.0867,0.1764 0.13131,0.2106 0.1313,0.1281 0.41104,-0.024 0.84191,-0.4582 l 1.8547,-1.8967 c 0.43334,-0.4483 0.59183,-0.7355 0.45562,-0.8668 -0.0273,-0.03 -0.10641,-0.076 -0.22286,-0.1393 -0.11143,-0.058 -0.19562,-0.1095 -0.23772,-0.1578 -0.37143,-0.369 -0.35657,-0.7602 0.0693,-1.1936 0.22782,-0.2351 0.47544,-0.3614 0.7503,-0.3813 0.27239,-0.02 0.5225,0.065 0.72059,0.2749 0.0719,0.054 0.1833,0.213 0.34914,0.4481 0.0867,0.1411 0.18071,0.2526 0.26744,0.3319 0.0942,0.097 0.27239,0.2401 0.52992,0.4258 0.25505,0.1958 0.39866,0.2998 0.41848,0.3245 0.2179,0.1981 0.21047,0.4184 -0.006,0.6314" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path447"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 133.98757,162.444 -1.24059,3.4865 2.92938,-2.0254 c 0.23029,-0.1505 0.37639,-0.2823 0.45563,-0.3889 0.0817,-0.099 0.0618,-0.2179 -0.0347,-0.3813 l -0.16344,-0.2576 c -0.1313,-0.2179 -0.0841,-0.4654 0.14115,-0.7626 0.16584,-0.218 0.36152,-0.3517 0.60172,-0.4011 0.23276,-0.046 0.44572,0 0.63887,0.1467 0.12387,0.098 0.31695,0.2674 0.55962,0.5027 0.24268,0.2378 0.4284,0.4062 0.55962,0.515 0.13874,0.099 0.3665,0.2378 0.66859,0.416 0.3021,0.1728 0.52743,0.3146 0.66115,0.4235 0.52744,0.3963 0.57944,0.8816 0.14616,1.4437 -0.156,0.203 -0.34419,0.3293 -0.57695,0.3962 -0.23029,0.059 -0.42839,0.035 -0.5943,-0.097 -0.0421,-0.024 -0.0867,-0.074 -0.15358,-0.1579 -0.0719,-0.08 -0.12388,-0.1318 -0.16102,-0.1578 -0.15842,-0.1244 -0.38135,-0.084 -0.68097,0.1058 l -0.51011,0.3269 -3.34291,2.08 c -1.03259,0.6488 -1.71603,1.0499 -2.05526,1.2157 -0.33925,0.1653 -0.75278,0.3146 -1.25545,0.4484 -1.36194,0.359 -2.553,0.1467 -3.55834,-0.6092 -0.61907,-0.4706 -1.01773,-1.0079 -1.19602,-1.6096 -0.17587,-0.5993 -0.0891,-1.1217 0.26248,-1.5873 0.24267,-0.3269 0.54476,-0.5052 0.90383,-0.562 0.35904,-0.046 0.69333,0.045 1.00534,0.2847 0.27239,0.2056 0.42839,0.4507 0.46801,0.7304 0.047,0.2873 -0.0297,0.5572 -0.21544,0.8172 -0.0767,0.091 -0.15098,0.1883 -0.22286,0.2849 0.0719,0.1318 0.16343,0.2451 0.26744,0.3168 0.23524,0.1764 0.55715,0.2032 0.97562,0.084 0.41354,-0.117 0.69336,-0.2725 0.83945,-0.4632 0.13613,-0.1783 0.31696,-0.7328 0.55221,-1.659 l 1.14649,-4.5538 c 0.0719,-0.317 0.0644,-0.5224 -0.0396,-0.5993 -0.009,0 -0.0767,-0.058 -0.19811,-0.1486 -0.009,0 -0.0199,-0.019 -0.047,-0.039 -0.0273,-0.02 -0.057,-0.039 -0.0693,-0.05 -0.44573,-0.3317 -0.47791,-0.7477 -0.10401,-1.2406 0.18331,-0.2452 0.41354,-0.3887 0.69336,-0.4407 0.27486,-0.058 0.52991,0 0.76267,0.1764 0.13371,0.1022 0.32686,0.2797 0.57943,0.515 0.24764,0.2427 0.44079,0.421 0.57697,0.525 0.16845,0.1263 0.46058,0.3195 0.87659,0.5819 0.416,0.2624 0.64382,0.4035 0.66611,0.416 0.47791,0.369 0.52744,0.8023 0.14616,1.3098 -0.2699,0.3518 -0.60668,0.4261 -1.02269,0.208 -0.20304,-0.1114 -0.35409,-0.1021 -0.45315,0.03 -0.0496,0.072 -0.11644,0.2005 -0.18819,0.4061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path451"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 141.84341,163.3717 c 0.24762,-0.3963 0.57944,-0.6564 1.00288,-0.7752 0.416,-0.1114 0.81962,-0.052 1.19106,0.1708 0.45315,0.2799 0.71564,0.7084 0.78497,1.2754 0.0793,0.5744 -0.052,1.1291 -0.38876,1.6789 -0.6884,1.1291 -1.90671,2.0057 -3.65492,2.6199 -0.42343,0.156 -0.73793,0.1653 -0.94344,0.037 -0.34421,-0.2106 -0.39868,-0.4977 -0.16343,-0.8816 0.14114,-0.2353 0.39619,-0.4383 0.76762,-0.6067 1.03259,-0.463 1.61203,-0.8122 1.7606,-1.0573 0.0793,-0.1282 0.0371,-0.2897 -0.14114,-0.4903 -0.56954,-0.6166 -0.64134,-1.2703 -0.21544,-1.971" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path455"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 148.35267,168.3357 c 0.7503,0.3813 1.2827,0.9039 1.59717,1.5699 0.24515,-0.3911 0.61164,-0.4704 1.10441,-0.2277 0.49525,0.2425 0.66115,0.5497 0.48533,0.9063 -0.057,0.1058 -0.14356,0.2377 -0.25504,0.3614 -0.12128,0.1616 -0.20801,0.3194 -0.29219,0.473 -0.0167,0.03 -0.047,0.1189 -0.104,0.2452 -0.0669,0.1262 -0.12128,0.2377 -0.17328,0.3393 l -0.0223,0.059 c -0.25753,0.5174 -0.64135,0.6463 -1.16383,0.3911 -0.37143,-0.1857 -0.60419,-0.5248 -0.69334,-1.035 -0.11143,-0.6116 -0.41353,-1.0326 -0.89144,-1.2727 -0.56954,-0.2775 -0.95087,-0.2255 -1.14402,0.1653 -0.10159,0.2056 -0.0793,0.3961 0.0644,0.5696 0.15099,0.1764 0.58191,0.5298 1.30497,1.0623 0.58935,0.4333 0.99544,0.8023 1.23812,1.1069 0.22782,0.2945 0.38876,0.624 0.44076,1.0002 0.0693,0.4656 -0.009,0.9411 -0.24515,1.4091 -0.364,0.7428 -0.9583,1.2207 -1.77792,1.4387 -0.81716,0.2128 -1.6566,0.1096 -2.51833,-0.317 -0.86173,-0.4234 -1.50555,-1.0896 -1.93642,-1.9784 -0.23772,0.4704 -0.59676,0.5892 -1.09202,0.3391 -0.52247,-0.255 -0.68591,-0.6066 -0.46551,-1.0326 0.0396,-0.091 0.1313,-0.2426 0.25257,-0.4431 0.12127,-0.1958 0.20305,-0.3444 0.25505,-0.4433 0.0396,-0.084 0.10158,-0.2205 0.17327,-0.4012 0.0719,-0.1881 0.1287,-0.317 0.17829,-0.411 0.21047,-0.4383 0.59676,-0.5274 1.14649,-0.2526 0.26743,0.1282 0.44078,0.2675 0.54229,0.4134 0.0966,0.1468 0.16585,0.3741 0.20554,0.6787 0.0719,0.4778 0.17327,0.8368 0.32439,1.0548 0.15359,0.2129 0.42837,0.4209 0.82209,0.6166 0.71069,0.3516 1.17127,0.3046 1.38917,-0.1337 0.14857,-0.3096 -0.0273,-0.6537 -0.53734,-1.0599 l -0.76515,-0.5943 c -0.62648,-0.4927 -1.04745,-0.8766 -1.26288,-1.1663 -0.21543,-0.2921 -0.32439,-0.6413 -0.33429,-1.0376 -0.009,-0.4036 0.0867,-0.8097 0.28972,-1.2157 0.35658,-0.7306 0.90134,-1.206 1.61449,-1.4337 0.70822,-0.2106 1.45852,-0.1319 2.24596,0.255" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path459"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 162.12424,170.8208 c 1.00534,0.2897 1.76803,0.9163 2.29298,1.8746 0.007,-0.037 0.0167,-0.089 0.0496,-0.1578 0.16845,-0.5893 0.57201,-0.7849 1.19851,-0.6018 0.29962,0.087 0.50762,0.2502 0.63391,0.4829 0.13873,0.2403 0.15099,0.5078 0.0693,0.8023 -0.0446,0.1356 -0.10901,0.3319 -0.21543,0.5895 -0.17587,0.4085 -0.28725,0.7155 -0.34172,0.9063 -0.0422,0.1337 -0.0841,0.3367 -0.1313,0.6165 -0.0371,0.2773 -0.0793,0.4877 -0.11645,0.6265 -0.0942,0.3244 -0.29467,0.5547 -0.58439,0.676 -0.29466,0.1318 -0.63391,0.143 -1.01525,0.032 -0.79735,-0.2378 -1.08954,-0.6785 -0.86915,-1.3346 l 0.14356,-0.4953 c 0.11384,-0.3417 0.0594,-0.671 -0.16845,-0.9856 -0.22039,-0.3094 -0.55964,-0.5349 -1.00536,-0.6636 -1.39411,-0.416 -2.41679,0.4977 -3.08538,2.7165 -0.32686,1.1613 -0.41104,2.0503 -0.22286,2.6818 0.18331,0.6338 0.6463,1.0548 1.3867,1.2727 0.46305,0.1411 0.87162,0.1411 1.23067,0 0.35411,-0.1282 0.57201,-0.3664 0.66858,-0.7108 l 0.16343,-0.5744 c 0.0841,-0.3293 0.2724,-0.5622 0.54973,-0.6959 0.26992,-0.1337 0.58935,-0.1504 0.92611,-0.046 0.4383,0.1244 0.74287,0.369 0.91126,0.7429 0.16845,0.3714 0.18071,0.8097 0.0371,1.3098 -0.29964,0.9955 -0.92612,1.6964 -1.91661,2.0975 -0.97811,0.4012 -2.08499,0.4086 -3.33301,0.047 -1.52784,-0.4482 -2.59014,-1.2902 -3.19433,-2.5308 -0.59677,-1.2332 -0.64134,-2.6966 -0.14858,-4.3803 0.51011,-1.7384 1.30498,-2.9914 2.397,-3.759 1.08706,-0.7677 2.32022,-0.9484 3.68957,-0.5449" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path463"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 170.72566,173.6494 -0.48287,2.9591 c 0.52744,-0.3269 0.95584,-0.5299 1.2926,-0.6116 0.33678,-0.084 0.73297,-0.089 1.19355,0 1.00287,0.1634 1.66649,0.5893 1.98346,1.2902 0.21296,0.468 0.24267,1.1563 0.0891,2.0774 l -0.46058,2.7858 c -0.0817,0.5399 -0.0223,0.8246 0.19315,0.8617 0.0891,0.019 0.16844,0 0.24514,-0.022 0.0669,-0.03 0.15359,-0.035 0.26001,-0.022 0.4779,0.08 0.66611,0.4038 0.57448,0.9583 -0.1287,0.7752 -0.50762,1.1069 -1.14153,0.9931 -0.1833,-0.02 -0.45315,-0.095 -0.79983,-0.1932 -0.34915,-0.098 -0.61905,-0.169 -0.8023,-0.2005 -0.17086,-0.022 -0.43333,-0.043 -0.77505,-0.052 -0.35164,-0.019 -0.61164,-0.039 -0.78002,-0.065 -0.27239,-0.043 -0.47792,-0.1653 -0.61411,-0.3813 -0.13371,-0.2104 -0.17587,-0.468 -0.1313,-0.7652 0.0942,-0.5547 0.34668,-0.8097 0.77012,-0.7726 0.1807,0.022 0.30457,-0.018 0.36151,-0.089 0.0644,-0.082 0.10159,-0.2229 0.13613,-0.4234 l 0.40858,-2.4714 c 0.14616,-0.8914 -0.12127,-1.3966 -0.80477,-1.5104 -0.92611,-0.1486 -1.49563,0.4136 -1.70364,1.6937 l -0.31943,1.9068 c -0.0297,0.2228 -0.0273,0.3762 0.007,0.4357 0.0396,0.072 0.16584,0.1411 0.37637,0.2031 0.32935,0.1133 0.45068,0.406 0.37887,0.8915 -0.11886,0.7156 -0.47791,1.0201 -1.07221,0.9211 -0.12387,-0.02 -0.3541,-0.082 -0.68591,-0.1782 -0.31943,-0.097 -0.62649,-0.169 -0.90383,-0.2205 -0.23029,-0.035 -0.47047,-0.059 -0.73544,-0.069 -0.44076,-0.019 -0.72305,-0.032 -0.83944,-0.05 -0.29219,-0.05 -0.51258,-0.1908 -0.66611,-0.4185 -0.14356,-0.2303 -0.19066,-0.4953 -0.14356,-0.8147 0.099,-0.6216 0.41354,-0.8816 0.93602,-0.7899 0.0668,0.019 0.15358,0.039 0.26249,0.1022 0.10641,0.061 0.19066,0.095 0.25504,0.104 0.18572,0.032 0.32687,-0.26 0.42097,-0.8642 l 0.88895,-5.3882 c 0.0916,-0.5993 0.0496,-0.9137 -0.12628,-0.9509 -0.0767,0 -0.17829,0 -0.30458,0.019 -0.0669,0.019 -0.15359,0 -0.26001,-0.019 -0.52,-0.082 -0.72801,-0.416 -0.63143,-1.0153 0.0496,-0.317 0.18571,-0.5595 0.39868,-0.733 0.21296,-0.169 0.47047,-0.2277 0.75772,-0.1801 0.13873,0.018 0.34172,0.067 0.61411,0.1467 0.26001,0.076 0.45562,0.1244 0.59677,0.1467 0.33182,0.061 0.62154,0.089 0.87163,0.091 0.24763,0.019 0.43335,0.022 0.56706,0.05 0.29219,0.046 0.40115,0.2576 0.34419,0.6365" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path467"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 181.27416,178.8503 c -0.48287,-0.028 -0.87659,0.169 -1.17869,0.567 -0.29962,0.4061 -0.46552,0.9731 -0.50515,1.7112 -0.0446,0.7477 0.0618,1.3395 0.32439,1.7704 0.2501,0.4234 0.63144,0.6537 1.13412,0.681 1.0202,0.054 1.57239,-0.7057 1.6566,-2.2757 0.0817,-1.5798 -0.39621,-2.3995 -1.43127,-2.4539 m -0.30211,6.7452 c -1.35202,-0.08 -2.37469,-0.515 -3.06805,-1.3247 -0.70323,-0.7975 -1.01277,-1.8969 -0.93352,-3.2736 0.0767,-1.3768 0.49523,-2.4417 1.27277,-3.1697 0.77259,-0.728 1.8225,-1.0548 3.13738,-0.9854 1.29755,0.069 2.30042,0.5052 3.00615,1.3123 0.70573,0.8049 1.02763,1.877 0.95087,3.2044 -0.0719,1.394 -0.49772,2.4737 -1.26288,3.219 -0.77011,0.7453 -1.80764,1.0846 -3.10272,1.0177" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path471"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 191.47004,179.6981 c -0.009,-0.1653 0.0371,-0.3317 0.13371,-0.5002 -0.26,-0.1652 -0.54478,-0.2401 -0.84936,-0.2303 -0.48037,0.021 -0.85924,0.2354 -1.14649,0.6514 -0.28229,0.4134 -0.40857,0.9532 -0.38382,1.6168 0.0273,0.6935 0.20554,1.2382 0.5423,1.6418 0.33429,0.4085 0.76268,0.5942 1.28269,0.5746 0.53487,-0.019 0.91869,-0.3269 1.14649,-0.9164 0.13372,-0.3664 0.26,-0.5991 0.364,-0.7057 0.14616,-0.1393 0.38383,-0.2128 0.71316,-0.2303 0.37639,-0.019 0.6785,0.089 0.92116,0.3072 0.23524,0.2104 0.35657,0.4903 0.37886,0.8419 0.0321,0.7428 -0.30705,1.4064 -1.00534,1.981 -0.70326,0.5794 -1.55507,0.8864 -2.5629,0.9286 -1.28763,0.045 -2.32518,-0.3096 -3.12252,-1.0673 -0.79487,-0.7628 -1.21831,-1.815 -1.27031,-3.1474 -0.0544,-1.3371 0.29219,-2.4241 1.04992,-3.2487 0.75277,-0.8172 1.80021,-1.2505 3.13491,-1.3025 0.96077,-0.039 1.76306,0.156 2.41185,0.5843 0.64134,0.421 0.98553,0.9906 1.0103,1.6889 0.0167,0.4357 -0.10901,0.7949 -0.38382,1.0746 -0.27486,0.2748 -0.63144,0.4284 -1.07469,0.4383 -0.37638,0.019 -0.67601,-0.065 -0.91867,-0.2452 -0.23772,-0.1838 -0.35658,-0.4282 -0.37143,-0.7354" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path475"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 199.38579,178.0658 c -0.47544,0.076 -0.8221,0.3393 -1.03259,0.7973 -0.21294,0.4531 -0.26247,1.0474 -0.15359,1.778 0.10902,0.7305 0.33923,1.2778 0.67601,1.6492 0.34419,0.364 0.76267,0.51 1.26288,0.4357 1.00039,-0.156 1.38917,-1.0103 1.15145,-2.5703 -0.24021,-1.5476 -0.87165,-2.2459 -1.90424,-2.0899 m 1.08955,6.6487 c -1.33963,0.1955 -2.43414,-0.019 -3.28101,-0.6588 -0.83944,-0.6463 -1.37678,-1.6566 -1.58725,-3.0258 -0.20306,-1.3571 -0.013,-2.4738 0.60419,-3.348 0.6042,-0.874 1.55507,-1.4064 2.86252,-1.612 1.29012,-0.1905 2.35985,0.024 3.22158,0.6712 0.84934,0.6363 1.38174,1.6219 1.58974,2.9367 0.208,1.3768 0.0199,2.5184 -0.5844,3.4074 -0.59676,0.8814 -1.54268,1.4311 -2.82537,1.6293" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path479"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 206.55498,171.9022 c 0.29714,-0.076 0.49276,0.076 0.59429,0.473 l 1.94385,7.5104 c 0.14114,0.5323 0.31447,0.7652 0.52495,0.7082 0.0867,-0.02 0.15358,-0.058 0.208,-0.1114 0.0594,-0.05 0.13613,-0.095 0.24268,-0.1189 0.46553,-0.1189 0.77258,0.098 0.91126,0.6636 0.19561,0.7354 -0.0247,1.1886 -0.66116,1.3546 -0.0149,0 -0.42343,0.074 -1.23069,0.2178 -0.25258,0.035 -0.51258,0.091 -0.78991,0.1635 -0.23029,0.065 -0.47297,0.1411 -0.73297,0.2451 -0.42591,0.1653 -0.69583,0.2699 -0.81469,0.2972 -0.28972,0.08 -0.54229,0.035 -0.77752,-0.1133 -0.23029,-0.1412 -0.38878,-0.3839 -0.47297,-0.6983 -0.15099,-0.5895 0.0396,-0.9535 0.5522,-1.0872 0.0644,-0.022 0.156,-0.024 0.27486,-0.019 0.11886,0 0.21543,0 0.27735,-0.019 0.1807,-0.043 0.19561,-0.3688 0.0396,-0.9583 l -1.36934,-5.2842 c -0.14858,-0.5893 -0.31201,-0.8617 -0.49526,-0.8121 -0.0793,0.019 -0.16844,0.058 -0.27239,0.1337 -0.0594,0.035 -0.13613,0.069 -0.24761,0.089 -0.51258,0.1356 -0.83449,-0.084 -0.98306,-0.6611 -0.0841,-0.3295 -0.0693,-0.6092 0.0644,-0.8469 0.13613,-0.2329 0.34915,-0.3937 0.65622,-0.4706 0.0867,-0.028 0.2699,-0.058 0.55219,-0.095 0.3739,-0.058 0.65125,-0.098 0.82458,-0.1504 0.24515,-0.069 0.45068,-0.1393 0.62154,-0.2203 0.23523,-0.097 0.41848,-0.1578 0.55962,-0.1981" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path483"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.2979,174.1836 c -0.44325,0.169 -0.72801,0.5027 -0.8444,0.993 -0.11143,0.4927 -0.0396,1.0796 0.22039,1.768 0.25753,0.6883 0.59677,1.1836 1.0004,1.4808 0.40362,0.2921 0.84687,0.3417 1.31239,0.1615 0.95088,-0.3417 1.15394,-1.2628 0.59926,-2.7363 -0.5522,-1.4757 -1.31735,-2.0281 -2.28804,-1.6665 m 2.42422,6.2823 c -1.26039,0.4829 -2.37718,0.4877 -3.33299,0.03 -0.96079,-0.4582 -1.68384,-1.3347 -2.16918,-2.6348 -0.47792,-1.2926 -0.52001,-2.4167 -0.104,-3.3925 0.41352,-0.9806 1.24059,-1.7011 2.48118,-2.1641 1.21335,-0.4582 2.31033,-0.4582 3.2711,0 0.9682,0.4507 1.68878,1.3024 2.15432,2.5456 0.49276,1.3149 0.53733,2.4613 0.13371,3.4543 -0.4061,0.9881 -1.21334,1.7135 -2.43414,2.1692" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path487"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 221.3814,169.6237 0.37886,0.6882 c 0.26249,-1.2703 0.87165,-2.1517 1.8027,-2.6619 0.99792,-0.5398 1.90918,-0.5547 2.7288,-0.022 0.43335,0.26 0.87165,0.8121 1.31984,1.6343 l 1.1762,2.1543 c 0.25754,0.5001 0.4903,0.6909 0.6785,0.5869 0.047,-0.024 0.10902,-0.087 0.1807,-0.1802 0.0347,-0.058 0.0942,-0.104 0.19068,-0.1616 0.41601,-0.2278 0.76516,-0.082 1.04745,0.4235 0.364,0.6784 0.25504,1.1687 -0.3244,1.4857 -0.15359,0.08 -0.38629,0.1881 -0.72058,0.3144 -0.32686,0.1356 -0.56705,0.2353 -0.72058,0.3221 -0.24268,0.1281 -0.48287,0.2871 -0.73048,0.468 -0.25507,0.1838 -0.46058,0.3242 -0.6364,0.4184 -0.56705,0.3096 -1.00535,0.169 -1.32478,-0.411 -0.27486,-0.5152 -0.21792,-0.8816 0.156,-1.1342 0.25009,-0.1578 0.31695,-0.3541 0.19809,-0.572 l -1.09696,-2.0256 c -0.29963,-0.5521 -0.59429,-0.9111 -0.8543,-1.0573 -0.26743,-0.1504 -0.57201,-0.1281 -0.92115,0.059 -0.39373,0.2131 -0.64383,0.52 -0.75279,0.9286 -0.10902,0.411 -0.052,0.8222 0.17327,1.2332 l 0.81716,1.5056 c 0.23523,0.4309 0.39619,0.6808 0.48533,0.7453 0.0892,0.082 0.23276,0.082 0.42591,0 0.37886,-0.1319 0.69336,0.032 0.94097,0.5075 0.33182,0.5969 0.24019,1.0376 -0.26743,1.3199 -0.14857,0.08 -0.32686,0.1579 -0.55715,0.2452 -0.37391,0.1467 -0.65373,0.2724 -0.82954,0.3616 -0.16845,0.095 -0.41848,0.255 -0.73545,0.4728 -0.32437,0.2255 -0.572,0.3839 -0.74533,0.4754 -0.6042,0.3343 -1.07963,0.1709 -1.43621,-0.4704 -0.28725,-0.5473 -0.20553,-0.9336 0.25504,-1.1886 0.0767,-0.043 0.17086,-0.069 0.28972,-0.083 0.11385,-0.019 0.19315,-0.035 0.24515,-0.065 0.16102,-0.084 0.0966,-0.3962 -0.19562,-0.9411 l -1.26783,-2.33 c -0.29468,-0.5473 -0.52248,-0.7776 -0.6884,-0.6908 -0.0371,0.024 -0.104,0.076 -0.19809,0.1782 -0.0841,0.089 -0.16343,0.1542 -0.22039,0.1783 -0.46058,0.25 -0.83697,0.1096 -1.12173,-0.4111 -0.156,-0.2946 -0.21296,-0.5745 -0.14616,-0.8443 0.057,-0.26 0.22039,-0.468 0.47793,-0.6142 0.0767,-0.037 0.25257,-0.1058 0.52743,-0.1881 0.15842,-0.05 0.29466,-0.098 0.40362,-0.1616 0.11143,-0.054 0.29962,-0.1931 0.55468,-0.3789 0.26001,-0.1955 0.39866,-0.2971 0.42838,-0.312 0.26249,-0.1411 0.46554,-0.072 0.60915,0.1982" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path491"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 231.34674,166.0987 c 0.0396,0.058 0.0817,0.087 0.13874,0.099 0.052,0.022 0.15841,-0.028 0.31694,-0.1486 l 1.48327,-1.0822 c 0.13371,-0.097 0.20553,-0.1708 0.21296,-0.2228 0.009,-0.06 -0.013,-0.1208 -0.0743,-0.203 -0.17086,-0.2303 -0.42096,-0.3542 -0.74782,-0.3813 -0.32934,-0.022 -0.62897,0.067 -0.90135,0.2698 -0.35657,0.255 -0.53982,0.6042 -0.56211,1.0376 -0.009,0.2797 0.0372,0.4903 0.13372,0.6315 m 4.69493,-2.4194 c 0.26991,0.3715 0.40611,0.6514 0.39868,0.8445 0,0.1881 -0.13371,0.3887 -0.40858,0.5843 l -3.22901,2.3673 c -0.15841,0.1133 -0.24761,0.203 -0.26496,0.26 -0.0149,0.061 0.0167,0.156 0.10902,0.2749 0.2699,0.369 0.61658,0.5919 1.03011,0.6635 0.42095,0.074 0.81467,-0.02 1.17125,-0.2871 0.37392,-0.2674 0.60668,-0.7503 0.69087,-1.4363 0.057,-0.4829 0.2501,-0.8294 0.56458,-1.0647 0.26743,-0.1932 0.53735,-0.2773 0.80725,-0.2452 0.27734,0.03 0.49773,0.1579 0.65869,0.3913 0.36894,0.51 0.41105,1.1465 0.11384,1.9166 -0.29714,0.7626 -0.84687,1.4362 -1.65164,2.0305 -1.04744,0.7701 -2.1147,1.0623 -3.20672,0.884 -1.09698,-0.1783 -2.0305,-0.7925 -2.79319,-1.8498 -0.78497,-1.0623 -1.10191,-2.1593 -0.96573,-3.2662 0.14115,-1.1143 0.71316,-2.0378 1.72593,-2.7709 0.93354,-0.6834 1.87203,-0.9657 2.83282,-0.8394 0.94838,0.1319 1.75564,0.6489 2.41679,1.5427" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path495"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 235.24657,155.9961 c 0.23028,-0.203 0.4779,-0.1579 0.7478,0.143 l 5.19266,5.7721 c 0.364,0.411 0.6265,0.5323 0.78744,0.3911 0.0719,-0.059 0.11644,-0.1244 0.14356,-0.1931 0.0199,-0.072 0.0743,-0.1468 0.156,-0.2129 0.35409,-0.3244 0.72553,-0.2724 1.10935,0.1542 0.51258,0.5672 0.52248,1.0797 0.0371,1.5106 -0.009,0 -0.33925,0.2674 -0.99049,0.7652 -0.20057,0.1485 -0.40857,0.3242 -0.61658,0.515 -0.17587,0.156 -0.3541,0.3393 -0.54478,0.5497 -0.30209,0.3417 -0.49772,0.5571 -0.58438,0.6388 -0.22039,0.1956 -0.46554,0.2823 -0.7404,0.2576 -0.27239,-0.024 -0.51753,-0.1634 -0.73791,-0.4085 -0.41106,-0.4508 -0.41353,-0.8594 -0.0149,-1.2159 0.047,-0.043 0.1287,-0.095 0.23771,-0.1393 0.11143,-0.052 0.19066,-0.095 0.23772,-0.1412 0.13873,-0.1244 0,-0.411 -0.40858,-0.8691 l -3.64748,-4.0535 c -0.40611,-0.4531 -0.6785,-0.6166 -0.81716,-0.4929 -0.0544,0.046 -0.11886,0.1244 -0.1807,0.2377 -0.0347,0.06 -0.0916,0.1245 -0.17086,0.2032 -0.38629,0.3466 -0.79238,0.302 -1.19106,-0.1486 -0.22039,-0.2525 -0.32933,-0.5101 -0.31944,-0.7776 0.006,-0.2724 0.12128,-0.5101 0.35411,-0.7256 0.0669,-0.058 0.2179,-0.1634 0.45809,-0.3343 0.29468,-0.208 0.51754,-0.3862 0.65621,-0.5099 0.18331,-0.1635 0.3343,-0.3269 0.44573,-0.4879 0.16343,-0.1881 0.29961,-0.3319 0.40115,-0.4285" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path499"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 243.38419,155.2945 3.3652,1.5277 -1.7705,-3.0779 c -0.13873,-0.2377 -0.25257,-0.4086 -0.34915,-0.4927 -0.0891,-0.08 -0.21792,-0.08 -0.38878,0.018 l -0.27733,0.1393 c -0.21543,0.1133 -0.46305,0.043 -0.74534,-0.2054 -0.20057,-0.1857 -0.312,-0.3987 -0.34421,-0.634 -0.0247,-0.2351 0.0371,-0.4383 0.20058,-0.619 0.10902,-0.1207 0.28725,-0.2947 0.54229,-0.52 0.26744,-0.2279 0.45068,-0.3988 0.55964,-0.525 0.11385,-0.1263 0.27238,-0.3343 0.47295,-0.6215 0.20306,-0.2897 0.3665,-0.5027 0.48535,-0.6266 0.43334,-0.4903 0.91867,-0.5051 1.44611,-0.03 0.1833,0.1709 0.29468,0.3765 0.34172,0.6118 0.047,0.2401 0,0.4357 -0.14114,0.5818 -0.0273,0.037 -0.0867,0.084 -0.16585,0.1467 -0.0916,0.061 -0.14857,0.104 -0.1807,0.1412 -0.1313,0.1504 -0.10902,0.3763 0.0496,0.6909 l 0.28725,0.5322 1.79279,3.504 c 0.54972,1.0821 0.89887,1.8027 1.0425,2.1567 0.14356,0.3491 0.25009,0.7776 0.33676,1.2851 0.24268,1.3818 -0.0669,2.5481 -0.9063,3.4965 -0.52248,0.5819 -1.08954,0.9286 -1.70117,1.0549 -0.60419,0.1282 -1.13163,0 -1.56002,-0.3887 -0.30211,-0.27 -0.46801,-0.5943 -0.48287,-0.9509 -0.0223,-0.364 0.10159,-0.6908 0.36154,-0.9831 0.23029,-0.2526 0.48286,-0.3837 0.76762,-0.4086 0.28972,-0.019 0.55469,0.08 0.7924,0.2947 0.0867,0.074 0.17829,0.1616 0.26744,0.2401 0.14356,-0.065 0.25257,-0.143 0.34172,-0.2401 0.19314,-0.2154 0.24761,-0.5373 0.16343,-0.9657 -0.0841,-0.4259 -0.21543,-0.7206 -0.39372,-0.879 -0.15842,-0.1467 -0.69087,-0.3789 -1.59717,-0.6786 l -4.44732,-1.5253 c -0.312,-0.1059 -0.50515,-0.1133 -0.59925,-0.019 -0.007,0 -0.0644,0.065 -0.15842,0.1839 -0.006,0 -0.0273,0.02 -0.0496,0.046 -0.0223,0.024 -0.0422,0.043 -0.052,0.058 -0.37391,0.4184 -0.78745,0.4184 -1.24307,0 -0.23029,-0.1958 -0.35904,-0.4359 -0.38876,-0.7232 -0.0297,-0.2847 0.0544,-0.5323 0.24515,-0.7453 0.11886,-0.1263 0.29715,-0.3046 0.56458,-0.5349 0.26247,-0.2252 0.45315,-0.411 0.56458,-0.5348 0.13873,-0.1579 0.35905,-0.4333 0.65124,-0.827 0.29714,-0.3938 0.46306,-0.6018 0.48286,-0.6291 0.40115,-0.4433 0.83697,-0.4531 1.30745,-0.035 0.33429,0.2947 0.37143,0.6463 0.12127,1.04 -0.12628,0.1957 -0.13371,0.3393 -0.007,0.4531 0.0669,0.054 0.20058,0.1356 0.3962,0.2155" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 105 KiB |
BIN
static/img/partenaires/trci.jpg
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
21
static/js/all.js
Normal file
@@ -0,0 +1,21 @@
|
||||
document.currentScript.insertAdjacentHTML('afterend', Array.from({ length: 48 }, (_, i) => {
|
||||
const greens = ['rgba(25,112,97,.8)', 'rgba(34,145,120,.6)', 'rgba(16,80,65,.9)', 'rgba(45,160,130,.5)'];
|
||||
return `<div class="dm-cell" style="background:${greens[i % 4]}"></div>`;
|
||||
}).join(''));
|
||||
|
||||
/* FAQ toggle */
|
||||
function toggleFaq(btn) {
|
||||
btn.parentElement.classList.toggle('open');
|
||||
}
|
||||
|
||||
/* Scroll reveal */
|
||||
const revealEls = document.querySelectorAll('.reveal');
|
||||
const io = new IntersectionObserver((entries) => {
|
||||
entries.forEach(e => {
|
||||
if (e.isIntersecting) {
|
||||
e.target.classList.add('visible');
|
||||
io.unobserve(e.target);
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.12 });
|
||||
revealEls.forEach(el => io.observe(el));
|
||||
3
static/js/faq_toggle.js
Normal file
@@ -0,0 +1,3 @@
|
||||
function toggleFaq(btn) {
|
||||
btn.parentElement.classList.toggle('open');
|
||||
}
|
||||
20
static/js/hamburger.js
Normal file
@@ -0,0 +1,20 @@
|
||||
(function () {
|
||||
var btn = document.getElementById('nav-hamburger');
|
||||
var drawer = document.getElementById('nav-drawer');
|
||||
if (!btn || !drawer) return;
|
||||
|
||||
btn.addEventListener('click', function () {
|
||||
var isOpen = drawer.classList.toggle('open');
|
||||
btn.classList.toggle('open', isOpen);
|
||||
btn.setAttribute('aria-expanded', String(isOpen));
|
||||
});
|
||||
|
||||
// Ferme le drawer quand on clique sur un lien
|
||||
drawer.querySelectorAll('a').forEach(function (a) {
|
||||
a.addEventListener('click', function () {
|
||||
drawer.classList.remove('open');
|
||||
btn.classList.remove('open');
|
||||
btn.setAttribute('aria-expanded', 'false');
|
||||
});
|
||||
});
|
||||
})();
|
||||
10
static/js/scroll_reveal.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const revealEls = document.querySelectorAll('.reveal');
|
||||
const io = new IntersectionObserver((entries) => {
|
||||
entries.forEach(e => {
|
||||
if (e.isIntersecting) {
|
||||
e.target.classList.add('visible');
|
||||
io.unobserve(e.target);
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.12 });
|
||||
revealEls.forEach(el => io.observe(el));
|
||||
86
templates/base.html
Normal file
@@ -0,0 +1,86 @@
|
||||
{% load static %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<!-- ── Titre ── -->
|
||||
<title>{% block title %}Jool International — AgriTech Intelligence pour l'Afrique{% endblock %}</title>
|
||||
|
||||
<!-- ── Meta description ── -->
|
||||
<meta name="description" content="{% block meta_description %}Jool International développe des solutions AgriTech pour l'agriculture africaine : analyse satellitaire IA, cartographie drone et digitalisation des producteurs.{% endblock %}">
|
||||
<meta name="robots" content="{% block meta_robots %}index, follow{% endblock %}">
|
||||
<link rel="canonical" href="{% block canonical %}https://jool-int.com{{ request.path }}{% endblock %}">
|
||||
|
||||
<!-- ── Open Graph (partage réseaux sociaux) ── -->
|
||||
<meta property="og:type" content="{% block og_type %}website{% endblock %}">
|
||||
<meta property="og:site_name" content="Jool International">
|
||||
<meta property="og:title" content="{% block og_title %}{% block title_plain %}Jool International — AgriTech Intelligence pour l'Afrique{% endblock %}{% endblock %}">
|
||||
<meta property="og:description" content="{% block og_description %}Jool International développe des solutions AgriTech pour l'agriculture africaine : analyse satellitaire IA, cartographie drone et digitalisation des producteurs.{% endblock %}">
|
||||
<meta property="og:url" content="https://jool-int.com{{ request.path }}">
|
||||
<meta property="og:image" content="{% block og_image %}{% static 'img/og-cover.jpg' %}{% endblock %}">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
|
||||
<!-- ── Twitter / X card ── -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="{% block twitter_title %}Jool International — AgriTech Intelligence pour l'Afrique{% endblock %}">
|
||||
<meta name="twitter:description" content="{% block twitter_description %}Solutions AgriTech pour l'agriculture africaine : satellite, drone, digitalisation.{% endblock %}">
|
||||
<meta name="twitter:image" content="{% block twitter_image %}{% static 'img/og-cover.jpg' %}{% endblock %}">
|
||||
|
||||
<!-- ── Schema.org JSON-LD ── -->
|
||||
{% block schema_org %}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "Jool International",
|
||||
"url": "https://jool-int.com",
|
||||
"logo": "https://jool-int.com{% static 'img/logo.png' %}",
|
||||
"description": "Solutions AgriTech pour l'agriculture africaine : analyse satellitaire IA, cartographie drone et digitalisation des producteurs.",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"addressLocality": "Abidjan",
|
||||
"addressCountry": "CI"
|
||||
},
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
"email": "info@jool-int.com",
|
||||
"telephone": "+22527225578825",
|
||||
"contactType": "customer service"
|
||||
},
|
||||
"sameAs": [
|
||||
"https://www.linkedin.com/company/jool-international/"
|
||||
]
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
<!-- ── Favicon ── -->
|
||||
<link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'img/favicon-32x32.png' %}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'img/favicon-16x16.png' %}">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/apple-touch-icon.png' %}">
|
||||
|
||||
<!-- ── Fonts & styles ── -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
|
||||
<link rel="stylesheet" href="{% static 'css/home.css' %}">
|
||||
{% block extra_css %}{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
{% include "core/partials/_nav.html" %}
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
{% include "core/partials/_footer.html" %}
|
||||
|
||||
<script src="{% static 'js/faq_toggle.js' %}"></script>
|
||||
<script src="{% static 'js/scroll_reveal.js' %}"></script>
|
||||
<script src="{% static 'js/hamburger.js' %}"></script>
|
||||
{% block extra_js %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
90
templates/careers/apply.html
Normal file
@@ -0,0 +1,90 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}Postuler — {{ job.title }} — Jool International{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<link rel="stylesheet" href="{% static 'css/careers.css' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="apply-wrapper">
|
||||
<a href="{{ job.get_absolute_url }}" class="apply-job-ref">
|
||||
<span class="material-icons-round">arrow_back</span> {{ job.title }}
|
||||
</a>
|
||||
<h1 class="apply-title">Votre candidature</h1>
|
||||
<p class="apply-subtitle">Complétez le formulaire ci-dessous. Tous les champs marqués d'un * sont obligatoires.</p>
|
||||
|
||||
<form method="post" enctype="multipart/form-data" novalidate>
|
||||
{% csrf_token %}
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group">
|
||||
<label class="form-label required" for="{{ form.first_name.id_for_label }}">{{ form.first_name.label }}</label>
|
||||
{{ form.first_name }}
|
||||
{% if form.first_name.errors %}
|
||||
{% for error in form.first_name.errors %}<p class="form-error">{{ error }}</p>{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label required" for="{{ form.last_name.id_for_label }}">{{ form.last_name.label }}</label>
|
||||
{{ form.last_name }}
|
||||
{% if form.last_name.errors %}
|
||||
{% for error in form.last_name.errors %}<p class="form-error">{{ error }}</p>{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group">
|
||||
<label class="form-label required" for="{{ form.email.id_for_label }}">{{ form.email.label }}</label>
|
||||
{{ form.email }}
|
||||
{% if form.email.errors %}
|
||||
{% for error in form.email.errors %}<p class="form-error">{{ error }}</p>{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="{{ form.phone.id_for_label }}">{{ form.phone.label }}</label>
|
||||
{{ form.phone }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="{{ form.linkedin_url.id_for_label }}">{{ form.linkedin_url.label }}</label>
|
||||
{{ form.linkedin_url }}
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label required" for="{{ form.cover_letter.id_for_label }}">{{ form.cover_letter.label }}</label>
|
||||
{{ form.cover_letter }}
|
||||
{% if form.cover_letter.errors %}
|
||||
{% for error in form.cover_letter.errors %}<p class="form-error">{{ error }}</p>{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label required" for="{{ form.cv_file.id_for_label }}">{{ form.cv_file.label }}</label>
|
||||
{{ form.cv_file }}
|
||||
<p class="form-help">{{ form.cv_file.help_text }}</p>
|
||||
{% if form.cv_file.errors %}
|
||||
{% for error in form.cv_file.errors %}<p class="form-error">{{ error }}</p>{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="{{ form.portfolio_url.id_for_label }}">{{ form.portfolio_url.label }}</label>
|
||||
{{ form.portfolio_url }}
|
||||
</div>
|
||||
|
||||
{% if form.non_field_errors %}
|
||||
<div style="background:#fff3cd;border:1px solid #ffc107;color:#856404;padding:14px 18px;border-radius:12px;margin-bottom:20px;">
|
||||
{% for error in form.non_field_errors %}<p>{{ error }}</p>{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<button type="submit" class="btn-submit">
|
||||
<span class="material-icons-round">send</span> Envoyer ma candidature
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
22
templates/careers/apply_success.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}Candidature envoyée — Jool International{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<link rel="stylesheet" href="{% static 'css/careers.css' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="success-wrapper">
|
||||
<div class="success-icon">
|
||||
<span class="material-icons-round">check_circle</span>
|
||||
</div>
|
||||
<h1 class="success-title">Candidature reçue !</h1>
|
||||
<p class="success-body">
|
||||
Merci pour votre intérêt pour le poste de <strong>{{ job.title }}</strong>.<br>
|
||||
Nous avons bien reçu votre dossier et vous contacterons dans les plus brefs délais.
|
||||
</p>
|
||||
<a href="{% url 'careers:job_list' %}" class="btn-back">Voir toutes les offres</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
12
templates/careers/emails/application_received_body.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
Bonjour {{ application.first_name }},
|
||||
|
||||
Nous avons bien reçu votre candidature pour le poste de :
|
||||
{{ application.job.title }} ({{ application.job.get_contract_type_display }})
|
||||
{{ application.job.location }}
|
||||
|
||||
Votre dossier est en cours d'examen par notre équipe RH. Nous vous contacterons dans les meilleurs délais.
|
||||
|
||||
Merci pour votre intérêt pour Jool International.
|
||||
|
||||
Cordialement,
|
||||
L'équipe Jool International
|
||||
@@ -0,0 +1 @@
|
||||
Candidature reçue — {{ application.job.title }} | Jool International
|
||||
16
templates/careers/emails/new_application_admin_body.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
Nouvelle candidature reçue.
|
||||
|
||||
POSTE : {{ application.job.title }} ({{ application.job.get_contract_type_display }})
|
||||
CANDIDAT: {{ application.full_name }}
|
||||
EMAIL : {{ application.email }}
|
||||
TEL : {{ application.phone|default:"—" }}
|
||||
LinkedIn: {{ application.linkedin_url|default:"—" }}
|
||||
Portfolio: {{ application.portfolio_url|default:"—" }}
|
||||
|
||||
LETTRE DE MOTIVATION :
|
||||
{{ application.cover_letter }}
|
||||
|
||||
CV : voir l'interface d'administration Django.
|
||||
|
||||
---
|
||||
Gérer cette candidature : http://localhost:8000/admin/careers/jobapplication/
|
||||
@@ -0,0 +1 @@
|
||||
Nouvelle candidature — {{ application.job.title }} — {{ application.full_name }}
|
||||
63
templates/careers/job_detail.html
Normal file
@@ -0,0 +1,63 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}{{ job.title }} — Carrières Jool International{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<link rel="stylesheet" href="{% static 'css/careers.css' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="job-detail-hero">
|
||||
<div class="job-detail-breadcrumb">
|
||||
<a href="{% url 'careers:job_list' %}">Carrières</a> › {{ job.title }}
|
||||
</div>
|
||||
<h1 class="job-detail-title">{{ job.title }}</h1>
|
||||
<div class="job-detail-tags">
|
||||
<span class="job-tag"><span class="material-icons-round">work</span> {{ job.get_contract_type_display }}</span>
|
||||
<span class="job-tag"><span class="material-icons-round">location_on</span> {{ job.location }}</span>
|
||||
<span class="job-tag"><span class="material-icons-round">category</span> {{ job.get_department_display }}</span>
|
||||
{% if job.is_remote %}<span class="job-tag"><span class="material-icons-round">wifi</span> Télétravail possible</span>{% endif %}
|
||||
{% if job.salary_range %}<span class="job-tag"><span class="material-icons-round">payments</span> {{ job.salary_range }}</span>{% endif %}
|
||||
</div>
|
||||
{% if job.is_open %}
|
||||
<a href="{% url 'careers:apply' slug=job.slug %}" class="btn-apply-lg">
|
||||
<span class="material-icons-round">send</span> Postuler maintenant
|
||||
</a>
|
||||
{% else %}
|
||||
<div class="job-closed-banner">
|
||||
<span class="material-icons-round">info</span>
|
||||
Cette offre n'accepte plus de candidatures.
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="job-detail-body">
|
||||
{% if job.application_deadline %}
|
||||
<p style="color:#888;font-size:13px;margin-bottom:32px;">
|
||||
<span class="material-icons-round" style="font-size:15px;vertical-align:middle;">event</span>
|
||||
Date limite : {{ job.application_deadline|date:"d/m/Y" }}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
<div class="job-section-title">Description du poste</div>
|
||||
<div>{{ job.description|linebreaks }}</div>
|
||||
|
||||
<div class="job-section-title">Compétences requises</div>
|
||||
<div>{{ job.requirements|linebreaks }}</div>
|
||||
|
||||
{% if job.nice_to_have %}
|
||||
<div class="job-section-title">Compétences souhaitées</div>
|
||||
<div>{{ job.nice_to_have|linebreaks }}</div>
|
||||
{% endif %}
|
||||
|
||||
{% if job.is_open %}
|
||||
<div style="margin-top:48px;padding-top:32px;border-top:1px solid var(--gray);text-align:center;">
|
||||
<p style="color:#555;margin-bottom:20px;">Ce poste vous correspond ? Envoyez votre candidature dès maintenant.</p>
|
||||
<a href="{% url 'careers:apply' slug=job.slug %}" class="btn-apply-lg">
|
||||
<span class="material-icons-round">send</span> Postuler
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
50
templates/careers/job_list.html
Normal file
@@ -0,0 +1,50 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}Carrières — Jool International{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<link rel="stylesheet" href="{% static 'css/careers.css' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="careers-hero reveal">
|
||||
<h1>Rejoignez l'aventure <span>Jool</span></h1>
|
||||
<p>Nous construisons l'avenir de l'agriculture africaine. Découvrez nos opportunités et faites partie de l'équipe.</p>
|
||||
</div>
|
||||
|
||||
<div class="careers-filters">
|
||||
<span class="filter-label">Département :</span>
|
||||
<a href="{% url 'careers:job_list' %}" class="filter-chip {% if not active_dept %}active{% endif %}">Tous</a>
|
||||
{% for value, label in departments %}
|
||||
<a href="?dept={{ value }}" class="filter-chip {% if active_dept == value %}active{% endif %}">{{ label }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="jobs-grid">
|
||||
{% for job in jobs %}
|
||||
<div class="job-card reveal">
|
||||
<div class="job-card-header">
|
||||
<span class="job-dept-badge">{{ job.get_department_display }}</span>
|
||||
<span class="job-contract">{{ job.get_contract_type_display }}</span>
|
||||
</div>
|
||||
<div class="job-card-title">{{ job.title }}</div>
|
||||
<div class="job-card-meta">
|
||||
<span><span class="material-icons-round">location_on</span> {{ job.location }}</span>
|
||||
{% if job.is_remote %}<span><span class="material-icons-round">wifi</span> Télétravail</span>{% endif %}
|
||||
{% if job.salary_range %}<span><span class="material-icons-round">payments</span> {{ job.salary_range }}</span>{% endif %}
|
||||
</div>
|
||||
<div class="job-card-footer">
|
||||
<a href="{{ job.get_absolute_url }}" class="btn-apply">Voir l'offre</a>
|
||||
{% if job.application_deadline %}
|
||||
<span class="job-deadline">Jusqu'au {{ job.application_deadline|date:"d/m/Y" }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% empty %}
|
||||
<div class="jobs-empty">
|
||||
<p>Aucune offre disponible pour le moment.<br>Revenez bientôt !</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
370
templates/core/about.html
Normal file
@@ -0,0 +1,370 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}À propos — Jool International, pionniers de l'AgriTech africaine{% endblock %}
|
||||
{% block title_plain %}À propos — Jool International, pionniers de l'AgriTech africaine{% endblock %}
|
||||
|
||||
{% block meta_description %}Découvrez Jool International : notre mission, notre équipe et notre vision pour transformer l'agriculture africaine grâce aux technologies satellite, drone et IA. Basés à Abidjan, Côte d'Ivoire.{% endblock %}
|
||||
|
||||
{% block og_title %}À propos de Jool International — AgriTech made in Africa{% endblock %}
|
||||
{% block og_description %}Notre mission : rendre l'agriculture de précision accessible à tous les acteurs de l'agri-industrie africaine. Satellite, drone, IA et digitalisation.{% endblock %}
|
||||
{% block twitter_title %}À propos de Jool International — AgriTech made in Africa{% endblock %}
|
||||
{% block twitter_description %}Notre mission : rendre l'agriculture de précision accessible à tous les acteurs de l'agri-industrie africaine.{% endblock %}
|
||||
|
||||
{% block schema_org %}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "AboutPage",
|
||||
"name": "À propos de Jool International",
|
||||
"url": "https://jool-int.com/a-propos/",
|
||||
"description": "Jool International est une entreprise AgriTech basée à Abidjan qui développe des solutions d'intelligence artificielle, de télédétection et de digitalisation pour l'agriculture africaine.",
|
||||
"publisher": {
|
||||
"@type": "Organization",
|
||||
"name": "Jool International",
|
||||
"url": "https://jool-int.com",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"addressLocality": "Abidjan",
|
||||
"addressCountry": "CI"
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<style>
|
||||
/* ─── About Hero ─────────────────────────── */
|
||||
.about-hero {
|
||||
background: var(--dark-bg);
|
||||
padding: 96px 64px 80px;
|
||||
text-align: center;
|
||||
}
|
||||
.about-eyebrow {
|
||||
display: inline-flex; align-items: center; gap: 8px;
|
||||
font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
|
||||
background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
|
||||
padding: 5px 16px; border-radius: 100px; margin-bottom: 24px;
|
||||
}
|
||||
.about-hero h1 {
|
||||
font-family: var(--display); font-weight: 900; font-style: italic;
|
||||
font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.03em;
|
||||
color: var(--white); line-height: 1.05; margin-bottom: 24px;
|
||||
}
|
||||
.about-hero h1 em { font-style: normal; color: var(--accent); }
|
||||
.about-hero p {
|
||||
font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.75;
|
||||
font-weight: 300; max-width: 680px; margin: 0 auto;
|
||||
}
|
||||
|
||||
/* ─── Mission ────────────────────────────── */
|
||||
.about-mission {
|
||||
padding: 88px 64px;
|
||||
display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
|
||||
max-width: 1200px; margin: 0 auto;
|
||||
}
|
||||
.about-mission h2 {
|
||||
font-family: var(--display); font-weight: 900; font-style: italic;
|
||||
font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -0.03em;
|
||||
color: var(--black); margin-bottom: 20px;
|
||||
}
|
||||
.about-mission h2 em { font-style: normal; color: var(--teal); }
|
||||
.about-mission p {
|
||||
font-size: 16px; color: #555; line-height: 1.8; font-weight: 300; margin-bottom: 18px;
|
||||
}
|
||||
.mission-values { display: flex; flex-direction: column; gap: 16px; }
|
||||
.mission-value {
|
||||
display: flex; align-items: flex-start; gap: 14px;
|
||||
background: var(--teal-pale); border-radius: 14px; padding: 18px 20px;
|
||||
}
|
||||
.mission-value .material-icons-round { color: var(--teal); font-size: 22px; flex-shrink: 0; margin-top: 1px; }
|
||||
.mission-value-body h4 { font-weight: 700; font-size: 15px; color: var(--black); margin-bottom: 4px; }
|
||||
.mission-value-body p { font-size: 14px; color: #666; line-height: 1.6; font-weight: 300; margin: 0; }
|
||||
|
||||
/* ─── Stats strip ────────────────────────── */
|
||||
.about-stats {
|
||||
background: var(--teal);
|
||||
padding: 56px 64px;
|
||||
display: grid; grid-template-columns: repeat(4, 1fr);
|
||||
gap: 24px; text-align: center;
|
||||
}
|
||||
.about-stat-val {
|
||||
font-family: var(--display); font-weight: 900; font-size: 2.6rem;
|
||||
color: var(--white); letter-spacing: -.04em;
|
||||
}
|
||||
.about-stat-label { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 6px; font-weight: 300; }
|
||||
|
||||
/* ─── Produits ───────────────────────────── */
|
||||
.about-products {
|
||||
padding: 88px 64px; background: var(--gray-2);
|
||||
}
|
||||
.about-products-inner { max-width: 1200px; margin: 0 auto; }
|
||||
.about-products h2 {
|
||||
font-family: var(--display); font-weight: 900; font-style: italic;
|
||||
font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.03em;
|
||||
color: var(--black); margin-bottom: 48px; text-align: center;
|
||||
}
|
||||
.products-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
|
||||
.about-product-card {
|
||||
background: var(--white); border-radius: 20px; padding: 36px 28px;
|
||||
border: 1.5px solid var(--gray); transition: border-color .2s, box-shadow .2s, transform .2s;
|
||||
display: flex; flex-direction: column;
|
||||
}
|
||||
.about-product-card:hover {
|
||||
border-color: var(--teal); box-shadow: 0 8px 32px rgba(25,112,97,.12); transform: translateY(-3px);
|
||||
}
|
||||
.apc-icon {
|
||||
width: 56px; height: 56px; background: var(--teal-pale); border-radius: 16px;
|
||||
display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
|
||||
}
|
||||
.apc-icon .material-icons-round { color: var(--teal); font-size: 28px; }
|
||||
.apc-title { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--black); margin-bottom: 10px; }
|
||||
.apc-desc { font-size: 14px; color: #666; line-height: 1.65; font-weight: 300; flex: 1; margin-bottom: 24px; }
|
||||
.apc-link {
|
||||
display: inline-flex; align-items: center; gap: 6px;
|
||||
font-size: 14px; font-weight: 700; color: var(--teal); transition: gap .15s;
|
||||
}
|
||||
.apc-link:hover { gap: 10px; }
|
||||
|
||||
/* ─── Equipe ─────────────────────────────── */
|
||||
.about-team { padding: 88px 64px; background: var(--white); }
|
||||
.about-team-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
|
||||
.about-team h2 {
|
||||
font-family: var(--display); font-weight: 900; font-style: italic;
|
||||
font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.03em;
|
||||
color: var(--black); margin-bottom: 12px;
|
||||
}
|
||||
.about-team > .about-team-inner > p {
|
||||
font-size: 16px; color: #666; font-weight: 300; margin-bottom: 56px;
|
||||
}
|
||||
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
|
||||
.team-card { background: var(--gray-2); border-radius: 20px; padding: 32px 24px; text-align: center; }
|
||||
.team-avatar {
|
||||
width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
|
||||
background: var(--teal); display: flex; align-items: center; justify-content: center;
|
||||
font-size: 2rem; color: white;
|
||||
}
|
||||
.team-name { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--black); margin-bottom: 4px; }
|
||||
.team-role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
|
||||
.team-bio { font-size: 13px; color: #777; line-height: 1.6; font-weight: 300; }
|
||||
|
||||
/* ─── Localisation ───────────────────────── */
|
||||
.about-location {
|
||||
padding: 88px 64px; background: var(--dark-bg);
|
||||
display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
|
||||
}
|
||||
.about-location h2 {
|
||||
font-family: var(--display); font-weight: 900; font-style: italic;
|
||||
font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.03em;
|
||||
color: var(--white); margin-bottom: 20px;
|
||||
}
|
||||
.about-location h2 em { font-style: normal; color: var(--accent); }
|
||||
.about-location p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
|
||||
.location-item {
|
||||
display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
|
||||
font-size: 15px; color: rgba(255,255,255,.75);
|
||||
}
|
||||
.location-item .material-icons-round { color: var(--accent); font-size: 20px; }
|
||||
.location-map {
|
||||
border-radius: 20px; height: 380px;
|
||||
overflow: hidden; border: 1px solid rgba(255,255,255,.1);
|
||||
}
|
||||
.location-map iframe { display: block; }
|
||||
|
||||
/* ─── CTA ────────────────────────────────── */
|
||||
.about-cta { padding: 88px 64px; background: var(--teal-pale); text-align: center; }
|
||||
.about-cta h2 {
|
||||
font-family: var(--display); font-weight: 900; font-style: italic;
|
||||
font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.03em;
|
||||
color: var(--black); margin-bottom: 16px;
|
||||
}
|
||||
.about-cta p { font-size: 16px; color: #666; font-weight: 300; margin-bottom: 32px; }
|
||||
.btn-cta-lg {
|
||||
display: inline-flex; align-items: center; gap: 10px;
|
||||
font-family: var(--display); font-weight: 800; font-size: 16px;
|
||||
padding: 16px 36px; border-radius: 100px; background: var(--teal); color: var(--white);
|
||||
transition: filter .15s, transform .12s;
|
||||
}
|
||||
.btn-cta-lg:hover { filter: brightness(1.1); transform: translateY(-2px); }
|
||||
.btn-outline-about {
|
||||
display: inline-flex; align-items: center; gap: 10px;
|
||||
font-family: var(--body); font-weight: 700; font-size: 15px;
|
||||
padding: 14px 30px; border-radius: 100px;
|
||||
border: 1.5px solid var(--teal); color: var(--teal);
|
||||
transition: all .15s; margin-left: 16px;
|
||||
}
|
||||
.btn-outline-about:hover { background: var(--teal); color: var(--white); }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.about-hero, .about-mission, .about-stats, .about-products,
|
||||
.about-team, .about-location, .about-cta { padding: 56px 24px; }
|
||||
.about-mission, .about-location { grid-template-columns: 1fr; }
|
||||
.about-stats { grid-template-columns: 1fr 1fr; }
|
||||
.products-row, .team-grid { grid-template-columns: 1fr; }
|
||||
.btn-outline-about { margin-left: 0; margin-top: 12px; }
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<!-- ══ HERO ══ -->
|
||||
<section class="about-hero">
|
||||
<div class="about-eyebrow">À propos de Jool International</div>
|
||||
<h1>L'intelligence agricole<br>au service de <em>l'Afrique.</em></h1>
|
||||
<p>Jool International développe des solutions technologiques pour moderniser l'agriculture africaine. Du satellite au terrain, nous donnons aux industriels, coopératives et institutions les outils pour piloter leurs exploitations avec précision.</p>
|
||||
</section>
|
||||
|
||||
<!-- ══ MISSION ══ -->
|
||||
<section style="background:var(--white);">
|
||||
<div class="about-mission">
|
||||
<div class="reveal">
|
||||
<span style="font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:rgba(25,112,97,.1);color:var(--teal);padding:5px 14px;border-radius:100px;display:inline-block;margin-bottom:20px;">Notre mission</span>
|
||||
<h2>Transformer l'agriculture<br>africaine par la <em>donnée.</em></h2>
|
||||
<p>En Afrique subsaharienne, 60% de la population active travaille dans l'agriculture, mais moins de 5% des exploitations ont accès à des outils numériques de gestion. Jool International comble ce fossé.</p>
|
||||
<p>Nous construisons des outils adaptés aux réalités du terrain africain : connectivité limitée, diversité des cultures, multiplicité des acteurs et besoins de traçabilité pour les marchés internationaux.</p>
|
||||
</div>
|
||||
<div class="mission-values reveal">
|
||||
<div class="mission-value">
|
||||
<span class="material-icons-round">visibility</span>
|
||||
<div class="mission-value-body">
|
||||
<h4>Transparence</h4>
|
||||
<p>Des données vérifiables et auditables à chaque étape de la chaîne de valeur agricole.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mission-value">
|
||||
<span class="material-icons-round">bolt</span>
|
||||
<div class="mission-value-body">
|
||||
<h4>Impact terrain</h4>
|
||||
<p>Nos solutions sont conçues pour être utilisées par des agents de terrain, pas seulement des ingénieurs.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mission-value">
|
||||
<span class="material-icons-round">public</span>
|
||||
<div class="mission-value-body">
|
||||
<h4>Scalabilité africaine</h4>
|
||||
<p>De 100 à 100 000 hectares, nos outils s'adaptent à toutes les tailles d'exploitation.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ══ STATS ══ -->
|
||||
<div class="about-stats">
|
||||
<div class="reveal">
|
||||
<div class="about-stat-val">+280 000</div>
|
||||
<div class="about-stat-label">Producteurs digitalisés</div>
|
||||
</div>
|
||||
<div class="reveal">
|
||||
<div class="about-stat-val">+100 000 ha</div>
|
||||
<div class="about-stat-label">Superficie suivie</div>
|
||||
</div>
|
||||
<div class="reveal">
|
||||
<div class="about-stat-val">3</div>
|
||||
<div class="about-stat-label">Cultures couvertes</div>
|
||||
</div>
|
||||
<div class="reveal">
|
||||
<div class="about-stat-val">89%</div>
|
||||
<div class="about-stat-label">Précision IA</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ══ PRODUITS ══ -->
|
||||
<section class="about-products">
|
||||
<div class="about-products-inner">
|
||||
<h2>Nos solutions</h2>
|
||||
<div class="products-row">
|
||||
<div class="about-product-card reveal">
|
||||
<div class="apc-icon"><span class="material-icons-round">satellite_alt</span></div>
|
||||
<div class="apc-title">KIRIQ AI</div>
|
||||
<p class="apc-desc">Surveillance satellitaire et IA pour détecter les stress végétatifs, prioriser les interventions et piloter vos plantations depuis le bureau.</p>
|
||||
<a href="{% url 'core:kiriq' %}" class="apc-link">Découvrir KIRIQ AI <span class="material-icons-round" style="font-size:18px;">east</span></a>
|
||||
</div>
|
||||
<div class="about-product-card reveal">
|
||||
<div class="apc-icon"><span class="material-icons-round">flight</span></div>
|
||||
<div class="apc-title">Jool Monitor</div>
|
||||
<p class="apc-desc">Cartographie drone haute résolution, comptage automatique des plants et audit de conformité pour une vision ultra-précise du terrain.</p>
|
||||
<a href="{% url 'core:monitor' %}" class="apc-link">Découvrir Monitor <span class="material-icons-round" style="font-size:18px;">east</span></a>
|
||||
</div>
|
||||
<div class="about-product-card reveal">
|
||||
<div class="apc-icon"><span class="material-icons-round">badge</span></div>
|
||||
<div class="apc-title">Jool ID</div>
|
||||
<p class="apc-desc">Digitalisation et centralisation des producteurs, parcelles et programmes agricoles pour une gestion fiable et traçable à grande échelle.</p>
|
||||
<a href="{% url 'core:joolid' %}" class="apc-link">Découvrir Jool ID <span class="material-icons-round" style="font-size:18px;">east</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ══ EQUIPE
|
||||
<section class="about-team">
|
||||
<div class="about-team-inner">
|
||||
<h2>L'équipe fondatrice</h2>
|
||||
<p>Une équipe pluridisciplinaire alliant expertise agronomique, technologie et connaissance du terrain africain.</p>
|
||||
<div class="team-grid">
|
||||
<div class="team-card reveal">
|
||||
<div class="team-avatar">🌱</div>
|
||||
<div class="team-name">Israel Coulibaly</div>
|
||||
<div class="team-role">CEO & Co-fondateur</div>
|
||||
<p class="team-bio">Expert en agri-business et stratégie. Vision de l'agriculture africaine digitale depuis plus de 8 ans.</p>
|
||||
</div>
|
||||
<div class="team-card reveal">
|
||||
<div class="team-avatar">🛰️</div>
|
||||
<div class="team-name">Équipe Technique</div>
|
||||
<div class="team-role">Data Science & IA</div>
|
||||
<p class="team-bio">Ingénieurs spécialisés en télédétection, machine learning et traitement d'images satellite.</p>
|
||||
</div>
|
||||
<div class="team-card reveal">
|
||||
<div class="team-avatar">🌍</div>
|
||||
<div class="team-name">Équipe Terrain</div>
|
||||
<div class="team-role">Agronomie & Opérations</div>
|
||||
<p class="team-bio">Agronomes et pilotes de drone formés aux spécificités des cultures tropicales africaines.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
══ -->
|
||||
|
||||
<!-- ══ LOCALISATION ══ -->
|
||||
<section class="about-location">
|
||||
<div class="reveal">
|
||||
<h2>Basés en <em>Côte d'Ivoire,</em><br>actifs en Afrique.</h2>
|
||||
<p>Jool International opère dans partout en Afrique de l'Ouest, là où les enjeux agricoles sont les plus importants.</p>
|
||||
<div class="location-item"><span class="material-icons-round">location_on</span> Abidjan, Côte d'Ivoire (siège)</div>
|
||||
<div class="location-item"><span class="material-icons-round">email</span> info@jool-int.com</div>
|
||||
<div class="location-item"><span class="material-icons-round">phone</span> +225 07 99 899 836</div>
|
||||
</div>
|
||||
<div class="location-map reveal">
|
||||
<iframe
|
||||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3972.3381998336868!2d-3.9153728148862776!3d5.36527478072492!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xfc193bd3101ed6b%3A0x9dab83b7bb1027b9!2sJooL-International!5e0!3m2!1sfr!2sci!4v1778585083283!5m2!1sfr!2sci"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style="border:0;"
|
||||
allowfullscreen=""
|
||||
loading="lazy"
|
||||
referrerpolicy="no-referrer-when-downgrade"
|
||||
title="Localisation de Jool International — Abidjan, Côte d'Ivoire">
|
||||
</iframe>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ══ CTA ══ -->
|
||||
<section class="about-cta">
|
||||
<span style="font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:rgba(25,112,97,.12);color:var(--teal);padding:5px 14px;border-radius:100px;display:inline-block;margin-bottom:20px;">Travaillons ensemble</span>
|
||||
<h2>Prêt à transformer<br>votre exploitation ?</h2>
|
||||
<p>Discutons de vos besoins et voyons comment Jool peut vous aider.</p>
|
||||
<div>
|
||||
<a href="{% url 'core:home' %}#contact" class="btn-cta-lg">
|
||||
<span class="material-icons-round">east</span> Demander une démo
|
||||
</a>
|
||||
{% if careers_enabled %}
|
||||
<a href="{% url 'careers:job_list' %}" class="btn-outline-about">
|
||||
Rejoindre l'équipe
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
||||
84
templates/core/home.html
Normal file
@@ -0,0 +1,84 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Jool International — Solutions AgriTech pour l'Afrique{% endblock %}
|
||||
{% block title_plain %}Jool International — Solutions AgriTech pour l'Afrique{% endblock %}
|
||||
|
||||
{% block meta_description %}Jool International propose des solutions AgriTech innovantes pour l'agriculture africaine : KIRIQ AI (diagnostic satellitaire), Jool Monitor (cartographie drone) et Jool ID (digitalisation producteurs). Optimisez vos exploitations agricoles en Côte d'Ivoire et en Afrique.{% endblock %}
|
||||
|
||||
{% block og_title %}Jool International — Solutions AgriTech pour l'Afrique{% endblock %}
|
||||
{% block og_description %}KIRIQ AI, Jool Monitor et Jool ID : les outils de précision pour piloter vos exploitations agricoles en Afrique.{% endblock %}
|
||||
{% block twitter_title %}Jool International — Solutions AgriTech pour l'Afrique{% endblock %}
|
||||
{% block twitter_description %}KIRIQ AI, Jool Monitor et Jool ID : les outils de précision pour piloter vos exploitations agricoles en Afrique.{% endblock %}
|
||||
|
||||
{% block schema_org %}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "Jool International",
|
||||
"url": "https://jool-int.com",
|
||||
"logo": "https://jool-int.com/static/img/logo.png",
|
||||
"description": "Solutions AgriTech pour l'agriculture africaine : analyse satellitaire IA, cartographie drone et digitalisation des producteurs.",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"addressLocality": "Abidjan",
|
||||
"addressCountry": "CI"
|
||||
},
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
"email": "info@jool-int.com",
|
||||
"telephone": "+22527225578825",
|
||||
"contactType": "customer service"
|
||||
},
|
||||
"sameAs": [
|
||||
"https://www.linkedin.com/company/jool-international/"
|
||||
],
|
||||
"hasOfferCatalog": {
|
||||
"@type": "OfferCatalog",
|
||||
"name": "Solutions AgriTech",
|
||||
"itemListElement": [
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "SoftwareApplication",
|
||||
"name": "KIRIQ AI",
|
||||
"description": "Diagnostic satellitaire et analyse IA des cultures agricoles.",
|
||||
"applicationCategory": "AgricultureApplication"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "SoftwareApplication",
|
||||
"name": "Jool Monitor",
|
||||
"description": "Cartographie drone haute résolution pour la surveillance des parcelles.",
|
||||
"applicationCategory": "AgricultureApplication"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "SoftwareApplication",
|
||||
"name": "Jool ID",
|
||||
"description": "Digitalisation et gestion des producteurs agricoles.",
|
||||
"applicationCategory": "AgricultureApplication"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% include "core/partials/_hero.html" %}
|
||||
{% include "core/partials/_trust_strip.html" %}
|
||||
{% include "core/partials/_section_kiriq.html" %}
|
||||
{% include "core/partials/_section_monitor.html" %}
|
||||
{% include "core/partials/_section_joolid.html" %}
|
||||
{% include "core/partials/_stats.html" %}
|
||||
{% include "core/partials/_trusted_by.html" %}
|
||||
{% include "core/partials/_features.html" %}
|
||||
{% include "core/partials/_faq.html" %}
|
||||
{% include "core/partials/_cta_final.html" %}
|
||||
{% endblock %}
|
||||
82
templates/core/partials/_cta_final.html
Normal file
@@ -0,0 +1,82 @@
|
||||
<!-- ══ CTA FINAL ══ -->
|
||||
<section class="s-cta-final" id="contact">
|
||||
<div class="deco deco-l">J</div>
|
||||
<div class="deco deco-r">L</div>
|
||||
<div class="section-inner">
|
||||
<h2 class="cta-final-h reveal">Transformez votre exploitation<br>agricole dès aujourd'hui.</h2>
|
||||
<p class="cta-final-sub reveal">Rejoignez les industriels et coopératives qui font confiance à Jool International.</p>
|
||||
|
||||
<form id="contact-form" class="cta-form reveal" novalidate>
|
||||
{% csrf_token %}
|
||||
<div class="cta-fields">
|
||||
<input class="cta-input" type="text" name="last_name" placeholder="Nom" required>
|
||||
<input class="cta-input" type="text" name="first_name" placeholder="Prénom" required>
|
||||
<input class="cta-input" type="email" name="email" placeholder="Adresse email" required>
|
||||
<input class="cta-input" type="tel" name="phone" placeholder="Téléphone" inputmode="numeric" pattern="[0-9+ ]{6,20}">
|
||||
</div>
|
||||
<textarea class="cta-input cta-textarea" name="message" placeholder="Votre demande…" rows="4" required></textarea>
|
||||
<ul class="cta-errors" id="contact-errors" hidden></ul>
|
||||
<button class="btn-hero" type="submit" id="contact-btn">
|
||||
Démarrer maintenant
|
||||
<span class="material-icons-round" style="font-size:18px;">arrow_forward</span>
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<div class="cta-success" id="contact-success">
|
||||
<span class="material-icons-round">check_circle</span>
|
||||
Votre demande a bien été envoyée ! Nous vous répondrons très prochainement.
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
const form = document.getElementById('contact-form');
|
||||
const errors = document.getElementById('contact-errors');
|
||||
const success = document.getElementById('contact-success');
|
||||
const btn = document.getElementById('contact-btn');
|
||||
const url = "{% url 'core:contact_ajax' %}";
|
||||
|
||||
form.addEventListener('submit', async function (e) {
|
||||
e.preventDefault();
|
||||
errors.hidden = true;
|
||||
errors.innerHTML = '';
|
||||
btn.disabled = true;
|
||||
btn.style.opacity = '.6';
|
||||
|
||||
const data = new FormData(form);
|
||||
|
||||
try {
|
||||
const res = await fetch(url, {
|
||||
method: 'POST',
|
||||
headers: { 'X-CSRFToken': data.get('csrfmiddlewaretoken') },
|
||||
body: data,
|
||||
});
|
||||
const json = await res.json();
|
||||
|
||||
if (json.ok) {
|
||||
form.style.display = 'none';
|
||||
success.classList.add('visible');
|
||||
} else {
|
||||
// Affiche les erreurs sans recharger
|
||||
const msgs = Object.values(json.errors).flat().map(e => e.message);
|
||||
msgs.forEach(msg => {
|
||||
const li = document.createElement('li');
|
||||
li.textContent = msg;
|
||||
errors.appendChild(li);
|
||||
});
|
||||
errors.hidden = false;
|
||||
btn.disabled = false;
|
||||
btn.style.opacity = '1';
|
||||
}
|
||||
} catch (_) {
|
||||
const li = document.createElement('li');
|
||||
li.textContent = 'Une erreur réseau est survenue. Veuillez réessayer.';
|
||||
errors.appendChild(li);
|
||||
errors.hidden = false;
|
||||
btn.disabled = false;
|
||||
btn.style.opacity = '1';
|
||||
}
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
68
templates/core/partials/_faq.html
Normal file
@@ -0,0 +1,68 @@
|
||||
<!-- ══ FAQ ══ -->
|
||||
<section class="s-faq" id="faq">
|
||||
<div class="section-inner">
|
||||
<h2 class="faq-h reveal">Questions ? Réponses.</h2>
|
||||
<p class="faq-sub reveal">Tout ce que vous devez savoir sur nos solutions AgriTech.</p>
|
||||
<div class="faq-wrap">
|
||||
|
||||
<div class="faq-item reveal">
|
||||
<div class="faq-q" onclick="toggleFaq(this)">
|
||||
Faut-il une connexion internet sur le terrain pour utiliser vos solutions ?
|
||||
<span class="material-icons-round">add</span>
|
||||
</div>
|
||||
<div class="faq-a">Non. Nos applications mobiles fonctionnent en mode hors-ligne. Les données se synchronisent
|
||||
automatiquement dès qu'une connexion est disponible — idéal pour les zones rurales à connectivité limitée.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-item reveal">
|
||||
<div class="faq-q" onclick="toggleFaq(this)">
|
||||
Quelle est la différence entre KIRIQ AI et Jool Monitor ?
|
||||
<span class="material-icons-round">add</span>
|
||||
</div>
|
||||
<div class="faq-a">KIRIQ AI analyse via satellite à grande échelle (milliers d'hectares) avec une fréquence
|
||||
régulière. Jool Monitor utilise des drones pour une précision centimétrique sur des zones ciblées. Les deux
|
||||
sont complémentaires : KIRIQ détecte les anomalies, Jool Monitor les confirme avec précision.</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-item reveal">
|
||||
<div class="faq-q" onclick="toggleFaq(this)">
|
||||
Quels types de cultures sont pris en charge ?
|
||||
<span class="material-icons-round">add</span>
|
||||
</div>
|
||||
<div class="faq-a">Nos solutions sont optimisées pour le palmier à huile, l'hévéa, le cacao, le café et les
|
||||
grandes cultures vivrières. Nos modèles IA peuvent être adaptés à d'autres cultures tropicales sur demande.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-item reveal">
|
||||
<div class="faq-q" onclick="toggleFaq(this)">
|
||||
Combien de temps pour recevoir les résultats après un vol drone ?
|
||||
<span class="material-icons-round">add</span>
|
||||
</div>
|
||||
<div class="faq-a">Les rapports Jool Monitor sont livrés sous 24 à 48 heures après le vol. Pour KIRIQ AI, les
|
||||
données satellitaires sont traitées et disponibles en temps quasi-réel selon la couverture nuageuse.</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-item reveal">
|
||||
<div class="faq-q" onclick="toggleFaq(this)">
|
||||
Jool ID est-il compatible avec nos systèmes existants ?
|
||||
<span class="material-icons-round">add</span>
|
||||
</div>
|
||||
<div class="faq-a">Oui. Jool ID dispose d'une API ouverte permettant l'intégration avec vos ERP, bases de
|
||||
données et outils de gestion existants. Notre équipe technique assure l'accompagnement à l'intégration.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-item reveal">
|
||||
<div class="faq-q" onclick="toggleFaq(this)">
|
||||
Où télécharger les applications mobiles ?
|
||||
<span class="material-icons-round">add</span>
|
||||
</div>
|
||||
<div class="faq-a">Nos applications sont disponibles sur l'App Store (iOS) et Google Play (Android).
|
||||
Contactez-nous pour obtenir votre accès entreprise et la configuration adaptée à votre exploitation.</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
43
templates/core/partials/_features.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<!-- ══ FEATURES ══ -->
|
||||
<section class="s-features">
|
||||
<div class="section-inner">
|
||||
<h2 class="feat-title reveal">La solution <em>rapide, fiable</em><br>et puissante pour l'agriculture.</h2>
|
||||
<div class="feat-grid">
|
||||
<div class="feat-card reveal">
|
||||
<div class="feat-icon-wrap"><span class="material-icons-round">speed</span></div>
|
||||
<h3>Résultats en 24h</h3>
|
||||
<p>Du vol drone au rapport final en moins de 24 heures. Des données exploitables dès le lendemain de
|
||||
l'acquisition.</p>
|
||||
</div>
|
||||
<div class="feat-card reveal">
|
||||
<div class="feat-icon-wrap"><span class="material-icons-round">hub</span></div>
|
||||
<h3>Écosystème intégré</h3>
|
||||
<p>KIRIQ AI, Jool Monitor et Jool ID communiquent entre eux. Une vision unifiée de toutes vos exploitations.
|
||||
</p>
|
||||
</div>
|
||||
<div class="feat-card reveal">
|
||||
<div class="feat-icon-wrap"><span class="material-icons-round">offline_bolt</span></div>
|
||||
<h3>Mode hors-ligne</h3>
|
||||
<p>Nos applications fonctionnent sans connexion. Idéal pour les zones rurales à connectivité limitée en
|
||||
Afrique.</p>
|
||||
</div>
|
||||
<div class="feat-card reveal">
|
||||
<div class="feat-icon-wrap"><span class="material-icons-round">verified_user</span></div>
|
||||
<h3>Données certifiées</h3>
|
||||
<p>Traçabilité complète et données conformes aux exigences des certifications internationales (RSPO, ISO,
|
||||
etc.).</p>
|
||||
</div>
|
||||
<div class="feat-card reveal">
|
||||
<div class="feat-icon-wrap"><span class="material-icons-round">insights</span></div>
|
||||
<h3>IA agronomique</h3>
|
||||
<p>Modèles d'IA entraînés spécifiquement sur les cultures tropicales africaines pour une précision maximale.
|
||||
</p>
|
||||
</div>
|
||||
<div class="feat-card reveal">
|
||||
<div class="feat-icon-wrap"><span class="material-icons-round">support_agent</span></div>
|
||||
<h3>Support dédié</h3>
|
||||
<p>Une équipe d'experts agronomes et techniques disponible pour vous accompagner à chaque étape.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
43
templates/core/partials/_footer.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<!-- ══ FOOTER ══ -->
|
||||
<footer>
|
||||
<div class="footer-inner">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand">
|
||||
<div class="footer-logo-wrap">
|
||||
{% load static %}
|
||||
<img src="{% static 'img/logo.png' %}" alt="Jool International" style="height:34px;width:auto;filter:brightness(0) invert(1);opacity:0.85;">
|
||||
</div>
|
||||
<p>L'intelligence artificielle au service de l'agriculture africaine. Satellite, drone et digitalisation pour optimiser vos
|
||||
exploitations agricoles.</p>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Solutions</h4>
|
||||
<a href="#kiriq">KIRIQ AI</a>
|
||||
<a href="#monitor">Jool Monitor</a>
|
||||
<a href="#joolid">Jool ID</a>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Entreprise</h4>
|
||||
<a href="{% url 'core:about' %}">À propos</a>
|
||||
{% if careers_enabled %}
|
||||
<a href="{% url 'careers:job_list' %}">Carrières</a>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Contact</h4>
|
||||
<a href="mailto:info@jool-int.com">Email:info@jool-int.com</a>
|
||||
<a href="#">Tel: +225 27 22 557 825</a>
|
||||
<a href="#">Mob: +225 07 99 899 836</a>
|
||||
<a href="https://www.linkedin.com/company/jool-international/posts/?feedView=all" target="_blank">LinkedIn: Jool International</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<span>©<span id="year"></span> Jool International. Tous droits réservés.</span>
|
||||
<a href="{% url 'core:privacy' %}" style="color:#888;font-size:13px;text-decoration:none;">Politique de confidentialité</a>
|
||||
<script>
|
||||
document.getElementById("year").textContent = new Date().getFullYear();
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
56
templates/core/partials/_hero.html
Normal file
@@ -0,0 +1,56 @@
|
||||
<!-- ══ HERO ══ -->
|
||||
<section class="hero">
|
||||
<div class="hero-text reveal">
|
||||
|
||||
<h1>L'agriculture<br>de précision,<br><span>accessible.</span></h1>
|
||||
<p>Des technologies agricoles pour cartographier, diagnostiquer et piloter avec précision.</p>
|
||||
<div class="hero-form">
|
||||
<input class="hero-input" type="email" placeholder="Votre adresse email">
|
||||
<button class="btn-hero">
|
||||
Demander une démo
|
||||
<span class="material-icons-round" style="font-size:18px;">arrow_forward</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hero-visual reveal">
|
||||
<div class="float-badge fb-1">
|
||||
<span class="material-icons-round">satellite_alt</span>
|
||||
NDVI · Analyse live
|
||||
</div>
|
||||
<div class="float-badge fb-2">
|
||||
<span class="material-icons-round">check_circle</span>
|
||||
+34% détection précoce
|
||||
</div>
|
||||
<div class="hero-mockup">
|
||||
<div class="hero-mockup-bar">
|
||||
<div class="hm-dot hm-d1"></div>
|
||||
<div class="hm-dot hm-d2"></div>
|
||||
<div class="hm-dot hm-d3"></div>
|
||||
</div>
|
||||
<div class="hero-card">
|
||||
<div class="hc-icon"><span class="material-icons-round">satellite_alt</span></div>
|
||||
<div class="hc-text">
|
||||
<div class="hc-title">KIRIQ AI</div>
|
||||
<div class="hc-sub">Diagnostic agricole à distance</div>
|
||||
</div>
|
||||
<div class="hc-arrow"><span class="material-icons-round">chevron_right</span></div>
|
||||
</div>
|
||||
<div class="hero-card">
|
||||
<div class="hc-icon" style="background:#e07c00;"><span class="material-icons-round">flight</span></div>
|
||||
<div class="hc-text">
|
||||
<div class="hc-title">Jool Monitor</div>
|
||||
<div class="hc-sub">Vision terrain augmentée</div>
|
||||
</div>
|
||||
<div class="hc-arrow"><span class="material-icons-round">chevron_right</span></div>
|
||||
</div>
|
||||
<div class="hero-card">
|
||||
<div class="hc-icon" style="background:#1a6080;"><span class="material-icons-round">badge</span></div>
|
||||
<div class="hc-text">
|
||||
<div class="hc-title">Jool ID</div>
|
||||
<div class="hc-sub">Gestion digitale des producteurs</div>
|
||||
</div>
|
||||
<div class="hc-arrow"><span class="material-icons-round">chevron_right</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
47
templates/core/partials/_nav.html
Normal file
@@ -0,0 +1,47 @@
|
||||
<!-- ══ NAV ══ -->
|
||||
<nav id="main-nav">
|
||||
<div class="nav-topbar">
|
||||
<a href="{% url 'core:home' %}" class="nav-logo">
|
||||
{% load static %}
|
||||
<img src="{% static 'img/logo.png' %}" alt="Jool International" style="height:38px;width:auto;">
|
||||
</a>
|
||||
|
||||
<ul class="nav-links" id="nav-links">
|
||||
<li><a href="{% url 'core:home' %}#kiriq">KIRIQ AI</a></li>
|
||||
<li><a href="{% url 'core:home' %}#monitor">Jool Monitor</a></li>
|
||||
<li><a href="{% url 'core:home' %}#joolid">Jool ID</a></li>
|
||||
|
||||
<li><a href="{% url 'core:about' %}">À propos</a></li>
|
||||
{% if careers_enabled %}
|
||||
<li>
|
||||
<a href="{% url 'careers:job_list' %}">
|
||||
Carrières{% if open_jobs_count %} <span style="background:var(--teal);color:#fff;border-radius:100px;font-size:11px;padding:1px 7px;margin-left:4px;">{{ open_jobs_count }}</span>{% endif %}
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
|
||||
<button class="nav-hamburger" id="nav-hamburger" aria-label="Menu" aria-expanded="false">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="nav-drawer" id="nav-drawer">
|
||||
<ul>
|
||||
<li><a href="{% url 'core:home' %}#kiriq">KIRIQ AI</a></li>
|
||||
<li><a href="{% url 'core:home' %}#monitor">Jool Monitor</a></li>
|
||||
<li><a href="{% url 'core:home' %}#joolid">Jool ID</a></li>
|
||||
<li><a href="{% url 'core:home' %}#faq">FAQ</a></li>
|
||||
<li><a href="{% url 'core:about' %}">À propos</a></li>
|
||||
{% if careers_enabled %}
|
||||
<li>
|
||||
<a href="{% url 'careers:job_list' %}">
|
||||
Carrières{% if open_jobs_count %} <span style="background:var(--teal);color:#fff;border-radius:100px;font-size:11px;padding:1px 7px;margin-left:4px;">{{ open_jobs_count }}</span>{% endif %}
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
98
templates/core/partials/_section_joolid.html
Normal file
@@ -0,0 +1,98 @@
|
||||
<!-- ══ JOOL ID ══ -->
|
||||
<section class="section s-id" id="joolid">
|
||||
<div class="section-inner">
|
||||
<div class="two-col">
|
||||
<div class="reveal">
|
||||
<span class="section-tag tag-light">
|
||||
<span class="material-icons-round" style="font-size:13px;">badge</span>
|
||||
Digitalisation & Gestion
|
||||
</span>
|
||||
<h2 class="section-title">Chaque producteur. Chaque parcelle.<br><em>Une seule source de vérité.</em> Du terrain à la décision.</h2>
|
||||
<p class="section-body">JooL ID centralise les données producteurs, parcelles et opérations terrain dans une plateforme conçue pour fiabiliser la collecte, simplifier le suivi et piloter votre filière avec plus de clarté.
|
||||
</p>
|
||||
<div class="uc-stack">
|
||||
<div class="uc-row">
|
||||
<span class="uc-num">01</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title">Profils producteurs vérifiés</div>
|
||||
<div class="uc-desc">Créez des fiches fiables, complètes et prêtes pour le terrain, les audits et les partenaires.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uc-row">
|
||||
<span class="uc-num">02</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title">Parcelles géolocalisées</div>
|
||||
<div class="uc-desc">Reliez chaque producteur à ses parcelles, surfaces et cultures dans une vue claire et exploitable.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uc-row">
|
||||
<span class="uc-num">03</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title">Pilotage de programme</div>
|
||||
<div class="uc-desc">Suivez encadrement, conformité, collecte et performance depuis une base unifiée.</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-row">
|
||||
<a href="https://jool-id.com/" class="btn-primary" target="_blank">
|
||||
<span class="material-icons-round">east</span>
|
||||
Démarrer gratuitement
|
||||
</a>
|
||||
<a href="{% url 'core:joolid' %}" class="btn-outline-dark">En savoir plus</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="reveal">
|
||||
<div class="id-cards">
|
||||
<div class="id-card">
|
||||
<div class="id-avatar" style="background:#e0f2f0; font-size:1.4rem;">👨🏾🌾</div>
|
||||
<div class="id-info">
|
||||
<div class="id-name">Kouamé Assi</div>
|
||||
<div class="id-meta">Palmier · 4.2 ha · Coopérative Cowabo</div>
|
||||
</div>
|
||||
<span class="id-badge badge-verified">Vérifié</span>
|
||||
</div>
|
||||
<div class="id-card">
|
||||
<div class="id-avatar" style="background:#fff3cd; font-size:1.4rem;">👩🏾🌾</div>
|
||||
<div class="id-info">
|
||||
<div class="id-name">Adjoua Koffi</div>
|
||||
<div class="id-meta">Hévéa · 7.8 ha · Coopérative Sud</div>
|
||||
</div>
|
||||
<span class="id-badge badge-verified">Vérifié</span>
|
||||
</div>
|
||||
<div class="id-card">
|
||||
<div class="id-avatar" style="background:#e8f4fd; font-size:1.4rem;">👨🏿🌾</div>
|
||||
<div class="id-info">
|
||||
<div class="id-name">N'Guessan Yao</div>
|
||||
<div class="id-meta">Cacao · 2.6 ha · Coopérative Nord</div>
|
||||
</div>
|
||||
<span class="id-badge badge-pending">En attente</span>
|
||||
</div>
|
||||
<div class="id-card">
|
||||
<div class="id-avatar" style="background:#f0e8fd; font-size:1.4rem;">👩🏾🌾</div>
|
||||
<div class="id-info">
|
||||
<div class="id-name">Fatou Diallo</div>
|
||||
<div class="id-meta">Palmier · 5.1 ha · Coopérative Ouest</div>
|
||||
</div>
|
||||
<span class="id-badge badge-verified">Vérifié</span>
|
||||
</div>
|
||||
<!-- summary card -->
|
||||
<div
|
||||
style="background:var(--teal);border-radius:14px;padding:16px 18px;display:flex;align-items:center;gap:14px;">
|
||||
<span class="material-icons-round" style="color:white;font-size:28px;">people</span>
|
||||
<div>
|
||||
<div
|
||||
style="font-size:1.6rem;font-weight:900;font-family:var(--display);color:white;letter-spacing:-.04em;">
|
||||
3 248</div>
|
||||
<div style="font-size:13px;color:rgba(255,255,255,.65);">Producteurs enregistrés</div>
|
||||
</div>
|
||||
<div style="margin-left:auto;text-align:right;">
|
||||
<div style="font-size:1.2rem;font-weight:900;font-family:var(--display);color:white;">12 580 ha</div>
|
||||
<div style="font-size:13px;color:rgba(255,255,255,.65);">Surface totale</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
59
templates/core/partials/_section_kiriq.html
Normal file
@@ -0,0 +1,59 @@
|
||||
{% load static %}
|
||||
<!-- ══ KIRIQ AI ══ -->
|
||||
<section class="section s-kiriq" id="kiriq">
|
||||
<div class="section-inner">
|
||||
<div class="two-col">
|
||||
<div class="reveal">
|
||||
<span class="section-tag tag-teal">
|
||||
<span class="material-icons-round" style="font-size:13px;">satellite_alt</span>
|
||||
Satellitaire & IA
|
||||
</span>
|
||||
<h2 class="section-title">Diagnostiquez vos parcelles<br>depuis <em>l'espace.</em></h2>
|
||||
<p class="section-body">KIRiQ AI vous aide à lire l’état réel de vos parcelles, détecter les anomalies plus tôt et décider avec une longueur d’avance.</p>
|
||||
<div class="uc-stack">
|
||||
<div class="uc-row">
|
||||
<span class="uc-num">01</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title">Diagnostic instantané</div>
|
||||
<div class="uc-desc">Lancez une première lecture parcellaire en quelques minutes et validez rapidement les zones à surveiller.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uc-row">
|
||||
<span class="uc-num">02</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title">Suivi priorisé</div>
|
||||
<div class="uc-desc">Recevez des alertes utiles pour cibler les interventions là où l’impact terrain est le plus fort.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uc-row">
|
||||
<span class="uc-num">03</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title">Pilotage à l’échelle</div>
|
||||
<div class="uc-desc">Comparez vos parcelles, alignez vos équipes et décidez avec une vision claire, du bloc à la filière. </div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-row">
|
||||
<a href="https://kiriq.ai/" class="btn-primary" target="_blank">
|
||||
<span class="material-icons-round">east</span>
|
||||
Demander une démo
|
||||
</a>
|
||||
<a href="{% url 'core:kiriq' %}" class="btn-outline-dark">En savoir plus</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="visual-box vb-dark reveal" style="position:relative;padding:0;overflow:hidden;">
|
||||
<img src="{% static 'img/Kiriq AI.jpg' %}" alt="Kiriq AI — analyse parcellaire">
|
||||
<div class="chip-float cf-tl">
|
||||
<span class="material-icons-round">warning</span>
|
||||
4 anomalies détectées
|
||||
</div>
|
||||
<div class="chip-float cf-br">
|
||||
<span class="material-icons-round">trending_up</span>
|
||||
NDVI +12 pts
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
61
templates/core/partials/_section_monitor.html
Normal file
@@ -0,0 +1,61 @@
|
||||
{% load static %}
|
||||
<!-- ══ JOOL MONITOR ══ -->
|
||||
<section class="section s-monitor" id="monitor">
|
||||
<div class="section-inner">
|
||||
<div class="two-col flip">
|
||||
<div class="reveal">
|
||||
<span class="section-tag tag-white">
|
||||
<span class="material-icons-round" style="font-size:13px;">flight</span>
|
||||
Cartographie haute résolution
|
||||
</span>
|
||||
<h2 class="section-title" style="color:var(--white);">Voyez votre terrain avec <em>une précision</em> nouvelle.
|
||||
|
||||
</h2>
|
||||
<p class="section-body-light">JooL Monitor transforme l’imagerie drone en lecture terrain exploitable pour compter, mesurer, cartographier et contrôler vos parcelles avec un niveau de détail prêt à l’action.</p>
|
||||
<div class="uc-stack">
|
||||
<div class="uc-row uc-row-dark">
|
||||
<span class="uc-num uc-num-light">01</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title" style="color:var(--white);">Comptage intelligent</div>
|
||||
<div class="uc-desc-light">Une lecture rapide des densités, manquants et répartitions sur chaque parcelle.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uc-row uc-row-dark">
|
||||
<span class="uc-num uc-num-light">02</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title" style="color:var(--white);">Cartographie avancée</div>
|
||||
<div class="uc-desc-light"> Produisez des orthomosaïques, modèles 3D et délimitations précises de vos surfaces.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uc-row uc-row-dark">
|
||||
<span class="uc-num uc-num-light">03</span>
|
||||
<div class="uc-body">
|
||||
<div class="uc-title" style="color:var(--white);">Contrôle visuel continu</div>
|
||||
<div class="uc-desc-light">Comparez les missions dans le temps et suivez les écarts qui comptent vraiment.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-row">
|
||||
<a href="https://jool-monitor.com/" class="btn-primary" target="_blank">
|
||||
<span class="material-icons-round">east</span>
|
||||
Planifier un vol
|
||||
</a>
|
||||
<a href="{% url 'core:monitor' %}" class="btn-outline-light">En savoir plus</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drone-svg-wrap reveal" style="padding:0;">
|
||||
<img src="{% static 'img/JooL Monitor.jpg' %}" alt="JooL Monitor — cartographie drone">
|
||||
<div class="chip-float" style="top:14px;right:16px;animation-delay:.3s;">
|
||||
<span class="material-icons-round">place</span>
|
||||
Palmier bloc 4
|
||||
</div>
|
||||
<div class="chip-float" style="bottom:18px;left:14px;animation-delay:2.2s;">
|
||||
<span class="material-icons-round">report_problem</span>
|
||||
3 anomalies détectés
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
27
templates/core/partials/_stats.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!-- ══ STATS ══ -->
|
||||
<section class="s-stats">
|
||||
<div class="section-inner">
|
||||
<div class="stats-header reveal">
|
||||
<h2>Des résultats qui parlent<br>d'eux-mêmes.</h2>
|
||||
<p>L'impact de nos solutions sur le terrain, en chiffres.</p>
|
||||
</div>
|
||||
<div class="stats-row reveal">
|
||||
<div class="stat-cell">
|
||||
<div class="stat-val">+280 000</div>
|
||||
<div class="stat-lbl">Producteurs digitalisés</div>
|
||||
</div>
|
||||
<div class="stat-cell">
|
||||
<div class="stat-val">+100 000 ha</div>
|
||||
<div class="stat-lbl">Superficie suivie</div>
|
||||
</div>
|
||||
<div class="stat-cell">
|
||||
<div class="stat-val">3</div>
|
||||
<div class="stat-lbl">Cultures couvertes</div>
|
||||
</div>
|
||||
<div class="stat-cell">
|
||||
<div class="stat-val">89%</div>
|
||||
<div class="stat-lbl">Précision IA</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
13
templates/core/partials/_testimonial.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!-- ══ TESTIMONIAL ══ -->
|
||||
<section class="s-testimonial">
|
||||
<div class="section-inner reveal">
|
||||
<div class="testimonial-avatar">🌿</div>
|
||||
<blockquote class="testimonial-quote">
|
||||
"Jool International a transformé notre façon de piloter nos 8 000 hectares de palmiers. Nous anticipons les
|
||||
crises bien avant qu'elles arrivent sur le terrain."
|
||||
</blockquote>
|
||||
<div class="testimonial-author">
|
||||
<strong>Directeur Technique</strong> · Grande plantation de palmier à huile, Côte d'Ivoire
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
7
templates/core/partials/_trust_strip.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<!-- ══ TRUST STRIP ══ -->
|
||||
<div class="trust-strip">
|
||||
<div class="trust-item"><span class="material-icons-round">satellite_alt</span>Télédétection</div>
|
||||
<div class="trust-item"><span class="material-icons-round">camera</span>Cartographie</div>
|
||||
<div class="trust-item"><span class="material-icons-round">badge</span>Données producteurs</div>
|
||||
<div class="trust-item"><span class="material-icons-round">analytics</span>Aide à la décision</div>
|
||||
</div>
|
||||
28
templates/core/partials/_trusted_by.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{% load static %}
|
||||
<!-- ══ TRUSTED BY ══ -->
|
||||
<section class="s-trusted">
|
||||
<div class="section-inner">
|
||||
<h2 class="trusted-title reveal">La solution de référence pour <em>l'agri-industrie africaine.</em></h2>
|
||||
<p class="trusted-sub reveal">Industriels, coopératives et institutions nous font confiance.</p>
|
||||
</div>
|
||||
|
||||
<!-- Défilement infini : les logos sont dupliqués pour un loop sans coupure -->
|
||||
<div class="logos-track-wrap">
|
||||
<div class="logos-track">
|
||||
<!-- Série 1 -->
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/apromac.png' %}" alt="Apromac"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/pmci.jpeg' %}" alt="PMCI"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/sodexam.png' %}" alt="Sodexam"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/trci.jpg' %}" alt="TRCI"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/Archetyp.jpeg' %}" alt="Archetyp"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/tonys_chocolonely.svg' %}" alt="Tony's Chocolonely"></div>
|
||||
<!-- Série 2 (copie pour loop sans coupure) -->
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/apromac.png' %}" alt="Apromac"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/pmci.jpeg' %}" alt="PMCI"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/sodexam.png' %}" alt="Sodexam"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/trci.jpg' %}" alt="TRCI"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/Archetyp.jpeg' %}" alt="Archetyp"></div>
|
||||
<div class="logo-slide"><img src="{% static 'img/partenaires/tonys_chocolonely.svg' %}" alt="Tony's Chocolonely"></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
232
templates/core/privacy.html
Normal file
@@ -0,0 +1,232 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}Politique de confidentialité — Jool International{% endblock %}
|
||||
{% block title_plain %}Politique de confidentialité — Jool International{% endblock %}
|
||||
{% block meta_description %}Politique de confidentialité de Jool International : données collectées, finalités, durée de conservation et droits des utilisateurs.{% endblock %}
|
||||
{% block meta_robots %}noindex, follow{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<style>
|
||||
.privacy-hero {
|
||||
background: var(--teal-pale);
|
||||
padding: 72px 64px 48px;
|
||||
text-align: center;
|
||||
}
|
||||
.privacy-hero h1 {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: clamp(2rem, 3.5vw, 3rem);
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.privacy-hero h1 em { font-style: normal; color: var(--teal); }
|
||||
.privacy-hero p {
|
||||
color: #666;
|
||||
font-size: 15px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.privacy-body {
|
||||
max-width: 780px;
|
||||
margin: 0 auto;
|
||||
padding: 64px 32px 96px;
|
||||
}
|
||||
|
||||
.privacy-body h2 {
|
||||
font-family: var(--display);
|
||||
font-weight: 800;
|
||||
font-size: 1.25rem;
|
||||
color: var(--black);
|
||||
margin: 48px 0 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
.privacy-body h2 .material-icons-round {
|
||||
font-size: 20px;
|
||||
color: var(--teal);
|
||||
}
|
||||
.privacy-body h2:first-child { margin-top: 0; }
|
||||
|
||||
.privacy-body p, .privacy-body li {
|
||||
color: #444;
|
||||
font-size: 15px;
|
||||
line-height: 1.75;
|
||||
font-weight: 300;
|
||||
}
|
||||
.privacy-body ul {
|
||||
padding-left: 20px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
.privacy-body ul li { margin-bottom: 6px; }
|
||||
|
||||
.privacy-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 16px 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
.privacy-table th {
|
||||
background: var(--teal);
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
padding: 10px 14px;
|
||||
text-align: left;
|
||||
}
|
||||
.privacy-table td {
|
||||
padding: 10px 14px;
|
||||
border-bottom: 1px solid var(--gray);
|
||||
color: #444;
|
||||
font-weight: 300;
|
||||
vertical-align: top;
|
||||
}
|
||||
.privacy-table tr:last-child td { border-bottom: none; }
|
||||
.privacy-table tr:nth-child(even) td { background: var(--gray-2); }
|
||||
|
||||
.privacy-highlight {
|
||||
background: var(--teal-pale);
|
||||
border-left: 3px solid var(--teal);
|
||||
border-radius: 0 12px 12px 0;
|
||||
padding: 16px 20px;
|
||||
margin: 20px 0;
|
||||
font-size: 14px;
|
||||
color: #444;
|
||||
font-weight: 300;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.privacy-hero { padding: 48px 24px 36px; }
|
||||
.privacy-body { padding: 40px 20px 64px; }
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<!-- ── Hero ── -->
|
||||
<section class="privacy-hero">
|
||||
<h2 class="section-tag tag-teal" style="justify-content:center;margin-bottom:16px;">
|
||||
<span class="material-icons-round" style="font-size:13px;">shield</span>
|
||||
Vos données, votre droit
|
||||
</h2>
|
||||
<h1>Politique de <em>confidentialité</em></h1>
|
||||
<p>Dernière mise à jour : mai 2026</p>
|
||||
</section>
|
||||
|
||||
<!-- ── Contenu ── -->
|
||||
<div class="privacy-body">
|
||||
|
||||
<div class="privacy-highlight">
|
||||
Jool International s'engage à protéger vos données personnelles. Cette page explique clairement quelles données nous collectons, pourquoi, et comment vous pouvez exercer vos droits.
|
||||
</div>
|
||||
|
||||
<!-- 1 -->
|
||||
<h2><span class="material-icons-round">business</span>1. Responsable du traitement</h2>
|
||||
<p>
|
||||
<strong>Jool International</strong><br>
|
||||
Abidjan, Côte d'Ivoire<br>
|
||||
Email : <a href="mailto:info@jool-int.com">info@jool-int.com</a><br>
|
||||
Tél : +225 27 22 557 825
|
||||
</p>
|
||||
|
||||
<!-- 2 -->
|
||||
<h2><span class="material-icons-round">database</span>2. Données collectées</h2>
|
||||
<p>Nous collectons des données uniquement lorsque vous interagissez activement avec notre site.</p>
|
||||
|
||||
<table class="privacy-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Formulaire</th>
|
||||
<th>Données collectées</th>
|
||||
<th>Finalité</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><strong>Demande de contact</strong></td>
|
||||
<td>Nom, prénom, email, téléphone, message</td>
|
||||
<td>Répondre à votre demande commerciale</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Candidature</strong></td>
|
||||
<td>Nom, prénom, email, téléphone, lettre de motivation, CV (fichier), LinkedIn, portfolio</td>
|
||||
<td>Traitement de votre candidature</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<p>Nous ne collectons <strong>aucune donnée de navigation</strong> (Google Analytics ou autre tracker). Nous n'utilisons pas de cookies publicitaires ou de profilage.</p>
|
||||
|
||||
<!-- 3 -->
|
||||
<h2><span class="material-icons-round">cookie</span>3. Cookies utilisés</h2>
|
||||
<table class="privacy-table">
|
||||
<thead>
|
||||
<tr><th>Cookie</th><th>Rôle</th><th>Durée</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><code>csrftoken</code></td>
|
||||
<td>Sécurité des formulaires (protection contre les attaques CSRF)</td>
|
||||
<td>1 an</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>sessionid</code></td>
|
||||
<td>Session administrateur uniquement (visiteurs non connectés : inactif)</td>
|
||||
<td>2 semaines</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="privacy-highlight">
|
||||
Ces cookies sont <strong>strictement nécessaires</strong> au fonctionnement du site. Ils ne tracent pas votre navigation et ne nécessitent pas votre consentement.
|
||||
</div>
|
||||
|
||||
<!-- 4 -->
|
||||
<h2><span class="material-icons-round">schedule</span>4. Durée de conservation</h2>
|
||||
<ul>
|
||||
<li><strong>Demandes de contact :</strong> conservées 12 mois, puis supprimées.</li>
|
||||
<li><strong>Candidatures et CVs :</strong> conservés 24 mois après la clôture de l'offre, puis supprimés.</li>
|
||||
</ul>
|
||||
|
||||
<!-- 5 -->
|
||||
<h2><span class="material-icons-round">share</span>5. Partage des données</h2>
|
||||
<p>
|
||||
Vos données ne sont <strong>jamais vendues, louées ni cédées</strong> à des tiers.<br>
|
||||
Elles sont accessibles uniquement par l'équipe Jool International habilitée à traiter votre demande.
|
||||
</p>
|
||||
<p>Notre hébergement est assuré via un serveur privé (VPS). Les fichiers CV sont stockés de manière sécurisée et ne sont pas accessibles publiquement.</p>
|
||||
|
||||
<!-- 6 -->
|
||||
<h2><span class="material-icons-round">fonts</span>6. Polices Google Fonts</h2>
|
||||
<p>
|
||||
Notre site utilise les polices <em>Barlow</em> et <em>Roboto</em> chargées depuis les serveurs de Google Fonts. Ce chargement implique que votre adresse IP est transmise aux serveurs de Google lors de votre visite. Google déclare ne pas utiliser ces données à des fins publicitaires dans ce contexte.<br>
|
||||
Pour plus d'informations : <a href="https://policies.google.com/privacy" target="_blank" rel="noopener">politique de confidentialité de Google</a>.
|
||||
</p>
|
||||
|
||||
<!-- 7 -->
|
||||
<h2><span class="material-icons-round">verified_user</span>7. Vos droits</h2>
|
||||
<p>Conformément à la loi ivoirienne n°2013-450 relative à la protection des données personnelles, vous disposez des droits suivants :</p>
|
||||
<ul>
|
||||
<li><strong>Droit d'accès</strong> — connaître les données que nous détenons sur vous.</li>
|
||||
<li><strong>Droit de rectification</strong> — corriger des données inexactes.</li>
|
||||
<li><strong>Droit de suppression</strong> — demander l'effacement de vos données.</li>
|
||||
<li><strong>Droit d'opposition</strong> — vous opposer à un traitement.</li>
|
||||
</ul>
|
||||
<p>
|
||||
Pour exercer ces droits, contactez-nous à :<br>
|
||||
<a href="mailto:info@jool-int.com"><strong>info@jool-int.com</strong></a>
|
||||
</p>
|
||||
<p>Nous nous engageons à répondre dans un délai de <strong>30 jours</strong>.</p>
|
||||
|
||||
<!-- 8 -->
|
||||
<h2><span class="material-icons-round">edit_note</span>8. Modifications</h2>
|
||||
<p>
|
||||
Cette politique peut être mise à jour en cas d'évolution de nos pratiques ou de la réglementation. La date de dernière mise à jour est indiquée en haut de cette page. Nous vous invitons à la consulter régulièrement.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
163
templates/core/products/joolid.html
Normal file
@@ -0,0 +1,163 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}Jool ID — Digitalisation & gestion des producteurs agricoles | Jool International{% endblock %}
|
||||
{% block title_plain %}Jool ID — Digitalisation & gestion des producteurs agricoles | Jool International{% endblock %}
|
||||
|
||||
{% block meta_description %}Jool ID numérise chaque producteur et chaque parcelle : profils vérifiés, géolocalisation des exploitations, traçabilité des intrants et pilotage de programme agricole à grande échelle en Afrique.{% endblock %}
|
||||
|
||||
{% block og_title %}Jool ID — La digitalisation des producteurs agricoles africains{% endblock %}
|
||||
{% block og_description %}Une source de vérité unique pour chaque producteur et chaque parcelle. Géolocalisation, traçabilité et pilotage de programme à l'échelle.{% endblock %}
|
||||
{% block twitter_title %}Jool ID — La digitalisation des producteurs agricoles africains{% endblock %}
|
||||
{% block twitter_description %}Une source de vérité unique pour chaque producteur et chaque parcelle. Géolocalisation, traçabilité et pilotage de programme à l'échelle.{% endblock %}
|
||||
|
||||
{% block schema_org %}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "SoftwareApplication",
|
||||
"name": "Jool ID",
|
||||
"applicationCategory": "AgricultureApplication",
|
||||
"operatingSystem": "Web",
|
||||
"url": "https://jool-int.com/joolid/",
|
||||
"description": "Plateforme de digitalisation des producteurs agricoles : profils vérifiés, parcelles géolocalisées, traçabilité des intrants et pilotage de programme à grande échelle.",
|
||||
"offers": { "@type": "Offer", "priceCurrency": "XOF" },
|
||||
"provider": {
|
||||
"@type": "Organization",
|
||||
"name": "Jool International",
|
||||
"url": "https://jool-int.com"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<style>
|
||||
.product-hero { background: var(--teal-pale); padding: 80px 64px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
|
||||
.product-hero h1 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: -0.03em; color: var(--black); line-height: 1.05; margin-bottom: 20px; }
|
||||
.product-hero h1 em { font-style: normal; color: var(--teal); }
|
||||
.product-hero p { font-size: 17px; color: #555; line-height: 1.75; font-weight: 300; max-width: 480px; margin-bottom: 32px; }
|
||||
.product-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(25,112,97,.12); color: var(--teal); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
|
||||
.product-eyebrow .material-icons-round { font-size: 14px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
|
||||
.feature-card { background: var(--gray-2); border-radius: 18px; padding: 28px; }
|
||||
.feature-card-icon { width: 48px; height: 48px; background: rgba(25,112,97,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
|
||||
.feature-card-icon .material-icons-round { color: var(--teal); font-size: 24px; }
|
||||
.feature-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--black); margin-bottom: 10px; }
|
||||
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; font-weight: 300; }
|
||||
.product-features { padding: 80px 64px; background: var(--white); }
|
||||
.product-features-inner { max-width: 1200px; margin: 0 auto; }
|
||||
.product-how { padding: 80px 64px; background: var(--dark-bg); }
|
||||
.product-how-inner { max-width: 900px; margin: 0 auto; }
|
||||
.product-how h2 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); letter-spacing: -0.03em; margin-bottom: 48px; text-align: center; }
|
||||
.steps { display: flex; flex-direction: column; }
|
||||
.step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
|
||||
.step:last-child { border-bottom: none; }
|
||||
.step-num { font-family: var(--display); font-weight: 900; font-size: 2rem; color: var(--accent); line-height: 1; }
|
||||
.step-body h4 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
|
||||
.step-body p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; font-weight: 300; }
|
||||
.product-cta { padding: 80px 64px; text-align: center; background: var(--teal-pale); }
|
||||
.product-cta h2 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--black); letter-spacing: -0.03em; margin-bottom: 16px; }
|
||||
.product-cta p { font-size: 16px; color: #666; margin-bottom: 32px; font-weight: 300; }
|
||||
.btn-cta-lg { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 16px; padding: 16px 36px; border-radius: 100px; background: var(--teal); color: var(--white); transition: filter .15s, transform .12s; }
|
||||
.btn-cta-lg:hover { filter: brightness(1.1); transform: translateY(-2px); }
|
||||
.btn-back-product { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #888; margin-bottom: 32px; transition: color .15s; }
|
||||
.btn-back-product:hover { color: var(--teal); }
|
||||
.id-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
|
||||
.id-stat { background: var(--white); border: 1.5px solid var(--gray); border-radius: 16px; padding: 24px; text-align: center; }
|
||||
.id-stat-val { font-family: var(--display); font-weight: 900; font-size: 2.2rem; color: var(--teal); letter-spacing: -.04em; }
|
||||
.id-stat-label { font-size: 13px; color: #888; margin-top: 4px; }
|
||||
@media (max-width: 768px) { .product-hero { grid-template-columns: 1fr; padding: 48px 24px 40px; } .product-features, .product-how, .product-cta { padding: 56px 24px; } .features-grid, .id-stats { grid-template-columns: 1fr; } }
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div style="background:var(--teal-pale);padding:24px 64px 0;">
|
||||
<a href="{% url 'core:home' %}#joolid" class="btn-back-product">
|
||||
<span class="material-icons-round" style="font-size:16px;">arrow_back</span> Retour à l'accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<section class="product-hero">
|
||||
<div class="reveal">
|
||||
<div class="product-eyebrow">
|
||||
<span class="material-icons-round">badge</span> Digitalisation & Gestion
|
||||
</div>
|
||||
<h1>Chaque producteur. Chaque parcelle.<br><em>Une seule source de vérité.</em></h1>
|
||||
<p>JooL ID centralise les données producteurs, parcelles et opérations terrain dans une plateforme conçue pour fiabiliser la collecte, simplifier le suivi et piloter votre filière avec plus de clarté.</p>
|
||||
|
||||
<div class="btn-row" style="margin-top:32px;">
|
||||
<a href="https://joolid.com/" class="btn-cta-lg" target="_blank">
|
||||
<span class="material-icons-round">east</span> Démarrer gratuitement
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="reveal">
|
||||
<div class="id-cards" style="display:flex;flex-direction:column;gap:10px;">
|
||||
<div style="background:white;border-radius:14px;padding:14px 16px;display:flex;align-items:center;gap:12px;box-shadow:0 2px 12px rgba(0,0,0,.06);">
|
||||
<div style="width:40px;height:40px;border-radius:10px;background:#e0f2f0;display:flex;align-items:center;justify-content:center;font-size:1.2rem;">👨🏾🌾</div>
|
||||
<div style="flex:1;"><div style="font-weight:700;font-size:14px;">Kouamé Assi</div><div style="font-size:12px;color:#888;">Palmier · 4.2 ha · Coopérative Cowabo</div></div>
|
||||
<span style="font-size:11px;font-weight:700;background:#e0f2f0;color:var(--teal);padding:3px 10px;border-radius:100px;">Vérifié</span>
|
||||
</div>
|
||||
<div style="background:white;border-radius:14px;padding:14px 16px;display:flex;align-items:center;gap:12px;box-shadow:0 2px 12px rgba(0,0,0,.06);">
|
||||
<div style="width:40px;height:40px;border-radius:10px;background:#fff3cd;display:flex;align-items:center;justify-content:center;font-size:1.2rem;">👩🏾🌾</div>
|
||||
<div style="flex:1;"><div style="font-weight:700;font-size:14px;">Adjoua Koffi</div><div style="font-size:12px;color:#888;">Hévéa · 7.8 ha · Coopérative Sud</div></div>
|
||||
<span style="font-size:11px;font-weight:700;background:#e0f2f0;color:var(--teal);padding:3px 10px;border-radius:100px;">Vérifié</span>
|
||||
</div>
|
||||
<div style="background:white;border-radius:14px;padding:14px 16px;display:flex;align-items:center;gap:12px;box-shadow:0 2px 12px rgba(0,0,0,.06);">
|
||||
<div style="width:40px;height:40px;border-radius:10px;background:#e8f4fd;display:flex;align-items:center;justify-content:center;font-size:1.2rem;">👨🏿🌾</div>
|
||||
<div style="flex:1;"><div style="font-weight:700;font-size:14px;">N'Guessan Yao</div><div style="font-size:12px;color:#888;">Cacao · 2.6 ha · Coopérative Nord</div></div>
|
||||
<span style="font-size:11px;font-weight:700;background:#fff3cd;color:#856404;padding:3px 10px;border-radius:100px;">En attente</span>
|
||||
</div>
|
||||
<div style="background:var(--teal);border-radius:14px;padding:16px 18px;display:flex;align-items:center;gap:14px;">
|
||||
<span class="material-icons-round" style="color:white;font-size:28px;">people</span>
|
||||
<div><div style="font-size:1.6rem;font-weight:900;font-family:var(--display);color:white;letter-spacing:-.04em;">3 248</div><div style="font-size:13px;color:rgba(255,255,255,.65);">Producteurs enregistrés</div></div>
|
||||
<div style="margin-left:auto;text-align:right;"><div style="font-size:1.2rem;font-weight:900;font-family:var(--display);color:white;">12 580 ha</div><div style="font-size:13px;color:rgba(255,255,255,.65);">Surface totale</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-features">
|
||||
<div class="product-features-inner">
|
||||
<div style="text-align:center;">
|
||||
<span class="product-eyebrow">Fonctionnalités</span>
|
||||
<h2 style="font-family:var(--display);font-weight:900;font-style:italic;font-size:clamp(1.8rem,3vw,2.4rem);letter-spacing:-.03em;color:var(--black);">Ce que Jool ID fait pour vous</h2>
|
||||
</div>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card reveal"><div class="feature-card-icon"><span class="material-icons-round">person_pin</span></div><h3>Profils producteurs fiables</h3><p>Centralisez des fiches complètes, vérifiées et prêtes pour le terrain, les audits et les partenaires.</p></div>
|
||||
<div class="feature-card reveal"><div class="feature-card-icon"><span class="material-icons-round">grass</span></div><h3>Parcelles enfin lisibles</h3><p>Reliez chaque producteur à ses parcelles, cultures et surfaces dans une vue géographique claire et exploitable.</p></div>
|
||||
<div class="feature-card reveal"><div class="feature-card-icon"><span class="material-icons-round">groups</span></div><h3>Pilotage coopératif unifié</h3><p>Suivez membres, collecte, programmes et certifications depuis une base unique, structurée pour la décision.</p></div>
|
||||
<div class="feature-card reveal"><div class="feature-card-icon"><span class="material-icons-round">verified</span></div><h3>Conformité sans friction</h3><p>Préparez plus facilement vos contrôles, audits et exigences de traçabilité avec des données mieux organisées.</p></div>
|
||||
<div class="feature-card reveal"><div class="feature-card-icon"><span class="material-icons-round">phone_android</span></div><h3>Mobile, même hors ligne</h3><p>Collectez sur le terrain sans connexion, puis synchronisez automatiquement dès le retour du réseau.</p></div>
|
||||
<div class="feature-card reveal"><div class="feature-card-icon"><span class="material-icons-round">api</span></div><h3>API & intégrations</h3><p>Connectez JooL ID à votre ERP, vos outils métier ou vos workflows existants via une architecture ouverte.</p></div>
|
||||
</div>
|
||||
<div class="id-stats">
|
||||
<div class="id-stat reveal"><div class="id-stat-val">3 248</div><div class="id-stat-label">Producteurs enregistrés</div></div>
|
||||
<div class="id-stat reveal"><div class="id-stat-val">12 580 ha</div><div class="id-stat-label">Surface totale cartographiée</div></div>
|
||||
<div class="id-stat reveal"><div class="id-stat-val">98%</div><div class="id-stat-label">Taux de vérification</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-how">
|
||||
<div class="product-how-inner">
|
||||
<h2>Mise en place <em style="color:var(--accent);font-style:normal;">rapide</em></h2>
|
||||
<div class="steps">
|
||||
<div class="step reveal"><div class="step-num">01</div><div class="step-body"><h4>Import intelligent de vos données</h4><p>Importez vos fichiers existants et structurez votre base JooL ID sans repartir de zéro.</p></div></div>
|
||||
<div class="step reveal"><div class="step-num">02</div><div class="step-body"><h4>Onboarding des équipes terrain</h4><p>Vos agents prennent en main l’application rapidement, avec un parcours simple et opérationnel.</p></div></div>
|
||||
<div class="step reveal"><div class="step-num">03</div><div class="step-body"><h4>Collecte & vérification terrain</h4><p>Les données producteurs et parcelles sont collectées, géolocalisées et contrôlées directement sur le terrain.</p></div></div>
|
||||
<div class="step reveal"><div class="step-num">04</div><div class="step-body"><h4>Base prête à piloter</h4><p>En quelques semaines, vous disposez d’une base fiable, vérifiée et exploitable pour vos opérations, audits et reportings.</p></div></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-cta">
|
||||
<span class="product-eyebrow" style="margin-bottom:20px;">Prêt à digitaliser ?</span>
|
||||
<h2>Structurez votre filière<br>producteur dès aujourd'hui</h2>
|
||||
<p>Des coopératives de 200 membres aux industriels gérant 50 000 ha, Jool ID s'adapte à votre échelle.</p>
|
||||
<a href="{% url 'core:home' %}#contact" class="btn-cta-lg">
|
||||
<span class="material-icons-round">east</span> Démarrer gratuitement
|
||||
</a>
|
||||
</section>
|
||||
{% endblock %}
|
||||
192
templates/core/products/kiriq.html
Normal file
@@ -0,0 +1,192 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}KIRIQ AI — Diagnostic satellitaire & Intelligence Artificielle agricole | Jool International{% endblock %}
|
||||
{% block title_plain %}KIRIQ AI — Diagnostic satellitaire & Intelligence Artificielle agricole | Jool International{% endblock %}
|
||||
|
||||
{% block meta_description %}KIRIQ AI analyse vos cultures par satellite grâce à l'intelligence artificielle : détection précoce des maladies, suivi NDVI, cartographie de stress hydrique et aide à la décision pour les exploitations agricoles en Afrique.{% endblock %}
|
||||
|
||||
{% block og_title %}KIRIQ AI — Diagnostic satellitaire pour l'agriculture africaine{% endblock %}
|
||||
{% block og_description %}Détectez les anomalies sur vos parcelles avant qu'elles ne deviennent des pertes. KIRIQ AI analyse chaque hectare par satellite et IA.{% endblock %}
|
||||
{% block twitter_title %}KIRIQ AI — Diagnostic satellitaire pour l'agriculture africaine{% endblock %}
|
||||
{% block twitter_description %}Détectez les anomalies sur vos parcelles avant qu'elles ne deviennent des pertes. KIRIQ AI analyse chaque hectare par satellite et IA.{% endblock %}
|
||||
|
||||
{% block schema_org %}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "SoftwareApplication",
|
||||
"name": "KIRIQ AI",
|
||||
"applicationCategory": "AgricultureApplication",
|
||||
"operatingSystem": "Web",
|
||||
"url": "https://jool-int.com/kiriq/",
|
||||
"description": "Solution d'analyse satellitaire et d'intelligence artificielle pour le diagnostic agricole : détection de maladies, suivi NDVI, stress hydrique et aide à la décision.",
|
||||
"offers": { "@type": "Offer", "priceCurrency": "XOF" },
|
||||
"provider": {
|
||||
"@type": "Organization",
|
||||
"name": "Jool International",
|
||||
"url": "https://jool-int.com"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<style>
|
||||
.product-hero { background: var(--teal-pale); padding: 80px 64px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
|
||||
.product-hero-text h1 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: -0.03em; color: var(--black); line-height: 1.05; margin-bottom: 20px; }
|
||||
.product-hero-text h1 em { font-style: normal; color: var(--teal); }
|
||||
.product-hero-text p { font-size: 17px; color: #555; line-height: 1.75; font-weight: 300; max-width: 480px; margin-bottom: 32px; }
|
||||
.product-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(25,112,97,.12); color: var(--teal); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
|
||||
.product-eyebrow .material-icons-round { font-size: 14px; }
|
||||
.product-visual { background: var(--dark-bg); border-radius: 24px; aspect-ratio: 4/3; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
|
||||
.product-features { padding: 80px 64px; background: var(--white); }
|
||||
.product-features-inner { max-width: 1200px; margin: 0 auto; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
|
||||
.feature-card { background: var(--gray-2); border-radius: 18px; padding: 28px; }
|
||||
.feature-card-icon { width: 48px; height: 48px; background: rgba(25,112,97,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
|
||||
.feature-card-icon .material-icons-round { color: var(--teal); font-size: 24px; }
|
||||
.feature-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--black); margin-bottom: 10px; }
|
||||
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; font-weight: 300; }
|
||||
.product-how { padding: 80px 64px; background: var(--dark-bg); }
|
||||
.product-how-inner { max-width: 900px; margin: 0 auto; }
|
||||
.product-how h2 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); letter-spacing: -0.03em; margin-bottom: 48px; text-align: center; }
|
||||
.steps { display: flex; flex-direction: column; gap: 0; }
|
||||
.step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
|
||||
.step:last-child { border-bottom: none; }
|
||||
.step-num { font-family: var(--display); font-weight: 900; font-size: 2rem; color: var(--accent); line-height: 1; }
|
||||
.step-body h4 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
|
||||
.step-body p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; font-weight: 300; }
|
||||
.product-cta { padding: 80px 64px; text-align: center; background: var(--teal-pale); }
|
||||
.product-cta h2 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--black); letter-spacing: -0.03em; margin-bottom: 16px; }
|
||||
.product-cta p { font-size: 16px; color: #666; margin-bottom: 32px; font-weight: 300; }
|
||||
.btn-cta-lg { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 16px; padding: 16px 36px; border-radius: 100px; background: var(--teal); color: var(--white); transition: filter .15s, transform .12s; }
|
||||
.btn-cta-lg:hover { filter: brightness(1.1); transform: translateY(-2px); }
|
||||
.btn-back-product { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #888; margin-bottom: 32px; transition: color .15s; }
|
||||
.btn-back-product:hover { color: var(--teal); }
|
||||
@media (max-width: 768px) { .product-hero { grid-template-columns: 1fr; padding: 48px 24px 40px; } .product-features, .product-how, .product-cta { padding: 56px 24px; } .features-grid { grid-template-columns: 1fr; } }
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div style="background:var(--teal-pale);padding:24px 64px 0;">
|
||||
<a href="{% url 'core:home' %}#kiriq" class="btn-back-product">
|
||||
<span class="material-icons-round" style="font-size:16px;">arrow_back</span> Retour à l'accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div style="background:var(--teal-pale);padding:0 64px 64px;">
|
||||
<div class="product-hero" style="padding:0;">
|
||||
<div class="product-hero-text reveal">
|
||||
<span class="section-tag tag-teal" style="margin-bottom:20px;">
|
||||
<span class="material-icons-round" style="font-size:13px;">satellite_alt</span>
|
||||
Satellitaire & IA
|
||||
</span>
|
||||
<h1>Diagnostiquez vos parcelles<br>depuis <em>l'espace.</em></h1>
|
||||
<p>KIRiQ AI vous aide à lire l'état réel de vos parcelles, détecter les anomalies plus tôt et décider avec une longueur d'avance.</p>
|
||||
|
||||
<div class="btn-row" style="margin-top:32px;">
|
||||
<a href="https://kiriq.ai/" class="btn-cta-lg" target="_blank">
|
||||
<span class="material-icons-round">east</span> Demander une démo
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="product-visual reveal" style="padding:0;background:none;aspect-ratio:unset;">
|
||||
<img src="{% static 'img/Kiriq AI.jpg' %}" alt="Kiriq AI — analyse parcellaire"
|
||||
style="width:100%;height:auto;display:block;border-radius:24px;">
|
||||
<div class="chip-float cf-tl">
|
||||
<span class="material-icons-round">warning</span> 4 anomalies détectées
|
||||
</div>
|
||||
<div class="chip-float cf-br">
|
||||
<span class="material-icons-round">trending_up</span> NDVI +12 pts
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="product-features">
|
||||
<div class="product-features-inner">
|
||||
<div style="text-align:center;">
|
||||
<span class="product-eyebrow" style="margin-bottom:16px;">Fonctionnalités</span>
|
||||
<h2 style="font-family:var(--display);font-weight:900;font-style:italic;font-size:clamp(1.8rem,3vw,2.4rem);letter-spacing:-.03em;color:var(--black);">Ce que KIRiQ AI active pour vous</h2>
|
||||
</div>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">warning_amber</span></div>
|
||||
<h3>Détection avancée des stress</h3>
|
||||
<p>Identifiez plus tôt les zones sous stress hydrique ou nutritionnel, avant que l'impact ne soit visible sur le terrain.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">track_changes</span></div>
|
||||
<h3>Interventions mieux ciblées</h3>
|
||||
<p>Priorisez les parcelles qui demandent une action immédiate et concentrez vos ressources là où elles comptent le plus.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">dashboard</span></div>
|
||||
<h3>Vision multi-parcelles</h3>
|
||||
<p>Comparez vos blocs, suivez les écarts et pilotez vos décisions avec une lecture unifiée de l'exploitation.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">bar_chart</span></div>
|
||||
<h3>Prévision de rendement</h3>
|
||||
<p>Anticipez le potentiel de production par parcelle grâce à une lecture continue de la dynamique végétative.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">description</span></div>
|
||||
<h3>Rapports agronomiques instantanés</h3>
|
||||
<p>Générez des synthèses lisibles pour vos équipes terrain, vos managers et vos partenaires.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">integration_instructions</span></div>
|
||||
<h3>API & intégrations métier</h3>
|
||||
<p>Connectez KIRiQ AI à vos outils existants pour faire circuler la donnée sans friction.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-how">
|
||||
<div class="product-how-inner">
|
||||
<h2>Comment KIRiQ AI <em style="color:var(--accent);font-style:normal;">fonctionne ?</em></h2>
|
||||
<div class="steps">
|
||||
<div class="step reveal">
|
||||
<div class="step-num">01</div>
|
||||
<div class="step-body">
|
||||
<h4>Import ou dessin des parcelles</h4>
|
||||
<p>Importez vos fichiers ou dessinez directement vos parcelles sur la plateforme pour lancer l'analyse.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="step reveal">
|
||||
<div class="step-num">02</div>
|
||||
<div class="step-body">
|
||||
<h4>Acquisition satellite récente</h4>
|
||||
<p>KIRiQ AI récupère les données satellites les plus récentes disponibles sur chaque parcelle afin de suivre l'état de la végétation au plus près du temps réel.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="step reveal">
|
||||
<div class="step-num">03</div>
|
||||
<div class="step-body">
|
||||
<h4>Analyse biophysique par IA</h4>
|
||||
<p>KIRiQ AI mesure les réponses biophysiques globales de la végétation — chlorophylle, biomasse, humidité, structure foliaire — pour détecter les anomalies visibles dans le signal.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="step reveal">
|
||||
<div class="step-num">04</div>
|
||||
<div class="step-body">
|
||||
<h4>Rapport de lecture parcellaire</h4>
|
||||
<p>Les résultats sont restitués sous forme de cartes, indicateurs et zones prioritaires pour orienter la lecture agronomique, la vérification terrain et la décision.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-cta">
|
||||
<span class="product-eyebrow" style="margin-bottom:20px;">Prêt à commencer ?</span>
|
||||
<h2>Transformez votre vision des plantations</h2>
|
||||
<p>Rejoignez les industriels et coopératives qui pilotent déjà leurs exploitations avec KIRIQ AI.</p>
|
||||
<a href="{% url 'core:home' %}#contact" class="btn-cta-lg">
|
||||
<span class="material-icons-round">east</span> Demander une démo gratuite
|
||||
</a>
|
||||
</section>
|
||||
{% endblock %}
|
||||
179
templates/core/products/monitor.html
Normal file
@@ -0,0 +1,179 @@
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}Jool Monitor — Cartographie drone haute résolution | Jool International{% endblock %}
|
||||
{% block title_plain %}Jool Monitor — Cartographie drone haute résolution | Jool International{% endblock %}
|
||||
|
||||
{% block meta_description %}Jool Monitor transforme l'imagerie drone en données terrain exploitables : orthomosaïques, comptage de plants, modèles 3D et contrôle visuel continu de vos parcelles agricoles en Afrique.{% endblock %}
|
||||
|
||||
{% block og_title %}Jool Monitor — Cartographie drone haute résolution pour vos parcelles{% endblock %}
|
||||
{% block og_description %}Comptez, mesurez, cartographiez et contrôlez vos parcelles avec une précision nouvelle grâce à l'imagerie drone analysée par IA.{% endblock %}
|
||||
{% block twitter_title %}Jool Monitor — Cartographie drone haute résolution pour vos parcelles{% endblock %}
|
||||
{% block twitter_description %}Comptez, mesurez, cartographiez et contrôlez vos parcelles avec une précision nouvelle grâce à l'imagerie drone analysée par IA.{% endblock %}
|
||||
|
||||
{% block schema_org %}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "SoftwareApplication",
|
||||
"name": "Jool Monitor",
|
||||
"applicationCategory": "AgricultureApplication",
|
||||
"operatingSystem": "Web",
|
||||
"url": "https://jool-int.com/monitor/",
|
||||
"description": "Solution de cartographie drone pour l'agriculture : orthomosaïques, comptage intelligent, modèles 3D et suivi visuel continu des exploitations agricoles.",
|
||||
"offers": { "@type": "Offer", "priceCurrency": "XOF" },
|
||||
"provider": {
|
||||
"@type": "Organization",
|
||||
"name": "Jool International",
|
||||
"url": "https://jool-int.com"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
<style>
|
||||
.product-hero-dark { background: var(--dark-bg); padding: 80px 64px 64px; }
|
||||
.product-hero-dark-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
|
||||
.product-hero-dark h1 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: -0.03em; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
|
||||
.product-hero-dark h1 em { font-style: normal; color: var(--accent); }
|
||||
.product-hero-dark p { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; font-weight: 300; max-width: 480px; margin-bottom: 32px; }
|
||||
.product-eyebrow-light { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
|
||||
.product-eyebrow-light .material-icons-round { font-size: 14px; }
|
||||
.product-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(25,112,97,.12); color: var(--teal); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
|
||||
.product-eyebrow .material-icons-round { font-size: 14px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
|
||||
.feature-card { background: var(--gray-2); border-radius: 18px; padding: 28px; }
|
||||
.feature-card-icon { width: 48px; height: 48px; background: rgba(25,112,97,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
|
||||
.feature-card-icon .material-icons-round { color: var(--teal); font-size: 24px; }
|
||||
.feature-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--black); margin-bottom: 10px; }
|
||||
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; font-weight: 300; }
|
||||
.product-features { padding: 80px 64px; background: var(--white); }
|
||||
.product-features-inner { max-width: 1200px; margin: 0 auto; }
|
||||
.product-how { padding: 80px 64px; background: var(--dark-bg); }
|
||||
.product-how-inner { max-width: 900px; margin: 0 auto; }
|
||||
.product-how h2 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); letter-spacing: -0.03em; margin-bottom: 48px; text-align: center; }
|
||||
.steps { display: flex; flex-direction: column; }
|
||||
.step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
|
||||
.step:last-child { border-bottom: none; }
|
||||
.step-num { font-family: var(--display); font-weight: 900; font-size: 2rem; color: var(--accent); line-height: 1; }
|
||||
.step-body h4 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
|
||||
.step-body p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; font-weight: 300; }
|
||||
.product-cta { padding: 80px 64px; text-align: center; background: var(--teal-pale); }
|
||||
.product-cta h2 { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--black); letter-spacing: -0.03em; margin-bottom: 16px; }
|
||||
.product-cta p { font-size: 16px; color: #666; margin-bottom: 32px; font-weight: 300; }
|
||||
.btn-cta-lg { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 16px; padding: 16px 36px; border-radius: 100px; background: var(--teal); color: var(--white); transition: filter .15s, transform .12s; }
|
||||
.btn-cta-lg:hover { filter: brightness(1.1); transform: translateY(-2px); }
|
||||
.btn-back-product { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 32px; transition: color .15s; }
|
||||
.btn-back-product:hover { color: var(--accent); }
|
||||
.drone-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
|
||||
.drone-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 24px; text-align: center; }
|
||||
.drone-stat-val { font-family: var(--display); font-weight: 900; font-size: 2.2rem; color: var(--accent); letter-spacing: -.04em; }
|
||||
.drone-stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }
|
||||
@media (max-width: 768px) { .product-hero-dark { padding: 48px 24px 40px; } .product-hero-dark-inner { grid-template-columns: 1fr; } .product-features, .product-how, .product-cta { padding: 56px 24px; } .features-grid, .drone-stat-row { grid-template-columns: 1fr; } }
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<section class="product-hero-dark">
|
||||
<div class="product-hero-dark-inner">
|
||||
<div class="reveal">
|
||||
<a href="{% url 'core:home' %}#monitor" class="btn-back-product">
|
||||
<span class="material-icons-round" style="font-size:16px;">arrow_back</span> Retour à l'accueil
|
||||
</a>
|
||||
<span class="section-tag tag-white" style="margin-bottom:20px;display:inline-flex;">
|
||||
<span class="material-icons-round" style="font-size:13px;">flight</span>
|
||||
Cartographie haute résolution
|
||||
</span>
|
||||
<h1>Voyez votre terrain avec <em>une précision</em> nouvelle.</h1>
|
||||
<p>JooL Monitor transforme l'imagerie drone en lecture terrain exploitable pour compter, mesurer, cartographier et contrôler vos parcelles avec un niveau de détail prêt à l'action.</p>
|
||||
|
||||
<div class="btn-row" style="margin-top:32px;">
|
||||
<a href="https://jool-monitor.com/" class="btn-cta-lg" target="_blank">
|
||||
<span class="material-icons-round">east</span> Planifier un vol
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drone-svg-wrap reveal" style="padding:0;background:none;aspect-ratio:unset;">
|
||||
<img src="{% static 'img/JooL Monitor.jpg' %}" alt="JooL Monitor — cartographie drone"
|
||||
style="width:100%;height:auto;display:block;border-radius:24px;">
|
||||
<div class="chip-float" style="top:14px;right:16px;animation-delay:.3s;">
|
||||
<span class="material-icons-round">place</span> Palmier bloc 4
|
||||
</div>
|
||||
<div class="chip-float" style="bottom:18px;left:14px;animation-delay:2.2s;">
|
||||
<span class="material-icons-round">report_problem</span> 3 anomalies détectées
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section style="background:var(--dark-bg);padding:0 64px 64px;">
|
||||
<div class="drone-stat-row" style="max-width:860px;margin:0 auto;">
|
||||
<div class="drone-stat reveal"><div class="drone-stat-val">2 cm</div><div class="drone-stat-label">Résolution GSD</div></div>
|
||||
<div class="drone-stat reveal"><div class="drone-stat-val">98%</div><div class="drone-stat-label">Précision comptage</div></div>
|
||||
<div class="drone-stat reveal"><div class="drone-stat-val">500 ha</div><div class="drone-stat-label">Par mission de vol</div></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-features">
|
||||
<div class="product-features-inner">
|
||||
<div style="text-align:center;">
|
||||
<span class="product-eyebrow">Fonctionnalités</span>
|
||||
<h2 style="font-family:var(--display);font-weight:900;font-style:italic;font-size:clamp(1.8rem,3vw,2.4rem);letter-spacing:-.03em;color:var(--black);">Tout ce que JooL Monitor active sur le terrain</h2>
|
||||
</div>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">grain</span></div>
|
||||
<h3>Comptage intelligent</h3>
|
||||
<p>DDétectez, comptez et localisez automatiquement les plants pour visualiser les manquants, les densités et les écarts par parcelle.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">map</span></div>
|
||||
<h3>Orthomosaïque haute définition</h3>
|
||||
<p>Obtenez une lecture ultra-précise du terrain avec des cartes aériennes nettes, mesurables et directement exploitables.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">view_in_ar</span></div>
|
||||
<h3>Modèles 3D terrain</h3>
|
||||
<p>Reconstituez le relief et la structure végétale pour mieux analyser hauteurs, volumes et dynamique des blocs.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">task_alt</span></div>
|
||||
<h3>Audit visuel de conformité</h3>
|
||||
<p>Comparez le terrain réel aux données déclarées, repérez les écarts et documentez les zones sensibles avec preuve visuelle.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">history</span></div>
|
||||
<h3>Suivi dans le temps</h3>
|
||||
<p>Comparez plusieurs missions pour mesurer l’évolution des cultures, détecter les pertes et suivre les changements parcelle par parcelle.</p>
|
||||
</div>
|
||||
<div class="feature-card reveal">
|
||||
<div class="feature-card-icon"><span class="material-icons-round">download</span></div>
|
||||
<h3>Exports prêts à l’usage</h3>
|
||||
<p>Téléchargez vos livrables dans les formats attendus par vos équipes et vos outils SIG, sans friction.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-how">
|
||||
<div class="product-how-inner">
|
||||
<h2> Du vol au <em style="color:var(--accent);font-style:normal;">livrable</em></h2>
|
||||
<div class="steps">
|
||||
<div class="step reveal"><div class="step-num">01</div><div class="step-body"><h4>Mission cadrée</h4><p>Nous préparons chaque vol selon vos parcelles, vos objectifs et les conditions opérationnelles du terrain.</p></div></div>
|
||||
<div class="step reveal"><div class="step-num">02</div><div class="step-body"><h4>Capture terrain haute précision</h4><p>Le drone collecte une couverture complète de la zone pour garantir une lecture fiable et détaillée.</p></div></div>
|
||||
<div class="step reveal"><div class="step-num">03</div><div class="step-body"><h4>Traitement intelligent des données</h4><p>Les images sont assemblées, modélisées et transformées en livrables cartographiques directement exploitables.</p></div></div>
|
||||
<div class="step reveal"><div class="step-num">04</div><div class="step-body"><h4>Analyse & livraison rapide</h4><p>Vous recevez cartes, indicateurs et rapports prêts à être utilisés par vos équipes.</p></div></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="product-cta">
|
||||
<span class="product-eyebrow" style="margin-bottom:20px;">Votre terrain vu du ciel</span>
|
||||
<h2>Prêt à cartographier<br>vos exploitations ?</h2>
|
||||
<p>Planifiez votre première mission de cartographie drone avec nos équipes.</p>
|
||||
<a href="{% url 'core:home' %}#contact" class="btn-cta-lg">
|
||||
<span class="material-icons-round">flight</span> Planifier un vol
|
||||
</a>
|
||||
</section>
|
||||
{% endblock %}
|
||||
7
templates/robots.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
User-agent: *
|
||||
Allow: /
|
||||
|
||||
Disallow: /admin/
|
||||
Disallow: /media/careers/cvs/
|
||||
|
||||
Sitemap: https://jool-int.com/sitemap.xml
|
||||
34
templates/sitemap.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
|
||||
<url>
|
||||
<loc>https://jool-int.com/</loc>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>1.0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://jool-int.com/a-propos/</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://jool-int.com/kiriq/</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.9</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://jool-int.com/monitor/</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.9</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://jool-int.com/joolid/</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.9</priority>
|
||||
</url>
|
||||
|
||||
</urlset>
|
||||